repo_name
stringlengths 9
74
| language
stringclasses 1
value | length_bytes
int64 11
9.34M
| extension
stringclasses 2
values | content
stringlengths 11
9.34M
|
---|---|---|---|---|
reznikmm/matreshka | Ada | 4,720 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Documents;
with Matreshka.ODF_String_Constants;
with ODF.DOM.Iterators;
with ODF.DOM.Visitors;
package body Matreshka.ODF_Style.Text_Line_Through_Width_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Style_Text_Line_Through_Width_Attribute_Node is
begin
return Self : Style_Text_Line_Through_Width_Attribute_Node do
Matreshka.ODF_Style.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Style_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Style_Text_Line_Through_Width_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Text_Line_Through_Width_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Style_URI,
Matreshka.ODF_String_Constants.Text_Line_Through_Width_Attribute,
Style_Text_Line_Through_Width_Attribute_Node'Tag);
end Matreshka.ODF_Style.Text_Line_Through_Width_Attributes;
|
houey/Amass | Ada | 1,113 | ads | -- Copyright 2017-2021 Jeff Foley. All rights reserved.
-- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
local json = require("json")
name = "Chaos"
type = "api"
function start()
setratelimit(10)
end
function check()
local c
local cfg = datasrc_config()
if cfg ~= nil then
c = cfg.credentials
end
if (c ~= nil and c.key ~= nil and c.key ~= "") then
return true
end
return false
end
function vertical(ctx, domain)
local c
local cfg = datasrc_config()
if cfg ~= nil then
c = cfg.credentials
end
local resp, err = request(ctx, {
['url']=apiurl(domain),
headers={['Authorization']=c["key"]},
})
if (err ~= nil and err ~= "") then
return
end
local d = json.decode(resp)
if (d == nil or #(d.subdomains) == 0) then
return
end
for i, sub in pairs(d.subdomains) do
newname(ctx, sub .. "." .. d.domain)
end
end
function apiurl(domain)
return "https://dns.projectdiscovery.io/dns/" .. domain .. "/subdomains"
end
|
osannolik/ada-canopen | Ada | 2,531 | adb | package body ACO.SDO_Sessions is
function Create_Download
(Endpoint : Endpoint_Type;
Index : ACO.OD_Types.Entry_Index)
return SDO_Session
is
((Service => Download,
Endpoint => Endpoint,
Index => Index,
Toggle => False));
function Create_Upload
(Endpoint : Endpoint_Type;
Index : ACO.OD_Types.Entry_Index)
return SDO_Session
is
((Service => Upload,
Endpoint => Endpoint,
Index => Index,
Toggle => False));
procedure Put
(This : in out Session_Manager;
Session : in SDO_Session)
is
begin
This.List (Session.Endpoint.Id) := Session;
end Put;
function Get
(This : Session_Manager;
Id : Valid_Endpoint_Nr)
return SDO_Session
is
(This.List (Id));
function Service
(This : Session_Manager;
Id : Valid_Endpoint_Nr)
return Services
is
(This.List (Id).Service);
procedure Clear
(This : in out Session_Manager;
Id : in Valid_Endpoint_Nr)
is
begin
This.List (Id) := (None, No_Endpoint, (0,0), False);
This.Buffers (Id).Flush;
end Clear;
procedure Clear_Buffer
(This : in out Session_Manager;
Id : in Valid_Endpoint_Nr)
is
begin
This.Buffers (Id).Flush;
end Clear_Buffer;
procedure Put_Buffer
(This : in out Session_Manager;
Id : in Valid_Endpoint_Nr;
Data : in ACO.Messages.Data_Array)
is
begin
This.Buffers (Id).Put (Q.Item_Array (Data));
end Put_Buffer;
procedure Get_Buffer
(This : in out Session_Manager;
Id : in Valid_Endpoint_Nr;
Data : out ACO.Messages.Data_Array)
is
begin
This.Buffers (Id).Get (Q.Item_Array (Data));
end Get_Buffer;
function Length_Buffer
(This : Session_Manager;
Id : Valid_Endpoint_Nr)
return Natural
is
begin
return This.Buffers (Id).Length;
end Length_Buffer;
function Peek_Buffer
(This : Session_Manager;
Id : Valid_Endpoint_Nr)
return ACO.Messages.Data_Array
is
begin
if This.Buffers (Id).Is_Empty then
return ACO.Messages.Empty_Data;
else
return ACO.Messages.Data_Array (Q.Item_Array'(This.Buffers (Id).Peek));
end if;
end Peek_Buffer;
function Image (Endpoint : Endpoint_Type) return String
is
begin
return Endpoint.Id'Img;
end Image;
end ACO.SDO_Sessions;
|
stcarrez/hyperion | Ada | 1,972 | ads | -----------------------------------------------------------------------
-- hyperion-hosts-modules -- Module hosts
-- Copyright (C) 2017 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with ASF.Applications;
with AWA.Modules;
with Hyperion.Hosts.Models;
package Hyperion.Hosts.Modules is
-- The name under which the module is registered.
NAME : constant String := "hosts";
-- ------------------------------
-- Module hosts
-- ------------------------------
type Host_Module is new AWA.Modules.Module with private;
type Host_Module_Access is access all Host_Module'Class;
-- Initialize the hosts module.
overriding
procedure Initialize (Plugin : in out Host_Module;
App : in AWA.Modules.Application_Access;
Props : in ASF.Applications.Config);
-- Create a new host under the name, ip and associated with the agent.
-- Return the host identifier.
procedure Create_Host (Plugin : in out Host_Module;
Agent_Key : in String;
Host : in out Models.Host_Ref);
-- Get the hosts module.
function Get_Host_Module return Host_Module_Access;
private
type Host_Module is new AWA.Modules.Module with null record;
end Hyperion.Hosts.Modules;
|
AdaCore/libadalang | Ada | 125 | adb | with G_Inst.B_Inst;
procedure Main is
A : Integer := G_Inst.B_Inst.A;
pragma Test_Statement;
begin
null;
end Main;
|
ekoeppen/STM32_Generic_Ada_Drivers | Ada | 14,384 | ads | -- This spec has been automatically generated from STM32F0xx.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with System;
package STM32_SVD.GPIO is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- MODER array element
subtype MODER_Element is STM32_SVD.UInt2;
-- MODER array
type MODER_Field_Array is array (0 .. 15) of MODER_Element
with Component_Size => 2, Size => 32;
-- GPIO port mode register
type MODER_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MODER as a value
Val : STM32_SVD.UInt32;
when True =>
-- MODER as an array
Arr : MODER_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for MODER_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- OTYPER_OT array element
subtype OTYPER_OT_Element is STM32_SVD.Bit;
-- OTYPER_OT array
type OTYPER_OT_Field_Array is array (0 .. 15) of OTYPER_OT_Element
with Component_Size => 1, Size => 16;
-- Type definition for OTYPER_OT
type OTYPER_OT_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- OT as a value
Val : STM32_SVD.UInt16;
when True =>
-- OT as an array
Arr : OTYPER_OT_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for OTYPER_OT_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
-- GPIO port output type register
type OTYPER_Register is record
-- Port x configuration bits (y = 0..15)
OT : OTYPER_OT_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_31 : STM32_SVD.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for OTYPER_Register use record
OT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-- OSPEEDR array element
subtype OSPEEDR_Element is STM32_SVD.UInt2;
-- OSPEEDR array
type OSPEEDR_Field_Array is array (0 .. 15) of OSPEEDR_Element
with Component_Size => 2, Size => 32;
-- GPIO port output speed register
type OSPEEDR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- OSPEEDR as a value
Val : STM32_SVD.UInt32;
when True =>
-- OSPEEDR as an array
Arr : OSPEEDR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for OSPEEDR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- PUPDR array element
subtype PUPDR_Element is STM32_SVD.UInt2;
-- PUPDR array
type PUPDR_Field_Array is array (0 .. 15) of PUPDR_Element
with Component_Size => 2, Size => 32;
-- GPIO port pull-up/pull-down register
type PUPDR_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- PUPDR as a value
Val : STM32_SVD.UInt32;
when True =>
-- PUPDR as an array
Arr : PUPDR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for PUPDR_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- IDR array element
subtype IDR_Element is STM32_SVD.Bit;
-- IDR array
type IDR_Field_Array is array (0 .. 15) of IDR_Element
with Component_Size => 1, Size => 16;
-- Type definition for IDR
type IDR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- IDR as a value
Val : STM32_SVD.UInt16;
when True =>
-- IDR as an array
Arr : IDR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for IDR_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
-- GPIO port input data register
type IDR_Register is record
-- Read-only. Port input data (y = 0..15)
IDR : IDR_Field;
-- unspecified
Reserved_16_31 : STM32_SVD.UInt16;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IDR_Register use record
IDR at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-- ODR array element
subtype ODR_Element is STM32_SVD.Bit;
-- ODR array
type ODR_Field_Array is array (0 .. 15) of ODR_Element
with Component_Size => 1, Size => 16;
-- Type definition for ODR
type ODR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- ODR as a value
Val : STM32_SVD.UInt16;
when True =>
-- ODR as an array
Arr : ODR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for ODR_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
-- GPIO port output data register
type ODR_Register is record
-- Port output data (y = 0..15)
ODR : ODR_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_31 : STM32_SVD.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ODR_Register use record
ODR at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-- BSRR_BS array element
subtype BSRR_BS_Element is STM32_SVD.Bit;
-- BSRR_BS array
type BSRR_BS_Field_Array is array (0 .. 15) of BSRR_BS_Element
with Component_Size => 1, Size => 16;
-- Type definition for BSRR_BS
type BSRR_BS_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- BS as a value
Val : STM32_SVD.UInt16;
when True =>
-- BS as an array
Arr : BSRR_BS_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for BSRR_BS_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
-- BSRR_BR array element
subtype BSRR_BR_Element is STM32_SVD.Bit;
-- BSRR_BR array
type BSRR_BR_Field_Array is array (0 .. 15) of BSRR_BR_Element
with Component_Size => 1, Size => 16;
-- Type definition for BSRR_BR
type BSRR_BR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- BR as a value
Val : STM32_SVD.UInt16;
when True =>
-- BR as an array
Arr : BSRR_BR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for BSRR_BR_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
-- GPIO port bit set/reset register
type BSRR_Register is record
-- Write-only. Port x set bit y (y= 0..15)
BS : BSRR_BS_Field := (As_Array => False, Val => 16#0#);
-- Write-only. Port x set bit y (y= 0..15)
BR : BSRR_BR_Field := (As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BSRR_Register use record
BS at 0 range 0 .. 15;
BR at 0 range 16 .. 31;
end record;
-- LCKR_LCK array element
subtype LCKR_LCK_Element is STM32_SVD.Bit;
-- LCKR_LCK array
type LCKR_LCK_Field_Array is array (0 .. 15) of LCKR_LCK_Element
with Component_Size => 1, Size => 16;
-- Type definition for LCKR_LCK
type LCKR_LCK_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- LCK as a value
Val : STM32_SVD.UInt16;
when True =>
-- LCK as an array
Arr : LCKR_LCK_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for LCKR_LCK_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
subtype LCKR_LCKK_Field is STM32_SVD.Bit;
-- GPIO port configuration lock register
type LCKR_Register is record
-- Port x lock bit y (y= 0..15)
LCK : LCKR_LCK_Field := (As_Array => False, Val => 16#0#);
-- Port x lock bit y (y= 0..15)
LCKK : LCKR_LCKK_Field := 16#0#;
-- unspecified
Reserved_17_31 : STM32_SVD.UInt15 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for LCKR_Register use record
LCK at 0 range 0 .. 15;
LCKK at 0 range 16 .. 16;
Reserved_17_31 at 0 range 17 .. 31;
end record;
-- AFRL array element
subtype AFRL_Element is STM32_SVD.UInt4;
-- AFRL array
type AFRL_Field_Array is array (0 .. 7) of AFRL_Element
with Component_Size => 4, Size => 32;
-- GPIO alternate function low register
type AFRL_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AFRL as a value
Val : STM32_SVD.UInt32;
when True =>
-- AFRL as an array
Arr : AFRL_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for AFRL_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- AFRH array element
subtype AFRH_Element is STM32_SVD.UInt4;
-- AFRH array
type AFRH_Field_Array is array (8 .. 15) of AFRH_Element
with Component_Size => 4, Size => 32;
-- GPIO alternate function high register
type AFRH_Register
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- AFRH as a value
Val : STM32_SVD.UInt32;
when True =>
-- AFRH as an array
Arr : AFRH_Field_Array;
end case;
end record
with Unchecked_Union, Size => 32, Volatile_Full_Access,
Bit_Order => System.Low_Order_First;
for AFRH_Register use record
Val at 0 range 0 .. 31;
Arr at 0 range 0 .. 31;
end record;
-- BRR_BR array element
subtype BRR_BR_Element is STM32_SVD.Bit;
-- BRR_BR array
type BRR_BR_Field_Array is array (0 .. 15) of BRR_BR_Element
with Component_Size => 1, Size => 16;
-- Type definition for BRR_BR
type BRR_BR_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- BR as a value
Val : STM32_SVD.UInt16;
when True =>
-- BR as an array
Arr : BRR_BR_Field_Array;
end case;
end record
with Unchecked_Union, Size => 16;
for BRR_BR_Field use record
Val at 0 range 0 .. 15;
Arr at 0 range 0 .. 15;
end record;
-- Port bit reset register
type BRR_Register is record
-- Write-only. Port x Reset bit y
BR : BRR_BR_Field := (As_Array => False, Val => 16#0#);
-- unspecified
Reserved_16_31 : STM32_SVD.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BRR_Register use record
BR at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- General-purpose I/Os
type GPIO_Peripheral is record
-- GPIO port mode register
MODER : aliased MODER_Register;
-- GPIO port output type register
OTYPER : aliased OTYPER_Register;
-- GPIO port output speed register
OSPEEDR : aliased OSPEEDR_Register;
-- GPIO port pull-up/pull-down register
PUPDR : aliased PUPDR_Register;
-- GPIO port input data register
IDR : aliased IDR_Register;
-- GPIO port output data register
ODR : aliased ODR_Register;
-- GPIO port bit set/reset register
BSRR : aliased BSRR_Register;
-- GPIO port configuration lock register
LCKR : aliased LCKR_Register;
-- GPIO alternate function low register
AFRL : aliased AFRL_Register;
-- GPIO alternate function high register
AFRH : aliased AFRH_Register;
-- Port bit reset register
BRR : aliased BRR_Register;
end record
with Volatile;
for GPIO_Peripheral use record
MODER at 16#0# range 0 .. 31;
OTYPER at 16#4# range 0 .. 31;
OSPEEDR at 16#8# range 0 .. 31;
PUPDR at 16#C# range 0 .. 31;
IDR at 16#10# range 0 .. 31;
ODR at 16#14# range 0 .. 31;
BSRR at 16#18# range 0 .. 31;
LCKR at 16#1C# range 0 .. 31;
AFRL at 16#20# range 0 .. 31;
AFRH at 16#24# range 0 .. 31;
BRR at 16#28# range 0 .. 31;
end record;
-- General-purpose I/Os
GPIOA_Periph : aliased GPIO_Peripheral
with Import, Address => System'To_Address (16#48000000#);
-- General-purpose I/Os
GPIOB_Periph : aliased GPIO_Peripheral
with Import, Address => System'To_Address (16#48000400#);
-- General-purpose I/Os
GPIOC_Periph : aliased GPIO_Peripheral
with Import, Address => System'To_Address (16#48000800#);
-- General-purpose I/Os
GPIOD_Periph : aliased GPIO_Peripheral
with Import, Address => System'To_Address (16#48000C00#);
-- General-purpose I/Os
GPIOE_Periph : aliased GPIO_Peripheral
with Import, Address => System'To_Address (16#48001000#);
-- General-purpose I/Os
GPIOF_Periph : aliased GPIO_Peripheral
with Import, Address => System'To_Address (16#48001400#);
end STM32_SVD.GPIO;
|
reznikmm/matreshka | Ada | 4,680 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with XML.DOM.Visitors;
with ODF.DOM.Db_Component_Elements;
package Matreshka.ODF_Db.Component_Elements is
type Db_Component_Element_Node is
new Matreshka.ODF_Db.Abstract_Db_Element_Node
and ODF.DOM.Db_Component_Elements.ODF_Db_Component
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Db_Component_Element_Node;
overriding function Get_Local_Name
(Self : not null access constant Db_Component_Element_Node)
return League.Strings.Universal_String;
overriding procedure Enter_Node
(Self : not null access Db_Component_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control);
overriding procedure Leave_Node
(Self : not null access Db_Component_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control);
overriding procedure Visit_Node
(Self : not null access Db_Component_Element_Node;
Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control);
end Matreshka.ODF_Db.Component_Elements;
|
zhmu/ananas | Ada | 153 | adb | -- { dg-do compile }
-- { dg-options "-Wuninitialized" }
pragma Warnings (Off);
function Warn9 return Integer is
I : Integer;
begin
return I;
end;
|
AaronC98/PlaneSystem | Ada | 4,147 | ads | ------------------------------------------------------------------------------
-- Ada Web Server --
-- --
-- Copyright (C) 2000-2012, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify --
-- it under terms of the GNU General Public License as published by the --
-- Free Software Foundation; either version 3, or (at your option) any --
-- later version. This library is distributed in the hope that it will be --
-- useful, but WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
------------------------------------------------------------------------------
-- Dispatch a specific request to a callback depending on the request method
with AWS.Dispatchers;
with AWS.Response;
with AWS.Status;
package AWS.Services.Dispatchers.Method is
type Handler is new AWS.Dispatchers.Handler with private;
procedure Register
(Dispatcher : in out Handler;
Method : Status.Request_Method;
Action : AWS.Dispatchers.Handler'Class);
-- Register callback to use for a specific request method
procedure Register
(Dispatcher : in out Handler;
Method : Status.Request_Method;
Action : Response.Callback);
-- Idem as above but take a callback procedure as parameter
procedure Unregister
(Dispatcher : in out Handler;
Method : Status.Request_Method);
-- Removes Method from the list of request method to handle
procedure Register_Default_Callback
(Dispatcher : in out Handler;
Action : AWS.Dispatchers.Handler'Class);
-- Register the default callback. This will be used if no request method
-- have been activated.
private
overriding procedure Initialize (Dispatcher : in out Handler);
overriding procedure Finalize (Dispatcher : in out Handler);
overriding function Dispatch
(Dispatcher : Handler;
Request : Status.Data) return Response.Data;
-- Dispatch to the corresponding method callback, if no such callback
-- registered it dispatches to the default callback. If there is no default
-- callback it returns an error message (code 404).
overriding function Clone (Dispatcher : Handler) return Handler;
-- Returns a deep copy of the dispatcher
type Method_Table is
array (Status.Request_Method) of AWS.Dispatchers.Handler_Class_Access;
type Handler is new AWS.Dispatchers.Handler with record
Action : AWS.Dispatchers.Handler_Class_Access;
Table : Method_Table;
end record;
end AWS.Services.Dispatchers.Method;
|
reznikmm/matreshka | Ada | 3,641 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2013, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with XML.DOM.Elements;
package ODF.DOM.Elements.Style.Footnote_Sep is
type ODF_Style_Footnote_Sep is
new XML.DOM.Elements.DOM_Element with private;
private
type ODF_Style_Footnote_Sep is
new XML.DOM.Elements.DOM_Element with null record;
end ODF.DOM.Elements.Style.Footnote_Sep;
|
zhmu/ananas | Ada | 2,551 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- ADA.STRINGS.BOUNDED.EQUAL_CASE_INSENSITIVE --
-- --
-- B o d y --
-- --
-- Copyright (C) 2011-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- This unit was originally developed by Matthew J Heaney. --
------------------------------------------------------------------------------
with Ada.Strings.Equal_Case_Insensitive;
function Ada.Strings.Bounded.Equal_Case_Insensitive
(Left, Right : Bounded.Bounded_String)
return Boolean
is
begin
return Ada.Strings.Equal_Case_Insensitive
(Left => Bounded.To_String (Left),
Right => Bounded.To_String (Right));
end Ada.Strings.Bounded.Equal_Case_Insensitive;
|
GPUWorks/lumen2 | Ada | 3,061 | ads |
-- Lumen.Binary.IO -- Read and write streams of binary data from external
-- files.
--
-- Chip Richards, NiEstu, Phoenix AZ, Summer 2010
-- This code is covered by the ISC License:
--
-- Copyright © 2010, NiEstu
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- The software is provided "as is" and the author disclaims all warranties
-- with regard to this software including all implied warranties of
-- merchantability and fitness. In no event shall the author be liable for any
-- special, direct, indirect, or consequential damages or any damages
-- whatsoever resulting from loss of use, data or profits, whether in an
-- action of contract, negligence or other tortious action, arising out of or
-- in connection with the use or performance of this software.
-- Environment
with Ada.Streams.Stream_IO;
package Lumen.Binary.IO is
-- Our interpretation of the various file exceptions
Access_Failed : exception;
Malformed_Name : exception;
Nonexistent_File : exception;
Read_Error : exception;
Unknown_Error : exception;
Unreadable_File : exception;
Unwriteable_File : exception;
Write_Error : exception;
-- Our version of the Stream_IO file type
subtype File_Type is Ada.Streams.Stream_IO.File_Type;
-- Open a file for reading
procedure Open (File : in out File_Type;
Pathname : in String);
-- Create a file for writing
procedure Create (File : in out File_Type;
Pathname : in String);
-- Close open file
procedure Close (File : in out File_Type);
-- Read and return a stream of bytes up to the given length
function Read (File : File_Type;
Length : Positive)
return Byte_String;
-- Read and return a stream of bytes up to the length of the given buffer
procedure Read (File : in File_Type;
Item : out Byte_String;
Last : out Natural);
-- Read and return a stream of shorts up to the given length
function Read (File : File_Type;
Length : Positive)
return Short_String;
-- Read and return a stream of shorts up to the length of the given buffer
procedure Read (File : in File_Type;
Item : out Short_String;
Last : out Natural);
-- Read and return a stream of words up to the given length
function Read (File : File_Type;
Length : Positive)
return Word_String;
-- Read and return a stream of words up to the length of the given buffer
procedure Read (File : in File_Type;
Item : out Word_String;
Last : out Natural);
-- Write a stream of bytes
procedure Write (File : in File_Type;
Item : in Byte_String);
end Lumen.Binary.IO;
|
RREE/ada-util | Ada | 13,524 | adb | -----------------------------------------------------------------------
-- util-encoders-base64 -- Encode/Decode a stream in base64
-- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2016, 2017, 2019 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Streams;
package body Util.Encoders.Base64 is
use Interfaces;
-- ------------------------------
-- Encode the 64-bit value to LEB128 and then base64url.
-- ------------------------------
function Encode (Value : in Interfaces.Unsigned_64) return String is
E : Encoder;
Data : Ada.Streams.Stream_Element_Array (1 .. 10);
Last : Ada.Streams.Stream_Element_Offset;
Encoded : Ada.Streams.Stream_Element_Offset;
Result : String (1 .. 16);
Buf : Ada.Streams.Stream_Element_Array (1 .. Result'Length);
for Buf'Address use Result'Address;
pragma Import (Ada, Buf);
begin
-- Encode the integer to LEB128 in the data buffer.
Encode_LEB128 (Into => Data,
Pos => Data'First,
Val => Value,
Last => Last);
-- Encode the data buffer in base64url.
E.Set_URL_Mode (True);
E.Transform (Data => Data (Data'First .. Last),
Into => Buf,
Last => Last,
Encoded => Encoded);
E.Finish (Into => Buf (Last + 1 .. Buf'Last),
Last => Last);
-- Strip the '=' or '==' at end of base64url.
if Result (Positive (Last)) /= '=' then
return Result (Result'First .. Positive (Last));
elsif Result (Positive (Last) - 1) /= '=' then
return Result (Result'First .. Positive (Last) - 1);
else
return Result (Result'First .. Positive (Last) - 2);
end if;
end Encode;
-- ------------------------------
-- Decode the base64url string and then the LEB128 integer.
-- Raise the Encoding_Error if the string is invalid and cannot be decoded.
-- ------------------------------
function Decode (Value : in String) return Interfaces.Unsigned_64 is
D : Decoder;
Buf : Ada.Streams.Stream_Element_Array (1 .. Value'Length + 2);
R : Ada.Streams.Stream_Element_Array (1 .. Value'Length + 2);
Last : Ada.Streams.Stream_Element_Offset;
Encoded : Ada.Streams.Stream_Element_Offset;
Result : Interfaces.Unsigned_64;
End_Pos : constant Ada.Streams.Stream_Element_Offset
:= Value'Length + ((4 - (Value'Length mod 4)) mod 4);
begin
if Buf'Length < End_Pos then
raise Encoding_Error with "Input string is too short";
end if;
Util.Streams.Copy (Into => Buf (1 .. Value'Length), From => Value);
-- Set back the '=' for the base64url (pad to multiple of 4.
Buf (Value'Length + 1) := Character'Pos ('=');
Buf (Value'Length + 2) := Character'Pos ('=');
-- Decode using base64url
D.Set_URL_Mode (True);
D.Transform (Data => Buf (Buf'First .. End_Pos),
Into => R,
Last => Last,
Encoded => Encoded);
if Encoded /= End_Pos then
raise Encoding_Error with "Input string is too short";
end if;
-- Decode the LEB128 number.
Decode_LEB128 (From => R (R'First .. Last),
Pos => R'First,
Val => Result,
Last => Encoded);
-- Check that everything was decoded.
if Last + 1 /= Encoded then
raise Encoding_Error with "Input string contains garbage at the end";
end if;
return Result;
end Decode;
-- ------------------------------
-- Encodes the binary input stream represented by <b>Data</b> into
-- the a base64 output stream <b>Into</b>.
--
-- If the transformer does not have enough room to write the result,
-- it must return in <b>Encoded</b> the index of the last encoded
-- position in the <b>Data</b> stream.
--
-- The transformer returns in <b>Last</b> the last valid position
-- in the output stream <b>Into</b>.
--
-- The <b>Encoding_Error</b> exception is raised if the input
-- stream cannot be transformed.
-- ------------------------------
overriding
procedure Transform (E : in out Encoder;
Data : in Ada.Streams.Stream_Element_Array;
Into : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset;
Encoded : out Ada.Streams.Stream_Element_Offset) is
Pos : Ada.Streams.Stream_Element_Offset := Into'First;
I : Ada.Streams.Stream_Element_Offset := Data'First;
C1, C2 : Unsigned_8;
Alphabet : constant Alphabet_Access := E.Alphabet;
begin
while E.Count /= 0 and I <= Data'Last loop
if E.Count = 2 then
C1 := E.Value;
C2 := Unsigned_8 (Data (I));
Into (Pos) := Alphabet (Shift_Left (C1 and 16#03#, 4) or Shift_Right (C2, 4));
Pos := Pos + 1;
I := I + 1;
E.Count := 1;
E.Value := C2;
else
C2 := E.Value;
C1 := Unsigned_8 (Data (I));
Into (Pos) := Alphabet (Shift_Left (C2 and 16#0F#, 2) or Shift_Right (C1, 6));
Into (Pos + 1) := Alphabet (C1 and 16#03F#);
Pos := Pos + 2;
I := I + 1;
E.Count := 0;
end if;
end loop;
while I <= Data'Last loop
if Pos + 4 > Into'Last + 1 then
Last := Pos - 1;
Encoded := I - 1;
E.Count := 0;
return;
end if;
-- Encode the first byte, add padding if necessary.
C1 := Unsigned_8 (Data (I));
Into (Pos) := Alphabet (Shift_Right (C1, 2));
if I = Data'Last then
E.Value := C1;
E.Count := 2;
Last := Pos;
Encoded := Data'Last;
return;
end if;
-- Encode the second byte, add padding if necessary.
C2 := Unsigned_8 (Data (I + 1));
Into (Pos + 1) := Alphabet (Shift_Left (C1 and 16#03#, 4) or Shift_Right (C2, 4));
if I = Data'Last - 1 then
E.Value := C2;
E.Count := 1;
Last := Pos + 1;
Encoded := Data'Last;
return;
end if;
-- Encode the third byte
C1 := Unsigned_8 (Data (I + 2));
Into (Pos + 2) := Alphabet (Shift_Left (C2 and 16#0F#, 2) or Shift_Right (C1, 6));
Into (Pos + 3) := Alphabet (C1 and 16#03F#);
Pos := Pos + 4;
I := I + 3;
end loop;
E.Count := 0;
Last := Pos - 1;
Encoded := Data'Last;
end Transform;
-- ------------------------------
-- Finish encoding the input array.
-- ------------------------------
overriding
procedure Finish (E : in out Encoder;
Into : in out Ada.Streams.Stream_Element_Array;
Last : in out Ada.Streams.Stream_Element_Offset) is
Pos : constant Ada.Streams.Stream_Element_Offset := Into'First;
begin
if E.Count = 2 then
Into (Pos) := E.Alphabet (Shift_Left (E.Value and 3, 4));
Into (Pos + 1) := Character'Pos ('=');
Into (Pos + 2) := Character'Pos ('=');
Last := Pos + 2;
E.Count := 0;
elsif E.Count = 1 then
Into (Pos) := E.Alphabet (Shift_Left (E.Value and 16#0F#, 2));
Into (Pos + 1) := Character'Pos ('=');
Last := Pos + 1;
E.Count := 0;
else
Last := Pos - 1;
end if;
end Finish;
-- ------------------------------
-- Set the encoder to use the base64 URL alphabet when <b>Mode</b> is True.
-- The URL alphabet uses the '-' and '_' instead of the '+' and '/' characters.
-- ------------------------------
procedure Set_URL_Mode (E : in out Encoder;
Mode : in Boolean) is
begin
if Mode then
E.Alphabet := BASE64_URL_ALPHABET'Access;
else
E.Alphabet := BASE64_ALPHABET'Access;
end if;
end Set_URL_Mode;
-- ------------------------------
-- Create a base64 encoder using the URL alphabet.
-- The URL alphabet uses the '-' and '_' instead of the '+' and '/' characters.
-- ------------------------------
function Create_URL_Encoder return Transformer_Access is
begin
return new Encoder '(Alphabet => BASE64_URL_ALPHABET'Access, others => <>);
end Create_URL_Encoder;
-- ------------------------------
-- Decodes the base64 input stream represented by <b>Data</b> into
-- the binary output stream <b>Into</b>.
--
-- If the transformer does not have enough room to write the result,
-- it must return in <b>Encoded</b> the index of the last encoded
-- position in the <b>Data</b> stream.
--
-- The transformer returns in <b>Last</b> the last valid position
-- in the output stream <b>Into</b>.
--
-- The <b>Encoding_Error</b> exception is raised if the input
-- stream cannot be transformed.
-- ------------------------------
overriding
procedure Transform (E : in out Decoder;
Data : in Ada.Streams.Stream_Element_Array;
Into : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset;
Encoded : out Ada.Streams.Stream_Element_Offset) is
Pos : Ada.Streams.Stream_Element_Offset := Into'First;
I : Ada.Streams.Stream_Element_Offset := Data'First;
C1, C2 : Ada.Streams.Stream_Element;
Val1, Val2 : Unsigned_8;
Values : constant Alphabet_Values_Access := E.Values;
begin
while I <= Data'Last loop
if Pos + 3 > Into'Last + 1 then
Last := Pos - 1;
Encoded := I - 1;
return;
end if;
-- Decode the first two bytes to produce the first output byte
C1 := Data (I);
Val1 := Values (C1);
if (Val1 and 16#C0#) /= 0 then
raise Encoding_Error with "Invalid character '" & Character'Val (C1) & "'";
end if;
C2 := Data (I + 1);
Val2 := Values (C2);
if (Val2 and 16#C0#) /= 0 then
raise Encoding_Error with "Invalid character '" & Character'Val (C2) & "'";
end if;
Into (Pos) := Stream_Element (Shift_Left (Val1, 2) or Shift_Right (Val2, 4));
if I + 2 > Data'Last then
Encoded := I + 1;
Last := Pos;
return;
end if;
-- Decode the next byte
C1 := Data (I + 2);
Val1 := Values (C1);
if (Val1 and 16#C0#) /= 0 then
if C1 /= Character'Pos ('=') then
raise Encoding_Error with "Invalid character '" & Character'Val (C1) & "'";
end if;
Encoded := I + 3;
Last := Pos;
return;
end if;
Into (Pos + 1) := Stream_Element (Shift_Left (Val2, 4) or Shift_Right (Val1, 2));
if I + 3 > Data'Last then
Encoded := I + 2;
Last := Pos + 1;
return;
end if;
C2 := Data (I + 3);
Val2 := Values (C2);
if (Val2 and 16#C0#) /= 0 then
if C2 /= Character'Pos ('=') then
raise Encoding_Error with "Invalid character '" & Character'Val (C2) & "'";
end if;
Encoded := I + 3;
Last := Pos + 1;
return;
end if;
Into (Pos + 2) := Stream_Element (Shift_Left (Val1, 6) or Val2);
Pos := Pos + 3;
I := I + 4;
end loop;
Last := Pos - 1;
Encoded := Data'Last;
end Transform;
-- ------------------------------
-- Set the decoder to use the base64 URL alphabet when <b>Mode</b> is True.
-- The URL alphabet uses the '-' and '_' instead of the '+' and '/' characters.
-- ------------------------------
procedure Set_URL_Mode (E : in out Decoder;
Mode : in Boolean) is
begin
if Mode then
E.Values := BASE64_URL_VALUES'Access;
else
E.Values := BASE64_VALUES'Access;
end if;
end Set_URL_Mode;
-- ------------------------------
-- Create a base64 decoder using the URL alphabet.
-- The URL alphabet uses the '-' and '_' instead of the '+' and '/' characters.
-- ------------------------------
function Create_URL_Decoder return Transformer_Access is
begin
return new Decoder '(Values => BASE64_URL_VALUES'Access);
end Create_URL_Decoder;
end Util.Encoders.Base64;
|
jhumphry/PRNG_Zoo | Ada | 2,359 | adb | --
-- PRNG Zoo
-- Copyright (c) 2014 - 2015, James Humphry
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
-- OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-- PERFORMANCE OF THIS SOFTWARE.
with PRNGTests_Suite.Lin_Con_Tests;
with PRNGTests_Suite.MT_Tests;
with PRNGTests_Suite.xorshift_Family_Tests;
with PRNGTests_Suite.xoroshiro_Tests;
with PRNGTests_Suite.xoshiro_Tests;
with PRNGTests_Suite.LFib_Tests;
with PRNGTests_Suite.Misc_Tests;
with PRNGTests_Suite.Dispatcher_Tests;
with PRNGTests_Suite.Stats;
package body PRNGTests_Suite is
use AUnit.Test_Suites;
Result : aliased Test_Suite;
Test_Lin_Con : aliased Lin_Con_Tests.Lin_Con_Test;
Test_MT : aliased MT_Tests.MT_Test;
Test_xorshift : aliased xorshift_Family_Tests.xorshift_Family_Test;
Test_xoroshiro : aliased xoroshiro_Tests.xoroshiro_Family_Test;
Test_xoshiro : aliased xoshiro_Tests.xoshiro_Family_Test;
Test_LFib : aliased LFib_Tests.LFib_Test;
Test_Misc : aliased Misc_Tests.Misc_Test;
Test_Dispatcher : aliased Dispatcher_Tests.Dispatcher_Test;
Test_Stats : aliased PRNGTests_Suite.Stats.Stats_Test;
-----------
-- Suite --
-----------
function Suite return AUnit.Test_Suites.Access_Test_Suite is
begin
Add_Test (Result'Access, Test_Lin_Con'Access);
Add_Test (Result'Access, Test_MT'Access);
Add_Test (Result'Access, Test_xorshift'Access);
Add_Test (Result'Access, Test_xoroshiro'Access);
Add_Test (Result'Access, Test_xoshiro'Access);
Add_Test (Result'Access, Test_LFib'Access);
Add_Test (Result'Access, Test_Misc'Access);
Add_Test (Result'Access, Test_Dispatcher'Access);
Add_Test (Result'Access, Test_Stats'Access);
return Result'Access;
end Suite;
end PRNGTests_Suite;
|
leecher1337/pocketsoap | Ada | 12,823 | ads | ------------------------------------------------------------------------------
-- ZLib for Ada thick binding. --
-- --
-- Copyright (C) 2002-2003 Dmitriy Anisimkov --
-- --
-- This library is free software; you can redistribute it and/or modify --
-- it under the terms of the GNU General Public License as published by --
-- the Free Software Foundation; either version 2 of the License, or (at --
-- your option) any later version. --
-- --
-- This library is distributed in the hope that it will be useful, but --
-- WITHOUT ANY WARRANTY; without even the implied warranty of --
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU General Public License --
-- along with this library; if not, write to the Free Software Foundation, --
-- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
------------------------------------------------------------------------------
-- $Id: zlib.ads,v 1.1 2004/07/10 04:48:33 simon Exp $
with Ada.Streams;
with Interfaces;
package ZLib is
ZLib_Error : exception;
type Compression_Level is new Integer range -1 .. 9;
type Flush_Mode is private;
type Compression_Method is private;
type Window_Bits_Type is new Integer range 8 .. 15;
type Memory_Level_Type is new Integer range 1 .. 9;
type Unsigned_32 is new Interfaces.Unsigned_32;
type Strategy_Type is private;
type Header_Type is (None, Auto, Default, GZip);
-- Header type usage have a some limitation for inflate.
-- See comment for Inflate_Init.
subtype Count is Ada.Streams.Stream_Element_Count;
----------------------------------
-- Compression method constants --
----------------------------------
Deflated : constant Compression_Method;
-- Only one method allowed in this ZLib version.
---------------------------------
-- Compression level constants --
---------------------------------
No_Compression : constant Compression_Level := 0;
Best_Speed : constant Compression_Level := 1;
Best_Compression : constant Compression_Level := 9;
Default_Compression : constant Compression_Level := -1;
--------------------------
-- Flush mode constants --
--------------------------
No_Flush : constant Flush_Mode;
-- Regular way for compression, no flush
Partial_Flush : constant Flush_Mode;
-- will be removed, use Z_SYNC_FLUSH instead
Sync_Flush : constant Flush_Mode;
-- all pending output is flushed to the output buffer and the output
-- is aligned on a byte boundary, so that the decompressor can get all
-- input data available so far. (In particular avail_in is zero after the
-- call if enough output space has been provided before the call.)
-- Flushing may degrade compression for some compression algorithms and so
-- it should be used only when necessary.
Full_Flush : constant Flush_Mode;
-- all output is flushed as with SYNC_FLUSH, and the compression state
-- is reset so that decompression can restart from this point if previous
-- compressed data has been damaged or if random access is desired. Using
-- FULL_FLUSH too often can seriously degrade the compression.
Finish : constant Flush_Mode;
-- Just for tell the compressor that input data is complete.
------------------------------------
-- Compression strategy constants --
------------------------------------
-- RLE stategy could be used only in version 1.2.0 and later.
Filtered : constant Strategy_Type;
Huffman_Only : constant Strategy_Type;
RLE : constant Strategy_Type;
Default_Strategy : constant Strategy_Type;
Default_Buffer_Size : constant := 4096;
type Filter_Type is limited private;
-- The filter is for compression and for decompression.
-- The usage of the type is depend of its initialization.
function Version return String;
pragma Inline (Version);
-- Return string representation of the ZLib version.
procedure Deflate_Init
(Filter : in out Filter_Type;
Level : in Compression_Level := Default_Compression;
Strategy : in Strategy_Type := Default_Strategy;
Method : in Compression_Method := Deflated;
Window_Bits : in Window_Bits_Type := 15;
Memory_Level : in Memory_Level_Type := 8;
Header : in Header_Type := Default);
-- Compressor initialization.
-- When Header parameter is Auto or Default, then default zlib header
-- would be provided for compressed data.
-- When Header is GZip, then gzip header would be set instead of
-- default header.
-- When Header is None, no header would be set for compressed data.
procedure Inflate_Init
(Filter : in out Filter_Type;
Window_Bits : in Window_Bits_Type := 15;
Header : in Header_Type := Default);
-- Decompressor initialization.
-- Default header type mean that ZLib default header is expecting in the
-- input compressed stream.
-- Header type None mean that no header is expecting in the input stream.
-- GZip header type mean that GZip header is expecting in the
-- input compressed stream.
-- Auto header type mean that header type (GZip or Native) would be
-- detected automatically in the input stream.
-- Note that header types parameter values None, GZip and Auto is
-- supporting for inflate routine only in ZLib versions 1.2.0.2 and later.
-- Deflate_Init is supporting all header types.
procedure Close
(Filter : in out Filter_Type;
Ignore_Error : in Boolean := False);
-- Closing the compression or decompressor.
-- If stream is closing before the complete and Ignore_Error is False,
-- The exception would be raised.
generic
with procedure Data_In
(Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
with procedure Data_Out
(Item : in Ada.Streams.Stream_Element_Array);
procedure Generic_Translate
(Filter : in out Filter_Type;
In_Buffer_Size : in Integer := Default_Buffer_Size;
Out_Buffer_Size : in Integer := Default_Buffer_Size);
-- Compressing/decompressing data arrived from Data_In routine
-- to the Data_Out routine. User should provide Data_In and Data_Out
-- for compression/decompression data flow.
-- Compression or decompression depend on initialization of Filter.
function Total_In (Filter : in Filter_Type) return Count;
pragma Inline (Total_In);
-- Return total number of input bytes read so far.
function Total_Out (Filter : in Filter_Type) return Count;
pragma Inline (Total_Out);
-- Return total number of bytes output so far.
function CRC32
(CRC : in Unsigned_32;
Data : in Ada.Streams.Stream_Element_Array)
return Unsigned_32;
pragma Inline (CRC32);
-- Calculate CRC32, it could be necessary for make gzip format.
procedure CRC32
(CRC : in out Unsigned_32;
Data : in Ada.Streams.Stream_Element_Array);
pragma Inline (CRC32);
-- Calculate CRC32, it could be necessary for make gzip format.
-------------------------------------------------
-- Below is more complex low level routines. --
-------------------------------------------------
procedure Translate
(Filter : in out Filter_Type;
In_Data : in Ada.Streams.Stream_Element_Array;
In_Last : out Ada.Streams.Stream_Element_Offset;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode);
-- Compressing/decompressing the datas from In_Data buffer to the
-- Out_Data buffer.
-- In_Data is incoming data portion,
-- In_Last is the index of last element from In_Data accepted by the
-- Filter.
-- Out_Data is the buffer for output data from the filter.
-- Out_Last is the last element of the received data from Filter.
-- To tell the filter that incoming data is complete put the
-- Flush parameter to FINISH.
function Stream_End (Filter : in Filter_Type) return Boolean;
pragma Inline (Stream_End);
-- Return the true when the stream is complete.
procedure Flush
(Filter : in out Filter_Type;
Out_Data : out Ada.Streams.Stream_Element_Array;
Out_Last : out Ada.Streams.Stream_Element_Offset;
Flush : in Flush_Mode);
pragma Inline (Flush);
-- Flushing the data from the compressor.
generic
with procedure Write
(Item : in Ada.Streams.Stream_Element_Array);
-- User should provide this routine for accept
-- compressed/decompressed data.
Buffer_Size : in Ada.Streams.Stream_Element_Offset
:= Default_Buffer_Size;
-- Buffer size for Write user routine.
procedure Write
(Filter : in out Filter_Type;
Item : in Ada.Streams.Stream_Element_Array;
Flush : in Flush_Mode);
-- Compressing/Decompressing data from Item to the
-- generic parameter procedure Write.
-- Output buffer size could be set in Buffer_Size generic parameter.
generic
with procedure Read
(Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
-- User should provide data for compression/decompression
-- thru this routine.
Buffer : in out Ada.Streams.Stream_Element_Array;
-- Buffer for keep remaining data from the previous
-- back read.
Rest_First, Rest_Last : in out Ada.Streams.Stream_Element_Offset;
-- Rest_First have to be initialized to Buffer'Last + 1
-- before usage.
procedure Read
(Filter : in out Filter_Type;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
-- Compressing/Decompressing data from generic parameter
-- procedure Read to the Item.
-- User should provide Buffer for the operation
-- and Rest_First variable first time initialized to the Buffer'Last + 1.
private
use Ada.Streams;
type Flush_Mode is new Integer range 0 .. 4;
type Compression_Method is new Integer range 8 .. 8;
type Strategy_Type is new Integer range 0 .. 3;
No_Flush : constant Flush_Mode := 0;
Sync_Flush : constant Flush_Mode := 2;
Full_Flush : constant Flush_Mode := 3;
Finish : constant Flush_Mode := 4;
Partial_Flush : constant Flush_Mode := 1;
-- will be removed, use Z_SYNC_FLUSH instead
Filtered : constant Strategy_Type := 1;
Huffman_Only : constant Strategy_Type := 2;
RLE : constant Strategy_Type := 3;
Default_Strategy : constant Strategy_Type := 0;
Deflated : constant Compression_Method := 8;
type Z_Stream;
type Z_Stream_Access is access all Z_Stream;
type Filter_Type is record
Strm : Z_Stream_Access;
Compression : Boolean;
Stream_End : Boolean;
Header : Header_Type;
CRC : Unsigned_32;
Offset : Stream_Element_Offset;
-- Offset for gzip header/footer output.
Opened : Boolean := False;
end record;
end ZLib;
|
AdaCore/Ada_Drivers_Library | Ada | 6,833 | adb | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2017-2019, AdaCore --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- 1. Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- 2. Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- 3. Neither the name of the copyright holder nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT --
-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, --
-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY --
-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT --
-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE --
-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements; use System.Storage_Elements;
with HAL; use HAL;
with HAL.GPIO; use HAL.GPIO;
package body SiFive.GPIO is
function Pin_Bit (This : GPIO_Point'Class) return UInt32
with Inline_Always;
-------------
-- Pin_Bit --
-------------
function Pin_Bit (This : GPIO_Point'Class) return UInt32
is (Shift_Left (1, Natural (This.Pin)));
------------
-- Invert --
------------
procedure Invert (This : in out GPIO_Point;
Enabled : Boolean := True)
is
Out_Xor : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#40#);
begin
if Enabled then
Out_Xor := Out_Xor or This.Pin_Bit;
else
Out_Xor := Out_Xor and (not This.Pin_Bit);
end if;
end Invert;
-- Invert the output level
function Inverted (This : GPIO_Point) return Boolean is
Out_Xor : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#40#);
begin
return (Out_Xor and This.Pin_Bit) /= 0;
end Inverted;
----------
-- Mode --
----------
overriding
function Mode (This : GPIO_Point) return HAL.GPIO.GPIO_Mode is
Output_Enable : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#08#);
begin
if (Output_Enable and This.Pin_Bit) /= 0 then
return Output;
else
return Input;
end if;
end Mode;
--------------
-- Set_Mode --
--------------
overriding
procedure Set_Mode (This : in out GPIO_Point;
Mode : HAL.GPIO.GPIO_Config_Mode)
is
Output_Enable : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#08#);
Input_Enable : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#04#);
begin
-- Input mode is always on to make sure we can read IO state even in
-- output mode.
Input_Enable := Input_Enable or This.Pin_Bit;
if Mode = Output then
Output_Enable := Output_Enable or This.Pin_Bit;
else
Output_Enable := Output_Enable and (not This.Pin_Bit);
end if;
end Set_Mode;
-------------------
-- Pull_Resistor --
-------------------
overriding
function Pull_Resistor (This : GPIO_Point)
return HAL.GPIO.GPIO_Pull_Resistor
is
Pullup_Enable : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#10#);
begin
if (Pullup_Enable and This.Pin_Bit) /= 0 then
return Pull_Up;
else
return Floating;
end if;
end Pull_Resistor;
-----------------------
-- Set_Pull_Resistor --
-----------------------
overriding
procedure Set_Pull_Resistor (This : in out GPIO_Point;
Pull : HAL.GPIO.GPIO_Pull_Resistor)
is
Pullup_Enable : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#10#);
begin
if Pull = Pull_Up then
Pullup_Enable := Pullup_Enable or This.Pin_Bit;
else
Pullup_Enable := Pullup_Enable and (not This.Pin_Bit);
end if;
end Set_Pull_Resistor;
---------
-- Set --
---------
overriding
function Set (This : GPIO_Point) return Boolean is
Input_Val : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#00#);
begin
return (Input_Val and This.Pin_Bit) /= 0;
end Set;
---------
-- Set --
---------
overriding
procedure Set (This : in out GPIO_Point) is
Output_Val : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#0C#);
begin
Output_Val := Output_Val or This.Pin_Bit;
end Set;
-----------
-- Clear --
-----------
overriding
procedure Clear (This : in out GPIO_Point) is
Output_Val : UInt32
with Volatile,
Address => To_Address (This.Controller.Base_Address + 16#0C#);
begin
Output_Val := Output_Val and (not This.Pin_Bit);
end Clear;
------------
-- Toggle --
------------
overriding
procedure Toggle (This : in out GPIO_Point) is
begin
if This.Set then
This.Clear;
else
This.Set;
end if;
end Toggle;
end SiFive.GPIO;
|
zhmu/ananas | Ada | 445 | adb | -- { dg-do compile }
package body Pak is
pragma Suppress (Discriminant_Check);
-- Suppress discriminant check to prevent the assignment from using
-- the predefined primitive _assign.
procedure Initialize (X : in out T) is begin null; end Initialize;
procedure Finalize (X : in out T) is begin null; end Finalize;
procedure Assign (X : out T'Class) is
Y : T;
begin
T (X) := Y;
end Assign;
end Pak;
|
zhmu/ananas | Ada | 11,719 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- ADA.DIRECTORIES.HIERARCHICAL_FILE_NAMES --
-- --
-- B o d y --
-- --
-- Copyright (C) 2004-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- In particular, you can freely distribute your programs built with the --
-- GNAT Pro compiler, including any required library run-time units, using --
-- any licensing terms of your choosing. See the AdaCore Software License --
-- for full details. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Ada.Directories.Validity; use Ada.Directories.Validity;
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with System; use System;
package body Ada.Directories.Hierarchical_File_Names is
Dir_Separator : constant Character;
pragma Import (C, Dir_Separator, "__gnat_dir_separator");
-- Running system default directory separator
-----------------
-- Subprograms --
-----------------
function Equivalent_File_Names
(Left : String;
Right : String)
return Boolean;
-- Perform an OS-independent comparison between two file paths
function Is_Absolute_Path (Name : String) return Boolean;
-- Returns True if Name is an absolute path name, i.e. it designates a
-- file or directory absolutely rather than relative to another directory.
---------------------------
-- Equivalent_File_Names --
---------------------------
function Equivalent_File_Names
(Left : String;
Right : String)
return Boolean
is
begin
-- Check the validity of the input paths
if not Is_Valid_Path_Name (Left)
or else not Is_Valid_Path_Name (Right)
then
return False;
end if;
-- Normalize the paths by removing any trailing directory separators and
-- perform the comparison.
declare
Normal_Left : constant String :=
(if Index (Left, Dir_Separator & "", Strings.Backward) = Left'Last
and then not Is_Root_Directory_Name (Left)
then
Left (Left'First .. Left'Last - 1)
else
Left);
Normal_Right : constant String :=
(if Index (Right, Dir_Separator & "", Strings.Backward) = Right'Last
and then not Is_Root_Directory_Name (Right)
then
Right (Right'First .. Right'Last - 1)
else
Right);
begin
-- Within Windows we assume case insensitivity
if not Windows then
return Normal_Left = Normal_Right;
end if;
-- Otherwise do a straight comparison
return To_Lower (Normal_Left) = To_Lower (Normal_Right);
end;
end Equivalent_File_Names;
----------------------
-- Is_Absolute_Path --
----------------------
function Is_Absolute_Path (Name : String) return Boolean is
function Is_Absolute_Path
(Name : Address;
Length : Integer) return Integer;
pragma Import (C, Is_Absolute_Path, "__gnat_is_absolute_path");
begin
return Is_Absolute_Path (Name'Address, Name'Length) /= 0;
end Is_Absolute_Path;
--------------------
-- Is_Simple_Name --
--------------------
function Is_Simple_Name (Name : String) return Boolean is
begin
-- Verify the file path name is valid and that it is not a root
if not Is_Valid_Path_Name (Name)
or else Is_Root_Directory_Name (Name)
then
return False;
end if;
-- Check for the special paths "." and "..", which are considered simple
if Is_Parent_Directory_Name (Name)
or else Is_Current_Directory_Name (Name)
then
return True;
end if;
-- Perform a comparison with the calculated simple path name
return Equivalent_File_Names (Simple_Name (Name), Name);
end Is_Simple_Name;
----------------------------
-- Is_Root_Directory_Name --
----------------------------
function Is_Root_Directory_Name (Name : String) return Boolean is
begin
-- Check if the path name is a root directory by looking for a slash in
-- the general case, and a drive letter in the case of Windows.
return Name = "/"
or else
(Windows
and then
(Name = "\"
or else
(Name'Length = 3
and then Name (Name'Last - 1) = ':'
and then Name (Name'Last) in '/' | '\'
and then (Name (Name'First) in 'a' .. 'z'
or else
Name (Name'First) in 'A' .. 'Z'))
or else
(Name'Length = 2
and then Name (Name'Last) = ':'
and then (Name (Name'First) in 'a' .. 'z'
or else
Name (Name'First) in 'A' .. 'Z'))));
end Is_Root_Directory_Name;
------------------------------
-- Is_Parent_Directory_Name --
------------------------------
function Is_Parent_Directory_Name (Name : String) return Boolean is
begin
return Name = "..";
end Is_Parent_Directory_Name;
-------------------------------
-- Is_Current_Directory_Name --
-------------------------------
function Is_Current_Directory_Name (Name : String) return Boolean is
begin
return Name = ".";
end Is_Current_Directory_Name;
------------------
-- Is_Full_Name --
------------------
function Is_Full_Name (Name : String) return Boolean is
begin
return Equivalent_File_Names (Full_Name (Name), Name);
end Is_Full_Name;
----------------------
-- Is_Relative_Name --
----------------------
function Is_Relative_Name (Name : String) return Boolean is
begin
return not Is_Absolute_Path (Name)
and then Is_Valid_Path_Name (Name);
end Is_Relative_Name;
-----------------------
-- Initial_Directory --
-----------------------
function Initial_Directory (Name : String) return String is
Start : constant Integer := Index (Name, Dir_Separator & "");
begin
-- Verify path name
if not Is_Valid_Path_Name (Name) then
raise Name_Error with "invalid path name """ & Name & '"';
end if;
-- When there is no starting directory separator or the path name is a
-- root directory then the path name is already simple - so return it.
if Is_Root_Directory_Name (Name) or else Start = 0 then
return Name;
end if;
-- When the initial directory of the path name is a root directory then
-- the starting directory separator is part of the result so we must
-- return it in the slice.
if Is_Root_Directory_Name (Name (Name'First .. Start)) then
return Name (Name'First .. Start);
end if;
-- Otherwise we grab a slice up to the starting directory separator
return Name (Name'First .. Start - 1);
end Initial_Directory;
-------------------
-- Relative_Name --
-------------------
function Relative_Name (Name : String) return String is
begin
-- We cannot derive a relative name if Name does not exist
if not Is_Relative_Name (Name)
and then not Is_Valid_Path_Name (Name)
then
raise Name_Error with "invalid relative path name """ & Name & '"';
end if;
-- Name only has a single part and thus cannot be made relative
if Is_Simple_Name (Name)
or else Is_Root_Directory_Name (Name)
then
raise Name_Error with
"relative path name """ & Name & """ is composed of a single part";
end if;
-- Trim the input according to the initial directory and maintain proper
-- directory separation due to the fact that root directories may
-- contain separators.
declare
Init_Dir : constant String := Initial_Directory (Name);
begin
if Init_Dir (Init_Dir'Last) = Dir_Separator then
return Name (Name'First + Init_Dir'Length .. Name'Last);
end if;
return Name (Name'First + Init_Dir'Length + 1 .. Name'Last);
end;
end Relative_Name;
-------------
-- Compose --
-------------
function Compose
(Directory : String := "";
Relative_Name : String;
Extension : String := "") return String
is
-- Append a directory separator if none is present
Separated_Dir : constant String :=
(if Directory = "" then ""
elsif Directory (Directory'Last) = Dir_Separator then Directory
else Directory & Dir_Separator);
begin
-- Check that relative name is valid
if not Is_Relative_Name (Relative_Name) then
raise Name_Error with
"invalid relative path name """ & Relative_Name & '"';
end if;
-- Check that directory is valid
if Separated_Dir /= ""
and then (not Is_Valid_Path_Name (Separated_Dir & Relative_Name))
then
raise Name_Error with
"invalid path composition """ & Separated_Dir & Relative_Name & '"';
end if;
-- Check that the extension is valid
if Extension /= ""
and then not Is_Valid_Path_Name
(Separated_Dir & Relative_Name & Extension)
then
raise Name_Error with
"invalid path composition """
& Separated_Dir & Relative_Name & Extension & '"';
end if;
-- Concatenate the result
return Separated_Dir & Relative_Name & Extension;
end Compose;
end Ada.Directories.Hierarchical_File_Names;
|
Owen864720655/userIntentDataset | Ada | 1,080,974 | ads | 0 24 0.073729 20 0.071803 18 0.061656 19 0.058444 23 0.058124 22 0.05725 21 0.054979 3 0.050712 4 0.049857 5 0.049602 9 0.049094 8 0.045431 1 0.045059 7 0.045013 2 0.044846 6 0.043185 12 0.028974 17 0.027317 10 0.025672 11 0.023767 16 0.01151 0 0.010307 14 0.009419 15 0.004253 24 0.073729 20 0.071803 18 0.061656 19 0.058444 23 0.058124 22 0.05725 21 0.054979 3 0.050712 4 0.049857 5 0.049602 9 0.049094 8 0.045431 1 0.045059 7 0.045013 2 0.044846 6 0.043185 12 0.028974 17 0.027317 10 0.025672 11 0.023767 16 0.01151 0 0.010307 14 0.009419 15 0.004253 20 0.06289289891788012 24 0.06204060353613328 18 0.06199281808390047 19 0.06049821163117379 22 0.058072992019485646 21 0.0579055122302972 23 0.05286745854947386 9 0.0444089608123846 4 0.03997178916332063 5 0.039557828131733135 3 0.03886170404226012 12 0.03682986743525167 8 0.03574622574289363 17 0.03558741371775661 7 0.03554093719481118 1 0.0354377876098302 6 0.0351413745883451 2 0.03511790105725867 11 0.03500045844167108 10 0.03427728534852162 16 0.02428702113439517 14 0.022064086761723438 0 0.021769319538794636 15 0.015850339164840088 13 0.01451037095379844 __DUMMY__ 0.0037688341920654226 false 1.0
1 18 0.06617 22 0.062982 19 0.060374 9 0.054082 20 0.053323 24 0.053025 21 0.05177 17 0.047049 23 0.046203 4 0.043104 5 0.042457 3 0.041516 8 0.03914 1 0.038936 7 0.038904 6 0.038657 10 0.038515 2 0.038367 11 0.03417 0 0.033831 16 0.028536 12 0.025227 14 0.012237 15 0.011424 18 0.06617 22 0.062982 19 0.060374 9 0.054082 20 0.053323 24 0.053025 21 0.05177 17 0.047049 23 0.046203 4 0.043104 5 0.042457 3 0.041516 8 0.03914 1 0.038936 7 0.038904 6 0.038657 10 0.038515 2 0.038367 11 0.03417 0 0.033831 16 0.028536 12 0.025227 14 0.012237 15 0.011424 18 0.06493487541860277 22 0.06198912013780404 19 0.061247624426988584 21 0.055627508003227175 20 0.05345927841969685 24 0.05190495442710873 9 0.04886814714965677 23 0.04640094183508804 17 0.045633539449610475 10 0.04058574999570199 11 0.039362485464776706 4 0.037836637570463856 5 0.03725320304070185 3 0.03572793733885589 6 0.03395643605626727 8 0.033889028541951 7 0.033749907477767314 1 0.033618474501169136 0 0.03359061403733381 2 0.03311424499122886 12 0.03247038826074732 16 0.031461605513595725 14 0.02114615949845536 15 0.017669713537436422 13 0.01117444710612581 __DUMMY__ 0.0033269777996383695 false 1.0
2 20 0.083445 24 0.080885 23 0.065318 19 0.057714 21 0.054338 18 0.053083 12 0.047492 3 0.04434 4 0.043733 5 0.043702 22 0.041201 8 0.03962 1 0.039618 7 0.039421 2 0.039381 6 0.038167 9 0.031832 14 0.027757 13 0.025485 15 0.023023 11 0.021505 10 0.019901 17 0.019564 16 0.019475 20 0.083445 24 0.080885 23 0.065318 19 0.057714 21 0.054338 18 0.053083 12 0.047492 3 0.04434 4 0.043733 5 0.043702 22 0.041201 8 0.03962 1 0.039618 7 0.039421 2 0.039381 6 0.038167 9 0.031832 14 0.027757 13 0.025485 15 0.023023 11 0.021505 10 0.019901 17 0.019564 16 0.019475 20 0.07166149572655868 24 0.06691867603938036 19 0.06326465953568915 21 0.06047334042074129 18 0.059488813504492255 23 0.05692276080392183 22 0.05069927930935248 12 0.049366123763473845 11 0.03557351047846024 4 0.03426070596041959 5 0.033968380977939513 9 0.03363232012814553 14 0.0335106905877126 3 0.032819040344052586 10 0.03229195878184209 17 0.03137527690337135 13 0.030018331895747142 8 0.02985428110402777 6 0.029795459728922554 7 0.029762502231928105 1 0.029720237507783354 16 0.029539274027604208 2 0.02943865885088875 15 0.025846737208287833 0 0.015512159152722289 __DUMMY__ 0.0042853250265346265 false 1.0
3 20 0.115717 19 0.101955 24 0.083132 18 0.081487 21 0.079234 12 0.077526 23 0.066153 16 0.059682 13 0.051246 14 0.05027 22 0.046589 15 0.040739 11 0.038839 17 0.038294 10 0.036236 9 0.007216 4 0.006471 0 0.005762 5 0.005158 3 0.003472 6 0.001461 7 0.001208 1 0.001156 8 9.97E-4 20 0.115717 19 0.101955 24 0.083132 18 0.081487 21 0.079234 12 0.077526 23 0.066153 16 0.059682 13 0.051246 14 0.05027 22 0.046589 15 0.040739 11 0.038839 17 0.038294 10 0.036236 9 0.007216 4 0.006471 0 0.005762 5 0.005158 3 0.003472 6 0.001461 7 0.001208 1 0.001156 8 9.97E-4 20 0.09233213852228887 19 0.08863941790790597 18 0.07565195709866368 21 0.07511709609932801 24 0.07042043937313323 12 0.06696869268772833 23 0.05772843774147777 22 0.053249843342350486 16 0.05051180952181502 14 0.04797843659445047 13 0.04548893016448887 11 0.04455452091443497 10 0.041165488525822566 17 0.039562345683582106 15 0.03683301721108467 9 0.019103521993865613 0 0.015884805847651205 4 0.013085059383496092 5 0.0122197568514218 3 0.009893348099210756 6 0.008581283059981739 7 0.0078103117402032966 8 0.007697788704508942 1 0.007632444964112475 2 0.006948955715928734 __DUMMY__ 0.004940152251064326 false 1.0
4 13 0.117399 14 0.103927 12 0.090517 10 0.083109 21 0.075291 18 0.074776 11 0.073892 15 0.05679 22 0.050022 19 0.046275 20 0.041179 0 0.037456 9 0.030547 23 0.027528 17 0.024574 24 0.017129 16 0.014102 5 0.009197 4 0.009003 6 0.008174 1 0.002326 2 0.002301 7 0.002261 8 0.002226 13 0.117399 14 0.103927 12 0.090517 10 0.083109 21 0.075291 18 0.074776 11 0.073892 15 0.05679 22 0.050022 19 0.046275 20 0.041179 0 0.037456 9 0.030547 23 0.027528 17 0.024574 24 0.017129 16 0.014102 5 0.009197 4 0.009003 6 0.008174 1 0.002326 2 0.002301 7 0.002261 8 0.002226 13 0.09036826295048844 14 0.08216786390680031 12 0.0780170120245616 21 0.0733560881884927 18 0.06975126258032971 10 0.06910326906209893 11 0.06600958976682308 22 0.05448592017509333 19 0.050797459910480444 15 0.04562510050528608 20 0.0435776980456884 0 0.03591993873295823 23 0.03412942807426356 9 0.03367199704961258 17 0.03050210547294269 24 0.028025964767909133 16 0.020174412037916492 4 0.015605052610573699 5 0.01547166732463033 6 0.01403904887656592 8 0.009452058754354972 7 0.00944216561751856 1 0.009402539665055642 2 0.009243838101165127 3 0.00810073857558097 __DUMMY__ 0.0035595172228090155 false 1.0
5 22 0.060025 18 0.057786 9 0.057498 24 0.054133 4 0.050446 19 0.05025 3 0.049342 21 0.049058 5 0.048918 20 0.04842 23 0.047572 8 0.04677 7 0.046715 1 0.046554 6 0.045829 2 0.045722 17 0.039225 10 0.035447 11 0.033038 0 0.03036 12 0.022246 16 0.018235 14 0.010446 15 0.005963 22 0.060025 18 0.057786 9 0.057498 24 0.054133 4 0.050446 19 0.05025 3 0.049342 21 0.049058 5 0.048918 20 0.04842 23 0.047572 8 0.04677 7 0.046715 1 0.046554 6 0.045829 2 0.045722 17 0.039225 10 0.035447 11 0.033038 0 0.03036 12 0.022246 16 0.018235 14 0.010446 15 0.005963 22 0.0607050535468044 18 0.0589634143181024 19 0.05362932307640902 21 0.0534396931465195 9 0.0517100450660489 24 0.04981438186398204 20 0.046852761788668255 23 0.045775996444545906 17 0.042525834938436896 4 0.04237689899361287 5 0.041405950860867825 3 0.040424632605476137 11 0.04000780404245878 10 0.039443921175005156 8 0.03876548287072722 6 0.038737088163240826 7 0.038708813824633835 1 0.038529136211420935 2 0.03791490797270007 0 0.03438395384532928 12 0.030619230278298257 16 0.026124577391526144 14 0.019805396314702954 15 0.01430256761478526 13 0.011613152587935622 __DUMMY__ 0.003419981057761257 false 1.0
6 20 0.119602 19 0.111406 24 0.090112 18 0.081864 21 0.074139 23 0.072107 16 0.062797 12 0.0583 22 0.052678 15 0.047726 14 0.047234 11 0.037891 10 0.0367 17 0.035319 13 0.02956 4 0.00876 3 0.008074 9 0.007686 5 0.007562 8 0.002873 7 0.00249 1 0.002243 2 0.001701 6 0.001174 20 0.119602 19 0.111406 24 0.090112 18 0.081864 21 0.074139 23 0.072107 16 0.062797 12 0.0583 22 0.052678 15 0.047726 14 0.047234 11 0.037891 10 0.0367 17 0.035319 13 0.02956 4 0.00876 3 0.008074 9 0.007686 5 0.007562 8 0.002873 7 0.00249 1 0.002243 2 0.001701 6 0.001174 20 0.09417440351686013 19 0.09304873684093855 18 0.07600173443303625 24 0.07401322755317827 21 0.07228863021811725 23 0.06072299391992206 22 0.056612315636014134 12 0.05635274115225432 16 0.05150702929575877 14 0.046679886373689986 11 0.044136846570180716 10 0.04178421597638788 15 0.040783096430179036 17 0.03772141080586144 13 0.0338254013409196 9 0.019703191622627576 4 0.014552547823320567 5 0.013729060056400825 0 0.01274247639087641 3 0.012615653009832082 8 0.008929119791275279 7 0.008779078273683936 6 0.008669903233310385 1 0.00849315907921941 2 0.008103192838005665 __DUMMY__ 0.00402994781814963 false 1.0
7 19 0.098244 18 0.088139 22 0.086974 17 0.07664 21 0.071896 11 0.067844 16 0.067059 0 0.064538 10 0.062019 9 0.05206 20 0.051731 24 0.03822 12 0.03656 23 0.035768 4 0.01461 5 0.013411 6 0.011214 3 0.010522 14 0.00985 8 0.009849 7 0.009678 1 0.009135 2 0.008791 15 0.005246 19 0.098244 18 0.088139 22 0.086974 17 0.07664 21 0.071896 11 0.067844 16 0.067059 0 0.064538 10 0.062019 9 0.05206 20 0.051731 24 0.03822 12 0.03656 23 0.035768 4 0.01461 5 0.013411 6 0.011214 3 0.010522 14 0.00985 8 0.009849 7 0.009678 1 0.009135 2 0.008791 15 0.005246 19 0.08674827112876678 18 0.07675723532693852 22 0.07428803045989367 21 0.06871051744425247 17 0.06410988722567461 11 0.06154476599148464 16 0.059784431418078536 10 0.054391055909626854 20 0.05431525070846574 0 0.05223766741327696 12 0.04415663675881392 9 0.04376360200471093 24 0.043070973152748854 23 0.04021520424137753 14 0.021940712775474516 4 0.018025760346028676 5 0.01727317828846962 13 0.015902669171990298 15 0.01570017968532667 6 0.015064844906033449 3 0.014301589911862304 8 0.013640162786486002 7 0.013568836693948275 1 0.013224495991248994 2 0.012876045402822351 __DUMMY__ 0.004387994856198832 false 1.0
8 19 0.092637 18 0.090191 10 0.077732 11 0.069701 22 0.068824 21 0.067846 16 0.063436 17 0.062254 20 0.060897 0 0.055291 12 0.053078 14 0.047127 13 0.039442 9 0.039098 15 0.034727 24 0.032039 23 0.030924 4 0.0053 5 0.004765 6 0.002601 3 9.37E-4 7 4.96E-4 8 3.68E-4 1 2.88E-4 19 0.092637 18 0.090191 10 0.077732 11 0.069701 22 0.068824 21 0.067846 16 0.063436 17 0.062254 20 0.060897 0 0.055291 12 0.053078 14 0.047127 13 0.039442 9 0.039098 15 0.034727 24 0.032039 23 0.030924 4 0.0053 5 0.004765 6 0.002601 3 9.37E-4 7 4.96E-4 8 3.68E-4 1 2.88E-4 18 0.08270135836519071 19 0.08188069692614847 10 0.07024470906485053 21 0.06897499670670859 22 0.06724220916166862 11 0.06602418609181275 20 0.056498300135588805 17 0.05514899677837611 12 0.05398175720700674 16 0.05190269029756715 0 0.049315398609989625 14 0.047025981748597796 13 0.04144849521114094 9 0.03988869593554724 24 0.03514697116932081 23 0.03376554666754006 15 0.03146885701826349 4 0.011310987746623856 5 0.01086247524709809 6 0.00857540653025889 3 0.006970996962864211 7 0.006495077873835704 8 0.0064117229787808445 1 0.0063043101424294055 2 0.005985501122635392 __DUMMY__ 0.004423674300155264 false 1.0
800 18 0.0770265813936576 10 0.07295375227129125 22 0.06448736108611079 21 0.05967170656968991 11 0.05964946134422839 19 0.058307714274952974 14 0.05223620978702136 9 0.05025799976387539 0 0.048467266315559136 17 0.046575614141516154 12 0.04220404034853574 13 0.041903427188410204 20 0.03938773553773912 15 0.034958900148044966 16 0.029546715867693755 23 0.029174189561648543 24 0.025557821895348436 4 0.022404211150780607 5 0.021993319468500902 6 0.020034381578332698 3 0.01840705200135377 7 0.018186894291806876 8 0.018181450356070817 1 0.01803458866657448 2 0.017661550025101454 __DUMMY__ 0.01273005496615483 false 0.0
9 10 0.118606 18 0.110392 22 0.087542 11 0.07996 19 0.078676 14 0.075691 21 0.067482 9 0.063175 0 0.055798 15 0.048201 17 0.045093 20 0.0416 13 0.032123 12 0.023343 16 0.02078 23 0.016224 24 0.011905 4 0.008594 5 0.007433 3 0.004763 6 0.001478 8 6.22E-4 7 4.32E-4 1 8.8E-5 10 0.118606 18 0.110392 22 0.087542 11 0.07996 19 0.078676 14 0.075691 21 0.067482 9 0.063175 0 0.055798 15 0.048201 17 0.045093 20 0.0416 13 0.032123 12 0.023343 16 0.02078 23 0.016224 24 0.011905 4 0.008594 5 0.007433 3 0.004763 6 0.001478 8 6.22E-4 7 4.32E-4 1 8.8E-5 10 0.09225466987622295 18 0.09169487599182305 22 0.07463106015538093 19 0.06816936483837856 11 0.06772280530232672 14 0.06326866300814986 21 0.06303764613987967 9 0.05519854140033547 0 0.049804734871305094 17 0.04502383839990129 15 0.042565502555042455 20 0.04207668720457418 13 0.03648090762409636 12 0.032964140657578855 16 0.02575215637198359 23 0.025269070013919717 24 0.02148374466351933 4 0.016686031558327236 5 0.015927839423176278 3 0.01289618186668427 6 0.011944925580723383 8 0.010655257412851194 7 0.0105733017768036 1 0.01031271396919065 2 0.010101572241123737 __DUMMY__ 0.003503767096701442 false 1.0
801 0 0.059795607505440634 17 0.05958320830688324 22 0.05863803711973143 9 0.0578967122225945 18 0.050378559106472556 11 0.04603351630029337 10 0.04476995894487815 6 0.04454807588496168 4 0.043961730897992234 5 0.043444979224068696 8 0.04324130394056893 7 0.04317792584426392 1 0.04304848944210572 2 0.04247638459066184 3 0.040923567749695584 19 0.040301960457499626 16 0.04012070459759228 21 0.040020388339525266 23 0.03412317715364805 12 0.024972151746469082 24 0.024239975117144232 15 0.018006158022794958 20 0.017852746663117546 14 0.014486961212320836 13 0.013155703028274209 __DUMMY__ 0.01080201658100142 false 0.0
802 22 0.05981981480830326 9 0.05882911904395298 0 0.05832880259894109 17 0.05764776474937062 18 0.05069087017936583 11 0.04596392984998237 10 0.045257890695630985 6 0.04453736271855839 4 0.04437165157899962 5 0.043843259978674866 8 0.043382986050147336 7 0.043320281275469615 1 0.04317914506737559 2 0.042607046586397336 3 0.04147969716484013 21 0.0412965773147279 19 0.04002001739476574 16 0.037198680392959996 23 0.03416619890752969 24 0.02517417047461101 12 0.02410282481353304 20 0.017959195367665545 15 0.01775087199745218 14 0.015699073311430868 13 0.012657809209263201 __DUMMY__ 0.010714958470050853 false 0.0
803 21 0.07438458150347048 19 0.07307936823023026 20 0.06677909701778668 18 0.0658648737020669 12 0.06080178580085478 22 0.060013524757400585 24 0.058891299405654934 11 0.051738098781928296 23 0.05006608746365554 14 0.04585034476441865 13 0.04329955685391551 10 0.042932380413611415 16 0.038891672749154615 17 0.038432721016805685 9 0.02979060320772631 15 0.029157486908355134 0 0.02489242658205681 4 0.02002766372940991 5 0.019539457169314427 3 0.016244351576282446 __DUMMY__ 0.016139733036039265 6 0.01601666930869991 7 0.01450000091568345 8 0.014466811400315397 1 0.014253650842531053 2 0.013945752862631337 false 0.0
804 17 0.0676692685938178 16 0.060905004972482364 0 0.057453366991792654 19 0.055142269181226014 18 0.05492389558218802 22 0.053656136230272565 11 0.04598923534402192 9 0.044863510723375924 21 0.040874196755498984 10 0.04053433374431806 23 0.038019774049344174 6 0.03512997173368893 20 0.034612897177227 12 0.03445230966458016 4 0.03377902662831399 8 0.03348386069325113 7 0.03335087654056444 5 0.033305707138967605 1 0.033220550237739704 2 0.03275548935617335 24 0.03183182309723378 3 0.030418959966207342 15 0.027873990714855506 13 0.017953861151500498 14 0.016090498826597882 __DUMMY__ 0.011709184904760282 false 0.0
805 19 0.07170376362779189 20 0.06809458724747827 21 0.06771144162298957 18 0.06686194501121237 24 0.05859399508892707 22 0.05731020705838047 12 0.05285069589561231 23 0.050424931186724656 14 0.04634433634884243 11 0.04625032507570218 10 0.043914413552428415 16 0.03874714884361357 17 0.03825335149439902 13 0.03821714726653634 15 0.035451358229199426 9 0.03112200301663457 0 0.023428401011309493 4 0.02214782688484475 5 0.02165642404375756 3 0.01927086851954893 6 0.018061366090676607 7 0.01717027582343874 8 0.017160310827919217 1 0.01691376006841919 2 0.01661973858880608 __DUMMY__ 0.015719377574806924 false 0.0
806 19 0.07063711598088297 18 0.06518530947764488 20 0.06072139520069254 21 0.05912280325791543 22 0.055663031744892184 24 0.05061169292322661 16 0.04855171650507565 17 0.047773198976490135 23 0.047288150520041615 12 0.04705576516230376 11 0.046268685975560865 10 0.04472817780699494 14 0.03836349531565441 15 0.03541443100916029 9 0.03397189660195232 0 0.033628797574598 13 0.03202924654783163 4 0.023774876848037536 5 0.02333832273848536 6 0.0212009001136451 3 0.020991931125382543 8 0.020201125591000593 7 0.020181875200682875 1 0.019977705601914062 2 0.019656939849694813 __DUMMY__ 0.01366141235023874 false 0.0
807 17 0.06637971926061799 16 0.061397498436908504 19 0.05932392961233281 18 0.05757707735132367 0 0.05579083734306352 22 0.05487560418642764 11 0.04870196469369821 21 0.044736058028825486 9 0.04263579363395346 10 0.04254698226277277 23 0.03857820177326559 20 0.038295332218306895 12 0.038180045628673796 24 0.03321457523059631 6 0.03142594961166692 4 0.03049863752638076 5 0.030041335398717388 8 0.029644145872665527 7 0.029542587476719097 1 0.029401235443929283 2 0.028958787261472167 15 0.028243236197535403 3 0.02693108048435584 13 0.021201574554987713 14 0.019300799299474217 __DUMMY__ 0.012577011211329182 false 0.0
808 18 0.06529523323700695 19 0.06003009144219984 20 0.054410397414986204 22 0.053491788681537894 21 0.051932464926085185 10 0.048948289799146366 24 0.04609954362749278 23 0.04472008139272608 17 0.04308024867445529 14 0.041440585987900846 9 0.04124875325591131 11 0.039752247421457575 15 0.039146638208553915 12 0.03701475638261456 16 0.03612235772429469 0 0.032757654696237315 4 0.029974058781595515 5 0.02953510307260208 13 0.02946180388179624 3 0.02801851072389853 6 0.02718525563255779 8 0.02682916101014307 7 0.026759870307706334 1 0.026590569053401885 2 0.02625635851135957 __DUMMY__ 0.013898176152332175 false 0.0
809 17 0.06349355159129248 16 0.058632506824923304 18 0.05857716221287135 19 0.057951140399770264 22 0.05194152313348878 0 0.05062546955416822 9 0.0424629809437214 20 0.04234030824123198 11 0.04230789910957761 10 0.042237816925174844 21 0.0411459446890254 23 0.03976528093866669 15 0.03700421456388111 24 0.03630940830121377 12 0.03317087495546178 6 0.03211788173703911 4 0.03163145789117565 5 0.031169570253281344 8 0.030981136824410494 7 0.030838282977464947 1 0.030696885483720893 2 0.030259691612168165 3 0.028888410388559577 14 0.024246512202543858 13 0.01998414346459349 __DUMMY__ 0.011219944780573532 false 0.0
1000 17 0.06624512560905749 0 0.05897875509096295 16 0.05578151790936964 22 0.05411164153874951 18 0.05267421565226405 19 0.04973307940686959 9 0.04861309849062955 11 0.0452425148899172 10 0.040897930574679255 21 0.039190333430429276 6 0.038833900480173475 4 0.03740199986620768 8 0.03721728025352599 7 0.037106902297125995 1 0.036996470604828524 23 0.03692638642564159 5 0.03692459216485712 2 0.03648197814119918 3 0.03407702378195877 12 0.0314681259758179 24 0.028812668384522244 20 0.028711575358249176 15 0.024922105846677083 13 0.01636732386474059 14 0.01441661085668436 __DUMMY__ 0.01186684310486188 false 0.0
810 18 0.07420644746093169 21 0.07132342784254744 22 0.06792681218908367 10 0.06657369974890807 11 0.06551643547423082 19 0.06323099453541994 12 0.05454482546249521 14 0.05127939216614526 13 0.0474171968279324 9 0.044805452523936536 0 0.04474087009932193 17 0.044323019182778506 20 0.04375778713384553 24 0.0332725353004631 23 0.03306779151620617 16 0.03061152612270109 15 0.026922063983395448 4 0.019273322566719972 5 0.018875653564700896 6 0.016398344364059018 3 0.014404661729993714 7 0.01400914777526308 8 0.013942412252531193 1 0.013821999132845129 2 0.013469058076427764 __DUMMY__ 0.012285122967116325 false 0.0
811 21 0.08208035392842404 22 0.0735451170000325 11 0.06704155577646546 19 0.06414792224347535 18 0.0608861589284654 12 0.05962910349006517 24 0.049202160615565614 10 0.046177352219161895 20 0.04464268458020559 23 0.041998732902502604 17 0.04094221159581919 9 0.040451447472481854 14 0.039901226450771834 13 0.03928024249796245 0 0.03680986588705972 16 0.03057320372237652 4 0.02348633722430144 5 0.022980951741221882 6 0.01956987640348784 3 0.01837777947029652 7 0.017263815305369964 8 0.017147927729800456 1 0.016964160351280868 __DUMMY__ 0.01672796447501283 2 0.01654098289756022 15 0.01363086509083306 false 0.0
812 22 0.06828564560822183 21 0.0573229146127495 9 0.0559116422191145 18 0.05474199679880776 11 0.053801470775671274 0 0.04980217277087654 17 0.049524717089257125 19 0.04763968509171638 10 0.04687881013145034 4 0.03841215171871721 5 0.0378408949354667 6 0.03635514635675098 23 0.03568842169589136 8 0.035175620067126274 3 0.0351676771123239 7 0.03514040340358956 1 0.03490527903864368 24 0.03447664630049356 2 0.034392642527748346 12 0.03240654939439356 16 0.029709443321334794 20 0.025607613206425427 14 0.025431400417454515 13 0.018511443133366303 15 0.015818620923723326 __DUMMY__ 0.011050991348685335 false 0.0
813 21 0.08198032312448784 12 0.07048345780735288 22 0.06537286364423549 19 0.06413120980031115 11 0.06282269003618264 18 0.0599918704269242 13 0.052910672432876414 20 0.05045660380633129 24 0.05040745196187706 23 0.0468735498581898 14 0.04506011629599401 10 0.043380087439617826 17 0.03765926664302952 9 0.033140073204552076 0 0.03218078298749615 16 0.03144912920666384 4 0.021637814560697532 5 0.02114751029146389 6 0.018439805636054653 __DUMMY__ 0.017508431064235268 15 0.01677884312020405 3 0.01563980079176943 7 0.015372263930866204 8 0.015279177835214954 1 0.015122340201517549 2 0.014773863891854267 false 0.0
814 21 0.0726462537265324 19 0.06789872262186905 22 0.06299021559930672 18 0.0628756647837235 20 0.0575471244427453 12 0.05506310971673832 24 0.0544231459534634 11 0.053373706433458054 23 0.04756031785186146 10 0.04369231230210523 14 0.04223975479378153 17 0.03926915510800225 13 0.03798771561519272 16 0.03552894857572472 9 0.03523369818877383 0 0.029166311986543823 15 0.025499323999606808 4 0.023778995564564278 5 0.02328465411513569 3 0.020098659135788247 6 0.019872470335988365 7 0.01846130433896292 8 0.018413291705067215 1 0.01820613526268369 2 0.01784686065024687 __DUMMY__ 0.017042147192133473 false 0.0
815 21 0.07874628722675477 22 0.06640817414867665 19 0.0662074645239746 12 0.06171045878103148 18 0.06119116843638272 11 0.05955583010021842 24 0.05312447735553269 20 0.0529925094444122 23 0.046611674540934796 10 0.0432546599056966 13 0.0431044114564792 14 0.0425277199967126 17 0.03857977980442818 9 0.03521725064514948 16 0.03276661114144001 0 0.030958374195504488 4 0.02286873368863789 5 0.022371599881785643 15 0.019440531898243855 6 0.01906484197117477 __DUMMY__ 0.018515409273322257 3 0.018096454701664114 7 0.01691434592644707 8 0.016841140825358515 1 0.01664738047997788 2 0.016282709650059082 false 0.0
816 19 0.07442995190374671 21 0.07116766990361051 20 0.07040963736325923 18 0.06711383633010942 24 0.06058654074519688 22 0.058029529932556 12 0.05731651557645903 23 0.05118982459871264 11 0.048156484234697684 14 0.045985688082410686 10 0.04269014042679452 13 0.04045252117740203 16 0.04043587721616156 17 0.0385105126821686 15 0.033113110815785766 9 0.029068482790859846 0 0.022920685478300052 4 0.020282597423692796 5 0.01979601352364257 3 0.017091165994774126 6 0.016139555725373903 __DUMMY__ 0.015797061572113434 7 0.015030542225438037 8 0.015014943928058336 1 0.014780177174583513 2 0.01449093317409218 false 0.0
817 21 0.07732168672685362 12 0.06688525336488842 19 0.06393138706436817 18 0.06182063051670256 22 0.06143711020282971 11 0.05727602535045112 20 0.054890804816484506 13 0.05348383253587225 24 0.051439051454679134 14 0.04989521722290916 23 0.046759129770865375 10 0.044810181201436566 17 0.03610919280361976 9 0.03235913054445703 16 0.03128228473521167 0 0.028835082198361724 15 0.025171150947007916 4 0.02156859207145046 5 0.02109763264766232 6 0.018239308446983096 __DUMMY__ 0.0173571647536534 3 0.016300476774244958 7 0.015619409556836003 8 0.015598546765321698 1 0.015411512741333703 2 0.015100204785515593 false 0.0
818 21 0.0808006439562222 22 0.06768493205267749 12 0.0643565485060609 19 0.06369697824574763 11 0.06224788421721319 18 0.05955751124812217 24 0.05148393746482625 20 0.049132781645339525 23 0.046060474667836374 13 0.04581720529453806 10 0.042973935796552225 14 0.042717941219242696 17 0.03803731520348923 9 0.03578660130094972 0 0.03225227002963134 16 0.030555026015597474 4 0.023351736034675934 5 0.022845141656869072 6 0.019726246858309537 __DUMMY__ 0.018562343664802472 3 0.01799429313580851 7 0.017173400186748303 8 0.0170818023002176 1 0.016900312672556615 15 0.01667645636798835 2 0.016526280257977134 false 0.0
819 21 0.08100425241572332 22 0.06779834885401582 12 0.06476184420557318 19 0.06337656288519002 11 0.0626280075996592 18 0.05937063249691597 24 0.05117519416565876 20 0.048614616894494894 13 0.04627562035463399 23 0.045954960170563525 10 0.04298700840716068 14 0.04277494312442386 17 0.03803522718583383 9 0.03582430809945118 0 0.03249331047824204 16 0.030367673320824 4 0.023374114766207814 5 0.022867015384438263 6 0.01978987844732392 __DUMMY__ 0.018538376531583942 3 0.017928688025211095 7 0.017172542244706476 8 0.017080901205414487 1 0.01690032908863081 2 0.01652660799617187 15 0.01637903565194714 false 0.0
1011 21 0.0810040971628623 22 0.07472411735902654 11 0.0666899179826531 19 0.06415503907733432 18 0.06075301333640621 12 0.056093910309467226 24 0.04976771092032162 10 0.0457197538829976 20 0.04402204471903118 23 0.04183550312890805 17 0.04178185638999405 9 0.04175019237418594 14 0.03820065527898033 0 0.037105983729870194 13 0.03505840566067493 16 0.030908654317999953 4 0.02450957899230726 5 0.023994198867506276 6 0.02044022446676108 3 0.019712305957070308 7 0.018385756145525813 8 0.01827647795004374 1 0.018071622193652 2 0.017632816884409763 __DUMMY__ 0.015527308634891898 15 0.013878854277118421 false 0.0
1010 21 0.08249085342264512 22 0.07357830872108284 11 0.06735378071447502 19 0.06396178749356317 18 0.06064228565391537 12 0.06033450625814316 24 0.04922061282603636 10 0.04599615200636064 20 0.044456124459816906 23 0.04209584194101545 17 0.040763625739255065 9 0.04026756433067482 14 0.04005722850655654 13 0.03994303121045009 0 0.036761935074932826 16 0.030380545756620598 4 0.023446799128487107 5 0.022941573159496968 6 0.019549832649617523 3 0.018247384837955707 7 0.017179308639640022 8 0.017062381258830937 1 0.01687994128439202 __DUMMY__ 0.01660877605724 2 0.016457663427756872 15 0.013322155441039023 false 0.0
1008 21 0.08247131394059477 22 0.07354044852310215 11 0.06733271953412712 19 0.06394601009319496 18 0.06063481965774336 12 0.06036410692411254 24 0.0492035545027624 10 0.045992340086589305 20 0.04445876688179851 23 0.042101524957559165 17 0.04076050274258179 9 0.04025176889909175 14 0.04006222853012976 13 0.03998714051195573 0 0.03676240038963704 16 0.030384805218649624 4 0.023447425754849618 5 0.022942463706251675 6 0.019555924701660187 3 0.0182452295386932 7 0.017182509787545045 8 0.017065675824720766 1 0.01688359188969598 __DUMMY__ 0.016635200816382686 2 0.016461527553535332 15 0.013325999033035489 false 0.0
1007 21 0.07501829579671211 12 0.0687879983826863 13 0.06290347168280706 22 0.06010415143824583 18 0.059234768077381636 11 0.05907157566789682 14 0.05587241394144204 19 0.053704705035025634 10 0.04860352948253274 20 0.0439364182194321 23 0.042824315764557384 24 0.04227742235170071 9 0.03576769548021201 17 0.034386815609789664 0 0.03279656507868574 15 0.02692452884303742 16 0.024351602074086997 4 0.024072100863007193 5 0.023624963185059626 6 0.02163938204602286 8 0.018220637051606606 7 0.018172063855698882 1 0.01802319637100211 3 0.017778201156146516 2 0.017728593858413855 __DUMMY__ 0.01417458868681016 false 0.0
1006 21 0.07541594301629014 12 0.06494231413434477 19 0.06355526720390386 22 0.05936890718617599 18 0.05845367011953192 20 0.05647051082321378 24 0.05563688125153849 11 0.05327633109682483 23 0.051811887466524015 13 0.04914048538292863 14 0.045223428464169636 10 0.03846867599450418 17 0.03548963967515647 16 0.03223834970865226 9 0.03052307483699933 0 0.02586634921155529 4 0.02442658458197128 15 0.02416662622266565 5 0.02390282123371324 6 0.021102201960452302 3 0.01944169310376765 7 0.018741384729050244 8 0.018683556140491043 1 0.01849040323302482 2 0.01815312386529338 __DUMMY__ 0.0170098893572568 false 0.0
1005 21 0.08094854706071726 22 0.07316007983507714 19 0.06620494455108208 11 0.06499428056485886 18 0.06203337670393826 12 0.05692954244544709 24 0.05169111015703431 20 0.048060788049744306 10 0.04587393237046955 23 0.04329712625860908 17 0.040567667786269336 14 0.040187039422769494 9 0.03982398085591455 13 0.036341412997552114 0 0.034612698832593096 16 0.03158245299696037 4 0.02343196749300688 5 0.022929044322921133 6 0.019163680056580458 3 0.01882335343286163 7 0.017235655042500037 8 0.017126052276291284 1 0.016921575169916082 2 0.016515312194792225 15 0.016327179013227718 __DUMMY__ 0.015217200108865658 false 0.0
1004 21 0.08120666207461871 12 0.06870466355727468 19 0.06662081726554799 22 0.06543096201305104 18 0.06193260318417725 11 0.06189516897209719 20 0.05326602606185743 24 0.05136969035174254 13 0.050201497064741224 23 0.04634151490309516 10 0.04459538354185879 14 0.04409234935391728 17 0.038580483351770535 9 0.033438106641664175 16 0.03317786077220661 0 0.03213964786822671 4 0.020913262635749913 5 0.020448292824042036 6 0.017503988186186984 __DUMMY__ 0.01734803478227089 15 0.01730224359717916 3 0.015383503722549577 7 0.014743544364892277 8 0.014666171694904325 1 0.01451043426375874 2 0.014187086950618788 false 0.0
1003 21 0.07887723234496503 12 0.06720348755648732 22 0.06317829565586427 19 0.06019859124536026 11 0.058306126406688315 18 0.05595996374453685 24 0.051925380463616416 23 0.050259537480967134 13 0.05022766477035535 20 0.048507982039268795 14 0.04300370767103754 10 0.03850869751549278 17 0.035911261636754725 9 0.033242761207547204 0 0.029767574423780016 16 0.029163696172655258 4 0.0256652579075864 5 0.025134876463556017 6 0.02255217491406567 3 0.019841106483506638 7 0.0196438015116417 8 0.01955071410653893 1 0.019375196899129983 2 0.019001897308376526 __DUMMY__ 0.017520093810807772 15 0.017472920259413268 false 0.0
820 21 0.08071248117199846 22 0.06989775374346532 19 0.06372961171029785 11 0.06359201317782491 12 0.061533902179004014 18 0.06004966634237594 24 0.05070616552140183 20 0.04743051090035779 23 0.04442369578035665 10 0.044151910095278066 13 0.04238829704479412 14 0.04144668980951944 17 0.039173601876739496 9 0.03785265661006656 0 0.03385147803936963 16 0.030518437900358877 4 0.02368168512605 5 0.023176794669870247 6 0.019903575125137823 3 0.018537448449014515 __DUMMY__ 0.018255522351448006 7 0.01752727420932917 8 0.01743390524699478 1 0.017247761211920228 2 0.01685648260330431 15 0.015920679103721795 false 0.0
1002 21 0.0812919338457005 22 0.07269002306543643 11 0.06456026833197705 19 0.06260179029661986 12 0.05849300124818163 18 0.058350872130915006 24 0.051254894325328634 20 0.04427762520488647 23 0.04381801876884756 10 0.042648386837846664 9 0.04022087648376115 17 0.04010044501044998 14 0.039099573873504566 13 0.038067603259552364 0 0.035057354587062696 16 0.02982359735142175 4 0.025440419390119484 5 0.024907173549851103 6 0.021499399839748735 3 0.020441584676909146 7 0.01928132938065704 8 0.01919329097358729 1 0.018991571001743614 2 0.01855228796963562 __DUMMY__ 0.015163690698417682 15 0.014172987897837904 false 0.0
821 21 0.0745083121749714 19 0.0728393696425595 20 0.06635209659253186 18 0.06571118586508945 12 0.06087885125017039 22 0.06016829054780629 24 0.05869004375072706 11 0.05196894608730005 23 0.049956629811274834 14 0.04578616253941918 13 0.04337364064062801 10 0.04294000163844025 16 0.03868974663878649 17 0.03841648266698227 9 0.029924341998403523 15 0.02887790474694562 0 0.025064740238069077 4 0.02009855491353564 5 0.019610183539265604 __DUMMY__ 0.01637251198155716 3 0.01627831125775771 6 0.016099481324828437 7 0.014557807342408342 8 0.014523438945321742 1 0.014311108918183138 2 0.014001854947037169 false 0.0
1001 21 0.0777623919296261 22 0.06984635896443425 19 0.06693176652584833 18 0.06248744286207461 11 0.060889679211573 12 0.05550271961238676 24 0.05353703810233647 20 0.052035622709539854 23 0.04480485240517474 10 0.04466519980295528 14 0.04090262351068941 17 0.04033934190670872 9 0.038050879181111164 13 0.035951811674422664 16 0.03328847504364898 0 0.032232355370463796 4 0.023563649396297303 5 0.023048198305276484 15 0.020410852235418157 3 0.019366765922671992 6 0.01936326369379849 7 0.01769051358456509 8 0.017609190190506704 1 0.017389551809136174 2 0.01699531893244592 __DUMMY__ 0.015334137116889378 false 0.0
822 21 0.08073057367608706 22 0.06992503247302144 19 0.0637065642867595 11 0.06362421667996809 12 0.061536835865519356 18 0.06003573753053997 24 0.05068586717294245 20 0.04738100000427015 23 0.04440980798187508 10 0.04415599225131694 13 0.04238648941232854 14 0.04143592514687625 17 0.03917637589633804 9 0.03787451657232227 0 0.03387554847874878 16 0.030497250305376828 4 0.02369169146450544 5 0.023186747237214242 6 0.01991409739882522 3 0.01854382699430351 __DUMMY__ 0.01824158733789659 7 0.01753552630172996 8 0.01744199829861625 1 0.017255920456326745 2 0.01686441569574655 15 0.01588645508054481 false 0.0
823 21 0.07946091970173537 22 0.0680946587277324 12 0.061837914544434436 11 0.06164683770273787 19 0.06023263391620513 18 0.05681455574535666 24 0.05050052077363627 23 0.046681971521260204 20 0.04491383572858506 13 0.04369405795804468 14 0.041045150684569175 10 0.041042464233997406 17 0.03772998591502523 9 0.03738014088181516 0 0.032786204824752245 16 0.02858139351799532 4 0.02607217521926532 5 0.02554808642322307 6 0.022568076024197112 3 0.02066436824768397 7 0.020010391158455237 8 0.019909034057868313 1 0.019721093675436 2 0.019319911945269722 __DUMMY__ 0.017931563923413295 15 0.015812052947305352 false 0.0
824 21 0.07215318596801486 22 0.06199431660409867 12 0.06094369716860468 18 0.05734702807174942 11 0.056946082131677844 19 0.052777837569519113 13 0.052744246784403245 14 0.04965347775475325 10 0.04615279276246935 24 0.0433259802591654 23 0.04265519393898538 20 0.0414334527687581 9 0.0392675475204753 17 0.03634077202826419 0 0.034147324506457105 4 0.027467681178230594 5 0.02697697387826801 15 0.024912340212782474 6 0.024828749678249544 16 0.024808272842999163 8 0.02201937573430456 7 0.021958365046706178 3 0.021954884779801096 1 0.021792598986977666 2 0.021458484697061457 __DUMMY__ 0.01393933712722342 false 0.0
825 21 0.08073941474579302 22 0.06991331571329185 11 0.06378387299242534 12 0.06198096601346402 19 0.06055746102106728 18 0.05753997865391264 24 0.04968327251583898 23 0.04518568403076743 20 0.043819522061796574 13 0.04343458692997554 10 0.0423751683345029 14 0.04101190319346228 17 0.03840932076075947 9 0.03838218671751707 0 0.03416755226384201 16 0.028388874828376376 4 0.02547794161246188 5 0.02495109321811338 6 0.021908555994921898 3 0.01997914299106152 7 0.019300829170564998 8 0.019200777252473208 1 0.019011163731349156 2 0.01859795191033622 __DUMMY__ 0.01754832180443327 15 0.014651141537491691 false 0.0
826 21 0.07342785901047713 19 0.06816357686511403 18 0.06433991850589636 20 0.06166242889104333 12 0.0609139989774319 22 0.05965274415698101 24 0.055168051045480344 11 0.05253521286456897 14 0.0483838168808123 23 0.04822156146681905 13 0.04658738561987988 10 0.04437462171301224 17 0.03732428362041892 16 0.035264635643067165 9 0.031574663947238395 15 0.029991585686270323 0 0.026347781036093983 4 0.021345516745380558 5 0.020883088189791194 6 0.017642918379454718 3 0.017239911088212618 __DUMMY__ 0.016310059608256204 7 0.01585956148017905 8 0.015831259501173322 1 0.01563007366634206 2 0.015323485410604782 false 0.0
827 21 0.08089251595594427 22 0.07098279280441391 11 0.06469379064490215 12 0.061031993158667856 19 0.06022099131936952 18 0.057416550229088266 24 0.04908921348811537 23 0.04456981455364315 10 0.042674753135502626 20 0.04242021871703871 13 0.042322743628558625 14 0.040483774594740125 9 0.039294672775537554 17 0.038948587764906305 0 0.03511158836392089 16 0.028232117389339614 4 0.025757303655016474 5 0.02522348932796707 6 0.022179898682441076 3 0.02025243891913461 7 0.01958729292420923 8 0.019481258250572165 1 0.01928903028847891 2 0.018858021663780904 __DUMMY__ 0.016851204999107618 15 0.01413394276560311 false 0.0
828 21 0.08119819335231944 12 0.07085266745725262 22 0.0640301153713883 19 0.061943145838940644 11 0.0614795956256973 18 0.05846422801466913 13 0.05437091344879886 24 0.05038856819343809 20 0.049468295688050674 23 0.048024330000216504 14 0.04566644391253756 10 0.041962461144478706 17 0.03640001056932777 9 0.03273306313127725 0 0.031148241989214447 16 0.029838381300765725 4 0.022839537444845334 5 0.022332881957178165 6 0.019773246447450682 __DUMMY__ 0.017582534078426627 15 0.017323962033560767 3 0.016699582800472693 7 0.016608316807029205 8 0.016516341715995933 1 0.016355317002762493 2 0.015999624673905054 false 0.0
829 21 0.06941091121936903 19 0.06267462832544489 22 0.06266528085808848 18 0.06261132556079799 11 0.05322770816692708 20 0.05260064208405564 12 0.05158639779777964 24 0.05030559572658406 14 0.04838413527180761 10 0.0462608866814022 23 0.044331211356998815 13 0.04020950192071868 17 0.03915727224790529 9 0.03713778787937297 15 0.03315405151758345 16 0.032950096431576995 0 0.030185783978380582 4 0.024366809280772256 5 0.023886924427618413 6 0.020754105584437733 3 0.020557470065421836 7 0.01919960437103237 8 0.0191987404664882 1 0.018959417551571326 2 0.018620121269675348 __DUMMY__ 0.017603589958189086 false 0.0
1009 21 0.07903136321932452 12 0.06689959872062119 22 0.06625866823399694 11 0.0634707837940213 19 0.06114946548741086 18 0.0595285471819107 13 0.049368905286874626 24 0.04603750736740668 10 0.04553495006872646 20 0.04532139876264439 23 0.04357432676202471 14 0.04137961313818212 17 0.04040778957006621 9 0.03728217485067728 0 0.03712107809647063 16 0.031480315179331884 4 0.023744212730657705 5 0.02329006628928928 6 0.020951953367716332 7 0.01796542924204516 3 0.017931164384154978 8 0.01786702450676517 1 0.017757059947835878 2 0.017376010433042488 __DUMMY__ 0.015056753925199992 15 0.014213839453602557 false 0.0
1022 21 0.07520527507619687 22 0.0709363529295082 19 0.06332304071746435 18 0.06330440799087418 11 0.06285963087315541 12 0.05210656293846867 10 0.049092891659524504 24 0.04778144900545885 20 0.0462329326656476 23 0.04202060094052321 9 0.04176971152266014 14 0.04086564854025783 17 0.04080582585589988 0 0.03603420739852746 13 0.034962523540358205 16 0.030304149573725875 4 0.025143507050070443 5 0.024649943426787516 6 0.02113467871075148 3 0.02086228986318054 15 0.01994989185370517 7 0.019367165512553717 8 0.01929291610947984 1 0.019075440695917077 2 0.018708759238421285 __DUMMY__ 0.014210196310881537 false 0.0
1021 21 0.0815223344449388 19 0.06755441343823053 22 0.06748147012075247 12 0.06559352985364456 11 0.06236696262370942 18 0.062062665026687676 20 0.05319398260750265 24 0.05262258267225276 13 0.046080011923690094 23 0.04579734784771503 10 0.04429483976408017 14 0.04307956638672049 17 0.03918324677826558 9 0.03457168661257805 16 0.03354020734630567 0 0.032129401208436215 4 0.02112860533329425 5 0.02064023394101976 __DUMMY__ 0.017539427255765662 15 0.01744590279845627 6 0.017408319173303044 3 0.01593203828462091 7 0.01495494324296415 8 0.014865181313460492 1 0.014689329968708864 2 0.01432177003289661 false 0.0
1020 21 0.08130566660678172 22 0.07552513238456462 11 0.06832832973366136 19 0.06322810657042864 18 0.06069940653586752 12 0.056450162927993604 24 0.04769185068657924 10 0.04685754741310315 9 0.04268522049319685 17 0.042398782852515554 20 0.041677743183327697 23 0.04056005037131982 0 0.03892953974357803 14 0.03817262623450264 13 0.035778770546742354 16 0.03051264790721423 4 0.02442642420003442 5 0.023918137267388125 6 0.020512749896302206 3 0.01942972758122576 7 0.018309665386490145 8 0.018191816238713306 1 0.017997198869446892 2 0.01755014882042365 __DUMMY__ 0.01597346612555731 15 0.012889081423041208 false 0.0
1019 21 0.08245861930188608 22 0.07354315086880366 11 0.06731140314018086 19 0.06393648810965447 18 0.060614237639164584 12 0.06032915835395511 24 0.049226828489716275 10 0.04596328624677121 20 0.04445397107282641 23 0.04211153582458495 17 0.04076119283793144 9 0.040260414393294405 14 0.04004224392914103 13 0.039944296114965167 0 0.03675215500913456 16 0.03038436735143231 4 0.023468183272747273 5 0.0229629577408297 6 0.019575112654984118 3 0.018270091381689384 7 0.01720486916761201 8 0.017088261011672948 1 0.016905911443415987 __DUMMY__ 0.01661753524333898 2 0.016483579947134428 15 0.013330149453132628 false 0.0
1018 21 0.08229956995556535 12 0.07144148845428278 22 0.06519192387765475 19 0.06353964483236185 11 0.0630492556547154 18 0.05949028385746361 13 0.05402526309636917 24 0.05020448151372044 20 0.04994054907119463 23 0.04703572651555548 14 0.04530830873271861 10 0.04307096119926386 17 0.037356459078276165 9 0.03292789677001345 0 0.03215764646794561 16 0.031035396039873826 4 0.021754555213093184 5 0.02126401105424766 6 0.018624740148672745 __DUMMY__ 0.01738844269815255 15 0.016417973929021622 3 0.015611804517406685 7 0.015449686915308465 8 0.015357336331744114 1 0.015201719788094568 2 0.014854874287283463 false 0.0
1017 21 0.07146041844440529 19 0.06415530255162546 22 0.0635906934702957 18 0.05866994648017877 24 0.05573910201132268 20 0.05365875184430026 12 0.05325834147673694 11 0.05279919707951945 23 0.04816519992994588 17 0.040079123041317714 10 0.03900861480139033 14 0.03850914033212928 9 0.03616698913120215 16 0.03495603546652143 13 0.03471759775088744 0 0.029629500828414902 4 0.026814767199947052 5 0.02628810392587288 15 0.023502983317079076 6 0.023121740413867307 3 0.02305979857645396 7 0.021641220487347106 8 0.021640088944979947 1 0.02140002379598349 2 0.021033828226050762 __DUMMY__ 0.016933490472224928 false 0.0
1016 21 0.06934955823293366 22 0.0662737592089006 11 0.06018559200149444 18 0.056030934395798974 12 0.05272653269787999 19 0.05039142561565855 10 0.04764526443840618 9 0.04580937129224352 0 0.041199575653877905 17 0.04041222766125571 23 0.040386161529902875 13 0.03965610523229074 24 0.03923745516394752 14 0.037728630608484706 20 0.033556387898387746 4 0.03172387382517448 5 0.03128024384752104 6 0.0291739179601218 7 0.02675869312298064 3 0.02674661680576183 8 0.026693546939924113 1 0.026581910432878254 2 0.02615602400763551 16 0.024940569390696592 15 0.015474924729810212 __DUMMY__ 0.013880697306032275 false 0.0
1015 21 0.07517750492726753 22 0.07093180346476566 19 0.06340475691638203 18 0.06338351610101257 11 0.06282840844718364 12 0.052044263063768484 10 0.04913560837574973 24 0.04783153296133721 20 0.046349873033144466 23 0.042043944073459225 9 0.04175207189884506 14 0.040909607778382845 17 0.040803307140364044 0 0.03598666569252121 13 0.03491097741929911 16 0.030337782522554917 4 0.025119802569054724 5 0.02462603037802558 6 0.021100753181464756 3 0.02085085702596858 15 0.0200531067938186 7 0.019342338793321798 8 0.019268492983900033 1 0.01905006256262472 2 0.01868444336418147 __DUMMY__ 0.01407248853160211 false 0.0
1014 21 0.07777987393912304 22 0.06988237420935299 19 0.06691730180264623 18 0.06248393389085756 11 0.060929737267443454 12 0.05549490035956374 24 0.053514409911799475 20 0.05198882425398309 23 0.044783243704723086 10 0.044680711789917366 14 0.040889321212615896 17 0.040349202110180525 9 0.038078259529990076 13 0.035936192417781294 16 0.03327339800654574 0 0.03226298229072642 4 0.023569277946794625 5 0.02305379849521574 15 0.020378185103598536 3 0.019370041223369293 6 0.01936856767625652 7 0.01769457507890795 8 0.01761301614291293 1 0.01739341828295316 2 0.016998922974005834 __DUMMY__ 0.015315530378735343 false 0.0
830 21 0.08119819335231947 12 0.07085266745725262 22 0.06403011537138831 19 0.06194314583894066 11 0.061479595625697304 18 0.058464228014669134 13 0.05437091344879888 24 0.05038856819343809 20 0.04946829568805068 23 0.04802433000021652 14 0.04566644391253757 10 0.0419624611444787 17 0.036400010569327776 9 0.03273306313127726 0 0.031148241989214454 16 0.029838381300765732 4 0.022839537444845334 5 0.02233288195717817 6 0.01977324644745069 __DUMMY__ 0.01758253407842663 15 0.01732396203356077 3 0.016699582800472696 7 0.016608316807029202 8 0.01651634171599594 1 0.016355317002762496 2 0.015999624673905054 false 0.0
1013 21 0.07443215359048466 19 0.07194820065006845 18 0.06517321540737299 20 0.06508875412287367 12 0.06086533587058851 22 0.060298019442193235 24 0.058015756646109605 11 0.05226971300319058 23 0.04970374896198626 14 0.04556720453337799 13 0.0435299737569065 10 0.04289169781643421 17 0.03840567208952983 16 0.03817139149391002 9 0.030312475673023448 15 0.02835171071224247 0 0.025554636336876213 4 0.02045991686705319 5 0.01997245373851088 __DUMMY__ 0.01701893042358552 3 0.016559790642724385 6 0.016530815939347642 7 0.014928861234133615 8 0.014893589490877449 1 0.01468397764285583 2 0.014372003913743008 false 0.0
831 21 0.08119819335231947 12 0.07085266745725263 22 0.06403011537138832 19 0.06194314583894066 11 0.061479595625697304 18 0.05846422801466913 13 0.05437091344879888 24 0.050388568193438094 20 0.04946829568805068 23 0.04802433000021652 14 0.04566644391253757 10 0.04196246114447871 17 0.03640001056932778 9 0.03273306313127726 0 0.031148241989214447 16 0.029838381300765732 4 0.022839537444845334 5 0.02233288195717817 6 0.01977324644745069 __DUMMY__ 0.01758253407842663 15 0.017323962033560767 3 0.016699582800472696 7 0.01660831680702921 8 0.016516341715995937 1 0.016355317002762496 2 0.015999624673905057 false 0.0
1012 21 0.08249139066702355 22 0.07357814173534467 11 0.0673540755803756 19 0.06396185219212348 18 0.06064236594543632 12 0.06033572346963947 24 0.04922055847229006 10 0.04599630711347585 20 0.04445631801220167 23 0.04209598582434301 17 0.04076343299348483 9 0.04026724929375906 14 0.040057785987429644 13 0.03994438004520871 0 0.03676191135792255 16 0.030380462429744563 4 0.02344656354385581 5 0.022941339319173328 6 0.01954963510902344 3 0.018247034764196066 7 0.017179024209206542 8 0.017062094618208262 1 0.01687966017481805 __DUMMY__ 0.016607287351133853 2 0.01645738587794343 15 0.01332203391263803 false 0.0
832 21 0.08119819335231947 12 0.07085266745725263 22 0.06403011537138832 19 0.06194314583894066 11 0.061479595625697304 18 0.05846422801466913 13 0.05437091344879887 24 0.05038856819343809 20 0.04946829568805068 23 0.04802433000021652 14 0.04566644391253757 10 0.04196246114447871 17 0.036400010569327776 9 0.03273306313127726 0 0.031148241989214454 16 0.029838381300765732 4 0.022839537444845334 5 0.02233288195717817 6 0.01977324644745069 __DUMMY__ 0.01758253407842663 15 0.017323962033560767 3 0.016699582800472696 7 0.01660831680702921 8 0.016516341715995937 1 0.016355317002762496 2 0.015999624673905057 false 0.0
833 21 0.07321698724029373 22 0.06439306922303879 12 0.05858151069275302 11 0.05759739007759219 18 0.05626665430228776 19 0.053645104212160226 13 0.04755695282672374 14 0.04596965871426229 24 0.045275932697751695 10 0.04405549898069492 23 0.04327842318762864 20 0.04073476827782881 9 0.04031932452722024 17 0.03707498582325071 0 0.034312968616576865 4 0.02850369438616357 5 0.027983996500784755 6 0.025571272303594666 16 0.025164611874642487 3 0.023228400066657856 8 0.02297863161789111 7 0.02293918116602024 1 0.02274270949914006 2 0.022379171642401677 15 0.022082033552771406 __DUMMY__ 0.014147067989868522 false 0.0
834 22 0.0674009593826361 21 0.06418056028490379 18 0.05334102872535094 11 0.05323412300129776 19 0.05223098778912222 9 0.04839993902768565 24 0.04470066690178098 17 0.04406744027779496 23 0.04187252141125632 10 0.040807323780751185 12 0.04031164082174101 0 0.04017440337330005 4 0.035655474564024334 5 0.03512192961839511 20 0.03493303357986749 6 0.03272127358894822 3 0.03221246294499789 8 0.03144055753612629 7 0.03143842878850216 1 0.031218057403344192 2 0.0307500265791322 14 0.029829748809522168 16 0.029567327418501058 13 0.023722673742302955 15 0.017278377888952683 __DUMMY__ 0.013389032759762285 false 0.0
835 22 0.06512476482454028 21 0.05555903317378996 9 0.05387394956868657 18 0.051411704975154286 11 0.04875696665942339 17 0.046630298522440536 19 0.046142667942376335 0 0.04489702632128526 10 0.041824723181507116 4 0.040811932780374524 5 0.04025706186054167 23 0.039557914720072564 24 0.03868304313254994 6 0.03858065046477403 3 0.03793740474235762 8 0.03766454898969567 7 0.03763432427514676 1 0.03743476411004339 2 0.036915909221341976 12 0.03155899585285995 16 0.028684186028736774 20 0.028069515389120833 14 0.02494725119942852 13 0.017538851459060915 15 0.017371466818009978 __DUMMY__ 0.012131043786681178 false 0.0
836 21 0.0721961748829999 22 0.0695188067736392 11 0.062365790735023546 18 0.057545665975984546 19 0.05468502803620414 12 0.05195842359413669 10 0.047266022843699115 9 0.04542840008416561 24 0.041932263175051755 17 0.04178988414339976 0 0.040917395224719 23 0.04022346596645316 14 0.03666806393075483 13 0.0360849284944488 20 0.03594719212802371 4 0.029797480270471247 5 0.02932656033311681 16 0.027387158071264604 6 0.026790051750694124 3 0.02501625451867759 7 0.024592085803086756 8 0.024511458799843344 1 0.024367076342307392 2 0.02392599982441286 __DUMMY__ 0.015001041433448147 15 0.014757326863973436 false 0.0
837 18 0.058202646777733166 22 0.057693533280556215 19 0.05248537756326896 21 0.05146979654362328 9 0.046631231462906916 10 0.04483340423838851 17 0.0441653927474275 24 0.04359672830966108 20 0.04316486839080968 23 0.041794609047901006 11 0.04146835632177119 14 0.03848837686440821 15 0.03708101467164917 0 0.03630774367575098 4 0.035075307012849374 5 0.0345670442669588 3 0.03307983920492236 16 0.03296153326102098 6 0.03247462331084454 8 0.032149960864039345 7 0.032044507058837546 1 0.031848325892968835 2 0.03146555368533949 12 0.03144999288490116 13 0.024083758502845238 __DUMMY__ 0.011416474158616336 false 0.0
838 21 0.0750633068038929 19 0.07379033402477131 20 0.0663308924584467 18 0.06631212927550602 22 0.06185007317814031 12 0.059158879927619874 24 0.059134826452117546 11 0.052946684670782826 23 0.0495528315415846 14 0.045323409841053 10 0.043582602035086654 13 0.040930169902594404 16 0.03885885244496036 17 0.038754224511307916 9 0.030745887068150523 15 0.028730032288687545 0 0.025321709218641103 4 0.019997503968607076 5 0.019508820960729464 3 0.016373540646050316 6 0.015754894049657263 __DUMMY__ 0.015318858232989981 7 0.014389092971011697 8 0.014338637421212082 1 0.01412282065418245 2 0.013808985452215792 false 0.0
839 21 0.07627088650248748 12 0.07055226647275586 13 0.06477341003707596 22 0.06007416277819266 11 0.05978431959833851 18 0.05957652672344464 14 0.057255586142260166 19 0.05438198248286345 10 0.048604533899092445 20 0.044833911927435716 23 0.04338290503210908 24 0.042812970755743 9 0.03463736430124592 17 0.03381497206587449 0 0.03199075434232369 15 0.027421507716961176 16 0.024319958139845072 4 0.023183551540583373 5 0.022728788302148934 6 0.020704933443055122 8 0.01715675181015325 7 0.017121952697443703 1 0.016967034465255257 3 0.016695507730765162 2 0.016667008830799225 __DUMMY__ 0.01428645226174667 false 0.0
1033 21 0.08134503877621713 22 0.07558883747642028 11 0.06838756533403703 19 0.0632117340585676 18 0.06068206458641478 12 0.05644161590646285 24 0.04767477451851838 10 0.0468576617097522 9 0.042726861308146465 17 0.04242187492967021 20 0.04160647253780941 23 0.040535042062305106 0 0.03897500428079082 14 0.038141697892944845 13 0.03574561227993744 16 0.030500472425980772 4 0.02443955194557846 5 0.02393104235276065 6 0.02052531596355325 3 0.01943907708471359 7 0.018320528430786406 8 0.018202307995170405 1 0.018007719100758872 2 0.017559860500553054 __DUMMY__ 0.015899913967483605 15 0.012832352574666599 false 0.0
1032 21 0.07449195028566206 19 0.07181102055194033 18 0.06507540439552792 20 0.06483292897894548 12 0.060864453020418874 22 0.06040652901401782 24 0.05791472439690202 11 0.05240091713538909 23 0.04963786062006376 14 0.0454936242990349 13 0.04350709408171813 10 0.0428799148785091 17 0.038412932942347905 16 0.03806669662017984 9 0.03040666460818038 15 0.028181743543890594 0 0.02566137025436211 4 0.020516040312345555 5 0.02002826105013825 __DUMMY__ 0.01714139629212529 3 0.01659916957478193 6 0.016591955765214834 7 0.014979144979713728 8 0.014943321684728846 1 0.014733936001784043 2 0.014420944712077286 false 0.0
1031 21 0.07449195028566206 19 0.07181102055194033 18 0.06507540439552792 20 0.06483292897894548 12 0.060864453020418874 22 0.06040652901401782 24 0.05791472439690202 11 0.05240091713538909 23 0.04963786062006376 14 0.0454936242990349 13 0.04350709408171813 10 0.0428799148785091 17 0.038412932942347905 16 0.03806669662017984 9 0.03040666460818038 15 0.028181743543890594 0 0.02566137025436211 4 0.020516040312345555 5 0.02002826105013825 __DUMMY__ 0.01714139629212529 3 0.01659916957478193 6 0.016591955765214834 7 0.014979144979713728 8 0.014943321684728846 1 0.014733936001784043 2 0.014420944712077286 false 0.0
1030 21 0.0824860228103698 22 0.07355315514571449 11 0.06732916818010096 19 0.0639313728546435 18 0.06059885358073481 12 0.060361698302757304 24 0.04922982192122461 10 0.04594804018402112 20 0.04443903332062481 23 0.04211417285851475 17 0.04075954843575628 9 0.040256152524983976 14 0.04003884856254775 13 0.0399663521647832 0 0.036755915251636476 16 0.03037986017851481 4 0.02346647741636717 5 0.022961157079972087 6 0.019574372601408173 3 0.01826401035925907 7 0.01720124184631703 8 0.01708446227575946 1 0.016902235047905015 __DUMMY__ 0.016615289180055986 2 0.016479665257265713 15 0.013303072658761699 false 0.0
1029 21 0.07299104154708456 12 0.06318482034390363 22 0.0614161927781743 18 0.05756951530674324 11 0.057374646023761654 13 0.05554338250043411 19 0.052865470502486245 14 0.05124848206278514 10 0.04645706528455803 24 0.04327220538877011 23 0.04290214960710827 20 0.04206904802583061 9 0.03824369565970911 17 0.03564775652966918 0 0.033590643947718275 4 0.026710508343066215 5 0.026227657105618776 15 0.02530893798139544 16 0.024529860934015237 6 0.024121898411242303 8 0.02114271384182724 7 0.021081469623503313 3 0.020975105940631802 1 0.020921406402484737 2 0.020599586544965187 __DUMMY__ 0.014004739362513329 false 0.0
1028 21 0.07905403552277414 22 0.07487621421010038 11 0.06799266341982042 19 0.0631967090672165 18 0.06114616443828908 12 0.05475892644720972 10 0.04760233205198914 24 0.046344463649238554 17 0.04395019013716089 9 0.0430892218523164 20 0.04118397127155322 0 0.04040674090717121 23 0.04004869018859163 14 0.036989182041899 13 0.03432266470325186 16 0.03216102609899405 4 0.024665922706849492 5 0.024163413899341225 6 0.020980419733934802 3 0.019775237332119996 7 0.018814977407243746 8 0.018708310295047968 1 0.018509698422750562 2 0.018069812780563948 __DUMMY__ 0.015542518967703492 15 0.01364649244686842 false 0.0
1027 21 0.07449195028566206 19 0.07181102055194033 18 0.06507540439552792 20 0.06483292897894548 12 0.060864453020418874 22 0.06040652901401782 24 0.05791472439690202 11 0.05240091713538909 23 0.04963786062006376 14 0.0454936242990349 13 0.04350709408171813 10 0.0428799148785091 17 0.038412932942347905 16 0.03806669662017984 9 0.03040666460818038 15 0.028181743543890594 0 0.02566137025436211 4 0.020516040312345555 5 0.02002826105013825 __DUMMY__ 0.01714139629212529 3 0.01659916957478193 6 0.016591955765214834 7 0.014979144979713728 8 0.014943321684728846 1 0.014733936001784043 2 0.014420944712077286 false 0.0
840 21 0.07906751052421779 22 0.0759896325695556 11 0.0667389844312445 19 0.06046084337917137 18 0.059352103712489765 12 0.05231042651580393 10 0.04654641945101492 24 0.04633802516223745 9 0.04563039184355988 17 0.04273190745682236 0 0.040204664986362715 23 0.039665029134546066 20 0.03832359680872767 14 0.03645010453228459 13 0.032400524633225056 16 0.028743951246494672 4 0.027027457605540865 5 0.02649903460763302 6 0.023152723030168864 3 0.022317101129097905 7 0.021151343725902716 8 0.02105654551011408 1 0.020840915006577903 2 0.020374831475456837 __DUMMY__ 0.014149928813569294 15 0.012476002708180096 false 0.0
1026 21 0.08232143654300902 22 0.06981844611726348 11 0.06448732556414495 12 0.06434731505555621 19 0.06405359595665966 18 0.059938990369694835 24 0.05099526062976749 20 0.04786727394500141 13 0.04494848246370992 23 0.04483393823232614 10 0.04391491384507704 14 0.04218496853841236 17 0.038700793960250966 9 0.03690086903388866 0 0.033567769563068846 16 0.03038543638331345 4 0.02300803752564489 5 0.022503070916585828 6 0.019274187180315618 __DUMMY__ 0.01758618062481609 3 0.017582159927989373 7 0.016697352147230476 8 0.016597070968947022 1 0.016418376633374743 2 0.016031851344636635 15 0.015034896529314971 false 0.0
841 17 0.06717334885874604 0 0.05979812405723071 16 0.056638025021260606 22 0.053973762859570826 18 0.052589125561965176 19 0.04954772147525512 9 0.04888212296935199 11 0.045107006844754285 10 0.04083448123938461 6 0.039175931766883436 21 0.038427255241225 4 0.037604122360557775 8 0.03755520351096368 7 0.037439853910828436 1 0.03733236936028914 5 0.03712609106185421 2 0.03681234498609546 23 0.03665578844246723 3 0.034285085446460174 12 0.030925190030217462 24 0.02830469960465117 20 0.028215909623079495 15 0.025085956624314853 13 0.015765671588090866 14 0.013734120965826956 __DUMMY__ 0.01101068658867509 false 0.0
1025 21 0.08249632787571926 22 0.06817913717711582 12 0.06717018697211363 11 0.06396212297810276 19 0.061261878394408054 18 0.05744776732763865 24 0.050396553745196575 13 0.048751561917547814 23 0.046691979826369155 20 0.04583719040743924 14 0.04279447876117943 10 0.0416391624017641 17 0.03727685604023879 9 0.035694440236594085 0 0.03283231410075725 16 0.028676248720701798 4 0.02416892044880716 5 0.023644358694976823 6 0.020770359151555572 3 0.018216823962126812 7 0.01781980038804699 8 0.0177066135182018 1 0.017534236902178865 __DUMMY__ 0.01749628749667728 2 0.01714083161361171 15 0.01439356094093072 false 0.0
842 21 0.07459397109481236 19 0.07257080526550679 20 0.06593693093107744 18 0.06555122295399604 12 0.06097354662031943 22 0.06026734431994182 24 0.05847748281230498 11 0.05215635849915496 23 0.049866301252393885 14 0.04577349421917581 13 0.0435135354550434 10 0.042940713476040636 16 0.03848529357907392 17 0.038385835466786936 9 0.030031682826915516 15 0.028669011629069367 0 0.025214678851601408 4 0.02017359389421622 5 0.01968503168938129 __DUMMY__ 0.016574632283139674 3 0.016313682374923057 6 0.016192358013305097 7 0.014622949795690914 8 0.014587672394013727 1 0.014376127145626097 2 0.014065743156489239 false 0.0
1024 19 0.07305234479360864 21 0.07022295846951501 20 0.06969872782605256 18 0.06667746982265224 24 0.06016549766324137 22 0.05740613782038977 12 0.05658950460351941 23 0.05121929159447955 11 0.04736813186670721 14 0.046476919465556925 10 0.042668119864794844 13 0.040632535876060166 16 0.03937167147058862 17 0.037925891982098135 15 0.03387943189674934 9 0.029347525472701936 0 0.022605468529961578 4 0.020950088663283975 5 0.02046402544882091 3 0.017784910921856908 6 0.016850199924759703 __DUMMY__ 0.01642989207870134 7 0.015753105598662064 8 0.015739543039603766 1 0.015503195698084506 2 0.01521740960754949 false 0.0
600 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.09207123635729361 22 0.08312641439267268 11 0.07717025672968614 19 0.07083401447962497 18 0.06483824199526013 12 0.06353789098014281 24 0.050391249875996386 10 0.05001415770764528 20 0.044589903485722844 17 0.043949498363596025 9 0.04265634049818559 0 0.040595193521255526 14 0.03955946088899242 23 0.038664437557430785 13 0.03780672775550404 16 0.032602339575328744 4 0.01941514286238333 5 0.01893414703373721 6 0.01474847281670189 3 0.013935061334486392 7 0.012319298367884686 8 0.012052017235147336 1 0.01197261899550034 2 0.011542498076675246 15 0.007383994100088262 __DUMMY__ 0.005289385013057366 false 1.0
843 22 0.06603195175246807 9 0.05818880858964312 18 0.05434112610512499 0 0.0525632279648941 21 0.05144804464192414 17 0.051377909839963556 11 0.051251851028237545 10 0.04826416601305979 19 0.04450586084638311 4 0.04073119891115591 5 0.04016788140699854 6 0.039202241047307844 8 0.038176220227216874 7 0.0381292692730128 1 0.037919539553194506 3 0.03777622947788985 2 0.03739322317899874 23 0.03444352307065315 24 0.030523794031942875 16 0.030343659428442773 12 0.027691707581578903 14 0.023280635300234408 20 0.022423495210551984 15 0.01726008062117511 13 0.01575344079966295 __DUMMY__ 0.010810914098284444 false 0.0
1023 21 0.07001602863223964 22 0.06620129591578239 11 0.05647218825671868 18 0.05336072706097905 19 0.05193438733058429 12 0.05138370067736754 24 0.044200747932771206 9 0.04412595268433622 23 0.04408504579627418 10 0.04080390992361018 17 0.04037144601708978 0 0.03796574064751153 13 0.03659371089714941 14 0.03588722572158472 20 0.03558520368111715 4 0.032858511936070395 5 0.03227610845622066 6 0.030130184098738806 3 0.028016222854029736 7 0.027894690573827274 8 0.027869780778420304 1 0.027633394565453436 2 0.02717901135426159 16 0.026349411179765872 15 0.016239070097174298 __DUMMY__ 0.014566302930921406 false 0.0
601 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.07403160881303816 17 0.06986909607076411 9 0.061904793698212966 22 0.06102960844526768 18 0.05336188039382932 11 0.05277638232462175 10 0.05141312228496651 16 0.0470564998690008 6 0.044958755188175256 8 0.0429263223521881 7 0.04290367903520527 4 0.04276229331105377 1 0.04261128524407311 2 0.042119328742402894 5 0.042061908400402144 19 0.03934593949478164 3 0.03892010582274619 21 0.03662492108689766 23 0.028054853493008326 12 0.024381415784350952 15 0.014452023705950718 24 0.013627614737386733 13 0.012316647944679276 20 0.009657478466866687 14 0.0088406437610238 __DUMMY__ 0.001991791529105879 false 1.0
602 21 0.099875 19 0.092342 22 0.07967 18 0.076686 20 0.076086 12 0.073312 11 0.07158 24 0.068452 23 0.048544 10 0.046801 16 0.044251 14 0.043335 17 0.043259 13 0.04056 9 0.028872 0 0.026674 15 0.014146 4 0.008852 5 0.007953 3 0.003816 6 0.002715 7 9.09E-4 8 6.71E-4 1 6.39E-4 21 0.099875 19 0.092342 22 0.07967 18 0.076686 20 0.076086 12 0.073312 11 0.07158 24 0.068452 23 0.048544 10 0.046801 16 0.044251 14 0.043335 17 0.043259 13 0.04056 9 0.028872 0 0.026674 15 0.014146 4 0.008852 5 0.007953 3 0.003816 6 0.002715 7 9.09E-4 8 6.71E-4 1 6.39E-4 21 0.08919874712681264 19 0.0803715877873264 22 0.07458260683430133 18 0.07004909388277725 11 0.06605179986786935 12 0.06516150026992075 20 0.06508005218347772 24 0.06136301827109659 23 0.04708646539908869 10 0.045816875973159504 14 0.04236157338653287 17 0.04176394005367863 16 0.03909801334426681 13 0.038877648652874616 9 0.03315751696159343 0 0.029191422358686638 15 0.01735324162898771 4 0.015983558761036666 5 0.015294950762125574 3 0.011355366919860731 6 0.010802617306770707 7 0.009052241841412777 8 0.008886309177983848 1 0.008756405642671342 2 0.008250051206565905 __DUMMY__ 0.005053394399121565 false 1.0
844 12 0.0774865511930537 21 0.07487120691142436 13 0.06509701412604439 11 0.05869723251422497 22 0.056189812306293455 18 0.056083057391193604 19 0.05514815799774582 23 0.04708425304846989 14 0.0461393993463629 20 0.04593597325346752 24 0.043638357139191064 10 0.04273262983597056 17 0.037625335178356006 0 0.034824794077010064 9 0.031532722571013125 16 0.03091651414068771 4 0.024708574080523685 5 0.024276473901874485 6 0.023322209554326893 8 0.019199669329538767 7 0.019144774538605233 1 0.019007816954318028 2 0.018761115112125245 3 0.01759061401138947 15 0.017491381299316378 __DUMMY__ 0.012494360187472724 false 0.0
845 21 0.08126912139983243 12 0.06818604191853866 22 0.06578877538468152 19 0.0633140779659744 11 0.06202772024638439 18 0.059224758846131605 24 0.05113155712659734 13 0.05039939350588921 20 0.04985056971902769 23 0.04695613125298745 14 0.04414826019997267 10 0.04255523804797913 17 0.03735343985140731 9 0.033982460393961404 0 0.03172511783228193 16 0.0306311699252283 4 0.022731671659161505 5 0.02222773500687257 6 0.019388824228487686 __DUMMY__ 0.018264568508609615 3 0.01696922446157362 15 0.016791090219405655 7 0.01651329050210045 8 0.016424123850452988 1 0.01625339953483575 2 0.015892238411624397 false 0.0
603 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.07403160881303816 17 0.06986909607076411 9 0.061904793698212966 22 0.06102960844526768 18 0.05336188039382932 11 0.05277638232462175 10 0.05141312228496651 16 0.0470564998690008 6 0.044958755188175256 8 0.0429263223521881 7 0.04290367903520527 4 0.04276229331105377 1 0.04261128524407311 2 0.042119328742402894 5 0.042061908400402144 19 0.03934593949478164 3 0.03892010582274619 21 0.03662492108689766 23 0.028054853493008326 12 0.024381415784350952 15 0.014452023705950718 24 0.013627614737386733 13 0.012316647944679276 20 0.009657478466866687 14 0.0088406437610238 __DUMMY__ 0.001991791529105879 false 1.0
846 21 0.080314038132042 22 0.06652198421704322 12 0.06546696470955772 19 0.06379017166857048 11 0.061705834096415 18 0.05984339786046373 24 0.05120720219952022 20 0.049952514778020915 13 0.04738887457709853 23 0.046201360750703434 14 0.0432831245194767 10 0.043228946951347824 17 0.0379792629834628 9 0.035069230933681896 0 0.03209677723976297 16 0.031012280389333673 4 0.0229832598281044 5 0.022487104718163706 6 0.019486767182699382 __DUMMY__ 0.01873960288380745 3 0.01756127158878967 15 0.01721970921204263 7 0.016854816380713074 8 0.016773553611777698 1 0.016595109976773343 2 0.01623683861062733 false 0.0
604 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.089334 17 0.080427 9 0.06626 22 0.06352 11 0.060018 10 0.058668 18 0.056186 16 0.053681 6 0.045198 7 0.042414 8 0.042389 1 0.041934 2 0.041543 4 0.041279 5 0.040368 19 0.0376 3 0.03659 21 0.032722 12 0.023256 23 0.02091 13 0.011239 15 0.01021 14 0.002699 24 0.001553 0 0.07403160881303816 17 0.06986909607076411 9 0.061904793698212966 22 0.06102960844526768 18 0.05336188039382932 11 0.05277638232462175 10 0.05141312228496651 16 0.0470564998690008 6 0.044958755188175256 8 0.0429263223521881 7 0.04290367903520527 4 0.04276229331105377 1 0.04261128524407311 2 0.042119328742402894 5 0.042061908400402144 19 0.03934593949478164 3 0.03892010582274619 21 0.03662492108689766 23 0.028054853493008326 12 0.024381415784350952 15 0.014452023705950718 24 0.013627614737386733 13 0.012316647944679276 20 0.009657478466866687 14 0.0088406437610238 __DUMMY__ 0.001991791529105879 false 1.0
847 21 0.07804516729350139 19 0.0709130064669719 12 0.06446748294255726 18 0.06392616024211532 22 0.06293732620134816 20 0.060970011307157145 11 0.05658710012534531 24 0.05614086817868097 23 0.04857618686586088 13 0.04558290156159677 14 0.04412388124848768 10 0.043102994831613936 17 0.03884743130773533 16 0.03694247971425151 9 0.03134600337396491 0 0.02823726283246932 15 0.022886042128464876 4 0.020300033559501426 5 0.019824501590305875 __DUMMY__ 0.016958595379089548 6 0.016514636331118195 3 0.015761388661705344 7 0.014471043694616803 8 0.01441066841123931 1 0.01422486141271714 2 0.01390196433758383 false 0.0
605 22 0.094452 21 0.077836 9 0.069628 11 0.058343 24 0.052235 18 0.049537 19 0.046006 4 0.044672 5 0.043504 3 0.042328 0 0.041025 17 0.040729 8 0.038313 6 0.037917 7 0.037654 1 0.037508 2 0.037239 10 0.03699 23 0.033076 14 0.029236 12 0.01859 20 0.017038 15 0.009282 16 0.00686 22 0.094452 21 0.077836 9 0.069628 11 0.058343 24 0.052235 18 0.049537 19 0.046006 4 0.044672 5 0.043504 3 0.042328 0 0.041025 17 0.040729 8 0.038313 6 0.037917 7 0.037654 1 0.037508 2 0.037239 10 0.03699 23 0.033076 14 0.029236 12 0.01859 20 0.017038 15 0.009282 16 0.00686 22 0.07758179770065189 21 0.07425518960365611 11 0.057842289356737873 9 0.05438088642107964 18 0.05409788348430629 19 0.04957217971030812 24 0.04668942265667249 10 0.04253106744743103 12 0.04027121858099196 14 0.0393621870676186 17 0.03934490308864465 0 0.03854997040790772 23 0.03777626398182624 4 0.03591264470544275 5 0.035103586692979576 3 0.03191486804608134 6 0.03142975814917722 8 0.030140965073738774 7 0.029806802112649182 1 0.029643208675369844 20 0.029348959954435098 2 0.02932634161422995 13 0.027133836967867853 15 0.01739880669661055 16 0.01689803324302074 __DUMMY__ 0.0036869285605647087 false 1.0
848 21 0.07843257390118218 19 0.07032180233287547 12 0.06502493660107486 22 0.06464528123452003 18 0.06334205261895151 11 0.05983746116628809 20 0.056550050810634016 24 0.05265071816340181 23 0.046878347247586445 13 0.045315858900131796 10 0.04422110585934191 14 0.04181926736714278 17 0.041353085149030716 16 0.038342948287673276 9 0.03279965313328838 0 0.03246393747739911 4 0.02025121766593533 5 0.019788505087838196 15 0.019779735040995023 __DUMMY__ 0.01688566407079474 6 0.016853355675439722 3 0.015315273395221322 7 0.014505428086720056 8 0.01443012767124478 1 0.014265753022442332 2 0.013925860032845901 false 0.0
606 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.09061778597038912 22 0.0799928882528579 11 0.07525001205167012 12 0.06441818582481476 19 0.05874841523034825 18 0.05334156131773214 24 0.05089435417456451 23 0.04460939736982681 13 0.04176588539941397 9 0.04098194995941088 14 0.03950138205776415 10 0.03911737940524944 17 0.03907781942895738 0 0.037391912470777264 20 0.03479267064096436 4 0.026465566320884776 5 0.02578736384435411 16 0.025667573557943017 6 0.02249408058617355 3 0.019966893311716038 7 0.019489979777461423 8 0.01940120772030712 1 0.019113659428249108 2 0.01845303812066141 15 0.0074830019849421074 __DUMMY__ 0.005176035792566059 false 1.0
849 22 0.06553381901600289 18 0.0569417178481666 21 0.05462814537256147 9 0.05416838377946732 19 0.05025545442982085 11 0.04936933144865773 17 0.049281634150457304 0 0.04674340873148488 10 0.046416598715634284 4 0.03799439091198722 23 0.03766250396574943 5 0.03742056721723963 24 0.03721469943796132 6 0.03575814732560866 3 0.03524282265283409 8 0.03495765854173817 7 0.03488864357080767 1 0.03466646123084814 2 0.034167958919169836 16 0.03150297890819422 20 0.03142257702546375 12 0.030525966948590437 14 0.025824522417060635 15 0.0195681918088844 13 0.016907204427966095 __DUMMY__ 0.010936211197642803 false 0.0
607 21 0.099806 19 0.093055 22 0.083743 20 0.080939 18 0.079676 24 0.073743 11 0.070622 12 0.066484 23 0.05058 10 0.043837 16 0.043068 14 0.042804 17 0.042367 13 0.031317 9 0.028971 0 0.021954 15 0.016259 4 0.009538 5 0.008475 3 0.004767 6 0.002802 7 0.002089 1 0.001628 8 0.001479 21 0.099806 19 0.093055 22 0.083743 20 0.080939 18 0.079676 24 0.073743 11 0.070622 12 0.066484 23 0.05058 10 0.043837 16 0.043068 14 0.042804 17 0.042367 13 0.031317 9 0.028971 0 0.021954 15 0.016259 4 0.009538 5 0.008475 3 0.004767 6 0.002802 7 0.002089 1 0.001628 8 0.001479 21 0.08773176260250408 19 0.07975803576447638 22 0.07647753407042304 18 0.07141468176486594 20 0.06596532565373787 11 0.06553130660074767 24 0.06262354045730774 12 0.060288544107445996 23 0.047344588075248085 10 0.04507796162764353 17 0.04198892775845151 14 0.04184096458260854 16 0.03856653512219252 9 0.03409455945711918 13 0.033533440436280024 0 0.02798644301378361 15 0.01904620397517339 4 0.016873838777326036 5 0.01610525735172818 3 0.0124367459865569 6 0.011517406447613114 7 0.01030898283074641 8 0.00998167654927558 1 0.009928588000547446 2 0.008963656642488667 __DUMMY__ 0.004613492343708321 false 1.0
608 22 0.082315 9 0.07124 21 0.059648 11 0.053954 0 0.053696 18 0.051644 17 0.049894 4 0.046894 5 0.045875 10 0.044877 3 0.044758 8 0.043106 6 0.043025 7 0.042551 1 0.042392 2 0.042122 19 0.041581 24 0.036863 23 0.029211 14 0.020165 16 0.017103 12 0.014627 20 0.012832 15 0.009629 22 0.082315 9 0.07124 21 0.059648 11 0.053954 0 0.053696 18 0.051644 17 0.049894 4 0.046894 5 0.045875 10 0.044877 3 0.044758 8 0.043106 6 0.043025 7 0.042551 1 0.042392 2 0.042122 19 0.041581 24 0.036863 23 0.029211 14 0.020165 16 0.017103 12 0.014627 20 0.012832 15 0.009629 22 0.0733900487494385 21 0.06241520491481951 9 0.059000780104745916 11 0.05468889719228658 18 0.05395163325784103 0 0.047431538453997224 17 0.0460587612275768 19 0.04581659151390831 10 0.04580972196269294 4 0.03985318171227691 5 0.039092617200648064 24 0.037980631223015926 6 0.036775357828225115 3 0.03651291093907603 8 0.03575207312482716 7 0.03546128703332465 1 0.03528189418412459 2 0.034929830632190524 23 0.03459883457747156 12 0.03157403778612009 14 0.029893587077360388 20 0.023574313345621475 16 0.02206788821181973 13 0.0191999356386063 15 0.015712350898099085 __DUMMY__ 0.0031760912098854894 false 1.0
609 21 0.099214 22 0.096057 11 0.089446 19 0.068519 18 0.062644 12 0.057866 10 0.05292 9 0.050978 0 0.047574 24 0.047109 17 0.046385 14 0.036424 20 0.032856 23 0.032081 16 0.029452 13 0.029321 4 0.020464 5 0.02006 6 0.015384 3 0.014883 7 0.013268 8 0.012725 1 0.012546 2 0.011825 21 0.099214 22 0.096057 11 0.089446 19 0.068519 18 0.062644 12 0.057866 10 0.05292 9 0.050978 0 0.047574 24 0.047109 17 0.046385 14 0.036424 20 0.032856 23 0.032081 16 0.029452 13 0.029321 4 0.020464 5 0.02006 6 0.015384 3 0.014883 7 0.013268 8 0.012725 1 0.012546 2 0.011825 21 0.08874679632097664 22 0.08482241445298165 11 0.07756584149531871 19 0.0656516081118945 18 0.06184747426632147 12 0.056288904954500764 10 0.0498571284427116 24 0.04724969502984162 9 0.04697632901136496 17 0.04479249186490119 0 0.04336147489178604 20 0.03764058048790234 14 0.03693186792236319 23 0.03672027694682559 13 0.03208261537239925 16 0.03045469248221192 4 0.0230808096890929 5 0.022615731849483567 6 0.018682318273296517 3 0.017890386776092684 7 0.016566776446440997 8 0.016260449203885176 1 0.016067370375765454 2 0.01549156300543442 15 0.007332309297860795 __DUMMY__ 0.005022093028346096 false 1.0
1044 22 0.07226210113132525 21 0.06856025710241317 11 0.06198813361993176 18 0.05739569422173044 19 0.05438897012670654 9 0.05000948001570528 10 0.04733957139019277 17 0.0468694397630069 0 0.045888071094097274 12 0.04382042258278201 24 0.03957943245878104 23 0.03730972326484747 4 0.03177373285503675 20 0.03165741907221613 5 0.031240625342519913 14 0.03104890305103087 16 0.030333784478557887 6 0.028967173517030622 3 0.027550817047226853 7 0.027168213707277865 8 0.027131862771423505 1 0.026902206992232003 13 0.026667384787777623 2 0.02642145132599885 15 0.013922117298401303 __DUMMY__ 0.013803010981749662 false 0.0
1043 21 0.08065951986120998 22 0.07220224878136038 11 0.06456587200932841 19 0.06263810289255428 18 0.059149783005632346 12 0.058361362912748696 24 0.050443327169431 20 0.044624310997542695 10 0.04379843398542809 23 0.04371375319737108 9 0.040034146809507634 17 0.03983242901085296 14 0.03956930694676843 13 0.038444374984025365 0 0.03498863013187839 16 0.029650482354968796 4 0.02510610544710571 5 0.024589913600580625 6 0.02117714694790735 3 0.02011258235721592 7 0.01895410024374313 8 0.0188571093682666 1 0.018659052492059142 2 0.018239085325057344 __DUMMY__ 0.016962188833494513 15 0.014666630333961102 false 0.0
1042 21 0.07619814181791931 19 0.07089437445661288 18 0.06435860992955049 12 0.06246919304355722 20 0.06220705274309026 22 0.06184186636925585 24 0.05657480054907447 11 0.054739965467687716 23 0.048778730426129575 14 0.044918265216082505 13 0.044579207257324754 10 0.04321104218236225 17 0.038621547446460305 16 0.037163466459984425 9 0.031199701340884615 0 0.02724875790709572 15 0.0254835317132765 4 0.02054041911878318 5 0.020062816354847742 __DUMMY__ 0.017329971521190347 6 0.016705333990014545 3 0.01629172986812817 7 0.01486045905720603 8 0.01481048657154903 1 0.014614445574042059 2 0.014296083617890094 false 0.0
1041 21 0.07282698801985985 12 0.07120513106741143 13 0.07085456682379754 14 0.06524654797151648 18 0.06308032167182245 11 0.05668505831999238 22 0.055390946334758086 19 0.05511005702913205 10 0.05275143804276188 20 0.049525818831892686 23 0.04265785084445176 24 0.04133012199030184 15 0.03722285441466085 17 0.03269418235596646 9 0.03217071602891574 0 0.029781128850802106 16 0.025482736399220777 4 0.020554073517569084 5 0.02016103412783806 6 0.01827738162067728 8 0.01477934095361567 7 0.01472268523683336 1 0.01459553764090023 2 0.01435057396257365 __DUMMY__ 0.01430077698759655 3 0.014242130955131771 false 0.0
1040 21 0.05908298351088322 23 0.05398070056973598 22 0.05341119177010336 19 0.050960246829472165 18 0.050740983150366466 12 0.04988488459113518 24 0.04713902303594492 20 0.04303765232229244 11 0.0426492578158775 17 0.03868909799358891 9 0.03837597186893217 4 0.03686701542052758 5 0.03640171516207323 13 0.0361325688250233 10 0.035027536720925095 6 0.03497558877862525 7 0.033056210724945106 8 0.03295842383637289 1 0.03284865293534322 3 0.03266006445463001 2 0.03244046534864977 0 0.032149808154247776 14 0.03182905339034819 16 0.030740187029068736 15 0.0209223562146458 __DUMMY__ 0.013038359546241786 false 0.0
1039 21 0.07993841446216383 22 0.06975066588394349 19 0.06759445242210507 18 0.06193012744638726 11 0.061197783187515356 12 0.05855407663073287 24 0.05468417726175851 20 0.052983883305517225 23 0.045688886334819455 10 0.043425365575019984 14 0.04094122413156761 17 0.03952644977512154 13 0.038074984159646996 9 0.036872989863631536 16 0.03303715588181628 0 0.03131006475461923 4 0.022969514939309245 5 0.02245440868801882 6 0.018735984433591923 15 0.018622363840290933 3 0.01853336327499133 7 0.016904983846525452 8 0.016812408387035606 __DUMMY__ 0.016645260147084083 1 0.016604750092744692 2 0.016206261274041695 false 0.0
1038 21 0.07672046659460652 19 0.0707329335414032 18 0.06404822515347437 12 0.06320892106384636 22 0.062113659211675665 20 0.06164551368062094 24 0.056361920757323325 11 0.05533907334314729 23 0.0487514323677683 13 0.044937821350770055 14 0.044440883820053435 10 0.04303210251496543 17 0.038722405655124775 16 0.037089452945664646 9 0.03123421503366881 0 0.02765141720444916 15 0.02442222261181863 4 0.020567657211972817 5 0.020088725361836705 __DUMMY__ 0.01736216513965473 6 0.016778235709653016 3 0.016204107497286496 7 0.014853276465050927 8 0.014800426885090529 1 0.014607421731775058 2 0.014285317147298991 false 0.0
850 22 0.07417322435261683 21 0.07295307376025699 11 0.0644712029665714 18 0.05884537961350673 19 0.057712444048133124 9 0.04832777266641416 10 0.04786055991780902 12 0.046816187115947344 17 0.04531801665802512 0 0.04374390426517975 24 0.042325674052989266 23 0.0379561698618735 20 0.03483951478960136 14 0.03372741419062042 16 0.030072754023877598 4 0.029422723457072808 5 0.028892406490504546 13 0.028673636545020205 6 0.026090535588383718 3 0.025106873054646157 7 0.024282863110351705 8 0.024221465005696045 1 0.023997135679698082 2 0.023528140882239063 15 0.013907211497807494 __DUMMY__ 0.012733716405157414 false 0.0
1037 21 0.0734959065547142 19 0.0699713276007846 22 0.06343336756417707 18 0.063111156898358 12 0.05932242236533396 11 0.05721061409530285 20 0.05572418188863724 24 0.051472136332249084 23 0.04647114557886881 10 0.0439909559755904 17 0.04380728554587673 16 0.041062936652499334 13 0.039946072868390116 14 0.03898391337943536 9 0.034086773786710274 0 0.03403924641522267 15 0.021969182516588914 4 0.021711175304855158 5 0.021247030454332558 6 0.018557318407539117 __DUMMY__ 0.017688428582671337 3 0.017325218913568016 7 0.01656393842044294 8 0.016507813355256352 1 0.01632653830923148 2 0.015973912233363422 false 0.0
851 21 0.07071006046827631 19 0.0640877547854652 22 0.06337066536389889 18 0.05909127983175118 24 0.0544296620700102 20 0.05309010567075624 11 0.05297786470469628 12 0.05291505462766352 23 0.04747970376335989 17 0.04081847808044818 10 0.039878756104896024 14 0.03832036898252647 9 0.036475396646256195 16 0.03556503844394135 13 0.03472279520816822 0 0.03066576619959744 4 0.02660150106266741 5 0.026082006994387518 15 0.023677769357110617 6 0.023052455457491534 3 0.02282723801022154 7 0.021542572108425993 8 0.021537494237604347 1 0.021302110116615883 2 0.020933728129354776 __DUMMY__ 0.017844373574408847 false 0.0
852 21 0.08271101175342467 22 0.07107378293427875 11 0.065535314152634 19 0.06527874181522433 12 0.06342932241689361 18 0.06113787089305813 24 0.050615983741326136 20 0.04799287693377929 10 0.0452704618678966 23 0.04372975308177753 13 0.04342569209953618 14 0.04164112233692925 17 0.039696247219184 9 0.037747404796094446 0 0.03466626255201017 16 0.03116026192520741 4 0.022375540874717433 5 0.02187591359237884 6 0.01854599576565468 __DUMMY__ 0.017245715658079922 3 0.01707302363534382 7 0.016072303347609864 8 0.015961254697195375 1 0.015785131464972315 2 0.015386206865050697 15 0.014566803579742585 false 0.0
610 21 0.098095 22 0.095024 11 0.086211 19 0.059863 12 0.055586 18 0.054527 24 0.050949 9 0.050218 10 0.043499 0 0.042497 17 0.041344 23 0.038312 14 0.035394 13 0.027849 4 0.027252 5 0.026681 20 0.026224 6 0.022015 16 0.021783 3 0.020928 7 0.019575 8 0.019234 1 0.01897 2 0.017972 21 0.098095 22 0.095024 11 0.086211 19 0.059863 12 0.055586 18 0.054527 24 0.050949 9 0.050218 10 0.043499 0 0.042497 17 0.041344 23 0.038312 14 0.035394 13 0.027849 4 0.027252 5 0.026681 20 0.026224 6 0.022015 16 0.021783 3 0.020928 7 0.019575 8 0.019234 1 0.01897 2 0.017972 21 0.08812312559732789 22 0.08363455476549247 11 0.07495886936317644 19 0.06102100185925825 18 0.05730640870948053 12 0.0554791293788554 24 0.049819855439168885 9 0.04620779823175657 10 0.044394946045803615 17 0.04153794729210334 23 0.04049481128596344 0 0.039876561853681686 14 0.0367815165779077 20 0.03485330067035248 13 0.03193081711954635 4 0.026776659354950324 5 0.02622503089246449 16 0.02611146099423136 6 0.022275857017754162 3 0.021244808906567544 7 0.02001368125003815 8 0.019808396491535884 1 0.01957290443189813 2 0.018870883583619116 15 0.0076206040273383985 __DUMMY__ 0.005059068859727442 false 1.0
1036 21 0.07740982034148723 22 0.07251753878747208 11 0.0630333481747776 19 0.06200039553380231 18 0.05893483020744585 12 0.05325627079836514 24 0.04966967652167548 10 0.043767656457232004 20 0.043165892241240164 23 0.04254968977123422 9 0.04219097794379543 17 0.04199213382548956 14 0.037002332917272195 0 0.0367346500817666 13 0.03322112474262896 16 0.03111215338813993 4 0.026607526623454912 5 0.026083115365322436 6 0.022766658688831688 3 0.022093062166514823 7 0.02086146412166203 8 0.02079273558699209 1 0.020572071254391276 2 0.020140441635422487 __DUMMY__ 0.015922231078956448 15 0.015602201744627106 false 0.0
853 21 0.07257657475808367 22 0.0618698024438217 12 0.061745853647291536 18 0.05742671748785804 11 0.057106792997532956 13 0.053747303337376894 19 0.05285207605892532 14 0.050339181663475674 10 0.04621280324240629 24 0.04345400555495406 23 0.04277988411675193 20 0.04173267035402786 9 0.03889346963971074 17 0.036011310054300326 0 0.03382900964831259 4 0.02718967859667597 5 0.026700476155515067 15 0.025117529625125985 16 0.02462562278615084 6 0.02454377348382831 8 0.021681230761606822 7 0.021619081136171257 3 0.021602751153124235 1 0.02145522416365233 2 0.021125551847558575 __DUMMY__ 0.01376162528576129 false 0.0
1035 22 0.0673920985207891 9 0.055839190511966515 18 0.05559448354883547 21 0.055510793297720705 11 0.05384160491942001 0 0.050189876274663744 17 0.04961786309723663 10 0.048623085199992803 19 0.047466945055460535 4 0.03827375154486583 5 0.037732037110847445 6 0.03629077779476956 23 0.03538701434405787 8 0.035160851284458554 3 0.03515267275327835 7 0.03513989780149743 1 0.034912564528607505 2 0.03441798648667022 24 0.03312123043227627 12 0.031181841093473738 16 0.030121560055863795 14 0.02587190179137844 20 0.025624936542083452 13 0.018249797260366532 15 0.017251378097441185 __DUMMY__ 0.012033860651978376 false 0.0
611 16 0.105394 17 0.090379 19 0.074535 0 0.061026 20 0.057181 18 0.054585 23 0.047018 24 0.04614 22 0.041872 15 0.040837 11 0.038888 12 0.037409 6 0.030066 21 0.029224 8 0.028375 7 0.028318 1 0.028124 2 0.02778 9 0.026384 4 0.026066 5 0.025571 10 0.024456 3 0.023341 13 0.007032 16 0.105394 17 0.090379 19 0.074535 0 0.061026 20 0.057181 18 0.054585 23 0.047018 24 0.04614 22 0.041872 15 0.040837 11 0.038888 12 0.037409 6 0.030066 21 0.029224 8 0.028375 7 0.028318 1 0.028124 2 0.02778 9 0.026384 4 0.026066 5 0.025571 10 0.024456 3 0.023341 13 0.007032 16 0.08099180548758851 17 0.07721350140452886 19 0.06469793234889806 0 0.05739450303713836 18 0.05594230071788861 22 0.047961851330896664 20 0.04687092125177721 23 0.04263888115360511 11 0.04236277745407076 24 0.039309812529303434 15 0.03734900981706292 12 0.03659142075636765 21 0.03618922565490784 9 0.035412780155919546 10 0.033818598420559697 6 0.031715464670333836 8 0.03002703151808979 7 0.029924948257226233 1 0.029759964139702118 2 0.029365178611329593 4 0.02929952245207852 5 0.02882337025091785 3 0.02617550141646595 13 0.015047776379826537 14 0.01219073935685524 __DUMMY__ 0.0029251814266608427 false 1.0
612 22 0.077655 9 0.071672 0 0.057243 18 0.053554 17 0.053148 21 0.052965 11 0.051135 4 0.047475 10 0.047125 5 0.046658 3 0.045503 8 0.045009 6 0.044883 7 0.044796 1 0.044653 2 0.043784 19 0.039784 24 0.030721 23 0.028741 16 0.020966 14 0.017071 12 0.013239 20 0.011817 15 0.0104 22 0.077655 9 0.071672 0 0.057243 18 0.053554 17 0.053148 21 0.052965 11 0.051135 4 0.047475 10 0.047125 5 0.046658 3 0.045503 8 0.045009 6 0.044883 7 0.044796 1 0.044653 2 0.043784 19 0.039784 24 0.030721 23 0.028741 16 0.020966 14 0.017071 12 0.013239 20 0.011817 15 0.0104 22 0.07178062558429671 9 0.06171978166286665 21 0.056582112424843005 18 0.054270031136257606 11 0.052380389308281025 0 0.05125950949031024 17 0.04944367028811503 10 0.046824860698800985 19 0.04392627494860753 4 0.04200902202547725 5 0.04133215532715571 6 0.03962781901310252 3 0.03913932896125035 8 0.03890539883773377 7 0.03877170844952891 1 0.03859446840768072 2 0.03794093716906971 24 0.03380555201657206 23 0.03343099071150615 12 0.026276932013073247 14 0.024823475181002436 16 0.02453304193027446 20 0.02075053009780232 15 0.015071767354604942 13 0.013915833633182521 __DUMMY__ 0.0028837833286041222 false 1.0
1034 21 0.0798965548726516 22 0.07366803478189442 11 0.06504447780901763 19 0.06376518592055466 18 0.06046102887846602 12 0.055192170923429186 24 0.0500335012693518 10 0.04536749349205623 20 0.04454251708667783 23 0.042408005104204914 9 0.04166051361053097 17 0.04117124040084488 14 0.03844762449608331 0 0.03627526714715057 13 0.03479392349791799 16 0.030568711626459095 4 0.02506606402303507 5 0.02455395145004704 6 0.020978163213296708 3 0.020439733941026657 7 0.019035177231839326 8 0.01893335909395845 1 0.018725789287415712 2 0.01829182572174434 __DUMMY__ 0.015800414729169453 15 0.014879270391176093 false 0.0
854 21 0.0821986693814084 22 0.07354202116221832 11 0.06710270307993253 19 0.06413662671910296 18 0.06086447518291458 12 0.05980863010962167 24 0.04924286811492434 10 0.04615083274026037 20 0.04466595488668073 23 0.04203952171878947 17 0.04085823105512843 9 0.0403675266953642 14 0.040020523586247095 13 0.0394761998657454 0 0.03673302841756189 16 0.03050897997207628 4 0.023439239055886695 5 0.02293401875338489 6 0.01951990243007743 3 0.01831036240381465 7 0.017200142881634246 8 0.017083774040896466 1 0.01690042819393088 __DUMMY__ 0.016785989925846356 2 0.016477840581022238 15 0.01363150904552947 false 0.0
855 21 0.06785754279015378 19 0.06257934257205969 22 0.06194187520364668 18 0.05752516052525416 24 0.054401333376944555 20 0.052242391219749815 11 0.05058179221031854 12 0.05023199134565991 23 0.04840641883827117 17 0.04123473029719172 10 0.038295352202872744 9 0.03714894039849739 16 0.03596337577129548 14 0.035624882454588516 13 0.031807200128189675 0 0.030815448732751355 4 0.02876734116396227 5 0.028263509214909336 6 0.025391087226772368 3 0.025302298680958357 7 0.024090315768387112 8 0.024067501296091164 1 0.02387007556167377 2 0.02347360002670257 15 0.02341051061947643 __DUMMY__ 0.016705982373621652 false 0.0
613 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.101791 22 0.089522 11 0.087276 12 0.069186 19 0.056087 24 0.052616 18 0.047713 23 0.044508 13 0.042605 9 0.041964 0 0.039252 14 0.039156 17 0.038243 10 0.034387 4 0.02685 5 0.026018 20 0.025501 6 0.022488 16 0.021976 3 0.019099 7 0.018916 8 0.018848 1 0.018458 2 0.017542 21 0.09067169587479824 22 0.07998461489668982 11 0.07528001071218297 12 0.06450789515422219 19 0.058778480142647145 18 0.05334220105667602 24 0.05092121696401902 23 0.04463805698262236 13 0.04184305745139394 9 0.04092880108131985 14 0.03953530955360668 10 0.03910710635825728 17 0.03905308726269978 0 0.03735947757726221 20 0.0348328295521904 4 0.026431316567506014 5 0.02575382768940788 16 0.025675511710047765 6 0.022458867071701596 3 0.019925281655430782 7 0.01944957067249127 8 0.019360074666247923 1 0.019072967203931795 2 0.018413013044405988 15 0.007475447461191745 __DUMMY__ 0.00520028163704912 false 1.0
856 9 0.0583988110794524 22 0.056940437648882895 17 0.048778277830857704 0 0.04835338123077117 18 0.04809293063047086 4 0.04809269028089372 5 0.04755994997305444 6 0.04702869013247397 8 0.04677631695164707 7 0.04675168638385235 1 0.046612270828955873 3 0.04636304073176111 2 0.046032127885021035 10 0.04198392086504302 21 0.04032124765525972 23 0.03888642069571276 11 0.03815020212032091 19 0.03790696701559158 24 0.03161632381935307 16 0.029322152292616508 20 0.022549659343791658 15 0.02168279437725359 14 0.01957018766811258 12 0.01954196816353006 __DUMMY__ 0.012040591969059957 13 0.010646952426259806 false 0.0
614 19 0.10396 22 0.098417 21 0.089719 11 0.088225 18 0.079995 17 0.069087 16 0.068187 10 0.05667 0 0.054367 20 0.051761 24 0.050024 12 0.046791 9 0.04357 23 0.034337 14 0.023645 15 0.009453 5 0.008569 4 0.008452 13 0.005866 3 0.003484 6 0.002915 7 8.53E-4 1 8.31E-4 8 8.23E-4 19 0.10396 22 0.098417 21 0.089719 11 0.088225 18 0.079995 17 0.069087 16 0.068187 10 0.05667 0 0.054367 20 0.051761 24 0.050024 12 0.046791 9 0.04357 23 0.034337 14 0.023645 15 0.009453 5 0.008569 4 0.008452 13 0.005866 3 0.003484 6 0.002915 7 8.53E-4 1 8.31E-4 8 8.23E-4 22 0.08424148915885647 19 0.08344454066923518 21 0.08193859859132778 11 0.07581466195066455 18 0.07054078846154932 17 0.05713773724325389 10 0.05178661369332355 16 0.05176790068992018 12 0.05033268418546833 24 0.048050018322291395 20 0.04778730075447439 0 0.04735986827885261 9 0.04267946115997779 23 0.03799585807236971 14 0.030076316550115216 13 0.02044050687753604 4 0.017037016277459873 5 0.016826744223917074 15 0.013402173131478953 6 0.012710698859845283 3 0.012287938984457902 7 0.010676437873607917 8 0.010617417008528736 1 0.010512641761459957 2 0.009899799778658583 __DUMMY__ 0.004634787441369232 false 1.0
857 22 0.06291432324608003 9 0.057322916716278365 18 0.05203147925766135 0 0.05108832839238666 17 0.05100198210940685 21 0.048338122562359545 11 0.04696125064939338 10 0.045146329492437694 19 0.043043232764971594 4 0.04252678350837095 5 0.041956194898611555 6 0.04121890569443582 8 0.04039427221226444 7 0.0403107852445031 1 0.040121828183503475 3 0.039897915055374336 2 0.03961671124471468 23 0.036078839528581104 24 0.031670585207559054 16 0.031076276196623637 12 0.026198176704194824 20 0.02323033653464169 14 0.02229336300392127 15 0.01914341659732857 13 0.014974393271962731 __DUMMY__ 0.011443251722433259 false 0.0
615 0 0.086795 17 0.079885 9 0.066272 22 0.062948 11 0.058859 18 0.056162 10 0.056149 16 0.053129 6 0.04556 7 0.042878 8 0.04284 1 0.042811 4 0.041805 2 0.041387 5 0.040979 19 0.037736 3 0.036592 21 0.033028 12 0.02366 23 0.021496 13 0.011821 15 0.011284 14 0.00349 24 0.002431 0 0.086795 17 0.079885 9 0.066272 22 0.062948 11 0.058859 18 0.056162 10 0.056149 16 0.053129 6 0.04556 7 0.042878 8 0.04284 1 0.042811 4 0.041805 2 0.041387 5 0.040979 19 0.037736 3 0.036592 21 0.033028 12 0.02366 23 0.021496 13 0.011821 15 0.011284 14 0.00349 24 0.002431 0 0.07282336147878296 17 0.06957659714460254 9 0.06191869487210486 22 0.06081214408638188 18 0.053361966239472584 11 0.05226579643862563 10 0.0502556519081758 16 0.04674178769077611 6 0.04510405145831347 8 0.043114299212634474 7 0.04309717832911091 1 0.04299517620997044 4 0.04299462776024297 5 0.042332775858380814 2 0.04202678278858294 19 0.03942187395256097 3 0.03891063896524835 21 0.036830961671868966 23 0.028323640641676476 12 0.024579104681770464 15 0.014937857405124197 24 0.014070992979683925 13 0.012595588351082996 20 0.00967017504390192 14 0.009249042192164913 __DUMMY__ 0.001989232638758591 false 1.0
858 23 0.05359943952521716 21 0.050817712197896374 22 0.05067069279416935 18 0.04895673507314733 19 0.04777387145423043 24 0.04714158709801452 20 0.04234258213322797 4 0.04187141863784699 9 0.041797795216446026 5 0.04140746027919357 12 0.040213838250218875 17 0.04018801017194782 6 0.04010673022816263 7 0.03900801876249558 8 0.03895569799174459 3 0.0389022881608294 1 0.0388605296153696 2 0.0384225511333962 11 0.035962431065656435 10 0.03299009247230613 0 0.03255198933704841 16 0.031219996856656915 13 0.026634235329172015 14 0.026086294484937062 15 0.022315273915232362 __DUMMY__ 0.011202727815436467 false 0.0
616 21 0.103382 22 0.092022 11 0.087656 19 0.071188 12 0.068056 18 0.062062 24 0.052607 10 0.047663 9 0.043845 17 0.043772 0 0.042493 14 0.038939 20 0.038734 13 0.038314 23 0.038012 16 0.029858 4 0.018386 5 0.017966 6 0.013414 3 0.011731 7 0.010543 8 0.010184 1 0.010024 2 0.009146 21 0.103382 22 0.092022 11 0.087656 19 0.071188 12 0.068056 18 0.062062 24 0.052607 10 0.047663 9 0.043845 17 0.043772 0 0.042493 14 0.038939 20 0.038734 13 0.038314 23 0.038012 16 0.029858 4 0.018386 5 0.017966 6 0.013414 3 0.011731 7 0.010543 8 0.010184 1 0.010024 2 0.009146 21 0.09234163557005776 22 0.0824376063705002 11 0.07702944571664644 19 0.06712889662503763 12 0.06396970031175153 18 0.06125656282593646 24 0.050679827896208056 10 0.0467303957372271 17 0.04234749161466224 9 0.042236764412112965 20 0.041366064252581436 23 0.04046070510386697 0 0.03973396420725426 14 0.039432448710302534 13 0.039227251933630636 16 0.030017947341861948 4 0.02149135895819364 5 0.02101811974187865 6 0.017120053586867395 3 0.015548700935002888 7 0.014478239003563376 8 0.014248202545073786 1 0.014073607521564759 2 0.013434334893541084 15 0.00699543967921071 __DUMMY__ 0.005195234505465659 false 1.0
859 21 0.07282241567479192 22 0.0714806287277049 18 0.06312207725715509 19 0.06259548898312696 11 0.061683175465155275 10 0.049876560926107046 12 0.04766604135597216 24 0.04652178543377753 20 0.0441225921680807 9 0.04409497017034963 17 0.042080724330463205 23 0.04110581575219609 14 0.03925397679491079 0 0.037664295802298964 13 0.030912660365389786 16 0.030716791839790862 4 0.026561934020842726 5 0.02605822452660438 3 0.022682053898774725 6 0.022562583048475807 7 0.021070755042558047 8 0.021008250669351754 1 0.02078467408895469 2 0.02041016102806248 15 0.02040972508251526 __DUMMY__ 0.012731637546589339 false 0.0
617 21 0.104054 22 0.093227 11 0.088358 19 0.077632 18 0.068026 12 0.067941 10 0.053601 24 0.052486 17 0.046433 9 0.045089 20 0.044275 0 0.044041 14 0.03898 13 0.036325 23 0.034891 16 0.033847 4 0.014567 5 0.013926 6 0.00908 3 0.008744 7 0.006494 8 0.006332 1 0.00597 2 0.005682 21 0.104054 22 0.093227 11 0.088358 19 0.077632 18 0.068026 12 0.067941 10 0.053601 24 0.052486 17 0.046433 9 0.045089 20 0.044275 0 0.044041 14 0.03898 13 0.036325 23 0.034891 16 0.033847 4 0.014567 5 0.013926 6 0.00908 3 0.008744 7 0.006494 8 0.006332 1 0.00597 2 0.005682 21 0.09240263514107334 22 0.0830317883857946 11 0.07728621145320169 19 0.07090497923474733 18 0.06482608451743439 12 0.06348203331405833 24 0.05052623044972012 10 0.05022870708098368 20 0.04464625159824165 17 0.04398963244797486 9 0.04291705177671689 0 0.04068223630159591 14 0.03946269835129671 23 0.038636053817070574 13 0.0378222032012029 16 0.03249995236731384 4 0.01928684736919131 5 0.018718408974344198 6 0.014647953543057217 3 0.013836935175425336 7 0.012209514664060814 8 0.01206977445729066 1 0.011802788360519274 2 0.011439486399471425 15 0.007359523841818705 __DUMMY__ 0.005284017776394173 false 1.0
618 21 0.10289 22 0.092724 11 0.088015 19 0.077191 12 0.06792 18 0.067673 10 0.053827 24 0.052062 17 0.046264 20 0.044638 9 0.044231 0 0.043892 14 0.039038 13 0.036604 23 0.034997 16 0.033815 4 0.014971 5 0.014354 6 0.009492 3 0.009091 7 0.00688 8 0.006723 1 0.00664 2 0.006069 21 0.10289 22 0.092724 11 0.088015 19 0.077191 12 0.06792 18 0.067673 10 0.053827 24 0.052062 17 0.046264 20 0.044638 9 0.044231 0 0.043892 14 0.039038 13 0.036604 23 0.034997 16 0.033815 4 0.014971 5 0.014354 6 0.009492 3 0.009091 7 0.00688 8 0.006723 1 0.00664 2 0.006069 21 0.09186442900564969 22 0.08279921305407802 11 0.07712761634628561 19 0.07070107124014094 18 0.06466286564646827 12 0.06347232340955325 10 0.050333204148514374 24 0.05033018285399879 20 0.044814094233257766 17 0.04391149083552933 9 0.042520332821224215 0 0.04061334221725044 14 0.039489516182786885 23 0.038685065716000895 13 0.03795120621819876 16 0.03248515632235373 4 0.019473647436812565 5 0.01891630607568553 6 0.014838452621918498 3 0.013997379787961416 7 0.012387991956392012 8 0.012250563631646876 1 0.012112580551871357 2 0.01161842606820763 15 0.007359523841818703 __DUMMY__ 0.005284017776394171 false 1.0
619 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07705638974643869 21 0.07404599414680298 11 0.05725899034694212 18 0.05433519987562891 9 0.054302133177203844 19 0.04947226871698311 24 0.04638518275988363 10 0.04227773765347164 12 0.040432237713568034 14 0.039429988081000296 17 0.039409785689526855 23 0.038200762083596025 0 0.038136420839345216 4 0.035895399433010476 5 0.03506203365319101 3 0.03182717417057317 6 0.03155089501310807 8 0.03029237695413171 7 0.030122514895573962 1 0.029979914258406997 20 0.02959560571890754 2 0.029275079932790837 13 0.027278266994156853 15 0.01764940767950639 16 0.01702515128883281 __DUMMY__ 0.0037030891774189564 false 1.0
1055 21 0.07351714347080476 19 0.06996218071497769 22 0.0634525411233377 18 0.06310671470314101 12 0.059321470358963284 11 0.05722291407328033 20 0.055713783622192294 24 0.05148104966440664 23 0.04646926579594778 10 0.04398994450818492 17 0.04379058099444954 16 0.04103346488179065 13 0.03994329128357129 14 0.03899209319930692 9 0.03409541420128014 0 0.034029314153472046 15 0.021957437579453298 4 0.021715226448294985 5 0.02125095136366565 6 0.01855780546875575 __DUMMY__ 0.017693524641987212 3 0.017328899024208883 7 0.016564782589179445 8 0.016508532484113287 1 0.0163272113831877 2 0.0159744622680467 false 0.0
1054 21 0.07666627803449622 19 0.06728249664861385 22 0.06674499326166335 11 0.06325920627941424 12 0.06267874474822893 18 0.06240056741745694 20 0.04923116047379458 24 0.04695958638405858 10 0.0463732306998464 17 0.04495506921733503 13 0.04321731329081677 23 0.04306923472658546 16 0.03918283593087938 14 0.038924102384650855 0 0.038699448675004626 9 0.03637065839052551 4 0.021337382761686376 5 0.020877380802222855 6 0.018522475182735577 15 0.017309389611823066 __DUMMY__ 0.016899197475521356 3 0.016146724668873735 7 0.015955604305426137 8 0.01587733009283383 1 0.015714528443660714 2 0.015345060091845662 false 0.0
1053 21 0.07447411554089392 19 0.07153550694580481 18 0.06501307003151974 20 0.06454357807994873 12 0.06097752455904422 22 0.06036890986414508 24 0.057659596159330244 11 0.052485555664798664 23 0.0495178187196939 14 0.045734364289385925 13 0.04384726596445909 10 0.043004789740829344 17 0.03833228199072097 16 0.03785686880711083 9 0.030462506692919167 15 0.028259553064642645 0 0.025741779370940854 4 0.02053646221942943 5 0.020049861811554964 __DUMMY__ 0.01723430581277585 6 0.016634985360425642 3 0.01658498697225356 7 0.014994719391739053 8 0.014960025367362385 1 0.014750996379765312 2 0.014438571198505506 false 0.0
1052 21 0.08194510984154911 22 0.07334162264597781 11 0.06670661334205895 19 0.06249921222229443 18 0.059833934504064365 12 0.05977441310908547 24 0.04863550262480224 10 0.045721930046704475 20 0.04308430035691198 23 0.04189901580697054 9 0.04102026365693252 17 0.04039164370697307 14 0.040137231316677284 13 0.04009323145841228 0 0.036954075315227854 16 0.02922324078701039 4 0.02435490433750198 5 0.023842715120776844 6 0.020514602274766047 3 0.019152624848113177 7 0.018133596935910004 8 0.018030463292276783 1 0.017842717473220263 2 0.017414869972223284 __DUMMY__ 0.016186063566880696 15 0.013266101436678173 false 0.0
1051 17 0.0662991086481118 0 0.060364439298862524 22 0.05484346364991933 16 0.05450671359407819 18 0.05266825195421463 9 0.04979400731158377 19 0.04836141048839401 11 0.04638879224547587 10 0.04216010441217164 21 0.03926315649358186 6 0.03923729105960107 4 0.037721862110117035 8 0.03749791429659505 7 0.03738935243914257 1 0.03727601331857071 5 0.037243958658348945 2 0.03676436979592682 23 0.03587623992415966 3 0.034228863223133045 12 0.03132830797077469 24 0.026836970607497637 20 0.026347249167388277 15 0.02421626651740961 13 0.016922215063489423 14 0.014679101945808315 __DUMMY__ 0.011784575805643564 false 0.0
1050 19 0.0646742448939384 21 0.06461438787643731 22 0.0639318438999855 18 0.06042544621740055 11 0.0564632429750762 17 0.05121456414411385 12 0.04863773277930136 20 0.046865563357471975 24 0.04582244181875077 16 0.045618352972421256 10 0.04350439178342019 23 0.042485840536928145 0 0.041784736050866175 9 0.03935787691442151 14 0.03185081279360742 13 0.029602287151239318 4 0.025924280259290472 5 0.025444112551572487 6 0.023779588889590347 15 0.02358528280453841 7 0.02203114349178531 8 0.02202089248674588 3 0.02200813976320067 1 0.021799203309817862 2 0.021393670342920498 __DUMMY__ 0.0151599199351582 false 0.0
860 18 0.07047728194491254 10 0.06643408515000286 22 0.0609408905265551 21 0.05722130375782715 11 0.05548033983063986 19 0.05336260865187397 14 0.05207431873586376 9 0.04853977691035694 0 0.04460996592557242 17 0.04334023839341504 13 0.04248050068863445 12 0.04178504139046386 20 0.037985600028360864 15 0.036812784300012585 23 0.032843327297042084 24 0.02811491198994724 16 0.027442744783118846 4 0.026154958846891972 5 0.025768004641453766 6 0.023912999978397957 3 0.022274271130108936 8 0.022122840930811665 7 0.02210825970225334 1 0.02196397272109681 2 0.021621880756409733 __DUMMY__ 0.014127090987976341 false 0.0
861 9 0.05537506969649252 22 0.05301510360434501 4 0.049638343399976505 5 0.049148608393917645 6 0.048481827171981 7 0.04815857917885078 8 0.04815637345994466 1 0.04805743385080384 3 0.04783653358882453 2 0.04749794057060007 18 0.04657883870600917 17 0.0449937617634871 23 0.04378251794601744 0 0.043074186908545746 21 0.03960216896818496 10 0.03858140400116123 19 0.03674710163906262 24 0.034976927072591264 11 0.03360156374650325 16 0.02708389101731591 20 0.02607456213924478 15 0.022659214105336313 12 0.02201034880178608 14 0.02058308375721217 13 0.013499114592973654 __DUMMY__ 0.010785501918831665 false 0.0
1049 21 0.07281382635525491 12 0.0712668190103198 13 0.07102151638693496 14 0.06537362110449876 18 0.06307762036739452 11 0.05670426353702783 22 0.05535618477800598 19 0.0550192318019673 10 0.05281469371878464 20 0.04945112249589875 23 0.04262160180773366 24 0.041237659558671334 15 0.037292495198388 17 0.032660691918757694 9 0.03217753351022265 0 0.02980022554196425 16 0.025414095449487164 4 0.020552506113201523 5 0.020159994816368248 6 0.0182852788857755 8 0.01477685509691724 7 0.014719587842137206 1 0.014593145901707997 2 0.014348624691600115 __DUMMY__ 0.014233695857489575 3 0.014227108253490203 false 0.0
862 18 0.06546589948086057 10 0.06088081867073081 22 0.060823441007447035 9 0.05421542148799993 21 0.0507707614592328 11 0.04975858170178668 19 0.04916872610934695 0 0.04818276246940724 17 0.046976172448013005 14 0.039171644437400184 4 0.0335983970972362 23 0.03323890987269669 5 0.03315143665199344 20 0.03231483658227537 12 0.031940655125340625 6 0.03174798577886493 3 0.03064048939693348 8 0.030626030802939144 7 0.030624897564007693 1 0.03049516081341967 15 0.030029325686466588 2 0.030025588724871665 13 0.028932778605905023 16 0.028402358690281102 24 0.027607426512653365 __DUMMY__ 0.011209492821889617 false 0.0
620 21 0.106568 22 0.091954 11 0.087495 19 0.082235 12 0.072622 18 0.071093 24 0.05422 10 0.054059 20 0.050289 17 0.046299 0 0.0423 9 0.04214 14 0.040173 13 0.039855 23 0.036769 16 0.036057 4 0.011616 5 0.010941 6 0.006129 3 0.005445 7 0.003412 8 0.003173 1 0.002767 2 0.00239 21 0.106568 22 0.091954 11 0.087495 19 0.082235 12 0.072622 18 0.071093 24 0.05422 10 0.054059 20 0.050289 17 0.046299 0 0.0423 9 0.04214 14 0.040173 13 0.039855 23 0.036769 16 0.036057 4 0.011616 5 0.010941 6 0.006129 3 0.005445 7 0.003412 8 0.003173 1 0.002767 2 0.00239 21 0.09371527269527032 22 0.08150250777756704 11 0.07628111015504727 19 0.07351750940871275 12 0.06689736468634014 18 0.06639878672276242 24 0.05190290003725285 10 0.05016768415465841 20 0.04877843743727708 17 0.0434528874830164 13 0.040885801650664085 14 0.040743659514774724 9 0.04053853251265295 23 0.04013046136185902 0 0.039022300038206933 16 0.03378513747051144 4 0.017479133285431263 5 0.016899003110089565 6 0.0128592285941723 3 0.011827723168490904 7 0.010318437987128438 8 0.010145098424631922 1 0.009860978116801797 2 0.009467905249737597 15 0.00790365938667488 __DUMMY__ 0.005518479570267534 false 1.0
1048 21 0.08256753779253523 22 0.07365912511827273 11 0.06743852168899839 19 0.06386927952489012 18 0.060552842172851576 12 0.06037063474954627 24 0.049193032926756454 10 0.04594768418773284 20 0.04429393879639392 23 0.042071491117058754 17 0.040763834553414834 9 0.04032551912786113 14 0.04000532505180736 13 0.03994603909088685 0 0.03681858576834091 16 0.03030870543098748 4 0.02349498790585751 5 0.022989236750484855 6 0.01960076954044098 3 0.01828216641595339 7 0.017221970999616566 8 0.01710461453928452 1 0.016922476059011836 __DUMMY__ 0.01656405936467655 2 0.016498831565243732 15 0.013188789761095146 false 0.0
1047 21 0.07561806647548608 22 0.0708006992111403 19 0.06466899763467827 18 0.0641495146379415 11 0.06266471868718979 12 0.0525493116709608 10 0.04954574981461278 24 0.04829918140083591 20 0.04771173248108898 23 0.042197802734246004 14 0.04186454179326476 9 0.04106308320214039 17 0.04077489942199641 13 0.03548865012512155 0 0.03545011869471371 16 0.031102814776574374 4 0.024188636176794075 5 0.023706957379872377 15 0.020980825609474837 6 0.020103029665136815 3 0.019956707369685224 7 0.01836641806673471 8 0.0182874395568937 1 0.018073148696443598 2 0.01772075827997806 __DUMMY__ 0.014666196436995082 false 0.0
863 22 0.05817554764108582 9 0.05697461858187862 18 0.056691297707111885 10 0.05245533398689123 0 0.048086902252465064 17 0.046867737707228185 21 0.04445203977670127 11 0.043240955987498615 19 0.041695732962935016 4 0.041555298467543515 5 0.04107337751620096 6 0.040127952222304954 8 0.03941832489159151 7 0.03941495145933628 1 0.03929332667486475 3 0.03917888062009167 2 0.03875279426959064 23 0.035887757694266685 14 0.030614857178204734 24 0.028286892905122075 16 0.026987290095901364 15 0.02685784472734307 20 0.026141795691224736 12 0.024904504542775267 13 0.020584278421744942 __DUMMY__ 0.012279706018097317 false 0.0
621 0 0.087379 17 0.079507 9 0.065784 22 0.062688 11 0.059408 10 0.056889 18 0.054477 16 0.053411 6 0.045299 8 0.042699 7 0.0425 1 0.04229 2 0.04202 4 0.041647 5 0.040993 19 0.037611 3 0.037229 21 0.032733 12 0.024139 23 0.021116 13 0.012134 15 0.011498 14 0.00367 24 0.002877 0 0.087379 17 0.079507 9 0.065784 22 0.062688 11 0.059408 10 0.056889 18 0.054477 16 0.053411 6 0.045299 8 0.042699 7 0.0425 1 0.04229 2 0.04202 4 0.041647 5 0.040993 19 0.037611 3 0.037229 21 0.032733 12 0.024139 23 0.021116 13 0.012134 15 0.011498 14 0.00367 24 0.002877 0 0.07309280731372908 17 0.0694021417042506 9 0.0616934848520041 22 0.060692142302823326 18 0.0525844196065903 11 0.05251910145079468 10 0.05059709239024374 16 0.04687189146760686 6 0.04498359548566179 8 0.04304921664546484 7 0.04292273510735299 4 0.04292170081258829 1 0.04275474748787143 5 0.04233921644797755 2 0.042318853266550924 19 0.03936417608752589 3 0.03920455663069948 21 0.03669482064531843 23 0.028148281362192367 12 0.024800121852001773 15 0.015036598114653972 24 0.014276787564733532 13 0.012740012443475458 20 0.009670170581721545 14 0.009332096655314906 __DUMMY__ 0.0019892317208522648 false 1.0
864 18 0.05538382623438842 22 0.05314114184151677 21 0.05238782230536589 19 0.050511021951360924 23 0.04842828076052025 24 0.04387967366740961 20 0.04351839147537182 9 0.043454802811788304 10 0.04159472842939084 17 0.04054505854970232 12 0.04003699826080835 11 0.03961575180868534 4 0.03772479022790783 5 0.037267754828289874 6 0.03554857818553335 3 0.034782647389572055 8 0.034447209023319256 7 0.03441263562274973 0 0.034344451968459054 1 0.03426136808565963 2 0.03392380075991244 14 0.03296344889692873 16 0.03018906319431423 13 0.029698282709192447 15 0.026783573893106555 __DUMMY__ 0.011154897118745831 false 0.0
1046 21 0.0717075711018827 12 0.06418459236991807 18 0.06228963225564744 19 0.06002044394958304 13 0.05747633036596965 22 0.056900093183304176 14 0.0566396890549203 20 0.054800581562118686 11 0.052801253854885044 24 0.04885832650435737 10 0.04701655270870381 23 0.04595202704309334 15 0.03474481162555291 17 0.03452016513255885 9 0.03221526091894648 16 0.029569786128333653 0 0.02723316621519613 4 0.022330898979717136 5 0.02188052613131791 6 0.019340295392217613 3 0.01727646122119229 8 0.016817470378795763 7 0.016778512925822702 1 0.016609336383319417 2 0.016328428216814912 __DUMMY__ 0.015707786395830734 false 0.0
622 21 0.10811 22 0.089779 11 0.085399 19 0.084989 12 0.074436 18 0.073671 24 0.055046 20 0.055038 10 0.053649 17 0.045892 13 0.042014 0 0.040571 14 0.040168 23 0.039641 9 0.039195 16 0.036852 4 0.010403 5 0.009719 6 0.005182 3 0.003749 7 0.002386 1 0.0017 8 0.00163 2 7.82E-4 21 0.10811 22 0.089779 11 0.085399 19 0.084989 12 0.074436 18 0.073671 24 0.055046 20 0.055038 10 0.053649 17 0.045892 13 0.042014 0 0.040571 14 0.040168 23 0.039641 9 0.039195 16 0.036852 4 0.010403 5 0.009719 6 0.005182 3 0.003749 7 0.002386 1 0.0017 8 0.00163 2 7.82E-4 21 0.09468726267603772 22 0.08007182045768993 11 0.07515748947062671 19 0.07509630583586015 12 0.06868851725306203 18 0.06766553078144363 24 0.05250646058673344 20 0.05161026750856306 10 0.04982149037891432 17 0.043120946734278603 13 0.04281749247706022 23 0.04175379137280451 14 0.04103477390328804 9 0.03862126165470035 0 0.03791785473433164 16 0.03438471562514056 4 0.016612765857270995 5 0.016029330054361572 6 0.012147252305276218 3 0.010673506177939877 7 0.009518739781505697 8 0.009105336692810632 1 0.009044153407854444 2 0.008404094155697305 15 0.007936537300853438 __DUMMY__ 0.005572302815894877 false 1.0
865 22 0.07198254287146749 21 0.06829289283606015 11 0.06090655896844312 18 0.06023551412010787 19 0.05695452264079987 10 0.04995385368752388 9 0.04937767286789146 17 0.044742062499517746 0 0.04300960131541857 12 0.0418399455980392 24 0.04125593791044508 23 0.03812774344439281 20 0.035822005589053865 14 0.03417757866347685 4 0.030740900957219444 5 0.03021753797793433 16 0.029467355554765592 6 0.02733026545833901 3 0.027044397189575894 7 0.025933715803288192 13 0.02591023550701425 8 0.025889523467370164 1 0.02565848571701673 2 0.025219314528774954 15 0.017478674655800105 __DUMMY__ 0.01243116017026337 false 0.0
623 21 0.108359 22 0.090462 11 0.086134 19 0.085327 12 0.075408 18 0.073583 24 0.055187 20 0.054974 10 0.054086 17 0.045999 13 0.042315 0 0.040946 14 0.040854 9 0.039508 23 0.038981 16 0.037598 4 0.009651 5 0.009095 6 0.004271 3 0.003333 7 0.001636 8 0.001055 1 9.21E-4 2 3.19E-4 21 0.108359 22 0.090462 11 0.086134 19 0.085327 12 0.075408 18 0.073583 24 0.055187 20 0.054974 10 0.054086 17 0.045999 13 0.042315 0 0.040946 14 0.040854 9 0.039508 23 0.038981 16 0.037598 4 0.009651 5 0.009095 6 0.004271 3 0.003333 7 0.001636 8 0.001055 1 9.21E-4 2 3.19E-4 21 0.09480245336884091 22 0.0803878684310779 11 0.07549760475718317 19 0.07525269383474979 12 0.0691383165759274 18 0.06762477401617216 24 0.05257168956578225 20 0.05158062511451073 10 0.05002370620640904 17 0.043170445223735185 13 0.04295677221350254 23 0.04144833117164553 14 0.04135222831022695 9 0.038766096803621274 0 0.03809138313974109 16 0.03472994046219604 4 0.01626474068387726 5 0.015740542169730514 6 0.011725645714239378 3 0.01048098092740301 7 0.009171643469568721 8 0.008839228683771095 1 0.008683636428489268 2 0.008189818862595772 15 0.007936533627909616 __DUMMY__ 0.005572300237093263 false 1.0
1045 17 0.06270529579063233 19 0.058015888697009806 16 0.05759921148815942 18 0.05627535386862167 22 0.05466908380988712 0 0.05136858127002835 11 0.0472022212859381 21 0.04685984744176444 9 0.04150931917658997 23 0.04033459872204146 10 0.04019947730259695 20 0.04009511365101315 12 0.039503759372289254 24 0.037018998701387064 6 0.03155555832093888 4 0.03109275037427424 5 0.030619539384687856 8 0.029844276172862436 7 0.029733671026333727 1 0.029584571498837992 15 0.029337699505060693 2 0.02915068712021255 3 0.027538243888695767 13 0.022936003940217217 14 0.022048424782517867 __DUMMY__ 0.013201823407401496 false 0.0
866 18 0.07046540755129803 10 0.06617353206117152 22 0.06153705861993612 21 0.06012974910854425 11 0.05739273983568248 19 0.05437425808648741 14 0.05295159371216631 9 0.047203463394825784 12 0.04562350719058512 13 0.04544809351882267 0 0.044007825422566184 17 0.04249994141549826 20 0.03892384961478551 15 0.03510796851406207 23 0.03333272389843831 24 0.029090107303300118 16 0.027170040691122634 4 0.02495692318494806 5 0.024578453361138734 6 0.022633371029139534 3 0.02075408265813401 8 0.020609337474760004 7 0.020602993756787927 1 0.02046048172820711 2 0.02013500037955187 __DUMMY__ 0.013837496488040073 false 0.0
624 21 0.107681 22 0.088479 11 0.086723 12 0.078095 19 0.071932 18 0.059113 24 0.056848 13 0.047784 23 0.044934 20 0.041893 14 0.041496 10 0.040917 17 0.040339 9 0.037252 0 0.037172 16 0.028861 4 0.017637 5 0.016874 6 0.012859 3 0.009451 7 0.00907 8 0.008681 1 0.008434 2 0.007476 21 0.107681 22 0.088479 11 0.086723 12 0.078095 19 0.071932 18 0.059113 24 0.056848 13 0.047784 23 0.044934 20 0.041893 14 0.041496 10 0.040917 17 0.040339 9 0.037252 0 0.037172 16 0.028861 4 0.017637 5 0.016874 6 0.012859 3 0.009451 7 0.00907 8 0.008681 1 0.008434 2 0.007476 21 0.09469744868177303 22 0.07900972488273335 11 0.0755685281654764 12 0.07133171424415273 19 0.06725556811180482 18 0.05913417318760898 24 0.05339482350632542 13 0.04673070603209968 23 0.0452037715027592 20 0.044023757558533834 10 0.042308070573707744 14 0.041658084561348674 17 0.03963844065570052 9 0.03738970341280448 0 0.035820828973768974 16 0.029414511388074386 4 0.020968954534704515 5 0.020333808366486485 6 0.01681697532488264 3 0.014089353181550985 7 0.013572713305073307 8 0.013326788180517387 1 0.013117044178459053 2 0.012452410395464405 15 0.00733043254655189 __DUMMY__ 0.005411664547636997 false 1.0
625 22 0.082308 9 0.071301 21 0.059562 0 0.05351 11 0.053404 18 0.052071 17 0.049568 4 0.04666 5 0.045681 10 0.045232 3 0.044814 8 0.04327 6 0.042981 7 0.042879 1 0.04257 2 0.042188 19 0.041334 24 0.036479 23 0.029539 14 0.020169 16 0.0171 12 0.014358 20 0.013073 15 0.009951 22 0.082308 9 0.071301 21 0.059562 0 0.05351 11 0.053404 18 0.052071 17 0.049568 4 0.04666 5 0.045681 10 0.045232 3 0.044814 8 0.04327 6 0.042981 7 0.042879 1 0.04257 2 0.042188 19 0.041334 24 0.036479 23 0.029539 14 0.020169 16 0.0171 12 0.014358 20 0.013073 15 0.009951 22 0.07357762525156604 21 0.06273352686993174 9 0.058943876234540664 11 0.0546315574759697 18 0.054169659493691874 0 0.04717914737446088 10 0.04592553952832333 19 0.04585579079290934 17 0.045771472523775655 4 0.03963540272650834 5 0.03889261928639165 24 0.038024100739339046 6 0.036603825186549775 3 0.036413668187318726 8 0.03567060701489708 7 0.03545680913337475 1 0.03520667754003522 23 0.034810351583063975 2 0.03480219748925869 12 0.03165047765037728 14 0.030029850324236478 20 0.02381064659785718 16 0.021963633541490526 13 0.01929031744159506 15 0.015767614994703465 __DUMMY__ 0.0031830050178334336 false 1.0
867 21 0.07956809928782159 22 0.06728598398210371 12 0.06722266451331918 11 0.06653174037654712 18 0.059204896724081836 19 0.05908922716116073 13 0.0516830431363063 10 0.04673321254459479 24 0.04421496754867691 14 0.044043354497668705 23 0.04331093080228362 20 0.0420921218716496 17 0.03944792637576674 0 0.03766067425626237 9 0.037176320621756 16 0.029244112821530464 4 0.023572134668200115 5 0.02307819988944107 6 0.02083103407090881 7 0.01755099386810277 8 0.017461111660435583 3 0.017306644910712373 1 0.017304284308203733 2 0.01693258455968324 __DUMMY__ 0.015861319309532006 15 0.015592416233250594 false 0.0
868 22 0.06038956612168451 21 0.06014955119969798 18 0.05826691384569518 19 0.0556456535395464 11 0.04779565478720235 24 0.04511281002534645 10 0.045085722732327825 20 0.04430987864184942 9 0.043870801336739165 23 0.04365503190866804 12 0.04105957191141897 17 0.040992680502984886 14 0.03744253045542971 0 0.03520780430739726 4 0.03233391231414228 5 0.03183251154463381 16 0.030801127466795992 13 0.02959276105884199 3 0.0294453604727657 6 0.029307399254920978 8 0.028352822505796203 7 0.028346350623851144 1 0.028136426291663668 2 0.02773742511123162 15 0.02713975975545649 __DUMMY__ 0.017989972283912255 false 0.0
626 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.09257313987653791 22 0.08313149842495329 11 0.07711621625835471 19 0.07112267283811256 18 0.06516659847803705 12 0.06322868906557794 10 0.05030007627864262 24 0.04991650796269891 20 0.044914012694254164 17 0.04391505014798409 9 0.04286274968036916 0 0.040655820788262624 14 0.039385847122326706 23 0.039009922124529625 13 0.03788990404646333 16 0.0324752670587994 4 0.019203684501799392 5 0.01877351738996468 6 0.014702011903823833 3 0.013622691060738382 7 0.012348718076052045 8 0.011979282819523724 1 0.011821861334183663 2 0.011235724399508344 15 0.007362374420020326 __DUMMY__ 0.005286161248481621 false 1.0
869 22 0.05835559915956644 9 0.058151448403393424 18 0.05492382747713853 10 0.05106622592451197 0 0.049238104701398396 17 0.047613965148933665 21 0.04331806565425483 4 0.043181158782270516 11 0.042822648694963245 5 0.0426838136930402 6 0.04189712599525372 8 0.04124420971456495 7 0.04123356646566829 1 0.04110313420815158 3 0.04088262069492705 2 0.040550980615701976 19 0.04018159502871949 23 0.03575249041836005 14 0.02808927405082868 24 0.02778626437051693 16 0.02703967348962715 15 0.02531489308787228 20 0.023970810219696652 12 0.023295151675840623 13 0.018329145886441654 __DUMMY__ 0.011974206438357879 false 0.0
627 21 0.103258 22 0.091645 11 0.088095 12 0.068778 19 0.068218 18 0.058605 24 0.05281 10 0.044765 9 0.043463 17 0.042446 0 0.04172 23 0.039627 13 0.039505 14 0.039114 20 0.035504 16 0.027903 4 0.02026 5 0.019534 6 0.015362 3 0.01308 7 0.012164 8 0.011838 1 0.011586 2 0.010721 21 0.103258 22 0.091645 11 0.088095 12 0.068778 19 0.068218 18 0.058605 24 0.05281 10 0.044765 9 0.043463 17 0.042446 0 0.04172 23 0.039627 13 0.039505 14 0.039114 20 0.035504 16 0.027903 4 0.02026 5 0.019534 6 0.015362 3 0.01308 7 0.012164 8 0.011838 1 0.011586 2 0.010721 21 0.09193413094059034 22 0.08189895855985242 11 0.07668187538144601 19 0.06526357077103268 12 0.0641033580202912 18 0.059182742329416844 24 0.050900401952143993 10 0.044857096864144644 9 0.041988649617204984 23 0.041594609729267276 17 0.04146829279179138 13 0.03977830607708231 20 0.039675869559944316 14 0.0394759673777183 0 0.039058582433827656 16 0.02882986846600471 4 0.022769576504866326 5 0.022152076672195826 6 0.01845652700924219 3 0.01658776285115345 7 0.015666120248679014 8 0.015453027615337222 1 0.015233394988528904 2 0.014599076850991623 15 0.007185801007856545 __DUMMY__ 0.0052043553793899465 false 1.0
628 21 0.101993 19 0.094482 22 0.083683 20 0.078985 18 0.078025 24 0.074905 11 0.071839 12 0.066991 23 0.051533 10 0.044142 16 0.042648 17 0.042409 14 0.041656 13 0.031864 9 0.029283 0 0.021725 15 0.015571 4 0.009551 5 0.008432 3 0.004859 6 0.002345 7 0.001093 8 0.001022 1 9.63E-4 21 0.101993 19 0.094482 22 0.083683 20 0.078985 18 0.078025 24 0.074905 11 0.071839 12 0.066991 23 0.051533 10 0.044142 16 0.042648 17 0.042409 14 0.041656 13 0.031864 9 0.029283 0 0.021725 15 0.015571 4 0.009551 5 0.008432 3 0.004859 6 0.002345 7 0.001093 8 0.001022 1 9.63E-4 21 0.08888659961868414 19 0.08040075906455381 22 0.07657260143217855 18 0.07061779301570208 11 0.06624863686380729 20 0.06494159724121827 24 0.06313510034170262 12 0.0606050205316706 23 0.04774700558058902 10 0.04521980380072225 17 0.042015384940180873 14 0.041291346855148445 16 0.0383253434701584 9 0.03427854139708723 13 0.03381579844985678 0 0.02794555127848609 15 0.01858513866372607 4 0.016868296842328996 5 0.016073438291852715 3 0.012449796494333733 6 0.011292796456268689 7 0.009825818727449514 8 0.009745741499770326 1 0.009596878831065036 2 0.008936604966938724 __DUMMY__ 0.004578605344519909 false 1.0
629 21 0.102562 22 0.090212 11 0.088269 12 0.069731 19 0.057379 24 0.053731 18 0.047697 23 0.043358 13 0.043023 9 0.042187 14 0.039489 0 0.039141 17 0.038393 10 0.034913 4 0.026549 5 0.02557 20 0.025468 6 0.022062 16 0.021388 3 0.018324 7 0.018136 8 0.018006 1 0.017666 2 0.016747 21 0.102562 22 0.090212 11 0.088269 12 0.069731 19 0.057379 24 0.053731 18 0.047697 23 0.043358 13 0.043023 9 0.042187 14 0.039489 0 0.039141 17 0.038393 10 0.034913 4 0.026549 5 0.02557 20 0.025468 6 0.022062 16 0.021388 3 0.018324 7 0.018136 8 0.018006 1 0.017666 2 0.016747 21 0.09098113681532191 22 0.08022979632053177 11 0.07567962703520834 12 0.06478317479714875 19 0.059306935752726546 18 0.05328631300023459 24 0.05143168626068179 23 0.04414806616687524 13 0.042099329644984036 9 0.04100063411743773 14 0.039710164671049555 10 0.03930777272981775 17 0.03907776400033204 0 0.037268267071716335 20 0.03480702980940942 4 0.026325639973108095 5 0.025580551986701457 16 0.02536674195241101 6 0.02230158642860892 3 0.01959825541909947 7 0.019125878514570517 8 0.01900796582042922 1 0.018744143359791954 2 0.01808372240830217 15 0.007504139991848461 __DUMMY__ 0.005243675951653066 false 1.0
1066 21 0.06911160176241668 22 0.06535410450445157 11 0.05665887206766839 18 0.05612923089824478 12 0.05188115130684735 19 0.05084004208539346 10 0.04609394985048698 9 0.04487006151548212 14 0.043281648742322196 13 0.042063179500777266 24 0.041433441149460376 23 0.04038408448221457 17 0.039146340057747704 0 0.03800378991717682 20 0.03599994220089345 4 0.03099206846738525 5 0.030466223891199185 6 0.02823296249554567 3 0.02620105850445988 8 0.02598340651684759 7 0.02591996105961486 1 0.025728242621559334 2 0.02534284695526153 16 0.024417239972943382 15 0.021946475350660875 __DUMMY__ 0.013518074122938387 false 0.0
1065 21 0.07452044107981683 19 0.07146504430477559 18 0.06496185396710218 20 0.06441047234909168 12 0.061010807115213714 22 0.06042069081799153 24 0.05760081432706535 11 0.05256217813145257 23 0.049485440946557956 14 0.04571000821419038 13 0.043872912724048495 10 0.043001032701533104 17 0.038330919959870285 16 0.037800044415800316 9 0.030501771596800512 15 0.028164832390231456 0 0.025797771459429596 4 0.020556948782316783 5 0.020070261905471943 __DUMMY__ 0.017296103820356096 6 0.01665946352994291 3 0.016592963025892485 7 0.01501068790084081 8 0.01497566373924167 1 0.014766865484089849 2 0.014454005310875831 false 0.0
1064 21 0.0825126375974968 12 0.07187348878332474 22 0.06518264571765359 19 0.06331626204746577 11 0.06324456116964769 18 0.059413099374292136 13 0.054621441830156055 24 0.05005530676462224 20 0.04973223551813735 23 0.04702111316798466 14 0.045624144235735055 10 0.043133217524677935 17 0.037189612346046924 9 0.03287230349335044 0 0.03215519318312956 16 0.030774325605908537 4 0.02172346766640243 5 0.021233607910092257 6 0.018611207311266097 __DUMMY__ 0.01719895280429909 15 0.016375173798676035 3 0.015514850919047722 7 0.015388432194942998 8 0.015295787905144463 1 0.015141379771832345 2 0.014795551358667114 false 0.0
1063 21 0.07357837002996409 19 0.0699097335889679 22 0.06351835838846219 18 0.06308033663878179 12 0.05932549708245991 11 0.05728460409970734 20 0.05563250832184795 24 0.05146926981841055 23 0.046439587168656524 10 0.04399499755742444 17 0.04375719050112739 16 0.040945291221121026 13 0.03994427351126175 14 0.03900350257960934 9 0.03413582097940034 0 0.034036379678665726 15 0.02189832057756417 4 0.021729835405694013 5 0.021265231248521827 6 0.018566437128503904 __DUMMY__ 0.017747479878009457 3 0.017338266357442674 7 0.016571119709839103 8 0.016514520401262438 1 0.016333131796199864 2 0.015979936331094076 false 0.0
1062 21 0.07579160442597024 22 0.07142452909281034 11 0.062101889197289456 19 0.0588756093666299 18 0.05824604584299084 12 0.05291982972916578 24 0.046046483469736665 10 0.04514680545255317 9 0.04434420297140817 17 0.04181291104912056 23 0.04101254326754306 20 0.03973521289935721 0 0.03888055057385098 14 0.03697817358235514 13 0.03496039225978258 16 0.028824800987108802 4 0.028070204961963288 5 0.02753626008737966 6 0.024578881529070187 3 0.023465115058755617 7 0.022563668498228374 8 0.02250491308042828 1 0.02228671525458047 2 0.021847285904445526 __DUMMY__ 0.01553326198364967 15 0.014512109473826041 false 0.0
1061 21 0.08274257331902939 22 0.07382398982311886 11 0.06759834546787845 19 0.06381119009475769 18 0.06053274510907301 12 0.06041696353146905 24 0.049195023123954136 10 0.04598007150755442 20 0.04416581132461654 23 0.042030224891744024 17 0.0406985265436206 9 0.04040709676254775 14 0.04004406411926987 13 0.039967390872781644 0 0.03683259798213563 16 0.03013889573110582 4 0.02351294693808434 5 0.023006532564269495 6 0.01960209112489537 3 0.01828730086987204 7 0.017217910044735298 8 0.017099436093033923 1 0.0169173436724057 2 0.01649271774099227 __DUMMY__ 0.01642184669135973 15 0.013056364055694951 false 0.0
1060 21 0.08274257331902939 22 0.07382398982311886 11 0.06759834546787845 19 0.06381119009475769 18 0.06053274510907301 12 0.06041696353146905 24 0.049195023123954136 10 0.04598007150755442 20 0.04416581132461654 23 0.042030224891744024 17 0.0406985265436206 9 0.04040709676254776 14 0.04004406411926987 13 0.039967390872781644 0 0.03683259798213563 16 0.03013889573110582 4 0.02351294693808434 5 0.023006532564269495 6 0.01960209112489537 3 0.01828730086987204 7 0.017217910044735298 8 0.017099436093033923 1 0.016917343672405702 2 0.01649271774099227 __DUMMY__ 0.01642184669135973 15 0.013056364055694951 false 0.0
870 18 0.06974033685363037 10 0.05978812265966038 19 0.05739964047809681 22 0.057121799967251835 21 0.05429939957626173 14 0.04741725011041934 11 0.04699263909667434 20 0.046661458362590794 9 0.04508591981446945 17 0.04221751856137866 23 0.04011067640677297 12 0.03876889220830154 15 0.03818257840824424 0 0.038102038690854136 24 0.03619270623408648 13 0.03594593746194962 16 0.030530272385682445 4 0.028063272657608142 5 0.027656619374555578 6 0.0253726535170399 3 0.025065952059710756 8 0.024232955275344262 7 0.02421211779382672 1 0.024032751672412256 2 0.023751208184700844 __DUMMY__ 0.013055282188476389 false 0.0
871 18 0.07182909329013121 10 0.0612865192562533 19 0.060620539226310624 21 0.05875092813414528 22 0.05797768724918477 14 0.054683311961518315 20 0.051008602946566804 11 0.050346268918414774 12 0.043913038939213174 15 0.0427465160009448 13 0.04243904332545771 9 0.04184577473606862 17 0.04123916349442193 23 0.03835159396052517 24 0.03813246010520522 0 0.035975671325929444 16 0.03184729552390342 4 0.023345131756327065 5 0.022938013899851256 6 0.020408057942250146 3 0.020094750237235472 8 0.01910935656250111 7 0.01909682899676235 1 0.018916776390993133 2 0.01861436328300626 __DUMMY__ 0.014483212536878605 false 0.0
872 18 0.07045391038515171 10 0.06546905894519792 22 0.05826405227143327 14 0.05607879281268217 21 0.05475000583360591 19 0.05300417909298652 11 0.05103078891280806 9 0.04728131442128394 15 0.043719365607298714 13 0.042863563339631976 17 0.04164204790520209 20 0.04103361298617078 0 0.04090394680591349 12 0.039412383465412856 23 0.03403506277863633 24 0.030007602065654875 16 0.027220491246799514 4 0.026389376815129203 5 0.026004253561952732 6 0.023990999889464598 3 0.022960212132264828 8 0.0225336883940276 7 0.022504281574061334 1 0.0223564980535754 2 0.02202222783778328 __DUMMY__ 0.014068282865871173 false 0.0
630 21 0.107808 22 0.089713 11 0.085512 19 0.08432 12 0.075242 18 0.073147 24 0.055718 20 0.054795 10 0.053695 17 0.04582 13 0.042027 0 0.040985 14 0.040845 9 0.039195 23 0.039164 16 0.037672 4 0.010136 5 0.009314 6 0.004662 3 0.004057 7 0.002039 8 0.001635 1 0.001447 2 0.001054 21 0.107808 22 0.089713 11 0.085512 19 0.08432 12 0.075242 18 0.073147 24 0.055718 20 0.054795 10 0.053695 17 0.04582 13 0.042027 0 0.040985 14 0.040845 9 0.039195 23 0.039164 16 0.037672 4 0.010136 5 0.009314 6 0.004662 3 0.004057 7 0.002039 8 0.001635 1 0.001447 2 0.001054 21 0.0945611849861107 22 0.08005545514628915 11 0.07522653104915074 19 0.07477806411044509 12 0.06906557302667429 18 0.06741207938878517 24 0.05281560944892523 20 0.05147669982424102 10 0.04983675448305017 17 0.04308676656225705 13 0.04282332934775295 23 0.04153077172034126 14 0.041345084120335274 9 0.03862704417783633 0 0.03811562440441728 16 0.03475507299773051 4 0.016493239588836847 5 0.015845764926601207 6 0.011910518040232803 3 0.010817881750459413 7 0.009360930084229039 8 0.009110277854865916 1 0.008929595285695924 2 0.008532160007288568 15 0.007922735063988296 __DUMMY__ 0.00556525260345988 false 1.0
873 21 0.06999653332279321 19 0.0697196987930409 18 0.06707690032028434 20 0.06283519636752367 22 0.06154259532964436 24 0.05549728587421779 12 0.05276353044637319 11 0.05190494133342584 23 0.047502330914795485 10 0.04619599173317755 14 0.04588151804844236 17 0.03912511836392869 13 0.03775331535508308 16 0.036324640169227304 9 0.033907612432559894 15 0.0323778885260779 0 0.026839127999398506 4 0.02233730068792921 5 0.021842474717435636 3 0.01900508909771023 6 0.018228551432371388 7 0.017068052379973542 8 0.01704095756171062 1 0.016789291013532767 2 0.016465500001116164 __DUMMY__ 0.013978557778226337 false 0.0
1059 21 0.07777499539082246 19 0.06795075694060548 22 0.06545959742983644 18 0.062310243679546115 12 0.06115549111686033 11 0.05826112574851182 20 0.05527937099587945 24 0.05361139869367422 23 0.04680989596612487 10 0.04371341223784601 13 0.042448092743331174 14 0.04239373833750433 17 0.03922014076997471 9 0.03470645003754248 16 0.034560092591862955 0 0.030717621969192168 4 0.022262179745816926 5 0.021770956631891828 15 0.020636641820998697 6 0.018452752019363593 __DUMMY__ 0.01791187178375595 3 0.017728311583941597 7 0.016452553508030432 8 0.016385132070982886 1 0.01619356663228483 2 0.01583360955381837 false 0.0
631 21 0.106917 22 0.08762 11 0.08551 12 0.077286 19 0.070342 18 0.058785 24 0.057211 13 0.047262 23 0.044653 20 0.041844 14 0.041383 10 0.040429 17 0.040195 0 0.03723 9 0.036972 16 0.028891 4 0.018276 5 0.017533 6 0.013495 3 0.010589 7 0.009878 8 0.009645 1 0.009417 2 0.008637 21 0.106917 22 0.08762 11 0.08551 12 0.077286 19 0.070342 18 0.058785 24 0.057211 13 0.047262 23 0.044653 20 0.041844 14 0.041383 10 0.040429 17 0.040195 0 0.03723 9 0.036972 16 0.028891 4 0.018276 5 0.017533 6 0.013495 3 0.010589 7 0.009878 8 0.009645 1 0.009417 2 0.008637 21 0.09433630346007336 22 0.07860612659931449 11 0.07501039802383286 12 0.07096400072388774 19 0.0664857530619877 18 0.05895670638525836 24 0.05354172683338656 13 0.04650773063534518 23 0.0450709838057164 20 0.04396046130179382 10 0.04207438553427489 14 0.04160550190654286 17 0.03956544951598214 9 0.03726745501983093 0 0.035858851694422066 16 0.02940967652493184 4 0.02128019650329507 5 0.020654605683073098 6 0.017130119773006474 3 0.014628291903174535 7 0.013962835492795166 8 0.013788985563265969 1 0.01358791088078932 2 0.013005757463919637 15 0.007320628854563074 __DUMMY__ 0.005419156855536402 false 1.0
874 22 0.055010028233100715 9 0.05250473663298484 18 0.05192393804145165 21 0.04803773397626193 10 0.047369577652566976 0 0.04375372181413695 11 0.04308895281619266 17 0.04225970904738873 4 0.042109975862241744 5 0.0416726061783401 6 0.040962709498463465 7 0.03954147606049435 8 0.039524375047428055 23 0.0394736571093348 1 0.03947250533172911 2 0.0389277793038286 3 0.03876269751732151 19 0.0380474129730142 12 0.03465861869183416 14 0.03406630006688098 13 0.03094108828739374 24 0.03082352412021474 20 0.02654877260423149 15 0.02562040400600538 16 0.023757648880588768 __DUMMY__ 0.011140050246570188 false 0.0
1058 21 0.07780209825333753 22 0.06774348470348385 19 0.06483159202373791 11 0.05993808102350055 18 0.05989262174310335 12 0.0591425938541794 24 0.052393058408358666 20 0.05005393769959892 23 0.04546327313119205 10 0.04259965673245041 14 0.04092501980040033 13 0.040216766274031965 17 0.04005240241549498 9 0.03702407616177442 16 0.03317542976436768 0 0.03271654842023232 4 0.024111512336598293 5 0.023605271490899866 6 0.02039390652949986 3 0.019431594071442702 15 0.019107153090355954 7 0.018302332227697272 8 0.01824984086360224 1 0.018039879543273844 2 0.017660977694038155 __DUMMY__ 0.017126891743347524 false 0.0
632 0 0.089074 17 0.079762 9 0.065787 22 0.062919 11 0.060067 10 0.05785 18 0.055243 16 0.053353 6 0.04514 8 0.042541 7 0.042357 1 0.042037 2 0.041618 4 0.04125 5 0.040424 19 0.037447 3 0.036761 21 0.032696 12 0.02349 23 0.021134 13 0.012308 15 0.010943 14 0.003176 24 0.002624 0 0.089074 17 0.079762 9 0.065787 22 0.062919 11 0.060067 10 0.05785 18 0.055243 16 0.053353 6 0.04514 8 0.042541 7 0.042357 1 0.042037 2 0.041618 4 0.04125 5 0.040424 19 0.037447 3 0.036761 21 0.032696 12 0.02349 23 0.021134 13 0.012308 15 0.010943 14 0.003176 24 0.002624 0 0.07385455740165886 17 0.06949710130644726 9 0.06169621135256273 22 0.06082144541213585 18 0.05294293041047261 11 0.05283601187729699 10 0.05104200432050584 16 0.04681549231773535 6 0.04489758724295847 8 0.04296430009216306 7 0.0428445042098431 4 0.04273155980769569 1 0.04262556903135774 2 0.042121196150496205 5 0.042069354855169216 19 0.03929607873451331 3 0.03898144954826176 21 0.03671260925985865 23 0.028157099716214797 12 0.024510309424528084 15 0.0147766682918088 24 0.014181012996908455 13 0.012829617591104103 20 0.009678646275258327 14 0.009128370131752234 __DUMMY__ 0.0019883122412924434 false 1.0
1057 21 0.07461408825637421 19 0.07038321572930703 18 0.06345325732998103 22 0.06265943797482086 12 0.060583900285288574 20 0.058560871070557026 11 0.05599694097621573 24 0.05384435760084476 23 0.047660875352261045 10 0.0434078728738037 13 0.041776975663836355 17 0.041485379321130104 14 0.04139913456629928 16 0.03941972008061481 9 0.03274678129201297 0 0.030969052614489675 15 0.023444563880350256 4 0.02128423592708316 5 0.02081261947999594 __DUMMY__ 0.01787610646827709 6 0.01782795693190113 3 0.016985114540706194 7 0.01592197065630259 8 0.015863995168942276 1 0.01568211207618145 2 0.015339463882422983 false 0.0
875 9 0.057703441084309144 22 0.05353196462775701 4 0.05034411096585175 5 0.04985892979858252 6 0.04950166693832225 7 0.04906766340340522 8 0.04905248049716729 1 0.04899252387820613 3 0.04838063346431533 2 0.04836356781653011 18 0.04597742378498706 0 0.04587263838485501 17 0.04575287572820506 23 0.04091450453361767 10 0.040503191754816335 21 0.0385412581971941 11 0.03481853328954116 19 0.03358169368100149 24 0.031233976719324888 16 0.02567394378481791 15 0.022655694062282444 20 0.021588445722096464 14 0.02124127682102664 12 0.02084620152453599 13 0.014238775515354319 __DUMMY__ 0.01176258402189675 false 0.0
633 21 0.103465 22 0.092091 11 0.086874 19 0.076338 18 0.068009 12 0.067139 10 0.053058 24 0.052143 17 0.045952 20 0.044587 9 0.044385 0 0.04404 14 0.038806 23 0.03604 13 0.035982 16 0.033948 4 0.015229 5 0.014408 6 0.009869 3 0.009551 7 0.007487 8 0.007146 1 0.006923 2 0.00653 21 0.103465 22 0.092091 11 0.086874 19 0.076338 18 0.068009 12 0.067139 10 0.053058 24 0.052143 17 0.045952 20 0.044587 9 0.044385 0 0.04404 14 0.038806 23 0.03604 13 0.035982 16 0.033948 4 0.015229 5 0.014408 6 0.009869 3 0.009551 7 0.007487 8 0.007146 1 0.006923 2 0.00653 21 0.09212693663331298 22 0.08250669681090995 11 0.0766031638658677 19 0.0702871638631264 18 0.06480244964793272 12 0.06311000412549278 24 0.050359861801833786 10 0.04997002210993663 20 0.04476680206088404 17 0.04376378879920535 9 0.042596359091222 0 0.040686414062508704 14 0.039380600211775134 23 0.03916661411671504 13 0.03766732561395839 16 0.03253555029764143 4 0.019603270798730827 5 0.018951626229899203 6 0.01502431939480422 3 0.014218953930871955 7 0.012679117245488349 8 0.012456697025705317 1 0.012253882639619233 2 0.011841971376148794 15 0.00735486172578298 __DUMMY__ 0.005285546520626141 false 1.0
1056 21 0.07351714347080476 19 0.06996218071497769 22 0.0634525411233377 18 0.06310671470314101 12 0.059321470358963284 11 0.05722291407328033 20 0.055713783622192294 24 0.05148104966440664 23 0.04646926579594778 10 0.04398994450818492 17 0.04379058099444954 16 0.04103346488179065 13 0.03994329128357129 14 0.03899209319930692 9 0.03409541420128014 0 0.034029314153472046 15 0.021957437579453298 4 0.021715226448294985 5 0.02125095136366565 6 0.01855780546875575 __DUMMY__ 0.017693524641987212 3 0.017328899024208883 7 0.016564782589179445 8 0.016508532484113287 1 0.0163272113831877 2 0.0159744622680467 false 0.0
876 21 0.06638892110091096 22 0.05997343203906191 12 0.05753277193535952 18 0.05733963239801663 11 0.057216767363084224 10 0.05101444968799068 13 0.050815552561114044 19 0.04710788080082709 14 0.04519135094388221 9 0.04341007809321729 23 0.04078257066572053 0 0.03961556900471905 17 0.03742565082663588 24 0.03569374048116131 20 0.034822973504857246 4 0.030940478763006988 5 0.030536299653416088 6 0.028988785174236843 7 0.026061232402988764 8 0.026045572374592922 1 0.025953415930621927 2 0.02559499923710655 3 0.02543749290303445 16 0.022383769833623682 15 0.021261950356782005 __DUMMY__ 0.012464661964031107 false 0.0
634 21 0.104412 19 0.087211 22 0.082715 11 0.079754 12 0.07845 18 0.074275 20 0.062177 24 0.056525 10 0.053073 13 0.047342 17 0.045217 14 0.042533 23 0.041801 16 0.041107 0 0.038174 9 0.035071 4 0.008626 5 0.008155 15 0.004552 6 0.003766 3 0.002656 7 0.00122 8 6.35E-4 1 5.51E-4 21 0.104412 19 0.087211 22 0.082715 11 0.079754 12 0.07845 18 0.074275 20 0.062177 24 0.056525 10 0.053073 13 0.047342 17 0.045217 14 0.042533 23 0.041801 16 0.041107 0 0.038174 9 0.035071 4 0.008626 5 0.008155 15 0.004552 6 0.003766 3 0.002656 7 0.00122 8 6.35E-4 1 5.51E-4 21 0.0926047953726871 19 0.07660220998877605 22 0.07523244462209605 12 0.07211249078182308 11 0.07163706665806052 18 0.06824356938566876 20 0.05645217190261342 24 0.05337980082366394 10 0.04945052529562196 13 0.0473026995545188 23 0.04339978863393501 14 0.04293017995374595 17 0.04255849547508302 16 0.037039080621175835 0 0.03615637516065286 9 0.035446284149602096 4 0.015252024902472428 5 0.014773570422154299 6 0.011079482522617947 15 0.010900934691112564 3 0.0095509616540427 7 0.008479766256577842 8 0.008153800377563102 1 0.008024274657068661 2 0.0075695960298207176 __DUMMY__ 0.0056676101068453355 false 1.0
635 22 0.099468 21 0.094181 24 0.069662 9 0.061525 11 0.059701 19 0.050333 18 0.045363 14 0.043494 4 0.040453 23 0.040066 5 0.039376 3 0.038697 8 0.032506 7 0.032061 1 0.031763 6 0.031494 2 0.031398 17 0.027962 12 0.027866 20 0.027636 10 0.027596 0 0.023725 15 0.015516 13 0.008159 22 0.099468 21 0.094181 24 0.069662 9 0.061525 11 0.059701 19 0.050333 18 0.045363 14 0.043494 4 0.040453 23 0.040066 5 0.039376 3 0.038697 8 0.032506 7 0.032061 1 0.031763 6 0.031494 2 0.031398 17 0.027962 12 0.027866 20 0.027636 10 0.027596 0 0.023725 15 0.015516 13 0.008159 21 0.08357380603182114 22 0.07991870253708169 11 0.058889290774812676 24 0.05691887292200858 19 0.05406124700744259 18 0.05292516477095882 9 0.04872768983526306 12 0.04652074732236679 14 0.046337965088656695 23 0.042145600041622815 10 0.03757328220008619 20 0.03727152470507153 17 0.033080980719831454 4 0.032464069768263326 5 0.03170067115197239 13 0.031588016756186325 0 0.029006582648627738 3 0.028712841796499022 6 0.026775518273161214 8 0.025757132658366162 7 0.025542190461525307 1 0.02530027622984767 2 0.024944836234100275 15 0.020252904233424865 16 0.014976767323736904 __DUMMY__ 0.005033318507264692 false 1.0
877 22 0.0636238659776724 9 0.05900091427481456 18 0.05892775756294835 0 0.05509347569645429 10 0.05475463430299424 17 0.05287056508664108 11 0.050384326148262 21 0.04760121011835639 19 0.04465868985456146 4 0.03895403385384685 5 0.038403756925257396 6 0.03785267846770224 8 0.03677686417792068 7 0.03672635700764055 1 0.03654262944775148 2 0.03600919879916932 3 0.03600581764764687 23 0.03175594135123528 16 0.03126250209981318 14 0.026761942844469967 12 0.026330823935081432 24 0.02535351244650796 20 0.02276850525149677 15 0.02185850169694946 13 0.0185394832497701 __DUMMY__ 0.011182011775035547 false 0.0
636 17 0.090148 18 0.084545 19 0.080401 16 0.078137 11 0.075528 0 0.075071 22 0.06996 21 0.056967 10 0.053546 12 0.051961 20 0.04878 9 0.038675 23 0.034422 24 0.029606 6 0.018227 13 0.016288 4 0.015968 5 0.014628 7 0.013389 8 0.01332 1 0.012568 2 0.01114 15 0.01003 3 0.006695 17 0.090148 18 0.084545 19 0.080401 16 0.078137 11 0.075528 0 0.075071 22 0.06996 21 0.056967 10 0.053546 12 0.051961 20 0.04878 9 0.038675 23 0.034422 24 0.029606 6 0.018227 13 0.016288 4 0.015968 5 0.014628 7 0.013389 8 0.01332 1 0.012568 2 0.01114 15 0.01003 3 0.006695 18 0.07128253430810907 22 0.06773047816994054 19 0.06737025209373734 17 0.06711925768035039 11 0.06504297474790574 21 0.059801869422755304 0 0.057864448879235815 16 0.05462399219742056 10 0.05030541039132366 12 0.04686653146776447 20 0.04367286094616442 9 0.04301252943059247 23 0.037523023762297415 24 0.03592757398036871 4 0.02451709981283085 6 0.024228598133230982 5 0.023640072743265853 13 0.02229658947722677 7 0.02120235790964436 8 0.021155327647067113 1 0.0207078299368814 2 0.019811936160836634 3 0.018286976766750018 14 0.017565290914727333 15 0.01632375614364928 __DUMMY__ 0.0021204268759236027 false 1.0
878 9 0.05917241276097736 22 0.05512636578934139 4 0.05116077760259627 5 0.05065398696685302 6 0.05029261210628405 7 0.04996455648333916 8 0.04995323898359973 1 0.04987005565089926 3 0.04933142586188321 2 0.049234987121933915 0 0.047423804488357355 17 0.04707775539773451 18 0.04532698154048806 23 0.04032109405445587 10 0.039841698704710216 21 0.03859180659644351 11 0.0355488596198896 19 0.033681753360005486 24 0.031161202661529552 16 0.026291359484443156 15 0.0203097996703479 20 0.02004573555810641 12 0.01911875790925647 14 0.01832227158703333 __DUMMY__ 0.011249017640981115 13 0.010927682398510028 false 0.0
879 17 0.058528934591825114 0 0.05614992027763092 9 0.05568078028361608 22 0.05418994305977188 18 0.047452972864940185 6 0.04686835275842661 4 0.04610963649631447 8 0.0458115925228003 7 0.04576662612140592 1 0.04567372863485384 5 0.0456138173264758 2 0.0450671355619985 3 0.04347047153957704 16 0.041665892943332616 11 0.040049456241097244 10 0.040014247624458404 19 0.039229384074391284 23 0.03763113563274926 21 0.03643101265904854 24 0.02717150176885998 12 0.02359259758976039 15 0.02081060968768618 20 0.020610090547325446 14 0.013318259832680684 13 0.011972388741165208 __DUMMY__ 0.011119510617807981 false 0.0
637 21 0.103572 22 0.09346 11 0.087685 19 0.077196 18 0.068431 12 0.067583 10 0.052725 24 0.051339 17 0.04634 9 0.044364 20 0.044264 0 0.043909 14 0.039077 13 0.036379 23 0.035693 16 0.033962 4 0.01495 5 0.014626 6 0.009414 3 0.00911 7 0.006804 1 0.006522 8 0.006502 2 0.006094 21 0.103572 22 0.09346 11 0.087685 19 0.077196 18 0.068431 12 0.067583 10 0.052725 24 0.051339 17 0.04634 9 0.044364 20 0.044264 0 0.043909 14 0.039077 13 0.036379 23 0.035693 16 0.033962 4 0.01495 5 0.014626 6 0.009414 3 0.00911 7 0.006804 1 0.006522 8 0.006502 2 0.006094 21 0.09220740595569517 22 0.0831588219535285 11 0.07696483110020316 19 0.07065781175898146 18 0.06496661784312611 12 0.0633060589239627 24 0.05001960309554948 10 0.04979363258663376 20 0.044602403674965194 17 0.04389198327315182 9 0.04259926933091339 0 0.04058240007006107 14 0.039547848063716695 23 0.039012294299500185 13 0.0378584787606194 16 0.03247852758809088 4 0.019491198192364192 5 0.019069394539951802 6 0.014822668612335782 3 0.01403615404996573 7 0.012375070721579064 8 0.012171242074491785 1 0.012080641308828627 2 0.011653334826968204 15 0.007363805215492496 __DUMMY__ 0.005288502179323076 false 1.0
638 14 0.108861 13 0.099643 21 0.090716 12 0.079373 11 0.062865 18 0.06254 22 0.061519 15 0.060566 10 0.060561 20 0.049727 19 0.048283 24 0.046353 23 0.037453 9 0.031832 4 0.015392 5 0.015068 0 0.012485 6 0.010179 17 0.009631 3 0.009235 8 0.00703 7 0.007027 1 0.006961 2 0.006702 14 0.108861 13 0.099643 21 0.090716 12 0.079373 11 0.062865 18 0.06254 22 0.061519 15 0.060566 10 0.060561 20 0.049727 19 0.048283 24 0.046353 23 0.037453 9 0.031832 4 0.015392 5 0.015068 0 0.012485 6 0.010179 17 0.009631 3 0.009235 8 0.00703 7 0.007027 1 0.006961 2 0.006702 21 0.08257488056286358 14 0.07996434709841556 13 0.07861158577631769 12 0.07346905574322403 18 0.06214571506670165 22 0.06093000496248738 11 0.06076661930198613 10 0.05441262650194621 19 0.05366100865426703 20 0.04916112273929907 24 0.045475966348059844 15 0.043121522991295486 23 0.04094089556884042 9 0.033246216359916245 17 0.02370092311523798 0 0.02300588034527934 4 0.0191446931576765 5 0.01875457083954415 6 0.015296766093232857 16 0.015011849275336872 3 0.013084976147843676 8 0.012125516155164714 7 0.012120044329887196 1 0.011997358520825275 2 0.011713515693951604 __DUMMY__ 0.005562338650399667 false 1.0
639 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.07746324962652432 21 0.07425132780900984 11 0.05752336350465052 9 0.054213595731277486 18 0.05416038630536406 19 0.04941296115349027 24 0.04655021737183288 10 0.04256709942710594 12 0.040373311910351206 14 0.039644229919508306 17 0.039067038021584906 0 0.038424645084508526 23 0.0379964559571196 4 0.035822969223424754 5 0.03509833745899971 3 0.03189760313793313 6 0.03142865909308346 8 0.030146909939602378 7 0.02986271290365611 1 0.02964840531744441 20 0.0294815119711759 2 0.029309675162539926 13 0.027456224168421552 15 0.017645154097381925 16 0.01685149870959906 __DUMMY__ 0.0037024569944099526 false 1.0
1077 21 0.08137732386167597 12 0.06896768458327684 19 0.06643074809826521 22 0.06548361841073165 11 0.0620777440314885 18 0.06187510216068788 20 0.053044294859694974 24 0.05123299165897231 13 0.05057901552746619 23 0.04628838206970564 10 0.044669993413842056 14 0.04430403947831497 17 0.03846413498408739 9 0.03345768927307084 16 0.03294340386070936 0 0.03217418104179225 4 0.02090784020967237 5 0.020443377054900257 6 0.01750687203192604 15 0.017232053479338583 __DUMMY__ 0.0172182826623425 3 0.015332039961914854 7 0.014713614189012169 8 0.014636146517831876 1 0.014481108922817605 2 0.014158317656461637 false 0.0
1076 21 0.08284078547685905 22 0.07389262477286034 11 0.06768681475620111 19 0.0638223810406311 18 0.06053118518089674 12 0.06048582435484912 24 0.04920932525942538 10 0.04598582560795381 20 0.04413972469106564 23 0.042020347760520584 17 0.04069109484291699 9 0.04041287848610691 14 0.040057754652560014 13 0.04000445003040773 0 0.03684439427894853 16 0.03011346624036086 4 0.02349421402589341 5 0.02298769969176003 6 0.019578820129966177 3 0.018259233992836552 7 0.017189395652931375 8 0.01707023525887391 1 0.016888422387974045 2 0.016463322933540917 __DUMMY__ 0.016336821864374653 15 0.012992956629285077 false 0.0
1075 21 0.07453312928387579 19 0.07145131414916014 18 0.06495179314647184 20 0.06438236364480147 12 0.06102328660217008 22 0.06043161855627309 24 0.05758673189291014 11 0.05258105195115283 23 0.04947852096762441 14 0.04570491920228985 13 0.04388295321277576 10 0.04300155118359552 17 0.03833031930214926 16 0.037787999556324635 9 0.03050875299270221 15 0.02814110520054927 0 0.025810670371548626 4 0.02055936568624541 5 0.020072686476098913 __DUMMY__ 0.017312961444692083 6 0.016662905070519346 3 0.01659214877154736 7 0.015011901021105011 8 0.014976769597094984 1 0.014768060674293397 2 0.01445512004202851 false 0.0
1074 21 0.07559168683808128 22 0.07105898569743724 19 0.06330569141338026 11 0.06306894320359577 18 0.06306883614157 12 0.05254504693344321 10 0.04881959937420587 24 0.047872241504063585 20 0.046082268588928964 23 0.042034336241833906 9 0.04166036010454117 17 0.04078468682848362 14 0.04076467472127938 0 0.03604391646619289 13 0.03520221483740871 16 0.030293678479336082 4 0.025064231920928083 5 0.02456980777273358 6 0.02106466423596456 3 0.020730773314554245 15 0.019541419887978397 7 0.019262782367991033 8 0.01918634150829267 1 0.01897065473833507 2 0.018600424080764334 __DUMMY__ 0.014811732798676305 false 0.0
1073 21 0.0771952583756443 12 0.06762229293460639 22 0.06257143478917558 11 0.0596822286643969 13 0.05738556061608094 18 0.05704481692302549 19 0.055019074347190125 14 0.05059432895109617 24 0.04566345769689467 23 0.04509985964662782 10 0.0442674852442113 20 0.04361623918535416 9 0.03582303318571181 17 0.034888044453858326 0 0.03216987178607772 4 0.02536871285742064 16 0.024998547876401083 5 0.024867924670100794 6 0.022625890831346442 15 0.02229275931021355 8 0.019335375880963214 7 0.01933307236421005 3 0.019171120678951006 1 0.01913555396948498 2 0.018798389949062404 __DUMMY__ 0.015429664811893918 false 0.0
1072 21 0.08224362823677578 12 0.07057612113854694 22 0.06549185971849494 19 0.06486285349673529 11 0.0627868282400777 18 0.060327771661270416 13 0.05257430007591648 20 0.05127835767750024 24 0.05091097893820947 23 0.04694392545621022 14 0.044874727620772124 10 0.04338577824459263 17 0.037742868072454694 9 0.03297817884430414 0 0.03197489317412158 16 0.03183484238680652 4 0.021366508484589666 5 0.020882696689837162 6 0.01809994068811476 __DUMMY__ 0.017404779524046312 15 0.016659467561988866 3 0.015430055376807424 7 0.015074606452179524 8 0.014984659492361973 1 0.014825591598613037 2 0.014483781148672254 false 0.0
1071 21 0.07781961714499096 19 0.06795294675760023 22 0.06548674924581398 18 0.06230864930991297 12 0.06119383340641645 11 0.05830350634913377 20 0.05526432636148114 24 0.053611874396496687 23 0.04680723867943981 10 0.043718696228133666 13 0.0424747668573792 14 0.0424025283999449 17 0.03921241187637675 9 0.03470549873285444 16 0.034544637841989335 0 0.03072260590448819 4 0.022252299854687133 5 0.021761112121469136 15 0.020605053568480736 6 0.01844127570200201 __DUMMY__ 0.01789232338523078 3 0.017713029133522986 7 0.016437776596313295 8 0.016370018125716677 1 0.016178638075230525 2 0.015818585944894305 false 0.0
1070 21 0.07452044107981683 19 0.07146504430477559 18 0.06496185396710216 20 0.06441047234909168 12 0.061010807115213714 22 0.06042069081799153 24 0.05760081432706535 11 0.05256217813145257 23 0.04948544094655794 14 0.04571000821419038 13 0.043872912724048495 10 0.043001032701533104 17 0.038330919959870285 16 0.037800044415800316 9 0.030501771596800512 15 0.028164832390231456 0 0.025797771459429596 4 0.020556948782316783 5 0.020070261905471943 __DUMMY__ 0.017296103820356096 6 0.01665946352994291 3 0.016592963025892485 7 0.01501068790084081 8 0.01497566373924167 1 0.014766865484089849 2 0.014454005310875831 false 0.0
880 9 0.05917947054812508 22 0.05512875338717246 4 0.05117055362781729 5 0.05066373677110717 6 0.05029943618447855 7 0.04997277503537719 8 0.04996135564543933 1 0.049878270113456975 3 0.04934264277594831 2 0.049243142103856774 0 0.04740862749642382 17 0.04705764779469061 18 0.045323709536345284 23 0.040326465021724184 10 0.039841888915162875 21 0.03859619916870938 11 0.035541171672163745 19 0.033672149098407406 24 0.03116880780122221 16 0.026263897437002574 15 0.020309150298485183 20 0.02004496798436009 12 0.01911091125808382 14 0.01833154854040961 __DUMMY__ 0.011236790234853437 13 0.010925931549176452 false 0.0
881 9 0.0577209302989743 22 0.05351738537865936 4 0.050378899202801086 5 0.049893776916452984 6 0.04953118940137847 7 0.049101620190051064 8 0.0490861710625338 1 0.0490266965082366 3 0.04842061818950415 2 0.04839737624899035 18 0.04596790436102 0 0.045831424993747025 17 0.04570500374233367 23 0.040934588207525525 10 0.04050205167881493 21 0.03852524576741121 11 0.03477386765069718 19 0.033547753616494876 24 0.03124879899927358 16 0.025611021188917543 15 0.022680538835140415 20 0.021590561889741563 14 0.021269266553264516 12 0.020811559966477867 13 0.014233574784386577 __DUMMY__ 0.011692174367171647 false 0.0
882 9 0.059220056322721634 22 0.05466969255388316 4 0.051668186469029126 5 0.051168786345917844 6 0.050784021178976874 7 0.05052176423286213 8 0.050506694799645466 1 0.05043584731349326 3 0.04993371655453488 2 0.049795560449716156 0 0.04696964513519571 17 0.04661185105531541 18 0.0449291541288891 23 0.040616653024494596 10 0.039508009617352596 21 0.03811836425320751 11 0.0348440801170364 19 0.033195995702022474 24 0.03138536609691718 16 0.0258357050862495 15 0.020576303245704974 20 0.020093798250979764 12 0.01867363487788596 14 0.018348971648282624 __DUMMY__ 0.010822185208739699 13 0.010765956330945783 false 0.0
640 21 0.080499 12 0.078063 23 0.07752 19 0.076038 24 0.073825 20 0.072797 18 0.052111 22 0.049949 13 0.042107 16 0.041456 17 0.034699 11 0.033859 5 0.03037 4 0.030237 6 0.026996 3 0.025718 2 0.024787 7 0.024321 1 0.024266 8 0.024049 9 0.021746 14 0.019665 10 0.018819 0 0.016103 21 0.080499 12 0.078063 23 0.07752 19 0.076038 24 0.073825 20 0.072797 18 0.052111 22 0.049949 13 0.042107 16 0.041456 17 0.034699 11 0.033859 5 0.03037 4 0.030237 6 0.026996 3 0.025718 2 0.024787 7 0.024321 1 0.024266 8 0.024049 9 0.021746 14 0.019665 10 0.018819 0 0.016103 21 0.07668682483485091 12 0.07019421243937787 19 0.06841712617758611 23 0.06435611253768729 24 0.06183903247507208 20 0.06074609346699579 22 0.055489026186756885 18 0.05451728019075032 11 0.04465556581625967 13 0.04360366349429093 16 0.03746858150494896 17 0.0370074238489221 10 0.029324793681786 14 0.029072885922895263 4 0.028988142019612473 5 0.028783303314876215 9 0.028271205683843625 6 0.026048914774148394 0 0.024455706081904224 3 0.02405092940993069 7 0.023423610839424666 2 0.023286572618750303 1 0.023248674515345385 8 0.023230404266481604 15 0.009124449788320546 __DUMMY__ 0.003709464109181698 false 1.0
883 9 0.05930818542433933 22 0.05644847141642076 18 0.04904590795043356 0 0.0484701036299291 4 0.04836015335634231 5 0.047842270033723835 17 0.047823517722068394 6 0.0473190967422781 8 0.046999285738213784 7 0.04698733906229635 1 0.04686683417213533 3 0.04653276223529345 2 0.04626532437684666 10 0.044145934468937074 21 0.039595459603745456 23 0.03828369648678615 11 0.037809173633458495 19 0.036384132842796235 24 0.029812011223569364 16 0.0271246287104721 15 0.022636801888939708 20 0.021502135764897807 14 0.021447951635950285 12 0.019195947101253847 13 0.01222085404726692 __DUMMY__ 0.011572020731605652 false 0.0
641 22 0.108526 21 0.099946 11 0.098039 19 0.092139 18 0.074088 17 0.061922 10 0.057627 0 0.055781 16 0.051985 12 0.050261 9 0.049993 24 0.049037 20 0.039348 23 0.029874 14 0.027102 4 0.011435 5 0.01129 13 0.009963 3 0.006223 6 0.005184 8 0.002807 7 0.002768 2 0.002369 1 0.002291 22 0.108526 21 0.099946 11 0.098039 19 0.092139 18 0.074088 17 0.061922 10 0.057627 0 0.055781 16 0.051985 12 0.050261 9 0.049993 24 0.049037 20 0.039348 23 0.029874 14 0.027102 4 0.011435 5 0.01129 13 0.009963 3 0.006223 6 0.005184 8 0.002807 7 0.002768 2 0.002369 1 0.002291 22 0.08999006173558181 21 0.0880127208813542 11 0.08119469225021088 19 0.07700862136642675 18 0.06741487989422111 17 0.05276930418530024 12 0.0522640781106808 10 0.05220837254871739 24 0.047818760100096155 0 0.0476006002349142 9 0.046260029666059084 16 0.04219433653926129 20 0.04103103232715928 23 0.03570311470015657 14 0.03221807341338444 13 0.022675140145070882 4 0.018760442770242802 5 0.01842178479935777 6 0.013937643014250649 3 0.013804991295068849 7 0.011706669623462687 8 0.011673930637245547 1 0.011325532777180188 2 0.011125026579846976 15 0.008065434835397992 __DUMMY__ 0.004814725569351306 false 1.0
400 20 0.103463 19 0.100029 21 0.084927 12 0.08011 18 0.07804 24 0.077732 23 0.059361 16 0.056844 22 0.053981 13 0.053144 14 0.049054 11 0.04782 17 0.039611 10 0.038715 15 0.033701 0 0.012998 9 0.012854 4 0.006233 5 0.006061 3 0.003519 6 0.001277 2 3.0E-4 8 1.52E-4 7 7.4E-5 20 0.103463 19 0.100029 21 0.084927 12 0.08011 18 0.07804 24 0.077732 23 0.059361 16 0.056844 22 0.053981 13 0.053144 14 0.049054 11 0.04782 17 0.039611 10 0.038715 15 0.033701 0 0.012998 9 0.012854 4 0.006233 5 0.006061 3 0.003519 6 0.001277 2 3.0E-4 8 1.52E-4 7 7.4E-5 19 0.08716960096218311 20 0.08507363822143808 21 0.07899324509814848 18 0.07307449241897077 12 0.07007961739768549 24 0.06715957506153114 22 0.05707797436111775 23 0.05434369082825991 11 0.05016574203276083 16 0.04887796418200945 13 0.047993668988226046 14 0.04722268400501023 10 0.042171774097710314 17 0.04008304285841734 15 0.03173026413400031 9 0.02169762389260983 0 0.020122988988936902 4 0.012893249108814363 5 0.012561016945741247 3 0.009588046054056732 6 0.008522350027123137 8 0.007139250952737069 7 0.0071219490876067845 1 0.006949724812879602 2 0.006938495444065813 __DUMMY__ 0.005248330037959249 false 1.0
642 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07703390366689371 21 0.0741170254416765 11 0.057253467719100226 18 0.05434908939306201 9 0.054241950591257575 19 0.04947384818562014 24 0.04643334961720194 10 0.04229630107030277 12 0.04052308593019961 14 0.03963823780497497 17 0.039302943117325864 23 0.0382122039770245 0 0.03802373942954655 4 0.03584492700712328 5 0.03501217542027369 3 0.03177433488197226 6 0.03149002074143943 8 0.030230263369794137 7 0.030060142870141693 1 0.02991822122965535 20 0.029669321396208682 2 0.02921435567473861 13 0.027456199010961285 15 0.017780288537546336 16 0.016948150314019098 __DUMMY__ 0.0037024536019400283 false 1.0
884 17 0.062067663294913374 0 0.05982021698424155 22 0.05633106897963676 9 0.0555909353315598 18 0.04952797191459663 16 0.04531785562341942 6 0.04450365376976282 11 0.04412838087403252 4 0.04347949273990899 8 0.043183739589559345 7 0.04310926440593697 1 0.042990421053733185 5 0.04297050796078544 2 0.04241601913185979 10 0.042044780138250304 19 0.041857798531430984 3 0.04048823262325743 21 0.03800355694082194 23 0.0353770143741689 12 0.025467522205022936 24 0.02542190483981803 20 0.02013228326878604 15 0.019756969701778825 14 0.01261455770195499 13 0.012508555670324066 __DUMMY__ 0.010889632350438938 false 0.0
401 15 0.159 14 0.158712 10 0.093107 18 0.092093 13 0.078334 20 0.072627 19 0.053604 22 0.045995 21 0.045972 24 0.038037 9 0.036204 11 0.029914 23 0.024434 12 0.019232 17 0.015114 16 0.011109 3 0.007369 4 0.006806 5 0.006483 8 0.001756 2 0.001435 7 0.001365 1 0.001249 6 5.2E-5 15 0.159 14 0.158712 10 0.093107 18 0.092093 13 0.078334 20 0.072627 19 0.053604 22 0.045995 21 0.045972 24 0.038037 9 0.036204 11 0.029914 23 0.024434 12 0.019232 17 0.015114 16 0.011109 3 0.007369 4 0.006806 5 0.006483 8 0.001756 2 0.001435 7 0.001365 1 0.001249 6 5.2E-5 14 0.10900188821001051 15 0.10354321767799089 18 0.08105826373058672 10 0.0743978724182675 20 0.06456001303860619 13 0.06401896199731467 19 0.05799185827738524 21 0.053733753917159524 22 0.05064703355972649 24 0.04064097141299516 11 0.039501211896188514 9 0.03598399241151255 12 0.035227675620930245 23 0.033226713201069846 17 0.02780474424078373 16 0.023264052060289864 0 0.0156629865025838 4 0.01408927489742994 5 0.013723048303023596 3 0.012419813141537148 6 0.009365713523449826 8 0.009340685891310284 7 0.0091324594429607 1 0.008975565659680006 2 0.008915845522842483 __DUMMY__ 0.003772383444364399 false 1.0
885 19 0.06343082375486217 21 0.06301227170668997 18 0.058999860655608805 22 0.05734936076473257 12 0.05211309515285649 20 0.051106165737767904 23 0.05012184477117187 11 0.049294234083849434 24 0.04806226085447275 17 0.04454289282655385 16 0.04113899389489531 10 0.041064960819686 9 0.03563513187938897 13 0.03551758919507774 0 0.03507385537891706 14 0.03412255356724126 4 0.02809985598288643 5 0.027643161797316382 6 0.02586719334417966 15 0.02422647598294822 3 0.024067416939760538 7 0.024045540617267925 8 0.023981717124536138 1 0.023810169047814498 2 0.02344889891771047 __DUMMY__ 0.014223675201807619 false 0.0
643 21 0.113104 22 0.085495 19 0.081072 12 0.080461 11 0.072824 24 0.070921 20 0.058833 18 0.058476 23 0.051966 13 0.045446 14 0.041897 17 0.035624 16 0.033266 9 0.031795 10 0.031218 0 0.023581 4 0.016622 5 0.016145 3 0.010511 6 0.010446 7 0.007953 1 0.007789 8 0.007599 2 0.006955 21 0.113104 22 0.085495 19 0.081072 12 0.080461 11 0.072824 24 0.070921 20 0.058833 18 0.058476 23 0.051966 13 0.045446 14 0.041897 17 0.035624 16 0.033266 9 0.031795 10 0.031218 0 0.023581 4 0.016622 5 0.016145 3 0.010511 6 0.010446 7 0.007953 1 0.007789 8 0.007599 2 0.006955 21 0.09520644966019878 22 0.0751840835281491 19 0.07261754996805589 12 0.0720637536600032 11 0.06644928499839639 24 0.06086453428080605 18 0.059752105092727596 20 0.055096387198204234 23 0.04927048347272979 13 0.04596039336666184 14 0.042516357864344406 10 0.037766533806248406 17 0.03733432908142725 9 0.033492137949974556 16 0.03291183425769253 0 0.028100863948099547 4 0.02006156170330572 5 0.019569871139665813 6 0.015305146617217406 3 0.014417644462064116 7 0.012808641570203508 8 0.012602358527656937 1 0.012592449764816176 2 0.012012577235224623 15 0.009879329099226637 __DUMMY__ 0.006163337746899486 false 1.0
1069 21 0.08280536273939398 22 0.07386979650991227 11 0.06765751842363975 19 0.0638216223369508 18 0.060540275557346895 12 0.06045619276663258 24 0.04920629194944065 10 0.04599270930194522 20 0.044156594353620134 23 0.04202412593902097 17 0.04068796225069748 9 0.04040961126895912 14 0.040062370818457205 13 0.0399899510621454 0 0.03683369212765308 16 0.03011707859861381 4 0.02349790310704603 5 0.022991472991340335 6 0.01958259683470258 3 0.01826696952491972 7 0.017195666402215717 8 0.017076726355545913 1 0.016894786854444784 2 0.016469993149257272 __DUMMY__ 0.016367566117407986 15 0.013025162658690697 false 0.0
644 19 0.095159 22 0.087969 21 0.087889 20 0.082821 24 0.082005 18 0.077552 11 0.070628 23 0.054766 10 0.046176 12 0.036517 9 0.033887 14 0.033183 16 0.031753 17 0.031441 4 0.020885 3 0.019802 15 0.019801 5 0.019711 0 0.013855 8 0.011692 7 0.011067 1 0.010845 2 0.010602 6 0.009995 19 0.095159 22 0.087969 21 0.087889 20 0.082821 24 0.082005 18 0.077552 11 0.070628 23 0.054766 10 0.046176 12 0.036517 9 0.033887 14 0.033183 16 0.031753 17 0.031441 4 0.020885 3 0.019802 15 0.019801 5 0.019711 0 0.013855 8 0.011692 7 0.011067 1 0.010845 2 0.010602 6 0.009995 21 0.08097358747410018 22 0.07922211524106829 19 0.07822484555668167 18 0.07048919260962246 11 0.06671593175994786 24 0.06347725036871164 20 0.06318337373776814 10 0.04849386195566358 23 0.0477971789479309 12 0.04439867595238478 9 0.03865774080402794 14 0.03764006469856885 17 0.03676888790249576 16 0.031014360446556366 0 0.026141839134476656 4 0.023345830522571623 5 0.022541796562137104 3 0.02058842785056229 15 0.020405933687931328 13 0.01850262890595029 6 0.016124841104644533 8 0.015951613826178695 7 0.015703820460298844 1 0.015440184026715672 2 0.01513612552961137 __DUMMY__ 0.003059890933393083 false 1.0
886 21 0.06827007263736885 12 0.06244305613070982 22 0.058806251252773174 11 0.05722391663159291 18 0.05609109566997883 13 0.05429242690126323 10 0.048670789075595425 19 0.04769171043561252 14 0.04443239354641296 23 0.04221504373529686 9 0.0412553081114546 0 0.03883033179376041 17 0.03706680289368296 24 0.03696774927781442 20 0.03623692022020421 4 0.030407786167056538 5 0.03000030140552037 6 0.02866909778784147 7 0.025435235952806425 8 0.025410215888107993 1 0.025335724213465905 2 0.024976333134776013 3 0.024498597170275582 16 0.023349821481046182 15 0.018741051682182843 __DUMMY__ 0.012681966803399648 false 0.0
402 16 0.120625 17 0.100588 19 0.094631 15 0.087454 20 0.079309 18 0.076776 24 0.056127 0 0.050911 22 0.046596 23 0.04346 10 0.033027 11 0.03281 21 0.028371 14 0.026818 12 0.022557 9 0.02062 6 0.011583 8 0.011271 7 0.01068 1 0.010426 2 0.010077 4 0.009423 5 0.008537 3 0.007325 16 0.120625 17 0.100588 19 0.094631 15 0.087454 20 0.079309 18 0.076776 24 0.056127 0 0.050911 22 0.046596 23 0.04346 10 0.033027 11 0.03281 21 0.028371 14 0.026818 12 0.022557 9 0.02062 6 0.011583 8 0.011271 7 0.01068 1 0.010426 2 0.010077 4 0.009423 5 0.008537 3 0.007325 16 0.08539504129935883 17 0.07759972941542974 19 0.07640590781830417 18 0.06939966066655871 15 0.06584760992505008 20 0.06312167716288682 22 0.049381781006097955 0 0.047083458088129665 24 0.04700363011796272 23 0.04192425737754229 10 0.04020944188583461 11 0.038629591671137775 21 0.0380023074431096 14 0.033249220256360235 12 0.031224858075554526 9 0.030153618410708044 6 0.019610196405129326 4 0.018783193170928483 8 0.01874312500687926 7 0.018407781345027685 1 0.018201938056452965 5 0.018139098000009856 2 0.017842606246954638 13 0.016469910479862827 3 0.01615346785419312 __DUMMY__ 0.003016892814536174 false 1.0
1068 21 0.08280536273939398 22 0.07386979650991227 11 0.06765751842363975 19 0.0638216223369508 18 0.060540275557346895 12 0.06045619276663258 24 0.04920629194944065 10 0.04599270930194522 20 0.044156594353620134 23 0.04202412593902097 17 0.04068796225069748 9 0.04040961126895912 14 0.040062370818457205 13 0.0399899510621454 0 0.03683369212765308 16 0.03011707859861381 4 0.02349790310704603 5 0.022991472991340335 6 0.01958259683470258 3 0.01826696952491972 7 0.017195666402215717 8 0.017076726355545913 1 0.016894786854444784 2 0.016469993149257272 __DUMMY__ 0.016367566117407986 15 0.013025162658690697 false 0.0
645 20 0.125979 19 0.123729 18 0.110397 24 0.086118 21 0.07569 23 0.069698 22 0.064752 16 0.062105 17 0.05546 12 0.047507 10 0.03936 15 0.031511 9 0.025125 11 0.022789 14 0.020907 4 0.008154 5 0.007613 0 0.006096 3 0.005265 13 0.005057 7 0.002217 8 0.001731 1 0.001501 6 0.001241 20 0.125979 19 0.123729 18 0.110397 24 0.086118 21 0.07569 23 0.069698 22 0.064752 16 0.062105 17 0.05546 12 0.047507 10 0.03936 15 0.031511 9 0.025125 11 0.022789 14 0.020907 4 0.008154 5 0.007613 0 0.006096 3 0.005265 13 0.005057 7 0.002217 8 0.001731 1 0.001501 6 0.001241 19 0.09755033754149499 20 0.09646099519372588 18 0.08924509835533927 21 0.0718216658389012 24 0.07150685068553383 22 0.06176971681028789 23 0.05878567851175839 16 0.05030186195470379 12 0.04986704681758938 17 0.047133117269854065 10 0.043376872729053155 11 0.03595537791000985 14 0.03499292963682176 15 0.03430349301136726 9 0.02891708300540146 13 0.02214640345785498 0 0.015844214594352486 4 0.014973160105185446 5 0.014455086250926862 3 0.012182419217229908 7 0.009509447176794451 6 0.00945008490924565 8 0.009283176288703059 1 0.009026758667437601 2 0.008169732629250017 __DUMMY__ 0.0029713914311774083 false 1.0
1067 21 0.0745204410798168 19 0.07146504430477559 18 0.06496185396710216 20 0.06441047234909168 12 0.061010807115213714 22 0.06042069081799153 24 0.05760081432706534 11 0.05256217813145257 23 0.049485440946557956 14 0.04571000821419038 13 0.043872912724048495 10 0.043001032701533104 17 0.038330919959870285 16 0.037800044415800316 9 0.030501771596800512 15 0.028164832390231456 0 0.025797771459429596 4 0.020556948782316783 5 0.020070261905471943 __DUMMY__ 0.017296103820356096 6 0.01665946352994291 3 0.01659296302589248 7 0.015010687900840813 8 0.01497566373924167 1 0.01476686548408985 2 0.014454005310875831 false 0.0
403 14 0.146968 15 0.121314 13 0.118095 10 0.093656 18 0.085005 12 0.062181 20 0.057331 21 0.056502 11 0.047596 19 0.043018 22 0.03833 9 0.029676 23 0.025562 24 0.02059 0 0.01585 17 0.014781 16 0.00761 4 0.005847 5 0.005693 6 0.003186 3 6.03E-4 8 3.47E-4 7 1.46E-4 1 1.14E-4 14 0.146968 15 0.121314 13 0.118095 10 0.093656 18 0.085005 12 0.062181 20 0.057331 21 0.056502 11 0.047596 19 0.043018 22 0.03833 9 0.029676 23 0.025562 24 0.02059 0 0.01585 17 0.014781 16 0.00761 4 0.005847 5 0.005693 6 0.003186 3 6.03E-4 8 3.47E-4 7 1.46E-4 1 1.14E-4 14 0.10664618647593585 13 0.09048690346014363 15 0.08453928167008262 18 0.07594187576792247 10 0.07510665806458272 12 0.06103571979062973 21 0.060537939142143615 20 0.05397162806215339 11 0.04985922187958838 19 0.04946423190246554 22 0.04617155725648443 23 0.03314045413377378 9 0.03234393007735571 24 0.02983956106089487 17 0.025830005224872468 0 0.023737711669922588 16 0.018635090634585703 4 0.013585121121033607 5 0.013315947305343119 6 0.011181585833410387 8 0.008397580038560533 3 0.008355326652711433 7 0.008263393162553766 1 0.008176643018286269 2 0.007987636814047848 __DUMMY__ 0.0034488097805155144 false 1.0
887 21 0.08199219461493591 12 0.06973189607504834 22 0.06571109507081709 19 0.06474048625452658 11 0.06266222367524081 18 0.060318873788605135 13 0.0518730937478769 20 0.05103006173759486 24 0.05095987591387948 23 0.04679892399682678 14 0.04487754335779204 10 0.043370855138200194 17 0.03784567574839506 9 0.033322410554299624 0 0.032022586434277786 16 0.031707692054624675 4 0.021566477162874204 5 0.021077319558817177 6 0.01826355579019602 __DUMMY__ 0.01709914838993931 15 0.017033592942648678 3 0.015713148520259006 7 0.015304492158871688 8 0.015215306356412156 1 0.0150549752483572 2 0.014706495708683223 false 0.0
646 21 0.097705 19 0.091518 12 0.089206 20 0.08595 24 0.073093 18 0.070353 22 0.062846 11 0.061473 13 0.060844 23 0.059664 14 0.048996 16 0.046456 17 0.037402 10 0.03612 15 0.019839 0 0.017876 9 0.015361 4 0.008661 5 0.007444 6 0.004065 3 0.002134 7 0.001276 8 0.001015 1 7.02E-4 21 0.097705 19 0.091518 12 0.089206 20 0.08595 24 0.073093 18 0.070353 22 0.062846 11 0.061473 13 0.060844 23 0.059664 14 0.048996 16 0.046456 17 0.037402 10 0.03612 15 0.019839 0 0.017876 9 0.015361 4 0.008661 5 0.007444 6 0.004065 3 0.002134 7 0.001276 8 0.001015 1 7.02E-4 21 0.0886153471990485 19 0.07892020192591775 12 0.07801005308103058 20 0.06992846249807451 18 0.06581486090420986 22 0.06369082833035379 24 0.0628353931815168 11 0.06062800956676022 13 0.05487083018335815 23 0.05385856156225033 14 0.04661166233755661 16 0.040092618960355444 10 0.03962972079443332 17 0.03796589982591811 0 0.024457940115599437 9 0.024318456450822038 15 0.019768317244628332 4 0.015440633323943964 5 0.0146107801323812 6 0.011441971957301513 3 0.009529812127594446 7 0.008748166872259426 8 0.008580813948756693 1 0.008341644006706726 2 0.007830968481731336 __DUMMY__ 0.005458044987490813 false 1.0
404 15 0.153741 14 0.142698 10 0.083652 18 0.083583 13 0.068975 20 0.067842 19 0.043872 9 0.038323 22 0.036923 24 0.035985 21 0.032526 23 0.032179 3 0.0194 4 0.018381 5 0.018268 11 0.017962 17 0.014726 8 0.014659 7 0.014547 2 0.014205 1 0.01416 6 0.012963 12 0.011494 16 0.008935 15 0.153741 14 0.142698 10 0.083652 18 0.083583 13 0.068975 20 0.067842 19 0.043872 9 0.038323 22 0.036923 24 0.035985 21 0.032526 23 0.032179 3 0.0194 4 0.018381 5 0.018268 11 0.017962 17 0.014726 8 0.014659 7 0.014547 2 0.014205 1 0.01416 6 0.012963 12 0.011494 16 0.008935 15 0.10564794088798059 14 0.10503685028980338 18 0.07803950564867183 10 0.07298547581430431 13 0.06110584854448959 20 0.06063341573592179 19 0.051176314855555 22 0.04503096243620633 21 0.04456947204948862 9 0.038151039483795786 24 0.0366030284992807 23 0.03527546601993153 11 0.03283421309490911 12 0.029262292968502253 17 0.02731732005888125 16 0.02094291960042112 4 0.019751875581512122 5 0.01950326255495449 3 0.018398385785025693 0 0.016342938445554983 8 0.015850039536304178 6 0.015831930451086874 7 0.015761211363749094 1 0.015491530958965414 2 0.015374586927444752 __DUMMY__ 0.0030821724072591524 false 1.0
888 21 0.0704383304266029 12 0.06524615368464426 22 0.0590793825163118 11 0.058169602960650754 18 0.056537223501864485 13 0.05635935117043087 19 0.049261701756564344 10 0.04833478982201893 14 0.045378196779945805 23 0.04281262070134062 9 0.03982846844053716 24 0.038256149885125566 20 0.03802603096157226 0 0.03788758988143035 17 0.036568987364968115 4 0.029098655298908486 5 0.028691495027267422 6 0.027256884400130608 7 0.023895768830648697 8 0.023866751874512947 1 0.023790090402767517 16 0.023765725631080137 2 0.023445391178669468 3 0.023000350722751122 15 0.018222431206188577 __DUMMY__ 0.012781875573066512 false 0.0
405 18 0.094498 10 0.08997 19 0.077691 11 0.076421 21 0.075897 22 0.072034 12 0.059824 14 0.05944 0 0.056238 13 0.056212 17 0.053175 20 0.050474 9 0.046696 16 0.039529 15 0.030159 23 0.022844 24 0.022275 4 0.005781 5 0.00568 6 0.003324 3 5.32E-4 7 5.01E-4 8 4.35E-4 1 3.7E-4 18 0.094498 10 0.08997 19 0.077691 11 0.076421 21 0.075897 22 0.072034 12 0.059824 14 0.05944 0 0.056238 13 0.056212 17 0.053175 20 0.050474 9 0.046696 16 0.039529 15 0.030159 23 0.022844 24 0.022275 4 0.005781 5 0.00568 6 0.003324 3 5.32E-4 7 5.01E-4 8 4.35E-4 1 3.7E-4 18 0.08569909177146387 10 0.0806245588272285 21 0.07147257800818244 11 0.07050253719597342 19 0.06979053595127495 22 0.06938473685851926 14 0.056089509458545045 12 0.05551479956976191 0 0.051865065136084645 13 0.051727752872874934 17 0.04950438495924014 9 0.046893762698291 20 0.04641877267132864 16 0.03510124837677618 15 0.030221110477762155 23 0.02685238199004604 24 0.025687785880613035 4 0.012825662143387869 5 0.012564839178375439 6 0.010310767422662527 3 0.00784852091679577 7 0.007730809531606966 8 0.00768246785824508 1 0.0075825069651512325 2 0.007234502575856249 __DUMMY__ 0.002869310703952561 false 1.0
889 22 0.056537624069262805 21 0.05538881729683119 18 0.0493719354933276 9 0.048930792595443785 11 0.046241085210755165 12 0.043666606589379486 23 0.04322051809208475 10 0.04248512392678254 4 0.04128459345568063 5 0.040845527041741284 0 0.040706029553277255 6 0.03981894397692248 19 0.03966747651599986 17 0.039543302313602986 7 0.03786708761214078 8 0.03783644348411157 1 0.03778594855141688 2 0.037296600137001035 3 0.03714289402326363 24 0.03585321264981062 13 0.03511241523033322 14 0.032171891137291735 20 0.028656593175751713 16 0.02235577152988377 15 0.018165946444590218 __DUMMY__ 0.012046819893312941 false 0.0
647 21 0.103391 22 0.092941 11 0.087552 19 0.077041 18 0.067885 12 0.067699 10 0.052182 24 0.051505 17 0.046247 9 0.044354 20 0.044103 0 0.043978 14 0.039093 13 0.03651 23 0.035047 16 0.034041 4 0.015153 5 0.014603 6 0.009728 3 0.00925 7 0.007439 1 0.007101 8 0.006932 2 0.006227 21 0.103391 22 0.092941 11 0.087552 19 0.077041 18 0.067885 12 0.067699 10 0.052182 24 0.051505 17 0.046247 9 0.044354 20 0.044103 0 0.043978 14 0.039093 13 0.03651 23 0.035047 16 0.034041 4 0.015153 5 0.014603 6 0.009728 3 0.00925 7 0.007439 1 0.007101 8 0.006932 2 0.006227 21 0.09213795596282033 22 0.08292560480736469 11 0.07693200604150241 19 0.07052538638134044 18 0.06470169478301419 12 0.06338626012939207 24 0.05003787824468345 10 0.049579008395687595 20 0.04445657122889744 17 0.043833134453125644 9 0.04261707190559057 0 0.040635743004004084 14 0.03964136391803752 23 0.03866134435338219 13 0.03800925400633098 16 0.03246804875422983 4 0.01957685099678038 5 0.019051378438899494 6 0.01496396362455514 3 0.01408682903787531 7 0.012660384337633696 8 0.01236141845113084 1 0.012340355661294874 2 0.011706251069034865 15 0.007400460922333272 __DUMMY__ 0.005303781091058717 false 1.0
406 14 0.142532 15 0.124282 18 0.089191 10 0.087559 13 0.074871 20 0.071188 21 0.060458 19 0.05684 22 0.054576 24 0.045624 11 0.039193 9 0.036818 23 0.031052 12 0.031031 4 0.009831 5 0.009711 17 0.009224 3 0.00919 16 0.003744 7 0.002942 8 0.002793 1 0.00264 2 0.002629 6 0.002081 14 0.142532 15 0.124282 18 0.089191 10 0.087559 13 0.074871 20 0.071188 21 0.060458 19 0.05684 22 0.054576 24 0.045624 11 0.039193 9 0.036818 23 0.031052 12 0.031031 4 0.009831 5 0.009711 17 0.009224 3 0.00919 16 0.003744 7 0.002942 8 0.002793 1 0.00264 2 0.002629 6 0.002081 14 0.10077262992712445 15 0.08606165160993942 18 0.0804018381239323 10 0.07232387467103768 20 0.0644531212539365 13 0.0617958389524531 21 0.06113891740585628 19 0.06039914282306393 22 0.0552292964959821 24 0.044461350564974876 11 0.04430307926698852 12 0.040847441551237186 9 0.036424519429198485 23 0.03638216246375176 17 0.0249880248735943 16 0.019695731714365037 0 0.015704475768583477 4 0.015259945019371439 5 0.0149833051422208 3 0.013064233318999216 6 0.009945958008293126 7 0.009541675413005182 8 0.009492189317564943 1 0.009295694802710303 2 0.009147416446841744 __DUMMY__ 0.0038864856349736516 false 1.0
648 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.09338 21 0.07725 9 0.069638 11 0.057018 24 0.051504 18 0.05002 19 0.045707 4 0.044757 5 0.043534 3 0.042282 17 0.040963 0 0.040247 8 0.038784 7 0.038482 1 0.038382 6 0.038304 2 0.037265 10 0.036433 23 0.033927 14 0.029191 12 0.018652 20 0.017409 15 0.009756 16 0.007118 22 0.07703390366689371 21 0.0741170254416765 11 0.05725346771910025 18 0.05434908939306202 9 0.054241950591257575 19 0.049473848185620145 24 0.04643334961720194 10 0.042296301070302765 12 0.04052308593019961 14 0.03963823780497497 17 0.039302943117325864 23 0.038212203977024496 0 0.03802373942954656 4 0.03584492700712328 5 0.0350121754202737 3 0.03177433488197227 6 0.03149002074143943 8 0.030230263369794137 7 0.030060142870141696 1 0.029918221229655352 20 0.029669321396208686 2 0.029214355674738613 13 0.027456199010961288 15 0.017780288537546336 16 0.016948150314019098 __DUMMY__ 0.003702453601940028 false 1.0
649 21 0.110716 22 0.08719 12 0.08205 11 0.081231 19 0.079652 24 0.063058 18 0.062115 20 0.053486 13 0.048656 23 0.046696 14 0.043012 17 0.039672 10 0.038812 16 0.033345 9 0.033141 0 0.031443 4 0.014641 5 0.013681 6 0.00895 3 0.00754 7 0.00552 8 0.005288 1 0.005255 2 0.004849 21 0.110716 22 0.08719 12 0.08205 11 0.081231 19 0.079652 24 0.063058 18 0.062115 20 0.053486 13 0.048656 23 0.046696 14 0.043012 17 0.039672 10 0.038812 16 0.033345 9 0.033141 0 0.031443 4 0.014641 5 0.013681 6 0.00895 3 0.00754 7 0.00552 8 0.005288 1 0.005255 2 0.004849 21 0.09540853632146334 22 0.07727702265942654 12 0.07337673098027261 11 0.07194517836127709 19 0.07178123833411951 18 0.06137334219046828 24 0.05663642027755238 20 0.05129068287336161 13 0.04770191683815361 23 0.04624328151207476 14 0.04299228860358689 10 0.04168382251497948 17 0.0393373775141801 9 0.03469207185813858 0 0.03254064125960698 16 0.032360189712102826 4 0.018964777718271042 5 0.01824568065023221 6 0.014404383193021729 3 0.012697892403609464 7 0.011380462634273397 8 0.011217851659974307 1 0.011107279242975155 2 0.010712831662351228 15 0.008624598113439422 __DUMMY__ 0.00600350091108761 false 1.0
407 17 0.08601 16 0.082722 0 0.070622 19 0.057397 18 0.051582 22 0.051442 9 0.046114 11 0.044729 6 0.0388 8 0.037187 7 0.036917 1 0.036767 2 0.036114 4 0.034889 5 0.034365 23 0.034277 10 0.034038 3 0.03163 21 0.031318 20 0.031142 12 0.030662 24 0.027701 15 0.025993 13 0.00758 17 0.08601 16 0.082722 0 0.070622 19 0.057397 18 0.051582 22 0.051442 9 0.046114 11 0.044729 6 0.0388 8 0.037187 7 0.036917 1 0.036767 2 0.036114 4 0.034889 5 0.034365 23 0.034277 10 0.034038 3 0.03163 21 0.031318 20 0.031142 12 0.030662 24 0.027701 15 0.025993 13 0.00758 17 0.0771729888320453 16 0.06996106297333016 0 0.06613109713121898 19 0.053124996657169556 22 0.052860757923870114 18 0.05203060137370319 9 0.04796627290802189 11 0.04528945247473266 6 0.03947370222054643 8 0.03779176608570934 10 0.03774406255585939 7 0.03760432604956336 1 0.03748240502373583 2 0.03689549515642621 4 0.03661886839112379 5 0.03612441484921374 23 0.03532700377810438 21 0.03463167037527955 3 0.03326216399733803 12 0.030773702682271146 20 0.028836771898060217 24 0.02724100676088248 15 0.025273789332900507 13 0.01171564038928825 14 0.006502482403565739 __DUMMY__ 0.0021634977760398005 false 1.0
408 20 0.09806 14 0.081142 19 0.077999 18 0.076598 13 0.074663 12 0.071197 21 0.070225 24 0.068337 15 0.063258 23 0.059265 10 0.049288 22 0.040137 11 0.033407 16 0.031884 17 0.019984 9 0.014766 4 0.012991 5 0.012389 3 0.009909 6 0.007787 8 0.006893 1 0.006724 7 0.006707 2 0.006389 20 0.09806 14 0.081142 19 0.077999 18 0.076598 13 0.074663 12 0.071197 21 0.070225 24 0.068337 15 0.063258 23 0.059265 10 0.049288 22 0.040137 11 0.033407 16 0.031884 17 0.019984 9 0.014766 4 0.012991 5 0.012389 3 0.009909 6 0.007787 8 0.006893 1 0.006724 7 0.006707 2 0.006389 20 0.0807725124898477 19 0.07306399857426188 18 0.07269207563444964 21 0.06859930279465104 14 0.06789301333146376 12 0.0632134227331804 13 0.06073137755235786 24 0.06004060515377891 23 0.05283506856588218 15 0.05256275376682847 10 0.049589808178360895 22 0.04846221170116545 11 0.04134539638021907 16 0.034626943124520165 17 0.02947221937720767 9 0.023488330011697017 4 0.016740770962131314 5 0.016227210285435466 3 0.013389569334276272 0 0.013379536260597187 6 0.012420962245713166 8 0.01121833009357389 7 0.01112767380047164 1 0.011015509189383873 2 0.010716567070060391 __DUMMY__ 0.004374831388484783 false 1.0
409 14 0.123212 15 0.106228 13 0.099407 18 0.084173 20 0.083039 10 0.073256 12 0.065516 19 0.062424 21 0.061262 24 0.04562 23 0.042331 11 0.037699 22 0.035889 16 0.022708 9 0.01888 17 0.017796 4 0.005935 5 0.005813 0 0.004071 3 0.002107 6 0.002022 1 2.92E-4 8 2.16E-4 7 1.06E-4 14 0.123212 15 0.106228 13 0.099407 18 0.084173 20 0.083039 10 0.073256 12 0.065516 19 0.062424 21 0.061262 24 0.04562 23 0.042331 11 0.037699 22 0.035889 16 0.022708 9 0.01888 17 0.017796 4 0.005935 5 0.005813 0 0.004071 3 0.002107 6 0.002022 1 2.92E-4 8 2.16E-4 7 1.06E-4 14 0.0938786853526623 13 0.07911096971096829 15 0.0777283147159223 18 0.07649346167677407 20 0.07008075864335349 10 0.06433505603486239 21 0.06262192734352462 12 0.06185966378912109 19 0.06166493400581034 22 0.04459842066220606 24 0.04443541493532619 11 0.04385868662710554 23 0.04250141486089797 16 0.02811849119782239 17 0.027697919764698074 9 0.02589247171220157 0 0.016660543161230786 4 0.012979502855171061 5 0.012713515096735547 6 0.009773083570454867 3 0.00878063938565227 8 0.0077431241524403595 7 0.007667533975781409 1 0.007661433406612721 2 0.007390526488881699 __DUMMY__ 0.003753506873782535 false 1.0
1080 22 0.05624006892436458 18 0.054445932936506555 21 0.0518407266332424 19 0.051703758503318986 24 0.04693878273770156 23 0.046369784733915405 9 0.045801457456370466 20 0.04382898785613372 17 0.0409485231428766 10 0.04043527623946706 11 0.03923002092634136 4 0.03831588880955349 5 0.0378001638076137 3 0.03658649532347517 6 0.03543029808916297 8 0.03529295921121648 7 0.03523803034469432 1 0.03504483798773964 2 0.034642827893407085 0 0.033541548650993916 14 0.032536370642679474 12 0.03201848002784266 16 0.030684093925522654 15 0.0299245362328331 13 0.021275834668187815 __DUMMY__ 0.013884314294839117 false 0.0
1088 19 0.0652933209471541 20 0.06518007740330437 18 0.06404109573878983 24 0.055773284886048054 21 0.055042859892350623 23 0.05134105694874891 22 0.04985288491493517 12 0.04390639446137225 14 0.042989410749864135 15 0.041834797156755435 10 0.04170015464017006 17 0.04058582409762506 16 0.04009750895129691 11 0.036621113150509754 13 0.03330644523400766 9 0.03299303245736398 4 0.027524350290561495 5 0.027079242044439393 3 0.025538635028593257 0 0.024755549414808203 6 0.024423369223903008 8 0.024042161906874034 7 0.02396884958781274 1 0.02379893471936883 2 0.023530020181136205 __DUMMY__ 0.014779625972206594 false 0.0
1087 19 0.0645426301475761 20 0.06428682949637436 18 0.06133950755284651 24 0.05708026620612468 21 0.056585433032447986 23 0.053449397209870186 22 0.04972534819510827 12 0.04659147980806639 14 0.04092291385830828 16 0.04020311030601327 17 0.04007726383196743 15 0.038716236622300185 10 0.038429067129738745 11 0.03709152521555328 13 0.034220748871551965 9 0.03171236770059862 4 0.028398181359100688 5 0.027932062798416365 3 0.02604959973805655 6 0.02544389599942862 8 0.02479889761378391 7 0.02475154713998098 1 0.024558102472428126 2 0.024282090309945065 0 0.024257887515981038 __DUMMY__ 0.014553609868432599 false 0.0
1086 21 0.07063799944973878 19 0.06773591474952376 20 0.06106027788171794 18 0.06081510040425776 12 0.05860935476718661 22 0.05784580329125161 24 0.05705521425025021 23 0.05277047596628164 11 0.0488043234032294 13 0.040775818233332255 14 0.04040739529256749 10 0.03893213942724097 17 0.03833394119186275 16 0.03739076762392883 9 0.031067909713479783 0 0.026105089218489416 15 0.025532278310046796 4 0.024786413249980106 5 0.024295618841813697 6 0.02134210519535677 3 0.020851864341849092 7 0.019697649738762625 8 0.019636323063496885 1 0.01945038175124155 2 0.019122474817632806 __DUMMY__ 0.01693736582548017 false 0.0
1085 9 0.0553033046363398 22 0.054421045236843324 4 0.04822966134581619 5 0.04772447257492858 18 0.04755198453802107 6 0.046936041597596845 8 0.04675300504818975 7 0.04673455933000088 1 0.046617351800625144 3 0.04659810176596076 17 0.04619614216421691 2 0.04606247435481242 0 0.04366811044189815 23 0.04260158652497486 21 0.04069440231793862 10 0.03891895176343589 19 0.038870887770831655 24 0.03583439908427544 11 0.03503775794699223 16 0.02877305811403183 20 0.02728982854160674 15 0.022818366729137417 12 0.02179025224489631 14 0.02045024815268197 13 0.012324004956428021 __DUMMY__ 0.01180000101751885 false 0.0
1084 17 0.05995326725568394 0 0.0581041905492384 22 0.05612300575141844 9 0.05305432901319884 18 0.05026289320990074 11 0.04625171935244996 16 0.044242279067805916 19 0.04310566549862816 10 0.042634990558059555 6 0.04226153693361991 21 0.04147770285455914 4 0.0413573728874117 5 0.04086131964138669 8 0.040585643948196436 7 0.040512295177188115 1 0.04039657519473796 2 0.039864151426805376 3 0.03787504689946709 23 0.03624056978043462 12 0.031210170824555246 24 0.026354929007034667 20 0.02225307368989893 15 0.019132899471709753 13 0.018378646029366456 14 0.015745219129370734 __DUMMY__ 0.011760506847873376 false 0.0
1083 22 0.05803101979456545 18 0.05661141332289429 9 0.052126795245992855 10 0.04866886481886792 21 0.04842074673065284 19 0.04700413432135156 17 0.041641506332256 11 0.04100808385049852 23 0.04031439942859092 4 0.03945409220169717 5 0.03894847948151134 0 0.038901235430139 24 0.03788826287892397 3 0.03787844901340947 6 0.03675192951655787 8 0.03670535895164501 7 0.03666026965107014 1 0.03648051795910096 2 0.036045805533507926 14 0.036012554931085225 20 0.03580687689187973 15 0.03265111279996955 16 0.026550545024547196 12 0.025690304675535326 13 0.02071225529355975 __DUMMY__ 0.013034985920190253 false 0.0
1082 22 0.05617887140535242 18 0.054463456467994706 21 0.05189336200872378 19 0.05179446724738819 24 0.047117170335605564 23 0.04648687466883965 9 0.045681181420160304 20 0.04404921324964014 17 0.040830708484480255 10 0.04037638558966344 11 0.03915128894821267 4 0.038278309733267186 5 0.037763041689815535 3 0.036559118052611236 6 0.035373524727193 8 0.03524418025156235 7 0.035189387533721 1 0.034996114152572415 2 0.03459543761473706 0 0.03334518908340339 14 0.032654517732294615 12 0.03208403775355582 16 0.03066769259170394 15 0.030039838004457604 13 0.02134591269452771 __DUMMY__ 0.013840718558516105 false 0.0
890 21 0.06999653332279321 19 0.0697196987930409 18 0.06707690032028434 20 0.06283519636752367 22 0.06154259532964436 24 0.05549728587421778 12 0.0527635304463732 11 0.05190494133342584 23 0.047502330914795485 10 0.04619599173317755 14 0.04588151804844236 17 0.03912511836392869 13 0.03775331535508308 16 0.03632464016922731 9 0.033907612432559894 15 0.0323778885260779 0 0.026839127999398506 4 0.022337300687929204 5 0.021842474717435636 3 0.01900508909771023 6 0.018228551432371388 7 0.017068052379973542 8 0.017040957561710618 1 0.016789291013532767 2 0.016465500001116164 __DUMMY__ 0.013978557778226335 false 0.0
1081 22 0.06309110698954554 9 0.058809958218587484 0 0.054488203352439334 17 0.053663207538621735 18 0.05298155539101245 11 0.0478105109445378 10 0.04693158380221783 21 0.046654710490949804 4 0.04254950744543108 19 0.04250115059528393 5 0.04198195085042155 6 0.04166800880386041 8 0.04068652620792676 7 0.04061685039320177 1 0.0404308417171764 2 0.03988534628070036 3 0.03973192987759668 23 0.03434712889848184 16 0.03263027658690338 24 0.02845502879198564 12 0.0253297878747365 20 0.020910646923830274 14 0.020304690772508946 15 0.01797454078660963 13 0.014034647761860997 __DUMMY__ 0.011530302703571716 false 0.0
891 18 0.07519551014314689 10 0.07144585972577296 22 0.0633879774645692 21 0.05840925887895873 11 0.05820824719568551 19 0.05655966758623863 14 0.052341287884794314 9 0.05010114176288735 0 0.04749183978720716 17 0.04563125739277235 13 0.041677417423032444 12 0.041298853733062864 20 0.03863218283370951 15 0.03597489705037749 23 0.030069762904882624 16 0.028742938380754927 24 0.025914938899276974 4 0.023685522803589463 5 0.023282795194939723 6 0.021350764586492425 3 0.019780794489603865 8 0.019558301069516597 7 0.019557092883506526 1 0.01940399899489626 2 0.01904179094270526 __DUMMY__ 0.013255899987620043 false 0.0
892 21 0.06855260642728796 22 0.06548495826698557 11 0.06384226485955057 18 0.06078995804443382 19 0.0577155121080062 12 0.056084056022392706 10 0.05092857984061816 17 0.04715130410446235 0 0.045736553987607224 9 0.04210950365215144 13 0.04180521729148405 23 0.03826809587561134 20 0.03788683804856893 14 0.03767247690177691 24 0.03705003979160863 16 0.03588130494829125 4 0.025618841845369087 5 0.025174675937080712 6 0.023798476106992674 7 0.02102700763874404 8 0.02100098781453672 1 0.020837436659138037 2 0.02047437385824539 3 0.02032791586829909 15 0.01845582759031505 __DUMMY__ 0.016325186510442187 false 0.0
650 21 0.108063 22 0.088565 11 0.087906 12 0.078684 19 0.071847 24 0.059272 18 0.057904 13 0.04827 23 0.042612 14 0.0418 20 0.041673 10 0.041096 17 0.040444 9 0.037287 0 0.037136 16 0.028757 4 0.017426 5 0.016629 6 0.012573 3 0.009518 7 0.008539 8 0.008378 1 0.008086 2 0.007533 21 0.108063 22 0.088565 11 0.087906 12 0.078684 19 0.071847 24 0.059272 18 0.057904 13 0.04827 23 0.042612 14 0.0418 20 0.041673 10 0.041096 17 0.040444 9 0.037287 0 0.037136 16 0.028757 4 0.017426 5 0.016629 6 0.012573 3 0.009518 7 0.008539 8 0.008378 1 0.008086 2 0.007533 21 0.09488432914897171 22 0.07907143278328028 11 0.07612800278563372 12 0.07157943009311968 19 0.06711855148990961 18 0.058545906358412135 24 0.05447768643683089 13 0.04703732814374278 23 0.044071775088748856 20 0.04383627542124295 10 0.042420238574037206 14 0.04194480664420376 17 0.03962193162463137 9 0.037446878927499 0 0.03578392204527048 16 0.029249096520931748 4 0.02088725388497817 5 0.020236036115054673 6 0.01669612573404788 3 0.014135426319877468 7 0.013338367910859876 8 0.013199140742768355 1 0.012967764931903327 2 0.012490028419757706 15 0.007425854301682828 __DUMMY__ 0.005406409552603666 false 1.0
651 22 0.077924 9 0.071823 0 0.05828 17 0.05321 21 0.053067 18 0.052406 11 0.052366 10 0.04773 4 0.047697 5 0.046734 3 0.045637 6 0.044873 8 0.04484 7 0.044323 1 0.044159 2 0.043889 19 0.03998 24 0.0313 23 0.027812 16 0.020809 14 0.016884 12 0.013193 20 0.01131 15 0.009754 22 0.077924 9 0.071823 0 0.05828 17 0.05321 21 0.053067 18 0.052406 11 0.052366 10 0.04773 4 0.047697 5 0.046734 3 0.045637 6 0.044873 8 0.04484 7 0.044323 1 0.044159 2 0.043889 19 0.03998 24 0.0313 23 0.027812 16 0.020809 14 0.016884 12 0.013193 20 0.01131 15 0.009754 22 0.07215912831186184 9 0.06155718774558764 21 0.057337091123472975 18 0.053773819338032526 11 0.053161661125352706 0 0.05120475499826103 17 0.04900912807546123 10 0.046991913679112485 19 0.04421296343296137 4 0.04188356515741789 5 0.04113666574211367 6 0.03930683734243756 3 0.03894344876269188 8 0.03850214667529019 7 0.03822813450621576 1 0.03804095121925987 2 0.037662170298275954 24 0.03455631940618637 23 0.03315051673510623 12 0.026741725139859077 14 0.025358921652069363 16 0.024063262448874058 20 0.02084683467657769 15 0.014871753725052311 13 0.014412216264735801 __DUMMY__ 0.0028868824177326574 false 1.0
893 18 0.06724922392503646 10 0.06526166903443256 22 0.06506870770193905 11 0.060095277851348265 21 0.05644420176084286 0 0.05373595137831839 9 0.053626362734382454 19 0.050312020529328476 17 0.049582533074321235 14 0.041644303421113534 12 0.039397845170483434 13 0.03585672493460953 16 0.029951645023307612 23 0.0291850278608107 4 0.029129845974973475 5 0.028680197979168653 20 0.028256910016530884 6 0.02767834404683526 15 0.02693810412706616 8 0.0256331189538447 7 0.025612663760859574 1 0.025455980416282862 2 0.025031391709429897 3 0.02490084235386108 24 0.02317251590821765 __DUMMY__ 0.012098590352655468 false 0.0
894 21 0.06713589921582694 19 0.06695218481077468 18 0.06651685637160872 22 0.05941724866413536 20 0.05601317465616809 12 0.054652455844911026 11 0.05261437545562407 10 0.04983092543628133 24 0.04740099788619532 23 0.0458653664870913 14 0.04484620669864672 13 0.04194620875527648 17 0.04153198545146202 16 0.03746715905553369 9 0.035450990802006165 0 0.032908361075818654 15 0.02998504144187676 4 0.022615328015174053 5 0.022189550961534157 6 0.019523982665283417 3 0.018614465612114297 7 0.017727887640640195 8 0.01769779295346072 1 0.01751242964847074 2 0.01723384495424468 __DUMMY__ 0.016349279439840245 false 0.0
410 15 0.182794 14 0.123717 18 0.09627 20 0.079296 10 0.077603 16 0.073147 19 0.06692 17 0.063387 13 0.04637 24 0.032097 22 0.030232 9 0.02797 23 0.025839 0 0.024695 11 0.014528 21 0.010163 8 0.003918 3 0.003738 2 0.0032 1 0.003142 7 0.003049 4 0.002855 5 0.002729 6 0.002343 15 0.182794 14 0.123717 18 0.09627 20 0.079296 10 0.077603 16 0.073147 19 0.06692 17 0.063387 13 0.04637 24 0.032097 22 0.030232 9 0.02797 23 0.025839 0 0.024695 11 0.014528 21 0.010163 8 0.003918 3 0.003738 2 0.0032 1 0.003142 7 0.003049 4 0.002855 5 0.002729 6 0.002343 15 0.11942501213376099 14 0.09303757206539942 18 0.08212031264543551 10 0.06733357109836294 20 0.06533020695806493 19 0.061669174235115795 16 0.05490284040303542 17 0.052943052538603146 13 0.04877342868851583 22 0.04065197157043075 24 0.03474079943573962 23 0.032703738398820785 9 0.032624727319955346 21 0.031949653098770965 11 0.03010583818437012 0 0.029387666556891723 12 0.02337563326610864 4 0.0131522740783819 5 0.01289120230847047 6 0.012041532650362442 8 0.011940861770247514 3 0.011695213136289042 7 0.011488542933387596 1 0.011442385122982068 2 0.011312581136907536 __DUMMY__ 0.0029602082655895783 false 1.0
652 21 0.10341 22 0.093361 11 0.088328 19 0.07747 12 0.068292 18 0.067896 10 0.052932 24 0.051629 17 0.046366 9 0.044688 20 0.044002 0 0.043884 14 0.039084 13 0.036465 23 0.035357 16 0.034204 4 0.014848 5 0.014318 6 0.009289 3 0.008833 7 0.006759 8 0.006443 1 0.006357 2 0.005786 21 0.10341 22 0.093361 11 0.088328 19 0.07747 12 0.068292 18 0.067896 10 0.052932 24 0.051629 17 0.046366 9 0.044688 20 0.044002 0 0.043884 14 0.039084 13 0.036465 23 0.035357 16 0.034204 4 0.014848 5 0.014318 6 0.009289 3 0.008833 7 0.006759 8 0.006443 1 0.006357 2 0.005786 21 0.09215163138398463 22 0.08312114183253473 11 0.07729281751823656 19 0.0707258827219817 18 0.06470630832480913 12 0.06366543646364979 24 0.05009797461154896 10 0.049923727301076984 20 0.044411599261890373 17 0.043887294686968926 9 0.0427693702523502 0 0.04059067323166529 14 0.039638198183476504 23 0.03880614018170895 13 0.03799156073075515 16 0.032543580096830366 4 0.0194343717081587 5 0.018918071424500096 6 0.014759322644973635 3 0.013892090088871233 7 0.012344020952833101 8 0.012133345384876945 1 0.011994405061702617 2 0.011500389027708955 15 0.007398390199077171 __DUMMY__ 0.005302256723829246 false 1.0
411 14 0.104588 13 0.102823 10 0.099322 18 0.088777 12 0.071797 11 0.069988 21 0.066797 15 0.064338 22 0.053144 19 0.050919 0 0.043711 20 0.042071 9 0.040502 17 0.031313 23 0.019305 16 0.0158 24 0.008684 5 0.007239 4 0.006968 6 0.005919 1 0.001605 7 0.00156 8 0.001543 2 0.001287 14 0.104588 13 0.102823 10 0.099322 18 0.088777 12 0.071797 11 0.069988 21 0.066797 15 0.064338 22 0.053144 19 0.050919 0 0.043711 20 0.042071 9 0.040502 17 0.031313 23 0.019305 16 0.0158 24 0.008684 5 0.007239 4 0.006968 6 0.005919 1 0.001605 7 0.00156 8 0.001543 2 0.001287 14 0.0849642024866909 13 0.08326092099289764 10 0.08211742821187017 18 0.08001756629506752 21 0.06673833162973056 12 0.06613500181515959 11 0.06404667759137853 22 0.05548619357675027 19 0.0534655132585987 15 0.05270359656962007 20 0.044136795935121716 0 0.0405391166356362 9 0.039915124551585676 17 0.03450293191599426 23 0.02780994219470617 16 0.0210786491158674 24 0.020735309108381103 4 0.01357903467093237 5 0.01350950608904308 6 0.011948529571815877 8 0.008269021510834473 7 0.008263574894215668 1 0.008219151572171202 2 0.00792811122446241 3 0.007319850675760389 __DUMMY__ 0.003309917905708016 false 1.0
895 18 0.07505674431581702 10 0.06730938984706837 22 0.060808520064933085 19 0.06055385864043909 21 0.05900437693408974 11 0.05474096524654504 14 0.053305603930300885 20 0.04622166201603657 9 0.0452340559448142 17 0.04390785971580505 12 0.04343035275980624 13 0.042191871745764935 0 0.04181601070801242 15 0.03905979175241638 23 0.03484156572818585 24 0.03213522390377446 16 0.03147778158038132 4 0.022511923006254306 5 0.022112005534981955 6 0.019837220213704425 3 0.01882938463251868 7 0.018205791293824776 8 0.018205303473098764 1 0.01803122274249426 2 0.0177262928981978 __DUMMY__ 0.013445221370734393 false 0.0
653 0 0.087394 17 0.080064 9 0.066661 22 0.062443 11 0.059329 10 0.056488 18 0.055927 16 0.053413 6 0.04559 7 0.043069 8 0.042788 1 0.042741 4 0.041697 2 0.041382 5 0.040697 19 0.037773 3 0.036533 21 0.033141 12 0.0236 23 0.021583 13 0.011531 15 0.01071 14 0.00304 24 0.002406 0 0.087394 17 0.080064 9 0.066661 22 0.062443 11 0.059329 10 0.056488 18 0.055927 16 0.053413 6 0.04559 7 0.043069 8 0.042788 1 0.042741 4 0.041697 2 0.041382 5 0.040697 19 0.037773 3 0.036533 21 0.033141 12 0.0236 23 0.021583 13 0.011531 15 0.01071 14 0.00304 24 0.002406 0 0.07306709006042597 17 0.0696037105148618 9 0.06213285560839899 22 0.060610180205944386 18 0.053227375037620754 11 0.05247443987184884 10 0.050407640633418835 16 0.04678795609376119 6 0.04513206183958408 7 0.0432033785942259 8 0.04310917202765947 1 0.042981299459809594 4 0.04296885180455487 5 0.04222657574141903 2 0.04204407562944977 19 0.03940522163321378 3 0.038913138170981354 21 0.03691414944957228 23 0.028356453075906 12 0.024525126377785006 15 0.014666445384935447 24 0.014078313714618157 13 0.01245699436264072 20 0.00963790937605115 14 0.009079929196705482 __DUMMY__ 0.0019896561346072245 false 1.0
896 19 0.0682501508448393 18 0.06737572122652155 20 0.06341413298955362 21 0.06208166337991468 22 0.05483752312875013 24 0.052223144013936525 12 0.0496711831679183 23 0.04881373672839429 10 0.04764269778401488 14 0.047159526185363725 11 0.044911378454461366 17 0.03986459693154938 13 0.038975762379541985 16 0.03886558149358415 15 0.03855438889488605 9 0.033107489742254255 0 0.027081679627600923 4 0.023389909385730046 5 0.02294476520943909 3 0.020423780174364 6 0.019988610513230358 8 0.018920842627203907 7 0.01892082018819171 1 0.018694290605867216 2 0.018438336174866097 __DUMMY__ 0.015448288148022406 false 0.0
412 14 0.133049 13 0.108446 15 0.093821 10 0.086157 18 0.081541 21 0.070857 12 0.069114 20 0.058607 11 0.05558 22 0.04966 19 0.049483 24 0.031467 9 0.030439 23 0.029445 0 0.014264 17 0.012119 5 0.007515 4 0.00748 16 0.005095 6 0.003319 3 0.002043 7 2.17E-4 2 1.75E-4 8 1.08E-4 14 0.133049 13 0.108446 15 0.093821 10 0.086157 18 0.081541 21 0.070857 12 0.069114 20 0.058607 11 0.05558 22 0.04966 19 0.049483 24 0.031467 9 0.030439 23 0.029445 0 0.014264 17 0.012119 5 0.007515 4 0.00748 16 0.005095 6 0.003319 3 0.002043 7 2.17E-4 2 1.75E-4 8 1.08E-4 14 0.0952819315934335 13 0.08179440252070873 18 0.07410306541826776 21 0.06994138282421014 10 0.06958034046175078 15 0.06607912791363334 12 0.06451034263006558 20 0.05587671113977227 19 0.05531745098420658 11 0.05493550346077763 22 0.053937164837999305 24 0.03776145202514957 23 0.036094572774278015 9 0.03279524915402293 17 0.025236694046917228 0 0.022994375491802603 16 0.01847409795152698 4 0.014408949917978588 5 0.01420343991184252 6 0.010945733429840584 3 0.009228518837188199 7 0.008157160239473375 8 0.008124569536534466 1 0.007964484167508433 2 0.007899731818262716 __DUMMY__ 0.004353546912848154 false 1.0
654 21 0.104755 19 0.086989 22 0.086402 11 0.08301 12 0.078563 18 0.073644 20 0.058471 24 0.056581 10 0.052745 13 0.046461 17 0.046266 14 0.042169 16 0.040428 0 0.039813 23 0.037955 9 0.037225 4 0.008912 5 0.008504 6 0.003495 15 0.00344 3 0.002811 7 6.87E-4 1 3.9E-4 8 2.84E-4 21 0.104755 19 0.086989 22 0.086402 11 0.08301 12 0.078563 18 0.073644 20 0.058471 24 0.056581 10 0.052745 13 0.046461 17 0.046266 14 0.042169 16 0.040428 0 0.039813 23 0.037955 9 0.037225 4 0.008912 5 0.008504 6 0.003495 15 0.00344 3 0.002811 7 6.87E-4 1 3.9E-4 8 2.84E-4 21 0.09305339256804177 22 0.07792380401033235 19 0.07641224719723691 11 0.07376043867511355 12 0.07127170061054497 18 0.06788031907648791 20 0.05391167167427524 24 0.0532726129223899 10 0.049458359323639726 13 0.04573380982686689 17 0.043284040269175275 14 0.0423756901085033 23 0.04115027728092197 0 0.03736999449332565 9 0.037165833143491936 16 0.03648884385562639 4 0.015556618810287552 5 0.015104293944516296 6 0.011049076483899323 15 0.009959909945381686 3 0.009847782795680276 7 0.00838216707294752 8 0.008135962839803614 1 0.008092270113002918 2 0.007704266703473787 __DUMMY__ 0.0056546162550334175 false 1.0
897 21 0.0777972068003396 19 0.07056848698314132 22 0.06556107531365671 18 0.06528445318553938 20 0.06013518663641625 12 0.059917703511839095 11 0.05770808915408438 24 0.05600002625562586 23 0.047013523176011866 10 0.04492759658333287 14 0.044523310736211956 13 0.04142930173126479 17 0.0386874823367294 16 0.0350466342008995 9 0.033725031703789606 0 0.02837197833783988 15 0.024084473699141653 4 0.020868377153241816 5 0.020369153338061798 3 0.016721085959800673 6 0.01665273233940392 __DUMMY__ 0.01572044632136352 7 0.014973679853744988 8 0.014894826619500557 1 0.014688433272869086 2 0.014329704796149761 false 0.0
413 14 0.087784 15 0.078872 10 0.065407 18 0.058595 13 0.057131 9 0.050869 22 0.047535 21 0.044149 4 0.037555 5 0.037083 11 0.036399 3 0.035482 23 0.034912 6 0.034285 8 0.033961 7 0.033651 1 0.033646 2 0.033335 20 0.032154 24 0.029388 12 0.027767 19 0.024844 0 0.024681 17 0.020515 14 0.087784 15 0.078872 10 0.065407 18 0.058595 13 0.057131 9 0.050869 22 0.047535 21 0.044149 4 0.037555 5 0.037083 11 0.036399 3 0.035482 23 0.034912 6 0.034285 8 0.033961 7 0.033651 1 0.033646 2 0.033335 20 0.032154 24 0.029388 12 0.027767 19 0.024844 0 0.024681 17 0.020515 14 0.07268386033655459 18 0.06112429200703569 10 0.06106074717762358 15 0.05839934007731703 13 0.056617519053875374 21 0.053244497297885766 22 0.05173920067940854 9 0.045994121511153785 11 0.04454577222117072 12 0.041442889721396564 19 0.03754457442547632 23 0.037265924777426 20 0.03704463902343362 4 0.03227945104337277 24 0.0321747421029386 5 0.03186135217763777 0 0.03049125238752952 6 0.029654768181305684 17 0.02888418365597515 3 0.02872324872467199 8 0.02817897330570879 7 0.028021442275384445 1 0.02796124254574601 2 0.027638947394103334 16 0.012548363617871006 __DUMMY__ 0.0028746542779972558 false 1.0
655 17 0.071011 0 0.064631 22 0.057758 9 0.057306 16 0.056284 18 0.052529 19 0.048183 6 0.043944 8 0.043518 7 0.043469 1 0.043303 11 0.042891 4 0.04284 2 0.042705 5 0.042212 3 0.041114 10 0.040868 21 0.033756 23 0.032919 24 0.028876 20 0.024844 15 0.022363 12 0.017453 14 0.005223 17 0.071011 0 0.064631 22 0.057758 9 0.057306 16 0.056284 18 0.052529 19 0.048183 6 0.043944 8 0.043518 7 0.043469 1 0.043303 11 0.042891 4 0.04284 2 0.042705 5 0.042212 3 0.041114 10 0.040868 21 0.033756 23 0.032919 24 0.028876 20 0.024844 15 0.022363 12 0.017453 14 0.005223 17 0.06512837130914052 0 0.0611183908734013 22 0.05891335396801816 9 0.056953256218022115 18 0.0522586764928844 16 0.04859653322098624 19 0.04586587137106904 11 0.04473275818889701 6 0.0432705624306408 4 0.04263025253808055 10 0.04257639424962531 8 0.04244099905646577 7 0.04236834361095587 1 0.042212765320358905 5 0.04204979367086796 2 0.04163417795923902 3 0.04025124634486761 21 0.03838911245464407 23 0.034108007286537644 24 0.02831714138148434 20 0.023287601361033073 12 0.022074778305243705 15 0.021048567645894745 14 0.010990131100473557 13 0.007004257998304587 __DUMMY__ 0.0017786556428638861 false 1.0
1079 22 0.059842485165072214 21 0.0594734419181173 18 0.049876520639538936 19 0.04776280335401288 11 0.04646539113235936 23 0.04589117718406754 9 0.04562651276875236 24 0.044067987407787154 12 0.0424625178955942 17 0.041154920680577425 4 0.038457168934479716 5 0.03794234407247327 10 0.0371430466356885 0 0.03711175588473262 6 0.03620874442037642 20 0.03556571485596087 3 0.034893178389085074 7 0.034748558679042106 8 0.03473398590070469 1 0.034567872224472745 2 0.03412081063612881 14 0.030725340028001757 13 0.02912521296110553 16 0.02798546275091007 15 0.019743790538519008 __DUMMY__ 0.014303254942439546 false 0.0
1078 19 0.07300281597297671 21 0.07159207248615754 20 0.06813908056450056 18 0.0662873026263216 24 0.05933142590227615 22 0.05852814924936424 12 0.05785971980337565 23 0.050566876918654025 11 0.04918340902014932 14 0.045953963841985634 10 0.04283798961414641 13 0.04128418331755046 16 0.03940908564456974 17 0.03841287103420205 15 0.03199253162751931 9 0.029701072714757845 0 0.02385646814233994 4 0.02063432054811709 5 0.02015071090542002 3 0.017238660374902917 __DUMMY__ 0.016886722626834147 6 0.01659767440761246 7 0.015339508767111484 8 0.015321363468115058 1 0.015092957563793282 2 0.014799062857246198 false 0.0
656 19 0.098574 21 0.087402 18 0.077325 20 0.075381 12 0.071939 22 0.069486 11 0.066777 16 0.061663 24 0.056897 17 0.053106 10 0.051744 23 0.045328 13 0.042202 14 0.038759 0 0.038262 9 0.027551 15 0.018584 5 0.006567 4 0.006383 6 0.002688 3 0.002076 7 6.63E-4 8 3.8E-4 1 2.62E-4 19 0.098574 21 0.087402 18 0.077325 20 0.075381 12 0.071939 22 0.069486 11 0.066777 16 0.061663 24 0.056897 17 0.053106 10 0.051744 23 0.045328 13 0.042202 14 0.038759 0 0.038262 9 0.027551 15 0.018584 5 0.006567 4 0.006383 6 0.002688 3 0.002076 7 6.63E-4 8 3.8E-4 1 2.62E-4 21 0.08357041488584308 19 0.08353493071325407 18 0.07048019809981713 12 0.06955694709638371 22 0.06727526732735604 20 0.06535421329845184 11 0.06390833146195767 24 0.05431596527834181 16 0.048634361462119774 10 0.04859365831787857 17 0.04661223470802721 23 0.04600752965792285 13 0.045468531325786564 14 0.04141250600358755 0 0.03535954100059919 9 0.03046244008627205 15 0.019084484936692875 4 0.013497151568327542 5 0.013331355586696406 6 0.009952824400100068 3 0.008689300212188637 7 0.007645758063019783 8 0.0074716904001412435 1 0.007328227687198413 2 0.007026343267889279 __DUMMY__ 0.005425793154146755 false 1.0
414 14 0.136698 15 0.101959 13 0.100641 10 0.086612 18 0.083647 21 0.069201 20 0.062029 12 0.059925 19 0.051935 11 0.051906 22 0.051304 24 0.035193 9 0.031829 23 0.029465 17 0.01127 0 0.010181 4 0.007708 5 0.007578 16 0.004539 3 0.00336 6 0.00242 2 2.36E-4 7 2.02E-4 8 1.62E-4 14 0.136698 15 0.101959 13 0.100641 10 0.086612 18 0.083647 21 0.069201 20 0.062029 12 0.059925 19 0.051935 11 0.051906 22 0.051304 24 0.035193 9 0.031829 23 0.029465 17 0.01127 0 0.010181 4 0.007708 5 0.007578 16 0.004539 3 0.00336 6 0.00242 2 2.36E-4 7 2.02E-4 8 1.62E-4 14 0.09734896179898182 13 0.07633293120169336 18 0.07605643982188716 15 0.07188459422821077 10 0.07050318046674497 21 0.06793390726723138 20 0.058435970450288505 12 0.05794715666144261 19 0.057172768920327716 22 0.05461250547117329 11 0.05227918011743003 24 0.03968249994970487 23 0.035851210574716734 9 0.033771494387811 17 0.025235533669705757 0 0.020837507762714626 16 0.018856230319149625 4 0.014397666368387465 5 0.014117365026198725 6 0.010305364523090976 3 0.010022391859866532 8 0.008145233661201696 7 0.008144565310928973 1 0.007953153251100142 2 0.007918224784443043 __DUMMY__ 0.004253962145568267 false 1.0
898 21 0.0802009021583443 12 0.07921983694027902 13 0.06792230699079672 11 0.06504553828108067 22 0.060629109163661654 18 0.060171035112472855 19 0.05745412778227443 14 0.05129256549140462 10 0.048966425301548926 20 0.04564514184536982 23 0.04385803031371787 24 0.041879731496671894 17 0.03620315847987408 0 0.035668143271640355 9 0.03255917770745695 16 0.027987810655291843 4 0.020997177983282364 5 0.02057700480919741 6 0.01899739145583143 15 0.017481541588288668 __DUMMY__ 0.015030495737983311 7 0.014781850583416285 8 0.01475383881898788 1 0.01462712102991054 2 0.014360710501463276 3 0.01368982649975282 false 0.0
899 21 0.0802009021583443 12 0.07921983694027904 13 0.06792230699079672 11 0.06504553828108067 22 0.06062910916366166 18 0.06017103511247286 19 0.05745412778227444 14 0.05129256549140462 10 0.04896642530154893 20 0.04564514184536982 23 0.04385803031371788 24 0.0418797314966719 17 0.036203158479874084 0 0.03566814327164036 9 0.032559177707456956 16 0.027987810655291843 4 0.020997177983282368 5 0.02057700480919741 6 0.01899739145583143 15 0.017481541588288668 __DUMMY__ 0.015030495737983313 7 0.014781850583416285 8 0.014753838818987878 1 0.01462712102991054 2 0.014360710501463278 3 0.01368982649975282 false 0.0
415 15 0.160502 14 0.116648 18 0.077438 20 0.067934 10 0.066303 19 0.049058 13 0.046535 16 0.044715 17 0.040083 24 0.037243 23 0.034321 9 0.032991 22 0.028663 3 0.021787 8 0.020167 4 0.019981 5 0.019906 7 0.019734 1 0.0196 2 0.019514 6 0.017934 21 0.013955 0 0.013465 11 0.011527 15 0.160502 14 0.116648 18 0.077438 20 0.067934 10 0.066303 19 0.049058 13 0.046535 16 0.044715 17 0.040083 24 0.037243 23 0.034321 9 0.032991 22 0.028663 3 0.021787 8 0.020167 4 0.019981 5 0.019906 7 0.019734 1 0.0196 2 0.019514 6 0.017934 21 0.013955 0 0.013465 11 0.011527 15 0.10923349871297153 14 0.08888758194069278 18 0.07317157780793437 20 0.061163630989020674 10 0.061108254666582214 19 0.05386179190604086 13 0.04662523797910815 17 0.04171997895712062 16 0.041567130223715554 22 0.03994475907396006 24 0.03863332534841952 23 0.037340313532634166 9 0.035054185597295076 21 0.03331973150344993 11 0.02749304317979517 0 0.023086312409012495 12 0.021771196792817138 4 0.021663251447458783 5 0.021420625465161516 3 0.02094357947428103 8 0.020071395258189503 7 0.019821535833984116 1 0.019662087166037436 6 0.019634173781042197 2 0.019471239578429955 __DUMMY__ 0.003330561374845241 false 1.0
657 21 0.10512 22 0.080192 12 0.076834 11 0.070466 19 0.069625 18 0.06251 24 0.057776 20 0.050606 13 0.050229 23 0.048121 10 0.043562 14 0.043304 9 0.039351 17 0.032514 0 0.028738 4 0.020987 5 0.020374 16 0.019788 6 0.015322 3 0.014815 1 0.012733 7 0.012648 8 0.012421 2 0.011965 21 0.10512 22 0.080192 12 0.076834 11 0.070466 19 0.069625 18 0.06251 24 0.057776 20 0.050606 13 0.050229 23 0.048121 10 0.043562 14 0.043304 9 0.039351 17 0.032514 0 0.028738 4 0.020987 5 0.020374 16 0.019788 6 0.015322 3 0.014815 1 0.012733 7 0.012648 8 0.012421 2 0.011965 21 0.09249347534988535 12 0.07335026996487799 22 0.07254832855998294 11 0.066956638768119 19 0.06597143010500907 18 0.06184284512341625 24 0.052614152143601094 13 0.052266746120046656 20 0.049712526465494164 23 0.04647655331518358 10 0.04515889512845623 14 0.044810386454804396 9 0.03714687601381299 17 0.03541293825064702 0 0.031601631226014504 16 0.02529661483581778 4 0.021601951907323586 5 0.02106425594111689 6 0.017296204550684213 3 0.015495377085287263 7 0.014379376706185144 1 0.014295230966568553 8 0.014232514819072159 2 0.01375333017506722 15 0.00896356227634609 __DUMMY__ 0.005257887747179821 false 1.0
416 14 0.141293 15 0.123558 18 0.088441 10 0.08721 13 0.074751 20 0.071279 21 0.060841 19 0.056781 22 0.054158 24 0.045671 11 0.039005 9 0.036933 12 0.031177 23 0.030755 4 0.010412 5 0.010075 17 0.009654 3 0.009583 16 0.003388 8 0.003224 7 0.003174 2 0.003069 1 0.003055 6 0.002513 14 0.141293 15 0.123558 18 0.088441 10 0.08721 13 0.074751 20 0.071279 21 0.060841 19 0.056781 22 0.054158 24 0.045671 11 0.039005 9 0.036933 12 0.031177 23 0.030755 4 0.010412 5 0.010075 17 0.009654 3 0.009583 16 0.003388 8 0.003224 7 0.003174 2 0.003069 1 0.003055 6 0.002513 14 0.10016705721096802 15 0.08560582552778602 18 0.08004552305547866 10 0.07216305840430819 20 0.06446809836046374 13 0.06175106654915432 21 0.061384370533158365 19 0.06037537612771149 22 0.05508263293757191 24 0.04448949521825447 11 0.044271204635566705 12 0.040966508791094654 9 0.03649042596075271 23 0.03624650898747818 17 0.02516091879829172 16 0.019486139179052026 0 0.015712669568488415 4 0.015531591144167675 5 0.015154894601237326 3 0.0132437037813036 6 0.010144314843937978 8 0.009686114271336716 7 0.00964495993151212 1 0.009482624917322612 2 0.009346080356730499 __DUMMY__ 0.003898836306871957 false 1.0
658 21 0.081132 22 0.069342 12 0.061968 11 0.060737 18 0.054037 9 0.05082 10 0.05029 13 0.049789 23 0.0439 14 0.043875 24 0.041852 19 0.041797 4 0.037148 5 0.036657 0 0.033514 6 0.032555 3 0.0314 20 0.030084 1 0.029859 8 0.029785 7 0.029588 2 0.029584 17 0.025199 15 0.00509 21 0.081132 22 0.069342 12 0.061968 11 0.060737 18 0.054037 9 0.05082 10 0.05029 13 0.049789 23 0.0439 14 0.043875 24 0.041852 19 0.041797 4 0.037148 5 0.036657 0 0.033514 6 0.032555 3 0.0314 20 0.030084 1 0.029859 8 0.029785 7 0.029588 2 0.029584 17 0.025199 15 0.00509 21 0.07551159014730477 22 0.06407244391969888 12 0.06375691516246089 11 0.05955087924589704 18 0.05559818172976343 13 0.05330462196928686 10 0.04947381904306104 19 0.04593639720320263 9 0.045190784460211166 14 0.04470085844667047 23 0.04341744090910086 24 0.03996549924425591 0 0.036130196876601905 20 0.03437459684007463 4 0.033014499647362076 5 0.03256721059778569 17 0.03153342714638619 6 0.029900116840288798 3 0.02707200734401475 8 0.02679441198489565 1 0.02678813113122631 7 0.026721047639256028 2 0.02647280834689694 16 0.01288091405804142 15 0.012171128948844295 __DUMMY__ 0.003100071117411728 false 1.0
659 21 0.08156 22 0.068745 12 0.06172 11 0.060616 18 0.053825 9 0.051043 10 0.050888 13 0.049484 23 0.043815 14 0.043663 24 0.042115 19 0.041584 4 0.036705 5 0.036472 0 0.033433 6 0.032338 3 0.031792 1 0.030127 20 0.030007 8 0.030006 2 0.029985 7 0.029898 17 0.025065 15 0.005115 21 0.08156 22 0.068745 12 0.06172 11 0.060616 18 0.053825 9 0.051043 10 0.050888 13 0.049484 23 0.043815 14 0.043663 24 0.042115 19 0.041584 4 0.036705 5 0.036472 0 0.033433 6 0.032338 3 0.031792 1 0.030127 20 0.030007 8 0.030006 2 0.029985 7 0.029898 17 0.025065 15 0.005115 21 0.07570811725123087 22 0.0637983939310969 12 0.06364308900213979 11 0.05949535615342921 18 0.0555008792250535 13 0.053164622625078005 10 0.049748380254604305 19 0.04583863116834185 9 0.045293183275846936 14 0.044603550939059586 23 0.0433784378111012 24 0.04008625944014836 0 0.03609302681098437 20 0.03433926234638644 4 0.03281113594998098 5 0.03248229307061454 17 0.031471922963035005 6 0.029800507065344622 3 0.02725198480835521 1 0.026911180749856357 8 0.026895884165900594 7 0.02686337919520249 2 0.026656917386458603 16 0.012880919971597944 15 0.012182611898515055 __DUMMY__ 0.003100072540637262 false 1.0
417 16 0.137014 17 0.121332 15 0.103144 19 0.084362 18 0.083095 0 0.073361 20 0.058622 10 0.044621 22 0.040516 11 0.033409 14 0.032923 23 0.028527 9 0.027597 12 0.023201 24 0.0201 13 0.015906 6 0.012752 21 0.01266 8 0.00962 7 0.009384 1 0.009319 2 0.008134 4 0.005518 5 0.004882 16 0.137014 17 0.121332 15 0.103144 19 0.084362 18 0.083095 0 0.073361 20 0.058622 10 0.044621 22 0.040516 11 0.033409 14 0.032923 23 0.028527 9 0.027597 12 0.023201 24 0.0201 13 0.015906 6 0.012752 21 0.01266 8 0.00962 7 0.009384 1 0.009319 2 0.008134 4 0.005518 5 0.004882 16 0.0948574284410396 17 0.09054179934300675 15 0.07143568877983705 18 0.07063685427590062 19 0.06882269910867966 0 0.06217846068301515 20 0.04836590981437855 22 0.04622756573531072 10 0.045672911214561275 11 0.039326875538751575 9 0.03558541350629169 23 0.03305575367633595 14 0.032496497966448774 12 0.029641689231410268 21 0.027589701981305628 24 0.026098563831105738 6 0.02254506769423503 13 0.022105679407940556 8 0.020211349245803062 7 0.0200231390511448 1 0.01991872436240721 2 0.01914527420845521 4 0.018648556856747146 5 0.018118779078427683 3 0.014276751209468 __DUMMY__ 0.00247286575799234 false 1.0
418 15 0.161702 16 0.111034 18 0.092733 17 0.092558 20 0.083206 19 0.082174 14 0.081053 10 0.058591 0 0.0403 24 0.037591 23 0.032021 22 0.031416 9 0.022305 13 0.019602 11 0.014153 8 0.006339 7 0.005901 6 0.005474 1 0.005311 2 0.004793 21 0.003596 4 0.002889 5 0.002797 3 0.002461 15 0.161702 16 0.111034 18 0.092733 17 0.092558 20 0.083206 19 0.082174 14 0.081053 10 0.058591 0 0.0403 24 0.037591 23 0.032021 22 0.031416 9 0.022305 13 0.019602 11 0.014153 8 0.006339 7 0.005901 6 0.005474 1 0.005311 2 0.004793 21 0.003596 4 0.002889 5 0.002797 3 0.002461 15 0.10659989402353112 18 0.07873733755895243 16 0.07641692089359763 17 0.07004692931030446 19 0.068913206535062 14 0.06740063467129977 20 0.06553669962297066 10 0.05598930367172697 22 0.041259039831504224 0 0.0395193054751793 24 0.03694252030214146 23 0.03556496497279113 13 0.03226042498959075 9 0.03051525326549885 11 0.029809294055808778 21 0.027162672697451012 12 0.02206894108567197 6 0.01508344974226322 8 0.014661520040901911 7 0.014394078913043354 4 0.014313049183103622 5 0.01405463784313452 1 0.01403962854517361 2 0.013624120514358826 3 0.012300059638862437 __DUMMY__ 0.0027861126160760538 false 1.0
419 16 0.137498 17 0.120608 15 0.103699 19 0.084769 18 0.081369 0 0.072535 20 0.058577 10 0.045763 22 0.040161 11 0.033652 14 0.033558 9 0.0278 23 0.02774 12 0.023303 24 0.02021 13 0.015323 6 0.013522 21 0.011473 8 0.010035 7 0.010003 1 0.008846 2 0.008187 4 0.00615 5 0.005219 16 0.137498 17 0.120608 15 0.103699 19 0.084769 18 0.081369 0 0.072535 20 0.058577 10 0.045763 22 0.040161 11 0.033652 14 0.033558 9 0.0278 23 0.02774 12 0.023303 24 0.02021 13 0.015323 6 0.013522 21 0.011473 8 0.010035 7 0.010003 1 0.008846 2 0.008187 4 0.00615 5 0.005219 16 0.09510534266261016 17 0.09022091873335447 15 0.0717897200066038 18 0.06988176738927582 19 0.06902943225862229 0 0.0617806279192659 20 0.04838776552585343 10 0.046208149961565415 22 0.04604994729124436 11 0.0394136508384866 9 0.03565845195878613 14 0.03284347870500192 23 0.03269546032011304 12 0.02966677759739292 21 0.027028222979664906 24 0.026158195990531926 6 0.022869743531702767 13 0.021848510221055054 8 0.020376507362951657 7 0.020280944045496897 1 0.019679189883306927 2 0.019145151479204345 4 0.018910978006084572 5 0.01824724255625519 3 0.014253845998106009 __DUMMY__ 0.0024699767774634097 false 1.0
660 16 0.108125 19 0.097167 17 0.09206 20 0.073343 18 0.067943 24 0.057485 0 0.057347 21 0.056536 22 0.056136 12 0.055068 11 0.051885 23 0.048595 15 0.02756 10 0.026593 9 0.021748 6 0.014129 4 0.012441 5 0.011847 8 0.011773 7 0.011568 1 0.01112 2 0.011043 13 0.010382 3 0.008105 16 0.108125 19 0.097167 17 0.09206 20 0.073343 18 0.067943 24 0.057485 0 0.057347 21 0.056536 22 0.056136 12 0.055068 11 0.051885 23 0.048595 15 0.02756 10 0.026593 9 0.021748 6 0.014129 4 0.012441 5 0.011847 8 0.011773 7 0.011568 1 0.01112 2 0.011043 13 0.010382 3 0.008105 19 0.08048319115890942 16 0.0797880410109559 17 0.07300779921961266 18 0.064706504830883 20 0.06197677362569649 21 0.05705888556050378 22 0.05595385231370683 12 0.05285134066914168 11 0.05080201240494606 24 0.05045613153873822 0 0.04959943953797486 23 0.04590706833080508 10 0.03507739778390849 15 0.03071069535627577 9 0.028966021410076027 13 0.023494987439888974 6 0.01922514951855134 4 0.018841840097622235 5 0.018338493384263778 14 0.01819012459345649 8 0.01706424168901296 7 0.01693293360603708 1 0.016636167992003837 2 0.016410004957752033 3 0.014674553934643689 __DUMMY__ 0.002846348034633329 false 1.0
661 17 0.071437 0 0.064727 22 0.058179 9 0.057208 16 0.056077 18 0.053656 19 0.048254 6 0.043853 8 0.043548 1 0.043396 7 0.043357 11 0.042697 4 0.042555 2 0.042393 5 0.042201 3 0.040803 10 0.040801 21 0.033534 23 0.033036 24 0.028668 20 0.024949 15 0.022435 12 0.017128 14 0.005108 17 0.071437 0 0.064727 22 0.058179 9 0.057208 16 0.056077 18 0.053656 19 0.048254 6 0.043853 8 0.043548 1 0.043396 7 0.043357 11 0.042697 4 0.042555 2 0.042393 5 0.042201 3 0.040803 10 0.040801 21 0.033534 23 0.033036 24 0.028668 20 0.024949 15 0.022435 12 0.017128 14 0.005108 17 0.06532491908544918 0 0.061162683330034225 22 0.05910759484554386 9 0.05690804100187596 18 0.05277865147856488 16 0.048501027611371435 19 0.045898629333787126 11 0.044643250516117915 6 0.0432285768727908 10 0.042545481805933545 4 0.042498759307451485 8 0.04245484044916355 7 0.04231666907821741 1 0.04225567363772205 5 0.042044718493545415 2 0.04149022747518194 3 0.040107757240567116 21 0.038286686148680374 23 0.03416198871805903 24 0.028221174392112955 20 0.023336046235475343 12 0.021924829884350912 15 0.021081786988369444 14 0.010937072428465335 13 0.007004257998304585 __DUMMY__ 0.0017786556428638855 false 1.0
662 0 0.086041 17 0.07887 9 0.065832 22 0.062367 11 0.058418 10 0.055517 18 0.055196 16 0.053023 6 0.045498 1 0.0429 8 0.042844 7 0.042822 2 0.04196 4 0.041897 5 0.041433 19 0.037457 3 0.037244 21 0.033344 12 0.024287 23 0.02163 13 0.012286 15 0.011678 14 0.004187 24 0.003267 0 0.086041 17 0.07887 9 0.065832 22 0.062367 11 0.058418 10 0.055517 18 0.055196 16 0.053023 6 0.045498 1 0.0429 8 0.042844 7 0.042822 2 0.04196 4 0.041897 5 0.041433 19 0.037457 3 0.037244 21 0.033344 12 0.024287 23 0.02163 13 0.012286 15 0.011678 14 0.004187 24 0.003267 0 0.07244166825061893 17 0.06904242377280566 9 0.061753161503811674 22 0.06057518281675469 18 0.05288649492096049 11 0.05205813928178842 10 0.04996526470913222 16 0.04659147631577945 6 0.04509292033632905 8 0.04313712464467788 7 0.04309159205831803 4 0.043064507113959455 1 0.043056816423453624 5 0.04256956893499335 2 0.04231316513227085 19 0.03924829156671938 3 0.03924303441557309 21 0.03701194194293437 23 0.0283783971748628 12 0.024849503537275344 15 0.015106623224271046 24 0.014466711738364384 13 0.012819190182271976 20 0.009626234845876864 14 0.009616635608832197 __DUMMY__ 0.0019939295473646416 false 1.0
420 16 0.101616 17 0.094059 0 0.067729 19 0.062665 18 0.051077 15 0.048399 20 0.043171 22 0.040531 23 0.039825 6 0.037382 8 0.03634 9 0.035998 7 0.035963 1 0.035948 2 0.0356 24 0.034392 11 0.034309 4 0.032326 5 0.031854 3 0.03039 10 0.027038 12 0.02359 21 0.018749 13 0.001048 16 0.101616 17 0.094059 0 0.067729 19 0.062665 18 0.051077 15 0.048399 20 0.043171 22 0.040531 23 0.039825 6 0.037382 8 0.03634 9 0.035998 7 0.035963 1 0.035948 2 0.0356 24 0.034392 11 0.034309 4 0.032326 5 0.031854 3 0.03039 10 0.027038 12 0.02359 21 0.018749 13 0.001048 16 0.07965822413189055 17 0.07929549315848566 0 0.0609538567190911 19 0.05857888334422365 18 0.054580877907214366 22 0.04655424407866959 15 0.043154725791382256 9 0.04011620700567684 20 0.04000543018606052 11 0.03964557329173978 23 0.03855017968052392 10 0.03591553596790396 6 0.035213736303519365 8 0.03386391832133088 7 0.03361212461209518 1 0.03352804495570165 2 0.033130446411851 24 0.03266974794365964 4 0.03216570165549914 5 0.03170238506217364 21 0.029828267534213252 3 0.029488105651448517 12 0.029087840074972966 14 0.013411026487993284 13 0.012627723025827596 __DUMMY__ 0.0026617006968518036 false 1.0
421 17 0.086271 16 0.082974 0 0.070558 19 0.057562 22 0.052132 18 0.051647 9 0.045887 11 0.044885 6 0.038643 8 0.036879 7 0.0367 1 0.03665 2 0.036296 4 0.034722 5 0.034424 23 0.034223 10 0.034072 3 0.031783 21 0.031559 20 0.030877 12 0.030759 24 0.027673 15 0.025712 13 0.007113 17 0.086271 16 0.082974 0 0.070558 19 0.057562 22 0.052132 18 0.051647 9 0.045887 11 0.044885 6 0.038643 8 0.036879 7 0.0367 1 0.03665 2 0.036296 4 0.034722 5 0.034424 23 0.034223 10 0.034072 3 0.031783 21 0.031559 20 0.030877 12 0.030759 24 0.027673 15 0.025712 13 0.007113 17 0.07732262665611715 16 0.070180818311315 0 0.06603419122234898 19 0.05328392938906762 22 0.05312431414437781 18 0.05215492283238899 9 0.04778479165674166 11 0.045302370389931394 6 0.03930874453448345 10 0.037802525825957584 8 0.03756135243161733 7 0.03741495064182078 1 0.03733782868235114 2 0.03688809839397832 4 0.03644981443749962 5 0.036059283664328375 23 0.03529962825049748 21 0.03469484853183368 3 0.03324352679204425 12 0.030789545144628158 20 0.02886069192762899 24 0.027262844972623188 15 0.025444269013598537 13 0.01155439763684937 14 0.00668267792231523 __DUMMY__ 0.0021570065936561507 false 1.0
663 16 0.104701 17 0.090871 19 0.077963 0 0.057153 22 0.056029 24 0.055607 20 0.052773 18 0.047861 21 0.046218 11 0.045973 23 0.045749 12 0.042465 15 0.032557 9 0.028598 6 0.027416 8 0.025564 1 0.025249 7 0.025229 2 0.02492 4 0.02474 5 0.024465 3 0.021354 10 0.012792 13 0.003753 16 0.104701 17 0.090871 19 0.077963 0 0.057153 22 0.056029 24 0.055607 20 0.052773 18 0.047861 21 0.046218 11 0.045973 23 0.045749 12 0.042465 15 0.032557 9 0.028598 6 0.027416 8 0.025564 1 0.025249 7 0.025229 2 0.02492 4 0.02474 5 0.024465 3 0.021354 10 0.012792 13 0.003753 16 0.07847619729566925 17 0.07580702470026611 19 0.06565886975377673 22 0.05530426584045293 0 0.05464243587840372 18 0.05176224747751975 11 0.045906446116571846 21 0.04541063754787663 24 0.044776675328058124 20 0.044319016997175324 23 0.04271476796164364 12 0.039231789729017905 9 0.036898889026946685 6 0.031188454349053017 15 0.030964867716777724 4 0.029635985560431923 8 0.02947418968503179 7 0.029264593459114748 5 0.029260900555733528 1 0.029202919459714573 2 0.0287994968415229 10 0.027534088059391223 3 0.026248826934040587 13 0.013041971680033987 14 0.011381132811578376 __DUMMY__ 0.0030933092341971363 false 1.0
664 19 0.096025 20 0.092183 21 0.089308 12 0.081017 18 0.07667 24 0.071008 22 0.060126 11 0.056791 23 0.054558 13 0.053667 16 0.053139 14 0.047567 10 0.043375 17 0.041901 15 0.025357 0 0.020946 9 0.017753 4 0.006866 5 0.006108 3 0.00282 6 0.002052 7 3.74E-4 8 3.58E-4 1 3.3E-5 19 0.096025 20 0.092183 21 0.089308 12 0.081017 18 0.07667 24 0.071008 22 0.060126 11 0.056791 23 0.054558 13 0.053667 16 0.053139 14 0.047567 10 0.043375 17 0.041901 15 0.025357 0 0.020946 9 0.017753 4 0.006866 5 0.006108 3 0.00282 6 0.002052 7 3.74E-4 8 3.58E-4 1 3.3E-5 21 0.08364687310476814 19 0.0834937584788289 20 0.07617027276049214 12 0.0726507702686068 18 0.07076900651051862 24 0.06292543931893689 22 0.06189122760236463 11 0.057148722089931464 23 0.051300591869631804 13 0.04984107614897761 14 0.04621728106869974 16 0.04512313849473465 10 0.044042269339797914 17 0.040706168833735595 0 0.025184038545593146 9 0.02500394840670865 15 0.024424315884251833 4 0.013592101514242848 5 0.012990566325996166 6 0.00932845017262215 3 0.00925129669242487 7 0.0074335677166790645 8 0.007388047459493447 1 0.007139644835254485 2 0.006953528363360149 __DUMMY__ 0.0053838981933482044 false 1.0
422 15 0.160664 14 0.116149 18 0.077175 20 0.067376 10 0.066126 19 0.048898 13 0.046275 16 0.044585 17 0.040094 24 0.036778 23 0.034224 9 0.033648 22 0.02826 3 0.022117 5 0.020871 8 0.020287 4 0.02024 1 0.020137 7 0.019889 2 0.019858 6 0.018269 21 0.013716 0 0.013346 11 0.011017 15 0.160664 14 0.116149 18 0.077175 20 0.067376 10 0.066126 19 0.048898 13 0.046275 16 0.044585 17 0.040094 24 0.036778 23 0.034224 9 0.033648 22 0.02826 3 0.022117 5 0.020871 8 0.020287 4 0.02024 1 0.020137 7 0.019889 2 0.019858 6 0.018269 21 0.013716 0 0.013346 11 0.011017 15 0.10925442981219505 14 0.08899545384890208 18 0.07307258712285504 10 0.061153533545082316 20 0.060971973810688446 19 0.05370320850808532 13 0.04677317755617253 17 0.04129633588976229 16 0.04099394404565237 22 0.03981150549445663 24 0.03852694579473622 23 0.03734542627147982 9 0.035365246138205145 21 0.033445864011466195 11 0.02730234409636418 0 0.02275627550749479 12 0.02189828650988586 5 0.021875521193147486 4 0.0217966305837977 3 0.02111671700152297 8 0.020094135740865087 1 0.019876305398277127 7 0.019861233243353663 6 0.019747278953273335 2 0.019600689249017596 __DUMMY__ 0.0033649506732606744 false 1.0
423 15 0.157622 14 0.115275 18 0.076197 20 0.067967 10 0.066385 19 0.048684 13 0.045915 16 0.044728 17 0.038647 24 0.035235 9 0.034448 23 0.034255 22 0.028699 3 0.022187 4 0.021598 7 0.021486 5 0.021212 8 0.020942 1 0.020248 2 0.019952 6 0.019926 21 0.014384 0 0.01312 11 0.010886 15 0.157622 14 0.115275 18 0.076197 20 0.067967 10 0.066385 19 0.048684 13 0.045915 16 0.044728 17 0.038647 24 0.035235 9 0.034448 23 0.034255 22 0.028699 3 0.022187 4 0.021598 7 0.021486 5 0.021212 8 0.020942 1 0.020248 2 0.019952 6 0.019926 21 0.014384 0 0.01312 11 0.010886 15 0.10787387806392455 14 0.08859883231773237 18 0.07262875831957315 10 0.061271107566746495 20 0.0612402248185135 19 0.05360610971040444 13 0.04660981401088117 16 0.04105886271327756 17 0.04063963861326484 22 0.040010762216683406 24 0.037826677988523544 23 0.037359512464927865 9 0.03572833946224292 21 0.033749048714248116 11 0.027242902583881245 0 0.022653716505549204 4 0.022412964148130373 5 0.02203029280916785 12 0.021898296448348568 3 0.021148495846716634 7 0.020586035264813198 6 0.0204993117185382 8 0.02039141437831396 1 0.019926691390788332 2 0.019643359724376475 __DUMMY__ 0.003364952200432071 false 1.0
665 17 0.093637 16 0.091672 0 0.079427 19 0.069106 18 0.060589 11 0.059987 22 0.055628 12 0.046803 21 0.042322 10 0.042164 9 0.039715 20 0.033831 23 0.032928 6 0.027855 8 0.024524 24 0.024519 1 0.024369 7 0.024292 2 0.023758 4 0.023306 5 0.023029 15 0.021181 3 0.017928 13 0.01743 17 0.093637 16 0.091672 0 0.079427 19 0.069106 18 0.060589 11 0.059987 22 0.055628 12 0.046803 21 0.042322 10 0.042164 9 0.039715 20 0.033831 23 0.032928 6 0.027855 8 0.024524 24 0.024519 1 0.024369 7 0.024292 2 0.023758 4 0.023306 5 0.023029 15 0.021181 3 0.017928 13 0.01743 17 0.07874164550717062 16 0.0739103101632793 0 0.06693456505058659 19 0.060862548841367825 18 0.057435474415984136 22 0.0544080557296418 11 0.05233231373323744 9 0.0424696654876176 21 0.04203046287173151 10 0.04140226648533907 12 0.04099904729718929 23 0.036185494926921934 20 0.03419677177723772 6 0.0321228509188783 8 0.02962791156934829 7 0.029462804620360127 1 0.029440105377045257 4 0.02933359963776203 5 0.02896147759703938 2 0.0289029855055119 24 0.028570444360636774 15 0.025365219750839343 3 0.024941680497954567 13 0.019232663833998905 14 0.009999831550682514 __DUMMY__ 0.002129802492637595 false 1.0
666 19 0.107293 18 0.079682 20 0.078745 16 0.07796 21 0.076269 22 0.066209 17 0.06342 11 0.062773 12 0.060631 24 0.055437 10 0.052308 23 0.046351 0 0.042179 14 0.031691 13 0.029556 9 0.026992 15 0.026389 4 0.005112 5 0.004247 3 0.00199 6 0.001776 7 0.00109 1 0.001004 8 8.97E-4 19 0.107293 18 0.079682 20 0.078745 16 0.07796 21 0.076269 22 0.066209 17 0.06342 11 0.062773 12 0.060631 24 0.055437 10 0.052308 23 0.046351 0 0.042179 14 0.031691 13 0.029556 9 0.026992 15 0.026389 4 0.005112 5 0.004247 3 0.00199 6 0.001776 7 0.00109 1 0.001004 8 8.97E-4 19 0.08885919102797415 21 0.07479826718997909 18 0.07197688603142194 20 0.06743425146852833 22 0.06492649980179702 11 0.060177527483408245 12 0.06011234518165367 16 0.059862973606261305 17 0.05402593395351261 24 0.05317413526627908 10 0.048727375447551825 23 0.04635661367133286 0 0.03856083274202185 14 0.03553065222157562 13 0.03498974842771211 9 0.030726876072060337 15 0.024469147143372855 4 0.013386898302033295 5 0.012745130278652374 6 0.01018713961165128 3 0.009604840772841293 7 0.008804401621979659 8 0.008683432615988522 1 0.008633434081139743 2 0.007982835393552058 __DUMMY__ 0.0052626305857188275 false 1.0
424 16 0.115156 17 0.09539 19 0.084947 20 0.068272 18 0.060394 0 0.058786 12 0.049513 24 0.047896 23 0.047765 22 0.041191 11 0.038636 15 0.038477 21 0.035164 6 0.023687 10 0.021941 8 0.021653 7 0.021125 1 0.020903 9 0.020735 2 0.020412 4 0.019166 5 0.018487 13 0.015202 3 0.015103 16 0.115156 17 0.09539 19 0.084947 20 0.068272 18 0.060394 0 0.058786 12 0.049513 24 0.047896 23 0.047765 22 0.041191 11 0.038636 15 0.038477 21 0.035164 6 0.023687 10 0.021941 8 0.021653 7 0.021125 1 0.020903 9 0.020735 2 0.020412 4 0.019166 5 0.018487 13 0.015202 3 0.015103 16 0.08856816795661204 17 0.08155984098395277 19 0.07087241182259436 18 0.059025019609571426 0 0.05754212420912988 20 0.052778660479338525 22 0.04729060773741095 23 0.0427740071607233 11 0.042409144615486415 12 0.04210306489395337 24 0.039967781712608993 21 0.03809937119844868 15 0.036488099620448765 10 0.03243746558857509 9 0.03223965123092408 6 0.02835578288410037 8 0.02649563717781292 7 0.026181562920917674 1 0.026000614322236854 2 0.025529725711266132 4 0.02547035717027902 5 0.024903170658485383 3 0.021746513944574483 13 0.017902658250446256 14 0.010788367980233367 __DUMMY__ 0.0024701901598688128 false 1.0
425 18 0.099531 19 0.086432 10 0.081084 20 0.079196 14 0.065073 21 0.06164 22 0.054786 12 0.054728 11 0.05472 13 0.054663 15 0.053721 16 0.049662 17 0.049489 24 0.038114 0 0.037818 23 0.033709 9 0.032869 4 0.004329 5 0.004147 6 0.001667 3 0.001407 7 5.16E-4 8 3.98E-4 1 3.03E-4 18 0.099531 19 0.086432 10 0.081084 20 0.079196 14 0.065073 21 0.06164 22 0.054786 12 0.054728 11 0.05472 13 0.054663 15 0.053721 16 0.049662 17 0.049489 24 0.038114 0 0.037818 23 0.033709 9 0.032869 4 0.004329 5 0.004147 6 0.001667 3 0.001407 7 5.16E-4 8 3.98E-4 1 3.03E-4 18 0.08924966027381649 19 0.07564703979663644 10 0.0752194899999663 20 0.06534912728270512 21 0.06197833301458784 14 0.06122263433967675 22 0.058790164117768606 11 0.05518363755660879 12 0.04961483360313456 13 0.04892445313393689 15 0.04788453555149564 17 0.04642916797770819 16 0.04077460100033823 0 0.03868835681149291 9 0.03867174327121806 24 0.03656254313585434 23 0.03428453519979143 4 0.012183421070465975 5 0.011868794957940925 6 0.009216711121789138 3 0.008919296404768573 7 0.007901195194336328 8 0.007838741612316931 1 0.007687972031935926 2 0.007377531973744477 __DUMMY__ 0.0025314795659652028 false 1.0
667 19 0.106929 18 0.07927 20 0.07846 16 0.078047 21 0.07639 22 0.066462 17 0.063106 11 0.063079 12 0.060911 24 0.055857 10 0.052205 23 0.046633 0 0.042231 14 0.032088 13 0.029332 9 0.026805 15 0.026363 4 0.005155 5 0.004475 3 0.001994 6 0.001683 8 0.001005 7 8.28E-4 1 6.93E-4 19 0.106929 18 0.07927 20 0.07846 16 0.078047 21 0.07639 22 0.066462 17 0.063106 11 0.063079 12 0.060911 24 0.055857 10 0.052205 23 0.046633 0 0.042231 14 0.032088 13 0.029332 9 0.026805 15 0.026363 4 0.005155 5 0.004475 3 0.001994 6 0.001683 8 0.001005 7 8.28E-4 1 6.93E-4 19 0.0886922068577593 21 0.07485377566414395 18 0.0717878819706293 20 0.06730350836822274 22 0.06504256297505077 11 0.06031790428584163 12 0.06024079454335743 16 0.05990288465793355 17 0.053881887169316266 24 0.05336680930883471 10 0.04868012443235367 23 0.04648598052847735 0 0.03858468762348113 14 0.03571277506656274 13 0.03488698893834912 9 0.030641090248351058 15 0.024457219702643227 4 0.013406624454009232 5 0.012849724758896857 6 0.010144476073656825 3 0.009606675763722778 8 0.008732977369788541 7 0.008684209719242582 1 0.008490763540104512 2 0.007982835393552063 __DUMMY__ 0.005262630585718829 false 1.0
668 19 0.107263 18 0.079188 20 0.078435 16 0.077968 21 0.076248 22 0.066545 11 0.06346 17 0.063402 12 0.060958 24 0.05664 10 0.051929 23 0.045831 0 0.042324 14 0.032179 13 0.029346 9 0.026638 15 0.026312 4 0.005111 5 0.004736 3 0.002007 6 0.001583 8 8.07E-4 1 5.65E-4 7 5.27E-4 19 0.107263 18 0.079188 20 0.078435 16 0.077968 21 0.076248 22 0.066545 11 0.06346 17 0.063402 12 0.060958 24 0.05664 10 0.051929 23 0.045831 0 0.042324 14 0.032179 13 0.029346 9 0.026638 15 0.026312 4 0.005111 5 0.004736 3 0.002007 6 0.001583 8 8.07E-4 1 5.65E-4 7 5.27E-4 19 0.08884538783874389 21 0.07478859917875193 18 0.07175023174230366 20 0.06729200880515782 22 0.06508060918026042 11 0.06049265941643317 12 0.06026232804100921 16 0.05986661612435058 17 0.054017651714071344 24 0.05372598412721207 10 0.04855348778772956 23 0.04611804370019276 0 0.03862733344127442 14 0.03575450470681891 13 0.034893395399168706 9 0.030564465357670368 15 0.0244338123599486 4 0.013386433413317115 5 0.012969451964207037 6 0.01009859666891157 3 0.009612635074313166 8 0.008642141356592527 7 0.00854612273489673 1 0.008432039963717974 2 0.0079828317314462 __DUMMY__ 0.005262628171500151 false 1.0
426 16 0.135461 17 0.121838 15 0.101745 19 0.084553 18 0.081824 0 0.07191 20 0.058215 10 0.043733 22 0.039339 11 0.034203 14 0.032966 9 0.027849 23 0.02784 12 0.023398 24 0.021354 13 0.016288 6 0.013336 21 0.013293 1 0.010906 8 0.010332 7 0.010197 2 0.008074 4 0.006389 5 0.004958 16 0.135461 17 0.121838 15 0.101745 19 0.084553 18 0.081824 0 0.07191 20 0.058215 10 0.043733 22 0.039339 11 0.034203 14 0.032966 9 0.027849 23 0.02784 12 0.023398 24 0.021354 13 0.016288 6 0.013336 21 0.013293 1 0.010906 8 0.010332 7 0.010197 2 0.008074 4 0.006389 5 0.004958 16 0.09405563746634123 17 0.09062289907833365 15 0.0713346182562473 18 0.0701720412729267 19 0.06891356071908526 0 0.061295750029091677 20 0.04836357042669253 22 0.045598827510404005 10 0.045382543540375485 11 0.039547786474826985 9 0.03563625788377317 14 0.032954728684536784 23 0.032743615872460774 12 0.029616062347500326 21 0.02780734716656409 24 0.026724392799405212 6 0.02271570880629175 13 0.022414756734163325 1 0.020559241216712477 8 0.020454511588327888 7 0.020312915694715522 2 0.019037238289155677 4 0.018970640385506138 5 0.018081255135987333 3 0.014221566012803947 __DUMMY__ 0.0024625266077706923 false 1.0
669 17 0.101861 16 0.099045 0 0.086089 18 0.080713 19 0.078825 11 0.063231 12 0.057262 10 0.054705 22 0.054486 20 0.042977 21 0.04082 9 0.035099 23 0.034518 13 0.027885 15 0.020551 6 0.019461 24 0.014614 8 0.014335 7 0.01407 4 0.013876 1 0.013626 2 0.013465 5 0.01297 3 0.005514 17 0.101861 16 0.099045 0 0.086089 18 0.080713 19 0.078825 11 0.063231 12 0.057262 10 0.054705 22 0.054486 20 0.042977 21 0.04082 9 0.035099 23 0.034518 13 0.027885 15 0.020551 6 0.019461 24 0.014614 8 0.014335 7 0.01407 4 0.013876 1 0.013626 2 0.013465 5 0.01297 3 0.005514 17 0.07819762325542028 16 0.07190277630820818 18 0.06762366889683531 0 0.06638818738982322 19 0.06521127763682899 22 0.05491536719817436 11 0.05310423021027464 10 0.04813755882231683 12 0.04500935143535702 21 0.04336932026864906 9 0.041087710114088946 20 0.04017538031492467 23 0.037916621153737756 6 0.02813687173726159 24 0.0262086756075983 4 0.025642862654073322 8 0.025095645396041456 5 0.024968623881622718 7 0.02495257175836771 1 0.024673170157295532 15 0.024640766427631224 2 0.02432514815737154 13 0.023982330326228346 3 0.020174349470978892 14 0.012376583776691616 __DUMMY__ 0.0017833276441984352 false 1.0
427 14 0.104329 10 0.09909 18 0.096593 15 0.080149 19 0.065838 22 0.065615 13 0.064876 21 0.064079 11 0.061842 20 0.054944 9 0.046865 12 0.040207 0 0.03613 17 0.035983 24 0.025707 16 0.022253 23 0.017818 4 0.006419 5 0.005591 3 0.003101 6 0.001709 7 4.59E-4 8 3.74E-4 1 2.9E-5 14 0.104329 10 0.09909 18 0.096593 15 0.080149 19 0.065838 22 0.065615 13 0.064876 21 0.064079 11 0.061842 20 0.054944 9 0.046865 12 0.040207 0 0.03613 17 0.035983 24 0.025707 16 0.022253 23 0.017818 4 0.006419 5 0.005591 3 0.003101 6 0.001709 7 4.59E-4 8 3.74E-4 1 2.9E-5 18 0.08674382371030932 10 0.08395509015390394 14 0.08310070021882959 19 0.06343948254375982 15 0.06321962238562123 22 0.06303837298105736 21 0.06269773155248168 11 0.058469866241178045 13 0.056798724039045255 20 0.052105546951997816 9 0.04514823787864164 12 0.04328969667248469 17 0.03894076116474582 0 0.03746344692526301 24 0.029488742305483474 16 0.026274914735268426 23 0.026086202348889705 4 0.013319282717845516 5 0.012727688607361402 3 0.009731348656104644 6 0.009525986541976663 7 0.008028883090904321 8 0.007999639053372419 1 0.007736988362701887 2 0.007567115155044344 __DUMMY__ 0.00310210500572808 false 1.0
428 15 0.160973 14 0.116391 18 0.076582 20 0.067425 10 0.066295 19 0.048628 13 0.046107 16 0.04445 17 0.039701 24 0.036677 23 0.034263 9 0.033274 22 0.028629 3 0.022458 5 0.020582 8 0.020466 4 0.020394 7 0.020239 2 0.020201 1 0.020082 6 0.018423 21 0.013674 0 0.013219 11 0.010867 15 0.160973 14 0.116391 18 0.076582 20 0.067425 10 0.066295 19 0.048628 13 0.046107 16 0.04445 17 0.039701 24 0.036677 23 0.034263 9 0.033274 22 0.028629 3 0.022458 5 0.020582 8 0.020466 4 0.020394 7 0.020239 2 0.020201 1 0.020082 6 0.018423 21 0.013674 0 0.013219 11 0.010867 15 0.10944384967212341 14 0.08931872079322296 18 0.0728167430292148 10 0.061305614516463276 20 0.06102247551696529 19 0.05351470193278791 13 0.0468324518649035 17 0.04088813875652126 16 0.04065748100978691 22 0.03998942912922223 24 0.038525384816953945 23 0.03738557371713368 9 0.03520527267018886 21 0.03351460809407083 11 0.02722740552652779 0 0.022544313069429747 12 0.02192624781982689 4 0.021878562147128182 5 0.021758354307678626 3 0.021291129569718886 8 0.02016501403249011 7 0.020010319003878865 1 0.01984044562413626 6 0.01980146242194444 2 0.01974938151061805 __DUMMY__ 0.0033869194470633546 false 1.0
429 15 0.122811 14 0.122106 20 0.089074 18 0.086718 10 0.072271 13 0.067377 19 0.067183 24 0.054102 21 0.051678 22 0.041968 23 0.039675 12 0.035039 16 0.028208 11 0.028027 9 0.025527 17 0.021705 3 0.008939 4 0.008793 5 0.008353 7 0.004675 8 0.004477 1 0.004155 2 0.003897 6 0.003241 15 0.122811 14 0.122106 20 0.089074 18 0.086718 10 0.072271 13 0.067377 19 0.067183 24 0.054102 21 0.051678 22 0.041968 23 0.039675 12 0.035039 16 0.028208 11 0.028027 9 0.025527 17 0.021705 3 0.008939 4 0.008793 5 0.008353 7 0.004675 8 0.004477 1 0.004155 2 0.003897 6 0.003241 14 0.09060524167990645 15 0.08529229039578161 18 0.0787416028595206 20 0.0749873936289627 19 0.06639015580241697 10 0.06333014125706796 13 0.058011515827705314 21 0.05752575618011304 24 0.05060230278443055 22 0.04877552595927955 12 0.04355275079984544 23 0.04178448246627833 11 0.03823591881116693 16 0.03210631199899769 17 0.030495191172677242 9 0.02978830495321162 4 0.014621801644008607 0 0.014210801408607275 5 0.014196224910675048 3 0.012880724976942546 6 0.010248264928370849 7 0.010177630878229026 8 0.010101238838212007 1 0.009821483638711681 2 0.009565701228108266 __DUMMY__ 0.003951240970772712 false 1.0
670 21 0.103232 22 0.092668 11 0.088093 19 0.076978 12 0.067947 18 0.06732 10 0.053052 24 0.053004 17 0.046164 20 0.044404 9 0.044099 0 0.043923 14 0.039082 13 0.036379 23 0.034272 16 0.033957 4 0.01502 5 0.014609 6 0.009501 3 0.00936 7 0.007033 1 0.00683 8 0.006753 2 0.006322 21 0.103232 22 0.092668 11 0.088093 19 0.076978 12 0.067947 18 0.06732 10 0.053052 24 0.053004 17 0.046164 20 0.044404 9 0.044099 0 0.043923 14 0.039082 13 0.036379 23 0.034272 16 0.033957 4 0.01502 5 0.014609 6 0.009501 3 0.00936 7 0.007033 1 0.00683 8 0.006753 2 0.006322 21 0.09209135658173541 22 0.08286539453154448 11 0.07723252231340495 19 0.07033748025612718 18 0.0643698988717762 12 0.06346386296526467 24 0.0506825095573298 10 0.049975166067268324 20 0.044421508675090864 17 0.04373649022575708 9 0.04258231962723732 0 0.04062731108199204 14 0.039643525508801354 23 0.03826603556323767 13 0.037942408041359406 16 0.032260030663704684 4 0.019589047557677153 5 0.019127426467953266 6 0.014930060427449928 3 0.014203851226685361 7 0.012539419966911982 8 0.012344909168514686 1 0.012281229826518381 2 0.011816181690924975 15 0.007332672725130709 __DUMMY__ 0.005337380410602154 false 1.0
671 21 0.107465 22 0.090149 11 0.086973 19 0.085236 12 0.076171 18 0.072227 24 0.056689 20 0.05534 10 0.054076 17 0.045958 13 0.042728 14 0.041201 0 0.040756 9 0.038791 16 0.037595 23 0.036846 4 0.009766 5 0.00946 6 0.004221 3 0.003644 7 0.001501 1 0.001361 8 0.00122 2 6.27E-4 21 0.107465 22 0.090149 11 0.086973 19 0.085236 12 0.076171 18 0.072227 24 0.056689 20 0.05534 10 0.054076 17 0.045958 13 0.042728 14 0.041201 0 0.040756 9 0.038791 16 0.037595 23 0.036846 4 0.009766 5 0.00946 6 0.004221 3 0.003644 7 0.001501 1 0.001361 8 0.00122 2 6.27E-4 21 0.0945405670106495 22 0.08037712245859999 11 0.07600247332808902 19 0.07499623577183856 12 0.06951720057173835 18 0.06691301483678463 24 0.053235906369872306 20 0.05153363003743924 10 0.05004019084171229 13 0.043274111217992094 17 0.04297595473338902 14 0.0416930655951561 23 0.04038941133504263 9 0.038535897229681655 0 0.03795381463006746 16 0.034392153676371155 4 0.016379004024204058 5 0.01596959400585176 6 0.01174545989407025 3 0.010671531271329148 7 0.009145084760591823 8 0.00895107291755365 1 0.008922584493176641 2 0.008366922780760401 15 0.00789538701701404 __DUMMY__ 0.005582609191024265 false 1.0
430 14 0.104581 13 0.103038 10 0.098755 18 0.088554 12 0.072035 11 0.069944 21 0.066572 15 0.06402 22 0.053218 19 0.050923 0 0.043472 20 0.041911 9 0.040526 17 0.0314 23 0.019547 16 0.015881 24 0.008773 4 0.007374 5 0.00716 6 0.006087 1 0.00169 8 0.001658 7 0.001602 2 0.001282 14 0.104581 13 0.103038 10 0.098755 18 0.088554 12 0.072035 11 0.069944 21 0.066572 15 0.06402 22 0.053218 19 0.050923 0 0.043472 20 0.041911 9 0.040526 17 0.0314 23 0.019547 16 0.015881 24 0.008773 4 0.007374 5 0.00716 6 0.006087 1 0.00169 8 0.001658 7 0.001602 2 0.001282 14 0.08505583477694878 13 0.08346756198926973 10 0.08183984575629383 18 0.07986742159824332 21 0.06667044342347532 12 0.06630426384870268 11 0.06403661640985771 22 0.05551098258380633 19 0.053404384817047984 15 0.052587932609577615 20 0.04402606573461043 0 0.04038635342854486 9 0.039909656897076706 17 0.03447572012647337 23 0.027927487682333066 16 0.02104055415743348 24 0.020776323629899666 4 0.013773132476576617 5 0.01348165307924056 6 0.012031744256563868 8 0.008321945990516012 7 0.008282743655804062 1 0.008258485935646319 2 0.007927069894078289 3 0.007319637404433772 __DUMMY__ 0.003316137837545666 false 1.0
672 22 0.081244 9 0.07039 18 0.068111 0 0.066244 17 0.06275 11 0.058941 21 0.058011 10 0.057033 19 0.05304 4 0.03829 5 0.037519 6 0.036474 8 0.035534 7 0.03542 1 0.035145 3 0.035033 2 0.034483 16 0.030226 23 0.02666 24 0.024092 12 0.02311 20 0.018097 14 0.01058 13 0.003572 22 0.081244 9 0.07039 18 0.068111 0 0.066244 17 0.06275 11 0.058941 21 0.058011 10 0.057033 19 0.05304 4 0.03829 5 0.037519 6 0.036474 8 0.035534 7 0.03542 1 0.035145 3 0.035033 2 0.034483 16 0.030226 23 0.02666 24 0.024092 12 0.02311 20 0.018097 14 0.01058 13 0.003572 22 0.0747382615946928 9 0.06283368664646963 18 0.06122976929797738 21 0.05812603764448779 0 0.057643758450699356 11 0.05665640312584716 17 0.05582751784645689 10 0.051870158468625416 19 0.05039382770071413 4 0.038371381753850575 5 0.037705799117281204 6 0.0364035231610021 8 0.035310874625272444 7 0.035238711670868866 3 0.035077437756359055 1 0.03498333269063677 2 0.034400354472564496 23 0.03155010214269117 16 0.029991155465109654 24 0.029795741341054397 12 0.028417358971404048 20 0.02218283477229285 14 0.018802096492708576 13 0.011821031788895672 15 0.008480939392289994 __DUMMY__ 0.002147903609747783 false 1.0
673 21 0.115739 22 0.088295 19 0.087648 12 0.079115 24 0.077593 11 0.07316 20 0.070022 18 0.066731 14 0.055477 13 0.049503 23 0.047834 10 0.03776 17 0.031394 9 0.031133 16 0.028095 0 0.017791 15 0.013531 4 0.010219 5 0.009957 3 0.005595 6 0.002027 8 6.79E-4 1 4.14E-4 7 2.86E-4 21 0.115739 22 0.088295 19 0.087648 12 0.079115 24 0.077593 11 0.07316 20 0.070022 18 0.066731 14 0.055477 13 0.049503 23 0.047834 10 0.03776 17 0.031394 9 0.031133 16 0.028095 0 0.017791 15 0.013531 4 0.010219 5 0.009957 3 0.005595 6 0.002027 8 6.79E-4 1 4.14E-4 7 2.86E-4 21 0.09615222540553646 22 0.07537206881524128 19 0.07425483300409245 12 0.07310857180081097 11 0.06659172693260687 18 0.06389763366919757 24 0.06229936446515817 20 0.059630576865956436 13 0.05171522920706019 14 0.05164974819112518 23 0.04652771419695435 10 0.042215839307630086 17 0.034593952404322094 9 0.033008761818512 16 0.02929570649524708 0 0.025512307463341 15 0.01771072444077998 4 0.01668388057491858 5 0.016304835208659683 3 0.011487625176540783 6 0.01117663915845145 8 0.008977270181474126 7 0.008816124674303141 1 0.008758655005538638 2 0.008387182066877592 __DUMMY__ 0.005870803469663926 false 1.0
431 16 0.09942 17 0.084442 19 0.06611 15 0.06207 20 0.057787 0 0.052116 24 0.049419 18 0.049263 23 0.048458 8 0.036377 6 0.035911 7 0.035764 1 0.035651 2 0.035524 22 0.035307 4 0.032426 3 0.032283 5 0.032252 9 0.02767 11 0.026197 12 0.020772 10 0.019645 21 0.017352 14 0.007785 16 0.09942 17 0.084442 19 0.06611 15 0.06207 20 0.057787 0 0.052116 24 0.049419 18 0.049263 23 0.048458 8 0.036377 6 0.035911 7 0.035764 1 0.035651 2 0.035524 22 0.035307 4 0.032426 3 0.032283 5 0.032252 9 0.02767 11 0.026197 12 0.020772 10 0.019645 21 0.017352 14 0.007785 16 0.0757037699443037 17 0.070379434599624 19 0.06237307236912732 18 0.05602987506873935 15 0.05455338760556804 20 0.05263137909259981 0 0.047873941723758306 23 0.04425366791301499 24 0.0435687596937713 22 0.04345383484341994 11 0.03444531778961481 9 0.0338467066461654 10 0.03351067296841132 6 0.031798699290469704 21 0.03146712967731974 8 0.03138518637260862 7 0.031038844613379787 1 0.030894821898579526 2 0.030635705111390358 4 0.030257667872852924 5 0.029938010833375578 12 0.02905378370434859 3 0.028681788311406504 14 0.02368711998398538 13 0.015434121203039669 __DUMMY__ 0.003103300869125389 false 1.0
674 21 0.082813 22 0.069472 12 0.061343 11 0.061085 18 0.055365 10 0.051617 9 0.051101 13 0.049995 23 0.044869 14 0.043436 19 0.041677 24 0.041476 4 0.03646 5 0.035764 0 0.034154 6 0.03226 3 0.03046 20 0.030401 7 0.029599 8 0.029456 1 0.029183 2 0.02863 17 0.024844 15 0.00454 21 0.082813 22 0.069472 12 0.061343 11 0.061085 18 0.055365 10 0.051617 9 0.051101 13 0.049995 23 0.044869 14 0.043436 19 0.041677 24 0.041476 4 0.03646 5 0.035764 0 0.034154 6 0.03226 3 0.03046 20 0.030401 7 0.029599 8 0.029456 1 0.029183 2 0.02863 17 0.024844 15 0.00454 21 0.07633478458086213 22 0.06416419663450074 12 0.06348550506920592 11 0.05972690998026627 18 0.0562217755135901 13 0.05338979396902744 10 0.050070098266693765 19 0.04593055138855877 9 0.0453055544844405 14 0.04451174981587968 23 0.04386947062929273 24 0.039840913920637 0 0.03639818139356802 20 0.034562994286199446 4 0.03267338221684892 5 0.03213202659475016 17 0.031365256770436396 6 0.029732014173077182 7 0.02669545531202516 3 0.02661701956704417 8 0.02661310730355419 1 0.0264472226126869 2 0.02600421741561636 16 0.012890717222288406 15 0.011917028878844993 __DUMMY__ 0.0031000720001046356 false 1.0
432 15 0.160334 14 0.116447 18 0.077616 20 0.067875 10 0.066414 19 0.048528 13 0.046253 16 0.045245 17 0.040489 24 0.036661 23 0.034815 9 0.032445 22 0.029141 3 0.021875 4 0.020159 5 0.020152 8 0.019988 2 0.019615 7 0.019556 1 0.019504 6 0.018067 0 0.014416 21 0.013709 11 0.010695 15 0.160334 14 0.116447 18 0.077616 20 0.067875 10 0.066414 19 0.048528 13 0.046253 16 0.045245 17 0.040489 24 0.036661 23 0.034815 9 0.032445 22 0.029141 3 0.021875 4 0.020159 5 0.020152 8 0.019988 2 0.019615 7 0.019556 1 0.019504 6 0.018067 0 0.014416 21 0.013709 11 0.010695 15 0.1091561173208908 14 0.08937622390713411 18 0.07329531051102177 10 0.06138095591155715 20 0.06121957197906013 19 0.05345972349875259 13 0.046926461344804805 17 0.041222032078732415 16 0.040981221884836855 22 0.040228442541216394 24 0.03850890914781051 23 0.03763066320037551 9 0.03483599277921861 21 0.03354602844732806 11 0.02715756512482941 0 0.023077734983373763 12 0.02193623401008134 4 0.021769024035775447 5 0.021560305018133046 3 0.021021846703771153 8 0.019941398413529533 7 0.019693863363375586 6 0.01963433194998382 1 0.019571685333296836 2 0.019476977285915624 __DUMMY__ 0.003391379225194644 false 1.0
675 20 0.119061 19 0.111183 24 0.090501 18 0.08037 21 0.073957 23 0.070646 16 0.063548 12 0.058644 22 0.052637 15 0.04851 14 0.047471 11 0.037567 10 0.037119 17 0.034932 13 0.029443 4 0.008744 3 0.008485 5 0.008308 9 0.007769 8 0.002838 7 0.002642 1 0.002064 2 0.002054 6 0.001505 20 0.119061 19 0.111183 24 0.090501 18 0.08037 21 0.073957 23 0.070646 16 0.063548 12 0.058644 22 0.052637 15 0.04851 14 0.047471 11 0.037567 10 0.037119 17 0.034932 13 0.029443 4 0.008744 3 0.008485 5 0.008308 9 0.007769 8 0.002838 7 0.002642 1 0.002064 2 0.002054 6 0.001505 20 0.09136936886983947 19 0.0908677066220342 18 0.07502821504482089 24 0.07239284922940072 21 0.07178197133321337 23 0.058902212469873795 22 0.05698702115235094 12 0.05544186325663996 16 0.049894286934843574 14 0.04857804070472569 11 0.04440872415474844 10 0.04334385934138682 15 0.0422769055199784 17 0.03702317866004257 13 0.03453475379666409 9 0.021132371052393194 4 0.015120115316601717 5 0.014664795989110637 0 0.01346182751431833 3 0.013361344839423346 8 0.009487742382858105 6 0.009418265704829508 7 0.00941721733212782 1 0.008997208434935254 2 0.00885611704580535 __DUMMY__ 0.0032520372970337064 false 1.0
433 14 0.109401 18 0.099956 10 0.099898 15 0.091479 13 0.065255 19 0.064781 22 0.061903 20 0.059655 21 0.059449 11 0.055344 9 0.045143 12 0.036481 17 0.034707 0 0.032118 24 0.024666 16 0.021538 23 0.020736 4 0.005828 5 0.005351 3 0.003142 6 0.001385 7 8.74E-4 8 6.28E-4 1 2.8E-4 14 0.109401 18 0.099956 10 0.099898 15 0.091479 13 0.065255 19 0.064781 22 0.061903 20 0.059655 21 0.059449 11 0.055344 9 0.045143 12 0.036481 17 0.034707 0 0.032118 24 0.024666 16 0.021538 23 0.020736 4 0.005828 5 0.005351 3 0.003142 6 0.001385 7 8.74E-4 8 6.28E-4 1 2.8E-4 14 0.08888207011873932 18 0.08775822316137566 10 0.0842772620951588 15 0.07345362581630793 19 0.061227587838621214 22 0.05925225259403871 13 0.05866659986802651 21 0.05847013207030884 20 0.05458656865198191 11 0.05322178871144444 9 0.04378182897607805 12 0.04041282373101038 17 0.03718476496928712 0 0.03399232600824724 24 0.028793860157409236 23 0.02763654239701979 16 0.025200444052558273 4 0.013419183386567462 5 0.013003946202951028 3 0.01025805860545628 6 0.00982212404882809 7 0.008734407548944665 8 0.008644570011119299 1 0.008373210675998817 2 0.008099618357945725 __DUMMY__ 0.002846179944575235 false 1.0
676 20 0.103324 19 0.09941 21 0.084581 12 0.079159 18 0.078392 24 0.077275 23 0.059879 16 0.056143 22 0.053372 13 0.05284 14 0.048956 11 0.048215 10 0.040501 17 0.039781 15 0.032901 0 0.013513 9 0.012943 4 0.006629 5 0.005982 3 0.003161 6 0.001791 8 5.13E-4 7 5.01E-4 1 2.38E-4 20 0.103324 19 0.09941 21 0.084581 12 0.079159 18 0.078392 24 0.077275 23 0.059879 16 0.056143 22 0.053372 13 0.05284 14 0.048956 11 0.048215 10 0.040501 17 0.039781 15 0.032901 0 0.013513 9 0.012943 4 0.006629 5 0.005982 3 0.003161 6 0.001791 8 5.13E-4 7 5.01E-4 1 2.38E-4 19 0.08595002600359 20 0.08395914983559796 21 0.07966324993486949 18 0.07255315802785416 12 0.0698786056830562 24 0.06698559976604126 22 0.057426089035946586 23 0.054320063282430886 11 0.05090529696096911 13 0.0484260969660977 14 0.047967434314066464 16 0.04726294434241764 10 0.04279449839816351 17 0.039460189748791605 15 0.031177886348947786 9 0.022124605846365154 0 0.020139384056339832 4 0.013328821798451587 5 0.012773715592104834 3 0.00962056367713396 6 0.00893856848050763 7 0.0074785177200151366 8 0.007459200007539337 1 0.007220329953496222 2 0.006947107843229368 __DUMMY__ 0.005238896375976566 false 1.0
434 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.08576597369643307 10 0.0808854066874304 21 0.07142338240880246 11 0.07032104985466922 19 0.06959573044278576 22 0.06901419986144558 14 0.05670769753488531 12 0.05558928487845772 13 0.052249567553354886 0 0.05155899940512368 17 0.04918889920934342 9 0.04669006390479602 20 0.04650675515922178 16 0.03485883200476108 15 0.0308155937445059 23 0.02699644420704848 24 0.025705916114818674 4 0.01282549762340675 5 0.012468802482329577 6 0.010306877429006458 3 0.007745580995077088 7 0.0077025803566222835 8 0.00759406555706231 1 0.007512501427476789 2 0.0071329804401095865 __DUMMY__ 0.0028373170210256975 false 1.0
435 15 0.125241 14 0.112611 20 0.097947 18 0.084913 19 0.071856 13 0.064872 10 0.063736 24 0.058663 23 0.044745 21 0.043183 16 0.041236 12 0.036284 22 0.032456 17 0.027878 11 0.0202 9 0.018751 3 0.00938 4 0.009066 5 0.008533 8 0.00626 7 0.006227 1 0.005624 2 0.005371 6 0.004966 15 0.125241 14 0.112611 20 0.097947 18 0.084913 19 0.071856 13 0.064872 10 0.063736 24 0.058663 23 0.044745 21 0.043183 16 0.041236 12 0.036284 22 0.032456 17 0.027878 11 0.0202 9 0.018751 3 0.00938 4 0.009066 5 0.008533 8 0.00626 7 0.006227 1 0.005624 2 0.005371 6 0.004966 15 0.08846210602454103 14 0.08669800407953754 20 0.07974658792994303 18 0.07800060792258022 19 0.06845443427126727 10 0.05921855947817627 13 0.05669851083652205 24 0.05268325593165502 21 0.05214382056903016 23 0.044263107993511755 22 0.043284552115791464 12 0.04326291805976366 16 0.038974579642703226 17 0.033704728296656085 11 0.03333684290201648 9 0.02632130179746348 4 0.014798757219971858 5 0.01433111510549569 0 0.013929579860872615 3 0.013244181742754987 6 0.011199115384471927 8 0.011149728383402818 7 0.011110878438650886 1 0.010716414503376903 2 0.01046117702059352 __DUMMY__ 0.0038051344892500202 false 1.0
677 21 0.104417 12 0.099004 23 0.077977 13 0.07656 11 0.069223 24 0.06661 22 0.062886 19 0.045247 14 0.044087 5 0.034354 20 0.034271 4 0.032933 6 0.030571 2 0.027686 1 0.025686 3 0.025633 18 0.024692 7 0.024398 8 0.023505 17 0.021536 16 0.016136 0 0.014817 9 0.011414 15 0.006354 21 0.104417 12 0.099004 23 0.077977 13 0.07656 11 0.069223 24 0.06661 22 0.062886 19 0.045247 14 0.044087 5 0.034354 20 0.034271 4 0.032933 6 0.030571 2 0.027686 1 0.025686 3 0.025633 18 0.024692 7 0.024398 8 0.023505 17 0.021536 16 0.016136 0 0.014817 9 0.011414 15 0.006354 21 0.0906070823637991 12 0.08275507810733838 13 0.06409949420811412 11 0.06367931406776159 23 0.06291186732527607 22 0.0627232214645388 24 0.05800325809736107 19 0.052789887510750484 14 0.04460730766739053 18 0.04177377133164814 20 0.041613925670338 5 0.029359881259546923 17 0.029232576840191107 4 0.029003803701169437 6 0.026351381297786695 0 0.023224923119734817 9 0.02318893458156394 2 0.022979130760648805 16 0.022919186669234322 3 0.022336774756656717 1 0.022269405019554284 7 0.02182354727432036 10 0.021468326572242184 8 0.021368610292396336 15 0.012957124126845814 __DUMMY__ 0.005952185913791906 false 1.0
436 20 0.103383 19 0.099982 21 0.084878 12 0.079574 18 0.078347 24 0.07743 23 0.060006 16 0.056704 22 0.05367 13 0.053269 14 0.048881 11 0.047915 10 0.039723 17 0.039637 15 0.033437 0 0.013282 9 0.012712 4 0.006204 5 0.005848 3 0.00321 6 0.00138 8 2.73E-4 7 2.49E-4 2 7.0E-6 20 0.103383 19 0.099982 21 0.084878 12 0.079574 18 0.078347 24 0.07743 23 0.060006 16 0.056704 22 0.05367 13 0.053269 14 0.048881 11 0.047915 10 0.039723 17 0.039637 15 0.033437 0 0.013282 9 0.012712 4 0.006204 5 0.005848 3 0.00321 6 0.00138 8 2.73E-4 7 2.49E-4 2 7.0E-6 19 0.0868686567655654 20 0.08496783156634798 21 0.07880391767330533 18 0.07333118197930184 12 0.06967482608133509 24 0.06680904441923126 22 0.05679767816872005 23 0.054460521223741905 11 0.050091878833469994 13 0.04850397165140209 16 0.04847806240520194 14 0.048018679251380036 10 0.04299079354125049 17 0.039835667595934356 15 0.032456305148146396 9 0.021670029586264027 0 0.020072296825728864 4 0.012819415034229644 5 0.012405097895666206 3 0.009394116786758396 6 0.008498991177309062 7 0.007135652424518539 8 0.0071294089474782186 1 0.0068844191120025836 2 0.006741181740824159 __DUMMY__ 0.005160374164886361 false 1.0
678 21 0.115522 24 0.089203 22 0.08599 12 0.073785 11 0.066316 14 0.063308 23 0.061886 19 0.05314 13 0.052686 20 0.0429 4 0.032529 5 0.03163 18 0.030075 9 0.029162 3 0.026254 6 0.023891 8 0.021772 1 0.021387 7 0.021273 15 0.020798 2 0.020785 17 0.011119 10 0.003534 16 0.001052 21 0.115522 24 0.089203 22 0.08599 12 0.073785 11 0.066316 14 0.063308 23 0.061886 19 0.05314 13 0.052686 20 0.0429 4 0.032529 5 0.03163 18 0.030075 9 0.029162 3 0.026254 6 0.023891 8 0.021772 1 0.021387 7 0.021273 15 0.020798 2 0.020785 17 0.011119 10 0.003534 16 0.001052 21 0.09502687080840935 22 0.07337996328983747 12 0.07029655819967828 24 0.0672935012818885 11 0.062444633641022255 19 0.056468356520476506 14 0.055674912070712186 13 0.05382655824545924 23 0.05356493142063087 20 0.04586380737624256 18 0.04568438977610817 9 0.03205308006891107 4 0.028008451382602953 5 0.02732533666388851 10 0.02542452094072664 17 0.024619627575447868 6 0.022425724012939713 3 0.02197104172764362 15 0.021888808407894682 8 0.01981641136746088 7 0.019597137000698674 1 0.01953575884500863 2 0.01907454326297214 0 0.016871976784586087 16 0.01586067629264935 __DUMMY__ 0.006002423036103877 false 1.0
437 14 0.121911 15 0.117738 10 0.106562 18 0.102169 13 0.066305 19 0.062541 20 0.057335 22 0.054334 11 0.049242 9 0.046484 21 0.044629 17 0.03919 0 0.034222 16 0.028507 12 0.0239 24 0.016095 23 0.014371 4 0.004831 5 0.004171 3 0.002659 6 0.001075 7 7.0E-4 8 6.99E-4 1 3.29E-4 14 0.121911 15 0.117738 10 0.106562 18 0.102169 13 0.066305 19 0.062541 20 0.057335 22 0.054334 11 0.049242 9 0.046484 21 0.044629 17 0.03919 0 0.034222 16 0.028507 12 0.0239 24 0.016095 23 0.014371 4 0.004831 5 0.004171 3 0.002659 6 0.001075 7 7.0E-4 8 6.99E-4 1 3.29E-4 14 0.09585596782963293 18 0.08874903214270213 15 0.08810992004724613 10 0.0873689796154598 19 0.05965522043795182 13 0.05930306389470025 22 0.05478906101315722 20 0.053786464803256384 21 0.0502627776737572 11 0.04920365063501963 9 0.044216904926850126 17 0.03921201777517655 0 0.03449658937859156 12 0.03356917297567806 16 0.0286536748233523 23 0.024716051224267167 24 0.02464276040286159 4 0.013084252178220278 5 0.01258564350723212 3 0.010261114707427663 6 0.009873540912180994 8 0.00894177957550569 7 0.008914697210423901 1 0.008652260407141637 2 0.00835137175466508 __DUMMY__ 0.0027440301475418374 false 1.0
679 21 0.107905 22 0.091077 11 0.086324 19 0.086193 12 0.07588 18 0.073843 24 0.05546 20 0.054658 10 0.053623 17 0.047089 13 0.04278 14 0.04109 0 0.040976 9 0.039714 23 0.037897 16 0.037383 4 0.009296 5 0.008568 6 0.003704 3 0.003011 7 0.001189 8 9.93E-4 1 9.41E-4 15 4.08E-4 21 0.107905 22 0.091077 11 0.086324 19 0.086193 12 0.07588 18 0.073843 24 0.05546 20 0.054658 10 0.053623 17 0.047089 13 0.04278 14 0.04109 0 0.040976 9 0.039714 23 0.037897 16 0.037383 4 0.009296 5 0.008568 6 0.003704 3 0.003011 7 0.001189 8 9.93E-4 1 9.41E-4 15 4.08E-4 21 0.09479576375749069 22 0.08083884828983107 11 0.07571829366305043 19 0.07539204219709898 12 0.06940050059600081 18 0.06760410111541248 24 0.05269703187440883 20 0.051166740016043044 10 0.04977865354311174 17 0.043454080295405366 13 0.0433256153731328 14 0.04167785118939758 23 0.04088660315748742 9 0.03896772974693162 0 0.03802209566015647 16 0.0342255332967783 4 0.016184046474769724 5 0.01557916148357158 6 0.011523214602654605 3 0.010396879976379303 7 0.009015303540774872 8 0.008861655630342859 1 0.008743652729653347 2 0.008091884310410372 15 0.008078233989022004 __DUMMY__ 0.005574483490683717 false 1.0
438 14 0.104386 13 0.102673 10 0.0992 18 0.088702 12 0.071747 11 0.069822 21 0.066738 15 0.064402 22 0.053246 19 0.051044 0 0.043782 20 0.041997 9 0.040537 17 0.031379 23 0.019664 16 0.015998 24 0.008636 4 0.007134 5 0.007093 6 0.005991 8 0.001552 7 0.001536 1 0.001457 2 0.001283 14 0.104386 13 0.102673 10 0.0992 18 0.088702 12 0.071747 11 0.069822 21 0.066738 15 0.064402 22 0.053246 19 0.051044 0 0.043782 20 0.041997 9 0.040537 17 0.031379 23 0.019664 16 0.015998 24 0.008636 4 0.007134 5 0.007093 6 0.005991 8 0.001552 7 0.001536 1 0.001457 2 0.001283 14 0.08492905144116317 13 0.08336171542997937 10 0.0819511358050488 18 0.0798512534275789 21 0.06676870643005567 12 0.06625799479995448 11 0.06396996188759045 22 0.05549239650944518 19 0.05340599749841767 15 0.05268795209157026 20 0.04403992933668823 0 0.04049907379708808 9 0.039880646521344515 17 0.034428946071016486 23 0.028030681087914594 16 0.021063896557292575 24 0.020742195764005735 4 0.013699160844116171 5 0.013487352685551278 6 0.012028590676653204 8 0.008307336243509156 7 0.00828594851667325 1 0.008185784043042791 2 0.007962157493821228 3 0.007346567816107309 __DUMMY__ 0.003335567224371505 false 1.0
439 18 0.109381 10 0.103203 14 0.082116 19 0.074524 22 0.073267 15 0.062353 11 0.062202 21 0.062029 9 0.055083 20 0.054492 17 0.049595 0 0.047209 13 0.044888 12 0.032347 16 0.027968 24 0.021223 23 0.016591 4 0.007179 5 0.005932 6 0.002693 3 0.002487 7 0.001294 8 0.001189 1 7.57E-4 18 0.109381 10 0.103203 14 0.082116 19 0.074524 22 0.073267 15 0.062353 11 0.062202 21 0.062029 9 0.055083 20 0.054492 17 0.049595 0 0.047209 13 0.044888 12 0.032347 16 0.027968 24 0.021223 23 0.016591 4 0.007179 5 0.005932 6 0.002693 3 0.002487 7 0.001294 8 0.001189 1 7.57E-4 18 0.09299370854129649 10 0.08764247189535625 14 0.07127554281967118 22 0.06775379897281195 19 0.06634589313781168 21 0.06114376908652711 11 0.05978818390271075 15 0.052889596281343015 9 0.05118791246270891 20 0.04908298179089761 17 0.046040031024073454 13 0.04599923994156931 0 0.04497694423856816 12 0.038014962616319765 16 0.027954359534622157 24 0.02509911443675299 23 0.024083908892277836 4 0.014494718521778307 5 0.013697994245938172 6 0.010880043561877117 3 0.010272287628853953 7 0.00932723676324749 8 0.009278591388802498 1 0.008984997130476402 2 0.008453161571205108 __DUMMY__ 0.002338549612502359 false 1.0
680 12 0.0941 21 0.08766 19 0.069144 11 0.067079 13 0.063302 22 0.059968 20 0.057455 24 0.056129 18 0.053555 23 0.052954 16 0.043868 17 0.041159 0 0.035195 10 0.033532 14 0.032523 9 0.023923 4 0.020315 5 0.020217 6 0.018556 7 0.014185 2 0.014057 8 0.01397 1 0.013872 3 0.01328 12 0.0941 21 0.08766 19 0.069144 11 0.067079 13 0.063302 22 0.059968 20 0.057455 24 0.056129 18 0.053555 23 0.052954 16 0.043868 17 0.041159 0 0.035195 10 0.033532 14 0.032523 9 0.023923 4 0.020315 5 0.020217 6 0.018556 7 0.014185 2 0.014057 8 0.01397 1 0.013872 3 0.01328 12 0.08733467750199017 21 0.08464277632103773 13 0.06555013362052485 11 0.06519436519335978 19 0.06430041373963065 22 0.060193070509379824 18 0.05675377058504818 20 0.05317365006892138 24 0.050827678078854396 23 0.049799152851817095 14 0.041734146294277255 10 0.039817583077474426 17 0.038501208603781145 16 0.03642308858791272 0 0.034176064234815125 9 0.02747167450329165 4 0.02075547738990934 5 0.020477222348328442 6 0.018780628506040887 7 0.014500023770702941 8 0.014390789229816127 1 0.014263791966577174 2 0.01421122078680448 3 0.013564790317978193 15 0.00880850464623531 __DUMMY__ 0.00435409726549042 false 1.0
681 21 0.109397 22 0.091246 11 0.085472 19 0.085204 12 0.074809 18 0.07445 20 0.055092 24 0.053892 10 0.053698 17 0.046193 13 0.042508 0 0.041039 14 0.040517 9 0.039879 23 0.038775 16 0.037385 4 0.009487 5 0.009107 6 0.004195 3 0.003187 7 0.001868 1 0.001211 8 0.001197 2 1.93E-4 21 0.109397 22 0.091246 11 0.085472 19 0.085204 12 0.074809 18 0.07445 20 0.055092 24 0.053892 10 0.053698 17 0.046193 13 0.042508 0 0.041039 14 0.040517 9 0.039879 23 0.038775 16 0.037385 4 0.009487 5 0.009107 6 0.004195 3 0.003187 7 0.001868 1 0.001211 8 0.001197 2 1.93E-4 21 0.09548660268634035 22 0.08091311625966512 11 0.07532366481730686 19 0.07493388722293011 12 0.06891294880131936 18 0.0678831660239405 24 0.05197170716898827 20 0.05136928904932778 10 0.04981114263042914 13 0.04320713805007332 17 0.043038906911658036 14 0.041412582604785225 23 0.0412950170108277 9 0.03904042479343102 0 0.03805083358803774 16 0.03422814932708083 4 0.01627194758346674 5 0.0158281600546212 6 0.011750561300282127 3 0.010477215968142406 7 0.009329036804428826 8 0.008955603523071868 1 0.008868155929924341 2 0.008180875925996724 15 0.007887436766163729 __DUMMY__ 0.005572429197760862 false 1.0
440 20 0.098454 24 0.082257 19 0.073377 23 0.067986 18 0.059417 21 0.053431 12 0.051128 15 0.049736 14 0.045048 16 0.043442 13 0.037352 22 0.03447 3 0.029763 4 0.02943 5 0.028653 17 0.027306 7 0.026219 8 0.026185 1 0.025996 2 0.025645 6 0.024911 10 0.024058 11 0.01881 9 0.016925 20 0.098454 24 0.082257 19 0.073377 23 0.067986 18 0.059417 21 0.053431 12 0.051128 15 0.049736 14 0.045048 16 0.043442 13 0.037352 22 0.03447 3 0.029763 4 0.02943 5 0.028653 17 0.027306 7 0.026219 8 0.026185 1 0.025996 2 0.025645 6 0.024911 10 0.024058 11 0.01881 9 0.016925 20 0.0822583545411085 19 0.07208210429003213 24 0.06944878997068704 18 0.06332497605186752 21 0.05988462134397841 23 0.059138889515225675 12 0.051650305301596276 22 0.0459064552592427 14 0.04501003368572451 15 0.04250013924015628 16 0.04143860337867268 13 0.03748083742711172 10 0.034267329276830474 17 0.03373453711026918 11 0.032538216656635414 4 0.0262746738477469 5 0.025652811482761263 3 0.024893074234891375 9 0.024644159126204195 7 0.022253022604258883 8 0.02223864556147144 6 0.022135450506057194 1 0.022018471257737947 2 0.021697817374724114 0 0.012799837787993092 __DUMMY__ 0.0047278431670149034 false 1.0
682 21 0.104894 22 0.094112 11 0.088757 19 0.078452 18 0.069054 12 0.067961 10 0.053782 24 0.051528 17 0.046696 9 0.045578 20 0.044552 0 0.043979 14 0.038815 13 0.036561 23 0.034778 16 0.033513 4 0.014018 5 0.013644 6 0.00863 3 0.008034 7 0.006268 8 0.005732 1 0.005713 2 0.004951 21 0.104894 22 0.094112 11 0.088757 19 0.078452 18 0.069054 12 0.067961 10 0.053782 24 0.051528 17 0.046696 9 0.045578 20 0.044552 0 0.043979 14 0.038815 13 0.036561 23 0.034778 16 0.033513 4 0.014018 5 0.013644 6 0.00863 3 0.008034 7 0.006268 8 0.005732 1 0.005713 2 0.004951 21 0.0929268557563475 22 0.0835269280632416 11 0.07753978404574027 19 0.07102555615485957 18 0.06513716066331694 12 0.06354621830293071 10 0.05025452906181584 24 0.05007700066952821 20 0.04453591509981865 17 0.043918278479386494 9 0.04320782122648834 0 0.040568694470598264 14 0.03959419108463122 23 0.03854474427271965 13 0.03810724853718789 16 0.032021870267512534 4 0.019110842022967315 5 0.018666301766581125 6 0.014505034813503983 3 0.013571521782590315 7 0.012160621503399652 8 0.011848499625191201 1 0.011740380412896047 2 0.01115829254446185 15 0.007364771938331127 __DUMMY__ 0.005340937433953767 false 1.0
683 19 0.106642 21 0.106366 20 0.093766 18 0.087832 22 0.082328 24 0.078249 23 0.063176 12 0.063016 11 0.051154 10 0.050811 14 0.044888 9 0.034861 13 0.02922 17 0.027136 16 0.026441 4 0.011684 5 0.011097 0 0.008893 15 0.008673 3 0.008268 7 0.00175 8 0.00145 6 0.001437 1 8.61E-4 19 0.106642 21 0.106366 20 0.093766 18 0.087832 22 0.082328 24 0.078249 23 0.063176 12 0.063016 11 0.051154 10 0.050811 14 0.044888 9 0.034861 13 0.02922 17 0.027136 16 0.026441 4 0.011684 5 0.011097 0 0.008893 15 0.008673 3 0.008268 7 0.00175 8 0.00145 6 0.001437 1 8.61E-4 21 0.0885378897323587 19 0.08626813237793483 18 0.07500262075134631 20 0.07446712029912546 22 0.07223293481393604 24 0.06516932915886307 12 0.0591252356162551 23 0.054680426471794975 11 0.05287725500936303 10 0.04761585370234167 14 0.04387534295280128 9 0.03517138076611598 13 0.03440582868326972 17 0.0340486427071883 16 0.031725146797183065 0 0.020227670704250945 15 0.017997761064680706 4 0.017946108485889647 5 0.017411223689417603 3 0.014339554180012004 6 0.011128694665864589 7 0.01048053280210364 8 0.010310990440113648 1 0.009930628690167512 2 0.00934030736324455 __DUMMY__ 0.0056833880743775815 false 1.0
441 15 0.108425 14 0.107448 20 0.066506 18 0.065368 13 0.064142 10 0.05961 24 0.048647 23 0.048489 19 0.044425 21 0.040804 22 0.033227 9 0.032012 12 0.029438 4 0.028856 3 0.02852 5 0.028504 8 0.024778 7 0.024655 1 0.024447 2 0.024337 6 0.02397 11 0.020081 17 0.012094 16 0.011217 15 0.108425 14 0.107448 20 0.066506 18 0.065368 13 0.064142 10 0.05961 24 0.048647 23 0.048489 19 0.044425 21 0.040804 22 0.033227 9 0.032012 12 0.029438 4 0.028856 3 0.02852 5 0.028504 8 0.024778 7 0.024655 1 0.024447 2 0.024337 6 0.02397 11 0.020081 17 0.012094 16 0.011217 14 0.07936505112981175 15 0.07530332976134985 18 0.06638560665488145 20 0.06079978168845788 10 0.0559374363287798 13 0.05486428477303247 19 0.053218727051184786 21 0.04985484728356885 23 0.046407567934045206 24 0.04589569528504236 22 0.04350319106224491 12 0.03999589009357499 9 0.03396789944982405 11 0.03354908280223927 17 0.027360930187537262 4 0.02638269983236188 5 0.02600349497771747 16 0.02466405427655611 3 0.02430422211642346 6 0.022818653778422685 8 0.02234531815665444 7 0.022267414981784146 1 0.022077695576830824 2 0.02188246338461082 0 0.01663516908814344 __DUMMY__ 0.004209492344919899 false 1.0
200 11 0.123596 22 0.09449 21 0.083714 0 0.081988 10 0.076624 18 0.076008 17 0.071645 12 0.066306 19 0.063828 16 0.048651 9 0.048367 13 0.045637 14 0.035652 20 0.015177 24 0.013609 23 0.009931 4 0.009382 6 0.009114 5 0.008604 15 0.005178 8 0.003366 7 0.003261 1 0.00302 2 0.002852 11 0.123596 22 0.09449 21 0.083714 0 0.081988 10 0.076624 18 0.076008 17 0.071645 12 0.066306 19 0.063828 16 0.048651 9 0.048367 13 0.045637 14 0.035652 20 0.015177 24 0.013609 23 0.009931 4 0.009382 6 0.009114 5 0.008604 15 0.005178 8 0.003366 7 0.003261 1 0.00302 2 0.002852 11 0.09092816105067067 22 0.08020134377525916 21 0.07345534680527191 18 0.06828030498458025 10 0.06414567973984078 0 0.06383253054180744 19 0.059122691184427756 17 0.05904236900089506 12 0.05581504426464365 9 0.04812016987402322 16 0.04023883541662553 13 0.038989126842371345 14 0.03511968249303558 20 0.02512229505349558 24 0.02502292214380457 23 0.02442470196944865 4 0.02028897787461442 5 0.01968543089789911 6 0.019039933217279734 8 0.015177293787294032 7 0.015143106480942742 1 0.014933275026706872 2 0.014628566702867633 3 0.013473599890048404 15 0.012335582116029368 __DUMMY__ 0.003433028866116595 false 1.0
684 21 0.101398 19 0.096742 20 0.081557 22 0.08071 18 0.079969 24 0.071456 12 0.070435 11 0.06622 23 0.051529 10 0.048623 14 0.044217 16 0.039234 17 0.038531 13 0.037403 9 0.030339 0 0.021958 15 0.012892 4 0.009388 5 0.008867 3 0.005134 6 0.002054 7 6.88E-4 8 5.19E-4 1 1.39E-4 21 0.101398 19 0.096742 20 0.081557 22 0.08071 18 0.079969 24 0.071456 12 0.070435 11 0.06622 23 0.051529 10 0.048623 14 0.044217 16 0.039234 17 0.038531 13 0.037403 9 0.030339 0 0.021958 15 0.012892 4 0.009388 5 0.008867 3 0.005134 6 0.002054 7 6.88E-4 8 5.19E-4 1 1.39E-4 21 0.0895408766718265 19 0.08230205683004306 22 0.07423474346115944 18 0.07146065672551005 20 0.0680190925107569 12 0.06412163672661313 11 0.06282994277032526 24 0.06273814806737305 23 0.0487167024392803 10 0.04659996053285311 14 0.04359412705498366 17 0.039210653234940135 13 0.038362092032720826 16 0.03677705289932954 9 0.03342004196380153 0 0.026560242233404016 15 0.017689095793889092 4 0.01615382523830586 5 0.015643333595949493 3 0.011907518419297948 6 0.01045918518220631 7 0.008911520136102078 8 0.00878314918025372 1 0.008496743864267292 2 0.008225064031409676 __DUMMY__ 0.005242538403398023 false 1.0
442 14 0.110034 10 0.103865 18 0.099189 15 0.087375 13 0.065761 22 0.064799 19 0.063221 21 0.060612 11 0.060593 20 0.053203 9 0.049112 0 0.036201 12 0.035561 17 0.034928 24 0.021727 16 0.019721 23 0.015471 4 0.006363 5 0.005632 3 0.003181 6 0.00162 7 7.5E-4 8 6.38E-4 1 4.42E-4 14 0.110034 10 0.103865 18 0.099189 15 0.087375 13 0.065761 22 0.064799 19 0.063221 21 0.060612 11 0.060593 20 0.053203 9 0.049112 0 0.036201 12 0.035561 17 0.034928 24 0.021727 16 0.019721 23 0.015471 4 0.006363 5 0.005632 3 0.003181 6 0.00162 7 7.5E-4 8 6.38E-4 1 4.42E-4 18 0.08767758034816421 10 0.08592545661568712 14 0.08539904554184434 15 0.06644957557603985 22 0.06257831599619766 19 0.06194087052773464 21 0.06081455456778671 11 0.057673723857304 13 0.056855670752673684 20 0.05102765487349237 9 0.046332932399879005 12 0.040821641408437886 17 0.038483423526871056 0 0.037548578576053905 24 0.027601882232771036 23 0.02506489645560718 16 0.025034875384223013 4 0.013584785111823063 5 0.013036558389306094 3 0.01008041047861538 6 0.009794127662880667 7 0.008486488500858095 8 0.008445263302323125 1 0.008251301606142824 2 0.007888713745291799 __DUMMY__ 0.0032016725619913827 false 1.0
443 14 0.146422 15 0.120823 13 0.117913 10 0.093437 18 0.084677 12 0.062335 20 0.057278 21 0.056251 11 0.047891 19 0.043128 22 0.037894 9 0.029556 23 0.026193 24 0.020723 0 0.016267 17 0.0146 16 0.008013 4 0.006223 5 0.005734 6 0.003413 3 6.73E-4 8 4.06E-4 7 7.7E-5 2 7.3E-5 14 0.146422 15 0.120823 13 0.117913 10 0.093437 18 0.084677 12 0.062335 20 0.057278 21 0.056251 11 0.047891 19 0.043128 22 0.037894 9 0.029556 23 0.026193 24 0.020723 0 0.016267 17 0.0146 16 0.008013 4 0.006223 5 0.005734 6 0.003413 3 6.73E-4 8 4.06E-4 7 7.7E-5 2 7.3E-5 14 0.10637955431148007 13 0.09136391429210093 15 0.08293221422658618 18 0.07536183794774884 10 0.07475407055018717 12 0.0623131595619297 21 0.061412516643264345 20 0.053668602442833425 11 0.05049919216827443 19 0.04918968526623651 22 0.04618581646814481 23 0.0337173293176914 9 0.032178390362096514 24 0.0301126420574643 17 0.024936837856943797 0 0.023621985596308005 16 0.01778058589023954 4 0.013891149833768511 5 0.013470906457634994 6 0.011366031801775402 8 0.008427495261065548 3 0.008410666575725135 7 0.008236399176152358 1 0.008132343387216093 2 0.008035886754152866 __DUMMY__ 0.003620785792979112 false 1.0
201 10 0.096236 11 0.095163 18 0.086902 0 0.079961 22 0.074783 17 0.0674 21 0.063252 19 0.061594 13 0.05577 14 0.054895 9 0.053687 12 0.053279 16 0.046317 15 0.030944 20 0.020993 6 0.009623 4 0.008964 5 0.008574 23 0.006923 1 0.005857 7 0.00569 8 0.005592 2 0.0052 3 0.0024 10 0.096236 11 0.095163 18 0.086902 0 0.079961 22 0.074783 17 0.0674 21 0.063252 19 0.061594 13 0.05577 14 0.054895 9 0.053687 12 0.053279 16 0.046317 15 0.030944 20 0.020993 6 0.009623 4 0.008964 5 0.008574 23 0.006923 1 0.005857 7 0.00569 8 0.005592 2 0.0052 3 0.0024 10 0.08261305716001516 18 0.08032247407158044 11 0.0778705417922514 22 0.07024182977591653 0 0.06466445322338095 21 0.06202200157257855 19 0.05940924227810411 17 0.057438865530336156 9 0.052090896044531335 14 0.05134172064774865 12 0.04828013349842769 13 0.047831589341240335 16 0.038282608563008726 15 0.030825847762055804 20 0.029086574288273503 23 0.01902323727968939 4 0.016776451977366488 5 0.01636604819266808 6 0.015991905268193152 24 0.01346149128263647 7 0.013004725847448748 1 0.012995557706826024 8 0.012957627584503254 2 0.012486059360638012 3 0.011349482193854024 __DUMMY__ 0.003265577756727003 false 1.0
685 17 0.086151 0 0.084752 9 0.064787 16 0.063663 22 0.059519 18 0.057276 10 0.048821 6 0.047189 11 0.045683 8 0.044897 7 0.044666 1 0.044619 2 0.044029 5 0.042796 4 0.042604 19 0.039514 3 0.038784 21 0.025867 23 0.023518 15 0.020128 12 0.016012 24 0.005694 20 0.005514 13 0.003519 17 0.086151 0 0.084752 9 0.064787 16 0.063663 22 0.059519 18 0.057276 10 0.048821 6 0.047189 11 0.045683 8 0.044897 7 0.044666 1 0.044619 2 0.044029 5 0.042796 4 0.042604 19 0.039514 3 0.038784 21 0.025867 23 0.023518 15 0.020128 12 0.016012 24 0.005694 20 0.005514 13 0.003519 17 0.07323749921250561 0 0.07166400427230717 9 0.060464012401535934 22 0.05787968372194195 16 0.053460041734519764 18 0.05291835314484179 6 0.046494307012525445 10 0.0452213321801089 8 0.04474946330127247 11 0.04465398130779119 7 0.04460475929226087 1 0.044519862372697054 2 0.04393387463113668 4 0.04380744936560596 5 0.04362159054825113 3 0.04046828714422378 19 0.04031590082562814 21 0.03213460050058336 23 0.030059880615840542 12 0.020702438502192857 15 0.019650209344239635 24 0.01617065698924366 20 0.012906053887983389 13 0.008026464289911833 14 0.006437326558784121 __DUMMY__ 0.0018979668420666925 false 1.0
202 11 0.103578 10 0.085023 21 0.081613 18 0.079236 22 0.078209 12 0.072333 13 0.066094 19 0.0655 0 0.063823 14 0.060629 17 0.050896 9 0.041864 16 0.036149 20 0.033196 15 0.022136 24 0.020568 23 0.018214 5 0.006735 4 0.006707 6 0.004922 2 7.85E-4 7 7.1E-4 1 6.29E-4 8 4.51E-4 11 0.103578 10 0.085023 21 0.081613 18 0.079236 22 0.078209 12 0.072333 13 0.066094 19 0.0655 0 0.063823 14 0.060629 17 0.050896 9 0.041864 16 0.036149 20 0.033196 15 0.022136 24 0.020568 23 0.018214 5 0.006735 4 0.006707 6 0.004922 2 7.85E-4 7 7.1E-4 1 6.29E-4 8 4.51E-4 11 0.08327076460533622 21 0.0756503671471905 18 0.0736147423442131 22 0.07327584194732378 10 0.07151908029705266 19 0.06319848247581539 12 0.06189684834818288 0 0.053885781606974104 13 0.05284985008335508 14 0.051657853609694576 17 0.0481202153471925 9 0.04358043523498219 20 0.03731223373475893 16 0.03401094255532403 24 0.028846486338314662 23 0.027654693843164924 15 0.022291667742336315 4 0.01554613161510426 5 0.01531994454801287 6 0.013245260035560886 7 0.010008354705775359 8 0.009864424319102434 1 0.009857826481086173 3 0.009799238237109485 2 0.009733218364147637 __DUMMY__ 0.003989314432889042 false 1.0
444 15 0.162193 16 0.111509 17 0.09314 18 0.092902 20 0.083095 19 0.082553 14 0.081474 10 0.057607 0 0.04112 24 0.038936 23 0.031696 22 0.031193 9 0.021572 13 0.01986 11 0.01583 8 0.006019 7 0.004951 6 0.004778 1 0.004762 2 0.004602 21 0.003735 4 0.002299 3 0.002262 5 0.001914 15 0.162193 16 0.111509 17 0.09314 18 0.092902 20 0.083095 19 0.082553 14 0.081474 10 0.057607 0 0.04112 24 0.038936 23 0.031696 22 0.031193 9 0.021572 13 0.01986 11 0.01583 8 0.006019 7 0.004951 6 0.004778 1 0.004762 2 0.004602 21 0.003735 4 0.002299 3 0.002262 5 0.001914 15 0.10764299973538374 18 0.07904240427366115 16 0.0759869146837539 17 0.06967849641692864 19 0.06899506375207436 14 0.0686582646552999 20 0.0657853060015021 10 0.055925659205258736 22 0.04106583371299117 0 0.03933225009712326 24 0.03766486728172659 23 0.035415105084827835 13 0.03289528328878523 11 0.0304330184620598 9 0.03011796996458011 21 0.027327755061949267 12 0.02200914908000061 6 0.014564575055922242 8 0.014340369186400588 4 0.01392414593548898 7 0.01378744913563912 1 0.013613692404733953 5 0.013535634513128406 2 0.013367241593572521 3 0.012123148777314938 __DUMMY__ 0.0027674026398928496 false 1.0
686 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.09270155322672448 22 0.08322359073778272 11 0.07721352257964147 19 0.07082701073835246 18 0.06498048281974977 12 0.06328566387938095 10 0.050243985620439933 24 0.04987956458805016 20 0.044621173381903974 17 0.043735270582537546 9 0.04294027825488393 0 0.04060330849463836 14 0.039586921654070725 23 0.03894723900902371 13 0.038075019669245924 16 0.032148173203724706 4 0.01929066577143817 5 0.018860956028062474 6 0.014781212964399222 3 0.013691722376829807 7 0.012415406181758706 8 0.01204652985797449 1 0.011889762078051975 2 0.01130411981904859 15 0.007356491094616308 __DUMMY__ 0.005350375387669342 false 1.0
445 14 0.114137 15 0.097732 18 0.093796 10 0.085762 20 0.076024 19 0.06977 13 0.067158 21 0.062832 22 0.055905 11 0.045759 24 0.044231 12 0.040775 9 0.035092 23 0.031351 17 0.025045 16 0.021437 0 0.013858 4 0.00675 5 0.006101 3 0.004755 6 5.92E-4 7 5.0E-4 8 4.6E-4 1 1.78E-4 14 0.114137 15 0.097732 18 0.093796 10 0.085762 20 0.076024 19 0.06977 13 0.067158 21 0.062832 22 0.055905 11 0.045759 24 0.044231 12 0.040775 9 0.035092 23 0.031351 17 0.025045 16 0.021437 0 0.013858 4 0.00675 5 0.006101 3 0.004755 6 5.92E-4 7 5.0E-4 8 4.6E-4 1 1.78E-4 14 0.08767292910499812 18 0.08340627442633225 15 0.07372537536244708 10 0.07219851032795978 20 0.06745267313352916 19 0.06720647923314642 21 0.06246949450147459 13 0.057452048261568855 22 0.05630935092884975 11 0.04745555778824723 12 0.0447833820212539 24 0.0441324774991416 23 0.03646007156867333 9 0.03583564639018753 17 0.032169800804309416 16 0.027735438603224517 0 0.021902282718478716 4 0.013568958617516285 5 0.01304662557948383 3 0.010860337061936948 6 0.008839578991970102 7 0.00809062713674962 8 0.008085641264582945 1 0.00782779870243839 2 0.007605681873171704 __DUMMY__ 0.003706958098328023 false 1.0
687 10 0.105973 18 0.098145 11 0.071004 0 0.067633 14 0.066857 22 0.066822 19 0.061659 9 0.057825 17 0.055737 13 0.052634 21 0.052382 15 0.046708 12 0.038832 16 0.034363 20 0.034255 4 0.012072 5 0.01194 23 0.01155 6 0.011071 2 0.00871 7 0.008641 8 0.008616 1 0.008479 3 0.008091 10 0.105973 18 0.098145 11 0.071004 0 0.067633 14 0.066857 22 0.066822 19 0.061659 9 0.057825 17 0.055737 13 0.052634 21 0.052382 15 0.046708 12 0.038832 16 0.034363 20 0.034255 4 0.012072 5 0.01194 23 0.01155 6 0.011071 2 0.00871 7 0.008641 8 0.008616 1 0.008479 3 0.008091 10 0.08849264056556393 18 0.08707900386215711 22 0.06587061668802867 11 0.06519315387886938 19 0.0600901112089775 14 0.05922245837459474 0 0.057497242370139146 21 0.05661512500717196 9 0.053939942431983114 17 0.050972278488309715 13 0.04704098971365788 12 0.040841799837913646 15 0.040495703284466784 20 0.037135240895863814 16 0.03185355624072256 23 0.021118253948024395 4 0.017677548705395427 5 0.01739296430176926 6 0.015925405532649862 24 0.013848885935134655 7 0.013796862182148832 8 0.013781782960465243 3 0.013661622571780324 1 0.013638943785152013 2 0.013541138677631012 __DUMMY__ 0.0032767285514287807 false 1.0
203 0 0.087323 17 0.079269 9 0.065647 22 0.062214 11 0.060124 10 0.057001 18 0.054547 16 0.053132 6 0.045356 8 0.042779 7 0.04247 1 0.042334 2 0.041862 4 0.041591 5 0.040961 19 0.037645 3 0.03706 21 0.033021 12 0.024102 23 0.020795 13 0.012242 15 0.011414 14 0.003735 24 0.003376 0 0.087323 17 0.079269 9 0.065647 22 0.062214 11 0.060124 10 0.057001 18 0.054547 16 0.053132 6 0.045356 8 0.042779 7 0.04247 1 0.042334 2 0.041862 4 0.041591 5 0.040961 19 0.037645 3 0.03706 21 0.033021 12 0.024102 23 0.020795 13 0.012242 15 0.011414 14 0.003735 24 0.003376 0 0.07335825569398557 17 0.06965394473847451 9 0.06167887930568632 22 0.06038749400450549 11 0.05277516287186161 18 0.05262479010615907 10 0.050606353354879396 16 0.047053162679843843 6 0.04510511191377974 8 0.04316573628682327 7 0.04298638275333107 4 0.0429279698304759 1 0.04285414266235639 5 0.04235901277810335 2 0.04232355662974709 19 0.03929763622446281 3 0.03914239322180856 21 0.03655727559663869 23 0.027905248191358138 12 0.024683931991938468 15 0.015025464927740784 24 0.014301984228897916 13 0.012657852467085791 20 0.009513002248713473 14 0.009104350711935591 __DUMMY__ 0.001950904579407207 false 1.0
446 9 0.083347 22 0.078605 10 0.077408 0 0.076899 18 0.071563 17 0.062803 11 0.058226 4 0.043285 5 0.042265 6 0.042026 21 0.041657 8 0.041506 7 0.041067 1 0.040766 3 0.040244 2 0.040201 19 0.037792 14 0.021663 16 0.020419 15 0.014309 23 0.013837 12 0.004709 24 0.003329 13 0.002074 9 0.083347 22 0.078605 10 0.077408 0 0.076899 18 0.071563 17 0.062803 11 0.058226 4 0.043285 5 0.042265 6 0.042026 21 0.041657 8 0.041506 7 0.041067 1 0.040766 3 0.040244 2 0.040201 19 0.037792 14 0.021663 16 0.020419 15 0.014309 23 0.013837 12 0.004709 24 0.003329 13 0.002074 22 0.0708134754172365 9 0.07019953237731819 10 0.06530413293976552 0 0.06529926760718603 18 0.0649650428197918 17 0.05762513157495654 11 0.05445667155054532 21 0.045292447224152654 19 0.04177904298881361 4 0.04094940632625162 5 0.04018567444705273 6 0.039774296597463794 8 0.03890066519721919 7 0.038671128974301305 1 0.038431163507372613 2 0.037889343486073694 3 0.037879838083531556 16 0.026449418571088585 14 0.024535420623989487 23 0.023771367182276616 15 0.018313622999963492 12 0.016920543775870028 24 0.015369830098538238 20 0.012441634875913208 13 0.01131746533047354 __DUMMY__ 0.0024644354228543493 false 1.0
688 17 0.065031 0 0.061572 22 0.059527 9 0.059023 18 0.048125 6 0.047864 8 0.04752 4 0.047374 7 0.047158 1 0.047079 16 0.046769 5 0.046523 2 0.046375 3 0.045211 19 0.043304 11 0.042674 10 0.038863 23 0.037274 21 0.035613 24 0.029229 20 0.019669 15 0.017377 12 0.016723 14 0.004122 17 0.065031 0 0.061572 22 0.059527 9 0.059023 18 0.048125 6 0.047864 8 0.04752 4 0.047374 7 0.047158 1 0.047079 16 0.046769 5 0.046523 2 0.046375 3 0.045211 19 0.043304 11 0.042674 10 0.038863 23 0.037274 21 0.035613 24 0.029229 20 0.019669 15 0.017377 12 0.016723 14 0.004122 22 0.05976456586034609 17 0.058789965813195386 9 0.05756426637290954 0 0.056518083654129386 18 0.0494059943396856 4 0.045539785744880275 6 0.045420983936299196 5 0.0448534934249261 8 0.0447514750539613 7 0.04455334596589309 1 0.04443676128949065 2 0.043812374833869246 11 0.043690261891455646 3 0.043082899745395344 19 0.042709364719101375 10 0.040962061649363835 21 0.040686434535049186 16 0.04036647346532301 23 0.03748934948396543 24 0.03040376030424681 12 0.021947009074249662 20 0.021654461772079695 15 0.01855222895056929 14 0.012289964753669197 13 0.007801675623493804 __DUMMY__ 0.0029529577424519094 false 1.0
204 0 0.089899 17 0.082534 9 0.061906 11 0.060882 22 0.060228 16 0.059755 10 0.056292 18 0.054869 6 0.043772 8 0.040675 7 0.040347 1 0.040325 2 0.040132 4 0.039099 5 0.038889 19 0.038316 3 0.034256 21 0.031419 12 0.029227 23 0.020965 13 0.017474 15 0.013999 14 0.00436 24 3.79E-4 0 0.089899 17 0.082534 9 0.061906 11 0.060882 22 0.060228 16 0.059755 10 0.056292 18 0.054869 6 0.043772 8 0.040675 7 0.040347 1 0.040325 2 0.040132 4 0.039099 5 0.038889 19 0.038316 3 0.034256 21 0.031419 12 0.029227 23 0.020965 13 0.017474 15 0.013999 14 0.00436 24 3.79E-4 0 0.07493470812870416 17 0.07200658997268473 9 0.05923998721170731 22 0.05882523134850699 11 0.053017858107501585 18 0.05265292232891412 16 0.05165732675860835 10 0.04984341406268443 6 0.044235698819520386 8 0.04199206882260357 7 0.041800440490069625 1 0.04172676008315208 4 0.04146469600664021 2 0.04132858660218771 5 0.041093279726000666 19 0.04000748204823431 3 0.03747293093734877 21 0.035330922669367965 23 0.028187635486741282 12 0.0276116040935369 15 0.016528951887326337 13 0.01536933247177676 24 0.012834113171202125 20 0.009894273384905235 14 0.008921024386072464 __DUMMY__ 0.0020221609940017636 false 1.0
447 14 0.091078 10 0.090246 13 0.089126 18 0.082465 21 0.069479 11 0.067764 22 0.06479 12 0.063759 9 0.054031 15 0.047471 0 0.047168 19 0.039592 17 0.032707 20 0.022556 23 0.01995 4 0.018999 5 0.018275 6 0.017046 8 0.012242 1 0.01175 7 0.011654 2 0.011399 3 0.00997 24 0.006481 14 0.091078 10 0.090246 13 0.089126 18 0.082465 21 0.069479 11 0.067764 22 0.06479 12 0.063759 9 0.054031 15 0.047471 0 0.047168 19 0.039592 17 0.032707 20 0.022556 23 0.01995 4 0.018999 5 0.018275 6 0.017046 8 0.012242 1 0.01175 7 0.011654 2 0.011399 3 0.00997 24 0.006481 13 0.08108196088125387 14 0.0778195168523285 18 0.07250647055284908 10 0.07216712650494629 21 0.07088579969695066 12 0.06829712311618927 11 0.06299783568427526 22 0.059843881733637985 19 0.04648049325483711 9 0.0435212231220065 15 0.04142281873158981 0 0.03973848335520166 20 0.03490534213329303 17 0.03302045624125816 23 0.031066480591800092 24 0.022743812241176446 4 0.020263374641805217 5 0.019723767746336336 6 0.018356712597260957 8 0.01408183633933938 7 0.013776525146494084 1 0.013763814391059486 2 0.013467091252434327 16 0.012720045229486816 3 0.012479972724347043 __DUMMY__ 0.002868035237842939 false 1.0
205 0 0.083365 17 0.076195 10 0.070824 18 0.065811 11 0.065633 16 0.059842 22 0.05675 9 0.055257 19 0.046995 12 0.039881 21 0.037385 13 0.037064 6 0.031399 8 0.027853 15 0.027841 7 0.027734 1 0.027663 4 0.027566 2 0.027319 5 0.027174 14 0.026961 3 0.022073 23 0.018169 20 0.013244 0 0.083365 17 0.076195 10 0.070824 18 0.065811 11 0.065633 16 0.059842 22 0.05675 9 0.055257 19 0.046995 12 0.039881 21 0.037385 13 0.037064 6 0.031399 8 0.027853 15 0.027841 7 0.027734 1 0.027663 4 0.027566 2 0.027319 5 0.027174 14 0.026961 3 0.022073 23 0.018169 20 0.013244 0 0.07120036523463118 17 0.0677425247579504 18 0.06017406641099679 10 0.059812911610665306 22 0.05775165859672558 11 0.05670715784205796 9 0.0558361001009929 16 0.05023927827620034 19 0.045064498446611485 21 0.039615603867316086 6 0.03641525669212601 4 0.034277573613255244 8 0.03389589072717327 12 0.0338397005678766 5 0.033836506413908785 7 0.033811166610668 1 0.03371839375574258 2 0.03326430506050172 3 0.029878423792214892 13 0.02739416614790232 23 0.026050775494898218 15 0.024800746364992618 14 0.023340652986889185 20 0.017233307708995806 24 0.012013128488378063 __DUMMY__ 0.0020858404303286675 false 1.0
689 17 0.086799 0 0.084286 9 0.064518 16 0.063651 22 0.058375 18 0.054547 10 0.048996 6 0.047484 11 0.046097 8 0.045188 1 0.045096 7 0.045008 2 0.044852 4 0.04307 5 0.042892 19 0.039697 3 0.039565 21 0.025454 23 0.022614 15 0.020282 12 0.016652 24 0.006566 20 0.005247 13 0.003064 17 0.086799 0 0.084286 9 0.064518 16 0.063651 22 0.058375 18 0.054547 10 0.048996 6 0.047484 11 0.046097 8 0.045188 1 0.045096 7 0.045008 2 0.044852 4 0.04307 5 0.042892 19 0.039697 3 0.039565 21 0.025454 23 0.022614 15 0.020282 12 0.016652 24 0.006566 20 0.005247 13 0.003064 17 0.07352637380972551 0 0.07143733104186636 9 0.06034296804493812 22 0.057363000255030924 16 0.0534411394514283 18 0.05166086914476848 6 0.04662889410516863 10 0.04529852474523001 8 0.044884141910318864 11 0.04484476758490045 7 0.044762536028576015 1 0.04473990543767483 2 0.04431335266904525 4 0.04402460112648527 5 0.043667553545457156 3 0.040832209525570665 19 0.0404058450666831 21 0.03195406004528456 23 0.02964843996956083 12 0.020988198958703994 15 0.019719039672393288 24 0.01658918185585857 20 0.012790238873274412 13 0.007802936562836838 14 0.006437934063524544 __DUMMY__ 0.001895956505694968 false 1.0
206 11 0.102833 10 0.085628 21 0.081165 18 0.079196 22 0.077889 12 0.072085 13 0.065884 19 0.065302 0 0.063686 14 0.060509 17 0.050698 9 0.041676 16 0.036298 20 0.033866 15 0.022582 24 0.021012 23 0.018181 5 0.006851 4 0.006832 6 0.005129 2 7.72E-4 7 7.42E-4 8 6.24E-4 1 5.58E-4 11 0.102833 10 0.085628 21 0.081165 18 0.079196 22 0.077889 12 0.072085 13 0.065884 19 0.065302 0 0.063686 14 0.060509 17 0.050698 9 0.041676 16 0.036298 20 0.033866 15 0.022582 24 0.021012 23 0.018181 5 0.006851 4 0.006832 6 0.005129 2 7.72E-4 7 7.42E-4 8 6.24E-4 1 5.58E-4 11 0.08293988923692089 21 0.0754900168236326 18 0.07360901829534611 22 0.07314504706897702 10 0.07179759714246106 19 0.06313141207011339 12 0.06181069715051572 0 0.0537832207384584 13 0.05277352140498815 14 0.05163308797405525 17 0.047995685235056984 9 0.043477643756143165 20 0.03765701314006684 16 0.03405239538725008 24 0.029087750139066587 23 0.02765462222963886 15 0.022493810966264075 4 0.015587509984364105 5 0.015357153175932628 6 0.013317080790388678 7 0.009999825732880486 8 0.009920733079718535 1 0.009801614887884065 3 0.009782227937599051 2 0.009703873332720674 __DUMMY__ 0.003997552319556686 false 1.0
448 18 0.094312 10 0.09129 19 0.0775 11 0.076222 21 0.07533 22 0.071995 14 0.060012 12 0.059982 0 0.056005 13 0.055827 17 0.052818 20 0.052091 9 0.04605 16 0.039635 15 0.03029 24 0.022851 23 0.021786 4 0.005722 5 0.005457 6 0.003269 3 5.32E-4 7 4.78E-4 8 3.05E-4 1 2.41E-4 18 0.094312 10 0.09129 19 0.0775 11 0.076222 21 0.07533 22 0.071995 14 0.060012 12 0.059982 0 0.056005 13 0.055827 17 0.052818 20 0.052091 9 0.04605 16 0.039635 15 0.03029 24 0.022851 23 0.021786 4 0.005722 5 0.005457 6 0.003269 3 5.32E-4 7 4.78E-4 8 3.05E-4 1 2.41E-4 18 0.08562775401486351 10 0.08140359209115205 21 0.07118147774780914 11 0.07029435490979351 19 0.06947177980712634 22 0.06910232432777769 14 0.05725872732905802 12 0.05580463254386934 13 0.052325742064566465 0 0.05143804318928688 17 0.048982266106713766 20 0.04725064502285891 9 0.04641470109853581 16 0.034862079836502004 15 0.03103024418758908 23 0.026337726899336285 24 0.025877406442174428 4 0.012683583091426691 5 0.012351810076818587 6 0.010170970281977249 3 0.007715523486069467 7 0.007589322692231867 8 0.00749295243872139 1 0.007393491430323277 2 0.00710761121609655 __DUMMY__ 0.00283123766732151 false 1.0
207 18 0.084345 21 0.084076 19 0.081619 12 0.079965 20 0.07265 11 0.065685 13 0.064321 22 0.063402 10 0.062741 14 0.057031 24 0.048095 23 0.045031 17 0.041691 16 0.040632 0 0.03241 15 0.02745 9 0.027387 4 0.007605 5 0.00688 6 0.0044 7 9.84E-4 3 9.47E-4 8 5.09E-4 2 1.42E-4 18 0.084345 21 0.084076 19 0.081619 12 0.079965 20 0.07265 11 0.065685 13 0.064321 22 0.063402 10 0.062741 14 0.057031 24 0.048095 23 0.045031 17 0.041691 16 0.040632 0 0.03241 15 0.02745 9 0.027387 4 0.007605 5 0.00688 6 0.0044 7 9.84E-4 3 9.47E-4 8 5.09E-4 2 1.42E-4 21 0.07599129248114836 18 0.0758969192969575 19 0.06972977659180803 11 0.06625210659965461 22 0.06605504403510366 12 0.0647731929925322 10 0.06229469089742724 20 0.05530288324240245 13 0.05248953516044691 14 0.05111262930136263 17 0.04299850143248099 24 0.04120759955399767 23 0.03961720094505383 0 0.03932024170671137 9 0.03715686894153107 16 0.035017199695201735 15 0.025818776166890264 4 0.016313992457252388 5 0.015777679876416692 6 0.01329441698808099 3 0.010773041695818638 7 0.010502079564413411 8 0.010282443153897694 1 0.009958972193501227 2 0.009873540847812381 __DUMMY__ 0.0021893741820960245 false 1.0
449 19 0.069318 17 0.068761 18 0.06647 22 0.066454 0 0.060653 16 0.059716 9 0.054739 10 0.053263 11 0.049972 21 0.044371 20 0.037313 23 0.034395 4 0.031931 5 0.031389 24 0.030951 1 0.030845 7 0.030842 8 0.030802 3 0.030786 6 0.030742 2 0.030203 15 0.022595 12 0.020525 14 0.012964 19 0.069318 17 0.068761 18 0.06647 22 0.066454 0 0.060653 16 0.059716 9 0.054739 10 0.053263 11 0.049972 21 0.044371 20 0.037313 23 0.034395 4 0.031931 5 0.031389 24 0.030951 1 0.030845 7 0.030842 8 0.030802 3 0.030786 6 0.030742 2 0.030203 15 0.022595 12 0.020525 14 0.012964 22 0.06499410043393779 19 0.0636119319283852 18 0.06338979234491833 17 0.06182615847124775 0 0.05587099055800091 11 0.05268655818298433 16 0.05172704409319016 10 0.05168454071512509 9 0.051511681215311834 21 0.049700625137267175 20 0.036608668488080365 23 0.035879855132490444 24 0.032841097619598345 4 0.031745506783912344 5 0.03124817805667835 6 0.030477276303191476 8 0.02978493779987808 7 0.029781400222642133 1 0.029672054130648176 3 0.029507476575431225 2 0.02916844536153813 12 0.029163780512509323 15 0.022694834363101834 14 0.0201832698499757 13 0.011606325074560032 __DUMMY__ 0.0026334706453952916 false 1.0
208 21 0.099134 18 0.093331 19 0.084007 22 0.082626 12 0.072085 11 0.067444 20 0.066267 10 0.063409 23 0.061253 24 0.054601 14 0.047372 13 0.044335 17 0.037427 9 0.035506 0 0.023761 16 0.016858 15 0.015073 4 0.012624 5 0.011762 6 0.006141 3 0.002421 7 0.001277 8 0.001124 1 1.63E-4 21 0.099134 18 0.093331 19 0.084007 22 0.082626 12 0.072085 11 0.067444 20 0.066267 10 0.063409 23 0.061253 24 0.054601 14 0.047372 13 0.044335 17 0.037427 9 0.035506 0 0.023761 16 0.016858 15 0.015073 4 0.012624 5 0.011762 6 0.006141 3 0.002421 7 0.001277 8 0.001124 1 1.63E-4 21 0.08120951672718832 18 0.07494183035846198 22 0.07358640618274297 19 0.0684312164208924 11 0.062256884085898787 12 0.05820280717598344 10 0.0552868231334608 20 0.05205147933910169 23 0.05133412550699393 24 0.048371936968171075 14 0.041377226908977376 9 0.040748484771150305 17 0.03943953046226325 13 0.037845242522469166 0 0.0321038680463303 4 0.023043006554175436 16 0.022960836197853454 5 0.022384268136314122 6 0.018371614411914306 15 0.017605333545249756 3 0.016238859979183673 7 0.01524503604494319 8 0.015155248474287723 1 0.014608554779251848 2 0.014343604084828059 __DUMMY__ 0.0028562591819128787 false 1.0
209 18 0.094183 10 0.089766 19 0.077874 11 0.076548 21 0.075489 22 0.072299 12 0.060399 14 0.060244 13 0.056093 0 0.05598 17 0.053392 20 0.050833 9 0.046584 16 0.039703 15 0.03038 24 0.022493 23 0.021805 4 0.005673 5 0.00523 6 0.003229 7 6.46E-4 3 5.34E-4 8 3.4E-4 1 2.83E-4 18 0.094183 10 0.089766 19 0.077874 11 0.076548 21 0.075489 22 0.072299 12 0.060399 14 0.060244 13 0.056093 0 0.05598 17 0.053392 20 0.050833 9 0.046584 16 0.039703 15 0.03038 24 0.022493 23 0.021805 4 0.005673 5 0.00523 6 0.003229 7 6.46E-4 3 5.34E-4 8 3.4E-4 1 2.83E-4 18 0.08656677740937715 10 0.08191506146110451 11 0.06994425871298063 21 0.06988500490022823 19 0.06985319232603193 22 0.06939332179533927 14 0.056858093265436685 12 0.05365343156988248 0 0.05220763043203522 13 0.050480794443942226 17 0.05002176305768042 9 0.047668046666482174 20 0.046436577250383075 16 0.03520972919520535 15 0.03177586352243676 23 0.025647932671289658 24 0.024883971350245004 4 0.01283753692562828 5 0.012429607577691496 6 0.010318029612400227 3 0.00810328393715668 7 0.007977367431397533 8 0.007826880888264151 1 0.007728669484151718 2 0.007418136709508854 __DUMMY__ 0.0029590374037202394 false 1.0
690 20 0.112371 19 0.094476 24 0.086182 18 0.077936 23 0.075864 21 0.063926 16 0.054911 12 0.054866 15 0.047711 22 0.045302 14 0.039979 17 0.037076 13 0.030516 10 0.027071 11 0.022245 4 0.018323 3 0.016786 5 0.016578 7 0.014079 8 0.01359 6 0.013165 1 0.012921 2 0.012614 9 0.011512 20 0.112371 19 0.094476 24 0.086182 18 0.077936 23 0.075864 21 0.063926 16 0.054911 12 0.054866 15 0.047711 22 0.045302 14 0.039979 17 0.037076 13 0.030516 10 0.027071 11 0.022245 4 0.018323 3 0.016786 5 0.016578 7 0.014079 8 0.01359 6 0.013165 1 0.012921 2 0.012614 9 0.011512 20 0.08445840500182708 19 0.07845588037359229 18 0.07044144335967369 24 0.068899854124542 21 0.06264071015992173 23 0.06095400694989501 22 0.05139831206445667 12 0.04971377108168868 16 0.045227856227488844 15 0.043105409454368256 14 0.04308828274732008 17 0.03870039869763892 10 0.03618465898699482 11 0.033529842706592976 13 0.03261920082294405 9 0.024826046625658325 4 0.02303090967489447 5 0.021970975998392154 3 0.020972739840091237 7 0.01880433419929169 6 0.018741076442867242 8 0.01858469923158216 1 0.018157168696176913 2 0.01782196970795957 0 0.014440005611664818 __DUMMY__ 0.003232041212476469 false 1.0
691 22 0.102223 11 0.101684 10 0.0976 18 0.095584 21 0.089644 19 0.070857 0 0.06904 9 0.065914 17 0.057831 14 0.055378 12 0.047125 13 0.038288 16 0.026287 20 0.02186 15 0.015422 24 0.013068 23 0.008839 4 0.007825 5 0.007744 6 0.003695 3 0.001715 7 8.71E-4 8 7.87E-4 1 7.17E-4 22 0.102223 11 0.101684 10 0.0976 18 0.095584 21 0.089644 19 0.070857 0 0.06904 9 0.065914 17 0.057831 14 0.055378 12 0.047125 13 0.038288 16 0.026287 20 0.02186 15 0.015422 24 0.013068 23 0.008839 4 0.007825 5 0.007744 6 0.003695 3 0.001715 7 8.71E-4 8 7.87E-4 1 7.17E-4 22 0.08641440003940509 11 0.08267024521285862 21 0.07992897487286815 18 0.07969259732899416 10 0.076242288421402 19 0.06436966761365073 9 0.05665819318595284 0 0.05652330911596408 17 0.05118002645286922 14 0.04797367561713501 12 0.04771280769985402 13 0.036856076743861606 20 0.029611226368938873 16 0.027942162662831338 24 0.025752283246119965 23 0.022792048734779913 15 0.017882476656745472 4 0.01751928834925868 5 0.01722349181397343 6 0.013924676285758716 3 0.012222020183693892 7 0.01151306984486407 8 0.011437081323454536 1 0.011306175112771408 2 0.010737483485226988 __DUMMY__ 0.003914253626767119 false 1.0
450 23 0.086797 24 0.077114 20 0.069105 19 0.056471 4 0.054016 3 0.053285 5 0.052999 8 0.050291 7 0.049934 1 0.049718 21 0.049307 2 0.049109 6 0.048984 18 0.041398 22 0.038179 12 0.034555 9 0.034092 16 0.023513 17 0.019747 15 0.017231 14 0.017096 13 0.013317 10 0.012087 0 0.001655 23 0.086797 24 0.077114 20 0.069105 19 0.056471 4 0.054016 3 0.053285 5 0.052999 8 0.050291 7 0.049934 1 0.049718 21 0.049307 2 0.049109 6 0.048984 18 0.041398 22 0.038179 12 0.034555 9 0.034092 16 0.023513 17 0.019747 15 0.017231 14 0.017096 13 0.013317 10 0.012087 0 0.001655 23 0.06813188056320044 24 0.06268571380199785 20 0.05926517921163276 19 0.05747636160567315 21 0.055045203831185385 18 0.049787882303969334 22 0.047641491718174264 4 0.042807433307200875 5 0.042087856075459555 12 0.04085772480170109 3 0.04071956188476416 6 0.03899006431941407 8 0.038908735326255925 7 0.03878042815338672 1 0.038557496294839975 2 0.038073404522677684 9 0.03635203263980386 17 0.03053952903828125 16 0.029250537413235616 14 0.027077588784757446 10 0.026831943635139265 13 0.023614045250065812 11 0.023246436030975322 15 0.022556047659913876 0 0.01718613995028723 __DUMMY__ 0.0035292818760071054 false 1.0
692 22 0.092818 21 0.068354 11 0.067734 9 0.067654 18 0.061088 0 0.057964 17 0.055495 19 0.050974 10 0.050866 4 0.039375 5 0.038948 6 0.035637 3 0.035564 8 0.034263 7 0.034167 1 0.033634 2 0.033528 24 0.032643 23 0.029997 16 0.024338 12 0.024227 14 0.01607 20 0.014528 15 1.33E-4 22 0.092818 21 0.068354 11 0.067734 9 0.067654 18 0.061088 0 0.057964 17 0.055495 19 0.050974 10 0.050866 4 0.039375 5 0.038948 6 0.035637 3 0.035564 8 0.034263 7 0.034167 1 0.033634 2 0.033528 24 0.032643 23 0.029997 16 0.024338 12 0.024227 14 0.01607 20 0.014528 15 1.33E-4 22 0.07953296738516216 21 0.0637121734224401 9 0.06033348614055208 11 0.059700948940729553 18 0.05663910450017507 0 0.05119194229416529 17 0.05064324505058655 19 0.04929245197865379 10 0.046887166039899536 4 0.03945118412277193 5 0.038963319529109516 6 0.036381456155983545 24 0.03609000922322408 3 0.03596534505170549 8 0.0351389237968637 7 0.03510972917975185 23 0.03501641249972621 1 0.03474727230690387 2 0.03440201934414172 12 0.02966817667936286 16 0.026396324917004027 20 0.021874789982674118 14 0.02154684470986625 13 0.0103250788751673 15 0.008455866450250519 __DUMMY__ 0.0025337614231290225 false 1.0
693 22 0.093919 11 0.07447 21 0.07434 9 0.068063 18 0.064836 0 0.059364 10 0.056433 17 0.054843 19 0.052067 4 0.035489 5 0.035003 6 0.0318 12 0.030485 3 0.030429 24 0.029744 7 0.02971 8 0.029665 1 0.029177 2 0.028643 23 0.027822 14 0.021888 16 0.020892 20 0.012368 13 0.008548 22 0.093919 11 0.07447 21 0.07434 9 0.068063 18 0.064836 0 0.059364 10 0.056433 17 0.054843 19 0.052067 4 0.035489 5 0.035003 6 0.0318 12 0.030485 3 0.030429 24 0.029744 7 0.02971 8 0.029665 1 0.029177 2 0.028643 23 0.027822 14 0.021888 16 0.020892 20 0.012368 13 0.008548 22 0.08143131043362069 21 0.06807230848269809 11 0.06587747754423065 18 0.06096344215180391 9 0.06061093317331706 0 0.0531415099384007 10 0.05310643839169653 19 0.05122168866077231 17 0.05067011349302804 4 0.03537423632288971 5 0.03486437311825732 12 0.033967161725225924 24 0.03306419376655706 6 0.03225299121061094 23 0.03212322851577346 3 0.031100317992363423 7 0.03053052183929365 8 0.030510454698483024 1 0.030156221984142816 2 0.029648495274761648 14 0.027011611762943998 16 0.02474641142342457 20 0.020956035229179597 13 0.016698673270128445 15 0.009318455866785485 __DUMMY__ 0.0025813937296109233 false 1.0
451 9 0.076396 10 0.072273 22 0.071912 18 0.07074 0 0.065206 17 0.059132 11 0.048872 19 0.045729 4 0.041765 5 0.040893 3 0.040609 8 0.040384 1 0.040175 7 0.040143 21 0.039714 6 0.039698 2 0.039232 16 0.026667 15 0.026489 14 0.026076 23 0.020462 20 0.013509 24 0.012887 12 0.001037 9 0.076396 10 0.072273 22 0.071912 18 0.07074 0 0.065206 17 0.059132 11 0.048872 19 0.045729 4 0.041765 5 0.040893 3 0.040609 8 0.040384 1 0.040175 7 0.040143 21 0.039714 6 0.039698 2 0.039232 16 0.026667 15 0.026489 14 0.026076 23 0.020462 20 0.013509 24 0.012887 12 0.001037 9 0.06713952017043814 22 0.06549793308796759 18 0.06244080347475804 10 0.06058522322481865 0 0.057572789937196674 17 0.05415739748155311 11 0.046068025375667024 19 0.04342927507925198 4 0.04274033694315778 5 0.04205225169868311 21 0.041900052062068135 6 0.04112335969459912 8 0.04110907154622478 7 0.04098641736785107 3 0.04098238410496769 1 0.040921889834758036 2 0.04018445443649911 23 0.028597541384490336 16 0.027911203871569017 14 0.02581097721874289 15 0.02500011572841801 24 0.02112994058772228 20 0.01900854566741387 12 0.012648226665851314 13 0.008524924970032034 __DUMMY__ 0.0024773383853003814 false 1.0
210 19 0.116553 20 0.100152 18 0.092423 23 0.070051 10 0.069187 16 0.069173 24 0.061602 21 0.06055 22 0.056723 15 0.046376 14 0.046195 11 0.045937 12 0.045397 17 0.038837 13 0.023161 0 0.020062 9 0.016845 4 0.006863 5 0.006337 3 0.005657 7 0.001116 6 3.4E-4 8 2.75E-4 1 1.87E-4 19 0.116553 20 0.100152 18 0.092423 23 0.070051 10 0.069187 16 0.069173 24 0.061602 21 0.06055 22 0.056723 15 0.046376 14 0.046195 11 0.045937 12 0.045397 17 0.038837 13 0.023161 0 0.020062 9 0.016845 4 0.006863 5 0.006337 3 0.005657 7 0.001116 6 3.4E-4 8 2.75E-4 1 1.87E-4 19 0.09061778940361097 18 0.07873714488298147 20 0.07685900047017043 21 0.06412175517353683 22 0.05992305458414135 10 0.058196810703320306 23 0.057320439285430895 24 0.055538760362553195 16 0.05241916408847706 11 0.04998084828937615 12 0.047783272163736214 14 0.043605045939680925 17 0.04090134265444973 15 0.03708247949511091 13 0.02920541285040005 9 0.027814494434911217 0 0.02688354884029374 4 0.016222988910730863 5 0.015723437849091543 3 0.013802079358796734 6 0.01127092784846441 7 0.010905248795119407 8 0.010509769146182311 1 0.010336881474634914 2 0.01010883138757431 __DUMMY__ 0.004129471607224024 false 1.0
452 0 0.089157 17 0.085288 9 0.066242 22 0.061946 16 0.059438 18 0.055578 11 0.054296 10 0.054084 6 0.046352 8 0.043869 7 0.04356 1 0.043453 2 0.043199 4 0.042056 5 0.041516 19 0.038617 3 0.037892 21 0.028832 23 0.020657 12 0.019551 15 0.014445 13 0.006294 24 0.003061 20 6.18E-4 0 0.089157 17 0.085288 9 0.066242 22 0.061946 16 0.059438 18 0.055578 11 0.054296 10 0.054084 6 0.046352 8 0.043869 7 0.04356 1 0.043453 2 0.043199 4 0.042056 5 0.041516 19 0.038617 3 0.037892 21 0.028832 23 0.020657 12 0.019551 15 0.014445 13 0.006294 24 0.003061 20 6.18E-4 0 0.07398993947937785 17 0.07277891567042899 9 0.06152127052172705 22 0.05940643680112335 18 0.05239470763242226 16 0.050994030098382555 11 0.04906695508050271 10 0.048191884323561876 6 0.04604326220445134 8 0.044192440618406555 7 0.044011931424048086 1 0.043897133508721285 4 0.043517730922380864 2 0.04346552404283016 5 0.04299179001825378 3 0.03998559197047127 19 0.03972287454995576 21 0.03373412279032205 23 0.02838792294405456 12 0.02226492004262321 15 0.01678683218431387 24 0.014565166101735232 20 0.010185226755944665 13 0.009377052337753069 14 0.006626491882459672 __DUMMY__ 0.0018998460937480338 false 1.0
694 9 0.065666 22 0.059705 0 0.053534 3 0.051526 4 0.051143 17 0.05089 8 0.050802 5 0.050515 7 0.05049 1 0.050286 2 0.05003 6 0.049612 18 0.047866 10 0.046376 19 0.03742 11 0.037006 21 0.034808 23 0.0335 24 0.029831 16 0.029824 15 0.02581 20 0.019326 14 0.018374 12 0.00566 9 0.065666 22 0.059705 0 0.053534 3 0.051526 4 0.051143 17 0.05089 8 0.050802 5 0.050515 7 0.05049 1 0.050286 2 0.05003 6 0.049612 18 0.047866 10 0.046376 19 0.03742 11 0.037006 21 0.034808 23 0.0335 24 0.029831 16 0.029824 15 0.02581 20 0.019326 14 0.018374 12 0.00566 9 0.06191037235632097 22 0.058735069019104 0 0.05115806784650957 17 0.05016136154120145 4 0.04935549136919927 5 0.048774585999145824 3 0.048541820671167545 8 0.048451419520611244 18 0.04842364488561586 7 0.04829258710044902 1 0.04811998113572316 6 0.04807307970479251 2 0.04768874621059546 10 0.04436381113487063 21 0.03829696188709223 11 0.03825665540022818 19 0.03813963474676683 23 0.0363721616893545 24 0.030843288431504464 16 0.029877396829845245 15 0.0234832584305299 20 0.021176896373160288 14 0.019127252141893116 12 0.013554258135420834 13 0.005940586686877533 __DUMMY__ 0.002881610752020461 false 1.0
695 23 0.091809 24 0.069247 4 0.063251 5 0.06227 3 0.061231 7 0.060804 6 0.060671 8 0.060595 1 0.060527 2 0.059804 20 0.049123 21 0.041218 19 0.039137 22 0.034989 9 0.034839 12 0.033722 18 0.027619 17 0.025897 16 0.023966 15 0.011547 13 0.010349 0 0.009964 14 0.00464 11 0.002781 23 0.091809 24 0.069247 4 0.063251 5 0.06227 3 0.061231 7 0.060804 6 0.060671 8 0.060595 1 0.060527 2 0.059804 20 0.049123 21 0.041218 19 0.039137 22 0.034989 9 0.034839 12 0.033722 18 0.027619 17 0.025897 16 0.023966 15 0.011547 13 0.010349 0 0.009964 14 0.00464 11 0.002781 23 0.07118963291287708 24 0.05841842045836606 21 0.05192501574943978 4 0.04995140544249987 5 0.04923157748845107 6 0.04748657576944612 3 0.04690988079093789 7 0.04665985085748879 22 0.04662818706505677 8 0.04651394576757722 1 0.04641170167090475 2 0.04584872513547041 19 0.045212184252375935 20 0.045141503713103534 12 0.04125063130307928 18 0.03943776438339024 9 0.03794732635697482 17 0.03251636093239484 16 0.026513543492199233 11 0.02485353476027975 13 0.022367085814636124 0 0.021716857064345944 14 0.018796348046857196 10 0.01812316014274065 15 0.015845675583611826 __DUMMY__ 0.0031031050454946338 false 1.0
453 9 0.076867 22 0.071081 0 0.060096 10 0.055614 4 0.054785 5 0.053869 6 0.053184 8 0.052267 7 0.051775 3 0.051155 1 0.051113 2 0.050841 18 0.050578 11 0.050451 17 0.047119 21 0.046438 23 0.029238 19 0.024938 24 0.018561 12 0.015861 14 0.015536 13 0.007507 16 0.007231 15 0.003893 9 0.076867 22 0.071081 0 0.060096 10 0.055614 4 0.054785 5 0.053869 6 0.053184 8 0.052267 7 0.051775 3 0.051155 1 0.051113 2 0.050841 18 0.050578 11 0.050451 17 0.047119 21 0.046438 23 0.029238 19 0.024938 24 0.018561 12 0.015861 14 0.015536 13 0.007507 16 0.007231 15 0.003893 9 0.0663234914165512 22 0.0658775233302657 0 0.055296984391923244 18 0.05149057895559996 10 0.051326605670855695 11 0.04934218167697087 4 0.04859831807885649 21 0.047951198626361685 5 0.04790750665078109 17 0.04789471580778617 6 0.047304948311998905 8 0.04612205155506334 7 0.045890570604036715 1 0.04551311368437808 3 0.045105622731597135 2 0.04509241110441954 23 0.03327445666460527 19 0.03285744430285541 24 0.024202803870123576 12 0.024069219388442538 14 0.020607307695970058 16 0.01791867502858446 13 0.015230191681680567 20 0.011495112294353842 15 0.011303677414422425 __DUMMY__ 0.002003289061516034 false 1.0
211 16 0.097265 17 0.095043 0 0.085439 12 0.076823 19 0.059282 18 0.058508 11 0.055597 13 0.055403 23 0.046308 10 0.042475 22 0.03631 6 0.033967 21 0.031002 9 0.028676 8 0.025168 4 0.024743 7 0.024652 1 0.024645 2 0.024543 5 0.024225 20 0.022679 15 0.015004 3 0.012037 14 2.06E-4 16 0.097265 17 0.095043 0 0.085439 12 0.076823 19 0.059282 18 0.058508 11 0.055597 13 0.055403 23 0.046308 10 0.042475 22 0.03631 6 0.033967 21 0.031002 9 0.028676 8 0.025168 4 0.024743 7 0.024652 1 0.024645 2 0.024543 5 0.024225 20 0.022679 15 0.015004 3 0.012037 14 2.06E-4 17 0.07763286719740721 16 0.07385076029841736 0 0.06905567415893797 18 0.055410929536709674 19 0.0547723275895338 12 0.05433688408560792 11 0.04957130035236191 22 0.04530766809376582 23 0.04318705831022842 10 0.04115688906325035 9 0.03818833146064031 21 0.03665577822943038 6 0.03639300672341757 13 0.03635208739406778 4 0.03156101558667163 8 0.031397083294529365 7 0.03111699764512588 5 0.03106620239083407 1 0.031050483911050107 2 0.030732962328359373 20 0.02778501539415436 3 0.023798161260863208 15 0.020358601822756995 24 0.0170191211673163 14 0.009156151014275308 __DUMMY__ 0.0030866416902867577 false 1.0
212 19 0.09872 18 0.09772 20 0.087544 10 0.080641 16 0.060294 14 0.05802 21 0.055852 15 0.052962 12 0.051419 22 0.051146 23 0.050003 11 0.048298 17 0.045786 13 0.0452 24 0.043509 0 0.033222 9 0.025453 4 0.005062 5 0.004451 3 0.002504 6 0.001344 7 5.65E-4 8 2.4E-4 2 4.5E-5 19 0.09872 18 0.09772 20 0.087544 10 0.080641 16 0.060294 14 0.05802 21 0.055852 15 0.052962 12 0.051419 22 0.051146 23 0.050003 11 0.048298 17 0.045786 13 0.0452 24 0.043509 0 0.033222 9 0.025453 4 0.005062 5 0.004451 3 0.002504 6 0.001344 7 5.65E-4 8 2.4E-4 2 4.5E-5 18 0.08514066995572711 19 0.08324711244834683 20 0.07243410223616693 10 0.06824211811460783 21 0.060148360831736546 22 0.05639123475970918 14 0.052619727800662555 11 0.05036496827724673 12 0.04928365120321056 16 0.04830732259290118 23 0.04606771072765145 24 0.04466080811838809 17 0.044581339932679404 15 0.04410797979212215 13 0.041083766653822164 0 0.03373916068178695 9 0.032457770957715584 4 0.013755893070087353 5 0.013214373582618618 3 0.010811626593702104 6 0.010155825508008226 7 0.009138233652298622 8 0.00898019410507859 1 0.008742228433436007 2 0.0086090683354227 __DUMMY__ 0.0037147516348664303 false 1.0
454 9 0.065438 22 0.059232 0 0.051985 3 0.051569 4 0.051169 17 0.050984 8 0.050928 1 0.050778 7 0.050745 5 0.050521 2 0.050097 6 0.049578 18 0.047687 10 0.045423 19 0.037691 11 0.03652 21 0.035389 23 0.033551 24 0.030205 16 0.029795 15 0.026057 20 0.019577 14 0.01872 12 0.006363 9 0.065438 22 0.059232 0 0.051985 3 0.051569 4 0.051169 17 0.050984 8 0.050928 1 0.050778 7 0.050745 5 0.050521 2 0.050097 6 0.049578 18 0.047687 10 0.045423 19 0.037691 11 0.03652 21 0.035389 23 0.033551 24 0.030205 16 0.029795 15 0.026057 20 0.019577 14 0.01872 12 0.006363 9 0.06191503293901851 22 0.0588341901809683 0 0.05134129628122108 17 0.051015696884674444 4 0.048976955883451585 18 0.04880090642883053 5 0.048382776997756685 8 0.04814466898098027 3 0.04808417396757198 7 0.048041569916893526 1 0.047976004727975814 6 0.047757691902587565 2 0.04734956565486325 10 0.0444110593237846 11 0.038695021404622554 21 0.03862508641800979 19 0.038576545392298205 23 0.03592502903403444 16 0.030535787215774858 24 0.030418414495746407 15 0.0233571966162881 20 0.0209973446918056 14 0.0190179857439397 12 0.014120711777912033 13 0.006013281869819684 __DUMMY__ 0.0026860052691704784 false 1.0
696 21 0.085305 23 0.081428 24 0.069084 22 0.065923 12 0.062032 11 0.048959 4 0.048018 5 0.045786 6 0.043445 19 0.041369 7 0.040591 8 0.040115 3 0.040043 1 0.039855 2 0.038471 13 0.037945 20 0.034087 9 0.031842 14 0.030283 18 0.02985 17 0.020638 0 0.01034 15 0.007668 16 0.006924 21 0.085305 23 0.081428 24 0.069084 22 0.065923 12 0.062032 11 0.048959 4 0.048018 5 0.045786 6 0.043445 19 0.041369 7 0.040591 8 0.040115 3 0.040043 1 0.039855 2 0.038471 13 0.037945 20 0.034087 9 0.031842 14 0.030283 18 0.02985 17 0.020638 0 0.01034 15 0.007668 16 0.006924 21 0.07996989980259714 23 0.0646010685519803 22 0.06450785051286345 12 0.0618545725134988 24 0.059394890610565715 11 0.05284830718616722 19 0.049979706879136596 18 0.043074230316096876 13 0.041848738983568154 20 0.04023004183956507 4 0.037916424005315155 5 0.03659747113965832 14 0.03566588807191942 9 0.034272307586013226 6 0.03416623016891292 7 0.031459526127149466 3 0.031358692776016724 8 0.031199162723514796 1 0.030974407622883903 2 0.030132756331967065 17 0.029302751380937166 0 0.021521184839376487 10 0.02037947535751039 16 0.018376859732944194 15 0.013064254774061857 __DUMMY__ 0.00530330016577954 false 1.0
213 20 0.107819 23 0.0884 19 0.085467 24 0.076954 18 0.075499 16 0.058421 15 0.055308 12 0.049406 21 0.041806 17 0.036255 14 0.033896 13 0.03225 10 0.02848 4 0.026362 5 0.025781 3 0.024371 6 0.023675 22 0.023661 7 0.023313 2 0.022614 8 0.022572 1 0.022335 11 0.008284 9 0.007073 20 0.107819 23 0.0884 19 0.085467 24 0.076954 18 0.075499 16 0.058421 15 0.055308 12 0.049406 21 0.041806 17 0.036255 14 0.033896 13 0.03225 10 0.02848 4 0.026362 5 0.025781 3 0.024371 6 0.023675 22 0.023661 7 0.023313 2 0.022614 8 0.022572 1 0.022335 11 0.008284 9 0.007073 20 0.08192909475206964 19 0.07486417317664266 18 0.07160231490154383 23 0.06670016060455937 24 0.06176604035631809 21 0.04965554118193699 16 0.048053868856862934 12 0.04625251491162517 15 0.04573988509300876 22 0.04007742079501622 17 0.039954371941591134 10 0.039751530897358354 14 0.03833866354912313 13 0.0327479429342552 4 0.026623097827461965 11 0.026594005651927214 5 0.026112472010444743 3 0.024283663656312526 6 0.02377963870740061 9 0.02331427805896528 7 0.023127588432901823 8 0.022813390531936678 1 0.02257891693762932 2 0.02257272229382553 0 0.016804729505341964 __DUMMY__ 0.0039619724339408436 false 1.0
455 9 0.066074 22 0.057758 3 0.053892 4 0.053019 8 0.052288 5 0.052192 7 0.052136 1 0.052112 2 0.051254 6 0.050392 18 0.049751 10 0.048847 0 0.04636 17 0.043421 23 0.035826 19 0.035588 11 0.03451 21 0.033774 24 0.032828 15 0.029012 14 0.023586 20 0.022555 16 0.020449 12 0.002376 9 0.066074 22 0.057758 3 0.053892 4 0.053019 8 0.052288 5 0.052192 7 0.052136 1 0.052112 2 0.051254 6 0.050392 18 0.049751 10 0.048847 0 0.04636 17 0.043421 23 0.035826 19 0.035588 11 0.03451 21 0.033774 24 0.032828 15 0.029012 14 0.023586 20 0.022555 16 0.020449 12 0.002376 9 0.06139551384445361 22 0.060124125758819064 18 0.05248600646185231 10 0.048190633741562766 4 0.047373987053477874 3 0.046687641749546746 5 0.046684124556690576 0 0.046657365210451135 8 0.04575604557083643 17 0.045661412638534474 7 0.04565929693030125 1 0.04554245895837087 6 0.045060904644265036 2 0.04486292328128008 21 0.04148833317914873 19 0.040517114613673445 11 0.03977343504342562 23 0.036827333313369286 24 0.03344888988311577 15 0.025900658048893396 20 0.025387746938262422 14 0.02506537952473311 16 0.024692273535202293 12 0.013904113629368308 13 0.007855830970036658 __DUMMY__ 0.0029964509203287545 false 1.0
697 9 0.063932 22 0.056494 3 0.053981 4 0.052776 8 0.052275 7 0.052057 1 0.051955 5 0.051941 2 0.051317 6 0.050218 18 0.047587 10 0.045854 0 0.044996 17 0.043917 23 0.037375 19 0.036782 24 0.034392 21 0.033321 11 0.032518 15 0.031857 20 0.024498 16 0.024174 14 0.023589 12 0.002193 9 0.063932 22 0.056494 3 0.053981 4 0.052776 8 0.052275 7 0.052057 1 0.051955 5 0.051941 2 0.051317 6 0.050218 18 0.047587 10 0.045854 0 0.044996 17 0.043917 23 0.037375 19 0.036782 24 0.034392 21 0.033321 11 0.032518 15 0.031857 20 0.024498 16 0.024174 14 0.023589 12 0.002193 9 0.0608749980042316 22 0.05747987065897282 4 0.04968538839406731 3 0.04932880074787844 5 0.04900659262576217 18 0.048906465952727345 8 0.048545607687441726 7 0.04843080191377718 1 0.04829952825042803 2 0.047700660799209225 6 0.04769310724997564 0 0.046030496666227994 17 0.04576699204009816 10 0.04471539974236698 21 0.038392495691181236 23 0.03836232612032302 19 0.03832734773473907 11 0.03621601141062257 24 0.033690935595820745 15 0.027085761898420314 16 0.026207176965608 20 0.024602109042619356 14 0.023064735976784764 12 0.012058721048566838 13 0.00651819233598165 __DUMMY__ 0.0030094754461677396 false 1.0
214 17 0.055729 6 0.05391 8 0.053622 7 0.053152 1 0.052951 4 0.052896 2 0.052747 5 0.05255 23 0.051534 3 0.051267 9 0.050013 0 0.048678 22 0.046637 16 0.046279 19 0.040876 24 0.038977 18 0.038442 21 0.03267 20 0.029101 11 0.028567 12 0.025601 10 0.025014 15 0.012712 13 0.006075 17 0.055729 6 0.05391 8 0.053622 7 0.053152 1 0.052951 4 0.052896 2 0.052747 5 0.05255 23 0.051534 3 0.051267 9 0.050013 0 0.048678 22 0.046637 16 0.046279 19 0.040876 24 0.038977 18 0.038442 21 0.03267 20 0.029101 11 0.028567 12 0.025601 10 0.025014 15 0.012712 13 0.006075 17 0.05099386557741425 23 0.04982495074780604 4 0.0493982732269654 6 0.04937238075589827 9 0.04912644614046734 5 0.04898544852096972 8 0.04891045263700654 22 0.04869885381074105 7 0.04869744391784367 1 0.04856262246140779 2 0.048173612115874155 3 0.04748807414772204 0 0.04419285971821573 18 0.04320141865304807 19 0.04223442890531201 16 0.04021504303533537 24 0.040081269342458994 21 0.03758155688004888 20 0.03223556411199587 11 0.03125376952946099 10 0.029878588595013057 12 0.027620810931919832 15 0.01831218162646689 13 0.011767627175778433 14 0.010351947378762553 __DUMMY__ 0.0028405100560670153 false 1.0
698 19 0.119545 20 0.112516 16 0.092672 18 0.083627 24 0.074495 23 0.061559 21 0.06022 17 0.059698 12 0.054971 15 0.051108 22 0.047916 10 0.040305 11 0.037421 14 0.035154 13 0.024863 0 0.021082 9 0.009924 4 0.004228 5 0.00392 3 0.003075 7 6.45E-4 8 4.42E-4 6 3.79E-4 1 2.32E-4 19 0.119545 20 0.112516 16 0.092672 18 0.083627 24 0.074495 23 0.061559 21 0.06022 17 0.059698 12 0.054971 15 0.051108 22 0.047916 10 0.040305 11 0.037421 14 0.035154 13 0.024863 0 0.021082 9 0.009924 4 0.004228 5 0.00392 3 0.003075 7 6.45E-4 8 4.42E-4 6 3.79E-4 1 2.32E-4 19 0.09558417585232186 20 0.08784696430178819 18 0.07514664525370418 16 0.06754756798937177 24 0.06433318345945643 21 0.06405911457159533 23 0.05492316176004632 12 0.054540762330335155 22 0.05357449391016637 17 0.05135232227412458 11 0.04390067053253468 10 0.04281348692952701 15 0.041522732060866714 14 0.03904257929242639 13 0.03146988328114764 0 0.025446018637406708 9 0.021407917910576838 4 0.013066779031945707 5 0.012677898805368765 3 0.010808045039609126 6 0.009451873394633699 7 0.008933234780881727 8 0.008827269271165715 1 0.008612331020465418 2 0.008337613632103067 __DUMMY__ 0.004773274676430443 false 1.0
456 9 0.065338 22 0.059203 0 0.051956 3 0.051509 4 0.051129 17 0.050979 8 0.050925 1 0.050701 7 0.050687 5 0.050418 2 0.050038 6 0.049514 18 0.047845 10 0.045414 19 0.037708 11 0.036512 21 0.035337 23 0.033759 24 0.030257 16 0.029848 15 0.026074 20 0.019666 14 0.01875 12 0.006433 9 0.065338 22 0.059203 0 0.051956 3 0.051509 4 0.051129 17 0.050979 8 0.050925 1 0.050701 7 0.050687 5 0.050418 2 0.050038 6 0.049514 18 0.047845 10 0.045414 19 0.037708 11 0.036512 21 0.035337 23 0.033759 24 0.030257 16 0.029848 15 0.026074 20 0.019666 14 0.01875 12 0.006433 9 0.06186791498790311 22 0.05882017607438773 0 0.05132974596089916 17 0.051015746435245556 4 0.04895844054562065 18 0.04887261810510685 5 0.04833527981694344 8 0.04814332819978131 3 0.04805587282278124 7 0.04801490150903561 1 0.047940563146953226 6 0.04772871783028341 2 0.04732246414420154 10 0.04440495770677381 11 0.038691708905247396 21 0.038601116448921925 19 0.0385839122765896 23 0.03602143602225768 16 0.030563026355872828 24 0.030441193218414226 15 0.023362968802214078 20 0.021037033221038226 14 0.019029349879700504 12 0.01415594753724824 13 0.00601471489774169 __DUMMY__ 0.0026868651488371493 false 1.0
215 19 0.107028 18 0.079612 20 0.079293 16 0.078148 21 0.075551 22 0.066748 11 0.063167 17 0.062652 12 0.061179 24 0.055353 10 0.053235 23 0.045819 0 0.042421 14 0.032158 13 0.029072 15 0.026406 9 0.025824 5 0.005656 4 0.005527 3 0.002457 6 0.002067 2 4.54E-4 7 1.64E-4 8 9.0E-6 19 0.107028 18 0.079612 20 0.079293 16 0.078148 21 0.075551 22 0.066748 11 0.063167 17 0.062652 12 0.061179 24 0.055353 10 0.053235 23 0.045819 0 0.042421 14 0.032158 13 0.029072 15 0.026406 9 0.025824 5 0.005656 4 0.005527 3 0.002457 6 0.002067 2 4.54E-4 7 1.64E-4 8 9.0E-6 19 0.08934062549249519 21 0.07287031211751355 18 0.0723502653081577 20 0.06871924598655176 22 0.0642221553398232 16 0.06114492157399583 12 0.05901613204760894 11 0.05891053675606287 17 0.054241330306972056 24 0.053261495657657365 10 0.04906454967315791 23 0.04643121967120005 0 0.038524954392516936 14 0.03519225372704209 13 0.033532280262621235 9 0.02996746278077155 15 0.025653808917199043 4 0.013668198056694354 5 0.013489907329979421 6 0.010458560047852975 3 0.010106361019730888 7 0.008631258398151154 8 0.008543933175815737 2 0.008463386842569563 1 0.008433728113643124 __DUMMY__ 0.0057611170042154046 false 1.0
457 9 0.065207 22 0.059492 0 0.052102 3 0.051634 4 0.051168 17 0.050896 8 0.050852 5 0.050657 7 0.050592 1 0.050559 2 0.05016 6 0.049591 18 0.04766 10 0.045452 19 0.037706 11 0.036589 21 0.035425 23 0.033451 24 0.03026 16 0.029853 15 0.026124 20 0.01947 14 0.018738 12 0.006359 9 0.065207 22 0.059492 0 0.052102 3 0.051634 4 0.051168 17 0.050896 8 0.050852 5 0.050657 7 0.050592 1 0.050559 2 0.05016 6 0.049591 18 0.04766 10 0.045452 19 0.037706 11 0.036589 21 0.035425 23 0.033451 24 0.03026 16 0.029853 15 0.026124 20 0.01947 14 0.018738 12 0.006359 9 0.06180761119578179 22 0.05895348278726716 0 0.05139712111254162 17 0.050977555031545406 4 0.04897648676300325 18 0.048787403019848935 5 0.04844552265818907 3 0.04811356271078518 8 0.04810974269791862 7 0.04797117410613986 1 0.04787516923211768 6 0.047764279869283326 2 0.047378770055643886 10 0.044422536639433026 11 0.038727258446404816 21 0.03864173672650528 19 0.03858304366182838 23 0.03587950171061208 16 0.030565373560527357 24 0.03044261827972141 15 0.023386050483736497 20 0.02094670877850435 14 0.01902384434743344 12 0.014121854044691587 13 0.006014723215865546 __DUMMY__ 0.0026868688646703143 false 1.0
699 0 0.085163 17 0.078395 9 0.061482 22 0.058196 11 0.058131 16 0.055664 10 0.050569 18 0.050094 6 0.047199 8 0.043688 1 0.043576 7 0.043516 2 0.043016 4 0.042743 5 0.04237 3 0.037161 19 0.03608 21 0.033491 12 0.033285 23 0.025056 13 0.019447 15 0.007067 24 0.002919 14 0.001689 0 0.085163 17 0.078395 9 0.061482 22 0.058196 11 0.058131 16 0.055664 10 0.050569 18 0.050094 6 0.047199 8 0.043688 1 0.043576 7 0.043516 2 0.043016 4 0.042743 5 0.04237 3 0.037161 19 0.03608 21 0.033491 12 0.033285 23 0.025056 13 0.019447 15 0.007067 24 0.002919 14 0.001689 0 0.07160749038145477 17 0.06947895938557531 9 0.05742704508053901 22 0.05727893959739079 11 0.05194291957199683 16 0.05035107695230111 18 0.050297924218502425 10 0.046447907893753394 6 0.044978554191691396 8 0.04243850491738354 7 0.04231600673738509 4 0.042315905274472675 1 0.04228165815172711 5 0.04187367363097298 2 0.041731053974409744 19 0.039880011045692956 3 0.037846304359490324 21 0.0373950883910993 12 0.03188350798052861 23 0.03093769606072104 13 0.018397914129201196 24 0.015126420439524463 15 0.013499137280202194 20 0.011533402366263799 14 0.00860278505654812 __DUMMY__ 0.0021301129311717807 false 1.0
216 21 0.103901 19 0.094711 12 0.080462 18 0.078731 20 0.076065 22 0.075907 24 0.066861 11 0.065128 23 0.055491 13 0.045179 10 0.044582 17 0.040826 14 0.039867 16 0.038939 9 0.026983 0 0.024062 5 0.010543 4 0.009208 15 0.007089 3 0.007061 2 0.003887 6 0.003063 1 0.001168 7 2.85E-4 21 0.103901 19 0.094711 12 0.080462 18 0.078731 20 0.076065 22 0.075907 24 0.066861 11 0.065128 23 0.055491 13 0.045179 10 0.044582 17 0.040826 14 0.039867 16 0.038939 9 0.026983 0 0.024062 5 0.010543 4 0.009208 15 0.007089 3 0.007061 2 0.003887 6 0.003063 1 0.001168 7 2.85E-4 21 0.08115966403731668 19 0.07193762261398755 22 0.0673993403364392 18 0.06625080454196293 12 0.06024029448047668 20 0.05829463485858162 24 0.05589411503471454 11 0.05564456380338913 23 0.0506650748306983 10 0.04377364688866597 17 0.03909709851922736 14 0.037614929953961845 13 0.03733305349829603 9 0.03660618334902586 16 0.03195843080061532 0 0.029253221208926566 5 0.023894237100479374 4 0.0235286527817845 3 0.0210075244302418 6 0.01895910826298522 2 0.018545911137037144 1 0.01748858874512131 7 0.017170013275634072 8 0.017014507170814368 15 0.015601522869266693 __DUMMY__ 0.003667255470350035 false 1.0
458 14 0.112753 15 0.089523 18 0.08694 10 0.080627 13 0.074489 21 0.067721 20 0.066564 19 0.057306 22 0.054733 12 0.046229 11 0.043305 24 0.042363 9 0.038713 23 0.038103 5 0.01535 4 0.014786 17 0.013045 3 0.012888 2 0.007955 6 0.007791 0 0.007435 1 0.007323 8 0.007212 7 0.006843 14 0.112753 15 0.089523 18 0.08694 10 0.080627 13 0.074489 21 0.067721 20 0.066564 19 0.057306 22 0.054733 12 0.046229 11 0.043305 24 0.042363 9 0.038713 23 0.038103 5 0.01535 4 0.014786 17 0.013045 3 0.012888 2 0.007955 6 0.007791 0 0.007435 1 0.007323 8 0.007212 7 0.006843 14 0.08900115520401167 18 0.07681176845247474 10 0.0697621570382565 15 0.0686713012819144 13 0.06795622038611315 21 0.06417117041244254 20 0.05727588127953604 19 0.05532901749850344 22 0.053619489526498934 12 0.051352001975357144 11 0.04709495209868201 24 0.03905227766034705 23 0.03893861100653826 9 0.03789999877443156 17 0.02499340083445166 0 0.02053197819790119 5 0.019093168280564385 4 0.019028529367776964 3 0.01559231740869488 6 0.014596467128295727 16 0.014350256612482657 2 0.013124009390369968 8 0.01302059522315004 1 0.012966581688954426 7 0.012820869347367514 __DUMMY__ 0.0029458239248832062 false 1.0
217 21 0.104517 19 0.094561 12 0.080345 18 0.078299 22 0.075768 20 0.075125 24 0.067117 11 0.064795 23 0.055267 13 0.044616 10 0.043429 17 0.0414 14 0.039409 16 0.038236 9 0.027202 0 0.023271 5 0.011268 4 0.009532 3 0.008717 15 0.006758 2 0.005531 6 0.002992 1 0.001683 8 1.63E-4 21 0.104517 19 0.094561 12 0.080345 18 0.078299 22 0.075768 20 0.075125 24 0.067117 11 0.064795 23 0.055267 13 0.044616 10 0.043429 17 0.0414 14 0.039409 16 0.038236 9 0.027202 0 0.023271 5 0.011268 4 0.009532 3 0.008717 15 0.006758 2 0.005531 6 0.002992 1 0.001683 8 1.63E-4 21 0.08141856477064853 19 0.07187450150167778 22 0.0673408474859025 18 0.0660691342332526 12 0.06019105654122038 20 0.057899405917549926 24 0.05600169150779739 11 0.055504522426021365 23 0.05057086169542361 10 0.04328888406729318 17 0.039338377643680096 14 0.0374223532139311 13 0.037096334556680384 9 0.036698221085012396 16 0.031662859793242015 0 0.02892065690853675 5 0.02419901003835774 4 0.023664843952056983 3 0.021703696084114654 2 0.019237040010530566 6 0.01892924362543891 1 0.017705082191744353 8 0.017083018745731784 7 0.017050183648487642 15 0.015462355968776355 __DUMMY__ 0.0036672523868909986 false 1.0
459 17 0.080257 0 0.073073 9 0.058707 16 0.058537 22 0.056559 18 0.055167 6 0.048489 8 0.045311 4 0.045268 7 0.045141 1 0.044643 2 0.044326 5 0.044324 19 0.042419 10 0.042018 11 0.040585 3 0.03952 23 0.035652 21 0.028636 12 0.01981 15 0.019691 24 0.015828 20 0.013127 13 0.002912 17 0.080257 0 0.073073 9 0.058707 16 0.058537 22 0.056559 18 0.055167 6 0.048489 8 0.045311 4 0.045268 7 0.045141 1 0.044643 2 0.044326 5 0.044324 19 0.042419 10 0.042018 11 0.040585 3 0.03952 23 0.035652 21 0.028636 12 0.01981 15 0.019691 24 0.015828 20 0.013127 13 0.002912 17 0.06537631200679915 0 0.05991839184101804 9 0.05479001532848448 22 0.053828827098143385 18 0.04957699584070443 6 0.04814258864945969 16 0.047866833893101 4 0.04653463906690434 8 0.04612110755068613 7 0.04603965890046262 5 0.04586777014576578 1 0.045780566963704306 2 0.04533232744508714 3 0.042495684472387024 19 0.04092037520714489 23 0.04023821690423429 11 0.03874945458608752 10 0.03828748521113966 21 0.03420482269511478 24 0.025573126954243627 12 0.024326234488175162 15 0.020286939935050975 20 0.020110906960987204 13 0.009849130221962897 14 0.008257660443030255 __DUMMY__ 0.00152392719012134 false 1.0
218 23 0.092713 21 0.065215 24 0.065041 18 0.062581 19 0.058933 20 0.058248 22 0.057713 3 0.04971 5 0.048996 4 0.048138 2 0.045913 1 0.043991 7 0.041992 6 0.041378 8 0.040643 9 0.040254 17 0.027931 12 0.025054 15 0.021848 10 0.017468 14 0.017116 11 0.013987 16 0.01178 0 0.003357 23 0.092713 21 0.065215 24 0.065041 18 0.062581 19 0.058933 20 0.058248 22 0.057713 3 0.04971 5 0.048996 4 0.048138 2 0.045913 1 0.043991 7 0.041992 6 0.041378 8 0.040643 9 0.040254 17 0.027931 12 0.025054 15 0.021848 10 0.017468 14 0.017116 11 0.013987 16 0.01178 0 0.003357 23 0.06559237075098318 22 0.05637736334535833 18 0.054286939826718325 21 0.05275781032136186 24 0.049288415190192295 9 0.04887704582090682 5 0.048872906520350805 4 0.04871379901254221 3 0.048518365126020035 19 0.04749541965016293 2 0.04642635601789645 1 0.04580934196981271 7 0.044953046427808875 6 0.0448293120845311 8 0.04434383728720145 20 0.04109365617177641 17 0.036943078258013864 10 0.029536687078332725 11 0.026105290792500277 0 0.025093569328782442 12 0.024037559082614953 15 0.021729081889300842 16 0.019613258423546935 14 0.019536611860254665 13 0.007634933423175399 __DUMMY__ 0.0015339443398538614 false 1.0
219 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.08713654788248279 10 0.08149109154286724 21 0.07026364682466744 19 0.06993039877798464 22 0.06987183669050001 11 0.06954161990634529 14 0.056359661045726525 12 0.05342964917866373 0 0.052158625473845734 13 0.05041953153711298 17 0.05037406575914978 9 0.04823235185200761 20 0.04603528967917755 16 0.035074916367527055 15 0.03220896443410317 23 0.02564839828372095 24 0.024737350639345766 4 0.012626901108092349 5 0.012490899043897028 6 0.01004292904409446 3 0.008102379677670257 1 0.007887108195827294 7 0.007788065953471057 8 0.00777059227757424 2 0.007418140077113428 __DUMMY__ 0.0029590387470316776 false 1.0
460 23 0.08268 24 0.06764 20 0.060781 5 0.057586 4 0.057145 3 0.056507 2 0.053647 1 0.052734 6 0.052632 8 0.052106 7 0.052085 18 0.045636 19 0.044823 21 0.038738 9 0.035237 22 0.033221 15 0.031664 12 0.02886 14 0.026151 10 0.020281 17 0.018559 13 0.01701 16 0.013148 0 0.001127 23 0.08268 24 0.06764 20 0.060781 5 0.057586 4 0.057145 3 0.056507 2 0.053647 1 0.052734 6 0.052632 8 0.052106 7 0.052085 18 0.045636 19 0.044823 21 0.038738 9 0.035237 22 0.033221 15 0.031664 12 0.02886 14 0.026151 10 0.020281 17 0.018559 13 0.01701 16 0.013148 0 0.001127 23 0.06393089151358883 20 0.057840226546911296 18 0.05644650840238364 24 0.056142817698940806 19 0.053111721218189904 21 0.04831469711335755 22 0.044204258160061675 4 0.04158429728754664 5 0.041551414897423866 3 0.03972526527464994 14 0.038412745286179904 6 0.03789556680404318 2 0.037535370501385 15 0.037327104919970475 1 0.03726235994516769 8 0.0370909158162904 7 0.03708582541987699 9 0.0367457469545073 12 0.036652724652051986 10 0.03635073106002781 17 0.02960219754341885 13 0.028395376054720617 16 0.02412388826246685 11 0.022716814217180758 0 0.016362709114637792 __DUMMY__ 0.003587825335020271 false 1.0
461 9 0.065432 22 0.059537 0 0.052262 3 0.051663 4 0.051234 17 0.050913 8 0.050909 5 0.050683 7 0.050618 1 0.050578 2 0.050181 6 0.04963 18 0.04762 10 0.045528 19 0.03779 11 0.036593 21 0.035395 23 0.033406 24 0.030072 16 0.029856 15 0.025945 20 0.019387 14 0.018593 12 0.006176 9 0.065432 22 0.059537 0 0.052262 3 0.051663 4 0.051234 17 0.050913 8 0.050909 5 0.050683 7 0.050618 1 0.050578 2 0.050181 6 0.04963 18 0.04762 10 0.045528 19 0.03779 11 0.036593 21 0.035395 23 0.033406 24 0.030072 16 0.029856 15 0.025945 20 0.019387 14 0.018593 12 0.006176 9 0.061911219205986565 22 0.05897411847623423 0 0.05147078419154051 17 0.05098529780350216 4 0.04900682156716004 18 0.04876887359536429 5 0.04845741897828245 8 0.048135930221100076 3 0.04812684260272982 7 0.0479830713009065 1 0.047883839697863924 6 0.04778217027106997 2 0.04738836340988019 10 0.04445748970661254 11 0.038729030981732644 21 0.03862783587586777 19 0.03862169538934598 23 0.035858691154712866 16 0.030566700159354424 24 0.030355896668443887 15 0.023303490763596002 20 0.020908408267897527 14 0.018956966214629677 12 0.014037467460918687 13 0.006014712125038848 __DUMMY__ 0.0026868639102283773 false 1.0
220 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.095438 10 0.088832 19 0.078044 21 0.076323 11 0.075661 22 0.073353 12 0.059906 14 0.059146 13 0.055958 0 0.055872 17 0.054168 20 0.049949 9 0.047827 16 0.039406 15 0.031334 24 0.02217 23 0.021806 5 0.005365 4 0.005209 6 0.002623 1 6.32E-4 3 5.32E-4 7 2.29E-4 8 2.16E-4 18 0.08713654788248278 10 0.08149109154286723 21 0.07026364682466743 19 0.06993039877798463 22 0.0698718366905 11 0.06954161990634529 14 0.05635966104572652 12 0.05342964917866373 0 0.05215862547384572 13 0.050419531537112976 17 0.05037406575914977 9 0.048232351852007596 20 0.04603528967917755 16 0.035074916367527055 15 0.03220896443410317 23 0.02564839828372095 24 0.024737350639345762 4 0.012626901108092347 5 0.012490899043897026 6 0.01004292904409446 3 0.008102379677670258 1 0.007887108195827294 7 0.007788065953471056 8 0.007770592277574241 2 0.007418140077113427 __DUMMY__ 0.002959038747031678 false 1.0
462 9 0.066216 22 0.058199 3 0.053886 4 0.052912 5 0.05215 8 0.052115 1 0.051971 7 0.051936 2 0.05125 18 0.050404 6 0.050196 10 0.048803 0 0.046094 17 0.043534 19 0.035961 23 0.035735 11 0.034195 21 0.033974 24 0.032478 15 0.029081 14 0.023506 20 0.022642 16 0.02037 12 0.002391 9 0.066216 22 0.058199 3 0.053886 4 0.052912 5 0.05215 8 0.052115 1 0.051971 7 0.051936 2 0.05125 18 0.050404 6 0.050196 10 0.048803 0 0.046094 17 0.043534 19 0.035961 23 0.035735 11 0.034195 21 0.033974 24 0.032478 15 0.029081 14 0.023506 20 0.022642 16 0.02037 12 0.002391 9 0.061465541890275456 22 0.060318919642971154 18 0.05277696193971391 10 0.048167979839483746 4 0.047333092295983925 3 0.046694680195686886 5 0.04667302668609684 0 0.046540062629825504 17 0.04571595514664735 8 0.045687145835592954 7 0.04557788200438896 1 0.04548823537242898 6 0.04498044500190439 2 0.04487137926857736 21 0.0415655127258057 19 0.04067837282897067 11 0.039620255641164615 23 0.03678287707674517 24 0.033283463942113886 15 0.02593851823755025 20 0.025419616468630224 14 0.02502458047522266 16 0.024658203810947188 12 0.0138979648313534 13 0.007848204246268455 __DUMMY__ 0.002991121965650412 false 1.0
221 21 0.098107 12 0.09567 11 0.084941 13 0.074996 22 0.07273 19 0.065598 18 0.065198 10 0.0557 14 0.048677 0 0.045468 20 0.044866 17 0.040744 24 0.040039 23 0.038082 9 0.033689 16 0.031126 4 0.013259 5 0.012515 6 0.011115 7 0.006252 1 0.006059 8 0.005862 2 0.005084 3 0.004224 21 0.098107 12 0.09567 11 0.084941 13 0.074996 22 0.07273 19 0.065598 18 0.065198 10 0.0557 14 0.048677 0 0.045468 20 0.044866 17 0.040744 24 0.040039 23 0.038082 9 0.033689 16 0.031126 4 0.013259 5 0.012515 6 0.011115 7 0.006252 1 0.006059 8 0.005862 2 0.005084 3 0.004224 21 0.08926448607515149 12 0.08442998759463219 11 0.07531564702609715 22 0.068667111992625 13 0.06698324414351661 18 0.06392417042173243 19 0.06347385191422099 10 0.05289936338723627 14 0.04810169824387028 20 0.04571872716761924 24 0.04173263787996949 0 0.04136243523665003 23 0.040679998896968536 17 0.039902374749728256 9 0.03453872620940573 16 0.030691035516058233 4 0.017231917310609784 5 0.01665104222884154 6 0.014894822427762187 7 0.010636208473419168 1 0.010441685897068807 8 0.010421477339513782 2 0.009825542982940128 3 0.009414090365596954 15 0.008311225655169044 __DUMMY__ 0.004486490863596728 false 1.0
463 9 0.064012 22 0.058284 3 0.052276 4 0.051438 8 0.051082 5 0.050936 7 0.050839 1 0.0508 2 0.050547 0 0.049847 6 0.049638 17 0.049331 18 0.046788 10 0.044497 19 0.03774 23 0.034893 11 0.034789 21 0.034695 24 0.031778 16 0.030018 15 0.028702 20 0.021285 14 0.02003 12 0.005755 9 0.064012 22 0.058284 3 0.052276 4 0.051438 8 0.051082 5 0.050936 7 0.050839 1 0.0508 2 0.050547 0 0.049847 6 0.049638 17 0.049331 18 0.046788 10 0.044497 19 0.03774 23 0.034893 11 0.034789 21 0.034695 24 0.031778 16 0.030018 15 0.028702 20 0.021285 14 0.02003 12 0.005755 9 0.060955578644374286 22 0.058101912979622285 17 0.05006866476730744 0 0.05002334936526913 4 0.04904806077251707 5 0.04852333739617518 3 0.04836382729614422 18 0.048352526416405785 8 0.048161255282635096 7 0.04803126336187357 1 0.04793392024003864 6 0.04772905331128758 2 0.047507673503028536 10 0.04383582019426174 19 0.03868117398459176 21 0.03823998785372349 11 0.037650739272171684 23 0.036798505816754964 24 0.03134747881671925 16 0.030703363031627465 15 0.024837199743393042 20 0.022146139986952078 14 0.019803078490526524 12 0.01400921387228427 13 0.006250028269283714 __DUMMY__ 0.002896847331031196 false 1.0
222 21 0.098506 12 0.095631 11 0.085425 13 0.075268 22 0.073631 18 0.066182 19 0.065797 10 0.056318 14 0.048502 0 0.045988 20 0.044803 17 0.041031 24 0.03985 23 0.037969 9 0.033725 16 0.03102 4 0.012827 5 0.012024 6 0.010641 7 0.005633 1 0.005394 8 0.005254 2 0.004724 3 0.00386 21 0.098506 12 0.095631 11 0.085425 13 0.075268 22 0.073631 18 0.066182 19 0.065797 10 0.056318 14 0.048502 0 0.045988 20 0.044803 17 0.041031 24 0.03985 23 0.037969 9 0.033725 16 0.03102 4 0.012827 5 0.012024 6 0.010641 7 0.005633 1 0.005394 8 0.005254 2 0.004724 3 0.00386 21 0.08944883828494496 12 0.08441188208523494 11 0.07553930273876035 22 0.069083528949135 13 0.06710891216213283 18 0.06437895788551963 19 0.06356577947911533 10 0.053184980310341565 14 0.04802076134762094 20 0.04568956362764287 24 0.04164523547766361 0 0.04160276306637523 23 0.04062772789323266 17 0.04003500144079503 9 0.03455533500670666 16 0.030642009444046218 4 0.01703221264598982 5 0.016424065797286422 6 0.014675705741281506 7 0.010350070570198626 8 0.010140424301646203 1 0.01013428502145284 2 0.009659126621063404 3 0.009245825414342941 15 0.008311217971566595 __DUMMY__ 0.004486486715903764 false 1.0
464 9 0.060061 22 0.058411 17 0.057005 0 0.053378 4 0.050712 1 0.05039 8 0.050383 7 0.050351 6 0.050336 5 0.049952 2 0.049425 3 0.049087 18 0.047884 23 0.041822 19 0.040149 21 0.038227 11 0.037713 10 0.036863 16 0.036271 24 0.032099 20 0.021296 12 0.016442 15 0.015442 14 0.006301 9 0.060061 22 0.058411 17 0.057005 0 0.053378 4 0.050712 1 0.05039 8 0.050383 7 0.050351 6 0.050336 5 0.049952 2 0.049425 3 0.049087 18 0.047884 23 0.041822 19 0.040149 21 0.038227 11 0.037713 10 0.036863 16 0.036271 24 0.032099 20 0.021296 12 0.016442 15 0.015442 14 0.006301 9 0.05873507097898686 22 0.05641463335310456 17 0.05583628440267541 0 0.053445482359753445 4 0.04991782590025887 6 0.049866565424757814 8 0.049482279335850844 7 0.04944553129487843 1 0.04940892721482865 5 0.04929510392987627 2 0.04864123218537236 3 0.047940919883035824 18 0.04685745959020259 23 0.04046536556395189 19 0.03845246022922592 10 0.03798686669414426 11 0.037925547534839246 21 0.037620677864167236 16 0.03630159510103046 24 0.030549285228738052 20 0.020709778259103924 12 0.019397219102942648 15 0.017634699962193665 14 0.010270773445107906 13 0.005829838803944954 __DUMMY__ 0.0015685763570277593 false 1.0
223 22 0.073568 9 0.069489 0 0.060396 18 0.058713 17 0.055291 10 0.0509 11 0.050316 21 0.048717 5 0.047634 4 0.047495 6 0.045915 8 0.045356 1 0.045101 7 0.045065 3 0.045044 2 0.044376 19 0.041238 23 0.031497 24 0.027025 16 0.023797 12 0.017194 20 0.015293 14 0.008138 15 0.002442 22 0.073568 9 0.069489 0 0.060396 18 0.058713 17 0.055291 10 0.0509 11 0.050316 21 0.048717 5 0.047634 4 0.047495 6 0.045915 8 0.045356 1 0.045101 7 0.045065 3 0.045044 2 0.044376 19 0.041238 23 0.031497 24 0.027025 16 0.023797 12 0.017194 20 0.015293 14 0.008138 15 0.002442 22 0.0680002241830048 9 0.06454085527211723 18 0.05705229949872184 0 0.05620077809000028 17 0.05268415598925547 10 0.05096359563311923 11 0.04879247380693474 21 0.04783083915480335 4 0.0450314534368052 5 0.04480191945759957 6 0.043554457101538296 8 0.0428540251002676 7 0.04269637743023298 1 0.042610383154407745 3 0.042490735633529474 2 0.04199305639536929 19 0.04164675056335387 23 0.033057784281882795 24 0.02758036940175644 16 0.026115626150427305 12 0.021118621765014334 20 0.01897443769152027 14 0.017047953523601046 15 0.012050772690266599 13 0.008570715954072985 __DUMMY__ 0.00173933864039714 false 1.0
465 10 0.102731 18 0.088649 11 0.067946 14 0.067515 0 0.066115 22 0.064904 9 0.063377 17 0.050641 19 0.050259 13 0.049504 21 0.049213 15 0.04796 12 0.03103 16 0.025165 20 0.024605 4 0.019541 5 0.019289 6 0.018417 8 0.016732 7 0.016726 1 0.01666 2 0.016245 3 0.016199 23 0.010577 10 0.102731 18 0.088649 11 0.067946 14 0.067515 0 0.066115 22 0.064904 9 0.063377 17 0.050641 19 0.050259 13 0.049504 21 0.049213 15 0.04796 12 0.03103 16 0.025165 20 0.024605 4 0.019541 5 0.019289 6 0.018417 8 0.016732 7 0.016726 1 0.01666 2 0.016245 3 0.016199 23 0.010577 10 0.08567755992560733 18 0.08158466772715703 22 0.06418760418937995 11 0.06242218517380935 14 0.05921948881554597 9 0.056349302823465224 0 0.056027786060305194 21 0.05409395076877578 19 0.05383349607086616 17 0.04820217580902631 13 0.044970598564812295 15 0.041786517921210076 12 0.036381209239459894 20 0.03244814234304952 16 0.027317194814476482 4 0.022079762233735856 5 0.02173591227462284 23 0.02148195221620037 6 0.020296848765809297 8 0.01855744994980444 7 0.01854825668782149 1 0.018432280295911534 3 0.018421391653663497 2 0.01804696270335203 24 0.014292141264194341 __DUMMY__ 0.0036051617079377327 false 1.0
466 20 0.101782 19 0.08163 24 0.08106 23 0.074845 18 0.066561 12 0.061321 21 0.060578 15 0.049147 16 0.048686 14 0.046168 13 0.042626 22 0.036118 17 0.031072 10 0.026866 4 0.023549 11 0.022517 5 0.022325 3 0.020463 6 0.019273 7 0.018715 8 0.018376 1 0.018134 2 0.017548 9 0.010642 20 0.101782 19 0.08163 24 0.08106 23 0.074845 18 0.066561 12 0.061321 21 0.060578 15 0.049147 16 0.048686 14 0.046168 13 0.042626 22 0.036118 17 0.031072 10 0.026866 4 0.023549 11 0.022517 5 0.022325 3 0.020463 6 0.019273 7 0.018715 8 0.018376 1 0.018134 2 0.017548 9 0.010642 20 0.08387295897314309 19 0.07448909373078208 24 0.06822497909416189 18 0.06614729303670744 23 0.06348389149441398 21 0.061906279504276136 12 0.05688232151749827 14 0.0481263874743123 15 0.04494496930549528 22 0.04461965991478324 16 0.042893426277868074 13 0.042676447042085 10 0.03580820723342239 17 0.033953567300180405 11 0.032613626550608114 4 0.024006246695102342 5 0.023204348454281015 3 0.02095840698300488 9 0.020901854677636094 6 0.020113674030079437 7 0.019282934237822114 8 0.01911555425260542 1 0.01887750555041026 2 0.0184737125729967 0 0.011505768306153312 __DUMMY__ 0.0029168857901708855 false 1.0
224 0 0.087016 17 0.079024 9 0.065287 22 0.062632 11 0.058851 10 0.055974 18 0.055 16 0.053903 6 0.045357 8 0.042845 7 0.042609 1 0.042551 2 0.042125 4 0.041681 5 0.041475 3 0.037372 19 0.037369 21 0.032759 12 0.024034 23 0.021336 13 0.011932 15 0.011644 14 0.00416 24 0.003063 0 0.087016 17 0.079024 9 0.065287 22 0.062632 11 0.058851 10 0.055974 18 0.055 16 0.053903 6 0.045357 8 0.042845 7 0.042609 1 0.042551 2 0.042125 4 0.041681 5 0.041475 3 0.037372 19 0.037369 21 0.032759 12 0.024034 23 0.021336 13 0.011932 15 0.011644 14 0.00416 24 0.003063 0 0.07322910899607997 17 0.06956022575011789 9 0.061500958425913785 22 0.06056230068875998 18 0.05282069669568984 11 0.05218343455216313 10 0.05011980588618234 16 0.047441561549353875 6 0.04510942990211968 8 0.043198605008761305 7 0.04305307194647604 4 0.04296845466702449 1 0.04295674408737976 5 0.042594575511395456 2 0.042447490654250256 3 0.0392840575804576 19 0.03916760497370507 21 0.03641887391964004 23 0.028156467979271817 12 0.02466002334248119 15 0.015142089128999583 24 0.014148744450425639 13 0.012522026580431877 20 0.009508373542802463 14 0.009290826910519153 __DUMMY__ 0.001954447269597887 false 1.0
225 20 0.104449 19 0.098034 21 0.092281 18 0.084993 24 0.080833 12 0.07314 22 0.066778 23 0.057493 11 0.056606 16 0.044337 14 0.044254 10 0.041424 13 0.039812 17 0.036303 15 0.02333 9 0.018692 0 0.010561 4 0.008622 5 0.007511 3 0.004898 6 0.00198 7 0.001508 8 0.00133 1 8.31E-4 20 0.104449 19 0.098034 21 0.092281 18 0.084993 24 0.080833 12 0.07314 22 0.066778 23 0.057493 11 0.056606 16 0.044337 14 0.044254 10 0.041424 13 0.039812 17 0.036303 15 0.02333 9 0.018692 0 0.010561 4 0.008622 5 0.007511 3 0.004898 6 0.00198 7 0.001508 8 0.00133 1 8.31E-4 19 0.08361274066009733 20 0.08207836293985564 21 0.08186882365638339 18 0.07521326059817822 24 0.06775499237627367 22 0.06488195160391856 12 0.06365936593813099 11 0.055357546648063596 23 0.05230635799425321 10 0.043549302566431594 14 0.04333594186048064 16 0.040231127519535045 13 0.038549285399987206 17 0.03817161458619839 9 0.027002175625380237 15 0.02522166125170856 0 0.019993450303067893 4 0.01600977083841039 5 0.015241257496019697 3 0.012380958800015749 6 0.010699168677494127 7 0.009773771044702803 8 0.00967943256880749 1 0.009322118685419914 2 0.008757342563031584 __DUMMY__ 0.005348217798154132 false 1.0
467 22 0.080177 18 0.070438 21 0.070178 11 0.063677 19 0.063635 9 0.061296 0 0.059513 17 0.05907 10 0.058551 12 0.037827 16 0.03325 24 0.03239 23 0.031117 20 0.030882 4 0.03029 5 0.02936 6 0.027663 8 0.026147 3 0.026127 7 0.025982 1 0.025597 2 0.025122 14 0.017342 13 0.014371 22 0.080177 18 0.070438 21 0.070178 11 0.063677 19 0.063635 9 0.061296 0 0.059513 17 0.05907 10 0.058551 12 0.037827 16 0.03325 24 0.03239 23 0.031117 20 0.030882 4 0.03029 5 0.02936 6 0.027663 8 0.026147 3 0.026127 7 0.025982 1 0.025597 2 0.025122 14 0.017342 13 0.014371 22 0.07261430218586447 21 0.06454357079567348 18 0.06219476514183508 11 0.05769183040590289 19 0.056526869031816286 9 0.05636296478484023 17 0.05188806544450433 10 0.05164460539911489 0 0.05152484714110043 12 0.03741240991970097 24 0.0360331573979596 23 0.035609256196319924 4 0.03412107961200766 5 0.033415907465013134 20 0.031602420283253344 6 0.03155004074980747 16 0.031108047071025186 3 0.030535951084165843 8 0.03024182256958753 7 0.030155629711158566 1 0.029847905863755294 2 0.029417349884724796 14 0.023359929235842892 13 0.01886849707355273 15 0.009232526939733301 __DUMMY__ 0.002496248611739613 false 1.0
468 22 0.073984 18 0.069778 11 0.066378 0 0.064593 9 0.06253 10 0.062219 21 0.060839 17 0.056104 12 0.045496 19 0.042381 4 0.036623 6 0.036578 5 0.036275 13 0.033545 1 0.032636 7 0.032467 8 0.032366 23 0.031578 2 0.031346 3 0.028477 14 0.022663 16 0.018265 24 0.013219 20 0.00966 22 0.073984 18 0.069778 11 0.066378 0 0.064593 9 0.06253 10 0.062219 21 0.060839 17 0.056104 12 0.045496 19 0.042381 4 0.036623 6 0.036578 5 0.036275 13 0.033545 1 0.032636 7 0.032467 8 0.032366 23 0.031578 2 0.031346 3 0.028477 14 0.022663 16 0.018265 24 0.013219 20 0.00966 22 0.06868173264655184 21 0.06565360881189342 18 0.06528690015667325 11 0.064686481356885 10 0.05674517947893257 12 0.05313017864738568 0 0.052625685008886765 9 0.05130048957779985 19 0.04903418539473389 17 0.0488165636183183 13 0.04179789931936664 23 0.036044479444032336 14 0.03382907533334549 4 0.031327505161039854 5 0.03091546398576502 6 0.030220062668199755 7 0.026649283677760555 1 0.02662730232517351 8 0.026616828883889214 24 0.026294410042313476 2 0.025855042807272483 20 0.025295614605163934 3 0.024448648235320385 16 0.02438167517959623 15 0.010947890479710896 __DUMMY__ 0.0027878131539895786 false 1.0
226 17 0.08353 0 0.083162 16 0.063211 22 0.059887 9 0.059535 11 0.055383 18 0.051993 10 0.047056 6 0.04448 19 0.042796 8 0.041546 1 0.041341 7 0.041286 2 0.040706 4 0.040052 5 0.039888 3 0.035143 21 0.03437 12 0.031623 23 0.025348 13 0.014337 15 0.009498 24 0.007851 20 0.005976 17 0.08353 0 0.083162 16 0.063211 22 0.059887 9 0.059535 11 0.055383 18 0.051993 10 0.047056 6 0.04448 19 0.042796 8 0.041546 1 0.041341 7 0.041286 2 0.040706 4 0.040052 5 0.039888 3 0.035143 21 0.03437 12 0.031623 23 0.025348 13 0.014337 15 0.009498 24 0.007851 20 0.005976 17 0.0730659200252885 0 0.07176495764426126 22 0.05816162481875279 9 0.05763941905666053 16 0.054549242072910675 18 0.05091990869759266 11 0.04992196755278622 10 0.044664473625239974 6 0.04465362585164129 8 0.04250906370179866 19 0.04243673253866003 7 0.04234511103272419 1 0.04231104399402595 4 0.041901512769361805 2 0.04170749794129132 5 0.04155580867135247 3 0.03792938811889271 21 0.036204835238561286 23 0.0305443485892404 12 0.028693084931411404 24 0.016748791860989116 15 0.014788839283419375 13 0.013498640640630876 20 0.013189250846516327 14 0.006277930464613675 __DUMMY__ 0.00201698003137636 false 1.0
227 19 0.10115 23 0.086944 16 0.086233 20 0.0844 24 0.066826 18 0.062681 17 0.060637 21 0.049642 12 0.043882 22 0.043141 0 0.027888 4 0.026795 5 0.025843 7 0.025667 6 0.025447 8 0.025232 1 0.025143 3 0.024032 2 0.023388 11 0.020645 15 0.020235 10 0.019525 9 0.018878 13 0.005745 19 0.10115 23 0.086944 16 0.086233 20 0.0844 24 0.066826 18 0.062681 17 0.060637 21 0.049642 12 0.043882 22 0.043141 0 0.027888 4 0.026795 5 0.025843 7 0.025667 6 0.025447 8 0.025232 1 0.025143 3 0.024032 2 0.023388 11 0.020645 15 0.020235 10 0.019525 9 0.018878 13 0.005745 19 0.08072145758110004 23 0.06698027863791284 20 0.06577100633539047 16 0.06239750956779724 18 0.06088591396874266 21 0.05639346580727822 24 0.05596479511146277 17 0.05270410230667353 22 0.050929253975636794 12 0.047992244604267605 11 0.03625694668446417 0 0.032776427669446516 10 0.0316528480644448 9 0.02851047766667724 4 0.027870445925793668 5 0.02719005351669124 6 0.026147614785810402 7 0.02522705491451238 8 0.024994473169833345 1 0.024861201936829495 3 0.0243832329931765 2 0.023858811047144254 15 0.0221850217356324 13 0.021470995072475043 14 0.01786617361076351 __DUMMY__ 0.004008193310042748 false 1.0
469 9 0.065973 22 0.058375 3 0.054064 4 0.052995 5 0.052284 8 0.052115 7 0.051891 1 0.051737 2 0.051422 6 0.050278 18 0.050117 10 0.048924 0 0.046273 17 0.043196 19 0.035859 23 0.035724 11 0.03439 21 0.033814 24 0.032544 15 0.029221 14 0.023527 20 0.022463 16 0.02049 12 0.002324 9 0.065973 22 0.058375 3 0.054064 4 0.052995 5 0.052284 8 0.052115 7 0.051891 1 0.051737 2 0.051422 6 0.050278 18 0.050117 10 0.048924 0 0.046273 17 0.043196 19 0.035859 23 0.035724 11 0.03439 21 0.033814 24 0.032544 15 0.029221 14 0.023527 20 0.022463 16 0.02049 12 0.002324 9 0.06135779092245681 22 0.06037716141773389 18 0.0526345256564972 10 0.048227480966732815 4 0.047385990650412615 3 0.04679656024351461 5 0.04674977685326321 0 0.046598624494700376 8 0.04570389994254463 7 0.045574079531635316 17 0.045535212165346076 1 0.045398164400364344 6 0.045031126091602515 2 0.044967136750501964 21 0.04145749859178433 19 0.04060519452663215 11 0.03967777993372617 23 0.036777165314605696 24 0.033312066927456814 15 0.026055363618732705 20 0.02533592515547492 14 0.02506903997942447 16 0.02469188534768301 12 0.013828604335413028 13 0.007846239003264496 __DUMMY__ 0.0030057071784959574 false 1.0
228 18 0.094765 10 0.088199 19 0.077464 11 0.075848 21 0.075822 22 0.071771 12 0.059759 14 0.059156 0 0.055842 13 0.055528 17 0.053067 20 0.050575 9 0.046703 16 0.040383 15 0.030193 23 0.025407 24 0.022001 4 0.005735 5 0.005215 6 0.003393 7 0.001094 1 7.88E-4 8 7.63E-4 3 5.29E-4 18 0.094765 10 0.088199 19 0.077464 11 0.075848 21 0.075822 22 0.071771 12 0.059759 14 0.059156 0 0.055842 13 0.055528 17 0.053067 20 0.050575 9 0.046703 16 0.040383 15 0.030193 23 0.025407 24 0.022001 4 0.005735 5 0.005215 6 0.003393 7 0.001094 1 7.88E-4 8 7.63E-4 3 5.29E-4 18 0.0867100546867877 10 0.08103402386409923 21 0.07022485180310939 11 0.0697137485718742 19 0.06967283911491007 22 0.0691693484330201 14 0.05631913136343438 12 0.0536463577024507 0 0.05208790254742668 13 0.050390393266773165 17 0.04981954365389763 9 0.04761338834653843 20 0.04634375868204814 16 0.03551418156162161 15 0.031500231750981524 23 0.027373552170848536 24 0.024773932497967877 4 0.012849936112097275 5 0.012405353951690191 6 0.010378605377851997 7 0.008150212131375012 3 0.008058802253562562 8 0.00798683257622323 1 0.007926958892278698 2 0.007385431819598395 __DUMMY__ 0.0029506268675333043 false 1.0
229 19 0.069591 17 0.068475 22 0.066679 18 0.06625 0 0.060649 16 0.059592 9 0.055121 10 0.053091 11 0.049829 21 0.043902 20 0.037066 23 0.033628 5 0.032233 4 0.032206 6 0.031074 24 0.03105 3 0.031003 8 0.030877 7 0.030766 1 0.030644 2 0.030422 15 0.022597 12 0.020129 14 0.013127 19 0.069591 17 0.068475 22 0.066679 18 0.06625 0 0.060649 16 0.059592 9 0.055121 10 0.053091 11 0.049829 21 0.043902 20 0.037066 23 0.033628 5 0.032233 4 0.032206 6 0.031074 24 0.03105 3 0.031003 8 0.030877 7 0.030766 1 0.030644 2 0.030422 15 0.022597 12 0.020129 14 0.013127 22 0.06582560587732784 18 0.0632528270754834 19 0.06286953864389809 17 0.06060190076681114 0 0.055386359148274805 11 0.05281616720379809 9 0.05250557349121216 10 0.0520362495772163 21 0.05006893896941296 16 0.04958649120075747 20 0.0357516530359514 23 0.03527698139617259 24 0.03290725486867405 4 0.03233035038990447 5 0.03208607668436861 6 0.03089820560982063 8 0.03013142947697219 3 0.030095148875956153 7 0.030061650947236573 1 0.029891639307695204 2 0.02957830632276046 12 0.02840843609942694 15 0.022414246548178283 14 0.020974793434806197 13 0.011483168289418274 __DUMMY__ 0.002761006758465661 false 1.0
470 0 0.087532 17 0.079611 9 0.066028 22 0.062974 11 0.059824 10 0.057522 18 0.054974 16 0.053645 6 0.045303 8 0.042609 7 0.042446 1 0.042276 2 0.041889 4 0.041583 5 0.041047 19 0.037701 3 0.037024 21 0.032691 12 0.02395 23 0.0203 13 0.011304 15 0.011238 14 0.003344 24 0.003184 0 0.087532 17 0.079611 9 0.066028 22 0.062974 11 0.059824 10 0.057522 18 0.054974 16 0.053645 6 0.045303 8 0.042609 7 0.042446 1 0.042276 2 0.041889 4 0.041583 5 0.041047 19 0.037701 3 0.037024 21 0.032691 12 0.02395 23 0.0203 13 0.011304 15 0.011238 14 0.003344 24 0.003184 0 0.07335302106190415 17 0.06982269989270867 9 0.06166219193266606 22 0.06065842810712568 18 0.05285956410175424 11 0.05263907509133409 10 0.050817073743978786 16 0.04754552628100224 6 0.04493382725300959 8 0.042951227751592255 7 0.042838874309380603 4 0.0427857170605746 1 0.04269082344820132 5 0.04225949062546754 2 0.04220184400190141 19 0.03958247863684647 3 0.03900493216446128 21 0.0364369788829798 23 0.027754577189723004 12 0.024711686105056644 15 0.015091533699415731 24 0.014367930249308157 13 0.012275255724140701 20 0.009808004767382162 14 0.008991313628969093 __DUMMY__ 0.001955924289115861 false 1.0
471 11 0.077924 22 0.072055 21 0.067628 17 0.059488 0 0.058294 19 0.057149 18 0.054268 12 0.053347 23 0.04929 16 0.045566 10 0.04258 9 0.041148 24 0.035752 4 0.031131 5 0.030747 6 0.030704 1 0.027221 7 0.027109 2 0.027026 8 0.026891 3 0.024907 13 0.024446 20 0.023262 14 0.012066 11 0.077924 22 0.072055 21 0.067628 17 0.059488 0 0.058294 19 0.057149 18 0.054268 12 0.053347 23 0.04929 16 0.045566 10 0.04258 9 0.041148 24 0.035752 4 0.031131 5 0.030747 6 0.030704 1 0.027221 7 0.027109 2 0.027026 8 0.026891 3 0.024907 13 0.024446 20 0.023262 14 0.012066 22 0.06569353805645319 11 0.06452040360139882 21 0.0637239084492537 18 0.05569574451779482 19 0.05527769575001764 17 0.05197795997582364 12 0.05029862299610157 0 0.0496508083935032 23 0.046714460630777464 10 0.04414986726788875 9 0.042365165368416474 16 0.039621457645098765 24 0.0377627496814642 4 0.03204460945328958 5 0.031627705098892046 20 0.031232324988593022 6 0.030934986862474968 13 0.029828487823562386 7 0.028160804725478106 1 0.028111640644977003 8 0.02802399905593993 2 0.027800820872401415 3 0.02683265098275803 14 0.023317462422558683 15 0.011245162733291831 __DUMMY__ 0.0033869620017906743 false 1.0
230 11 0.106265 22 0.097962 21 0.089449 10 0.083984 18 0.080182 0 0.071848 19 0.068301 9 0.058836 12 0.058461 17 0.056399 14 0.037012 13 0.035674 16 0.030986 23 0.020546 20 0.018464 24 0.017008 4 0.013679 5 0.013012 6 0.010011 7 0.006861 1 0.006586 3 0.006565 8 0.00639 2 0.005517 11 0.106265 22 0.097962 21 0.089449 10 0.083984 18 0.080182 0 0.071848 19 0.068301 9 0.058836 12 0.058461 17 0.056399 14 0.037012 13 0.035674 16 0.030986 23 0.020546 20 0.018464 24 0.017008 4 0.013679 5 0.013012 6 0.010011 7 0.006861 1 0.006586 3 0.006565 8 0.00639 2 0.005517 11 0.08239602146700774 22 0.08046416621960219 21 0.07472828035939572 18 0.0723067303768865 10 0.07094145058575163 0 0.06076881816718327 19 0.06053260875281884 9 0.05363261029975479 12 0.052718112842424045 17 0.05258729267924136 14 0.038376668288197406 13 0.0376354231743488 16 0.031862029296983514 23 0.027414762953218094 20 0.026132572499885404 24 0.023346934807676033 4 0.021274274441082857 5 0.020719948158633174 6 0.01876798580969559 7 0.015969341496293702 8 0.015760433361242113 1 0.015754692803344617 3 0.01537721901310395 2 0.015050044037554907 15 0.012086159703143591 __DUMMY__ 0.0033954184055301705 false 1.0
472 4 0.056215 3 0.055676 5 0.055222 8 0.054859 7 0.054763 23 0.054734 1 0.054313 6 0.054185 2 0.054154 9 0.052964 22 0.050658 24 0.045304 17 0.042746 18 0.04047 19 0.038163 0 0.036146 21 0.035312 20 0.031536 16 0.029612 10 0.02766 11 0.025742 15 0.023267 12 0.014119 14 0.012181 4 0.056215 3 0.055676 5 0.055222 8 0.054859 7 0.054763 23 0.054734 1 0.054313 6 0.054185 2 0.054154 9 0.052964 22 0.050658 24 0.045304 17 0.042746 18 0.04047 19 0.038163 0 0.036146 21 0.035312 20 0.031536 16 0.029612 10 0.02766 11 0.025742 15 0.023267 12 0.014119 14 0.012181 9 0.05561789197563508 4 0.05413541989226711 5 0.05341037319162101 3 0.052957813608307466 8 0.05286105459509242 7 0.052824645457256625 6 0.05269537420077858 1 0.05256917234225676 22 0.052367473416802195 2 0.05216518943437122 23 0.048564950333899626 17 0.044613464812661936 18 0.042638061637383005 0 0.04108238348585022 24 0.03905863067878996 21 0.03689019406637024 19 0.0359758298797395 10 0.033018528761721976 11 0.02996600295667852 16 0.028019747256396478 20 0.026532273019710458 15 0.021951151603178544 12 0.0170875775042051 14 0.015204821689462543 13 0.005808523885551319 __DUMMY__ 0.0019834503140121204 false 1.0
231 22 0.073533 9 0.068976 0 0.059971 18 0.058655 17 0.054937 10 0.050826 11 0.049641 21 0.0491 4 0.047376 5 0.047081 6 0.045746 8 0.045223 7 0.045184 3 0.045184 1 0.044874 2 0.044524 19 0.041697 23 0.034239 24 0.025581 16 0.023711 12 0.017063 20 0.016195 14 0.008473 15 0.002209 22 0.073533 9 0.068976 0 0.059971 18 0.058655 17 0.054937 10 0.050826 11 0.049641 21 0.0491 4 0.047376 5 0.047081 6 0.045746 8 0.045223 7 0.045184 3 0.045184 1 0.044874 2 0.044524 19 0.041697 23 0.034239 24 0.025581 16 0.023711 12 0.017063 20 0.016195 14 0.008473 15 0.002209 22 0.06809471502733766 9 0.06426496873873311 18 0.05713217752336791 0 0.056149583962960464 17 0.052616571730984905 10 0.05106715392876149 11 0.04875156896851556 21 0.04815669556048538 4 0.04482429355499305 5 0.04439805282888402 6 0.043331167645283414 8 0.04262716127369842 7 0.04258545869760755 3 0.04237374985646924 1 0.04234236504875905 19 0.04197491686611976 2 0.04189433195255341 23 0.03422958816060886 24 0.026833535158756163 16 0.02618275468122671 12 0.021259815970761833 20 0.019361358298723923 14 0.01723472353469521 15 0.01186668227986784 13 0.008711169641182159 __DUMMY__ 0.001735439108662934 false 1.0
473 23 0.094554 24 0.067661 20 0.059 4 0.056569 5 0.054247 6 0.05234 8 0.051276 1 0.05048 3 0.05023 7 0.050126 18 0.049905 2 0.049155 21 0.046017 19 0.044009 22 0.040563 12 0.037313 9 0.033726 15 0.027502 17 0.026749 13 0.017451 14 0.016973 16 0.011636 11 0.006549 10 0.005969 23 0.094554 24 0.067661 20 0.059 4 0.056569 5 0.054247 6 0.05234 8 0.051276 1 0.05048 3 0.05023 7 0.050126 18 0.049905 2 0.049155 21 0.046017 19 0.044009 22 0.040563 12 0.037313 9 0.033726 15 0.027502 17 0.026749 13 0.017451 14 0.016973 16 0.011636 11 0.006549 10 0.005969 23 0.06865497819972853 4 0.052353918426134204 24 0.051367618468144305 5 0.05104751884481594 6 0.05016714385432155 8 0.049292587758483074 1 0.04888370956939059 7 0.04876520431493045 3 0.048246609967088606 2 0.047985535290476174 18 0.04697727580318798 22 0.04602020271778833 9 0.04301036193225065 20 0.04286846680553098 21 0.04266930777713225 19 0.041504154039676056 17 0.038305393416908196 12 0.03203320739052177 15 0.024181139034936426 16 0.02390436433903104 0 0.023561274420239368 11 0.021367592121105988 10 0.02097258501193387 14 0.017044828683792583 13 0.016457550643497517 __DUMMY__ 0.00235747116895354 false 1.0
474 23 0.06747 6 0.065223 7 0.064832 4 0.064722 8 0.064673 1 0.063692 2 0.063442 5 0.063426 3 0.062351 9 0.048093 17 0.044112 24 0.043832 22 0.037755 0 0.034204 18 0.033701 16 0.031365 20 0.029417 19 0.028521 21 0.023675 15 0.019334 12 0.016667 10 0.014545 11 0.013628 13 0.00132 23 0.06747 6 0.065223 7 0.064832 4 0.064722 8 0.064673 1 0.063692 2 0.063442 5 0.063426 3 0.062351 9 0.048093 17 0.044112 24 0.043832 22 0.037755 0 0.034204 18 0.033701 16 0.031365 20 0.029417 19 0.028521 21 0.023675 15 0.019334 12 0.016667 10 0.014545 11 0.013628 13 0.00132 4 0.05842975687739113 6 0.058293883432507 7 0.05788762095559861 8 0.05780203188196307 5 0.057583699391750454 1 0.05734001157542082 2 0.05688598090449352 3 0.05630264025111386 23 0.0558736302116937 9 0.05203700276839356 22 0.045067153627505754 17 0.044958205113870435 24 0.039360399668838426 0 0.03923179226700192 18 0.03851400180479532 19 0.03136448680751623 21 0.031250398175086576 16 0.029432888877463256 20 0.026456885848897913 10 0.025158111442381965 11 0.02336280010453548 15 0.019794093189576964 12 0.0197040082608303 14 0.00891020448782303 13 0.007346771842451817 __DUMMY__ 0.001651540231098804 false 1.0
232 18 0.094915 10 0.088499 19 0.076946 11 0.076115 21 0.075506 22 0.071513 12 0.05976 14 0.058984 0 0.055985 13 0.055704 17 0.053184 20 0.050259 9 0.047064 16 0.040647 15 0.030521 23 0.024295 24 0.021978 4 0.0058 5 0.005322 6 0.003451 7 0.001147 1 9.72E-4 8 9.02E-4 3 5.3E-4 18 0.094915 10 0.088499 19 0.076946 11 0.076115 21 0.075506 22 0.071513 12 0.05976 14 0.058984 0 0.055985 13 0.055704 17 0.053184 20 0.050259 9 0.047064 16 0.040647 15 0.030521 23 0.024295 24 0.021978 4 0.0058 5 0.005322 6 0.003451 7 0.001147 1 9.72E-4 8 9.02E-4 3 5.3E-4 18 0.08674324086176886 10 0.08115220212875424 21 0.07012627345085241 11 0.06992132603193478 19 0.06942655557644721 22 0.06911698570288066 14 0.05616725488692211 12 0.05366802058136415 0 0.05221006278838738 13 0.050431018288014634 17 0.049899541133634664 9 0.04780233417622004 20 0.04612147022372425 16 0.035637105226853046 15 0.03155110899235859 23 0.02686032619881904 24 0.024745062765609543 4 0.012889870512261618 5 0.012463529322708018 6 0.0104157335675499 7 0.008182049774951922 3 0.008062640918082536 8 0.008056821174701611 1 0.008018005545307542 2 0.0073910734212008205 __DUMMY__ 0.002940386748690467 false 1.0
233 21 0.102453 19 0.088277 12 0.081161 22 0.076485 18 0.076321 20 0.072658 11 0.069589 24 0.061807 23 0.055692 13 0.047801 10 0.047164 17 0.039567 14 0.037168 16 0.036094 9 0.030314 0 0.029719 4 0.011246 5 0.010467 6 0.006231 3 0.005443 7 0.004395 1 0.003719 8 0.003686 2 0.002542 21 0.102453 19 0.088277 12 0.081161 22 0.076485 18 0.076321 20 0.072658 11 0.069589 24 0.061807 23 0.055692 13 0.047801 10 0.047164 17 0.039567 14 0.037168 16 0.036094 9 0.030314 0 0.029719 4 0.011246 5 0.010467 6 0.006231 3 0.005443 7 0.004395 1 0.003719 8 0.003686 2 0.002542 21 0.0852267087543983 19 0.07077679900883757 22 0.06974572655858491 18 0.0679173028130617 12 0.06783843089130465 11 0.06396235144561765 20 0.056343218583966834 24 0.05122072143711332 10 0.048936015751512074 23 0.048303696694162256 13 0.04581102811745613 14 0.039886945316929975 17 0.03908499597317882 9 0.036952510919507756 0 0.034126092854658896 16 0.03083983890189913 4 0.020571356566914542 5 0.020013391809815432 6 0.016646056549542886 3 0.01544289290711484 7 0.014573546882251093 8 0.014243972375088326 1 0.014203934200701866 2 0.013540472676507724 15 0.010578479016257534 __DUMMY__ 0.0032135129936157495 false 1.0
475 17 0.087891 0 0.084265 16 0.072204 22 0.059676 9 0.056747 11 0.055609 18 0.053645 19 0.048267 10 0.046448 6 0.041319 8 0.038268 7 0.037823 1 0.03766 2 0.037441 4 0.036749 5 0.036176 21 0.03365 12 0.032085 3 0.031634 23 0.024886 15 0.013915 13 0.013005 20 0.010978 24 0.00966 17 0.087891 0 0.084265 16 0.072204 22 0.059676 9 0.056747 11 0.055609 18 0.053645 19 0.048267 10 0.046448 6 0.041319 8 0.038268 7 0.037823 1 0.03766 2 0.037441 4 0.036749 5 0.036176 21 0.03365 12 0.032085 3 0.031634 23 0.024886 15 0.013915 13 0.013005 20 0.010978 24 0.00966 17 0.07620155563035648 0 0.07276979017525195 16 0.06069072269718156 22 0.05783475611846154 9 0.05549938207191175 18 0.052134306929702987 11 0.05048445823754725 19 0.04607444405862057 10 0.044390911385089764 6 0.042421279471348106 8 0.040155582549179614 7 0.03990152854486248 1 0.03976930128100971 4 0.039468877018602744 2 0.0393646534556554 5 0.038940393636598535 21 0.0358160251601361 3 0.035330452734579486 23 0.030250301019576577 12 0.029632382454667625 24 0.017574093261262542 15 0.017455807727688132 20 0.016289141189375505 13 0.01325904798526167 14 0.006214647168507129 __DUMMY__ 0.0020761580375647233 false 1.0
476 6 0.062237 8 0.061571 7 0.061516 1 0.061159 4 0.061106 2 0.060427 5 0.06014 3 0.058573 23 0.057754 9 0.050816 17 0.050403 0 0.04277 22 0.039863 24 0.037803 16 0.037649 18 0.034702 19 0.030598 20 0.025222 21 0.025041 10 0.020168 12 0.0199 11 0.01898 15 0.016809 13 0.004794 6 0.062237 8 0.061571 7 0.061516 1 0.061159 4 0.061106 2 0.060427 5 0.06014 3 0.058573 23 0.057754 9 0.050816 17 0.050403 0 0.04277 22 0.039863 24 0.037803 16 0.037649 18 0.034702 19 0.030598 20 0.025222 21 0.025041 10 0.020168 12 0.0199 11 0.01898 15 0.016809 13 0.004794 6 0.05513037997149404 4 0.054632352806264314 8 0.05438593564771163 7 0.05435474185204589 1 0.05415830694948552 5 0.05393929666823282 2 0.05350638275042045 3 0.05219864091304764 9 0.05153737781223209 23 0.050929213675154544 17 0.050397204065663115 22 0.04562541660720593 0 0.04470964749783518 18 0.040042675857892646 16 0.036500840353890576 24 0.03619253770263342 19 0.03468729766950929 21 0.032036368696294094 10 0.027921515464653487 11 0.02719284635799242 20 0.02601682490625593 12 0.023411379282897764 15 0.019126668218855628 13 0.010231929108444395 14 0.00845364648122811 __DUMMY__ 0.002680572682658776 false 1.0
234 20 0.104342 19 0.09779 21 0.082983 12 0.079734 18 0.078652 24 0.07678 23 0.058402 16 0.056724 22 0.053529 13 0.052205 14 0.049594 11 0.047776 10 0.041725 17 0.039309 15 0.033357 0 0.013654 9 0.012637 4 0.006837 5 0.006238 3 0.003522 6 0.002206 7 8.7E-4 8 7.22E-4 2 4.13E-4 20 0.104342 19 0.09779 21 0.082983 12 0.079734 18 0.078652 24 0.07678 23 0.058402 16 0.056724 22 0.053529 13 0.052205 14 0.049594 11 0.047776 10 0.041725 17 0.039309 15 0.033357 0 0.013654 9 0.012637 4 0.006837 5 0.006238 3 0.003522 6 0.002206 7 8.7E-4 8 7.22E-4 2 4.13E-4 19 0.0864771750807411 20 0.08588929884885903 21 0.07761202210401558 18 0.07355674391157667 12 0.06881474006169785 24 0.06703322317980472 22 0.056903629569558224 23 0.05392648327753223 11 0.04969248399865252 16 0.04915541145784759 14 0.047222812704735766 13 0.046399819927931296 10 0.0435173896688611 17 0.040133742778176704 15 0.032123236058240474 9 0.02173600068322707 0 0.02026283298679062 4 0.013252929071291587 5 0.012722715712153672 3 0.009820859935892427 6 0.008973348875378572 7 0.007623684493229244 8 0.007537100256013963 2 0.007120346991687645 1 0.007083091147767088 __DUMMY__ 0.0054088772183371525 false 1.0
477 23 0.064947 8 0.060042 4 0.059907 7 0.059862 3 0.05982 1 0.059436 2 0.058976 6 0.05896 5 0.058902 24 0.057099 20 0.048904 9 0.04342 17 0.042356 19 0.040923 16 0.037863 18 0.036282 22 0.035736 0 0.026425 21 0.025317 15 0.021375 12 0.018478 10 0.013478 11 0.010283 14 0.001208 23 0.064947 8 0.060042 4 0.059907 7 0.059862 3 0.05982 1 0.059436 2 0.058976 6 0.05896 5 0.058902 24 0.057099 20 0.048904 9 0.04342 17 0.042356 19 0.040923 16 0.037863 18 0.036282 22 0.035736 0 0.026425 21 0.025317 15 0.021375 12 0.018478 10 0.013478 11 0.010283 14 0.001208 23 0.05720153620748503 24 0.05198108453868434 4 0.04865708145640745 5 0.04793419962805173 20 0.04789374590183379 3 0.04734892433856077 8 0.04733117280057918 7 0.047238641608369804 6 0.047202410310768335 19 0.04719258889898855 1 0.04696879529613767 2 0.046524358492740954 18 0.045544443729629173 22 0.04402515646798786 17 0.043027096663006935 9 0.042610924424575085 21 0.03822330689643598 16 0.037011554404811374 0 0.030421513248885635 12 0.0287487600051175 10 0.02583709537045051 15 0.02470821761579043 11 0.0242028814700243 14 0.015536768279096017 13 0.01309156906288381 __DUMMY__ 0.003536172882697829 false 1.0
235 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.08940849662360112 12 0.08479287033233644 11 0.07559740618793638 22 0.06877422193904117 13 0.06711428543176555 18 0.0638702659834292 19 0.0634540515371256 10 0.053061453187500225 14 0.048117889349141685 20 0.04565613820880281 24 0.041793543287111386 0 0.041368357051999406 23 0.04054979723873332 17 0.03989055945246879 9 0.03444176428326448 16 0.030720326428827067 4 0.01720708390737762 5 0.016630196968790412 6 0.014819933553651252 7 0.010373165253389341 8 0.01026613608124559 1 0.010126347787558339 2 0.009800514888426304 3 0.009380312972088304 15 0.008265594436596732 __DUMMY__ 0.0045192876277913956 false 1.0
236 21 0.106972 19 0.090403 12 0.087965 20 0.079403 22 0.077513 18 0.075442 24 0.071219 11 0.06256 23 0.06052 13 0.052376 14 0.045349 10 0.039266 17 0.034798 16 0.034561 9 0.023992 0 0.01783 4 0.011455 5 0.010159 15 0.005902 6 0.005351 3 0.003478 7 0.001564 8 0.001409 2 5.14E-4 21 0.106972 19 0.090403 12 0.087965 20 0.079403 22 0.077513 18 0.075442 24 0.071219 11 0.06256 23 0.06052 13 0.052376 14 0.045349 10 0.039266 17 0.034798 16 0.034561 9 0.023992 0 0.01783 4 0.011455 5 0.010159 15 0.005902 6 0.005351 3 0.003478 7 0.001564 8 0.001409 2 5.14E-4 21 0.08980352435779117 19 0.0768677108676894 12 0.07363276749283075 22 0.06975425123777787 18 0.066967114660264 20 0.06501904296969817 24 0.061041646081343374 11 0.05896222698275167 23 0.05463423657147207 13 0.04713945092970693 14 0.042135379331050944 10 0.040112015836155375 17 0.037653803145732245 16 0.034865034188295924 9 0.02975422269956868 0 0.02532480450021428 4 0.018873068580997545 5 0.01800397068389314 6 0.014327862841027042 15 0.013223920144054303 3 0.01256774224795061 7 0.011357846793172153 8 0.011243189359117254 2 0.010534675042430351 1 0.010496004870946155 __DUMMY__ 0.005704487584068569 false 1.0
478 0 0.085372 17 0.078665 9 0.065241 22 0.062413 11 0.058311 10 0.055199 18 0.054772 16 0.052783 6 0.045473 8 0.043 1 0.042865 7 0.042743 2 0.042605 5 0.041903 4 0.041887 3 0.037923 19 0.037539 21 0.033107 12 0.024417 23 0.021412 13 0.012242 15 0.012022 14 0.004506 24 0.0036 0 0.085372 17 0.078665 9 0.065241 22 0.062413 11 0.058311 10 0.055199 18 0.054772 16 0.052783 6 0.045473 8 0.043 1 0.042865 7 0.042743 2 0.042605 5 0.041903 4 0.041887 3 0.037923 19 0.037539 21 0.033107 12 0.024417 23 0.021412 13 0.012242 15 0.012022 14 0.004506 24 0.0036 0 0.07235264515216994 17 0.06938183701856114 9 0.061299545105975926 22 0.060399665875690525 18 0.052765987266832126 11 0.05193949778121504 10 0.04974489799512763 16 0.04714244292896326 6 0.04501289603145071 8 0.043132565357229695 7 0.04297687174008626 1 0.04296361420005011 4 0.0429272468787464 5 0.04265583670368428 2 0.04253321230463742 19 0.03950631364437412 3 0.03942141364152968 21 0.036630069991276035 23 0.028268978009027935 12 0.02492605604383064 15 0.015453700274463812 24 0.014561749496507875 13 0.012708205823179514 20 0.009808545399479843 14 0.009529845100879432 __DUMMY__ 0.0019563602350307035 false 1.0
237 20 0.10477 19 0.09794 21 0.083767 18 0.080563 12 0.078166 24 0.07609 23 0.059935 16 0.055863 22 0.053492 13 0.051821 14 0.048948 11 0.046816 10 0.040825 17 0.039657 15 0.032805 0 0.013706 9 0.013354 4 0.006537 5 0.005881 3 0.003093 6 0.002121 7 0.001585 1 0.001288 8 9.78E-4 20 0.10477 19 0.09794 21 0.083767 18 0.080563 12 0.078166 24 0.07609 23 0.059935 16 0.055863 22 0.053492 13 0.051821 14 0.048948 11 0.046816 10 0.040825 17 0.039657 15 0.032805 0 0.013706 9 0.013354 4 0.006537 5 0.005881 3 0.003093 6 0.002121 7 0.001585 1 0.001288 8 9.78E-4 19 0.08654714337297707 20 0.0860745808340533 21 0.07801415391185113 18 0.07442853322218654 12 0.06813149517803704 24 0.06672328456937097 22 0.05691123900717325 23 0.054641657779338444 11 0.04927084355395733 16 0.04874144639537087 14 0.04691893976113057 13 0.04623835001320527 10 0.043091912103107914 17 0.040285410221166926 15 0.03182548780698687 9 0.022064827635232428 0 0.020284653498336563 4 0.013115045056108686 5 0.012557676530371669 3 0.00961686653435261 6 0.008932680822613998 7 0.007946107169270373 1 0.0076669196791172055 8 0.007648689431151073 2 0.006924454786306314 __DUMMY__ 0.0053976011272255054 false 1.0
479 0 0.087511 17 0.085207 16 0.065664 9 0.059516 22 0.058937 11 0.058253 18 0.052484 10 0.049543 6 0.04399 19 0.041937 8 0.040668 1 0.040197 7 0.04019 2 0.03983 4 0.039093 5 0.038662 3 0.033586 12 0.032868 21 0.032856 23 0.023677 13 0.016894 15 0.010613 24 0.004248 20 0.003576 0 0.087511 17 0.085207 16 0.065664 9 0.059516 22 0.058937 11 0.058253 18 0.052484 10 0.049543 6 0.04399 19 0.041937 8 0.040668 1 0.040197 7 0.04019 2 0.03983 4 0.039093 5 0.038662 3 0.033586 12 0.032868 21 0.032856 23 0.023677 13 0.016894 15 0.010613 24 0.004248 20 0.003576 17 0.07396417364147517 0 0.07372755051453747 22 0.057515667155346166 9 0.057204768812211725 16 0.05620619953771833 11 0.05133635591530785 18 0.05123927019603375 10 0.04577180633304547 6 0.04415499921543427 19 0.04243800906228563 8 0.04180711063073879 7 0.0415414175886643 1 0.04148510125583555 4 0.041158798607081264 2 0.04101158500768972 5 0.040691525385623366 3 0.03688586574286986 21 0.03557860626913164 23 0.029915746128027335 12 0.029734813159106862 15 0.01545248563300444 24 0.015203082046059345 13 0.01505040534321117 20 0.012517365166813411 14 0.006363628919323806 __DUMMY__ 0.002043662733423132 false 1.0
238 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.098347 12 0.096253 11 0.085565 13 0.07513 22 0.073021 19 0.065663 18 0.065298 10 0.056291 14 0.04874 0 0.045583 20 0.044772 17 0.040806 24 0.040059 23 0.037697 9 0.03359 16 0.031234 4 0.013142 5 0.012406 6 0.010883 7 0.005633 8 0.005474 1 0.005326 2 0.004975 3 0.004111 21 0.08940849662360112 12 0.08479287033233644 11 0.07559740618793638 22 0.06877422193904117 13 0.06711428543176555 18 0.0638702659834292 19 0.0634540515371256 10 0.053061453187500225 14 0.048117889349141685 20 0.04565613820880281 24 0.041793543287111386 0 0.041368357051999406 23 0.04054979723873332 17 0.03989055945246879 9 0.03444176428326448 16 0.030720326428827067 4 0.01720708390737762 5 0.016630196968790412 6 0.014819933553651252 7 0.010373165253389341 8 0.01026613608124559 1 0.010126347787558339 2 0.009800514888426304 3 0.009380312972088304 15 0.008265594436596732 __DUMMY__ 0.0045192876277913956 false 1.0
239 21 0.115891 12 0.107304 13 0.079485 23 0.079233 11 0.076062 22 0.075763 24 0.069723 19 0.050603 14 0.049631 18 0.035531 20 0.032962 4 0.031634 5 0.029279 6 0.026818 17 0.019792 8 0.018163 7 0.017902 1 0.017006 2 0.016615 3 0.015505 9 0.014801 0 0.011536 16 0.007549 10 0.001211 21 0.115891 12 0.107304 13 0.079485 23 0.079233 11 0.076062 22 0.075763 24 0.069723 19 0.050603 14 0.049631 18 0.035531 20 0.032962 4 0.031634 5 0.029279 6 0.026818 17 0.019792 8 0.018163 7 0.017902 1 0.017006 2 0.016615 3 0.015505 9 0.014801 0 0.011536 16 0.007549 10 0.001211 21 0.09658270224211066 12 0.0860695937809368 22 0.06990355289231681 11 0.0677759504002168 13 0.0639523561184536 23 0.0636160413220846 24 0.05926072720734715 19 0.054695666952585785 18 0.04588978258879688 14 0.04546607465647225 20 0.03926312055299302 4 0.029143614103920204 17 0.028760880562409986 5 0.02775316365095531 9 0.025570788744693193 6 0.025360271396052264 0 0.022537687360242645 10 0.021315478242598346 8 0.019612865493789117 7 0.019564963756142723 1 0.0189889951251971 2 0.018577127610687444 16 0.018525021125982585 3 0.018360448693156835 15 0.008035302569858044 __DUMMY__ 0.005417822849999697 false 1.0
480 12 0.102267 20 0.091398 13 0.090094 19 0.079318 23 0.078138 21 0.071372 18 0.06931 24 0.062731 14 0.057899 16 0.04589 15 0.037984 11 0.03445 10 0.033015 17 0.028839 22 0.028647 4 0.015623 5 0.015446 6 0.014199 8 0.008272 1 0.008013 7 0.007949 2 0.007404 0 0.00644 3 0.005302 12 0.102267 20 0.091398 13 0.090094 19 0.079318 23 0.078138 21 0.071372 18 0.06931 24 0.062731 14 0.057899 16 0.04589 15 0.037984 11 0.03445 10 0.033015 17 0.028839 22 0.028647 4 0.015623 5 0.015446 6 0.014199 8 0.008272 1 0.008013 7 0.007949 2 0.007404 0 0.00644 3 0.005302 12 0.07659163265019717 20 0.06793986285032033 19 0.06689667620725519 21 0.06494492175047745 13 0.06441089138256141 23 0.06315505545512183 18 0.06209958632360037 24 0.053182700569939685 14 0.0466014706185578 22 0.04149682178999647 16 0.041422516115013665 11 0.04053664970466941 10 0.036860859431627445 17 0.036231889995913584 15 0.031763344356574484 4 0.024119638318443153 5 0.023790347080907184 6 0.022671504410487466 0 0.02170378241614193 9 0.01937789115525612 8 0.01871195684182537 7 0.01856631157592072 1 0.01849963117236329 2 0.018026522969140122 3 0.01692593024264481 __DUMMY__ 0.0034716046150435895 false 1.0
481 6 0.069267 8 0.069237 4 0.069094 7 0.068601 5 0.068127 2 0.067922 1 0.067842 3 0.066998 23 0.066592 9 0.049171 24 0.045463 17 0.041315 22 0.03475 0 0.031004 18 0.02974 20 0.02904 16 0.027527 19 0.023871 15 0.021375 21 0.019064 12 0.013845 10 0.011972 11 0.007161 13 0.001019 6 0.069267 8 0.069237 4 0.069094 7 0.068601 5 0.068127 2 0.067922 1 0.067842 3 0.066998 23 0.066592 9 0.049171 24 0.045463 17 0.041315 22 0.03475 0 0.031004 18 0.02974 20 0.02904 16 0.027527 19 0.023871 15 0.021375 21 0.019064 12 0.013845 10 0.011972 11 0.007161 13 0.001019 4 0.06039671766087862 6 0.060208869308540094 8 0.05991681375002994 5 0.059699274880806334 7 0.05964222264695549 1 0.059269972384198635 2 0.05896125373874276 3 0.05835645488714207 23 0.055686013357844434 9 0.052110525279560456 17 0.04381332161203163 22 0.043089130020706384 24 0.04010142633977596 0 0.03772306510029707 18 0.03650588321113408 19 0.029188915133604602 21 0.02882875234049865 16 0.028154180669815565 20 0.026545462438609495 10 0.023627333491384683 15 0.020861379926031494 11 0.020049631242730973 12 0.018864289755006425 14 0.008806322040889134 13 0.007683682553036425 __DUMMY__ 0.0019091062297486268 false 1.0
240 21 0.081765 22 0.068755 12 0.061507 11 0.060644 18 0.055381 9 0.051272 10 0.050783 13 0.049981 23 0.044852 14 0.04349 19 0.041982 24 0.041774 4 0.036809 5 0.03566 0 0.034007 6 0.032536 20 0.030692 3 0.030079 7 0.030076 1 0.029784 8 0.029619 2 0.028248 17 0.025446 15 0.004859 21 0.081765 22 0.068755 12 0.061507 11 0.060644 18 0.055381 9 0.051272 10 0.050783 13 0.049981 23 0.044852 14 0.04349 19 0.041982 24 0.041774 4 0.036809 5 0.03566 0 0.034007 6 0.032536 20 0.030692 3 0.030079 7 0.030076 1 0.029784 8 0.029619 2 0.028248 17 0.025446 15 0.004859 21 0.07439789540215816 22 0.06507466488962232 12 0.05929651749784824 11 0.058960783435059595 18 0.05581869056384252 10 0.04951864855023419 13 0.04813981250450875 9 0.0476270133385502 19 0.045505808403090195 23 0.0433022217735519 14 0.04150629028462012 24 0.03968528586255329 0 0.0375207699199217 4 0.03442027220652076 5 0.03366257449226159 20 0.0329766610047689 17 0.03264423675086919 6 0.03132152087986655 7 0.02869269772259773 1 0.028498973071635236 8 0.02845740065196773 3 0.028435439269583692 2 0.02758045322338308 16 0.012709664626329517 15 0.010880320009745642 __DUMMY__ 0.0033653836649093286 false 1.0
482 10 0.090123 18 0.084961 0 0.07688 22 0.076216 9 0.075244 11 0.065537 17 0.064887 19 0.049927 21 0.046473 14 0.03483 4 0.03003 5 0.029642 6 0.029202 16 0.028898 8 0.027487 7 0.027447 1 0.027271 2 0.027098 3 0.02651 15 0.022921 13 0.018518 12 0.017977 20 0.011703 23 0.010216 10 0.090123 18 0.084961 0 0.07688 22 0.076216 9 0.075244 11 0.065537 17 0.064887 19 0.049927 21 0.046473 14 0.03483 4 0.03003 5 0.029642 6 0.029202 16 0.028898 8 0.027487 7 0.027447 1 0.027271 2 0.027098 3 0.02651 15 0.022921 13 0.018518 12 0.017977 20 0.011703 23 0.010216 10 0.0750165887292603 18 0.07432904197708579 22 0.07018029607909937 9 0.0659781438236287 0 0.06556669055296033 11 0.05976393788009061 17 0.058340955363994425 19 0.04914224331190419 21 0.048956003028170984 14 0.034254986642176834 4 0.032327451133938416 5 0.031871492182421336 6 0.03125793394213522 16 0.030206451129349846 8 0.029701135742455493 7 0.02966529599531005 1 0.029490815122227673 2 0.029136183203644358 3 0.028861762741421517 12 0.024909888517357898 15 0.024018400406662366 13 0.022221765853952927 23 0.020745492242832515 20 0.019307358342441513 24 0.012587676292791174 __DUMMY__ 0.002162009762686093 false 1.0
241 21 0.081937 12 0.070845 22 0.064103 11 0.058806 18 0.056681 24 0.055659 20 0.052062 13 0.052047 19 0.051413 23 0.04789 10 0.043727 9 0.041344 14 0.040452 4 0.034254 5 0.034159 3 0.029552 6 0.029056 8 0.026725 2 0.026624 7 0.02654 1 0.026293 0 0.023557 17 0.020591 16 0.005681 21 0.081937 12 0.070845 22 0.064103 11 0.058806 18 0.056681 24 0.055659 20 0.052062 13 0.052047 19 0.051413 23 0.04789 10 0.043727 9 0.041344 14 0.040452 4 0.034254 5 0.034159 3 0.029552 6 0.029056 8 0.026725 2 0.026624 7 0.02654 1 0.026293 0 0.023557 17 0.020591 16 0.005681 21 0.07999041011152302 12 0.07067376786845697 22 0.0639396624697924 11 0.061410605637653985 18 0.058990604822240195 19 0.05519945732472899 13 0.05470331490946477 24 0.049196426790760854 20 0.048448953267143734 10 0.046534400524060465 23 0.04556643148766345 14 0.04376202943429981 9 0.03888123088851849 0 0.030472902759822108 17 0.029838630333845505 4 0.028606065606795142 5 0.028324112702145812 6 0.02480963952980321 3 0.02303592690306226 8 0.021872948947230672 7 0.021809149239852277 1 0.021596942734417406 2 0.02158107137523614 16 0.017611020451786977 15 0.009008716620191483 __DUMMY__ 0.004135577259503974 false 1.0
483 15 0.184303 14 0.164313 10 0.094224 18 0.093434 13 0.076308 20 0.071678 19 0.044836 9 0.035413 22 0.032149 24 0.029734 23 0.025055 21 0.025033 17 0.018804 16 0.015238 11 0.014991 3 0.012144 5 0.01084 4 0.010678 2 0.007504 1 0.007367 8 0.007293 7 0.007149 12 0.005931 6 0.005581 15 0.184303 14 0.164313 10 0.094224 18 0.093434 13 0.076308 20 0.071678 19 0.044836 9 0.035413 22 0.032149 24 0.029734 23 0.025055 21 0.025033 17 0.018804 16 0.015238 11 0.014991 3 0.012144 5 0.01084 4 0.010678 2 0.007504 1 0.007367 8 0.007293 7 0.007149 12 0.005931 6 0.005581 15 0.12034648633885633 14 0.11554513263769273 18 0.0819466365446397 10 0.07725156759462586 13 0.06566179046914436 20 0.06227813179251373 19 0.05105245396561315 22 0.042202258684047984 21 0.04098546428651372 9 0.03629737347441125 24 0.033688383625080955 23 0.0321001716365204 11 0.03126397107569144 17 0.02908345473248373 12 0.02748108687414095 16 0.023991831335573307 4 0.016202416461093563 0 0.0161444049727793 5 0.01608546173303604 3 0.014965705658977816 6 0.012549377464898022 8 0.012498965344801053 1 0.012403159006971141 7 0.012392560160269427 2 0.012328873089985546 __DUMMY__ 0.0032528810396385056 false 1.0
242 21 0.068718 12 0.060564 22 0.056434 11 0.051456 13 0.051269 24 0.049017 23 0.047452 18 0.046685 9 0.045141 4 0.043261 5 0.043081 14 0.042324 10 0.041956 20 0.039892 3 0.039327 6 0.039163 8 0.03728 7 0.037118 2 0.037079 1 0.036898 19 0.035264 0 0.024857 17 0.017351 15 0.008415 21 0.068718 12 0.060564 22 0.056434 11 0.051456 13 0.051269 24 0.049017 23 0.047452 18 0.046685 9 0.045141 4 0.043261 5 0.043081 14 0.042324 10 0.041956 20 0.039892 3 0.039327 6 0.039163 8 0.03728 7 0.037118 2 0.037079 1 0.036898 19 0.035264 0 0.024857 17 0.017351 15 0.008415 21 0.07082782810149571 12 0.06428423919655664 22 0.05852919922184672 11 0.056220307677550756 13 0.054862240484283405 18 0.05335604785758714 10 0.046140631592653115 23 0.04499178520476502 14 0.044901247012745234 19 0.0445601868814713 24 0.043834706420651855 9 0.04165213120490808 20 0.04042883004612753 4 0.03447442761576676 5 0.034164550989721675 0 0.03181238356462886 6 0.031509184727246564 3 0.029277026948591935 8 0.02876374346616979 7 0.028695658961873708 1 0.02852438514901877 2 0.028432874918841007 17 0.02812708997938425 15 0.014238668767488971 16 0.013750828982480085 __DUMMY__ 0.003639795026145187 false 1.0
484 18 0.110715 19 0.104105 21 0.098438 22 0.09525 20 0.08516 24 0.081553 10 0.061691 23 0.061021 11 0.053363 9 0.044387 12 0.043685 17 0.040208 14 0.035734 16 0.018256 0 0.013883 4 0.013771 5 0.011336 3 0.00764 15 0.00762 13 0.004146 6 0.002701 8 0.002551 7 0.001601 1 0.001186 18 0.110715 19 0.104105 21 0.098438 22 0.09525 20 0.08516 24 0.081553 10 0.061691 23 0.061021 11 0.053363 9 0.044387 12 0.043685 17 0.040208 14 0.035734 16 0.018256 0 0.013883 4 0.013771 5 0.011336 3 0.00764 15 0.00762 13 0.004146 6 0.002701 8 0.002551 7 0.001601 1 0.001186 18 0.09000020475764337 19 0.08070105005131586 21 0.07753949697750108 22 0.07740982850607382 20 0.06435527003175769 10 0.061956274820357704 24 0.05730791644107293 11 0.05305992369142059 23 0.048044699601728844 9 0.04557637174295446 17 0.04254913085503876 12 0.042437808722160644 14 0.04172824593675732 0 0.028574621050946453 16 0.025516051504016337 15 0.02181050172647634 13 0.021260454794774487 4 0.0202237203459359 5 0.01885489474306126 3 0.01563784513340933 6 0.013549386198388233 8 0.012797434100406544 7 0.012350169961101621 1 0.01206440115314461 2 0.0113300159799614 __DUMMY__ 0.0033642811725943873 false 1.0
243 12 0.12297 13 0.100359 21 0.093796 19 0.068545 11 0.068207 20 0.061903 18 0.059905 23 0.055473 22 0.050881 14 0.050451 24 0.048835 16 0.042406 10 0.039096 17 0.037948 0 0.031914 9 0.013115 4 0.011539 6 0.011499 5 0.011213 15 0.004486 8 0.00395 2 0.003867 7 0.003845 1 0.003796 12 0.12297 13 0.100359 21 0.093796 19 0.068545 11 0.068207 20 0.061903 18 0.059905 23 0.055473 22 0.050881 14 0.050451 24 0.048835 16 0.042406 10 0.039096 17 0.037948 0 0.031914 9 0.013115 4 0.011539 6 0.011499 5 0.011213 15 0.004486 8 0.00395 2 0.003867 7 0.003845 1 0.003796 12 0.1003318929640675 21 0.08610089168323737 13 0.08355185115113657 11 0.06513618279616061 19 0.0628595509565363 18 0.0596884704520197 22 0.055102307879584894 20 0.05426009972784668 14 0.05056751690455184 23 0.0504456731167924 24 0.0459913101229028 10 0.04308327940652566 17 0.03727715739169546 16 0.035592430130043096 0 0.03336864081441083 9 0.02284818052689346 4 0.017028350864762634 5 0.01664612901977637 6 0.016053322129735613 15 0.011841814303647209 8 0.010239125802922988 7 0.010185366424131693 1 0.010083918281079034 2 0.00998138550260506 3 0.00770021049035882 __DUMMY__ 0.004034941156575347 false 1.0
485 17 0.079132 16 0.074056 0 0.064212 19 0.059052 22 0.055822 18 0.052654 11 0.051367 9 0.042398 21 0.039849 6 0.037885 23 0.037241 4 0.035596 24 0.03554 8 0.035364 5 0.035252 12 0.03503 7 0.035005 20 0.034959 1 0.034832 2 0.034597 10 0.031693 3 0.031132 15 0.020173 13 0.007158 17 0.079132 16 0.074056 0 0.064212 19 0.059052 22 0.055822 18 0.052654 11 0.051367 9 0.042398 21 0.039849 6 0.037885 23 0.037241 4 0.035596 24 0.03554 8 0.035364 5 0.035252 12 0.03503 7 0.035005 20 0.034959 1 0.034832 2 0.034597 10 0.031693 3 0.031132 15 0.020173 13 0.007158 17 0.07460872581747202 16 0.06835999170515601 0 0.062483616111015314 19 0.05666627046055592 22 0.05501429157305902 18 0.05375320702961006 11 0.04920793118426407 9 0.04445738023152943 21 0.03980145583356799 23 0.036953448360146704 6 0.03691650451405747 10 0.03678657406178381 4 0.03489426882441219 8 0.03480872457903707 7 0.034568708692091485 5 0.03447479130537194 1 0.03441468497041993 12 0.034336208484051486 2 0.03405114373681468 20 0.03344777237559159 24 0.032299694062310355 3 0.03096800709597201 15 0.024265097367486593 13 0.012495849126613381 14 0.0077977151671503155 __DUMMY__ 0.0021679373304589198 false 1.0
244 12 0.103837 13 0.090238 21 0.086727 11 0.076274 22 0.057116 18 0.050193 14 0.04779 19 0.047314 23 0.046253 10 0.044928 0 0.04145 24 0.037024 20 0.036898 17 0.032809 9 0.027764 16 0.024644 4 0.023125 6 0.023033 5 0.022815 7 0.016701 8 0.016694 1 0.016636 2 0.016455 3 0.013284 12 0.103837 13 0.090238 21 0.086727 11 0.076274 22 0.057116 18 0.050193 14 0.04779 19 0.047314 23 0.046253 10 0.044928 0 0.04145 24 0.037024 20 0.036898 17 0.032809 9 0.027764 16 0.024644 4 0.023125 6 0.023033 5 0.022815 7 0.016701 8 0.016694 1 0.016636 2 0.016455 3 0.013284 12 0.09008547840131713 21 0.08152539778229631 13 0.07783439717061473 11 0.06963642662209826 22 0.05819746037182972 18 0.055234987863413465 19 0.05197591385447576 14 0.04833263660296369 10 0.04692484408934296 23 0.04538140470685232 20 0.04062467743996876 0 0.039583531763020804 24 0.03859051944972049 17 0.035773735179332 9 0.030725098451436027 16 0.027374028995799573 4 0.022964945828056298 5 0.022592148896714206 6 0.02214232942000244 7 0.01687268371801304 8 0.016862427135048454 1 0.016762157024858025 2 0.016533134909761136 3 0.014414488013815854 15 0.009306256707873762 __DUMMY__ 0.003748889601374893 false 1.0
486 22 0.087274 19 0.084469 18 0.08225 21 0.072498 17 0.069709 11 0.066942 0 0.061617 10 0.059606 9 0.056963 16 0.051132 20 0.040661 12 0.037392 24 0.035134 23 0.031169 5 0.022969 4 0.022843 6 0.019076 3 0.017969 8 0.016633 2 0.016488 7 0.015959 1 0.015948 14 0.012179 13 0.003121 22 0.087274 19 0.084469 18 0.08225 21 0.072498 17 0.069709 11 0.066942 0 0.061617 10 0.059606 9 0.056963 16 0.051132 20 0.040661 12 0.037392 24 0.035134 23 0.031169 5 0.022969 4 0.022843 6 0.019076 3 0.017969 8 0.016633 2 0.016488 7 0.015959 1 0.015948 14 0.012179 13 0.003121 22 0.07554418424430155 19 0.07046382617685312 18 0.06997135832952811 21 0.06626365311325692 11 0.060683086691550876 17 0.05863296632304242 10 0.05338534677046397 0 0.052903860343629296 9 0.0518703769458529 16 0.043884275539058375 20 0.03965595328429901 12 0.0392610353593764 24 0.03777437487258733 23 0.035850808671757266 4 0.027647342812647708 5 0.0274428865406483 6 0.02464195517127391 3 0.023667089808442184 8 0.022824553194011245 7 0.02251764940467013 2 0.022431147109920675 1 0.02238102674089927 14 0.02187275179971761 13 0.01499611243003227 15 0.011036988002154653 __DUMMY__ 0.002395390320024634 false 1.0
487 19 0.102903 20 0.092331 18 0.085464 21 0.07041 16 0.0687 12 0.063133 24 0.061175 22 0.056325 10 0.052737 17 0.052736 11 0.050783 23 0.049487 14 0.045744 15 0.040927 13 0.039961 0 0.027998 9 0.019813 5 0.006596 4 0.006118 3 0.003214 6 0.002052 2 7.97E-4 8 4.41E-4 1 1.52E-4 19 0.102903 20 0.092331 18 0.085464 21 0.07041 16 0.0687 12 0.063133 24 0.061175 22 0.056325 10 0.052737 17 0.052736 11 0.050783 23 0.049487 14 0.045744 15 0.040927 13 0.039961 0 0.027998 9 0.019813 5 0.006596 4 0.006118 3 0.003214 6 0.002052 2 7.97E-4 8 4.41E-4 1 1.52E-4 19 0.0886244164681364 20 0.08014581030840807 18 0.07716492097140024 21 0.06974199961205911 12 0.05945292530926681 24 0.05862155311691047 22 0.0572942027316335 16 0.05567515457098876 11 0.05022755315172049 10 0.049688297313834354 23 0.04925853656797749 17 0.047008895636244344 14 0.04638337244280521 13 0.040459252635441215 15 0.038178700781896134 0 0.027471765090279716 9 0.025313730839225 4 0.012920306045210495 5 0.012894484169829834 3 0.009834434612644577 6 0.009043313506094384 8 0.007639052791935696 2 0.0075299758403102645 7 0.007448236187726765 1 0.00738602744175522 __DUMMY__ 0.0045930818562655495 false 1.0
245 12 0.129113 13 0.125235 21 0.084668 14 0.070148 20 0.062671 23 0.062635 18 0.059617 19 0.055559 11 0.054467 24 0.043558 10 0.038985 22 0.034931 16 0.031789 17 0.028322 15 0.022995 0 0.021298 6 0.015324 4 0.013795 5 0.013217 8 0.006773 7 0.0065 1 0.006489 9 0.006068 2 0.005845 12 0.129113 13 0.125235 21 0.084668 14 0.070148 20 0.062671 23 0.062635 18 0.059617 19 0.055559 11 0.054467 24 0.043558 10 0.038985 22 0.034931 16 0.031789 17 0.028322 15 0.022995 0 0.021298 6 0.015324 4 0.013795 5 0.013217 8 0.006773 7 0.0065 1 0.006489 9 0.006068 2 0.005845 12 0.1034621193917022 13 0.09753730633393233 21 0.0810039591559993 14 0.0625209304377701 18 0.05989004417120628 11 0.05801021927466637 19 0.05587810584604116 20 0.054775917997567265 23 0.05357424738998616 22 0.046476598080729035 10 0.04394197522741661 24 0.04278386910850685 17 0.03193266148916396 16 0.029833485703255648 0 0.027719471056142954 15 0.023185753196717427 9 0.019151412553115164 4 0.017846957667738257 6 0.017678170207354925 5 0.017358520992511763 8 0.011346462715406907 7 0.011202899750301124 1 0.011129783179741184 2 0.010708632979669548 3 0.007416512265922993 __DUMMY__ 0.0036339838274343787 false 1.0
488 19 0.103636 20 0.093361 21 0.088341 18 0.088259 24 0.071832 12 0.070045 22 0.068962 23 0.052957 16 0.052374 11 0.051669 17 0.04887 10 0.044219 14 0.036203 13 0.034009 9 0.024885 0 0.021997 15 0.018764 5 0.009916 4 0.009411 3 0.004581 6 0.003452 2 0.001119 8 0.001 7 1.39E-4 19 0.103636 20 0.093361 21 0.088341 18 0.088259 24 0.071832 12 0.070045 22 0.068962 23 0.052957 16 0.052374 11 0.051669 17 0.04887 10 0.044219 14 0.036203 13 0.034009 9 0.024885 0 0.021997 15 0.018764 5 0.009916 4 0.009411 3 0.004581 6 0.003452 2 0.001119 8 0.001 7 1.39E-4 19 0.08854471836458683 20 0.08153966677963713 21 0.07969856182688705 18 0.07799615813556239 24 0.06532063336110072 12 0.06381978379760318 22 0.06346329576298246 23 0.05167270928656834 11 0.05039900429168222 16 0.045955343656348825 10 0.04460651284107624 17 0.043434470921335525 14 0.04241666293413833 13 0.038422534174203764 9 0.02737302939094842 15 0.026875006519553834 0 0.022815880503273767 4 0.01478425607417221 5 0.014761022429848631 3 0.010774202255522496 6 0.009784118269480228 8 0.008002969169248142 2 0.007772446395464081 7 0.007624533091895985 1 0.007415035288818346 __DUMMY__ 0.004727444478060737 false 1.0
246 12 0.111537 13 0.101407 21 0.085875 19 0.067752 18 0.065495 20 0.063345 11 0.062498 14 0.062033 23 0.049107 10 0.048717 22 0.047334 24 0.043144 16 0.041606 17 0.038098 0 0.032391 15 0.020673 9 0.016429 6 0.009774 4 0.009766 5 0.009615 2 0.003453 1 0.003412 8 0.003278 7 0.00326 12 0.111537 13 0.101407 21 0.085875 19 0.067752 18 0.065495 20 0.063345 11 0.062498 14 0.062033 23 0.049107 10 0.048717 22 0.047334 24 0.043144 16 0.041606 17 0.038098 0 0.032391 15 0.020673 9 0.016429 6 0.009774 4 0.009766 5 0.009615 2 0.003453 1 0.003412 8 0.003278 7 0.00326 12 0.0939846134349634 13 0.08384623858271761 21 0.0819654556030534 18 0.06303014238842651 19 0.06284532126426538 11 0.061920127704228 14 0.05726164866488764 20 0.05573824992175259 22 0.05328525031614031 10 0.04827637796075048 23 0.04726362502795937 24 0.04349533810225142 17 0.037041108767432177 16 0.03507726958707489 0 0.03297626916356152 9 0.02440374054141932 15 0.021206459055116117 4 0.015880421909594673 5 0.015581811107466153 6 0.01481986990724513 8 0.009615002278818681 7 0.009601365445693528 1 0.009593283683377096 2 0.009474244327478412 3 0.007534815778213888 __DUMMY__ 0.004281949476112254 false 1.0
489 20 0.10482 19 0.104471 18 0.079421 21 0.078621 24 0.07732 12 0.07445 16 0.064891 23 0.059316 22 0.052409 14 0.046007 13 0.045647 11 0.045 17 0.044264 10 0.038506 15 0.037708 0 0.013904 9 0.01117 5 0.007531 4 0.007035 3 0.004021 6 0.002047 2 8.32E-4 8 4.44E-4 1 1.63E-4 20 0.10482 19 0.104471 18 0.079421 21 0.078621 24 0.07732 12 0.07445 16 0.064891 23 0.059316 22 0.052409 14 0.046007 13 0.045647 11 0.045 17 0.044264 10 0.038506 15 0.037708 0 0.013904 9 0.01117 5 0.007531 4 0.007035 3 0.004021 6 0.002047 2 8.32E-4 8 4.44E-4 1 1.63E-4 19 0.08945797702534515 20 0.0863843583318945 21 0.07515701336174875 18 0.0739470564480472 24 0.06729815788165387 12 0.06615288206694453 22 0.05597028526547319 23 0.05441575758505662 16 0.05301180507196167 11 0.04793112522874485 14 0.04625415269503433 13 0.04366348847511325 17 0.042301293338584824 10 0.04207444285123591 15 0.03519647442892919 9 0.020883883561735393 0 0.020059150933954273 4 0.013315377295301445 5 0.013290428662256226 3 0.01005578382349502 6 0.008885571176211762 8 0.007416611838058968 2 0.007321418540375046 7 0.0072278158783870795 1 0.007161827474760402 __DUMMY__ 0.005165860759696352 false 1.0
247 12 0.108269 13 0.098944 21 0.082715 11 0.073431 18 0.064008 19 0.062454 14 0.057747 10 0.052631 22 0.051573 20 0.051045 17 0.044059 16 0.043697 23 0.043656 0 0.043421 24 0.033392 9 0.020125 15 0.017491 6 0.011747 4 0.010554 5 0.010339 8 0.004783 7 0.004726 2 0.004608 1 0.004585 12 0.108269 13 0.098944 21 0.082715 11 0.073431 18 0.064008 19 0.062454 14 0.057747 10 0.052631 22 0.051573 20 0.051045 17 0.044059 16 0.043697 23 0.043656 0 0.043421 24 0.033392 9 0.020125 15 0.017491 6 0.011747 4 0.010554 5 0.010339 8 0.004783 7 0.004726 2 0.004608 1 0.004585 12 0.09466724048670744 13 0.08553335828690353 21 0.08038767892635876 11 0.06776718868391611 18 0.06209334470061315 19 0.05929961691845886 14 0.055699310713101115 22 0.05441485269567707 10 0.050708283001680426 20 0.04889264630037733 23 0.044510819261395676 17 0.03987569229716148 0 0.03906034072140587 24 0.03734763877939178 16 0.035903625701590544 9 0.02575856947895447 15 0.019061221899577794 4 0.016134222989291704 6 0.015920248126032932 5 0.01582019162066857 8 0.010217903373504577 7 0.01018248726009389 1 0.01005302568668357 2 0.009937002110482285 3 0.007077270133472855 __DUMMY__ 0.0036762198464980315 false 1.0
248 12 0.116335 13 0.10319 21 0.075802 19 0.072838 20 0.069802 18 0.064012 23 0.063398 16 0.055 14 0.054107 11 0.047996 24 0.044168 17 0.041809 10 0.039148 22 0.035141 0 0.027928 15 0.022734 6 0.013378 4 0.011661 5 0.011569 9 0.007747 7 0.005632 1 0.005588 8 0.005564 2 0.005455 12 0.116335 13 0.10319 21 0.075802 19 0.072838 20 0.069802 18 0.064012 23 0.063398 16 0.055 14 0.054107 11 0.047996 24 0.044168 17 0.041809 10 0.039148 22 0.035141 0 0.027928 15 0.022734 6 0.013378 4 0.011661 5 0.011569 9 0.007747 7 0.005632 1 0.005588 8 0.005564 2 0.005455 12 0.09901962506386389 13 0.08800842650033582 21 0.0767955214763117 19 0.06414072784077474 18 0.061562087543839364 20 0.05845689769390366 11 0.0549787762696143 23 0.0548343926114904 14 0.05379030962971189 22 0.04573348168222159 10 0.043330840764471086 24 0.04308119663820466 16 0.04155194844775182 17 0.0385063609028486 0 0.031019215550596682 15 0.021713890293642957 9 0.019063946781629173 6 0.016972320239360125 4 0.016869062777929197 5 0.016611478407853167 7 0.010877106397689386 8 0.010847944396576934 1 0.010785741416709599 2 0.010598599913846098 3 0.007273081785370771 __DUMMY__ 0.003577018973452363 false 1.0
249 12 0.10587 13 0.0961 11 0.069663 21 0.069327 18 0.065768 0 0.062745 17 0.062233 16 0.057327 19 0.056969 10 0.055572 22 0.047212 14 0.044074 23 0.038852 20 0.036056 9 0.025484 6 0.01743 24 0.014979 15 0.014175 4 0.012747 5 0.012453 8 0.008926 7 0.00878 1 0.008772 2 0.008485 12 0.10587 13 0.0961 11 0.069663 21 0.069327 18 0.065768 0 0.062745 17 0.062233 16 0.057327 19 0.056969 10 0.055572 22 0.047212 14 0.044074 23 0.038852 20 0.036056 9 0.025484 6 0.01743 24 0.014979 15 0.014175 4 0.012747 5 0.012453 8 0.008926 7 0.00878 1 0.008772 2 0.008485 12 0.08842717309036427 13 0.07916954899375989 21 0.07023468418551934 11 0.06366222319138277 18 0.061325475047625505 19 0.054633245678240405 22 0.051864458095434815 10 0.05092246765489109 17 0.05014452002590875 0 0.04979915392130612 14 0.04595580712380704 16 0.0431092183703404 23 0.04165409718369499 20 0.03928376675090094 9 0.03048169159115829 24 0.027522144336852072 6 0.021355395559641194 4 0.019698411973538284 5 0.01933782950976379 15 0.017741866402835794 8 0.015236835692918727 7 0.01515305595162053 1 0.015092762264997684 2 0.01479623751586979 3 0.010055601089113396 __DUMMY__ 0.0033423287985138565 false 1.0
490 18 0.090226 19 0.087579 20 0.07556 21 0.073405 10 0.069722 12 0.065425 22 0.06084 11 0.059954 14 0.058899 13 0.05425 16 0.048121 17 0.047513 24 0.045299 15 0.039111 23 0.036745 0 0.035653 9 0.030508 5 0.007367 4 0.006911 6 0.003113 3 0.002452 2 7.76E-4 8 4.22E-4 1 1.51E-4 18 0.090226 19 0.087579 20 0.07556 21 0.073405 10 0.069722 12 0.065425 22 0.06084 11 0.059954 14 0.058899 13 0.05425 16 0.048121 17 0.047513 24 0.045299 15 0.039111 23 0.036745 0 0.035653 9 0.030508 5 0.007367 4 0.006911 6 0.003113 3 0.002452 2 7.76E-4 8 4.22E-4 1 1.51E-4 18 0.08416190903499088 19 0.0781395602632416 21 0.0703351872219616 10 0.06787194635176867 20 0.0662157169603035 22 0.061697498271698695 11 0.058638181449150416 12 0.05836972358504566 14 0.05835503148421428 13 0.05066202928825538 17 0.04494576206525957 24 0.04268587266044794 16 0.04131728084921502 15 0.039637037057876814 23 0.036871739899993386 0 0.036219493728458084 9 0.03528069201566442 4 0.012101878142957935 5 0.012099254752985247 6 0.008509655357165339 3 0.00802188921977766 8 0.006376690768030997 2 0.006294821810056789 7 0.006196112741980872 1 0.006153543121986769 __DUMMY__ 0.002841491897512427 false 1.0
491 18 0.094639 10 0.084895 19 0.081473 21 0.068308 11 0.065854 22 0.064009 20 0.063652 14 0.063135 12 0.058071 13 0.055237 17 0.051387 0 0.047176 16 0.044407 15 0.042057 9 0.039607 24 0.030067 23 0.026564 5 0.006104 4 0.005969 6 0.003053 3 0.002293 2 0.001341 8 6.97E-4 7 5.0E-6 18 0.094639 10 0.084895 19 0.081473 21 0.068308 11 0.065854 22 0.064009 20 0.063652 14 0.063135 12 0.058071 13 0.055237 17 0.051387 0 0.047176 16 0.044407 15 0.042057 9 0.039607 24 0.030067 23 0.026564 5 0.006104 4 0.005969 6 0.003053 3 0.002293 2 0.001341 8 6.97E-4 7 5.0E-6 18 0.08758042832400074 10 0.08031994914861455 19 0.07142529490558772 21 0.06554824124241765 22 0.06456907947107521 11 0.06343979820273617 14 0.0609720322966571 20 0.053760152669945355 12 0.05156624565844025 13 0.05086663497560173 17 0.04811952822135716 0 0.04652110095908306 9 0.04400186189246902 15 0.04078445624965789 16 0.03679746359207715 24 0.028749018160379298 23 0.028100583692573282 4 0.012730080307104256 5 0.012572924110170108 6 0.00988168362463104 3 0.00879945745590896 2 0.007779675820098397 8 0.007748720165031067 7 0.00744219872946827 1 0.007346835848444239 __DUMMY__ 0.0025765542764704997 false 1.0
492 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.08492688358140624 10 0.0802450142386152 21 0.07102627420577884 11 0.07038928527458811 22 0.06950138980302027 19 0.06944893816307562 14 0.05759955458342453 12 0.05614453726959745 13 0.05243224582783265 0 0.05144497004322599 17 0.04913958893254792 9 0.04640024231552389 20 0.046126534375672726 16 0.03493656221229116 15 0.031333369729642103 24 0.025853942090689114 23 0.025620894337737916 4 0.013051810554349388 5 0.012962887558102485 6 0.010370044269039253 3 0.008277114714152616 2 0.007661629873134883 8 0.0076195757945201 7 0.007383062140412845 1 0.007274369583950663 __DUMMY__ 0.002829278527668094 false 1.0
250 12 0.10755 13 0.083541 21 0.081772 11 0.062207 23 0.058646 19 0.054865 20 0.050907 24 0.050898 22 0.04839 18 0.045288 16 0.037673 14 0.036335 17 0.035696 0 0.032228 10 0.027924 6 0.025459 4 0.025291 5 0.025127 8 0.019443 2 0.019096 7 0.019073 1 0.018959 9 0.017937 3 0.015696 12 0.10755 13 0.083541 21 0.081772 11 0.062207 23 0.058646 19 0.054865 20 0.050907 24 0.050898 22 0.04839 18 0.045288 16 0.037673 14 0.036335 17 0.035696 0 0.032228 10 0.027924 6 0.025459 4 0.025291 5 0.025127 8 0.019443 2 0.019096 7 0.019073 1 0.018959 9 0.017937 3 0.015696 12 0.09166059389965943 21 0.07790693163620194 13 0.07380707525533711 11 0.06113853956221 19 0.056009812091113255 22 0.0527584972398002 18 0.05226199451893394 23 0.05194934535552828 20 0.04840783776398736 24 0.04596385149072731 14 0.04146748672936671 17 0.03817592921988734 10 0.03713876564031424 16 0.0356367002689856 0 0.03503973708910259 9 0.02536232609743169 4 0.02430856275289552 5 0.024003060050962303 6 0.023791046260988095 8 0.018719390263466383 7 0.018533135616650716 1 0.018406395695739153 2 0.018332857784035733 3 0.015973863860555607 15 0.009740773901841292 __DUMMY__ 0.0035054899542781705 false 1.0
493 19 0.097845 20 0.096297 18 0.094072 21 0.068525 10 0.06361 24 0.059749 12 0.05955 14 0.056132 22 0.054731 16 0.052798 17 0.046086 15 0.045876 23 0.044967 13 0.044862 11 0.044404 9 0.025914 0 0.023842 5 0.006317 4 0.00607 3 0.004907 2 0.001405 6 0.001177 8 7.7E-4 7 9.3E-5 19 0.097845 20 0.096297 18 0.094072 21 0.068525 10 0.06361 24 0.059749 12 0.05955 14 0.056132 22 0.054731 16 0.052798 17 0.046086 15 0.045876 23 0.044967 13 0.044862 11 0.044404 9 0.025914 0 0.023842 5 0.006317 4 0.00607 3 0.004907 2 0.001405 6 0.001177 8 7.7E-4 7 9.3E-5 18 0.08330886557579537 19 0.08173790228246365 20 0.07815564742068544 21 0.06435816933872725 10 0.06009708110183514 14 0.05553724978699072 22 0.05535345450652535 12 0.05299181679122059 24 0.0526430695599333 15 0.045769734675247566 11 0.045632188647144224 16 0.044275783824429336 23 0.04407611200646751 13 0.043649552411205925 17 0.043392719012746626 9 0.031547562025864326 0 0.027210424007862978 4 0.014069142458221945 5 0.013945687308994393 3 0.011948598621982678 6 0.010007032071429734 2 0.00928212527702889 8 0.009259189624502598 7 0.008940906018258032 1 0.008786110091288088 __DUMMY__ 0.004023875553148284 false 1.0
251 11 0.095569 19 0.081797 22 0.076798 18 0.075252 17 0.07433 21 0.072533 0 0.072433 16 0.071694 10 0.068788 12 0.063793 13 0.042094 9 0.037941 20 0.037746 14 0.034248 24 0.023994 23 0.022949 15 0.019935 6 0.006352 4 0.006201 5 0.006125 1 0.002494 7 0.00235 8 0.002294 2 0.002288 11 0.095569 19 0.081797 22 0.076798 18 0.075252 17 0.07433 21 0.072533 0 0.072433 16 0.071694 10 0.068788 12 0.063793 13 0.042094 9 0.037941 20 0.037746 14 0.034248 24 0.023994 23 0.022949 15 0.019935 6 0.006352 4 0.006201 5 0.006125 1 0.002494 7 0.00235 8 0.002294 2 0.002288 11 0.07568178293802973 19 0.0724144782116458 22 0.06919565016212675 18 0.06882308846691139 21 0.06703100910349434 17 0.06290334049870769 0 0.05868275399356592 10 0.0585226572127247 16 0.05811264494167159 12 0.05646333813148694 20 0.04114654846284102 9 0.03946040146072556 13 0.037585372941347846 14 0.03338332662823244 23 0.03247904704404429 24 0.032042927585064135 15 0.021619433079050385 4 0.016470550049111164 5 0.016206318440172146 6 0.01572481758898594 7 0.012704197271730885 8 0.012677553157797273 1 0.01267305788874233 2 0.012384505086907988 3 0.011261877950078445 __DUMMY__ 0.004349321704803193 false 1.0
252 12 0.088079 19 0.085914 21 0.077805 18 0.074207 11 0.067218 20 0.066949 13 0.066217 23 0.057988 16 0.057816 22 0.055642 17 0.05039 10 0.049658 24 0.046547 14 0.043468 0 0.036141 15 0.022793 9 0.016467 4 0.009268 5 0.008766 6 0.008166 1 0.002913 7 0.002868 8 0.002531 2 0.00219 12 0.088079 19 0.085914 21 0.077805 18 0.074207 11 0.067218 20 0.066949 13 0.066217 23 0.057988 16 0.057816 22 0.055642 17 0.05039 10 0.049658 24 0.046547 14 0.043468 0 0.036141 15 0.022793 9 0.016467 4 0.009268 5 0.008766 6 0.008166 1 0.002913 7 0.002868 8 0.002531 2 0.00219 19 0.07313354182319003 21 0.06899021662468326 12 0.06864666768618463 18 0.0657066686479891 20 0.057754389494183725 11 0.05704422726490353 22 0.05606998019031123 23 0.054031567618745814 13 0.049683823720881586 16 0.04914372401165803 17 0.04777760956369726 24 0.04674258876203038 10 0.044849656940795804 14 0.03769378536677147 0 0.036236613841436636 9 0.027161517014251305 15 0.023351485289906656 4 0.020179253771325713 5 0.019692881557986913 6 0.018637365320050368 7 0.015136411741711235 1 0.015030498107246824 8 0.014959246840372897 2 0.014501212375651079 3 0.013642937030836239 __DUMMY__ 0.004202129393198417 false 1.0
494 18 0.086381 21 0.082176 19 0.081304 10 0.076184 11 0.07469 22 0.072732 12 0.068304 20 0.056637 13 0.055639 14 0.055633 17 0.050339 0 0.048868 16 0.041807 9 0.040139 24 0.034679 23 0.027688 15 0.02456 5 0.007337 4 0.007046 6 0.00365 3 0.002323 2 0.001259 8 5.88E-4 7 3.6E-5 18 0.086381 21 0.082176 19 0.081304 10 0.076184 11 0.07469 22 0.072732 12 0.068304 20 0.056637 13 0.055639 14 0.055633 17 0.050339 0 0.048868 16 0.041807 9 0.040139 24 0.034679 23 0.027688 15 0.02456 5 0.007337 4 0.007046 6 0.00365 3 0.002323 2 0.001259 8 5.88E-4 7 3.6E-5 18 0.07893672477184838 21 0.07852195033561084 19 0.07310792432523698 11 0.06976111426854283 22 0.06938313764251615 10 0.06851434431329423 12 0.06509121396857319 13 0.05378955346492799 14 0.05321939536443002 20 0.05251997190922427 17 0.046355688955056464 0 0.04482485856592001 9 0.040144843750821176 16 0.03690193255857768 24 0.03669462602142266 23 0.0327089578720002 15 0.024661946901298346 4 0.013001585502524919 5 0.012911731953259136 6 0.009867490034394882 3 0.007959744971998257 2 0.007027720962724236 8 0.006958451855331912 7 0.006733680459165404 1 0.006610385229658709 __DUMMY__ 0.003791024041641061 false 1.0
495 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.09268 10 0.08865 19 0.077438 11 0.076477 21 0.075014 22 0.07287 12 0.060818 14 0.060646 0 0.056085 13 0.056077 17 0.053223 20 0.049575 9 0.045997 16 0.039883 15 0.030838 24 0.022783 23 0.020201 5 0.006814 4 0.006543 6 0.003734 3 0.001771 2 0.001238 8 6.01E-4 7 4.6E-5 18 0.08494416955850835 10 0.08020082900915244 21 0.07102421426005948 11 0.07033043792496634 19 0.06951880854585456 22 0.06946755467813698 14 0.057600273121120864 12 0.05615721366858283 13 0.052417684714823096 0 0.05137836584378744 17 0.049133248186476304 9 0.04634654007261946 20 0.04624605909527087 16 0.03498515864607367 15 0.031373096420641594 24 0.02593730068068996 23 0.02566657849117966 4 0.013032462329463002 5 0.012944676274125204 6 0.010345488907867935 3 0.008266102293620304 2 0.007644084181185007 8 0.007600007676670395 7 0.007362135307786971 1 0.007253501417595336 __DUMMY__ 0.002824008693741816 false 1.0
253 12 0.096608 23 0.080935 21 0.079829 20 0.068865 13 0.068668 24 0.067951 19 0.063445 18 0.048507 22 0.040988 11 0.037894 4 0.032201 5 0.03151 16 0.030512 6 0.030125 14 0.02957 17 0.026417 7 0.025003 8 0.024993 1 0.02491 2 0.024066 3 0.022825 10 0.016964 9 0.014732 0 0.012482 12 0.096608 23 0.080935 21 0.079829 20 0.068865 13 0.068668 24 0.067951 19 0.063445 18 0.048507 22 0.040988 11 0.037894 4 0.032201 5 0.03151 16 0.030512 6 0.030125 14 0.02957 17 0.026417 7 0.025003 8 0.024993 1 0.02491 2 0.024066 3 0.022825 10 0.016964 9 0.014732 0 0.012482 12 0.079106380853425 21 0.07323505387371573 23 0.06707703870714495 19 0.059784147220044326 13 0.057515048618531135 20 0.05737952248603457 24 0.05736570468244198 18 0.051277661698846656 22 0.04837310588476356 11 0.04436816394189797 17 0.03323963659747856 14 0.03278715967793618 16 0.03247686972709046 4 0.031527777601014016 5 0.030956025745664122 6 0.02966735050708618 10 0.027539479643970747 7 0.02570742270430357 8 0.025645447956271602 1 0.02553042280511881 2 0.024961804090666232 9 0.024585589143321273 3 0.024161035023205015 0 0.023314187587004934 15 0.00950140171585888 __DUMMY__ 0.002916561507163587 false 1.0
254 11 0.100289 12 0.08793 13 0.079644 21 0.077763 10 0.069671 18 0.069528 22 0.068799 0 0.066231 17 0.057428 19 0.056477 14 0.051525 16 0.04386 9 0.033075 23 0.026919 20 0.024632 15 0.017593 24 0.015088 6 0.012049 5 0.010547 4 0.010495 1 0.005218 2 0.005135 8 0.005117 7 0.004984 11 0.100289 12 0.08793 13 0.079644 21 0.077763 10 0.069671 18 0.069528 22 0.068799 0 0.066231 17 0.057428 19 0.056477 14 0.051525 16 0.04386 9 0.033075 23 0.026919 20 0.024632 15 0.017593 24 0.015088 6 0.012049 5 0.010547 4 0.010495 1 0.005218 2 0.005135 8 0.005117 7 0.004984 11 0.07948512408163999 21 0.07395517197167821 12 0.07205178446310016 22 0.06655063370052006 18 0.06493590956804073 13 0.06059195188990843 10 0.058442995803678906 19 0.05759685109546949 0 0.05239187817098263 17 0.04988203052628822 14 0.0454831756532713 16 0.03806123458506873 9 0.036786297037095586 23 0.03545303784968486 20 0.03402703823514292 24 0.029312920784783526 4 0.019002914654476535 5 0.018773089329768525 15 0.01875573246763454 6 0.018479839355379488 8 0.013764116856274574 7 0.013724172813342934 1 0.013712618544736226 2 0.013477145628003352 3 0.011232536966013465 __DUMMY__ 0.004069797968016659 false 1.0
496 18 0.089204 19 0.087329 20 0.075896 21 0.07338 10 0.07008 12 0.065347 22 0.061013 11 0.059821 14 0.058908 13 0.05441 16 0.048311 17 0.047536 24 0.045311 15 0.039415 23 0.036358 0 0.035814 9 0.030748 5 0.006765 4 0.006494 3 0.002989 6 0.002835 2 0.001313 8 6.62E-4 7 6.1E-5 18 0.089204 19 0.087329 20 0.075896 21 0.07338 10 0.07008 12 0.065347 22 0.061013 11 0.059821 14 0.058908 13 0.05441 16 0.048311 17 0.047536 24 0.045311 15 0.039415 23 0.036358 0 0.035814 9 0.030748 5 0.006765 4 0.006494 3 0.002989 6 0.002835 2 0.001313 8 6.62E-4 7 6.1E-5 18 0.08371311899209545 19 0.07806399717684319 21 0.0703353120470932 10 0.06803019397037235 20 0.06640673991597927 22 0.06177337542232053 11 0.05857372199109428 12 0.058360565678925766 14 0.05834297469729476 13 0.05073666418179553 17 0.04496906129478945 24 0.042709719823857836 16 0.0414308179181638 15 0.03975763207582947 23 0.03670067106507802 0 0.03629028391409922 9 0.0353743142656639 4 0.011897003827137206 5 0.011811752351975539 6 0.008367148812414418 3 0.008252843895299011 2 0.00652542939958298 8 0.0064695627222607 7 0.006205966254921195 1 0.006067299531110439 __DUMMY__ 0.0028338287740027513 false 1.0
497 20 0.115754 19 0.10942 24 0.089732 18 0.078108 21 0.073202 23 0.069909 16 0.062913 12 0.058342 22 0.052082 15 0.048411 14 0.047262 11 0.037436 10 0.035514 17 0.0351 13 0.029563 3 0.010258 4 0.010096 5 0.009783 9 0.008939 8 0.004232 2 0.003984 7 0.003815 1 0.003329 6 0.002815 20 0.115754 19 0.10942 24 0.089732 18 0.078108 21 0.073202 23 0.069909 16 0.062913 12 0.058342 22 0.052082 15 0.048411 14 0.047262 11 0.037436 10 0.035514 17 0.0351 13 0.029563 3 0.010258 4 0.010096 5 0.009783 9 0.008939 8 0.004232 2 0.003984 7 0.003815 1 0.003329 6 0.002815 20 0.09025307321647719 19 0.09000432230453483 18 0.07401699316280896 24 0.07204156914815191 21 0.07092899536227092 23 0.058659729869137874 22 0.056158892879395045 12 0.055240525249941684 16 0.049778773112550266 14 0.04898405687782695 11 0.043900031306558826 15 0.043102552213589024 10 0.04265583375980881 17 0.03695632589542254 13 0.03495660682976626 9 0.02135187158152035 4 0.015687712982249316 5 0.015287923537606435 3 0.014151201703654113 0 0.013178409898840171 8 0.010118752635715747 6 0.009996233929469514 7 0.009941892669287158 2 0.009735530189534464 1 0.009563879272039855 __DUMMY__ 0.0033483104118418113 false 1.0
255 12 0.136774 13 0.130285 21 0.083677 23 0.071949 20 0.065311 14 0.062903 19 0.05737 18 0.056967 11 0.04638 24 0.04257 16 0.037468 10 0.034245 17 0.029129 22 0.027384 0 0.021373 6 0.017733 15 0.014897 4 0.014865 5 0.014277 7 0.008267 8 0.008257 1 0.007941 2 0.007357 9 0.002623 12 0.136774 13 0.130285 21 0.083677 23 0.071949 20 0.065311 14 0.062903 19 0.05737 18 0.056967 11 0.04638 24 0.04257 16 0.037468 10 0.034245 17 0.029129 22 0.027384 0 0.021373 6 0.017733 15 0.014897 4 0.014865 5 0.014277 7 0.008267 8 0.008257 1 0.007941 2 0.007357 9 0.002623 12 0.10522760651909197 13 0.09820120966486762 21 0.0785945863781697 23 0.058223955854196485 18 0.05781754862779321 14 0.05759984454045188 19 0.05549124645740688 20 0.05509632940839168 11 0.05286896244739232 22 0.04207190600792213 24 0.04180342693035908 10 0.04119243175457783 17 0.032529145180531883 16 0.03242618278744909 0 0.028098735669542598 6 0.020291140524815742 4 0.01970815295976514 15 0.01923966636325122 5 0.019221562052591793 9 0.018199185505669905 8 0.013633440790882372 7 0.013632661528409015 1 0.013419505069975407 2 0.013008720097437624 3 0.008950826040539787 __DUMMY__ 0.00345202083851759 false 1.0
256 19 0.095345 20 0.092496 21 0.088517 12 0.080661 18 0.077765 24 0.070473 22 0.060199 11 0.056482 23 0.053949 13 0.053734 16 0.052794 14 0.047155 10 0.043993 17 0.041977 15 0.025575 0 0.021644 9 0.018551 4 0.006544 5 0.006195 3 0.002779 6 0.001963 8 5.2E-4 1 3.48E-4 7 3.39E-4 19 0.095345 20 0.092496 21 0.088517 12 0.080661 18 0.077765 24 0.070473 22 0.060199 11 0.056482 23 0.053949 13 0.053734 16 0.052794 14 0.047155 10 0.043993 17 0.041977 15 0.025575 0 0.021644 9 0.018551 4 0.006544 5 0.006195 3 0.002779 6 0.001963 8 5.2E-4 1 3.48E-4 7 3.39E-4 19 0.08465201704097162 21 0.08200327581910835 20 0.0782750539380027 18 0.0721476665531745 12 0.07097998212469166 24 0.06344767039635733 22 0.06125063876126038 11 0.05564591303944722 23 0.05150691020153844 13 0.048024136705810454 16 0.046586915001597146 14 0.045328606112897685 10 0.04425392729669597 17 0.0414041028442612 15 0.025782254690334978 0 0.025048595237155025 9 0.024931927242902288 4 0.013215765397017873 5 0.012803710405880962 3 0.009272268374790784 6 0.009012340704917894 8 0.007375680422420996 7 0.0073209497330753775 1 0.007187197925059549 2 0.00686854631697688 __DUMMY__ 0.005673947713652518 false 1.0
498 19 0.097901 18 0.086036 20 0.078805 16 0.075257 21 0.070476 17 0.068284 12 0.064589 22 0.061627 11 0.058649 10 0.054818 24 0.051442 0 0.044272 23 0.04093 13 0.037137 14 0.035826 15 0.034547 9 0.025968 5 0.004757 4 0.004629 6 0.00291 2 4.26E-4 3 3.16E-4 8 3.0E-4 1 9.7E-5 19 0.097901 18 0.086036 20 0.078805 16 0.075257 21 0.070476 17 0.068284 12 0.064589 22 0.061627 11 0.058649 10 0.054818 24 0.051442 0 0.044272 23 0.04093 13 0.037137 14 0.035826 15 0.034547 9 0.025968 5 0.004757 4 0.004629 6 0.00291 2 4.26E-4 3 3.16E-4 8 3.0E-4 1 9.7E-5 19 0.08433323960690105 18 0.07869753726345088 20 0.07194679979408156 21 0.068696568453852 12 0.059761644929385974 22 0.05938499810410716 16 0.057847602694813836 17 0.0545686172104902 11 0.05449559084152446 10 0.05392820892196984 24 0.0509913667594661 14 0.046642464782890185 23 0.04277393984841813 13 0.04243602662114513 15 0.03999031427150815 0 0.03636769059265438 9 0.029057491306321646 4 0.011400263993080457 5 0.011247374928967947 6 0.008838756726900635 3 0.0075087763816895185 8 0.006824954145367337 7 0.006666372856055151 2 0.00664229554761302 1 0.006592723691053596 __DUMMY__ 0.0023583797262915216 false 1.0
499 18 0.125146 10 0.101639 19 0.092167 22 0.085705 17 0.071829 9 0.064195 21 0.06415 11 0.064086 0 0.063036 20 0.055713 14 0.040701 16 0.039915 12 0.028154 15 0.026922 23 0.018458 24 0.016626 13 0.016117 4 0.008014 5 0.006253 6 0.003842 8 0.002132 7 0.002003 1 0.001675 3 0.001522 18 0.125146 10 0.101639 19 0.092167 22 0.085705 17 0.071829 9 0.064195 21 0.06415 11 0.064086 0 0.063036 20 0.055713 14 0.040701 16 0.039915 12 0.028154 15 0.026922 23 0.018458 24 0.016626 13 0.016117 4 0.008014 5 0.006253 6 0.003842 8 0.002132 7 0.002003 1 0.001675 3 0.001522 18 0.09739985222663769 10 0.08381083870234822 22 0.07499494620859494 19 0.0732042481620667 21 0.0607658257255757 11 0.06034945197948534 17 0.05845247677484778 9 0.057928754798867194 0 0.05481215482439884 20 0.046233265087235645 14 0.044539843971599616 16 0.034313493631210515 12 0.03260798905384235 15 0.030817242403438517 13 0.0258103933429003 23 0.02513711068786083 24 0.023119730978994165 4 0.018017128741673376 5 0.016942783650009837 6 0.014664910130041703 3 0.013210209332350856 8 0.013164774067903057 7 0.013095971241448016 1 0.012833697858509834 2 0.011850637508015672 __DUMMY__ 0.0019222689101431939 false 1.0
257 19 0.112591 20 0.098641 21 0.079603 16 0.078289 12 0.07739 18 0.075312 24 0.074187 23 0.065844 22 0.055482 17 0.052626 11 0.051049 13 0.039111 10 0.03539 14 0.03042 15 0.024454 0 0.022624 9 0.009717 5 0.006077 4 0.006039 6 0.002225 3 0.002004 1 3.61E-4 7 3.49E-4 8 2.15E-4 19 0.112591 20 0.098641 21 0.079603 16 0.078289 12 0.07739 18 0.075312 24 0.074187 23 0.065844 22 0.055482 17 0.052626 11 0.051049 13 0.039111 10 0.03539 14 0.03042 15 0.024454 0 0.022624 9 0.009717 5 0.006077 4 0.006039 6 0.002225 3 0.002004 1 3.61E-4 7 3.49E-4 8 2.15E-4 19 0.09196437272336705 20 0.07924117163607178 21 0.07559052572977575 18 0.0700574730671962 12 0.0684633342430046 24 0.06336055783164125 16 0.060479826650761834 22 0.058156988019456374 23 0.05683903713190368 11 0.052781522798402605 17 0.04821668302203467 13 0.040128302314078074 10 0.03991556441728462 14 0.03538538566763691 0 0.02762417704310872 15 0.024863920888236572 9 0.021206025845269594 4 0.0137236718779546 5 0.013505227351820664 6 0.010276297706274615 3 0.009633840969106883 7 0.00839651483689255 8 0.008316566809514061 1 0.00828254575417673 2 0.007959762136817518 __DUMMY__ 0.005630703528212112 false 1.0
258 12 0.095334 21 0.094808 11 0.085937 13 0.077745 22 0.071845 18 0.060559 19 0.058986 10 0.055726 14 0.049109 0 0.047969 17 0.03973 20 0.037547 23 0.036507 24 0.036018 9 0.034801 16 0.028598 4 0.016299 5 0.01569 6 0.01463 7 0.008993 8 0.008825 1 0.008602 2 0.008597 3 0.007148 12 0.095334 21 0.094808 11 0.085937 13 0.077745 22 0.071845 18 0.060559 19 0.058986 10 0.055726 14 0.049109 0 0.047969 17 0.03973 20 0.037547 23 0.036507 24 0.036018 9 0.034801 16 0.028598 4 0.016299 5 0.01569 6 0.01463 7 0.008993 8 0.008825 1 0.008602 2 0.008597 3 0.007148 21 0.08690616771403877 12 0.0843439504079614 11 0.07558470448586782 13 0.06946255162331103 22 0.06758859241628422 18 0.06135699357959758 19 0.0589262691908735 10 0.053279258457259025 14 0.049060033522501524 0 0.04283535172392331 20 0.041157417676360344 23 0.0396100553863799 17 0.039160067979271365 24 0.03874471226188186 9 0.035292788448353346 16 0.028771324094025937 4 0.01907976753354692 5 0.01856388928516262 6 0.01711612701641539 7 0.012409965556330416 8 0.012306834129889505 1 0.01213181295877887 2 0.011964626475563834 3 0.011109028216610995 15 0.008932472481564925 __DUMMY__ 0.004305237378245493 false 1.0
259 13 0.103997 14 0.09685 12 0.089758 21 0.083109 18 0.076046 10 0.074241 11 0.066693 19 0.059423 20 0.057547 22 0.053052 15 0.051846 23 0.03557 24 0.033765 0 0.027469 9 0.027143 17 0.024303 16 0.019232 4 0.007323 5 0.007153 6 0.004738 2 2.79E-4 7 2.55E-4 1 1.25E-4 3 8.2E-5 13 0.103997 14 0.09685 12 0.089758 21 0.083109 18 0.076046 10 0.074241 11 0.066693 19 0.059423 20 0.057547 22 0.053052 15 0.051846 23 0.03557 24 0.033765 0 0.027469 9 0.027143 17 0.024303 16 0.019232 4 0.007323 5 0.007153 6 0.004738 2 2.79E-4 7 2.55E-4 1 1.25E-4 3 8.2E-5 13 0.0817765729295858 21 0.07945547592698875 12 0.07913714009309548 14 0.07560458051669194 18 0.0702951981567792 11 0.06324443098721247 10 0.0627056986900927 19 0.06042399784590394 22 0.05698853733602875 20 0.054233567639570955 15 0.03990095412553256 23 0.03955301307193363 24 0.0391421584346728 17 0.0308791290467139 9 0.030690755435873577 0 0.030301687732713307 16 0.024773791512559932 4 0.014032669089836913 5 0.013729760074983456 6 0.011381948522049616 7 0.007563050961473953 3 0.00745532399254358 8 0.007443118902352467 1 0.007411688504560975 2 0.007337033822694891 __DUMMY__ 0.0045387166475544015 false 1.0
260 12 0.140224 13 0.127715 21 0.104031 23 0.075141 11 0.06707 14 0.062806 24 0.061043 20 0.050964 22 0.042596 19 0.04232 18 0.037509 4 0.025362 6 0.024849 5 0.024737 10 0.017334 8 0.015198 7 0.014914 1 0.01457 2 0.014441 3 0.009913 0 0.009396 17 0.008771 16 0.00652 9 0.002576 12 0.140224 13 0.127715 21 0.104031 23 0.075141 11 0.06707 14 0.062806 24 0.061043 20 0.050964 22 0.042596 19 0.04232 18 0.037509 4 0.025362 6 0.024849 5 0.024737 10 0.017334 8 0.015198 7 0.014914 1 0.01457 2 0.014441 3 0.009913 0 0.009396 17 0.008771 16 0.00652 9 0.002576 12 0.10561874183108133 13 0.09369571121726333 21 0.09072179994630783 11 0.0640622048625912 23 0.05999125655698966 14 0.056346614259562056 24 0.052543757621870864 22 0.05218310797163074 19 0.050267119504362405 18 0.048812805934276594 20 0.04859533021223228 10 0.0323542361791329 4 0.024295060627866134 5 0.02375429868471098 17 0.023029706764092432 6 0.022838100656167846 0 0.021987023925882553 9 0.01875669998450823 16 0.017699193831294903 8 0.016265840536685706 7 0.016150292613874007 1 0.01588979063503885 2 0.015665189837435797 3 0.01340298425660676 15 0.010588594871027649 __DUMMY__ 0.004484536677506839 false 1.0
261 12 0.104412 13 0.088228 21 0.075915 11 0.064912 23 0.051032 19 0.04665 22 0.045385 18 0.0446 20 0.041473 0 0.040889 24 0.038585 14 0.038368 17 0.036726 10 0.036421 16 0.034615 6 0.028608 4 0.027194 5 0.027079 9 0.023108 2 0.02215 8 0.022024 7 0.021999 1 0.021957 3 0.01767 12 0.104412 13 0.088228 21 0.075915 11 0.064912 23 0.051032 19 0.04665 22 0.045385 18 0.0446 20 0.041473 0 0.040889 24 0.038585 14 0.038368 17 0.036726 10 0.036421 16 0.034615 6 0.028608 4 0.027194 5 0.027079 9 0.023108 2 0.02215 8 0.022024 7 0.021999 1 0.021957 3 0.01767 12 0.0911711443886366 13 0.07913830245920346 21 0.07691243450285837 11 0.06376362176483845 18 0.05295094860714408 22 0.052243521410913284 19 0.05125877862446216 23 0.04730711372940132 14 0.04658648013104709 10 0.043527079688760385 20 0.04341553869661328 24 0.03944534113646061 0 0.0381674115696157 17 0.036384084452650615 16 0.030786178577604132 9 0.02829012511309858 4 0.024445391813958252 6 0.024234630600206603 5 0.024168999437575774 8 0.018832996460388423 7 0.018810060079984068 1 0.018722582086253107 2 0.018675620694436963 3 0.01601602569823234 15 0.011035427909371566 __DUMMY__ 0.003710160366284854 false 1.0
262 12 0.139438 13 0.127186 21 0.103535 23 0.074405 11 0.066698 14 0.062511 24 0.058651 20 0.050917 22 0.043039 19 0.042819 18 0.038373 4 0.025159 5 0.024701 6 0.024462 10 0.017423 8 0.015265 1 0.015048 7 0.015007 2 0.014596 3 0.010105 0 0.009952 17 0.009834 16 0.00739 9 0.003487 12 0.139438 13 0.127186 21 0.103535 23 0.074405 11 0.066698 14 0.062511 24 0.058651 20 0.050917 22 0.043039 19 0.042819 18 0.038373 4 0.025159 5 0.024701 6 0.024462 10 0.017423 8 0.015265 1 0.015048 7 0.015007 2 0.014596 3 0.010105 0 0.009952 17 0.009834 16 0.00739 9 0.003487 12 0.10525742298016036 13 0.09345324295275848 21 0.09049182276874054 11 0.06389037906037623 23 0.0596506573674437 14 0.05620937688598579 22 0.05238677877337357 24 0.05143572959459793 19 0.05049709045112208 18 0.04921174750900448 20 0.048573046176673094 10 0.03239511994043886 4 0.024201270712152615 5 0.023737831304683984 17 0.02352184394059139 6 0.02265948706455066 0 0.02224520400062083 9 0.019177600196512944 16 0.01810239747131137 8 0.0162971091573493 7 0.01619358605561692 1 0.016111286810429448 2 0.015737237072465368 3 0.013491774585920178 15 0.010587177338748678 __DUMMY__ 0.004483779828371107 false 1.0
263 12 0.14445 13 0.132629 21 0.086043 23 0.061873 11 0.061299 20 0.056926 14 0.054185 19 0.053228 18 0.05319 16 0.038788 24 0.037468 10 0.034697 17 0.033675 22 0.032317 0 0.031954 6 0.018498 5 0.014974 4 0.01491 8 0.008464 1 0.008324 7 0.008297 2 0.008222 9 0.004048 15 0.001541 12 0.14445 13 0.132629 21 0.086043 23 0.061873 11 0.061299 20 0.056926 14 0.054185 19 0.053228 18 0.05319 16 0.038788 24 0.037468 10 0.034697 17 0.033675 22 0.032317 0 0.031954 6 0.018498 5 0.014974 4 0.01491 8 0.008464 1 0.008324 7 0.008297 2 0.008222 9 0.004048 15 0.001541 12 0.10878436526252669 13 0.09940761350747157 21 0.08065449806484684 11 0.06111665619138496 18 0.05697455858218267 14 0.05442925419538356 19 0.05420840328018833 23 0.05237047263899338 20 0.05091774588644708 22 0.04561317430618717 10 0.04261867806630329 24 0.03897599520869561 17 0.03505921931735101 0 0.03370073551504914 16 0.03303612742476303 6 0.01969568407958397 9 0.019387055453783556 4 0.01887407553658287 5 0.018680181966870667 15 0.013258913563674337 8 0.012772492639323221 7 0.012675417048435682 1 0.01262191209815678 2 0.012439615662169163 3 0.00805920010074299 __DUMMY__ 0.003667954402902428 false 1.0
264 13 0.127685 12 0.106898 14 0.096374 21 0.075638 18 0.067622 10 0.066076 11 0.060258 20 0.053579 15 0.049959 19 0.04859 23 0.040665 22 0.038003 0 0.028905 24 0.026937 17 0.024156 16 0.02231 9 0.019014 6 0.010834 4 0.010221 5 0.009937 8 0.00416 7 0.004154 1 0.004135 2 0.003891 13 0.127685 12 0.106898 14 0.096374 21 0.075638 18 0.067622 10 0.066076 11 0.060258 20 0.053579 15 0.049959 19 0.04859 23 0.040665 22 0.038003 0 0.028905 24 0.026937 17 0.024156 16 0.02231 9 0.019014 6 0.010834 4 0.010221 5 0.009937 8 0.00416 7 0.004154 1 0.004135 2 0.003891 13 0.0971148964571157 12 0.08923753051581954 14 0.07718206691534998 21 0.07485640015332892 18 0.06486525156757343 11 0.05958155284915494 10 0.05862352823092915 19 0.052063362362470895 20 0.05028540451635681 22 0.04795063569984353 23 0.04200789840538118 15 0.03989322436949258 24 0.03408374122910875 0 0.03105969434678258 17 0.02983551780987847 9 0.026521904719498498 16 0.02458482238822935 4 0.016265413608576005 5 0.015916668120643785 6 0.015510928059430107 8 0.010348802256051975 7 0.010321986738238392 1 0.01024553038570675 2 0.009997730749618832 3 0.007886403781217462 __DUMMY__ 0.0037591037642024615 false 1.0
265 13 0.127776 12 0.107116 14 0.096765 21 0.075743 18 0.067484 10 0.066541 11 0.060318 20 0.054032 15 0.050092 19 0.048613 23 0.04056 22 0.037914 0 0.028402 24 0.026932 17 0.024102 16 0.0221 9 0.018774 6 0.010708 4 0.010121 5 0.009809 8 0.004152 7 0.004021 1 0.004015 2 0.00391 13 0.127776 12 0.107116 14 0.096765 21 0.075743 18 0.067484 10 0.066541 11 0.060318 20 0.054032 15 0.050092 19 0.048613 23 0.04056 22 0.037914 0 0.028402 24 0.026932 17 0.024102 16 0.0221 9 0.018774 6 0.010708 4 0.010121 5 0.009809 8 0.004152 7 0.004021 1 0.004015 2 0.00391 13 0.0971569300680686 12 0.08933816024678079 14 0.07736251594649932 21 0.07490488330935287 18 0.06480160617334395 11 0.05960926526450263 10 0.058838113437869065 19 0.052073998939316794 20 0.050494448891257655 22 0.04790959185514335 23 0.04195946917234332 15 0.03995461102393676 24 0.03408144987891305 0 0.030827616736177257 17 0.02981061514529367 9 0.026411177263104955 16 0.02448793649978728 4 0.016219279574517943 5 0.015857614294701523 6 0.01545279687705654 8 0.010345115708015001 7 0.010260623253865514 1 0.010190165266147867 2 0.010006502255168028 3 0.00788640742012555 __DUMMY__ 0.003759105498710797 false 1.0
266 12 0.136505 13 0.12954 21 0.082567 14 0.060729 11 0.059581 23 0.05793 20 0.057542 18 0.055745 19 0.053724 10 0.03964 16 0.039192 24 0.03608 17 0.033687 22 0.032548 0 0.031914 6 0.017135 5 0.013953 4 0.013818 15 0.011362 8 0.007818 7 0.007624 1 0.007555 2 0.007517 9 0.006294 12 0.136505 13 0.12954 21 0.082567 14 0.060729 11 0.059581 23 0.05793 20 0.057542 18 0.055745 19 0.053724 10 0.03964 16 0.039192 24 0.03608 17 0.033687 22 0.032548 0 0.031914 6 0.017135 5 0.013953 4 0.013818 15 0.011362 8 0.007818 7 0.007624 1 0.007555 2 0.007517 9 0.006294 12 0.10496270515304429 13 0.09794008067771631 21 0.07888105211922314 11 0.06015508015740267 18 0.05819121346375697 14 0.05754611164286012 19 0.054437709817312156 20 0.051284732722072096 23 0.050567567349355094 22 0.04561305326874131 10 0.04490097758484903 24 0.03833762377926545 17 0.03508282016842194 0 0.03362076443763514 16 0.03328242801140429 9 0.020400145733601452 6 0.019078353862269574 4 0.018377602060763647 5 0.018215470835578524 15 0.018063021885774407 8 0.012498311416474969 7 0.012387437215397734 1 0.012289781658985083 2 0.01213674908001644 3 0.008083021563853801 __DUMMY__ 0.0036661843342243065 false 1.0
267 12 0.106538 21 0.09736 13 0.089123 11 0.081115 19 0.066814 18 0.066252 22 0.065851 10 0.054822 14 0.054769 20 0.050086 0 0.041982 23 0.041285 24 0.040312 17 0.03966 16 0.033718 9 0.026991 4 0.010215 5 0.009648 6 0.00892 15 0.004544 7 0.002775 8 0.002639 1 0.002471 2 0.002111 12 0.106538 21 0.09736 13 0.089123 11 0.081115 19 0.066814 18 0.066252 22 0.065851 10 0.054822 14 0.054769 20 0.050086 0 0.041982 23 0.041285 24 0.040312 17 0.03966 16 0.033718 9 0.026991 4 0.010215 5 0.009648 6 0.00892 15 0.004544 7 0.002775 8 0.002639 1 0.002471 2 0.002111 12 0.09356600833860265 21 0.08869104404791493 13 0.07920881635134792 11 0.07233750461965076 18 0.06318089572841964 22 0.06261684143463216 19 0.062332020872445576 14 0.053137220938874234 10 0.05135485990307996 20 0.04863307936153371 23 0.04339665245756481 24 0.04159728233529237 0 0.03838482313049302 17 0.03790794178200737 16 0.031198404893160437 9 0.029340288953214423 4 0.015829212085372284 5 0.015340521480370801 6 0.014231721474156486 15 0.011350821856702345 7 0.009005302527043704 8 0.008933028229806338 1 0.008783405821547295 2 0.008476499987681735 3 0.007017788106594532 __DUMMY__ 0.004148013282490305 false 1.0
268 13 0.125811 12 0.106454 14 0.096089 21 0.0757 18 0.068572 10 0.066499 11 0.060208 20 0.054408 15 0.049512 19 0.048858 23 0.041552 22 0.038219 0 0.028258 24 0.027471 17 0.024314 16 0.022224 9 0.018937 6 0.010757 4 0.010197 5 0.009568 7 0.004323 1 0.004183 8 0.004024 2 0.003862 13 0.125811 12 0.106454 14 0.096089 21 0.0757 18 0.068572 10 0.066499 11 0.060208 20 0.054408 15 0.049512 19 0.048858 23 0.041552 22 0.038219 0 0.028258 24 0.027471 17 0.024314 16 0.022224 9 0.018937 6 0.010757 4 0.010197 5 0.009568 7 0.004323 1 0.004183 8 0.004024 2 0.003862 13 0.09625159756532665 12 0.08901966922711355 14 0.07705987497575556 21 0.07486590879772655 18 0.06530028326708008 11 0.05953925257668503 10 0.05881603771176834 19 0.052175934572806615 20 0.05066814363330041 22 0.04803563887017814 23 0.04242075993274887 15 0.039709497368918455 24 0.03432722671306546 0 0.03075344023505766 17 0.029903968081222667 9 0.02648529361351991 16 0.024541808423867027 4 0.016261203767462484 5 0.015753525442857328 6 0.015483132954875935 7 0.010408215637837578 8 0.01029451193223686 1 0.010276086140948156 2 0.009992892924175892 3 0.007894450199506426 __DUMMY__ 0.003761645433958345 false 1.0
269 21 0.082259 23 0.078622 12 0.077777 19 0.076773 20 0.073848 24 0.07341 18 0.056913 22 0.051826 13 0.042465 16 0.040459 17 0.03525 11 0.034473 4 0.028614 5 0.028547 6 0.025443 3 0.023406 1 0.023397 7 0.023309 9 0.023067 8 0.023012 2 0.02245 10 0.01965 14 0.018839 0 0.016193 21 0.082259 23 0.078622 12 0.077777 19 0.076773 20 0.073848 24 0.07341 18 0.056913 22 0.051826 13 0.042465 16 0.040459 17 0.03525 11 0.034473 4 0.028614 5 0.028547 6 0.025443 3 0.023406 1 0.023397 7 0.023309 9 0.023067 8 0.023012 2 0.02245 10 0.01965 14 0.018839 0 0.016193 21 0.07455999168934008 19 0.06818215762404546 12 0.06780785094087453 23 0.06603266444383282 20 0.06178285959697359 24 0.061760518311073404 18 0.05614043632266848 22 0.05434094605405735 13 0.04204468056158026 11 0.0419321021922081 16 0.03774304902106991 17 0.03737540536908146 4 0.02946059219596189 5 0.029169601618187872 10 0.028733218467065537 9 0.02873257083344907 14 0.02760434311094062 6 0.02667947540230891 3 0.024479737648552654 7 0.024468547043215227 1 0.02436816094927434 8 0.02427313802464221 0 0.023884992726656534 2 0.023739746376018174 15 0.010568762326494565 __DUMMY__ 0.0041344511504268384 false 1.0
270 13 0.117572 14 0.104264 12 0.090261 10 0.083604 11 0.074156 18 0.073742 21 0.072939 15 0.058059 22 0.048158 19 0.045027 20 0.040839 0 0.038602 9 0.029882 17 0.026735 23 0.026619 16 0.016632 24 0.016021 4 0.008744 6 0.0085 5 0.008465 7 0.002891 1 0.002806 8 0.002797 2 0.002685 13 0.117572 14 0.104264 12 0.090261 10 0.083604 11 0.074156 18 0.073742 21 0.072939 15 0.058059 22 0.048158 19 0.045027 20 0.040839 0 0.038602 9 0.029882 17 0.026735 23 0.026619 16 0.016632 24 0.016021 4 0.008744 6 0.0085 5 0.008465 7 0.002891 1 0.002806 8 0.002797 2 0.002685 13 0.0899629937713333 14 0.08211358709214933 12 0.07751105499885076 21 0.07200477746334567 18 0.06900883216950478 10 0.06894550342057901 11 0.0658008640203169 22 0.053480605053667404 19 0.05018373689472303 15 0.04647739272813436 20 0.04353240609853501 0 0.03626067421959248 23 0.03385681801695815 9 0.03330078080034131 17 0.031548176856881244 24 0.027797908525782632 16 0.02157146741534498 4 0.015639739698299713 5 0.01528971974581712 6 0.014342530261738708 7 0.009928065980908549 8 0.009908649118799564 1 0.00981524233588201 2 0.0096074074114983 3 0.008309403220152403 __DUMMY__ 0.003801662680863165 false 1.0
271 21 0.09845 12 0.096381 11 0.085832 13 0.075412 22 0.073694 19 0.065533 18 0.064966 10 0.055812 14 0.048694 0 0.045869 20 0.043913 24 0.040823 17 0.040815 23 0.037439 9 0.033311 16 0.030966 4 0.012908 5 0.0125 6 0.010579 2 0.005467 1 0.005426 7 0.005418 8 0.005196 3 0.004596 21 0.09845 12 0.096381 11 0.085832 13 0.075412 22 0.073694 19 0.065533 18 0.064966 10 0.055812 14 0.048694 0 0.045869 20 0.043913 24 0.040823 17 0.040815 23 0.037439 9 0.033311 16 0.030966 4 0.012908 5 0.0125 6 0.010579 2 0.005467 1 0.005426 7 0.005418 8 0.005196 3 0.004596 21 0.08934864720388364 12 0.0854525281356347 11 0.07566253354673504 22 0.06864636013777194 13 0.06829344063923323 18 0.06369801121191626 19 0.06311595575570511 10 0.05298217484046025 14 0.04869255744655023 20 0.045285599731981464 24 0.041879097269129445 0 0.04142342266271334 23 0.04041614758747274 17 0.03971172156880741 9 0.034043204309482294 16 0.030501214442576367 4 0.016989853350418836 5 0.016569260493475464 6 0.014636417755718658 7 0.010169725886795194 1 0.010071989674831161 8 0.010037138505968676 2 0.009932246210614452 3 0.009426406884203407 15 0.008631973017824406 __DUMMY__ 0.004382371730096422 false 1.0
272 12 0.138185 13 0.122362 21 0.101637 23 0.06715 11 0.065357 20 0.063495 14 0.061992 24 0.056401 19 0.055786 18 0.053769 22 0.043748 10 0.033576 5 0.018053 4 0.017194 6 0.015906 17 0.01512 16 0.014398 0 0.013308 2 0.008971 1 0.00803 7 0.007254 8 0.007242 9 0.005647 3 0.005421 12 0.138185 13 0.122362 21 0.101637 23 0.06715 11 0.065357 20 0.063495 14 0.061992 24 0.056401 19 0.055786 18 0.053769 22 0.043748 10 0.033576 5 0.018053 4 0.017194 6 0.015906 17 0.01512 16 0.014398 0 0.013308 2 0.008971 1 0.00803 7 0.007254 8 0.007242 9 0.005647 3 0.005421 12 0.1056697635278581 13 0.0927547956793614 21 0.08957793449244511 11 0.06360621812122691 18 0.057105021129866325 14 0.056897546447723005 19 0.0566958507835469 23 0.05561039040117204 20 0.054800744249337105 22 0.052299705626679446 24 0.04963246102020841 10 0.04106966105363338 17 0.026079965807378154 0 0.024194028678065617 16 0.02157346612066583 9 0.02001053659927463 5 0.020009658655898422 4 0.019845519075375254 6 0.01810592280107813 2 0.012494533695741645 1 0.012207614140355472 7 0.01193397214050571 8 0.011922146543270302 15 0.010998794344598595 3 0.010589959764416436 __DUMMY__ 0.004313789100317625 false 1.0
273 13 0.112275 14 0.095569 12 0.090189 10 0.083066 11 0.07879 18 0.072954 21 0.072701 22 0.051446 15 0.051439 19 0.046186 0 0.045158 20 0.036295 17 0.033031 9 0.031399 23 0.024042 16 0.021634 24 0.013803 5 0.009091 6 0.009079 4 0.00878 1 0.003368 8 0.003317 2 0.003282 7 0.003108 13 0.112275 14 0.095569 12 0.090189 10 0.083066 11 0.07879 18 0.072954 21 0.072701 22 0.051446 15 0.051439 19 0.046186 0 0.045158 20 0.036295 17 0.033031 9 0.031399 23 0.024042 16 0.021634 24 0.013803 5 0.009091 6 0.009079 4 0.00878 1 0.003368 8 0.003317 2 0.003282 7 0.003108 13 0.08669613176075697 14 0.07710371897170462 12 0.07703603203004665 21 0.07183778180254066 10 0.06901372490317098 18 0.0686673187976909 11 0.06847478210865239 22 0.05553658183552203 19 0.05058975035783997 15 0.04233384827702041 20 0.0405570649288108 0 0.04021491071523708 17 0.03498146124101852 9 0.03465894090436092 23 0.032229447050265134 24 0.0261772956937117 16 0.023928158003937376 4 0.015875249686734937 5 0.01579530240353846 6 0.014861918201072367 8 0.01039747075925225 1 0.01032463775374031 7 0.010278041130310105 2 0.010127227015970122 3 0.008523854470455556 __DUMMY__ 0.003779349196638777 false 1.0
274 12 0.131928 13 0.111574 21 0.10519 11 0.069263 20 0.068063 19 0.065722 23 0.062991 14 0.059821 18 0.059717 24 0.059579 22 0.050595 10 0.037306 16 0.021514 17 0.020517 0 0.016888 4 0.012758 5 0.012312 6 0.010771 9 0.008969 2 0.003516 7 0.003412 8 0.003354 1 0.00311 3 0.001128 12 0.131928 13 0.111574 21 0.10519 11 0.069263 20 0.068063 19 0.065722 23 0.062991 14 0.059821 18 0.059717 24 0.059579 22 0.050595 10 0.037306 16 0.021514 17 0.020517 0 0.016888 4 0.012758 5 0.012312 6 0.010771 9 0.008969 2 0.003516 7 0.003412 8 0.003354 1 0.00311 3 0.001128 12 0.10251744673423478 21 0.09144595399739495 13 0.08675758303941412 11 0.06529148381902451 19 0.06254639204557762 18 0.0602850740317484 20 0.058091805645170226 22 0.055670801762889195 14 0.055324346279325205 23 0.05393776026795214 24 0.05193043480478282 10 0.042576283050898285 17 0.028914988676772287 16 0.02578009282317309 0 0.02558990695028907 9 0.021240358144276324 4 0.017402776989792316 5 0.01696281883383128 6 0.01524879097395225 15 0.010911953658736255 7 0.009766581660256159 8 0.009729754033706213 2 0.00957860638790401 1 0.009537632608228 3 0.008332196723036651 __DUMMY__ 0.004628176057633685 false 1.0
275 12 0.066692 13 0.065576 21 0.063189 11 0.050119 23 0.048915 22 0.048013 14 0.047444 4 0.045345 5 0.044897 6 0.043747 9 0.042427 24 0.041375 10 0.041193 8 0.040058 1 0.039774 7 0.039761 2 0.039659 18 0.039351 3 0.038996 0 0.030303 20 0.026071 19 0.023364 17 0.019035 15 0.014696 12 0.066692 13 0.065576 21 0.063189 11 0.050119 23 0.048915 22 0.048013 14 0.047444 4 0.045345 5 0.044897 6 0.043747 9 0.042427 24 0.041375 10 0.041193 8 0.040058 1 0.039774 7 0.039761 2 0.039659 18 0.039351 3 0.038996 0 0.030303 20 0.026071 19 0.023364 17 0.019035 15 0.014696 12 0.06780788251343889 21 0.06766833576488626 13 0.06337154665495548 11 0.054687729601934756 22 0.053447596109154935 18 0.049480215788936105 14 0.04850847155276963 23 0.04587581263033698 10 0.045712543669463535 9 0.040063969935099725 24 0.03971919174173321 19 0.037963417769314174 4 0.03566856079766657 5 0.03524157923484672 6 0.03400175900882996 0 0.033939455040530565 20 0.03370257661115605 8 0.03033442965482897 7 0.030200079708961346 1 0.030146016504841056 2 0.029920602216702254 3 0.02925520744301451 17 0.02831584634907299 15 0.018189486705723946 16 0.01321326099930752 __DUMMY__ 0.0035644259924937213 false 1.0
276 12 0.120852 13 0.115975 21 0.086622 11 0.070322 14 0.065364 18 0.060625 19 0.054422 10 0.051288 20 0.04884 22 0.047086 23 0.046153 0 0.037978 17 0.035532 16 0.03363 24 0.032629 9 0.017925 15 0.014555 6 0.013723 4 0.012292 5 0.011688 7 0.005827 1 0.005685 8 0.005564 2 0.005421 12 0.120852 13 0.115975 21 0.086622 11 0.070322 14 0.065364 18 0.060625 19 0.054422 10 0.051288 20 0.04884 22 0.047086 23 0.046153 0 0.037978 17 0.035532 16 0.03363 24 0.032629 9 0.017925 15 0.014555 6 0.013723 4 0.012292 5 0.011688 7 0.005827 1 0.005685 8 0.005564 2 0.005421 12 0.09812242619993432 13 0.09192597955270222 21 0.08126328375732461 11 0.06568811001502389 18 0.06048177973881645 14 0.059660678286278204 19 0.05470528466319275 22 0.05269316562211878 10 0.05050592447843052 20 0.046944657661217276 23 0.045006087796025517 0 0.03659429625373442 24 0.036593883777762584 17 0.03579689806613437 16 0.03033636944700166 9 0.025898505543810093 15 0.01889751701945709 4 0.0175988678606443 6 0.017405304547167995 5 0.01709619282567577 7 0.011423746315865133 8 0.011319821466706919 1 0.011292038393644403 2 0.011032889978983019 3 0.007948925667002574 __DUMMY__ 0.003767365065345199 false 1.0
277 13 0.127286 12 0.107504 14 0.096766 21 0.075639 18 0.067395 10 0.066254 11 0.060459 20 0.053617 15 0.049998 19 0.048593 23 0.040532 22 0.0378 0 0.027975 24 0.027444 17 0.024362 16 0.021952 9 0.018938 6 0.010866 4 0.01028 5 0.010149 8 0.004141 1 0.004124 7 0.004017 2 0.003909 13 0.127286 12 0.107504 14 0.096766 21 0.075639 18 0.067395 10 0.066254 11 0.060459 20 0.053617 15 0.049998 19 0.048593 23 0.040532 22 0.0378 0 0.027975 24 0.027444 17 0.024362 16 0.021952 9 0.018938 6 0.010866 4 0.01028 5 0.010149 8 0.004141 1 0.004124 7 0.004017 2 0.003909 13 0.09688805687853216 12 0.08943519033200092 14 0.07738197473075684 21 0.0747888961368614 18 0.06475704784052118 11 0.05960237167836054 10 0.05869454443527109 19 0.052045134394704574 20 0.050309096549283075 22 0.047825048288144975 23 0.04195294045621164 15 0.039997491689046566 24 0.034315624633257484 0 0.030608113417059185 17 0.02993136206734566 9 0.02649623119783947 16 0.024424059479232558 4 0.016314541021347707 5 0.016036177457688653 6 0.015548096601976648 8 0.010368267365140637 7 0.010286384411813013 1 0.01026790101532903 2 0.010032768239013673 3 0.00791520421039794 __DUMMY__ 0.003777475472863304 false 1.0
278 18 0.067188 22 0.066778 0 0.063063 21 0.062258 12 0.059405 11 0.058366 17 0.058311 10 0.057807 9 0.056907 13 0.048352 19 0.045267 6 0.034207 4 0.033242 5 0.032397 23 0.031946 8 0.029154 7 0.028718 1 0.028692 2 0.028463 16 0.027286 14 0.026364 3 0.024409 20 0.017486 24 0.013932 18 0.067188 22 0.066778 0 0.063063 21 0.062258 12 0.059405 11 0.058366 17 0.058311 10 0.057807 9 0.056907 13 0.048352 19 0.045267 6 0.034207 4 0.033242 5 0.032397 23 0.031946 8 0.029154 7 0.028718 1 0.028692 2 0.028463 16 0.027286 14 0.026364 3 0.024409 20 0.017486 24 0.013932 21 0.06242793714137312 22 0.06096365764699014 18 0.06012098313745373 12 0.05950425435295644 11 0.05535742189434654 0 0.0515041508381814 10 0.050930746599757035 13 0.04998263334162124 17 0.04941434868686766 9 0.048766170100948435 19 0.046009620455941896 23 0.03777491094549455 14 0.033732609406821316 6 0.03307244395187196 4 0.03306646986261666 5 0.03244006796539231 8 0.02902170790821033 7 0.028794211541908643 1 0.02872936725122888 2 0.028414675055997124 16 0.028140241461532906 20 0.026960739528630023 3 0.025873325701002398 24 0.025737971696295874 15 0.010871890361391521 __DUMMY__ 0.002387443165167894 false 1.0
279 12 0.130465 13 0.111798 21 0.104732 11 0.069382 20 0.068007 19 0.065905 23 0.062943 18 0.059913 14 0.059863 24 0.059468 22 0.050216 10 0.03849 16 0.021519 17 0.020609 0 0.017833 4 0.013017 5 0.011986 6 0.011087 9 0.009383 7 0.00348 8 0.003381 1 0.003203 2 0.002351 15 9.7E-4 12 0.130465 13 0.111798 21 0.104732 11 0.069382 20 0.068007 19 0.065905 23 0.062943 18 0.059913 14 0.059863 24 0.059468 22 0.050216 10 0.03849 16 0.021519 17 0.020609 0 0.017833 4 0.013017 5 0.011986 6 0.011087 9 0.009383 7 0.00348 8 0.003381 1 0.003203 2 0.002351 15 9.7E-4 12 0.10190135372772058 21 0.0912527349083487 13 0.08695142483181934 11 0.06535612810130131 19 0.0626300036112581 18 0.060376470494144324 20 0.05809378543285367 22 0.0554686218546226 14 0.055410357443926674 23 0.05392258274707183 24 0.05188574006087572 10 0.043135600387349086 17 0.02892557921371529 0 0.025999835700013116 16 0.025773513978975978 9 0.021395375562688404 4 0.01749946966797489 5 0.01678870467724351 6 0.015372582117347818 15 0.011397352294883246 7 0.009772128575736002 8 0.009715962118604184 1 0.009554859878435958 2 0.009012719071124026 3 0.007781686810796769 __DUMMY__ 0.004625426731168833 false 1.0
280 12 0.134675 13 0.12902 21 0.088477 14 0.068669 23 0.061014 20 0.060325 11 0.059608 18 0.059273 19 0.054511 24 0.04285 10 0.042467 22 0.037159 16 0.026204 17 0.024786 0 0.022773 6 0.015241 4 0.014142 15 0.013882 5 0.013691 9 0.00757 8 0.006195 7 0.005923 1 0.005821 2 0.005725 12 0.134675 13 0.12902 21 0.088477 14 0.068669 23 0.061014 20 0.060325 11 0.059608 18 0.059273 19 0.054511 24 0.04285 10 0.042467 22 0.037159 16 0.026204 17 0.024786 0 0.022773 6 0.015241 4 0.014142 15 0.013882 5 0.013691 9 0.00757 8 0.006195 7 0.005923 1 0.005821 2 0.005725 12 0.10322266329586316 13 0.09619481011644845 21 0.07975864538424718 14 0.05876146520825256 18 0.05839591253279843 11 0.05824185411437576 19 0.05373288511587446 23 0.053261365018428306 20 0.05229124855675826 22 0.04628053275875474 10 0.04443787135919918 24 0.04172063379855589 17 0.031085062850901207 0 0.029220267638336364 16 0.027630488117424412 9 0.02094966730685223 4 0.020144487521013374 6 0.01999454779583292 5 0.019719302867848395 15 0.018233882582397956 8 0.013594544527671034 7 0.013456087220403472 1 0.013349716704060143 2 0.013162153713335614 3 0.00980822086768985 __DUMMY__ 0.003351683026676897 false 1.0
281 12 0.106791 21 0.103498 13 0.079413 19 0.076211 20 0.068391 11 0.067781 18 0.067056 22 0.063669 24 0.060861 23 0.05979 14 0.048714 10 0.042485 17 0.027482 16 0.024899 0 0.021093 9 0.020835 4 0.014294 5 0.013879 6 0.010191 3 0.004888 7 0.00466 1 0.004508 2 0.00434 8 0.004272 12 0.106791 21 0.103498 13 0.079413 19 0.076211 20 0.068391 11 0.067781 18 0.067056 22 0.063669 24 0.060861 23 0.05979 14 0.048714 10 0.042485 17 0.027482 16 0.024899 0 0.021093 9 0.020835 4 0.014294 5 0.013879 6 0.010191 3 0.004888 7 0.00466 1 0.004508 2 0.00434 8 0.004272 12 0.08704509484896429 21 0.08527458651690208 13 0.06789813537118354 19 0.06341720928670094 18 0.06038214637222102 11 0.06004599305316621 22 0.058725042673671866 20 0.05567747871824216 23 0.053963748638855 24 0.051625694676421544 14 0.045138899877887835 10 0.04191961735875172 17 0.032715436211057394 0 0.0281976592918181 9 0.02819755017986149 16 0.027210808446062388 4 0.022512517092128228 5 0.022099875576949504 6 0.019834948388402072 7 0.015375917053604145 1 0.015242812932983798 8 0.015196682261684226 2 0.014999101357358853 3 0.014789949876451993 15 0.009540495743065846 __DUMMY__ 0.0029725981956038676 false 1.0
282 12 0.094607 21 0.093945 19 0.077907 11 0.070973 22 0.065223 20 0.063671 13 0.062511 18 0.061541 24 0.058991 23 0.050696 16 0.04428 17 0.042679 10 0.039155 14 0.035967 0 0.034576 9 0.02405 4 0.014978 5 0.0144 6 0.011983 7 0.007715 1 0.007601 8 0.007568 3 0.007525 2 0.007461 12 0.094607 21 0.093945 19 0.077907 11 0.070973 22 0.065223 20 0.063671 13 0.062511 18 0.061541 24 0.058991 23 0.050696 16 0.04428 17 0.042679 10 0.039155 14 0.035967 0 0.034576 9 0.02405 4 0.014978 5 0.0144 6 0.011983 7 0.007715 1 0.007601 8 0.007568 3 0.007525 2 0.007461 21 0.08724132998866337 12 0.0832933611885174 19 0.07078978654130874 11 0.0671976131422332 22 0.06482170855779303 18 0.06155231153805327 13 0.058968360478258736 20 0.05669791713481622 24 0.05315185187816815 23 0.0480813250736467 10 0.042690636247181744 17 0.04107951462133245 14 0.0406321291756114 16 0.03853500126718336 0 0.03479670317464187 9 0.02901246810930637 4 0.018218285263485068 5 0.017709863112502045 6 0.015359016823610523 7 0.011557891165548157 8 0.011459065549985941 1 0.011388337937351542 3 0.011371754441436503 2 0.011160413636319715 15 0.008452809440799009 __DUMMY__ 0.0047805445122455865 false 1.0
283 13 0.111758 12 0.102981 14 0.086053 21 0.081242 18 0.070019 10 0.063702 11 0.063249 20 0.057745 19 0.05754 22 0.045216 23 0.042205 15 0.041531 24 0.033449 0 0.029063 17 0.028296 16 0.027064 9 0.020563 4 0.009072 5 0.009057 6 0.008844 7 0.003159 1 0.002873 8 0.002681 2 0.002639 13 0.111758 12 0.102981 14 0.086053 21 0.081242 18 0.070019 10 0.063702 11 0.063249 20 0.057745 19 0.05754 22 0.045216 23 0.042205 15 0.041531 24 0.033449 0 0.029063 17 0.028296 16 0.027064 9 0.020563 4 0.009072 5 0.009057 6 0.008844 7 0.003159 1 0.002873 8 0.002681 2 0.002639 13 0.09017043217697461 12 0.08912495499413982 21 0.07891049455791256 14 0.07139356152236541 18 0.06566829608493835 11 0.06188358629062574 19 0.056885195188659726 10 0.05682231691354305 20 0.052522223499744246 22 0.05179204908599552 23 0.043194407337669966 24 0.03778787783006935 15 0.03385037004701119 17 0.03168631925665302 0 0.031123268281091784 16 0.026982454860368824 9 0.026740779688428917 4 0.015458581235554825 5 0.01523078377731475 6 0.014284958113671033 7 0.009465607263864756 1 0.009262109864177866 8 0.009259925655142432 2 0.00901875568615411 3 0.007469048370971799 __DUMMY__ 0.004011642416956189 false 1.0
284 13 0.117137 12 0.10043 14 0.08741 21 0.074311 11 0.072084 10 0.07154 18 0.068415 19 0.049107 22 0.045138 20 0.04344 15 0.043296 0 0.041062 17 0.033156 23 0.032549 16 0.027405 9 0.024776 24 0.020186 6 0.01103 4 0.010059 5 0.009859 8 0.004554 1 0.004462 7 0.004349 2 0.004246 13 0.117137 12 0.10043 14 0.08741 21 0.074311 11 0.072084 10 0.07154 18 0.068415 19 0.049107 22 0.045138 20 0.04344 15 0.043296 0 0.041062 17 0.033156 23 0.032549 16 0.027405 9 0.024776 24 0.020186 6 0.01103 4 0.010059 5 0.009859 8 0.004554 1 0.004462 7 0.004349 2 0.004246 13 0.0915460446086953 12 0.08532252103888388 21 0.07395535305506368 14 0.07281042436935255 11 0.06558183758189867 18 0.06542190091346009 10 0.061949293389411235 19 0.05188979562671836 22 0.05183561397421651 20 0.044474607122490406 0 0.03762374653995741 23 0.03743261848975177 15 0.036566097035031705 17 0.034403040721092584 9 0.030089065569384663 24 0.030035505464393486 16 0.02667814486483563 4 0.01636486247601305 5 0.0160518009811443 6 0.015790741608775295 8 0.01074690930159769 7 0.010626535488413765 1 0.010612225868926168 2 0.010368857054637231 3 0.008092770573490105 __DUMMY__ 0.003729686282364512 false 1.0
285 12 0.111935 13 0.101805 21 0.086301 19 0.068717 18 0.06491 20 0.063601 11 0.062375 14 0.062182 10 0.048414 23 0.048277 22 0.046346 24 0.043813 16 0.041777 17 0.037939 0 0.031721 15 0.020433 9 0.01644 6 0.009798 5 0.009699 4 0.009684 1 0.00367 2 0.003478 7 0.0034 8 0.003286 12 0.111935 13 0.101805 21 0.086301 19 0.068717 18 0.06491 20 0.063601 11 0.062375 14 0.062182 10 0.048414 23 0.048277 22 0.046346 24 0.043813 16 0.041777 17 0.037939 0 0.031721 15 0.020433 9 0.01644 6 0.009798 5 0.009699 4 0.009684 1 0.00367 2 0.003478 7 0.0034 8 0.003286 12 0.09457718005813183 13 0.08474132566286814 21 0.08215981424566608 19 0.06305375733637081 18 0.06272633923585981 11 0.06189584522584609 14 0.0577463174986261 20 0.055783155273445406 22 0.05260167889004734 10 0.04825057246590339 23 0.046854042704180095 24 0.04360587527752433 17 0.036803353530425964 16 0.034995332698365786 0 0.03262348396814758 9 0.02426709193019748 15 0.021278059632260017 4 0.01578300195395335 5 0.01556397873127082 6 0.014809063923864992 1 0.00964874797819757 7 0.009600743614691213 8 0.009554722936492547 2 0.009424254407414331 3 0.007422014914385347 __DUMMY__ 0.004230245905863621 false 1.0
286 12 0.141585 13 0.128367 21 0.104478 23 0.074976 11 0.067685 14 0.063178 24 0.060005 20 0.050251 22 0.042818 19 0.042485 18 0.037287 4 0.025054 6 0.024274 5 0.0238 10 0.017605 8 0.014767 7 0.014435 2 0.014244 1 0.014152 3 0.009679 0 0.009377 17 0.009054 16 0.00707 9 0.003372 12 0.141585 13 0.128367 21 0.104478 23 0.074976 11 0.067685 14 0.063178 24 0.060005 20 0.050251 22 0.042818 19 0.042485 18 0.037287 4 0.025054 6 0.024274 5 0.0238 10 0.017605 8 0.014767 7 0.014435 2 0.014244 1 0.014152 3 0.009679 0 0.009377 17 0.009054 16 0.00707 9 0.003372 12 0.1063260374809123 13 0.09420688642860646 21 0.09090086412378344 11 0.06434694349632568 23 0.05988869504405181 14 0.056701187301562476 22 0.0522099199809872 24 0.0519990777017463 19 0.050271424753659595 18 0.04870848323484312 20 0.04825420193613432 10 0.032533756591113544 4 0.024123185070779315 5 0.02329244190443077 17 0.023104845490776727 6 0.02255200314775585 0 0.021950823966927168 9 0.019079048663437743 16 0.017912010386781835 8 0.01603815401022693 7 0.01589967712899345 1 0.01566762363374249 2 0.01554600936655032 3 0.013255328866181575 15 0.010730265621232962 __DUMMY__ 0.00450110466845652 false 1.0
287 12 0.10662 13 0.08375 21 0.082074 11 0.062083 19 0.061806 20 0.056828 23 0.055497 18 0.052014 24 0.048753 22 0.046932 16 0.041383 17 0.039001 14 0.036731 0 0.035088 10 0.034501 6 0.021593 4 0.021303 5 0.0209 9 0.018705 7 0.015727 1 0.015695 8 0.01561 2 0.015393 3 0.012013 12 0.10662 13 0.08375 21 0.082074 11 0.062083 19 0.061806 20 0.056828 23 0.055497 18 0.052014 24 0.048753 22 0.046932 16 0.041383 17 0.039001 14 0.036731 0 0.035088 10 0.034501 6 0.021593 4 0.021303 5 0.0209 9 0.018705 7 0.015727 1 0.015695 8 0.01561 2 0.015393 3 0.012013 12 0.09360297657248742 21 0.08122816445319574 13 0.07704464176611603 11 0.06272738646273221 19 0.060022107315258394 18 0.05652504489891777 22 0.05322859718363166 20 0.05241888346463805 23 0.05033478216466789 24 0.045898642457321406 14 0.04524770054056851 10 0.04165066646557881 17 0.037304295582354874 16 0.03481823306147507 0 0.03455164324265754 9 0.025123987248374446 4 0.021009799456329244 5 0.020603318550167626 6 0.02014568485664517 7 0.015073697165628355 8 0.015016216068641227 1 0.014980154508410844 2 0.014708796990756298 3 0.012676253260074355 15 0.0100603444564984 __DUMMY__ 0.003997981806872567 false 1.0
288 13 0.125483 12 0.11559 14 0.083435 21 0.07643 18 0.063432 11 0.058626 10 0.056384 20 0.055496 19 0.051633 23 0.046845 15 0.038687 22 0.03583 16 0.030837 24 0.030749 0 0.029915 17 0.029297 9 0.0148 6 0.012952 4 0.011475 5 0.011062 8 0.00543 1 0.005244 7 0.005239 2 0.005127 13 0.125483 12 0.11559 14 0.083435 21 0.07643 18 0.063432 11 0.058626 10 0.056384 20 0.055496 19 0.051633 23 0.046845 15 0.038687 22 0.03583 16 0.030837 24 0.030749 0 0.029915 17 0.029297 9 0.0148 6 0.012952 4 0.011475 5 0.011062 8 0.00543 1 0.005244 7 0.005239 2 0.005127 13 0.09606315211909171 12 0.09411778356156111 21 0.07560808262406744 14 0.06979129497743466 18 0.062367977863314605 11 0.05925493121752147 10 0.05347800848763891 19 0.05339236640966159 20 0.05068500999534243 22 0.04708762745885172 23 0.04509143933022565 24 0.035814903464143386 15 0.032857518875249785 17 0.032565718930444354 0 0.03207794506328928 16 0.028833419297105842 9 0.024527729927007975 4 0.017082327929939158 6 0.01681596654005567 5 0.01667032994356028 8 0.011175050403065033 7 0.011062330942395787 1 0.010997790502384626 2 0.010807649610812707 3 0.008008026559629046 __DUMMY__ 0.003765617966205842 false 1.0
289 12 0.106581 13 0.084342 21 0.083009 19 0.062163 11 0.061829 20 0.056844 23 0.056444 18 0.052083 24 0.048325 22 0.046689 16 0.041466 17 0.038661 14 0.036346 0 0.035476 10 0.034275 6 0.021173 4 0.020609 5 0.020561 9 0.018664 1 0.015772 7 0.01568 8 0.015617 2 0.015395 3 0.011997 12 0.106581 13 0.084342 21 0.083009 19 0.062163 11 0.061829 20 0.056844 23 0.056444 18 0.052083 24 0.048325 22 0.046689 16 0.041466 17 0.038661 14 0.036346 0 0.035476 10 0.034275 6 0.021173 4 0.020609 5 0.020561 9 0.018664 1 0.015772 7 0.01568 8 0.015617 2 0.015395 3 0.011997 12 0.0936247247752012 21 0.08164130012292155 13 0.07740177352337721 11 0.06259672999742734 19 0.06016869055092741 18 0.056563674056615595 22 0.05307735284954016 20 0.052433117872548424 23 0.05076733242547255 24 0.04567545595233907 14 0.04513010873217183 10 0.041566496308148446 17 0.037136575007064125 16 0.03485496972238011 0 0.034723137397231346 9 0.025084352236817552 4 0.02067797204870168 5 0.020434750911041424 6 0.01994529280241017 7 0.015040196709810438 8 0.015007962066040102 1 0.015003962167725668 2 0.01469830115237211 3 0.012650915006190824 15 0.010109332537351473 __DUMMY__ 0.003985523068172311 false 1.0
290 21 0.104224 12 0.09771 11 0.085539 22 0.076398 19 0.075637 13 0.072605 18 0.070113 10 0.05589 20 0.052211 14 0.048438 24 0.044963 0 0.04248 17 0.041866 23 0.039655 16 0.035034 9 0.031769 5 0.008638 4 0.008615 6 0.00572 7 8.22E-4 2 5.59E-4 3 4.94E-4 1 3.52E-4 8 2.67E-4 21 0.104224 12 0.09771 11 0.085539 22 0.076398 19 0.075637 13 0.072605 18 0.070113 10 0.05589 20 0.052211 14 0.048438 24 0.044963 0 0.04248 17 0.041866 23 0.039655 16 0.035034 9 0.031769 5 0.008638 4 0.008615 6 0.00572 7 8.22E-4 2 5.59E-4 3 4.94E-4 1 3.52E-4 8 2.67E-4 21 0.0920234725409691 12 0.08508723804681831 11 0.07495184491727802 22 0.07013558233334388 19 0.0689176968742462 18 0.06641822080793705 13 0.06546712725388552 10 0.05265090794313065 20 0.05027502349879377 14 0.048164123952882866 24 0.04482094202156106 23 0.041745556821972375 17 0.04038867343579083 0 0.039300600860696235 9 0.033234431366423005 16 0.03306163023695593 4 0.014845143579356946 5 0.014621817113405775 6 0.012088950574643015 15 0.009018538409408272 7 0.007897309734664881 8 0.007608089899511782 1 0.007573085334065043 3 0.007564380623738952 2 0.0075056192709328715 __DUMMY__ 0.004633992547587638 false 1.0
291 12 0.110399 13 0.100792 21 0.085326 19 0.06879 18 0.065344 20 0.063424 11 0.062185 14 0.062015 23 0.049161 10 0.048709 22 0.046933 24 0.043231 16 0.042187 17 0.037801 0 0.032431 15 0.021237 9 0.016537 6 0.010109 4 0.009811 5 0.009678 7 0.003628 8 0.003536 2 0.003404 1 0.003331 12 0.110399 13 0.100792 21 0.085326 19 0.06879 18 0.065344 20 0.063424 11 0.062185 14 0.062015 23 0.049161 10 0.048709 22 0.046933 24 0.043231 16 0.042187 17 0.037801 0 0.032431 15 0.021237 9 0.016537 6 0.010109 4 0.009811 5 0.009678 7 0.003628 8 0.003536 2 0.003404 1 0.003331 12 0.09390426534415246 13 0.08435784600161494 21 0.08169257890588841 19 0.06305488160746915 18 0.06292094472830577 11 0.06178824542567193 14 0.05773023156223835 20 0.055699947224001525 22 0.052831479283719576 10 0.04839268839881758 23 0.0472693691632763 24 0.043318524002110156 17 0.03671526046005807 16 0.03516486013591796 0 0.032931757694454306 9 0.02429036743478383 15 0.021698151518923188 4 0.015840259108964312 5 0.015552327466487397 6 0.014955574635644555 7 0.00970388797319596 8 0.009668777117542013 1 0.009490441861243782 2 0.009388360252654573 3 0.007414225246010996 __DUMMY__ 0.004224747446852915 false 1.0
292 12 0.103174 13 0.091873 0 0.078249 17 0.075664 11 0.069965 16 0.066748 18 0.057441 21 0.056618 10 0.05124 19 0.046869 22 0.044089 23 0.036026 9 0.029882 6 0.027339 14 0.027008 4 0.019513 5 0.019315 8 0.017965 1 0.017581 7 0.017448 20 0.017444 2 0.017252 15 0.005791 3 0.005504 12 0.103174 13 0.091873 0 0.078249 17 0.075664 11 0.069965 16 0.066748 18 0.057441 21 0.056618 10 0.05124 19 0.046869 22 0.044089 23 0.036026 9 0.029882 6 0.027339 14 0.027008 4 0.019513 5 0.019315 8 0.017965 1 0.017581 7 0.017448 20 0.017444 2 0.017252 15 0.005791 3 0.005504 12 0.08221350841941458 13 0.07128066198343744 11 0.06177563664017812 17 0.06066299465226343 0 0.06017948921531023 21 0.05940504297356445 18 0.05660570807205513 16 0.05216757016777294 19 0.049680094315437774 22 0.04934000098062553 10 0.04772732266731113 23 0.039685486221380496 9 0.033796189890144684 14 0.033060991687170437 20 0.029072484287524424 6 0.02799950213813962 4 0.02435559459769114 5 0.024033791987241062 8 0.021723603060370824 1 0.02145793278260642 7 0.02145357228014714 2 0.021119994713053425 24 0.01897868719616421 15 0.014554748691223323 3 0.01453244808832233 __DUMMY__ 0.003136942291449705 false 1.0
293 12 0.107242 21 0.102822 13 0.078991 19 0.075941 11 0.06725 20 0.067212 18 0.067076 22 0.06531 24 0.061416 23 0.059534 14 0.048458 10 0.041244 17 0.028723 16 0.024876 0 0.020786 9 0.020756 5 0.014427 4 0.014207 6 0.009981 8 0.005273 3 0.005118 2 0.004571 1 0.004403 7 0.004384 12 0.107242 21 0.102822 13 0.078991 19 0.075941 11 0.06725 20 0.067212 18 0.067076 22 0.06531 24 0.061416 23 0.059534 14 0.048458 10 0.041244 17 0.028723 16 0.024876 0 0.020786 9 0.020756 5 0.014427 4 0.014207 6 0.009981 8 0.005273 3 0.005118 2 0.004571 1 0.004403 7 0.004384 12 0.08798691928188912 21 0.0853059984551408 13 0.06860975747434896 19 0.06345626924663564 18 0.0605970266102018 11 0.06013201460869564 22 0.0594199185677952 20 0.055303911358552976 23 0.05375650073850634 24 0.0517469707810051 14 0.04556607441770832 10 0.04161387510447117 17 0.033236478379895844 0 0.028066902474614755 9 0.02788582612052669 16 0.027273291398007302 4 0.02209437671002195 5 0.02197268801616841 6 0.01938597873915855 8 0.01523801335094417 7 0.014835234426585728 1 0.014779957004921919 2 0.014692877447279531 3 0.014435526885659772 15 0.009685669547870946 __DUMMY__ 0.0029219428533935887 false 1.0
294 21 0.095089 12 0.094922 11 0.085857 13 0.077782 22 0.072072 18 0.061696 19 0.059365 10 0.055616 14 0.048452 0 0.047972 17 0.040449 20 0.037756 23 0.037199 24 0.035787 9 0.035256 16 0.028385 4 0.015776 5 0.015001 6 0.014136 7 0.00899 1 0.008723 8 0.008719 2 0.008221 3 0.006779 21 0.095089 12 0.094922 11 0.085857 13 0.077782 22 0.072072 18 0.061696 19 0.059365 10 0.055616 14 0.048452 0 0.047972 17 0.040449 20 0.037756 23 0.037199 24 0.035787 9 0.035256 16 0.028385 4 0.015776 5 0.015001 6 0.014136 7 0.00899 1 0.008723 8 0.008719 2 0.008221 3 0.006779 21 0.08699160717210884 12 0.08472628128341846 11 0.07542444399418892 13 0.07039164637182235 22 0.06727590937546045 18 0.06181261403938333 19 0.05889313271486115 10 0.05321930261283879 14 0.049252399797272264 0 0.04264381142397493 20 0.04136384791368002 23 0.0400490295586132 17 0.03926609241151208 24 0.038542895690936496 9 0.035190517913589535 16 0.028575579086182214 4 0.01876333812008998 5 0.01817331216014109 6 0.016861380915159766 7 0.012329468860223578 8 0.012181134825293437 1 0.012111575681590521 2 0.01171744596008835 3 0.010800301041652851 15 0.009232122695142151 __DUMMY__ 0.00421080838077514 false 1.0
295 21 0.098551 12 0.096606 11 0.086468 13 0.075805 22 0.073454 19 0.0661 18 0.063682 10 0.055673 14 0.048921 0 0.045867 20 0.043307 17 0.040873 24 0.040306 23 0.037766 9 0.033267 16 0.031333 4 0.013461 5 0.012705 6 0.011176 7 0.005554 8 0.00528 1 0.005032 2 0.00484 3 0.003974 21 0.098551 12 0.096606 11 0.086468 13 0.075805 22 0.073454 19 0.0661 18 0.063682 10 0.055673 14 0.048921 0 0.045867 20 0.043307 17 0.040873 24 0.040306 23 0.037766 9 0.033267 16 0.031333 4 0.013461 5 0.012705 6 0.011176 7 0.005554 8 0.00528 1 0.005032 2 0.00484 3 0.003974 21 0.08932123434842937 12 0.08599655648694077 11 0.07585882364190177 13 0.06922940768783234 22 0.0681898991653296 19 0.06316173163104691 18 0.06305369477573314 10 0.05295563376670128 14 0.049217411592597696 20 0.045036101461881146 24 0.041503676672883315 0 0.04130448937206662 23 0.040624190697239174 17 0.03956668839412461 9 0.03380628595615743 16 0.030566082708647354 4 0.01719945780399551 5 0.016619852380431056 6 0.014910442271742697 7 0.01018598942181672 8 0.010031720493922489 1 0.009846680422601138 2 0.009601930810332816 3 0.00904046269919686 15 0.008891825335552585 __DUMMY__ 0.004279730000895546 false 1.0
296 0 0.095487 17 0.089997 16 0.075489 11 0.072708 22 0.059386 18 0.056955 10 0.055174 12 0.054866 9 0.050257 19 0.049354 21 0.042437 13 0.034814 6 0.034522 8 0.02897 7 0.028612 1 0.028502 4 0.028462 2 0.02835 5 0.028115 23 0.02371 3 0.020114 20 0.005776 15 0.005242 14 0.002699 0 0.095487 17 0.089997 16 0.075489 11 0.072708 22 0.059386 18 0.056955 10 0.055174 12 0.054866 9 0.050257 19 0.049354 21 0.042437 13 0.034814 6 0.034522 8 0.02897 7 0.028612 1 0.028502 4 0.028462 2 0.02835 5 0.028115 23 0.02371 3 0.020114 20 0.005776 15 0.005242 14 0.002699 0 0.07613387631431866 17 0.07538749921084947 16 0.06153339593110848 11 0.059305938853949976 22 0.0569414306504369 18 0.05404529083866847 9 0.0501760345647228 10 0.04848024559041067 19 0.047406265210566546 12 0.04473139558852147 21 0.042231104408282365 6 0.03771825027320604 4 0.0341355924452418 8 0.0340127544211045 7 0.033803941813830445 5 0.03372579191431562 1 0.03370545381604219 2 0.03335722901965751 23 0.03084594353283255 13 0.028202601171073396 3 0.028114457983299 20 0.01590896423194933 24 0.014090758837929067 15 0.013571933090514786 14 0.010130007861258014 __DUMMY__ 0.002303842425910006 false 1.0
297 0 0.082367 17 0.075362 9 0.066619 22 0.062842 11 0.056352 10 0.052197 18 0.051508 16 0.048388 6 0.048241 8 0.045723 7 0.04541 4 0.045105 1 0.045002 2 0.044692 5 0.044248 3 0.040283 19 0.036227 21 0.034773 12 0.025495 23 0.023924 13 0.01151 15 0.005876 24 0.005788 14 0.002068 0 0.082367 17 0.075362 9 0.066619 22 0.062842 11 0.056352 10 0.052197 18 0.051508 16 0.048388 6 0.048241 8 0.045723 7 0.04541 4 0.045105 1 0.045002 2 0.044692 5 0.044248 3 0.040283 19 0.036227 21 0.034773 12 0.025495 23 0.023924 13 0.01151 15 0.005876 24 0.005788 14 0.002068 0 0.07068813951953837 17 0.06768571846652059 9 0.06184453338179225 22 0.060472355758831545 18 0.05088839349066188 11 0.05075242412141254 10 0.04782148223708948 6 0.04651959413326045 16 0.04496717519841832 4 0.044640558016764816 8 0.044618185584152883 7 0.04443398453158754 1 0.04417797525511771 5 0.04396528930344378 2 0.0437236314742156 3 0.0407347381015773 19 0.03869273179466812 21 0.03742554966772571 23 0.029683755253813573 12 0.025549563692352006 24 0.01585787475080627 15 0.012455340674277804 13 0.012384261372071263 20 0.009820150755379715 14 0.0082354306920874 __DUMMY__ 0.0019611627724331884 false 1.0
298 13 0.12671 12 0.10678 14 0.09632 21 0.075692 18 0.067672 10 0.066276 11 0.060339 20 0.053706 15 0.050008 19 0.048794 23 0.040775 22 0.038113 0 0.028522 24 0.027349 17 0.024359 16 0.022344 9 0.019094 6 0.010755 4 0.010213 5 0.009832 8 0.004218 7 0.00414 1 0.004117 2 0.003872 13 0.12671 12 0.10678 14 0.09632 21 0.075692 18 0.067672 10 0.066276 11 0.060339 20 0.053706 15 0.050008 19 0.048794 23 0.040775 22 0.038113 0 0.028522 24 0.027349 17 0.024359 16 0.022344 9 0.019094 6 0.010755 4 0.010213 5 0.009832 8 0.004218 7 0.00414 1 0.004117 2 0.003872 13 0.09656588411740046 12 0.08877909299706718 14 0.07747199509667324 21 0.07462353202656456 18 0.06492484717649864 11 0.05941051216601971 10 0.058826810981847895 19 0.05201561768567258 20 0.05032034455546446 22 0.04791953431380503 23 0.04198108771333699 15 0.04044406655082872 24 0.03421409769121059 0 0.030773481384007064 17 0.029846056561676857 9 0.026640106903698016 16 0.02448627394166754 4 0.016311298541413978 5 0.01591754558242818 6 0.015511486274091808 8 0.010443501850429075 7 0.010381509816200351 1 0.010303497191751344 2 0.01005421389082849 3 0.007975954890313096 __DUMMY__ 0.0038576500991041388 false 1.0
299 21 0.10236 12 0.09733 19 0.087795 11 0.074779 22 0.071581 18 0.069732 20 0.069555 13 0.062077 24 0.060629 23 0.050905 16 0.046419 17 0.04357 10 0.043545 14 0.039351 0 0.033726 9 0.024147 4 0.008433 5 0.007996 6 0.004511 3 9.82E-4 7 3.62E-4 8 1.53E-4 15 4.4E-5 2 1.6E-5 21 0.10236 12 0.09733 19 0.087795 11 0.074779 22 0.071581 18 0.069732 20 0.069555 13 0.062077 24 0.060629 23 0.050905 16 0.046419 17 0.04357 10 0.043545 14 0.039351 0 0.033726 9 0.024147 4 0.008433 5 0.007996 6 0.004511 3 9.82E-4 7 3.62E-4 8 1.53E-4 15 4.4E-5 2 1.6E-5 21 0.09071567219890767 12 0.08308207385036179 19 0.07650652142604955 11 0.06859844310577659 22 0.06799820537343967 18 0.06647839537675633 20 0.060492557812765815 13 0.057410713860575585 24 0.05415734069538018 23 0.047884770099723806 10 0.045590430270804526 14 0.04246095859444667 17 0.04180622388306981 16 0.040077940671387285 0 0.034266970619578396 9 0.02928626500288313 4 0.014743050931224027 5 0.014300515996789238 6 0.01132176650814707 15 0.00958355883556578 3 0.008128178030820759 7 0.007747503878038974 8 0.007617314775420095 1 0.0074601661078488495 2 0.007304096744222552 __DUMMY__ 0.004980365350015904 false 1.0
900 21 0.0802009021583443 12 0.07921983694027904 13 0.06792230699079672 11 0.06504553828108067 22 0.06062910916366166 18 0.060171035112472855 19 0.05745412778227444 14 0.05129256549140462 10 0.04896642530154893 20 0.04564514184536982 23 0.04385803031371787 24 0.0418797314966719 17 0.036203158479874084 0 0.03566814327164036 9 0.032559177707456956 16 0.027987810655291843 4 0.020997177983282368 5 0.020577004809197413 6 0.01899739145583143 15 0.01748154158828867 __DUMMY__ 0.015030495737983313 7 0.014781850583416285 8 0.014753838818987876 1 0.01462712102991054 2 0.014360710501463276 3 0.013689826499752818 false 0.0
901 21 0.0802009021583443 12 0.07921983694027904 13 0.06792230699079672 11 0.06504553828108067 22 0.06062910916366166 18 0.060171035112472855 19 0.05745412778227444 14 0.05129256549140462 10 0.04896642530154893 20 0.04564514184536982 23 0.04385803031371787 24 0.0418797314966719 17 0.036203158479874084 0 0.03566814327164036 9 0.032559177707456956 16 0.027987810655291843 4 0.020997177983282368 5 0.020577004809197413 6 0.01899739145583143 15 0.01748154158828867 __DUMMY__ 0.015030495737983313 7 0.014781850583416285 8 0.014753838818987876 1 0.01462712102991054 2 0.014360710501463276 3 0.013689826499752818 false 0.0
902 21 0.08172769924213091 12 0.0780622417280956 11 0.06543695185577189 13 0.06480763433091863 22 0.06244576370327171 18 0.06058581058040729 19 0.059697040947426436 14 0.049924914984420844 10 0.04808860908881022 20 0.04700843754933891 23 0.04416860457177212 24 0.04394870451660108 17 0.03669913799411667 0 0.03510962636572761 9 0.03271568436314428 16 0.02893446888668795 4 0.02054548965191621 5 0.02011119873505202 6 0.01821238579931959 15 0.016546034555949746 __DUMMY__ 0.01556510693086488 7 0.014223426834467945 8 0.0141724085086306 1 0.014042480308006285 2 0.013751145696395383 3 0.013468992270755079 false 0.0
903 21 0.07452183720674299 19 0.07218018622310036 18 0.06533974106957115 20 0.06532062395925685 12 0.06085402068544779 22 0.06037163827997635 24 0.058125818879619005 11 0.052302472677240114 23 0.04969978531517207 14 0.04562357903177456 13 0.04346452721264862 10 0.04297948522830217 17 0.03842623504302296 16 0.03826630005426036 9 0.03028041197558485 15 0.028412840150774218 0 0.025500542681189897 4 0.020351014178264928 5 0.019862717989448494 __DUMMY__ 0.01685388845081798 3 0.016465051875978128 6 0.01639880105639807 7 0.014809592936148691 8 0.014773906595142387 1 0.014563541979289983 2 0.0142514392648271 false 0.0
904 21 0.08020024056592859 12 0.07922099179547333 13 0.06792473677369454 11 0.06504557620247087 22 0.06062815963406203 18 0.06017103444550066 19 0.057452874277779904 14 0.05129373255821172 10 0.04896724922528471 20 0.04564442996072974 23 0.043858024231781916 24 0.04187852333207053 17 0.03620299091261278 0 0.03566868855238588 9 0.03255922343038938 16 0.02798729903314271 4 0.02099758235209458 5 0.02057741679496561 6 0.018998012609474188 15 0.017482257766638778 __DUMMY__ 0.015025538050504869 7 0.014782298363486582 8 0.014754302075453697 1 0.014627585873082827 2 0.014361191009666128 3 0.01369004017311333 false 0.0
905 21 0.08020024056592859 12 0.07922099179547333 13 0.06792473677369454 11 0.06504557620247085 22 0.06062815963406202 18 0.06017103444550066 19 0.05745287427777991 14 0.051293732558211715 10 0.04896724922528471 20 0.04564442996072973 23 0.043858024231781916 24 0.041878523332070525 17 0.03620299091261279 0 0.03566868855238588 9 0.032559223430389375 16 0.027987299033142708 4 0.020997582352094583 5 0.020577416794965605 6 0.01899801260947418 15 0.01748225776663878 __DUMMY__ 0.01502553805050487 7 0.014782298363486577 8 0.014754302075453701 1 0.014627585873082823 2 0.014361191009666128 3 0.013690040173113333 false 0.0
906 21 0.08069507683057435 22 0.07013304088564208 11 0.0654311216195546 19 0.06302906262561404 12 0.06258098145980057 18 0.06124213544732949 24 0.04824316614633012 10 0.046620421704473496 20 0.04618804439196809 13 0.04386738592648109 23 0.04306422794930865 14 0.04126959668715781 17 0.03966889761830943 9 0.03891446151643334 0 0.03598522741861785 16 0.029707926269153022 4 0.02360696618448304 5 0.023107255469279213 6 0.020008923038444905 3 0.018252191146559297 7 0.01746529482049613 8 0.017363192202403614 1 0.017189658149917984 2 0.016798559775887394 __DUMMY__ 0.015134013754383106 15 0.014433170961397365 false 0.0
907 21 0.08164633684693738 12 0.0755561629658594 11 0.06312581292312563 22 0.06282665718101432 19 0.06158071022629301 13 0.05967133216318694 18 0.05950758870077211 20 0.04952675821309507 24 0.04806598473555896 14 0.04686647753687973 23 0.04632912431906795 10 0.04452691139319259 17 0.036789138091164256 0 0.032948758612105944 9 0.03224875666682936 16 0.03028811479396034 4 0.02155764025045879 5 0.021103579967227885 6 0.0188634699681234 15 0.015961468391405425 __DUMMY__ 0.015713265042195747 7 0.015267457095694985 8 0.01522000235903182 1 0.015066756762705526 3 0.014972338265875365 2 0.014769396528238074 false 0.0
908 12 0.08081748182714671 13 0.07741574257409925 21 0.07618373907590427 18 0.06123659948524109 11 0.06111143902700579 14 0.060950535711596816 22 0.05506357665635922 19 0.054054749258623365 10 0.051762423639946084 20 0.046531912080416245 23 0.043172763704452694 24 0.03871582299117562 17 0.03381488134082009 0 0.03343447545343618 9 0.030693796625751134 15 0.02748405667534853 16 0.026237085762004446 4 0.020163609373790903 5 0.019779253163110428 6 0.018677237778617472 8 0.01419671637987419 7 0.014154687438252057 1 0.014046144078643177 __DUMMY__ 0.013909806336343486 2 0.013811668366109349 3 0.012579795195931467 false 0.0
909 12 0.08061139044270862 13 0.07802533550130915 21 0.07582218932285664 14 0.062346124750508373 18 0.0613118271620128 11 0.05999474118705992 22 0.054294996147311134 19 0.054026152625712025 10 0.05155155746863648 20 0.04754926057408381 23 0.04370942104994176 24 0.039365968548449294 17 0.032997284125138006 0 0.032126197744214616 9 0.030146674516707262 15 0.029262867462132133 16 0.025848363212190875 4 0.020118802313892264 5 0.019738957971947094 6 0.018557800166744493 8 0.014138861336015766 7 0.014091522289309454 __DUMMY__ 0.014013364575890669 1 0.013983192251701833 2 0.013754759529706725 3 0.012612387723818721 false 0.0
910 12 0.08198993457732892 21 0.07809564725357805 13 0.07257908579193355 11 0.06460640222348686 18 0.05966910477263513 22 0.05773762652160573 19 0.05541845926319183 14 0.05227011250147009 10 0.04939672400152466 20 0.044508049852032765 23 0.0439769720956516 24 0.039230481437165475 0 0.03685266147383387 17 0.03669668728188803 9 0.031384240518285894 16 0.02875842854009 4 0.021103307316956664 5 0.020698152313808824 6 0.019760300813586432 15 0.018425454356969247 8 0.015108964319350663 7 0.015107243850943931 1 0.014976912666907396 2 0.014736081359393907 __DUMMY__ 0.013606101762398251 3 0.013306863133982225 false 0.0
911 12 0.07970295753488262 21 0.07650583115086963 13 0.07573540999872959 11 0.06207738119335035 18 0.061381998604896126 14 0.06004173700137757 22 0.056146601773582466 19 0.05397119243380818 10 0.05248413013727482 20 0.04570305349885604 23 0.04273511376498524 24 0.038462984517752256 0 0.034051142677357114 17 0.0338043087293199 9 0.03167678759584497 15 0.026356757877121897 16 0.025560784345584214 4 0.020472354817133796 5 0.020086767024239578 6 0.01884629271282957 8 0.01445365252881334 7 0.014433639600403027 1 0.014315862060926058 2 0.014074444645267338 __DUMMY__ 0.013910092728803376 3 0.013008721045991142 false 0.0
912 12 0.08607056885454746 13 0.079680271100477 21 0.07831275327242189 11 0.06144665610819518 18 0.05992706196579062 14 0.058207101485641975 19 0.0553000078581116 22 0.05405963910568098 10 0.04875875073718736 20 0.04849704378716619 23 0.04575608924881588 24 0.04082389171783938 17 0.03361676950647033 0 0.03256252281340603 9 0.028149524188121847 16 0.027640193145875878 15 0.023180602631218024 4 0.019902252796358825 5 0.019517899531061592 6 0.018585742922909255 8 0.013765240364667782 7 0.01373436952305891 1 0.013619747355076298 __DUMMY__ 0.01360409782534426 2 0.01340690751121396 3 0.011874294643341407 false 0.0
913 12 0.07963192321110098 21 0.07923826014344211 13 0.06954825018835399 11 0.06490886308153382 18 0.060191451097316946 22 0.059745695724245276 19 0.056235767828967616 14 0.05213696984056741 10 0.049857494780309305 20 0.04474340627198638 23 0.04336962268393643 24 0.04041269467684947 0 0.0362508454198567 17 0.036124774812133914 9 0.03271997586826228 16 0.02754409615067238 4 0.02116458361642195 5 0.020752495464056348 6 0.019362036080865272 15 0.018117292110184764 7 0.01502736621255837 8 0.015011402387675312 1 0.014882838716733612 __DUMMY__ 0.014668792754101288 2 0.014621870429837737 3 0.013731230448030204 false 0.0
914 12 0.08199545069452355 21 0.07875461614201534 13 0.07353340169830404 11 0.06136448014366647 18 0.05881582636760598 22 0.05642152940952286 19 0.05581174899086717 14 0.05516392549238207 20 0.0476144351650448 10 0.046755533752282176 23 0.046371166598795345 24 0.04280534216167485 17 0.03389040283303263 0 0.03221221881029954 9 0.029547737234267884 16 0.027313547905450708 15 0.02167274673189487 4 0.02121717972409651 5 0.02080071284881137 6 0.019498267599130797 __DUMMY__ 0.015186589778462975 8 0.015040325157494065 7 0.01503873872551448 1 0.014896121449368657 2 0.01465096510084236 3 0.013626989484648397 false 0.0
915 12 0.08511497718641929 21 0.07823280520323822 13 0.07788686258834639 11 0.06111010265666278 18 0.05975737409648249 14 0.057056095344854896 19 0.0558171590713009 22 0.05434786371351205 20 0.04896644631586506 10 0.048099926014857 23 0.046170610797701024 24 0.041697700734610446 17 0.0337502784206873 0 0.032285464693348975 9 0.028248104525873976 16 0.027971030172062337 15 0.02271085363680709 4 0.020199966027632313 5 0.019813872156707532 6 0.01877743372127376 8 0.014081635798434702 7 0.014056506088854438 1 0.013936620925498877 __DUMMY__ 0.013844997564166003 2 0.013724524918768992 3 0.012340787626033066 false 0.0
916 12 0.08529874241805442 21 0.07904984432775632 13 0.07844582993553374 11 0.062122086217777726 18 0.06025559471827443 14 0.05810020442948278 19 0.05600737599201305 22 0.05520012715317585 10 0.04902125874686118 20 0.048512668731719936 23 0.045334851750968526 24 0.041218526935489656 17 0.033789365594889716 0 0.03268080933707514 9 0.02860309318955623 16 0.02765828339589313 15 0.022982598249079493 4 0.019618730366348668 5 0.01923173105532336 6 0.01813506995645735 __DUMMY__ 0.013909431053719773 8 0.013411462318860371 7 0.013388756048448452 1 0.013267853260398926 2 0.013048811903212807 3 0.011706892913629016 false 0.0
917 21 0.08190180106454656 12 0.07438678311090828 11 0.06451268121258803 22 0.06404495857383764 19 0.062141881204125615 18 0.06110910887790724 13 0.05924825180437762 20 0.048964911774872805 14 0.04800843974803381 10 0.04697554763673878 24 0.04662538143631703 23 0.04464135971378824 17 0.03727651311672372 0 0.03405680283578484 9 0.033261598608078924 16 0.030085773081746574 4 0.020624895711969272 5 0.02017716719701803 6 0.01783715411145966 15 0.016760673719448043 __DUMMY__ 0.016750559968505593 7 0.014316589108900392 8 0.014251371237440838 3 0.014124575679570732 1 0.014111085792180207 2 0.013804133673131679 false 0.0
918 12 0.08077410870092491 13 0.07823025979856968 21 0.07582033213594105 14 0.06240652777382413 18 0.061286876804301275 11 0.0599594617881906 22 0.05420411826935513 19 0.05398663193084649 10 0.051519388784671716 20 0.04757053225660324 23 0.04375903062762813 24 0.03935141582174744 17 0.03297732714537917 0 0.03210553103358618 9 0.03008147220512632 15 0.029279910571939183 16 0.02585522690118598 4 0.02012038744771739 5 0.019740850311059457 6 0.018575006272963594 8 0.014141147164455437 7 0.014092656405116212 1 0.013985117716776373 __DUMMY__ 0.013825168985203364 2 0.013757321065442557 3 0.012594192081444926 false 0.0
919 21 0.07393496943809633 19 0.07101675887037741 18 0.0636928886250902 22 0.06343761027671395 12 0.05980382704936645 11 0.0572651883596611 20 0.05690068540841391 24 0.052047885739245736 23 0.046717907149298105 10 0.04416198283355345 17 0.04380775918737203 16 0.04159753596038578 13 0.04018691947318758 14 0.039311679914492935 0 0.03366236488159979 9 0.033602901584391554 15 0.022239956631104518 4 0.021154057345238935 5 0.020692583620479345 6 0.017932624495889636 __DUMMY__ 0.0170897002281877 3 0.016790907095098607 7 0.01595818028469873 8 0.015900697072178553 1 0.015720227655095693 2 0.015372200820781869 false 0.0
920 12 0.08549299376167634 13 0.079846762913626 21 0.07780263895963219 11 0.061653973943904095 18 0.06013403764539506 14 0.05872291701753919 19 0.0547659670017926 22 0.05414192137405449 10 0.04954023221590058 20 0.04760789948287764 23 0.045016917597927586 24 0.03980683136661379 17 0.03391139948098018 0 0.033233650907092696 9 0.02868514651002868 16 0.027487507042326994 15 0.02378658120736428 4 0.01991857649423116 5 0.019536298443359294 6 0.01867176324140079 8 0.013841286267540226 7 0.013805250381179253 1 0.013696123810360762 __DUMMY__ 0.013535307268056606 2 0.013478180086798408 3 0.011879835578341054 false 0.0
921 21 0.07434233136394128 19 0.07217444635701051 20 0.06608656568941929 18 0.0653479148393734 12 0.061282570869257647 22 0.05972390240072908 24 0.05859936987260935 11 0.05168819507188531 23 0.05013909388376211 14 0.04632391082476122 13 0.04427571876203781 10 0.042820033300514204 16 0.038214397849290545 17 0.038037986900352726 9 0.029863642021445185 15 0.029195547460348564 0 0.02487261435309904 4 0.020404842172122285 5 0.019923046220671047 3 0.016539925277148305 6 0.016454948579978194 __DUMMY__ 0.015026191412382095 7 0.014867244276566828 8 0.014838823736476617 1 0.01462990010259113 2 0.01432683640222588 false 0.0
922 18 0.07473780862864268 10 0.06889080963763677 14 0.06845114334136253 15 0.05713313759893675 22 0.05555097520254212 19 0.05546973945639779 21 0.05470783303142013 13 0.050363492649223955 11 0.049152664684068016 20 0.047785952006812384 9 0.043497967217373514 12 0.04104247539722211 17 0.039405981141080224 0 0.03603789823308523 23 0.033583633652916264 24 0.03139121306689257 16 0.02785115478568507 4 0.021948897154906888 5 0.021590187851209044 6 0.019304028061094824 3 0.018612883545686795 8 0.017913247271267693 7 0.01786754971613479 1 0.01771171507954925 2 0.017419921329109713 __DUMMY__ 0.012577690259742775 false 0.0
923 21 0.07437492230122417 19 0.07008793011116157 22 0.06521960138880029 18 0.06488385229426441 20 0.059866716362190264 24 0.05657172097452407 11 0.05523350677160341 12 0.05460008091883653 23 0.047465568529954566 10 0.044423352832394736 14 0.04329211294769685 17 0.03937086180981691 13 0.03648431574846881 16 0.03593044929691414 9 0.034798020176401434 0 0.02803488067853386 15 0.02666171411134424 4 0.02248001311584958 5 0.021972138458978895 3 0.018864694073896793 6 0.018172092927142697 7 0.016870768311628346 8 0.016811237738339514 1 0.016574255137915845 2 0.016225342061759598 __DUMMY__ 0.014729850920358434 false 0.0
924 21 0.07252914788720603 22 0.06744780504796258 19 0.06355409557229298 18 0.06288592587833021 11 0.05870260097522791 12 0.05166047460748614 20 0.050259271800626185 24 0.05025216668790641 10 0.04647332963196205 23 0.04381025800496488 14 0.04092063315763504 17 0.04052268333576892 9 0.039734137057925334 13 0.0349895535346506 0 0.03341270854039155 16 0.03188946994655356 4 0.02564981722122366 5 0.025140357793755123 15 0.02321367670080791 6 0.021785261817069353 3 0.021672515867771133 7 0.020207978707219968 8 0.02015361447043576 1 0.01991762818899221 2 0.019541034210300866 __DUMMY__ 0.013673853355533488 false 0.0
925 18 0.05782211023180127 19 0.054695723099001343 17 0.05234430285887666 22 0.05063008995057312 16 0.04714858027662935 20 0.045502810893667964 21 0.044286621327102024 15 0.04338982108259274 10 0.04301482027064863 23 0.04204638099103913 9 0.041305629842537495 0 0.040906963524038546 24 0.03987497772384313 11 0.039352986987008155 14 0.03596882337570132 12 0.03420135489873758 4 0.03241515354141606 5 0.03197156644051985 6 0.0316595533960299 8 0.03083102888817997 7 0.03073139859548706 1 0.030541396266936364 2 0.030202343841379185 3 0.030056066204086775 13 0.026968520203594738 __DUMMY__ 0.012130975288571733 false 0.0
926 19 0.07384591275841786 21 0.07128438685569541 20 0.06940696953126207 18 0.06673036157769754 24 0.06009368873375294 22 0.05830731240141073 12 0.057340839821320676 23 0.050926725322608085 11 0.048552174427987316 14 0.04576872429263714 10 0.042689355594476563 13 0.040502123169575806 16 0.04006027853808632 17 0.03854805973694997 15 0.03255411004504849 9 0.02942362305100283 0 0.0233675345349329 4 0.02050986987987926 5 0.02002312031184061 3 0.017253257421259133 6 0.01640618765153599 __DUMMY__ 0.01621045241527147 7 0.015250978997182476 8 0.015233987557645325 1 0.015001381734019013 2 0.01470858363850392 false 0.0
927 19 0.07384591275841786 21 0.07128438685569541 20 0.06940696953126207 18 0.06673036157769754 24 0.06009368873375294 22 0.05830731240141073 12 0.057340839821320676 23 0.050926725322608085 11 0.048552174427987316 14 0.04576872429263714 10 0.042689355594476563 13 0.040502123169575806 16 0.04006027853808632 17 0.03854805973694997 15 0.03255411004504849 9 0.02942362305100283 0 0.0233675345349329 4 0.02050986987987926 5 0.02002312031184061 3 0.017253257421259133 6 0.01640618765153599 __DUMMY__ 0.01621045241527147 7 0.015250978997182476 8 0.015233987557645325 1 0.015001381734019013 2 0.01470858363850392 false 0.0
928 18 0.07816918934321113 10 0.0738625088532216 22 0.06479582728178594 21 0.06202824296386514 11 0.06117872463432228 19 0.06000063081368355 14 0.05459215984834344 9 0.048787774646083686 0 0.0475059237682738 17 0.04572733645174329 12 0.04520291902560705 13 0.04493271613785654 20 0.04138052751761066 15 0.035341872883113634 16 0.029621433375751956 23 0.02922978260351294 24 0.02641648623033776 4 0.020540709953392026 5 0.02015988909389154 6 0.01802743692482169 3 0.016379495237122284 7 0.016052612757575406 8 0.016038887136102468 1 0.015904439886198843 2 0.015560267174416786 __DUMMY__ 0.012562205458154669 false 0.0
929 21 0.07455519958734068 19 0.07214189032188885 18 0.06532404004512078 20 0.06525464326280014 12 0.06091361394272565 22 0.06038798990862554 24 0.05807831778530652 11 0.05235508514963955 23 0.04967919430108429 14 0.045632532181095774 13 0.04353151655583482 10 0.042996644106188184 17 0.03842335751178873 16 0.03823500097529759 9 0.030292083490266266 15 0.02836235324523301 0 0.025537534563250447 4 0.02035048775098316 5 0.0198623216799243 __DUMMY__ 0.01684632951105843 3 0.0164533325513273 6 0.016403199686063616 7 0.01480577095439288 8 0.014769937510940356 1 0.014559867344847962 2 0.014247756076975138 false 0.0
930 17 0.06405730018281858 16 0.05746525135752507 19 0.055559468962974944 18 0.055216692199953475 22 0.05402617380840021 0 0.053844017886113364 11 0.045574957202390125 9 0.04418296821675328 21 0.04308838693132596 10 0.040516792998549156 23 0.03913013461720763 20 0.03686301210021999 12 0.03519926888868222 24 0.03436493125243923 6 0.03427011409776836 4 0.03351340741220222 5 0.03304500474685625 8 0.032785494741368874 7 0.03266740278495107 1 0.03252537096475766 2 0.032078118189265835 3 0.030327442088110734 15 0.028705008212599723 13 0.019370146815942787 14 0.019125877714089252 __DUMMY__ 0.012497255626734004 false 0.0
931 18 0.06300234436894472 19 0.05948724128083051 21 0.05502662909240488 20 0.053941191909003885 22 0.051879000534272565 14 0.05053442412636834 10 0.04777438580100448 15 0.046344229377077335 12 0.04500069438066711 23 0.044927667481178955 24 0.044701777390618674 11 0.042887931339060964 17 0.04214959998617339 13 0.041019703921489535 16 0.03866160165564832 9 0.0361293482196772 0 0.031345295792577256 4 0.026439630378783552 5 0.026018863979085847 6 0.024185742719965417 3 0.02335855453339858 8 0.02296488352255812 7 0.022913078554330554 1 0.02272982151515606 2 0.02241964311702466 __DUMMY__ 0.01415671502269906 false 0.0
932 18 0.06277235244727036 19 0.06250497692479316 21 0.056256249926861804 20 0.05514602077655009 22 0.053089194115863644 24 0.046378458383764316 23 0.04601979203816502 10 0.04591979652274899 14 0.0456637940952358 12 0.04565577099257544 17 0.04414758293552748 11 0.044015701650122835 15 0.04201260079517453 16 0.041938955797582514 13 0.037767364433436666 9 0.03548330327936668 0 0.032420124131851635 4 0.02608229738950164 5 0.025651807049312168 6 0.023818993960792456 3 0.02303469407129552 8 0.0226169988854506 7 0.022586845358146528 1 0.02239215367091897 2 0.022070620729926944 __DUMMY__ 0.01455354963776417 false 0.0
933 17 0.05824642911078918 22 0.05443148049218988 18 0.05251793737540115 0 0.05162961212790859 19 0.05116527861197703 16 0.048894541094392396 9 0.04718988866413295 11 0.04415450585559502 21 0.04347974803717451 10 0.040608424298151514 23 0.04025971653922269 6 0.037728510787728015 4 0.03755606779902922 5 0.0370882374397912 8 0.036489699796336525 7 0.036430096714892925 1 0.036299299255995655 2 0.03582254415349657 3 0.03467958220270499 24 0.03369128865261901 20 0.03323056260101997 12 0.032996433181001046 15 0.02399217674947323 14 0.01855132290643757 13 0.018390239423005893 __DUMMY__ 0.014476376129533236 false 0.0
934 17 0.05780497921761454 19 0.05743816634568668 18 0.056099627806403575 22 0.05553990103839302 16 0.05147993795502167 0 0.04941725304385031 21 0.048050784480092874 11 0.04686690968618017 9 0.04357000200712879 10 0.0421587333748519 23 0.0411120764680323 20 0.039387928347072415 12 0.03786439251618616 24 0.03664241148756315 4 0.03282877637922742 6 0.03256057715979885 5 0.032363546580794114 8 0.031180018090175114 7 0.031122787006403526 1 0.030961177473403195 2 0.0305345435713104 3 0.02972041924183269 15 0.025505194215977238 14 0.022209837339737533 13 0.022033745258519564 __DUMMY__ 0.015546273908743047 false 0.0
935 17 0.058615390767131244 22 0.05407949499595687 18 0.052572432597476335 0 0.05166140341724802 19 0.05155173105384329 16 0.049748538136481946 9 0.04639148285092513 11 0.04438350085495454 21 0.04376319146273522 23 0.040433738442435314 10 0.040294349588717505 6 0.03726757130820142 4 0.03698543225598518 5 0.03651870554315301 8 0.03591457247942414 7 0.03585449681941325 1 0.035723796820135593 2 0.035250423299570094 12 0.03424440778579971 3 0.03396110554651503 24 0.0337866229624715 20 0.03371470128011934 15 0.024050967570014313 13 0.019400823360556037 14 0.018652323087867323 __DUMMY__ 0.01517879571286862 false 0.0
936 17 0.06091541861291852 0 0.05475115781397843 22 0.05360433296751571 18 0.05166626315736093 16 0.05139469160392088 19 0.04982347490537719 9 0.04679628270131073 11 0.045466638929350184 21 0.04253564268850181 10 0.04027446453915193 23 0.039450232604267464 6 0.038293006447792016 4 0.037405037619875445 5 0.03694324907961381 8 0.03660548616378832 7 0.036530360427729655 1 0.03641263198237111 2 0.03594135463618948 12 0.03534658876163318 3 0.0339742854864511 24 0.031024619568572394 20 0.03071896713923049 15 0.022879947556623516 13 0.020495821067663705 14 0.016978260533964444 __DUMMY__ 0.013771783004847715 false 0.0
937 17 0.05780320544571321 19 0.05742038207069659 18 0.05608833535817736 22 0.05553468012314975 16 0.051471015519544396 0 0.049419185773705486 21 0.04803765638713878 11 0.046856438063604046 9 0.04357760609511001 10 0.042151869349485456 23 0.04111037607240894 20 0.039372953448163925 12 0.037850426856564666 24 0.03663624138158915 4 0.032840884363542544 6 0.032573629553886686 5 0.03237565279139616 8 0.03119364805692284 7 0.031136429708896927 1 0.030974905248023866 2 0.030548127047762642 3 0.029733421867189098 15 0.02550158405990643 14 0.022200218627088673 13 0.022023300845071207 __DUMMY__ 0.015567825885261026 false 0.0
938 17 0.05780320544571321 19 0.05742038207069659 18 0.05608833535817736 22 0.05553468012314975 16 0.051471015519544396 0 0.049419185773705486 21 0.04803765638713878 11 0.046856438063604046 9 0.04357760609511001 10 0.042151869349485456 23 0.04111037607240894 20 0.039372953448163925 12 0.037850426856564666 24 0.03663624138158915 4 0.032840884363542544 6 0.032573629553886686 5 0.03237565279139616 8 0.03119364805692284 7 0.031136429708896927 1 0.030974905248023866 2 0.030548127047762642 3 0.029733421867189098 15 0.02550158405990643 14 0.022200218627088673 13 0.022023300845071207 __DUMMY__ 0.015567825885261026 false 0.0
939 17 0.06403534947480512 0 0.058714225194410406 22 0.05386594075176395 16 0.05255208202676923 18 0.05106015397058723 9 0.049325042979732 19 0.047371227682305964 11 0.04544869516954912 10 0.040800556986828204 6 0.04026549310647004 21 0.039704489265762984 4 0.03885230023019457 8 0.03852314214528735 7 0.03843327145971365 5 0.03837965876194586 1 0.038325440264372214 2 0.037817548281164654 23 0.03734109438026924 3 0.035371580946458786 12 0.032552132852300485 24 0.027654633528074356 20 0.02648354156506456 15 0.022216426507786737 13 0.01799681676773404 14 0.01422731876695753 __DUMMY__ 0.01268183693369184 false 0.0
940 17 0.05780869485467685 19 0.05741058002970451 18 0.05608325818269706 22 0.055532762139156366 16 0.05147170621414304 0 0.04942760522597284 21 0.04802952547129945 11 0.04685482001102142 9 0.04358272996401778 10 0.04215033399313185 23 0.041106575964722246 20 0.039360597294428284 12 0.0378452110403865 24 0.036627573300291885 4 0.032846323955487776 6 0.03258064936377241 5 0.03238108835867974 8 0.031200336182780206 7 0.031143087523800236 1 0.030981614519086553 2 0.030554762817630948 3 0.029738530449323772 15 0.025498337214119395 14 0.022192589175695505 13 0.022019379582589056 __DUMMY__ 0.015571327171384292 false 0.0
941 17 0.05952617623886464 22 0.05502662829626854 18 0.053985245854655375 0 0.05347229795607255 19 0.05276851749905186 16 0.05105182294923767 11 0.049470639927575 21 0.04761734369999577 9 0.044238162005566635 10 0.04220221595482047 12 0.04160417865687436 23 0.03955124348779944 6 0.03444475949569441 4 0.03381805231054718 20 0.03343068630782882 5 0.03336894570261482 8 0.03234116598987028 7 0.03227472164163875 1 0.0321503146354868 24 0.032108167458401914 2 0.0317125319624718 3 0.029780418582597043 13 0.026560479293227097 15 0.022782935484249558 14 0.021265707717660624 __DUMMY__ 0.01344664089092861 false 0.0
942 17 0.06218826333106395 0 0.05589524432127395 22 0.05351770865524286 16 0.05201417775999509 18 0.051105415167536125 19 0.04879081305338544 9 0.04811151819195526 11 0.04435751921795093 21 0.04055940140130617 10 0.03988338194309382 6 0.03957812435564794 23 0.03882434892338104 4 0.038543813312956074 5 0.038075485677189214 8 0.03802934665911464 7 0.037950088504380586 1 0.037834545143062136 2 0.037339164698163535 3 0.03531088301343884 12 0.03261273138989829 24 0.030205005461327396 20 0.029264485125008705 15 0.0231702704090813 13 0.01781630608500611 14 0.015317729943595397 __DUMMY__ 0.013704228255945283 false 0.0
700 0 0.08507 17 0.078732 9 0.061128 11 0.058337 22 0.058316 16 0.055872 10 0.05053 18 0.049478 6 0.04695 8 0.043814 7 0.043324 1 0.043242 2 0.042861 4 0.04243 5 0.041969 3 0.03703 19 0.036255 12 0.033582 21 0.033448 23 0.024669 13 0.019646 15 0.007674 24 0.003562 14 0.002081 0 0.08507 17 0.078732 9 0.061128 11 0.058337 22 0.058316 16 0.055872 10 0.05053 18 0.049478 6 0.04695 8 0.043814 7 0.043324 1 0.043242 2 0.042861 4 0.04243 5 0.041969 3 0.03703 19 0.036255 12 0.033582 21 0.033448 23 0.024669 13 0.019646 15 0.007674 24 0.003562 14 0.002081 0 0.07156450295976474 17 0.06963427589599461 22 0.05733420016265776 9 0.05726371318978955 11 0.052037847717081566 16 0.050446929629866036 18 0.050013776938132866 10 0.04642985819491025 6 0.04486366185747743 8 0.04249655300484197 7 0.042227404496736884 4 0.04217150205846971 1 0.042127570516283415 5 0.041688688499162574 2 0.04165951565125018 19 0.03996065976206562 3 0.03778583937294512 21 0.03737520655644208 12 0.032020429900607245 23 0.030759182369998073 13 0.01848966052803481 24 0.015422928662965192 15 0.013779045811858938 20 0.011533386409856291 14 0.008783549868636562 __DUMMY__ 0.002130109984170637 false 1.0
943 17 0.06417451768933664 0 0.05829801322011764 22 0.054170182440394586 18 0.053668686017467035 16 0.052815658077915176 9 0.04959285899712546 19 0.048427549939204666 11 0.045337065794560275 10 0.043792688631849944 21 0.03896852360796258 6 0.03832508085328189 4 0.037109489586673976 8 0.03678687015469108 7 0.036669855433057875 5 0.03663297299968419 1 0.036523304057487625 2 0.03606671936233397 23 0.03558150014269441 3 0.033903628663515484 12 0.030291040385552515 15 0.028490187700584972 20 0.027951149380380538 24 0.027072131042661228 14 0.01897398672128557 13 0.018447677240687268 __DUMMY__ 0.011928661859493466 false 0.0
701 0 0.085152 17 0.078901 9 0.061625 11 0.058468 22 0.057856 16 0.055903 10 0.050639 18 0.049657 6 0.047193 8 0.043928 7 0.043711 1 0.04356 4 0.042759 2 0.042757 5 0.041762 3 0.036886 19 0.036261 21 0.033375 12 0.033323 23 0.024937 13 0.019484 15 0.007089 24 0.003084 14 0.00169 0 0.085152 17 0.078901 9 0.061625 11 0.058468 22 0.057856 16 0.055903 10 0.050639 18 0.049657 6 0.047193 8 0.043928 7 0.043711 1 0.04356 4 0.042759 2 0.042757 5 0.041762 3 0.036886 19 0.036261 21 0.033375 12 0.033323 23 0.024937 13 0.019484 15 0.007089 24 0.003084 14 0.00169 0 0.07160231849687713 17 0.0697122127956531 9 0.05749291223789769 22 0.05712206422275887 11 0.05209826034344408 16 0.05046122574755488 18 0.05009632548865872 10 0.04648012518936454 6 0.04497572497355443 8 0.042549125824729944 7 0.04240587538530399 4 0.042323225372006085 1 0.04227422101386569 2 0.04161155448222956 5 0.04159322732620808 19 0.039963426752586045 3 0.03771943160045503 21 0.0373415415051103 12 0.03190098814314243 23 0.030882774613243506 13 0.018414951783983453 24 0.01520249175150504 15 0.013509264236117957 20 0.011533386409856291 14 0.00860323431972251 __DUMMY__ 0.0021301099841706363 false 1.0
944 21 0.07913596771846688 12 0.06973262664475999 22 0.06208696794658266 11 0.05886426170305688 19 0.058285189273671094 18 0.0554044775733564 13 0.05469701069551243 24 0.05057297689518347 23 0.050173522951953736 20 0.04730762195186664 14 0.04559696584036466 10 0.03896007459681228 17 0.03482420280790963 9 0.03249737771059245 0 0.0296232182834604 16 0.027724344702678948 4 0.025488088435139285 5 0.024951102024870213 6 0.02261686767784865 7 0.019398822314611416 8 0.0193120039337289 3 0.019252144732842622 1 0.019136154717776122 2 0.01876234737338344 15 0.01840302562989519 __DUMMY__ 0.017192635863675768 false 0.0
702 17 0.087465 0 0.08736 16 0.070635 11 0.057287 9 0.056184 22 0.054715 18 0.050577 10 0.047335 6 0.043815 19 0.042159 8 0.040118 1 0.040015 7 0.03994 2 0.039141 4 0.038107 5 0.037413 12 0.036671 3 0.032088 21 0.031363 23 0.025143 13 0.020504 15 0.012718 20 0.005127 24 0.004122 17 0.087465 0 0.08736 16 0.070635 11 0.057287 9 0.056184 22 0.054715 18 0.050577 10 0.047335 6 0.043815 19 0.042159 8 0.040118 1 0.040015 7 0.03994 2 0.039141 4 0.038107 5 0.037413 12 0.036671 3 0.032088 21 0.031363 23 0.025143 13 0.020504 15 0.012718 20 0.005127 24 0.004122 17 0.07591498192340593 0 0.0737203051001947 16 0.06073834865200801 22 0.05491902056686186 9 0.054110602916593635 11 0.05127748310366381 18 0.05072083856175419 10 0.04442088142521365 19 0.04386921855040323 6 0.04305120245306593 8 0.04040418579606956 7 0.040271694962064404 1 0.04025208612163974 2 0.039558046069957754 4 0.03951802238289644 5 0.0389383640511856 21 0.03508874357367644 3 0.03486247023456847 12 0.03317961467318206 23 0.03094060250796365 13 0.018001897799252285 15 0.017185731634287535 24 0.015468304600642399 20 0.014608846534699838 14 0.006612144444970035 __DUMMY__ 0.002366361359778897 false 1.0
703 21 0.078775 22 0.077441 18 0.064239 11 0.063231 9 0.057038 10 0.05413 19 0.052864 12 0.05123 0 0.046424 17 0.041819 23 0.037153 24 0.03687 4 0.033742 5 0.033245 13 0.031943 14 0.030698 6 0.02975 20 0.029207 3 0.028114 7 0.02711 1 0.027055 8 0.027001 2 0.026579 16 0.014342 21 0.078775 22 0.077441 18 0.064239 11 0.063231 9 0.057038 10 0.05413 19 0.052864 12 0.05123 0 0.046424 17 0.041819 23 0.037153 24 0.03687 4 0.033742 5 0.033245 13 0.031943 14 0.030698 6 0.02975 20 0.029207 3 0.028114 7 0.02711 1 0.027055 8 0.027001 2 0.026579 16 0.014342 21 0.07656299163008408 22 0.0698778765260953 11 0.06208274237497114 18 0.06041927575090509 12 0.05879598706002505 19 0.052833125722895447 10 0.05047804758543375 9 0.04817446195228148 13 0.04315690560357971 0 0.04197856882314606 23 0.04036973834833532 17 0.039655359091845775 24 0.039352664231769294 14 0.03754788386468023 20 0.03464370210261867 4 0.030921795545812605 5 0.030463008337975904 6 0.02781869003977922 3 0.02511337911512863 7 0.024895675658797457 8 0.02480707955132664 1 0.024791103743464882 2 0.02436810740779397 16 0.020180631408987668 15 0.008328263960260762 __DUMMY__ 0.002382934562005804 false 1.0
945 17 0.06302364185696704 0 0.056404339588752364 22 0.053519883290588495 16 0.05328411067543351 18 0.05152706950250781 19 0.04951029380603354 9 0.047682223971180285 11 0.04485099908395879 21 0.04060149698406461 10 0.04008742325346594 6 0.039034786252578994 23 0.03864576403054155 4 0.03790611077053384 5 0.037443193769002805 8 0.037425114472028134 7 0.0373443873591406 1 0.03723157828114314 2 0.03673722864755916 3 0.03460134169759955 12 0.03311208266865172 24 0.030029580531920036 20 0.02961563736274534 15 0.023514568996990226 13 0.018104022120233324 14 0.015312387200605675 __DUMMY__ 0.013450733825773473 false 0.0
946 18 0.07391832491252841 14 0.06905864055318772 10 0.062257045828540386 19 0.061421433979919296 21 0.058616262669441026 15 0.05835081485040824 20 0.05813802714746806 22 0.054150768832108696 13 0.0510965476669939 11 0.046632515851801594 12 0.04567438162781599 24 0.0413772467823824 23 0.039377282535349424 9 0.037041205832587805 17 0.03675332372824725 16 0.030882467670298615 0 0.028261895466872577 4 0.01995615992471866 5 0.01957171973985235 3 0.016865304087552352 6 0.016634547301208308 8 0.015466255207958237 7 0.015427261451592589 1 0.015238720273870479 2 0.014993881435711051 __DUMMY__ 0.012837964641584276 false 0.0
704 10 0.08239 18 0.070616 22 0.066437 9 0.065063 11 0.0636 21 0.059465 14 0.056224 0 0.05352 13 0.050158 12 0.040271 4 0.034925 17 0.03477 5 0.034326 6 0.032591 19 0.032278 1 0.029997 8 0.029975 7 0.029935 3 0.029755 2 0.029501 15 0.025013 23 0.024115 20 0.013851 24 0.011225 10 0.08239 18 0.070616 22 0.066437 9 0.065063 11 0.0636 21 0.059465 14 0.056224 0 0.05352 13 0.050158 12 0.040271 4 0.034925 17 0.03477 5 0.034326 6 0.032591 19 0.032278 1 0.029997 8 0.029975 7 0.029935 3 0.029755 2 0.029501 15 0.025013 23 0.024115 20 0.013851 24 0.011225 10 0.06922927433498577 18 0.06578365270289843 22 0.06394007289603162 21 0.059907390467984954 11 0.059679108382307895 9 0.05687386509232499 14 0.04948086321623762 0 0.04908149004701027 13 0.04596567692534959 12 0.043641093501541585 19 0.04011352080668764 17 0.03852100439614408 4 0.03353055560103933 5 0.03303175218130076 6 0.031439254225976244 23 0.03055795020803231 8 0.029000859330952984 7 0.028994757523549526 1 0.02896511126637944 3 0.028675972598400896 2 0.028507639285694584 15 0.024824085213404994 20 0.023263673259708344 24 0.02135001403216629 16 0.012658509846684984 __DUMMY__ 0.0029828526572047436 false 1.0
705 22 0.056322 3 0.056009 4 0.055587 9 0.055566 5 0.05488 7 0.053694 8 0.053474 23 0.053462 1 0.053313 2 0.052761 6 0.052064 24 0.050738 21 0.045127 19 0.040046 18 0.038888 17 0.036609 20 0.033953 0 0.031417 11 0.026585 10 0.025777 16 0.022928 15 0.019335 12 0.016125 14 0.01534 22 0.056322 3 0.056009 4 0.055587 9 0.055566 5 0.05488 7 0.053694 8 0.053474 23 0.053462 1 0.053313 2 0.052761 6 0.052064 24 0.050738 21 0.045127 19 0.040046 18 0.038888 17 0.036609 20 0.033953 0 0.031417 11 0.026585 10 0.025777 16 0.022928 15 0.019335 12 0.016125 14 0.01534 22 0.05698921122683577 9 0.053806256169628426 4 0.04936406225699321 5 0.04876617275325013 3 0.04842068283268316 23 0.04789132384481282 7 0.04722309000319989 8 0.04713744985141097 1 0.04696818727858058 6 0.046748254405162 21 0.046647462411711874 2 0.046452297718799294 18 0.04482885566510553 24 0.04465434926747078 19 0.04198087735335572 17 0.041126687356629554 0 0.036818379741282804 11 0.033712924414168295 10 0.03323603255127136 20 0.032669913089348364 16 0.026359103078348645 12 0.022643912317394276 15 0.021847062006182423 14 0.02096141914406485 13 0.00955033087312831 __DUMMY__ 0.003195702389181141 false 1.0
947 13 0.06533566087834083 21 0.06425337750557095 12 0.06286439625831268 14 0.06159567365769523 18 0.06085997376628847 10 0.05326149851128661 22 0.05234844085996641 11 0.05181634483788896 19 0.04902504871536955 20 0.04383061493362244 23 0.041426051427677794 15 0.03894029425123426 24 0.03643153141497166 9 0.036371639743999304 17 0.03431923881448166 0 0.032877273275391736 4 0.025552315241234858 5 0.025190766029951885 16 0.024635734392431947 6 0.02391113209682514 8 0.020769721999060308 7 0.020726494925246843 1 0.020638985351380913 2 0.02033801568638562 3 0.019843680384679832 __DUMMY__ 0.0128360950407041 false 0.0
706 9 0.063578 22 0.063448 17 0.059714 0 0.058609 18 0.055261 10 0.046606 4 0.046182 8 0.045753 7 0.045611 6 0.045532 5 0.045472 1 0.045144 3 0.044961 2 0.044816 19 0.04369 11 0.042728 21 0.038724 16 0.037755 23 0.034401 24 0.027323 20 0.021429 15 0.017823 12 0.01378 14 0.011658 9 0.063578 22 0.063448 17 0.059714 0 0.058609 18 0.055261 10 0.046606 4 0.046182 8 0.045753 7 0.045611 6 0.045532 5 0.045472 1 0.045144 3 0.044961 2 0.044816 19 0.04369 11 0.042728 21 0.038724 16 0.037755 23 0.034401 24 0.027323 20 0.021429 15 0.017823 12 0.01378 14 0.011658 22 0.06039498147641371 9 0.06023441669763184 17 0.05631646267931964 0 0.05514604605137937 18 0.05332113989867287 4 0.04559961263709635 10 0.04552506112545118 5 0.04499436767746011 6 0.044960508108001215 8 0.0447796887898738 7 0.044689856625834634 1 0.04439900836164558 2 0.043948009780654926 3 0.043929325519873864 19 0.042891255741738826 11 0.04207338291105272 21 0.03995081594067626 16 0.03638896924020287 23 0.0362003686865388 24 0.02895896959354667 20 0.023133125812816197 15 0.02005947898617214 12 0.01844739013504044 14 0.015610728440595216 13 0.006545565039876353 __DUMMY__ 0.001501464042434452 false 1.0
948 18 0.07343500839093814 21 0.07096048177251994 22 0.06694495277422802 10 0.0654479492936383 11 0.06446358307718231 19 0.06288874163533248 12 0.05499648009790918 14 0.05156039044973047 13 0.04801905437099886 20 0.044423731830838475 9 0.04400543775491331 17 0.043688894193032776 0 0.043669163322809616 24 0.03400386537205224 23 0.033722153192615734 16 0.03058202901058624 15 0.02748632250261445 4 0.019467071074675938 5 0.019064860032822165 6 0.016606751123991428 3 0.0146045645329482 7 0.014210230064222939 8 0.01415491893377972 1 0.014025582813644404 __DUMMY__ 0.013883064747378082 2 0.01368471763459674 false 0.0
707 9 0.0673 22 0.066237 0 0.055448 18 0.054219 17 0.053746 4 0.049928 5 0.049112 8 0.048447 7 0.048408 1 0.048403 6 0.048344 3 0.04802 2 0.047337 10 0.046508 21 0.043224 11 0.042526 19 0.039681 23 0.035397 24 0.028281 16 0.025533 20 0.017365 12 0.014301 14 0.011254 15 0.01098 9 0.0673 22 0.066237 0 0.055448 18 0.054219 17 0.053746 4 0.049928 5 0.049112 8 0.048447 7 0.048408 1 0.048403 6 0.048344 3 0.04802 2 0.047337 10 0.046508 21 0.043224 11 0.042526 19 0.039681 23 0.035397 24 0.028281 16 0.025533 20 0.017365 12 0.014301 14 0.011254 15 0.01098 22 0.06379672086888417 9 0.06136469944556925 18 0.05363738374411461 17 0.049984540753876386 0 0.049852340645918806 4 0.046519482537754266 21 0.046220103631472005 5 0.045863405194325045 10 0.04536963764388407 6 0.04464275629870046 3 0.044582095989184174 8 0.044523207023686874 7 0.04447845591556464 1 0.044388779040636615 2 0.04362320081041277 11 0.042930812863018905 19 0.042377605095144336 23 0.037744821646407085 24 0.03290384259612531 16 0.02692934160087728 20 0.02368969134232122 12 0.020091395759955895 14 0.018460359010711996 15 0.016647566277386783 13 0.007602209081648417 __DUMMY__ 0.0017755451824188276 false 1.0
949 18 0.062435426788039684 21 0.05955046088696173 14 0.0558938880283317 19 0.05483557105536042 22 0.05346233003563601 20 0.050084596853590575 10 0.04945315609839841 12 0.04857627015708838 13 0.04742066541349699 23 0.04664160641310252 11 0.0447562754111747 15 0.044411937518132105 24 0.04382555597087556 9 0.03697252714870914 17 0.0359704503414777 16 0.028755023768020894 0 0.02855585223684788 4 0.027576224359748915 5 0.027158345265033853 6 0.02489084234934012 3 0.02369651813714412 7 0.02316680950805838 8 0.023155419257922336 1 0.022954357131961235 2 0.022653626427302755 __DUMMY__ 0.013146263438243728 false 0.0
708 9 0.066106 22 0.062773 0 0.057615 17 0.055794 18 0.050984 4 0.050501 8 0.049784 7 0.049586 5 0.049518 6 0.049489 1 0.049411 3 0.049192 2 0.048749 10 0.045428 11 0.040847 19 0.038179 21 0.037493 23 0.034444 16 0.030265 24 0.027339 15 0.017634 20 0.016885 14 0.011749 12 0.010233 9 0.066106 22 0.062773 0 0.057615 17 0.055794 18 0.050984 4 0.050501 8 0.049784 7 0.049586 5 0.049518 6 0.049489 1 0.049411 3 0.049192 2 0.048749 10 0.045428 11 0.040847 19 0.038179 21 0.037493 23 0.034444 16 0.030265 24 0.027339 15 0.017634 20 0.016885 14 0.011749 12 0.010233 22 0.0629222759623303 9 0.06066184303869881 0 0.05278941925833437 17 0.052455497416381405 18 0.051497704564706294 4 0.04609906307717086 5 0.04533585774759779 6 0.044762064343080596 10 0.04461875471066773 8 0.04449046403747262 7 0.04435665139957034 21 0.044318119717996256 1 0.04417106050303597 3 0.044113634329276084 11 0.04399955437199461 2 0.043601489264043836 19 0.041556148115075256 23 0.036342322861176495 24 0.031244191340651116 16 0.03061340995629319 20 0.021713562033360365 12 0.019598188342890982 15 0.019140505589761034 14 0.018373986497532017 13 0.008675172434920728 __DUMMY__ 0.0025490590859805974 false 1.0
709 9 0.070307 22 0.068167 0 0.065485 17 0.062052 18 0.054495 6 0.051101 4 0.051046 5 0.050341 7 0.049909 8 0.04978 1 0.049668 2 0.048721 3 0.047453 10 0.047106 11 0.045875 21 0.040064 19 0.034566 23 0.031586 16 0.028865 24 0.018984 12 0.01532 20 0.007583 15 0.006556 14 0.00497 9 0.070307 22 0.068167 0 0.065485 17 0.062052 18 0.054495 6 0.051101 4 0.051046 5 0.050341 7 0.049909 8 0.04978 1 0.049668 2 0.048721 3 0.047453 10 0.047106 11 0.045875 21 0.040064 19 0.034566 23 0.031586 16 0.028865 24 0.018984 12 0.01532 20 0.007583 15 0.006556 14 0.00497 22 0.06450811018207916 9 0.0638626747421753 0 0.06032810442833181 17 0.05879995359232617 18 0.05276146201405344 4 0.04730804121478394 6 0.047140072163554425 5 0.04668740540351914 11 0.04612632497054787 7 0.04599042300730973 8 0.0459793496557236 1 0.04579674943534407 10 0.04564358271939351 2 0.04506978383930594 3 0.04414507102631401 21 0.04236631759675564 19 0.038519882921953144 23 0.03371283338702588 16 0.0326502318433393 24 0.024196525807983302 12 0.02075552573018875 20 0.014658587971641067 15 0.012620080051897775 14 0.011595277149634485 13 0.007073588402466941 __DUMMY__ 0.0017040407423514474 false 1.0
950 14 0.07242156004510471 18 0.07032486528661423 15 0.0660219930093073 10 0.06009190501561064 19 0.0559005957837565 13 0.05509667594598977 20 0.05419390111742585 21 0.05351235596392994 22 0.049839048551741844 12 0.04512539664261875 11 0.04362862944141032 23 0.038630307850315154 17 0.03830333318115284 24 0.0380421147569509 9 0.03621132295878091 16 0.0326712118981179 0 0.029282391870758658 4 0.02128027971941867 5 0.020933363624422174 6 0.018969567109074666 3 0.01785178229139925 8 0.01748807307794125 7 0.017397628031468014 1 0.017244284012131784 2 0.01698977515360041 __DUMMY__ 0.012547637660957432 false 0.0
951 17 0.06581753578367598 0 0.05809109441938776 16 0.05578385765531868 22 0.05411010586435481 18 0.05311424976994682 19 0.050525324438158305 9 0.04809415395682243 11 0.04506535832942531 10 0.04084387589558046 21 0.03966027980132289 6 0.03826195463869744 23 0.03729038079802438 4 0.03696329730543482 8 0.036704790094899215 7 0.03659025846610673 5 0.03648286168519225 1 0.03647496499784796 2 0.03596651209693737 3 0.033702174492550634 12 0.03169999621330633 20 0.03000211899256003 24 0.02978866776933497 15 0.02556331039103817 13 0.016532038934809208 14 0.015092025587044722 __DUMMY__ 0.011778811622222447 false 0.0
710 9 0.067187 22 0.065277 0 0.061619 17 0.059673 18 0.054849 10 0.049229 4 0.047447 8 0.046907 6 0.046885 7 0.046801 5 0.046724 1 0.046434 3 0.045965 2 0.045941 11 0.044801 19 0.040863 21 0.038902 16 0.034248 23 0.031263 24 0.023879 20 0.016314 15 0.014936 12 0.012736 14 0.011118 9 0.067187 22 0.065277 0 0.061619 17 0.059673 18 0.054849 10 0.049229 4 0.047447 8 0.046907 6 0.046885 7 0.046801 5 0.046724 1 0.046434 3 0.045965 2 0.045941 11 0.044801 19 0.040863 21 0.038902 16 0.034248 23 0.031263 24 0.023879 20 0.016314 15 0.014936 12 0.012736 14 0.011118 9 0.06305926623192905 22 0.06279430968222256 0 0.05766296829682403 17 0.056568117102510036 18 0.0531874979369328 10 0.047382055984848216 4 0.04625239959074221 5 0.04562384786704696 6 0.04562373566606164 8 0.0452614687212549 7 0.045178242862801046 1 0.04492557632799899 11 0.04449691224735246 2 0.04439452790157367 3 0.04430012233045012 21 0.04101824672169662 19 0.04094418534357685 16 0.03373113755647228 23 0.03370208781284689 24 0.026446258994622183 20 0.018892943912554767 12 0.017902481803748524 15 0.017477059063818634 14 0.015237927830247792 13 0.006373149857381923 __DUMMY__ 0.0015634723524848447 false 1.0
952 22 0.06089725297866512 18 0.06029314922509457 21 0.06018926232624398 10 0.05638528892985214 11 0.055668191600318634 9 0.04889465327079808 12 0.047310840790301116 19 0.04608212641001373 0 0.04439607626759635 14 0.04323490107783091 13 0.042936283309319694 17 0.040994082185117485 23 0.036499494816735666 4 0.03237307236074264 5 0.03196139064378097 20 0.031177443495410958 6 0.030551492736036058 24 0.03037440489828527 7 0.028226682910152515 8 0.02820544803532183 1 0.02812201434190985 3 0.027718037019939912 2 0.027702187527721932 15 0.023995107673069043 16 0.023194035018051284 __DUMMY__ 0.01261708015169044 false 0.0
953 18 0.07255123319539934 19 0.06931651579469149 21 0.06375405610045362 20 0.062261299427183524 22 0.05913840190654239 10 0.05416969959344687 24 0.04946197849661758 14 0.04924822296869886 11 0.04852628091548955 12 0.047034927571053146 23 0.04380671301991224 17 0.04118777269739009 15 0.03838946156980453 13 0.03749315069363561 9 0.037180896408948574 16 0.03657857632164955 0 0.030075053850156762 4 0.021690516969989398 5 0.021207655034867875 3 0.01884947496286807 6 0.017921657831753035 7 0.017036401786470503 8 0.01703351019163333 1 0.01679855532017312 2 0.016473178291467484 __DUMMY__ 0.012814809079703308 false 0.0
711 9 0.067925 22 0.06189 0 0.057161 17 0.053732 4 0.050707 3 0.050317 8 0.050253 7 0.050044 1 0.049947 5 0.049861 18 0.049674 6 0.049434 2 0.049304 10 0.048132 11 0.040207 19 0.037268 21 0.036133 23 0.031329 16 0.029438 24 0.026696 15 0.021269 20 0.0162 14 0.015943 12 0.007136 9 0.067925 22 0.06189 0 0.057161 17 0.053732 4 0.050707 3 0.050317 8 0.050253 7 0.050044 1 0.049947 5 0.049861 18 0.049674 6 0.049434 2 0.049304 10 0.048132 11 0.040207 19 0.037268 21 0.036133 23 0.031329 16 0.029438 24 0.026696 15 0.021269 20 0.0162 14 0.015943 12 0.007136 9 0.06342094485544882 22 0.06056342251197925 0 0.054019496066988554 17 0.05222236413147691 18 0.04973245150644058 4 0.04876223852689906 5 0.048078530614025825 8 0.04777918509253111 7 0.04766393991787701 6 0.04766343839772667 1 0.047534847650459004 3 0.04746301935892614 2 0.046927325471058504 10 0.04595544653001479 11 0.040952788257000716 21 0.039384551849003246 19 0.03817940196177226 23 0.03455704437314858 16 0.029916135697796824 24 0.0285504745879394 15 0.020737317057688998 20 0.01889024672602136 14 0.017840513743495653 12 0.01456256010536565 13 0.0061032631120002305 __DUMMY__ 0.00253905189691496 false 1.0
712 21 0.087877 22 0.079538 19 0.068072 11 0.067262 18 0.066142 12 0.064369 23 0.048309 24 0.047651 17 0.047622 9 0.043808 10 0.04236 20 0.041877 0 0.041522 13 0.035019 16 0.028904 14 0.02777 4 0.025774 5 0.02447 6 0.021961 7 0.018388 8 0.018287 3 0.018032 1 0.017795 2 0.01719 21 0.087877 22 0.079538 19 0.068072 11 0.067262 18 0.066142 12 0.064369 23 0.048309 24 0.047651 17 0.047622 9 0.043808 10 0.04236 20 0.041877 0 0.041522 13 0.035019 16 0.028904 14 0.02777 4 0.025774 5 0.02447 6 0.021961 7 0.018388 8 0.018287 3 0.018032 1 0.017795 2 0.01719 21 0.08412529009980704 22 0.07300997020472552 12 0.0655127507961688 11 0.06474264817064115 19 0.0634611510431482 18 0.0616108419327512 24 0.04845866990140629 23 0.047020001794785854 20 0.04352089696031838 13 0.04323233260088604 10 0.04259685817183594 17 0.042219725955283886 9 0.04040893155776489 0 0.037402792877360085 14 0.03673317470239323 16 0.028251596919665004 4 0.02571406257376732 5 0.024827085944120475 6 0.02222083259470002 7 0.018980898211758433 3 0.018975777554896465 8 0.018902100037469425 1 0.01857097177059498 2 0.018085715481225843 15 0.008817342074798546 __DUMMY__ 0.002597580067726891 false 1.0
954 14 0.07342099211948049 13 0.07143446124017216 18 0.06672506112456296 21 0.06662035526432554 12 0.0645087960792344 10 0.058491274056075675 19 0.05368029790747863 11 0.053128706144059956 22 0.0525164291759906 20 0.05045004695379442 15 0.05023074940782482 23 0.04006428677221067 24 0.03785351168040748 9 0.03324120831330775 17 0.03253618780843887 0 0.02911136465989725 16 0.025215986295545185 4 0.01970722060985037 5 0.019351917286197517 6 0.017483219112570114 8 0.014424702468474168 7 0.01435377753267542 1 0.01422943735410725 3 0.014057296428731157 2 0.013999716249409494 __DUMMY__ 0.013162997955177431 false 0.0
955 9 0.058388876480763505 22 0.056824172408619054 17 0.04876575564830185 0 0.048268214514427095 4 0.04824682030333125 18 0.04791285654699989 5 0.047713492292388415 6 0.04718680590853237 8 0.04695285174626879 7 0.046928162215719736 1 0.046789047197767775 3 0.04654376540284502 2 0.04620772031694556 10 0.041746633068078465 21 0.04017056928866787 23 0.039010236944228574 11 0.037927045240197854 19 0.03784121027713573 24 0.0317377388334385 16 0.029375809786290695 20 0.022576120117482616 15 0.021685190455750528 12 0.01939572524972183 14 0.019393707140985154 __DUMMY__ 0.011959371945743019 13 0.010452100669368856 false 0.0
713 17 0.09424 0 0.091465 16 0.083558 11 0.06215 18 0.053734 22 0.053602 19 0.049324 9 0.048684 12 0.048011 10 0.047606 6 0.038005 21 0.034525 7 0.032604 8 0.032594 1 0.032149 2 0.03192 4 0.031155 5 0.030503 13 0.027863 23 0.026624 3 0.023305 15 0.013788 20 0.009872 24 0.002722 17 0.09424 0 0.091465 16 0.083558 11 0.06215 18 0.053734 22 0.053602 19 0.049324 9 0.048684 12 0.048011 10 0.047606 6 0.038005 21 0.034525 7 0.032604 8 0.032594 1 0.032149 2 0.03192 4 0.031155 5 0.030503 13 0.027863 23 0.026624 3 0.023305 15 0.013788 20 0.009872 24 0.002722 17 0.07884483771442506 0 0.0751685278686511 16 0.0669787105015064 22 0.054088051328974825 11 0.05352285240005166 18 0.05218116664782959 9 0.04998457037674819 19 0.04751297428218309 10 0.044287286733699305 6 0.0400518727216863 12 0.039352031782360054 21 0.03689672927733331 8 0.03656266181733923 7 0.03651693725214342 1 0.03625536136881222 4 0.03598137997845393 2 0.03586354560679709 5 0.03542598034288351 23 0.03200590590366972 3 0.03041425589269311 13 0.022273611469963688 15 0.017859019850851816 20 0.017463925584041303 24 0.01522372798131937 14 0.007007942319183899 __DUMMY__ 0.0022761329963986356 false 1.0
714 9 0.070457 22 0.055659 4 0.055496 8 0.055238 3 0.055215 7 0.05487 1 0.054613 5 0.054557 2 0.054297 6 0.054268 0 0.052635 10 0.049947 18 0.049235 17 0.048956 23 0.032798 15 0.031993 19 0.029139 11 0.028878 21 0.028152 14 0.023094 24 0.022455 16 0.021874 20 0.013625 13 0.002548 9 0.070457 22 0.055659 4 0.055496 8 0.055238 3 0.055215 7 0.05487 1 0.054613 5 0.054557 2 0.054297 6 0.054268 0 0.052635 10 0.049947 18 0.049235 17 0.048956 23 0.032798 15 0.031993 19 0.029139 11 0.028878 21 0.028152 14 0.023094 24 0.022455 16 0.021874 20 0.013625 13 0.002548 9 0.06455917595294274 22 0.05567369545767802 4 0.05284646343385351 5 0.05213227393386552 8 0.05213222815364236 7 0.05195670217116982 3 0.05182585840763995 6 0.05179688314567056 1 0.05177755614784439 2 0.05129894769410605 0 0.05031478812692589 17 0.048659421355939744 18 0.047907864984105236 10 0.04518477750839767 23 0.03661039486279848 21 0.03366135925330675 11 0.03272814981972541 19 0.032552739889919385 24 0.027192332022822206 15 0.026509101529212927 16 0.02524624302850569 14 0.020757115322303295 20 0.01772353745318409 12 0.009842451367316951 13 0.006645791157515958 __DUMMY__ 0.0024641478196074733 false 1.0
956 9 0.058388876480763505 22 0.056824172408619054 17 0.04876575564830185 0 0.048268214514427095 4 0.04824682030333125 18 0.04791285654699989 5 0.047713492292388415 6 0.04718680590853237 8 0.04695285174626879 7 0.046928162215719736 1 0.046789047197767775 3 0.04654376540284502 2 0.04620772031694556 10 0.041746633068078465 21 0.04017056928866787 23 0.039010236944228574 11 0.037927045240197854 19 0.03784121027713573 24 0.0317377388334385 16 0.029375809786290695 20 0.022576120117482616 15 0.021685190455750528 12 0.01939572524972183 14 0.019393707140985154 __DUMMY__ 0.011959371945743019 13 0.010452100669368856 false 0.0
715 9 0.065482 22 0.059825 0 0.05326 3 0.051535 4 0.051109 17 0.050935 8 0.050917 7 0.050697 5 0.050486 1 0.050459 2 0.050038 6 0.049633 18 0.048072 10 0.046171 19 0.037386 11 0.03681 21 0.034917 23 0.033781 16 0.029724 24 0.029549 15 0.025808 20 0.019601 14 0.018288 12 0.005518 9 0.065482 22 0.059825 0 0.05326 3 0.051535 4 0.051109 17 0.050935 8 0.050917 7 0.050697 5 0.050486 1 0.050459 2 0.050038 6 0.049633 18 0.048072 10 0.046171 19 0.037386 11 0.03681 21 0.034917 23 0.033781 16 0.029724 24 0.029549 15 0.025808 20 0.019601 14 0.018288 12 0.005518 9 0.0617761272969994 22 0.05872019625447549 0 0.05082663662391169 17 0.050002645636090526 4 0.04938345387549895 5 0.04880652909697599 3 0.048605547158264206 8 0.04853810646542419 18 0.04845275831337691 7 0.0484229350904035 1 0.04823531287354348 6 0.048105588363946225 2 0.047728501762324245 10 0.04419981740554522 21 0.03835426291338343 19 0.03808700481222112 11 0.038041400623038 23 0.036595057783836156 24 0.030845968757873533 16 0.029701386186291864 15 0.023582720964497095 20 0.021400508132430853 14 0.01920329681439251 12 0.013460753081829778 13 0.005970360796036348 __DUMMY__ 0.0029531229173894165 false 1.0
957 17 0.06298214529960038 0 0.060782734958927484 22 0.0555914955918736 9 0.05389865042055395 18 0.05051528536177998 16 0.04716778208755095 11 0.045734364393106026 10 0.043096597443743376 6 0.04302124827286831 19 0.04288687688017371 4 0.041706429835003576 8 0.041378237133207416 7 0.04130555578578753 5 0.04121487922271747 1 0.04120118910297463 2 0.040643742568498294 21 0.03854072278968317 3 0.038315933987903894 23 0.035260529670605244 12 0.02862203581033237 24 0.024324276972159605 20 0.020788950017807614 15 0.020040526161407838 13 0.015754752002393967 14 0.013531077434292842 __DUMMY__ 0.01169398079504677 false 0.0
958 9 0.058388876480763505 22 0.056824172408619054 17 0.04876575564830185 0 0.048268214514427095 4 0.04824682030333125 18 0.04791285654699989 5 0.047713492292388415 6 0.04718680590853237 8 0.04695285174626879 7 0.046928162215719736 1 0.046789047197767775 3 0.04654376540284502 2 0.04620772031694556 10 0.041746633068078465 21 0.04017056928866787 23 0.039010236944228574 11 0.037927045240197854 19 0.03784121027713573 24 0.0317377388334385 16 0.029375809786290695 20 0.022576120117482616 15 0.021685190455750528 12 0.01939572524972183 14 0.019393707140985154 __DUMMY__ 0.011959371945743019 13 0.010452100669368856 false 0.0
716 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.07442856424634632 20 0.06253653550952304 23 0.062046444723538124 21 0.061655791054207265 19 0.05950756887298811 22 0.05292515576633449 18 0.04709782335585164 12 0.04387406575522563 4 0.03896730859596766 5 0.03829229901747399 3 0.03731085023921958 8 0.03473715509383944 6 0.034585357204170275 7 0.03456776755760203 1 0.0344293606220839 2 0.034060829221672556 17 0.03314810072693009 9 0.03286797248937459 16 0.03268344356403067 11 0.032600292997915385 14 0.028836380834109488 15 0.025071093988192007 13 0.02157104857446729 10 0.020854108309929033 0 0.015563737607544124 __DUMMY__ 0.005780944071463259 false 1.0
959 9 0.05838887648076351 22 0.05682417240861907 17 0.04876575564830185 0 0.048268214514427095 4 0.04824682030333126 18 0.04791285654699989 5 0.04771349229238843 6 0.04718680590853239 8 0.04695285174626879 7 0.046928162215719736 1 0.04678904719776779 3 0.04654376540284503 2 0.04620772031694557 10 0.041746633068078465 21 0.040170569288667884 23 0.03901023694422858 11 0.03792704524019786 19 0.03784121027713573 24 0.0317377388334385 16 0.0293758097862907 20 0.022576120117482616 15 0.021685190455750528 12 0.01939572524972183 14 0.019393707140985157 __DUMMY__ 0.01195937194574302 13 0.010452100669368858 false 0.0
717 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.07485115882008575 20 0.06262369406380748 23 0.06216067743857312 21 0.06164337299432445 19 0.05955801839570383 22 0.052840697510570744 18 0.047077152131495055 12 0.04387358674201377 4 0.03899620017157126 5 0.038241345736059834 3 0.03720253737457641 8 0.03470455865456157 6 0.03458625909416982 7 0.03452002814718328 1 0.03434078093125664 2 0.03394334024302446 17 0.03305447394109124 9 0.032802337528476146 16 0.03274445964198997 11 0.03262643421360417 14 0.02884325080569487 15 0.025070164723024112 13 0.02153386937416819 10 0.020816929438619673 0 0.015563730465652025 __DUMMY__ 0.005780941418702091 false 1.0
718 24 0.094962 23 0.075706 20 0.070914 21 0.057678 19 0.055927 4 0.049822 3 0.049736 5 0.048965 22 0.046973 8 0.045624 7 0.045427 1 0.045227 2 0.04488 6 0.044253 12 0.037325 18 0.034503 9 0.028924 16 0.028558 17 0.024777 15 0.023399 14 0.020034 11 0.016458 13 0.00893 10 9.96E-4 24 0.094962 23 0.075706 20 0.070914 21 0.057678 19 0.055927 4 0.049822 3 0.049736 5 0.048965 22 0.046973 8 0.045624 7 0.045427 1 0.045227 2 0.04488 6 0.044253 12 0.037325 18 0.034503 9 0.028924 16 0.028558 17 0.024777 15 0.023399 14 0.020034 11 0.016458 13 0.00893 10 9.96E-4 24 0.07382333477017995 20 0.06261319728154734 23 0.06200333841060153 21 0.06158515172061237 19 0.05952595140745895 22 0.05320647391558412 18 0.047268548584781536 12 0.04384425864334275 4 0.038983387301460136 5 0.03831250733942682 3 0.03726360264938709 8 0.034671551095391356 6 0.03462850785957483 7 0.03457558439181162 1 0.03437568738033265 2 0.03401816894736732 17 0.033199051694533945 9 0.0328808362311701 16 0.03267060990251419 11 0.03261132109411828 14 0.028930005727310387 15 0.02507477653835223 13 0.021600426837159473 10 0.020989028802311523 0 0.015563744749442773 __DUMMY__ 0.005780946724226864 false 1.0
719 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.096281 23 0.0758 20 0.070747 21 0.057832 19 0.055887 3 0.049839 4 0.049787 5 0.048921 22 0.04636 8 0.045767 7 0.04541 1 0.045344 2 0.044973 6 0.044159 12 0.03739 18 0.034131 9 0.028896 16 0.028586 17 0.024666 15 0.023391 14 0.01983 11 0.016434 13 0.008866 10 7.02E-4 24 0.07442856424634632 20 0.06253653550952304 23 0.062046444723538124 21 0.061655791054207265 19 0.05950756887298811 22 0.05292515576633449 18 0.04709782335585164 12 0.04387406575522563 4 0.03896730859596766 5 0.03829229901747399 3 0.03731085023921958 8 0.03473715509383944 6 0.034585357204170275 7 0.03456776755760203 1 0.0344293606220839 2 0.034060829221672556 17 0.0331481007269301 9 0.03286797248937459 16 0.03268344356403067 11 0.032600292997915385 14 0.028836380834109488 15 0.025071093988192007 13 0.02157104857446729 10 0.020854108309929033 0 0.015563737607544124 __DUMMY__ 0.005780944071463259 false 1.0
960 18 0.07338432236591107 21 0.07091865117818813 22 0.06692074225974048 10 0.06541260056351612 11 0.06442925156121192 19 0.06282474994542069 12 0.054966515954678594 14 0.051528145794980613 13 0.0479989269426665 20 0.04437343355825564 9 0.04402238945797475 17 0.043677735974753114 0 0.04367069194510811 24 0.033989500571972614 23 0.033731549638559136 16 0.03055382055483751 15 0.027472644351786594 4 0.019514401093626725 5 0.019112165682121984 6 0.016658008757289088 3 0.014652793651994421 7 0.014261817586972422 8 0.014206634274356285 1 0.014077471795815661 __DUMMY__ 0.013904711572961139 2 0.013736322965300541 false 0.0
961 18 0.06493521005696437 22 0.058870642977045945 10 0.05715293564730574 21 0.05396622891060119 19 0.052386424771382355 9 0.048999721286631784 11 0.048744846876311934 17 0.044544897494869756 0 0.04303572323018309 14 0.040998402180435004 20 0.03889180366920984 12 0.03776828579485665 23 0.03709730343688796 24 0.03343323427775728 13 0.03298879071312607 4 0.03166368098621577 5 0.03126000353032672 15 0.030609919932608923 16 0.029717991892408216 6 0.029552846867232602 3 0.028585370879298144 7 0.0283392343403786 8 0.028330342554689247 1 0.028237003979007292 2 0.0277994737887707 __DUMMY__ 0.012089679925494716 false 0.0
962 18 0.07340513092270846 21 0.07095917021160157 22 0.0669405197461737 10 0.06543284046252083 11 0.06446672070894136 19 0.06285000836366116 12 0.05500734850169997 14 0.05155343425778208 13 0.048034564866757945 20 0.044386881536343695 9 0.04401153920080974 17 0.043676426667930396 0 0.043672871456479134 24 0.03399134106296461 23 0.033724276463444496 16 0.030556254932782134 15 0.02746580085539432 4 0.019486497391839573 5 0.019084258838987105 6 0.016628327287682952 3 0.014620669513962967 7 0.014229350727508092 8 0.014174059005125148 1 0.014044811235734147 __DUMMY__ 0.013893015020188262 2 0.013703880760976405 false 0.0
720 24 0.087795 23 0.076355 20 0.065249 21 0.062624 19 0.050559 22 0.0489 4 0.048058 5 0.047304 3 0.045572 12 0.043802 8 0.042591 6 0.042472 7 0.042126 1 0.04198 2 0.041591 18 0.039084 9 0.028887 14 0.027699 15 0.025423 11 0.024084 17 0.021234 13 0.020351 16 0.019149 10 0.007108 24 0.087795 23 0.076355 20 0.065249 21 0.062624 19 0.050559 22 0.0489 4 0.048058 5 0.047304 3 0.045572 12 0.043802 8 0.042591 6 0.042472 7 0.042126 1 0.04198 2 0.041591 18 0.039084 9 0.028887 14 0.027699 15 0.025423 11 0.024084 17 0.021234 13 0.020351 16 0.019149 10 0.007108 24 0.07045303572838905 21 0.06934857227249536 23 0.06108711279241676 20 0.05897230966032119 19 0.058366058310144193 22 0.058027313863979274 12 0.0505928822101843 18 0.05043928603514356 11 0.041773159020421245 4 0.03612347181286633 5 0.03550588614470393 14 0.03447865361417358 9 0.0329491561897186 3 0.032783060139728676 6 0.0314394601997659 17 0.030899123017494194 8 0.030565015063313338 7 0.030377915801808947 1 0.03017317129797718 2 0.029806410383242606 13 0.029588175265439852 16 0.026788526472030116 10 0.025645661743528538 15 0.02340184322791792 0 0.016284401855533915 __DUMMY__ 0.00413033787726145 false 1.0
721 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08896087224648778 19 0.07869369519837648 24 0.07262309533599656 18 0.06434772041966486 21 0.06262264694192428 23 0.06178425582838277 12 0.06103223307465829 16 0.05139953875334988 14 0.04417073027130463 22 0.04365066497839077 13 0.042781218976183005 15 0.042445286160665716 17 0.03717159386226844 11 0.03548863521052318 10 0.03215896047469891 4 0.021064077707058697 5 0.020426238753682394 3 0.01898324487127434 6 0.017588316957270297 7 0.017116553822617807 8 0.01709226738244902 9 0.016893537556601224 1 0.01678569162639625 2 0.016637321282711823 0 0.012872449047030042 __DUMMY__ 0.005209153260032642 false 1.0
963 18 0.05745440349411616 22 0.05509775766063511 9 0.049579775376982466 10 0.0482619890184273 21 0.04815635050332073 19 0.047174376892827476 17 0.0441220270553285 11 0.04144466779591798 23 0.0412858875924039 0 0.041111413557473345 4 0.038414523992549514 5 0.03799359230919739 6 0.03665276787543056 20 0.03653181338652812 24 0.03621411533048545 3 0.03593152283703337 7 0.035849798059291754 8 0.03584088379398068 1 0.03576530812057399 2 0.03527809758599142 14 0.03334529331185529 12 0.03264594955834218 16 0.029630414462760477 15 0.028614691677944427 13 0.0260599331386894 __DUMMY__ 0.01154264561191298 false 0.0
722 20 0.086652 23 0.084587 24 0.082497 12 0.071309 19 0.065587 16 0.053278 21 0.052774 13 0.048437 18 0.040362 15 0.03871 5 0.034226 4 0.033632 6 0.032103 3 0.031897 2 0.03177 1 0.031076 7 0.030579 8 0.03056 14 0.030417 17 0.029538 11 0.028079 22 0.023592 10 0.005474 0 0.002863 20 0.086652 23 0.084587 24 0.082497 12 0.071309 19 0.065587 16 0.053278 21 0.052774 13 0.048437 18 0.040362 15 0.03871 5 0.034226 4 0.033632 6 0.032103 3 0.031897 2 0.03177 1 0.031076 7 0.030579 8 0.03056 14 0.030417 17 0.029538 11 0.028079 22 0.023592 10 0.005474 0 0.002863 20 0.07272330510746146 23 0.06972652098475428 24 0.06868037239970594 12 0.06685151380003969 19 0.0634974122872593 21 0.05984159053198646 18 0.049236422130077805 13 0.04847098972342286 16 0.0439886080693303 22 0.03797639962301287 14 0.03656125633786374 11 0.03634721997072113 17 0.03305738655433075 15 0.03298004161219517 5 0.030824894004993674 4 0.030809220650110377 6 0.028756957345261035 3 0.027601326401501317 2 0.02718183064218953 1 0.0270012581068074 7 0.026878824607644014 8 0.026868302759157085 10 0.021538552440809756 9 0.015214466519004273 0 0.014208439271708895 __DUMMY__ 0.0031768881186509577 false 1.0
965 21 0.07923002061617228 12 0.06983371449471536 22 0.062129264364389127 11 0.05893207069306599 19 0.05830318674328073 18 0.055373419843145644 13 0.05473276967999564 24 0.05060613174527783 23 0.050191642995126115 20 0.047296176141390714 14 0.04555033377161365 10 0.03891231184370694 17 0.03481997223495787 9 0.03247752034137091 0 0.029629161151591275 16 0.027720424799971558 4 0.025479156196980483 5 0.024941596014038454 6 0.022606974551835343 7 0.019381845691987847 8 0.019294672129521018 3 0.019232003493010172 1 0.0191189350233934 2 0.018744774216923846 15 0.018282113665642072 __DUMMY__ 0.01717980755689577 false 0.0
723 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.0747988946787427 20 0.06257665912112514 23 0.06210780542766109 21 0.06164445712951978 19 0.05955653733416696 22 0.05287920726159627 18 0.047100957850699364 12 0.04384008272367387 4 0.0389875968741552 5 0.03823219238773973 3 0.037193987075000476 8 0.034697021718169116 6 0.034578172163165125 7 0.03451275154337716 1 0.034333089309309985 2 0.03393472984356449 17 0.03308321150235853 9 0.03284844895730064 16 0.032741866487331635 11 0.032654458260570694 14 0.02884320177065803 15 0.025058461834780426 13 0.021509905626817934 10 0.020865686365488422 0 0.015614557023806023 __DUMMY__ 0.005806059729221304 false 1.0
966 21 0.06695280429317454 19 0.06549988360053287 20 0.06156300554710553 18 0.06073694095893517 24 0.05678566274065956 12 0.05579133895961596 22 0.05563187497398895 23 0.052199121825395975 11 0.04567266005642905 14 0.04055053162307734 13 0.039662784272325106 10 0.039173088800097074 17 0.03749368610396867 16 0.03579383981522156 9 0.03211223165439484 15 0.027622084618511906 4 0.026571628515758786 5 0.026088358553071504 0 0.025215220618538512 6 0.023143480763747774 3 0.023089109005393748 8 0.021761010761134462 7 0.02175665965467151 1 0.021547680615489652 2 0.02124530280408567 __DUMMY__ 0.016340008864674245 false 0.0
724 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.0747988946787427 20 0.06257665912112514 23 0.06210780542766109 21 0.06164445712951978 19 0.05955653733416696 22 0.05287920726159627 18 0.047100957850699364 12 0.04384008272367387 4 0.0389875968741552 5 0.03823219238773973 3 0.037193987075000476 8 0.034697021718169116 6 0.034578172163165125 7 0.03451275154337716 1 0.034333089309309985 2 0.03393472984356449 17 0.03308321150235853 9 0.03284844895730064 16 0.032741866487331635 11 0.032654458260570694 14 0.02884320177065803 15 0.025058461834780426 13 0.021509905626817934 10 0.020865686365488422 0 0.015614557023806023 __DUMMY__ 0.005806059729221304 false 1.0
967 18 0.07347312574113282 21 0.0710553669532307 22 0.06699137186353624 10 0.06550563368033194 11 0.06456362964605672 19 0.06291655515687974 12 0.05510125092957561 14 0.05163009633130876 13 0.048126664656346275 20 0.04442061033453773 9 0.04398986704446604 0 0.04368473557404947 17 0.043675882586671766 24 0.03398317658202689 23 0.03369407392731287 16 0.030560981052005096 15 0.027461874211833923 4 0.019408970527501512 5 0.01900679718683993 6 0.016546191467504478 3 0.01453316593902545 7 0.014140558046693747 8 0.014085073313759893 1 0.013955600241092388 __DUMMY__ 0.0138734837366726 2 0.013615263269607528 false 0.0
725 21 0.118806 12 0.105273 19 0.080944 11 0.080485 22 0.076876 13 0.072447 24 0.068431 18 0.060451 20 0.060427 23 0.060081 14 0.048438 17 0.034488 16 0.032445 10 0.028254 0 0.02363 9 0.018677 4 0.010484 5 0.010002 6 0.00581 15 0.00152 3 7.08E-4 1 5.88E-4 7 4.35E-4 8 3.01E-4 21 0.118806 12 0.105273 19 0.080944 11 0.080485 22 0.076876 13 0.072447 24 0.068431 18 0.060451 20 0.060427 23 0.060081 14 0.048438 17 0.034488 16 0.032445 10 0.028254 0 0.02363 9 0.018677 4 0.010484 5 0.010002 6 0.00581 15 0.00152 3 7.08E-4 1 5.88E-4 7 4.35E-4 8 3.01E-4 21 0.09862893458714386 12 0.0865599934952641 19 0.07106661259031347 11 0.07039170091022758 22 0.07024300307593857 13 0.06245819836556632 18 0.05974689484237827 24 0.05884930092333213 20 0.054750310207819536 23 0.053661961410888886 14 0.04696560110977263 10 0.03594058605330536 17 0.03582238528870288 16 0.03131783771377711 0 0.027910620583316552 9 0.026512608215493085 4 0.017237270045809345 5 0.01674036963958945 6 0.013408559756556776 15 0.010224780004198351 3 0.009448347964539285 7 0.009247622005508995 1 0.009180833159663088 8 0.009135801856235326 2 0.008717205028923543 __DUMMY__ 0.005832661165735575 false 1.0
968 18 0.07347312574113282 21 0.0710553669532307 22 0.06699137186353624 10 0.06550563368033194 11 0.06456362964605672 19 0.06291655515687974 12 0.05510125092957561 14 0.05163009633130876 13 0.048126664656346275 20 0.04442061033453773 9 0.04398986704446604 0 0.04368473557404947 17 0.043675882586671766 24 0.03398317658202689 23 0.03369407392731287 16 0.030560981052005096 15 0.027461874211833923 4 0.019408970527501512 5 0.01900679718683993 6 0.016546191467504478 3 0.01453316593902545 7 0.014140558046693747 8 0.014085073313759893 1 0.013955600241092388 __DUMMY__ 0.0138734837366726 2 0.013615263269607528 false 0.0
726 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.0747988946787427 20 0.06257665912112514 23 0.06210780542766109 21 0.06164445712951978 19 0.05955653733416696 22 0.05287920726159627 18 0.047100957850699364 12 0.04384008272367387 4 0.0389875968741552 5 0.03823219238773973 3 0.037193987075000476 8 0.034697021718169116 6 0.034578172163165125 7 0.03451275154337716 1 0.034333089309309985 2 0.03393472984356449 17 0.03308321150235853 9 0.03284844895730064 16 0.032741866487331635 11 0.032654458260570694 14 0.02884320177065803 15 0.025058461834780426 13 0.021509905626817934 10 0.020865686365488422 0 0.015614557023806023 __DUMMY__ 0.005806059729221304 false 1.0
969 18 0.056758567871577945 17 0.05625146592566822 19 0.05476433022795861 22 0.05467061913587685 16 0.04813395644508109 0 0.04738829215752791 21 0.04679808051172225 11 0.044345745351662455 9 0.04431962436934884 10 0.0422359802588394 23 0.041352174431510534 20 0.03997496053619616 24 0.03743335625986232 12 0.03625681690145689 4 0.03418497971847377 6 0.03381386924935377 5 0.033704143607066334 8 0.03254313709686925 7 0.03250720385391635 1 0.03235628364898779 2 0.031880012377662435 3 0.0311698738050755 15 0.028328289059270824 14 0.024381774646106056 13 0.022311922191080802 __DUMMY__ 0.012134540361847593 false 0.0
727 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.097202 23 0.076049 20 0.070937 21 0.057805 19 0.055997 4 0.04985 3 0.049603 5 0.04881 22 0.046176 8 0.045696 7 0.045306 1 0.045151 2 0.044717 6 0.044161 12 0.037389 18 0.034086 9 0.028753 16 0.028719 17 0.024462 15 0.023389 14 0.019845 11 0.016491 13 0.008785 10 6.21E-4 24 0.0747988946787427 20 0.06257665912112514 23 0.06210780542766109 21 0.06164445712951978 19 0.05955653733416696 22 0.05287920726159627 18 0.047100957850699364 12 0.04384008272367387 4 0.0389875968741552 5 0.03823219238773973 3 0.037193987075000476 8 0.034697021718169116 6 0.034578172163165125 7 0.03451275154337716 1 0.034333089309309985 2 0.03393472984356449 17 0.03308321150235853 9 0.03284844895730064 16 0.032741866487331635 11 0.032654458260570694 14 0.02884320177065803 15 0.025058461834780426 13 0.021509905626817934 10 0.020865686365488422 0 0.015614557023806023 __DUMMY__ 0.005806059729221304 false 1.0
728 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.0889987758935984 19 0.07875759844755904 24 0.07276561791431073 18 0.0646257964816868 21 0.06266515326871844 23 0.06197851863334436 12 0.06084697550820724 16 0.05123497173018905 14 0.04412350829903848 22 0.04382897916364126 13 0.04274252105471798 15 0.042419861254786466 17 0.03718373936252552 11 0.035350699319994495 10 0.03213411175174166 4 0.021061980599851555 5 0.020355992532540345 3 0.01892630673248334 6 0.017562273521126947 7 0.017159463623097154 8 0.0169743720353784 1 0.016869185326739415 9 0.016783728077088642 2 0.016574492024262654 0 0.012866690167725198 __DUMMY__ 0.005208687275646514 false 1.0
729 16 0.115809 17 0.096155 19 0.087725 20 0.075418 18 0.064461 0 0.054793 24 0.051973 23 0.050876 12 0.045769 15 0.043946 22 0.039009 21 0.032891 11 0.032156 6 0.023024 10 0.021102 8 0.020954 7 0.020943 1 0.020656 2 0.020078 9 0.019444 4 0.018766 5 0.01777 3 0.015051 13 0.011232 16 0.115809 17 0.096155 19 0.087725 20 0.075418 18 0.064461 0 0.054793 24 0.051973 23 0.050876 12 0.045769 15 0.043946 22 0.039009 21 0.032891 11 0.032156 6 0.023024 10 0.021102 8 0.020954 7 0.020943 1 0.020656 2 0.020078 9 0.019444 4 0.018766 5 0.01777 3 0.015051 13 0.011232 16 0.08423166339970818 17 0.07521338892796918 19 0.07506035553692073 20 0.06414912546147464 18 0.06279628776659679 24 0.04867967892447682 23 0.04769072783508831 0 0.04714761220551231 22 0.04562768760399739 15 0.042906335396103244 12 0.042859309278244745 21 0.04105977036127994 11 0.03725079096924944 10 0.031629742944589125 9 0.028321129104285785 6 0.02519201888079211 8 0.023658627862732297 7 0.02359490735060114 4 0.023588842144554718 1 0.023367861876535417 2 0.022898367446966036 5 0.022877390536410653 3 0.020389344777654868 13 0.019669216924932804 14 0.01765868257238185 __DUMMY__ 0.0024811339109414737 false 1.0
970 17 0.06310966946375962 0 0.06072329727758258 22 0.05585245331774436 9 0.05426040624516585 18 0.0500887930870268 16 0.047207559732544556 11 0.045379464453477854 6 0.04342242685341151 19 0.04279949246052404 10 0.042474451503359684 4 0.04214372471401987 8 0.04184879888654093 7 0.04177510476328322 1 0.04166566454157421 5 0.04164726830293169 2 0.041100017025690404 3 0.038836867735234135 21 0.038436661531867665 23 0.03534190447465457 12 0.027916004557095378 24 0.024693354878015755 20 0.02058501410256305 15 0.019687354028172 13 0.01466837660666722 14 0.012823396450827763 __DUMMY__ 0.011512473006265213 false 0.0
971 17 0.06368860255434979 0 0.060481608276212406 22 0.05662181618271051 9 0.05387079841063842 18 0.050636456991146904 16 0.04838767069628756 11 0.0458672074248671 19 0.044315526818152075 6 0.04248162727314689 10 0.0422670381731224 4 0.04132518426718932 8 0.04099289280928212 7 0.04090917280341533 5 0.04083117030537501 1 0.04079175223988563 2 0.04024045194170471 21 0.0391670102456831 3 0.038127856268231536 23 0.03517522054418455 12 0.0277362216299829 24 0.02578204058691711 20 0.021801033993166047 15 0.02023561119646799 13 0.013810234991767895 14 0.012921914275451083 __DUMMY__ 0.011533879100661552 false 0.0
730 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08895383702264527 19 0.0786714913854091 24 0.0726676314839171 18 0.06433438005133268 21 0.062674637842333 23 0.0617943922521224 12 0.06102041382084008 16 0.051287699144481017 14 0.044203298829448186 22 0.04368670054367492 13 0.042773977618456846 15 0.04240948051901631 17 0.037090109517915346 11 0.03548977624452823 10 0.032160034087121495 4 0.021086858754418344 5 0.02044838178073684 3 0.019009268698506276 6 0.01759640649124647 7 0.017128875047395627 8 0.01710483793732035 9 0.016919812814877082 1 0.01679769951764247 2 0.01664895825292128 0 0.012816898732045744 __DUMMY__ 0.00522414160964741 false 1.0
972 21 0.08116298486642703 12 0.06857113740759616 19 0.06664002021870713 22 0.06545814335582512 18 0.06194092058267956 11 0.06186264288417086 20 0.05327672858523203 24 0.051398333043451386 13 0.05005545293640105 23 0.04633014573668269 10 0.04459028093831261 14 0.04405580371266702 17 0.03859826624267721 9 0.033473065993959855 16 0.033193949568216384 0 0.03213149528375583 4 0.020931791895378127 5 0.020466469599312913 6 0.017514565794483263 __DUMMY__ 0.017393539431797025 15 0.017339009621723037 3 0.015417898708774401 7 0.014766428480508487 8 0.01468915867418641 1 0.014532851638820881 2 0.014208914798253551 false 0.0
973 18 0.07357774964690263 19 0.0671081012830031 21 0.06228235347813592 20 0.05893673756938588 22 0.05867219917187613 10 0.05821699947562152 14 0.05162528837337765 11 0.04954561625664198 12 0.04654621323892705 24 0.04513181261565624 23 0.04151620726970284 17 0.04133638605521494 13 0.0399978054203813 15 0.03967716402134114 9 0.03876618548430005 16 0.03509733156186853 0 0.03258732781491286 4 0.021501042250658332 5 0.021040684728081696 3 0.01851616239899708 6 0.018018858008903012 8 0.01696955704312684 7 0.016965828691087148 1 0.016760198191233377 2 0.016454330911082834 __DUMMY__ 0.013151859039580011 false 0.0
731 16 0.105991 17 0.096778 19 0.079123 0 0.076846 18 0.061741 11 0.054192 22 0.05224 20 0.042535 10 0.041759 12 0.038745 9 0.035881 23 0.035662 21 0.034079 15 0.030098 24 0.026077 6 0.025664 8 0.023321 7 0.023082 1 0.022962 2 0.022798 4 0.021383 5 0.021059 3 0.017586 13 0.0104 16 0.105991 17 0.096778 19 0.079123 0 0.076846 18 0.061741 11 0.054192 22 0.05224 20 0.042535 10 0.041759 12 0.038745 9 0.035881 23 0.035662 21 0.034079 15 0.030098 24 0.026077 6 0.025664 8 0.023321 7 0.023082 1 0.022962 2 0.022798 4 0.021383 5 0.021059 3 0.017586 13 0.0104 16 0.08257159047715926 17 0.0811254040385544 19 0.06843411729558492 0 0.0662082353355333 18 0.05954806515801185 22 0.0538153011369126 11 0.051374157291172666 10 0.04227020988623841 20 0.03991509830811779 9 0.03988802482388726 21 0.03956556245004034 12 0.03825630732375401 23 0.037180508336419414 24 0.02965851702867514 15 0.02918582337362444 6 0.029138625571976398 8 0.027081661683608284 7 0.026914751265349306 1 0.026783867568330462 4 0.026577576642103806 2 0.026463026967600375 5 0.026178592144813335 3 0.022883703392311036 13 0.01595635648481482 14 0.01004400362618105 __DUMMY__ 0.0029809123892253378 false 1.0
732 23 0.087809 24 0.084971 20 0.083019 12 0.074097 19 0.059565 21 0.056728 13 0.050055 16 0.044647 18 0.038137 4 0.038038 5 0.037181 6 0.03631 2 0.034687 3 0.034284 1 0.033796 8 0.033789 7 0.033769 15 0.032747 14 0.028343 17 0.027704 22 0.024496 11 0.023184 9 0.002414 10 2.3E-4 23 0.087809 24 0.084971 20 0.083019 12 0.074097 19 0.059565 21 0.056728 13 0.050055 16 0.044647 18 0.038137 4 0.038038 5 0.037181 6 0.03631 2 0.034687 3 0.034284 1 0.033796 8 0.033789 7 0.033769 15 0.032747 14 0.028343 17 0.027704 22 0.024496 11 0.023184 9 0.002414 10 2.3E-4 23 0.07083080754951787 24 0.06973384662871689 20 0.06964194684550865 12 0.06361925197201897 21 0.060273190513267766 19 0.060091715089562264 18 0.04821039844937402 13 0.04495827427730593 22 0.03952240046570787 16 0.0392747101807033 14 0.034816221052970886 4 0.03401537809190658 5 0.033354982116613426 11 0.03324118233449433 17 0.03262139131681404 6 0.031672540299899965 15 0.0314492466186041 3 0.03025798262912517 2 0.02977817654338425 8 0.02964096822522192 7 0.02963358005449401 1 0.02952480114355539 10 0.019212584339966036 9 0.018176573419484792 0 0.013143218550479644 __DUMMY__ 0.0033046312913019332 false 1.0
974 0 0.05928139118642758 17 0.05924306149844355 22 0.058395023255607 9 0.05756983168952222 18 0.050327234989910284 11 0.04576127842509002 10 0.0445701094253068 6 0.04443283114173661 4 0.04388660975790705 5 0.043371970794829864 8 0.04314502342981269 7 0.043083481645365004 1 0.0429547263585735 2 0.0423851564449847 3 0.04087586860296397 19 0.04046901211585256 21 0.04007844324047471 16 0.040073261989292806 23 0.03441382375442028 12 0.02511875594144264 24 0.02461585449844244 20 0.01834396678544112 15 0.018238004845250014 14 0.014725586969399301 13 0.013331809388739168 __DUMMY__ 0.011307881824763942 false 0.0
733 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.112237 24 0.087135 19 0.086476 23 0.072665 12 0.069704 18 0.063252 16 0.06251 21 0.058381 15 0.051971 13 0.049505 14 0.045872 17 0.033721 22 0.029626 11 0.024722 10 0.022158 4 0.018379 5 0.017573 3 0.017236 7 0.015258 8 0.015205 6 0.015178 2 0.014839 1 0.01482 9 0.001576 20 0.08895318480880644 19 0.07868274117972114 24 0.07265863799238392 18 0.0643505350554702 21 0.06268040657417588 23 0.06177698618349508 12 0.061010885742066936 16 0.05128994704876185 14 0.044210833312431745 22 0.04370208705265178 13 0.04276643112143383 15 0.04241208259022494 17 0.03709708427941642 11 0.03550066843735442 10 0.03218043822196136 4 0.021076815002062425 5 0.020438495112281393 3 0.01900005572215472 6 0.017585040066247695 7 0.01711855169507461 8 0.017094508383913572 9 0.016931108076456734 1 0.016787252415637426 2 0.016637993727938217 0 0.012827019165594013 __DUMMY__ 0.0052302110322831425 false 1.0
975 19 0.07108703041961534 21 0.07044536112397885 18 0.06494985325389958 20 0.06484555689984893 22 0.059443221197764046 24 0.05790403580529036 12 0.05494710191967952 23 0.049885845672833454 11 0.049218664002854344 14 0.044409033076298746 10 0.042939692875260886 17 0.03862516537189275 13 0.03859526225999163 16 0.0382673489235918 9 0.03185199362544092 15 0.03093818110415318 0 0.025246372134990733 4 0.022370338072343187 5 0.02187508121106109 3 0.01913468639969217 6 0.018336363968497336 7 0.017206001878633775 8 0.017184855317024537 1 0.016957181177202185 __DUMMY__ 0.01669646005605102 2 0.016639312252109635 false 0.0
734 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.112357 24 0.087402 19 0.086649 23 0.073088 12 0.069376 18 0.063898 16 0.062197 21 0.058478 15 0.051953 13 0.049517 14 0.045815 17 0.033761 22 0.029983 11 0.024454 10 0.022144 4 0.018324 5 0.017372 3 0.017056 7 0.015302 6 0.015078 1 0.014953 8 0.014898 2 0.014655 9 0.001288 20 0.08900833079163863 19 0.07876222054742263 24 0.07278128028259967 18 0.06464721391425136 21 0.06272497867481791 23 0.06197126015184861 12 0.060860293057360404 16 0.05114623804194444 14 0.044184678675487365 22 0.043866044896761984 13 0.04277196127365226 15 0.04240383629605102 17 0.03711546969297784 11 0.03537761660545918 10 0.03217402406714254 4 0.021051568160669564 5 0.020346203397228205 3 0.018917406745127065 6 0.017539127195890538 7 0.01713876477212791 8 0.016953538930961798 1 0.016848334982115673 9 0.016798863528129017 2 0.01655350682840641 0 0.012827025055882502 __DUMMY__ 0.0052302134340455044 false 1.0
976 18 0.0754223839318688 10 0.07192000501013812 22 0.06348303422009005 11 0.05838257907302051 21 0.05827083900454619 19 0.05644528593067299 14 0.05251097567088574 9 0.050352442350209276 0 0.04781045131098752 17 0.04575075279845315 13 0.04172656662276105 12 0.04110887328778646 20 0.03833175184979252 15 0.03611082476359834 23 0.029798969158943138 16 0.028652675165173613 24 0.02548103999358655 4 0.02366138883893419 5 0.023259089709262416 6 0.021343153014084928 3 0.019746934391245464 8 0.019542979123988433 7 0.0195408174658689 1 0.019388121162136996 2 0.01902601704743764 __DUMMY__ 0.012932049104526824 false 0.0
735 20 0.114497 19 0.089348 24 0.08727 23 0.07164 12 0.06869 18 0.0672 16 0.062245 21 0.059805 15 0.052949 13 0.048999 14 0.047429 17 0.034364 22 0.031419 10 0.024681 11 0.024475 4 0.016568 5 0.015599 3 0.015451 7 0.01338 1 0.013024 6 0.013004 8 0.012976 2 0.01272 9 0.002268 20 0.114497 19 0.089348 24 0.08727 23 0.07164 12 0.06869 18 0.0672 16 0.062245 21 0.059805 15 0.052949 13 0.048999 14 0.047429 17 0.034364 22 0.031419 10 0.024681 11 0.024475 4 0.016568 5 0.015599 3 0.015451 7 0.01338 1 0.013024 6 0.013004 8 0.012976 2 0.01272 9 0.002268 20 0.09066465315364836 19 0.08045443627038269 24 0.07299592013814638 18 0.0666200263571201 21 0.06377768206770244 23 0.061336000104659776 12 0.06092315280249515 16 0.05106445690829504 14 0.045679282197628096 22 0.04460953781794245 15 0.04330494899010556 13 0.0430520851411897 17 0.03710795560478833 11 0.035502814110297216 10 0.03364183555393263 4 0.019832217580294412 5 0.01911878803401585 3 0.01775579705412948 9 0.016981842094402597 6 0.016103964546866457 7 0.015772770562510217 8 0.015585606526227381 1 0.015475271111324641 2 0.01518083604836594 0 0.012400326201913534 __DUMMY__ 0.005057793021615664 false 1.0
977 21 0.06312997287952554 19 0.0616111888190554 22 0.06133357913665116 18 0.06089818559775393 20 0.053183164333842736 24 0.05286375667586805 23 0.046532381247647775 11 0.04620452961115727 12 0.04280262703046481 10 0.041840517081331456 9 0.041155618206092676 17 0.040960578131440814 14 0.03646330683595302 16 0.03301829324609542 0 0.030700888342604735 4 0.03065552989565271 5 0.03011251178907835 3 0.02803199644905655 13 0.027426605554572193 15 0.02709418498586721 6 0.026970176679725285 8 0.026322310987575082 7 0.026272497145456694 1 0.026040108160436077 2 0.025649349778790832 __DUMMY__ 0.012726141398304022 false 0.0
736 16 0.096063 17 0.087494 19 0.073023 0 0.060377 18 0.05842 20 0.056802 23 0.04435 24 0.043085 22 0.041612 12 0.040404 11 0.038906 15 0.033217 6 0.031164 21 0.030861 9 0.0303 8 0.02935 7 0.029132 1 0.028759 10 0.02852 2 0.028444 4 0.027431 5 0.026726 3 0.024153 13 0.011408 16 0.096063 17 0.087494 19 0.073023 0 0.060377 18 0.05842 20 0.056802 23 0.04435 24 0.043085 22 0.041612 12 0.040404 11 0.038906 15 0.033217 6 0.031164 21 0.030861 9 0.0303 8 0.02935 7 0.029132 1 0.028759 10 0.02852 2 0.028444 4 0.027431 5 0.026726 3 0.024153 13 0.011408 16 0.074707211532007 17 0.07243845456043671 19 0.0659878306856204 18 0.05854369762251937 0 0.05249496834357342 20 0.051738850672248635 22 0.046813948179614755 23 0.04378697797898339 24 0.04207415877175401 11 0.040230333312776596 12 0.03858567468772106 21 0.03818525166571913 9 0.035478374211858996 10 0.03495440968033305 15 0.034707612096679864 6 0.031218423868131253 8 0.029797845555846376 7 0.029633458510302746 4 0.02954180554368836 1 0.02938233674515337 2 0.029017063334654328 5 0.028965484391248894 3 0.02657254445100107 13 0.017560202511560683 14 0.014035831248297187 __DUMMY__ 0.0035472498382692103 false 1.0
978 18 0.07381882073584413 10 0.07085037040150854 22 0.06250427888929351 11 0.05682978720357067 21 0.05646401098424308 19 0.05432858577133724 14 0.05221390427651772 9 0.05087628324196683 0 0.04743308667681334 17 0.04517122528597719 13 0.04089145005253442 12 0.03941051419626894 15 0.03698673212270262 20 0.036936712638148815 23 0.03026362433111323 16 0.027681940585000262 4 0.025268340335883432 24 0.0251710764576472 5 0.02486781996292045 6 0.023028154788165223 3 0.021471394743893396 8 0.0213097072411654 7 0.021301176485068428 1 0.021151214726421286 2 0.020785853746231354 __DUMMY__ 0.012983934119763342 false 0.0
737 20 0.117982 19 0.093783 24 0.089009 18 0.077092 23 0.067941 15 0.054975 16 0.052778 21 0.045349 14 0.039689 12 0.038074 17 0.035928 10 0.033201 22 0.031879 3 0.027554 4 0.023409 5 0.023123 8 0.021513 1 0.021278 7 0.021117 2 0.021048 9 0.02062 13 0.020497 6 0.017374 11 0.004788 20 0.117982 19 0.093783 24 0.089009 18 0.077092 23 0.067941 15 0.054975 16 0.052778 21 0.045349 14 0.039689 12 0.038074 17 0.035928 10 0.033201 22 0.031879 3 0.027554 4 0.023409 5 0.023123 8 0.021513 1 0.021278 7 0.021117 2 0.021048 9 0.02062 13 0.020497 6 0.017374 11 0.004788 20 0.08541264469397887 19 0.07764811639824283 18 0.07027364383783263 24 0.06792063917207951 23 0.056697560480618685 21 0.05305546997379801 16 0.04497302128831928 15 0.04460881132439729 22 0.044483509555775624 12 0.04281986794586953 14 0.04137809214846679 10 0.04009244289691477 17 0.03934865863731769 9 0.029166336060449854 13 0.028784452963552462 11 0.026288095159722073 3 0.025498246241691773 4 0.025155607460862567 5 0.024779936260081795 8 0.02216730172962263 7 0.021969745439046496 1 0.02194185238308157 2 0.021663887106914657 6 0.020815938992388094 0 0.01663890521917512 __DUMMY__ 0.006417216629799323 false 1.0
979 21 0.0768742180326044 19 0.07123962494018882 18 0.0642255682797086 22 0.06392527762455379 12 0.06223079282240459 20 0.05892967086238319 11 0.05760763737134774 24 0.05422740929501658 23 0.04737370534013567 10 0.04423559104413847 13 0.043021515396708745 14 0.042373674603527166 17 0.04092675769072105 16 0.03857084483517842 9 0.032718217513146984 0 0.030812429680023602 15 0.022427586229566105 4 0.020412275581626275 5 0.01994554720517581 __DUMMY__ 0.01693644051525505 6 0.016768450809991273 3 0.01597217781723221 7 0.01478328033857516 8 0.014717073868383506 1 0.014539513709108892 2 0.01420471859329781 false 0.0
738 19 0.113917 16 0.089703 18 0.082213 20 0.081639 17 0.06921 21 0.068783 22 0.065422 11 0.060341 24 0.055092 12 0.05313 10 0.052811 23 0.046646 0 0.044804 15 0.031155 14 0.027573 9 0.025176 13 0.020192 4 0.004219 5 0.004142 3 0.001959 6 0.001271 7 3.66E-4 1 1.67E-4 8 7.0E-5 19 0.113917 16 0.089703 18 0.082213 20 0.081639 17 0.06921 21 0.068783 22 0.065422 11 0.060341 24 0.055092 12 0.05313 10 0.052811 23 0.046646 0 0.044804 15 0.031155 14 0.027573 9 0.025176 13 0.020192 4 0.004219 5 0.004142 3 0.001959 6 0.001271 7 3.66E-4 1 1.67E-4 8 7.0E-5 19 0.09134506939826721 18 0.07268063427878267 20 0.06818112667300477 21 0.06765377124552457 16 0.06735088130037872 22 0.06300189277001582 17 0.05835784159342585 11 0.057041468986690505 12 0.053598631139101904 24 0.05193699638897629 10 0.04857671356779496 23 0.04660701082115025 0 0.040947001054780406 14 0.03174052191963507 9 0.030352784312546486 15 0.028170032195954098 13 0.028082229400142936 4 0.014115781143584798 5 0.013843976982166844 6 0.011394783628848121 3 0.011022827926467171 7 0.010067582033479442 8 0.009916403243217 1 0.009859950578490673 2 0.009596924434436811 __DUMMY__ 0.004557162983136744 false 1.0
739 16 0.105061 17 0.091318 19 0.079843 0 0.062781 18 0.056437 20 0.05322 22 0.05025 11 0.046636 23 0.043598 24 0.042145 12 0.040706 21 0.037848 15 0.032807 9 0.029473 10 0.027784 6 0.02665 8 0.024949 1 0.024798 7 0.024654 2 0.024417 4 0.023352 5 0.023184 3 0.02034 13 0.00775 16 0.105061 17 0.091318 19 0.079843 0 0.062781 18 0.056437 20 0.05322 22 0.05025 11 0.046636 23 0.043598 24 0.042145 12 0.040706 21 0.037848 15 0.032807 9 0.029473 10 0.027784 6 0.02665 8 0.024949 1 0.024798 7 0.024654 2 0.024417 4 0.023352 5 0.023184 3 0.02034 13 0.00775 16 0.08122777251601607 17 0.07755547025646574 19 0.06799692113594903 0 0.05788363094049188 18 0.05664981908636476 22 0.05218707103086219 11 0.04644187721007993 20 0.04580763344129391 23 0.0416852107327598 21 0.04106248924734383 12 0.03890745672957344 24 0.03857793483178694 9 0.036375415702049364 10 0.03474602993467652 15 0.0323135564894703 6 0.02993215869151402 8 0.028231171325985554 7 0.028029342451396676 1 0.028014626666401206 4 0.02792357396701412 2 0.027603220609285262 5 0.02758768915724203 3 0.02465157993981288 13 0.015066772024740334 14 0.011330097098508423 __DUMMY__ 0.002211478782915934 false 1.0
980 19 0.06535627071161333 18 0.06408858734037128 20 0.06281725890448417 21 0.05789603495605536 24 0.05431684347278318 22 0.052376974100977323 23 0.049918999624387284 12 0.0456902480901269 10 0.04287040138791799 14 0.04232749696975268 17 0.04062272112382 11 0.04001632981819875 16 0.03892560651413691 15 0.037931243705955166 13 0.034059735866086314 9 0.03404786480252869 4 0.026892036168398428 0 0.026488922947941352 5 0.026441192358467785 3 0.02456258643323864 6 0.023718358448184245 8 0.023109085896565282 7 0.023061158142817804 1 0.022878851160804563 2 0.022584683266365407 __DUMMY__ 0.01700050778802108 false 0.0
981 0 0.05928139118642758 17 0.05924306149844355 22 0.058395023255607 9 0.05756983168952222 18 0.050327234989910284 11 0.04576127842509002 10 0.0445701094253068 6 0.04443283114173661 4 0.04388660975790705 5 0.043371970794829864 8 0.04314502342981269 7 0.043083481645365004 1 0.0429547263585735 2 0.0423851564449847 3 0.04087586860296397 19 0.04046901211585256 21 0.04007844324047471 16 0.040073261989292806 23 0.03441382375442028 12 0.02511875594144264 24 0.02461585449844244 20 0.01834396678544112 15 0.018238004845250014 14 0.014725586969399301 13 0.013331809388739168 __DUMMY__ 0.011307881824763942 false 0.0
740 20 0.102876 24 0.086679 23 0.079553 19 0.078412 12 0.069663 16 0.061838 21 0.05405 18 0.05229 13 0.046557 15 0.045118 14 0.035195 17 0.033965 22 0.026999 4 0.025439 5 0.025348 3 0.024243 11 0.024058 6 0.023353 8 0.023278 2 0.023038 7 0.022763 1 0.022602 10 0.011267 0 0.001418 20 0.102876 24 0.086679 23 0.079553 19 0.078412 12 0.069663 16 0.061838 21 0.05405 18 0.05229 13 0.046557 15 0.045118 14 0.035195 17 0.033965 22 0.026999 4 0.025439 5 0.025348 3 0.024243 11 0.024058 6 0.023353 8 0.023278 2 0.023038 7 0.022763 1 0.022602 10 0.011267 0 0.001418 20 0.08244133091151375 19 0.07322263644318902 24 0.07135632044201644 23 0.0647973228356031 12 0.060262887605953934 21 0.0593425619264032 18 0.05782305193860025 16 0.05103345456132773 22 0.04196093173309738 13 0.040730203431633354 15 0.03837269411333643 17 0.0378391332373023 14 0.03771988475024991 11 0.03477477037589389 10 0.02634080318457868 4 0.02552012315207632 5 0.0252137757654257 3 0.02338660549505644 6 0.02279401875356766 8 0.02221034049305643 7 0.021964917379823572 2 0.021812760242883554 1 0.02177382648875147 9 0.016875818400972784 0 0.014656104920581486 __DUMMY__ 0.005773721417105379 false 1.0
982 19 0.06572714165073135 18 0.06530988822084033 20 0.0639271827914345 21 0.05714616259978149 24 0.053978312962135115 22 0.051799351400972166 23 0.04937878912305553 12 0.04505599881475683 14 0.044945955640412705 10 0.04423897933660303 15 0.04137320149928184 17 0.040526103115874526 11 0.03948614688604801 16 0.03925609309864085 13 0.035014459932518976 9 0.033717459806866676 4 0.02604352595710047 0 0.025940515818158805 5 0.0255990035676518 3 0.023801389656482635 6 0.022845321520919636 8 0.022298014950824372 7 0.022243147282371617 1 0.022057392857153597 2 0.021770799501264745 __DUMMY__ 0.016519662008118448 false 0.0
983 19 0.07315123686162393 20 0.06893966272148658 18 0.06772307988287976 21 0.06654941575555877 24 0.05864943624037374 22 0.05734972923400058 12 0.05161651880761189 23 0.05023287619613771 11 0.04585736208592512 14 0.04406033342042947 10 0.04384950682122298 16 0.04112135267575916 17 0.040253390684769054 13 0.03582286847889117 15 0.03499993483417739 9 0.031392216679741874 0 0.024584140310520915 4 0.02206517928400185 5 0.021573301535148068 3 0.019329387052557396 6 0.018087662438086613 7 0.017290622929634007 8 0.017288648388112417 1 0.017032659351220236 2 0.01672556144397192 __DUMMY__ 0.014453915886157359 false 0.0
741 23 0.081055 12 0.069557 24 0.067324 21 0.064185 13 0.049211 4 0.048203 5 0.047798 6 0.047147 20 0.045366 1 0.0441 7 0.043949 8 0.04388 2 0.043751 3 0.04253 19 0.042493 22 0.03929 11 0.028989 16 0.028041 17 0.026467 18 0.024676 14 0.024228 9 0.02172 0 0.014601 15 0.011438 23 0.081055 12 0.069557 24 0.067324 21 0.064185 13 0.049211 4 0.048203 5 0.047798 6 0.047147 20 0.045366 1 0.0441 7 0.043949 8 0.04388 2 0.043751 3 0.04253 19 0.042493 22 0.03929 11 0.028989 16 0.028041 17 0.026467 18 0.024676 14 0.024228 9 0.02172 0 0.014601 15 0.011438 21 0.06943018942412725 23 0.06693921675796095 12 0.06686462051517626 24 0.059266341516690024 19 0.050648206364819946 22 0.05010190552187849 13 0.04838748797350222 20 0.046753373565788625 11 0.04190606705396556 18 0.040131997551533044 4 0.03832324419326494 5 0.03784494466435623 6 0.03640620642238713 7 0.03341969713378725 1 0.0333340884208226 8 0.033323237722773014 2 0.032961893701092974 3 0.032651216302172 14 0.032221720056331844 17 0.03160411545924963 16 0.028979850718587656 9 0.02788787618168278 0 0.022405901026725374 10 0.018932391322740705 15 0.014759786484296688 __DUMMY__ 0.0045144239442868285 false 1.0
984 19 0.0653565166119855 21 0.06478419048924429 18 0.0641649471973598 22 0.061753249632216546 20 0.05663529932373323 24 0.05319738660110554 11 0.04765682531133429 23 0.04624300665855421 12 0.044730775907753026 10 0.04431701525545966 17 0.04156013949326628 9 0.03952123601141806 14 0.03876766604520115 16 0.035175826464641645 0 0.03040046128853571 13 0.02925407513626535 15 0.028808056094807705 4 0.027602454448410016 5 0.027054239985700813 3 0.024853386134853547 6 0.023789474930816866 8 0.023052959493910837 7 0.023025802770497768 1 0.02276711595134004 2 0.022388482131164615 __DUMMY__ 0.013139410630423396 false 0.0
500 18 0.095989 10 0.089638 19 0.076946 11 0.075366 21 0.075166 22 0.072077 14 0.059803 12 0.059647 0 0.055699 13 0.055375 17 0.052917 20 0.052124 9 0.046384 16 0.039616 15 0.030572 24 0.022718 23 0.022434 4 0.005765 5 0.005497 6 0.003459 7 0.001011 1 7.34E-4 8 5.4E-4 3 5.24E-4 18 0.095989 10 0.089638 19 0.076946 11 0.075366 21 0.075166 22 0.072077 14 0.059803 12 0.059647 0 0.055699 13 0.055375 17 0.052917 20 0.052124 9 0.046384 16 0.039616 15 0.030572 24 0.022718 23 0.022434 4 0.005765 5 0.005497 6 0.003459 7 0.001011 1 7.34E-4 8 5.4E-4 3 5.24E-4 18 0.08645242659343272 10 0.08065388705649833 21 0.07109250137052665 11 0.06982601177544796 19 0.0692879273568006 22 0.06910757935495529 14 0.05721411282092379 12 0.05562015677467244 13 0.052096667072484296 0 0.05120675451327345 17 0.048993862529788136 20 0.04740011402532373 9 0.046527866766630614 16 0.03485890315543355 15 0.03124841911665543 23 0.02668326160652892 24 0.025901835867040587 4 0.012680103461878617 5 0.012346153594289453 6 0.010223122814209304 7 0.007805697002294747 3 0.007699197030051732 1 0.007591609415761718 8 0.007575111480154541 2 0.007081711593380804 __DUMMY__ 0.002825005851562413 false 1.0
742 22 0.05733621294943059 9 0.05645930760625986 18 0.05522087066047278 10 0.05067048862588578 0 0.047190688560706864 17 0.04639091603621963 21 0.043843932597135926 4 0.04235452292145744 11 0.042069585780623524 5 0.04187117222098593 6 0.040968374022985934 19 0.040880591187578724 8 0.04028064391608323 7 0.04027381741564317 1 0.040148853342717054 3 0.04000775406556837 2 0.03960971278165105 23 0.03685550689438214 14 0.030154111721297304 24 0.02906983533693722 15 0.027148325634655586 16 0.02694814518117399 20 0.02610058289839009 12 0.024733141630968007 13 0.02031790810562464 __DUMMY__ 0.013094997905165315 false 0.0
985 19 0.06809111025108186 18 0.06263182149871224 21 0.06118978651718593 22 0.058970022463746 20 0.05224668151241316 11 0.0521986513746399 17 0.05075808422672159 12 0.0495181301971326 16 0.04872803037578992 24 0.04544578887983404 23 0.045014616265771135 10 0.04486981280652682 0 0.04025225155877991 9 0.03653881418075638 14 0.03268208420667601 13 0.03191236693638155 15 0.026380981677438454 4 0.02472585558624212 5 0.024294097628842586 6 0.022775477294928376 7 0.021138392307270566 8 0.02112756763401296 3 0.021094646500715238 1 0.020933829861699418 2 0.020581375823108452 __DUMMY__ 0.015899722433592875 false 0.0
743 22 0.0727999515026754 21 0.06840821928523942 11 0.06150729877592161 18 0.06061090441045227 19 0.05706838508017809 10 0.050622801116026635 9 0.05010235772199984 17 0.04502756837974702 0 0.04356453029935828 12 0.041037499409487734 24 0.04093096601425246 23 0.03766466983492437 20 0.03530428881901411 14 0.03399684577643889 4 0.030825487086093867 5 0.030298963313257165 16 0.029304577436230515 6 0.02734739472594353 3 0.027179982330864588 7 0.025997533779862535 8 0.025953090936022175 1 0.02571660289077146 2 0.02527576314905045 13 0.025021032970672406 15 0.017269657599740428 __DUMMY__ 0.011163627355774712 false 0.0
501 21 0.081885 22 0.069299 12 0.061897 11 0.061225 18 0.054969 10 0.050804 9 0.050797 13 0.049658 23 0.044322 14 0.043891 24 0.042414 19 0.041832 4 0.036915 5 0.035893 0 0.033933 6 0.032399 3 0.030622 20 0.030536 8 0.029426 7 0.029409 1 0.029167 2 0.028789 17 0.025361 15 0.004556 21 0.081885 22 0.069299 12 0.061897 11 0.061225 18 0.054969 10 0.050804 9 0.050797 13 0.049658 23 0.044322 14 0.043891 24 0.042414 19 0.041832 4 0.036915 5 0.035893 0 0.033933 6 0.032399 3 0.030622 20 0.030536 8 0.029426 7 0.029409 1 0.029167 2 0.028789 17 0.025361 15 0.004556 21 0.07576676058637577 22 0.0639500333130691 12 0.06377489010891424 11 0.05973077962786574 18 0.056069821729907245 13 0.05328652655326911 10 0.04974395454311289 19 0.045982840347889055 9 0.04514593034459869 14 0.044626944820525205 23 0.043621788672817755 24 0.04015036028903556 0 0.036392887632821155 20 0.034624384923311435 4 0.03289136019951111 5 0.03220033035580525 17 0.031682834993513445 6 0.02983323247283915 3 0.026692215794028053 7 0.026636992540708355 8 0.02662741079951111 1 0.026469375593365176 2 0.02610596669780519 16 0.012989109172699255 15 0.01189299090520476 __DUMMY__ 0.00311027698149627 false 1.0
986 19 0.06705981623432594 20 0.06605273273279742 18 0.06555973551624936 21 0.058292025724622186 24 0.05571961642952841 22 0.051700398455327624 23 0.050300319987556186 12 0.046409291505855696 14 0.04536111638623303 10 0.04349733818918081 15 0.04141401176469916 17 0.03995344852802608 16 0.039707269216372056 11 0.03945512666605216 13 0.03566919922742551 9 0.03247776823397375 4 0.02538459045984807 5 0.02493205296814979 0 0.02457663831694572 3 0.023135600632279995 6 0.022046092255168067 8 0.02150104914739808 7 0.02145501507914823 1 0.02126184960385487 2 0.020980976409394524 __DUMMY__ 0.01609692032958731 false 0.0
744 21 0.08074849905309106 12 0.06976674481258503 22 0.0656678941046315 11 0.0644264892337756 18 0.060866414502076374 19 0.06044118059035527 13 0.05486660219155941 10 0.048000002555214444 14 0.04679992956227991 20 0.0464879037341086 24 0.04596660443041907 23 0.043644032090417555 17 0.03713388185438739 9 0.03626997782283833 0 0.034922354978668635 16 0.027919751512849002 4 0.022559659454552423 5 0.022113585699150014 6 0.0195157503967662 15 0.016499355295967574 3 0.016473585115230067 7 0.016330904640652746 8 0.016251097600738583 1 0.016124681737042845 2 0.015790885167832454 __DUMMY__ 0.01441223186280982 false 0.0
502 16 0.112164 17 0.094698 19 0.080653 0 0.068545 18 0.058443 20 0.052662 22 0.047498 11 0.045755 23 0.041333 12 0.039779 24 0.035899 15 0.035104 21 0.033088 10 0.031409 9 0.030385 6 0.026059 7 0.02412 8 0.024006 1 0.023772 2 0.023526 4 0.021751 5 0.021384 3 0.018792 13 0.009177 16 0.112164 17 0.094698 19 0.080653 0 0.068545 18 0.058443 20 0.052662 22 0.047498 11 0.045755 23 0.041333 12 0.039779 24 0.035899 15 0.035104 21 0.033088 10 0.031409 9 0.030385 6 0.026059 7 0.02412 8 0.024006 1 0.023772 2 0.023526 4 0.021751 5 0.021384 3 0.018792 13 0.009177 16 0.0866643735679862 17 0.08155948287486059 19 0.06794090065859117 0 0.06345737036462193 18 0.0573110441773134 22 0.0507089140256722 11 0.04649796366299951 20 0.04343727109874326 23 0.039399055773022815 9 0.037651933896658 12 0.03754996254680872 21 0.03711726965513577 10 0.03686123567339238 24 0.03319179233218829 15 0.03251513891561901 6 0.0303092349844081 8 0.02837126990438826 7 0.02835145380661071 1 0.028120782777797653 2 0.02775433034108885 4 0.027413478484791823 5 0.02699104661765168 3 0.024109766907643472 13 0.014612756895105281 14 0.009129110141859418 __DUMMY__ 0.0029730599150413883 false 1.0
987 18 0.07180333778895961 10 0.06138380739313349 19 0.058858925379293894 22 0.05537252386828604 14 0.05510181984116757 21 0.054173771304759595 20 0.0506603104412731 15 0.046925218377827004 11 0.04657947007892974 9 0.04254084731213422 17 0.04198636321250791 13 0.04103220699562306 12 0.04024608388881975 23 0.038284721007601004 24 0.03694030058452591 0 0.036027712214176486 16 0.03232296353317695 4 0.02461514294553961 5 0.024236284119449503 6 0.021947551366451948 3 0.021735270474068064 8 0.020890945018350305 7 0.020842086232011763 1 0.020683929087064172 2 0.02038533801626691 __DUMMY__ 0.014423069518602382 false 0.0
503 10 0.101153 18 0.100001 11 0.077802 19 0.07372 22 0.071728 21 0.068695 14 0.064231 0 0.062919 13 0.056313 17 0.055928 12 0.052718 9 0.052448 20 0.043798 16 0.038227 15 0.036499 23 0.015622 24 0.010972 4 0.005656 5 0.005052 6 0.003743 7 0.001051 1 8.54E-4 8 8.53E-4 3 1.8E-5 10 0.101153 18 0.100001 11 0.077802 19 0.07372 22 0.071728 21 0.068695 14 0.064231 0 0.062919 13 0.056313 17 0.055928 12 0.052718 9 0.052448 20 0.043798 16 0.038227 15 0.036499 23 0.015622 24 0.010972 4 0.005656 5 0.005052 6 0.003743 7 0.001051 1 8.54E-4 8 8.53E-4 3 1.8E-5 18 0.08907756376647832 10 0.08750101478687877 11 0.06962579512932865 22 0.06868364952362788 19 0.06670259816650907 21 0.0654996834419066 14 0.05942931518407071 0 0.055330520461787616 9 0.050998939608050936 17 0.050904310273747956 13 0.05035964697439926 12 0.04872815105203794 20 0.04231960964181433 15 0.035956023307724905 16 0.033690634683280894 23 0.022558472891953785 24 0.018823027915645878 4 0.013492561894666489 5 0.013000771724103282 6 0.011249702115217818 7 0.008905960782445205 8 0.008807396871472894 1 0.008731249761191537 3 0.008584192260213777 2 0.008148724201986562 __DUMMY__ 0.0028904835794587463 false 1.0
745 9 0.05620659426327911 22 0.05202254543895769 4 0.05157069191814444 6 0.05116985445117159 5 0.05109939246173277 7 0.050647663611578964 8 0.05062564656550607 1 0.05059372847954881 2 0.04995607150936546 3 0.049545930370514336 17 0.04768622148769029 0 0.04641140630220472 18 0.04324104872898646 23 0.04281225551331872 21 0.03718687702571088 10 0.03604483255208151 19 0.033543115167729835 11 0.03350536996760184 24 0.03253820533343431 16 0.029086135310524164 12 0.021691082448886272 20 0.021638229711939447 15 0.019945835122064867 14 0.016219462571076364 __DUMMY__ 0.01270310770550692 13 0.012308695981444236 false 0.0
746 9 0.059588535667853916 22 0.05612150646778559 0 0.05157189443960212 17 0.05111784033448909 4 0.049464669184396376 6 0.04903155123870841 5 0.04894438682746192 8 0.04853391712323774 7 0.04851506799135354 1 0.0484023448628895 2 0.04778581356791426 3 0.04745384777425164 18 0.04697407881139002 10 0.041764360553789015 11 0.03807933989036043 23 0.038038568029568856 21 0.03796148008574501 19 0.03538654891608496 16 0.030409404332884516 24 0.028598788551688126 15 0.020125592885353795 12 0.019178811412341814 20 0.018981630387171326 14 0.01685260668586666 __DUMMY__ 0.01080169448091937 13 0.010315719496892155 false 0.0
988 21 0.08120635269734773 12 0.06862701387914387 19 0.06661930441544896 22 0.06548123028737707 18 0.06192939262266694 11 0.0619107465603317 20 0.05323274354405516 24 0.05137517297066359 13 0.05010602636805316 23 0.04631929153370972 10 0.04459743932617491 14 0.04406020890568658 17 0.03859432712681867 9 0.03348063983099493 16 0.03316845884541587 0 0.03215537352270514 4 0.020929612388248222 5 0.02046436201607828 6 0.017514540850839946 __DUMMY__ 0.017360691553066743 15 0.017289175175437144 3 0.015406562099641434 7 0.014759942660602213 8 0.014682484251555775 1 0.014526424016547863 2 0.014202482551388325 false 0.0
504 0 0.086362 17 0.079153 9 0.065464 22 0.062634 11 0.058844 10 0.055953 18 0.054683 16 0.05331 6 0.045879 8 0.042952 7 0.042872 1 0.042483 4 0.042216 2 0.041926 5 0.041447 19 0.037658 3 0.037161 21 0.033118 12 0.024042 23 0.021657 13 0.011864 15 0.011129 14 0.004095 24 0.003097 0 0.086362 17 0.079153 9 0.065464 22 0.062634 11 0.058844 10 0.055953 18 0.054683 16 0.05331 6 0.045879 8 0.042952 7 0.042872 1 0.042483 4 0.042216 2 0.041926 5 0.041447 19 0.037658 3 0.037161 21 0.033118 12 0.024042 23 0.021657 13 0.011864 15 0.011129 14 0.004095 24 0.003097 0 0.07280770499445892 17 0.06960739203598335 9 0.06140014250698783 22 0.06049834684331925 18 0.0527180045567759 11 0.0521813549301821 10 0.050084039405483415 16 0.047388613649159445 6 0.04520431614918246 8 0.043114516562466336 4 0.043082682361990206 7 0.043040529236097524 1 0.04279139528743249 5 0.042448881631133376 2 0.04222382170050366 19 0.039558853451482315 3 0.03907338861178765 21 0.03663262121667215 23 0.028386300179487466 12 0.024752881930706072 15 0.01503997717728903 24 0.014333415830047614 13 0.012530923958257213 20 0.009808550459917324 14 0.009334460800690812 __DUMMY__ 0.001956884532506378 false 1.0
989 19 0.06876924143516773 18 0.06438626410720186 21 0.05888732524413917 20 0.05864161767132614 22 0.055834604383884635 24 0.049491684467119615 17 0.047447726857213574 16 0.047038243631117096 12 0.046724713356865774 23 0.04666502088138617 11 0.04647683334872802 10 0.0447720129313923 14 0.03809399528874997 9 0.03487523467568776 15 0.03450993534090343 0 0.03422874936924553 13 0.03216587425628533 4 0.02454876333726735 5 0.02410876780825646 6 0.022055057589576457 3 0.021678119313398338 8 0.020993046510460422 7 0.020973067805235196 1 0.02077230303318317 2 0.02044459899582333 __DUMMY__ 0.015417198360385399 false 0.0
505 19 0.106709 18 0.080558 20 0.078883 16 0.078527 21 0.075543 22 0.06684 17 0.063312 11 0.062692 12 0.060501 24 0.055003 10 0.052279 23 0.046877 0 0.043172 14 0.031829 13 0.029375 9 0.026785 15 0.026602 4 0.004682 5 0.004352 3 0.001981 6 0.00149 8 7.15E-4 1 6.57E-4 7 6.34E-4 19 0.106709 18 0.080558 20 0.078883 16 0.078527 21 0.075543 22 0.06684 17 0.063312 11 0.062692 12 0.060501 24 0.055003 10 0.052279 23 0.046877 0 0.043172 14 0.031829 13 0.029375 9 0.026785 15 0.026602 4 0.004682 5 0.004352 3 0.001981 6 0.00149 8 7.15E-4 1 6.57E-4 7 6.34E-4 19 0.08871474058691987 21 0.07320337585143165 18 0.07245821524702405 20 0.06813958367539434 22 0.064084350232078 16 0.06101870756443254 12 0.05972910989012901 11 0.059071907053263026 17 0.054311812352083766 24 0.05281907725278356 10 0.048568189635533325 23 0.0469320211595036 0 0.03894671558117037 14 0.035418561319789064 13 0.03489464379251804 9 0.030177980496637957 15 0.02549020262290571 4 0.013241042692712092 5 0.01284587758779395 6 0.010227584054299993 3 0.00971190373432801 8 0.008798485349885605 7 0.008782115409959537 1 0.008667186181972536 2 0.008187824500331634 __DUMMY__ 0.005558786175118837 false 1.0
747 21 0.07452275243659039 22 0.07333402328027468 11 0.06204006773243338 18 0.05775532806837032 19 0.05768578128981933 12 0.048549632784208416 9 0.04762635008657689 10 0.04545382387081271 24 0.044974138098554606 17 0.04325892292300774 0 0.04107151101402035 23 0.03967857319298846 20 0.03676809102959249 14 0.03438685589780518 13 0.030150554880318314 4 0.030051163726118654 5 0.02949740667547851 16 0.02832090631589249 6 0.026505029413690488 3 0.025782201715088614 7 0.024750377029097603 8 0.02469800403663419 1 0.024462420426857482 2 0.02399340309599728 15 0.01332546572995857 __DUMMY__ 0.011357215249813025 false 0.0
506 19 0.102055 20 0.098746 21 0.096955 18 0.081026 12 0.080755 24 0.079612 23 0.065465 22 0.064879 11 0.051068 16 0.04603 13 0.04503 14 0.041853 10 0.037901 17 0.037124 15 0.018742 9 0.018033 0 0.011051 4 0.008429 5 0.00787 3 0.004057 6 0.001961 1 5.47E-4 7 5.14E-4 8 2.96E-4 19 0.102055 20 0.098746 21 0.096955 18 0.081026 12 0.080755 24 0.079612 23 0.065465 22 0.064879 11 0.051068 16 0.04603 13 0.04503 14 0.041853 10 0.037901 17 0.037124 15 0.018742 9 0.018033 0 0.011051 4 0.008429 5 0.00787 3 0.004057 6 0.001961 1 5.47E-4 7 5.14E-4 8 2.96E-4 19 0.08650942558315694 21 0.0831155127005499 20 0.0825064862225028 18 0.07348512798777114 12 0.06906755659218497 24 0.06814554394838529 22 0.06099457488292803 23 0.05774037106666844 11 0.05003693021895317 14 0.04448053443438248 13 0.04404605758344419 16 0.04261005109203421 10 0.041297502470245946 17 0.0377969130232283 15 0.026094703951038 9 0.024292817906811863 0 0.018257031590574572 4 0.015087667560476494 5 0.014579516620936409 3 0.011195855696931375 6 0.010003195220734484 7 0.008601245550363379 8 0.008484918964297495 1 0.008481197973411875 2 0.00809352794681248 __DUMMY__ 0.004995733211175563 false 1.0
748 9 0.056185198527043095 22 0.05199579387682458 4 0.05158842266722292 6 0.05118779632714298 5 0.05111745054904001 7 0.05066553796692854 8 0.050643226686941815 1 0.050612021746798214 2 0.04997418079166073 3 0.04956345806048916 17 0.04766403569797702 0 0.04637675528247404 18 0.04321647477617998 23 0.04284867425635255 21 0.03718321422679083 10 0.03600564408792692 19 0.033531600678296816 11 0.03347426875632187 24 0.03256811724591241 16 0.02907812481945105 12 0.021710205955053633 20 0.021658385723779594 15 0.019945561178165757 14 0.01621574701244335 __DUMMY__ 0.012666485884481314 13 0.01232361721830106 false 0.0
507 19 0.106503 18 0.080179 20 0.078844 16 0.078748 21 0.075148 22 0.067286 17 0.063327 11 0.063066 12 0.060626 24 0.055008 10 0.052747 23 0.046046 0 0.043885 14 0.03221 13 0.029751 15 0.026985 9 0.026312 4 0.004759 5 0.004324 3 0.001976 6 0.001432 8 4.43E-4 7 3.02E-4 1 9.4E-5 19 0.106503 18 0.080179 20 0.078844 16 0.078748 21 0.075148 22 0.067286 17 0.063327 11 0.063066 12 0.060626 24 0.055008 10 0.052747 23 0.046046 0 0.043885 14 0.03221 13 0.029751 15 0.026985 9 0.026312 4 0.004759 5 0.004324 3 0.001976 6 0.001432 8 4.43E-4 7 3.02E-4 1 9.4E-5 19 0.0885841009554659 21 0.07299112959456736 18 0.07226317667161992 20 0.06805868839688779 22 0.06428983463779378 16 0.06112709581989722 12 0.059759789418047424 11 0.05925810381404931 17 0.054340977444787386 24 0.05277584068572621 10 0.048792518772692445 23 0.04652373736766471 0 0.039317173036572485 14 0.03557725123146865 13 0.035055333775428424 9 0.02998513496908878 15 0.025661066714148254 4 0.013291412998847243 5 0.012848390873628967 6 0.010222109740022873 3 0.009723806215615083 8 0.008693882467634709 7 0.008649884831591651 1 0.008429041160109526 2 0.008207238553250175 __DUMMY__ 0.0055732798533937745 false 1.0
749 21 0.07452275243659039 22 0.07333402328027466 11 0.06204006773243338 18 0.05775532806837032 19 0.05768578128981933 12 0.048549632784208416 9 0.04762635008657689 10 0.04545382387081272 24 0.044974138098554606 17 0.04325892292300774 0 0.04107151101402035 23 0.03967857319298846 20 0.03676809102959249 14 0.03438685589780518 13 0.030150554880318314 4 0.030051163726118654 5 0.02949740667547851 16 0.02832090631589249 6 0.026505029413690488 3 0.025782201715088614 7 0.024750377029097603 8 0.02469800403663419 1 0.024462420426857482 2 0.02399340309599728 15 0.01332546572995857 __DUMMY__ 0.011357215249813025 false 0.0
508 20 0.117789 19 0.093035 24 0.088143 18 0.077732 23 0.067783 15 0.05492 16 0.052727 21 0.045051 14 0.040071 12 0.037572 17 0.035714 10 0.033246 22 0.032821 3 0.027845 5 0.023437 4 0.023229 8 0.021602 7 0.02152 1 0.021496 2 0.021358 9 0.020732 13 0.020028 6 0.017477 11 0.00467 20 0.117789 19 0.093035 24 0.088143 18 0.077732 23 0.067783 15 0.05492 16 0.052727 21 0.045051 14 0.040071 12 0.037572 17 0.035714 10 0.033246 22 0.032821 3 0.027845 5 0.023437 4 0.023229 8 0.021602 7 0.02152 1 0.021496 2 0.021358 9 0.020732 13 0.020028 6 0.017477 11 0.00467 20 0.08605677798346299 19 0.07852746100549153 18 0.07147179230911883 24 0.067592889022511 23 0.056576483865187925 21 0.05297644392859603 16 0.04630364437473957 22 0.04525222700321997 15 0.04418805093083357 12 0.04257232207165514 14 0.04062931822800656 10 0.04038994567962048 17 0.04037921335175727 9 0.029181785167092706 13 0.027783914989143857 11 0.026504359622289475 3 0.025166379597713492 4 0.024626370338891045 5 0.02445945093512233 8 0.021795134720129585 7 0.02174512015689271 1 0.021627221141336087 2 0.021378951771162242 6 0.020454430182367454 0 0.017299134790236197 __DUMMY__ 0.00506117683342191 false 1.0
509 17 0.07745 16 0.069194 0 0.064353 19 0.054317 22 0.053449 18 0.0517 9 0.049823 6 0.041463 8 0.040986 7 0.040582 1 0.040529 11 0.040483 2 0.040343 4 0.039515 5 0.039056 3 0.038033 10 0.036021 23 0.035504 24 0.033493 20 0.032643 21 0.030647 15 0.027516 12 0.020565 14 0.002335 17 0.07745 16 0.069194 0 0.064353 19 0.054317 22 0.053449 18 0.0517 9 0.049823 6 0.041463 8 0.040986 7 0.040582 1 0.040529 11 0.040483 2 0.040343 4 0.039515 5 0.039056 3 0.038033 10 0.036021 23 0.035504 24 0.033493 20 0.032643 21 0.030647 15 0.027516 12 0.020565 14 0.002335 17 0.07330214913688231 16 0.06442271988906692 0 0.06249852013991112 22 0.05418979275583485 18 0.05353183095596375 19 0.05336261378394512 9 0.04905963293030154 11 0.04359343933043002 10 0.03948354242262619 6 0.039184561114907125 8 0.03810905521332541 7 0.037842598004859375 1 0.03774386347790768 4 0.037412721184966094 2 0.0373961779495345 5 0.036940946900524234 23 0.03566653146311655 3 0.03496081485613481 21 0.034946394087014124 20 0.03144082900874649 24 0.030813272512623405 15 0.028209738078734645 12 0.026058149597487184 14 0.009409036346213508 13 0.008461775016109905 __DUMMY__ 0.0019592938428330486 false 1.0
990 18 0.07068944409058862 19 0.0626326414002902 20 0.05883454678654854 10 0.055168326732475376 21 0.0538899451275979 14 0.053135801377968146 22 0.052419303665358644 15 0.048525916283438 24 0.04473666758870079 23 0.04313437338590381 11 0.041618489206511414 17 0.04113626684565128 12 0.041103012452390585 13 0.038858226993176904 9 0.03812521427458572 16 0.035858862729325196 0 0.0304239315052126 4 0.02455722036930104 5 0.024149566497805797 3 0.022203513161376337 6 0.0216080284472991 8 0.020946083027921635 7 0.020889736971190648 1 0.020719198561281384 2 0.02043300231509145 __DUMMY__ 0.014202680203008947 false 0.0
991 18 0.07264650756476543 19 0.06185110950069046 10 0.05962313535876801 22 0.05494581022567544 20 0.0548759617282016 21 0.05449738986979515 14 0.05298983896039705 15 0.04605115427623768 11 0.044908433396220256 17 0.04224478581932058 9 0.041170017102583126 24 0.040454471733214446 12 0.04021872068087959 23 0.04006965852197891 13 0.03870337467015228 16 0.03423652025135041 0 0.03423154621178043 4 0.024230554617673993 5 0.023821278930037805 3 0.021649301197773554 6 0.021336484818329268 8 0.0205159278236655 7 0.0204710471394833 1 0.020303443352607652 2 0.01999827073837835 __DUMMY__ 0.01395525551003989 false 0.0
992 18 0.07366306857447635 10 0.07037282001274439 22 0.06229438693019007 11 0.056501519265711155 21 0.05646019840789038 19 0.05452317866876605 14 0.05209889575083694 9 0.05055859139992027 0 0.04703315949674344 17 0.04507508226115277 13 0.040792838482294 12 0.039502306379962895 20 0.037422280492844594 15 0.037086209903822644 23 0.03060138602521588 16 0.02788053746611115 24 0.025680313459405083 4 0.02527507669324087 5 0.02487398056038752 6 0.023017855954757815 3 0.021507229108703327 8 0.021321034992092643 7 0.021311648015300003 1 0.021161109834161695 2 0.020797343112629593 __DUMMY__ 0.013187948750638471 false 0.0
750 21 0.07452275243659039 22 0.07333402328027468 11 0.06204006773243338 18 0.05775532806837032 19 0.05768578128981933 12 0.048549632784208416 9 0.04762635008657689 10 0.04545382387081271 24 0.04497413809855461 17 0.04325892292300774 0 0.04107151101402035 23 0.03967857319298846 20 0.03676809102959249 14 0.03438685589780518 13 0.030150554880318314 4 0.030051163726118654 5 0.02949740667547851 16 0.02832090631589249 6 0.026505029413690488 3 0.025782201715088614 7 0.024750377029097603 8 0.02469800403663419 1 0.024462420426857482 2 0.02399340309599728 15 0.01332546572995857 __DUMMY__ 0.011357215249813025 false 0.0
993 18 0.07612136279476961 10 0.07224541515355738 22 0.06362842415894962 21 0.05866966014969217 11 0.05853504599079571 19 0.057243675890697204 14 0.05268247331692304 9 0.05011691689032675 0 0.0477204857033381 17 0.04591495751248233 13 0.04190989346801195 12 0.04150115734674607 20 0.039126840218145324 15 0.036115696185786764 23 0.029745856718770766 16 0.028999005650649765 24 0.025725163785327944 4 0.02313009214658321 5 0.022721694667637703 6 0.020775919305741433 3 0.019199799398687746 8 0.018971552524127622 7 0.018970342408619785 1 0.018816237423494978 2 0.018450155761231022 __DUMMY__ 0.012962175428905737 false 0.0
751 9 0.058858684850099374 22 0.05466464900113477 4 0.051098760671613466 5 0.05059565562139765 6 0.05030557222213848 7 0.04993094779003047 8 0.049916733969846805 1 0.04984406326096512 3 0.04921020770929357 2 0.04920358220515964 0 0.04740030939901489 17 0.04709098064010136 18 0.04528357009726259 23 0.040461745607944216 10 0.039803573932589396 21 0.03836388546968268 11 0.03538213213628676 19 0.033522900117861625 24 0.030971067633212133 16 0.02645651696326422 15 0.020492977409963524 20 0.020107974793086996 12 0.019529119935050087 14 0.018453476914904128 __DUMMY__ 0.011539381194334102 13 0.011511530453761706 false 0.0
510 19 0.103747 21 0.079957 18 0.078903 20 0.077416 16 0.071661 22 0.067967 12 0.065386 11 0.064648 17 0.058766 24 0.055314 10 0.052141 23 0.046646 0 0.040823 13 0.034748 14 0.034519 9 0.026781 15 0.023265 5 0.005999 4 0.005953 6 0.002411 3 0.00202 7 4.9E-4 8 2.36E-4 1 2.03E-4 19 0.103747 21 0.079957 18 0.078903 20 0.077416 16 0.071661 22 0.067967 12 0.065386 11 0.064648 17 0.058766 24 0.055314 10 0.052141 23 0.046646 0 0.040823 13 0.034748 14 0.034519 9 0.026781 15 0.023265 5 0.005999 4 0.005953 6 0.002411 3 0.00202 7 4.9E-4 8 2.36E-4 1 2.03E-4 19 0.08735228931627013 21 0.07757827063997895 18 0.07177281321635914 20 0.06784676166377943 22 0.06530911013331456 12 0.0642833195206201 11 0.061096519178927826 16 0.05612607081698384 24 0.05372630722086967 17 0.05079399261350497 10 0.04856402819046144 23 0.047043923412818385 13 0.03952167353512787 14 0.037971400374516365 0 0.03688904318804141 9 0.029737272193331783 15 0.02287306148327246 4 0.013301973015124976 5 0.013075194140156359 6 0.009950860305131402 3 0.009005335827487686 7 0.007899514751852976 8 0.007750201649290387 1 0.007638378206713199 2 0.007371299437145675 __DUMMY__ 0.005521385968919031 false 1.0
752 21 0.0703199062532009 12 0.06489345008768967 22 0.05919810257775433 11 0.05815040373420352 18 0.05653522032558091 13 0.05595228517933839 19 0.04917718744362635 10 0.04840683825181865 14 0.045142809668818146 23 0.04274712883577342 9 0.040077640189761794 24 0.03818532272088725 0 0.038028247566445676 20 0.0378451118066404 17 0.036638499743476834 4 0.02926420105599404 5 0.02885723379502871 6 0.02741139747315716 7 0.02407608205933944 8 0.024045734187127438 1 0.02397113059096184 16 0.02368639713598707 2 0.023624208090781872 3 0.023199308477581986 15 0.01809429515082281 __DUMMY__ 0.012471857598201632 false 0.0
994 22 0.06650791096489254 21 0.06536847951252443 19 0.05541681888577264 11 0.054414645337777984 18 0.05440258885081277 17 0.046269307564699595 9 0.045600369675704175 24 0.045496698123475274 12 0.044327902729748195 23 0.04224389707515342 0 0.0408307323373563 10 0.04032830176069757 20 0.037903793111709425 16 0.03420870083219195 4 0.03304942026045908 5 0.03253003611979442 6 0.03044727274773057 14 0.029753676007519665 3 0.02929706180028857 7 0.028915819267677667 8 0.028905138981331176 1 0.028699920119430032 2 0.02822216905622132 13 0.026309364235984033 15 0.017624651614558312 __DUMMY__ 0.012925323026488777 false 0.0
511 19 0.113421 16 0.089618 18 0.08261 20 0.081627 17 0.069393 21 0.06873 22 0.065418 11 0.060008 24 0.053678 12 0.052822 10 0.052746 23 0.047685 0 0.045292 15 0.031294 14 0.027133 9 0.025876 13 0.020399 4 0.004051 5 0.003605 3 0.001947 6 0.001111 7 6.42E-4 1 5.05E-4 8 3.9E-4 19 0.113421 16 0.089618 18 0.08261 20 0.081627 17 0.069393 21 0.06873 22 0.065418 11 0.060008 24 0.053678 12 0.052822 10 0.052746 23 0.047685 0 0.045292 15 0.031294 14 0.027133 9 0.025876 13 0.020399 4 0.004051 5 0.003605 3 0.001947 6 0.001111 7 6.42E-4 1 5.05E-4 8 3.9E-4 19 0.0908480082768501 18 0.07284060270005806 16 0.06802851701733888 20 0.06727906321399349 21 0.06670157471677936 22 0.06285314898153727 17 0.059310480319881724 11 0.0569210543943113 12 0.05278287293390927 24 0.050219069841633476 10 0.04892720053186601 23 0.04662349133299303 0 0.04225548866596497 9 0.031103204379678326 14 0.030856984632996836 15 0.028221453664850876 13 0.027617613964850282 4 0.01420907239520603 5 0.013771682633225734 6 0.011644672036883697 3 0.011175269699570044 7 0.010491624829069082 8 0.010364569031269852 1 0.010311088858384786 2 0.00989129924985446 __DUMMY__ 0.004750891697043028 false 1.0
753 21 0.056720478954333145 22 0.05639080783372357 18 0.05006588390984691 9 0.04777685495459705 11 0.04692963514984726 12 0.0461228781167671 23 0.043236382035587495 10 0.04265493511015917 19 0.041280004674842184 0 0.04063881007010538 4 0.039921399918450916 17 0.03986491632206797 5 0.03948467326569529 6 0.03850062460409251 13 0.03711780483141008 7 0.0364407885876179 8 0.036403099519939454 1 0.036361944028032285 24 0.03632824647011269 2 0.035875542718623 3 0.03564076224214449 14 0.032874274069391196 20 0.030320571896073366 16 0.02366953717539386 15 0.01799365499066973 __DUMMY__ 0.011385488550476011 false 0.0
995 21 0.08220106378912038 22 0.0732992803253825 19 0.06522090743002606 11 0.06452087391335852 18 0.060407753390303943 12 0.05822447488682447 24 0.05262342833913942 20 0.04727472111138148 23 0.04388355283653054 10 0.04381069025190569 17 0.03995121849807913 9 0.03988496704274269 14 0.03967923132074736 13 0.037163247544450356 0 0.03407545088688261 16 0.030473545934582152 4 0.024207082494769612 5 0.02367840024449084 6 0.01994939438385582 3 0.01944026663062013 7 0.01792827334357433 8 0.017829863029937505 1 0.01762136720049275 2 0.017185596264425756 15 0.01474547589180049 __DUMMY__ 0.01471987301457526 false 0.0
754 9 0.059238292121572896 22 0.05523662605050236 4 0.051069850425282524 5 0.05056215827731188 6 0.0502247254111279 7 0.04988265502392261 8 0.04987292628604387 1 0.04978728443483019 3 0.0492244522466983 2 0.04915279573354541 0 0.04769775599519877 17 0.04731023946295045 18 0.0454210703117299 23 0.0401572740177682 10 0.03997320481598508 21 0.03859183869609376 11 0.03574549718393351 19 0.03375453223132413 24 0.030979907170589707 16 0.026478381739443325 15 0.020216657930311032 20 0.019914795165793964 12 0.019124240435635577 14 0.018208165270593483 __DUMMY__ 0.011298061941106864 13 0.010876611620704503 false 0.0
512 17 0.089114 0 0.087269 16 0.07227 22 0.058616 11 0.057885 9 0.056787 18 0.053778 10 0.048736 19 0.046415 6 0.04164 8 0.038087 7 0.038003 1 0.037895 2 0.037536 4 0.036512 5 0.036042 12 0.03293 21 0.032532 3 0.031186 23 0.023811 13 0.015129 15 0.013884 20 0.007815 24 0.006126 17 0.089114 0 0.087269 16 0.07227 22 0.058616 11 0.057885 9 0.056787 18 0.053778 10 0.048736 19 0.046415 6 0.04164 8 0.038087 7 0.038003 1 0.037895 2 0.037536 4 0.036512 5 0.036042 12 0.03293 21 0.032532 3 0.031186 23 0.023811 13 0.015129 15 0.013884 20 0.007815 24 0.006126 17 0.07699022150473382 0 0.07426774798102107 16 0.06117040131233773 22 0.05719771679559948 9 0.055203739332448036 18 0.05227427967401911 11 0.05166603335628642 19 0.045436883255983385 10 0.04541394915151106 6 0.0423915777468105 8 0.0398544334153869 7 0.039766419949147966 1 0.03966058578907626 2 0.0391954507823706 4 0.03913298652232852 5 0.038653986245937404 21 0.03531767019208673 3 0.034850058358764736 12 0.03043010694204663 23 0.029831711887684235 15 0.017488283239997345 24 0.01591768256955063 20 0.015022399703747892 13 0.014544212676176562 14 0.006181616804374585 __DUMMY__ 0.002139844810572346 false 1.0
996 21 0.08100818563296103 12 0.06845821149304694 22 0.06535882059227748 19 0.0618053885210383 11 0.06168770463879207 18 0.0581148864807151 13 0.051209378645244386 24 0.050856660264242105 20 0.048648676746180564 23 0.047426087906857206 14 0.044368570362577374 10 0.04176342423346808 17 0.03674981579140012 9 0.0339803753031288 0 0.03146036719488819 16 0.029628858933840936 4 0.023527900196027594 5 0.023020089403490988 6 0.02027526578334224 __DUMMY__ 0.017995097777328575 3 0.017638637215459326 7 0.01730694429023742 8 0.017218584368911348 1 0.017048648645259196 15 0.016755624990078453 2 0.016687794589206235 false 0.0
513 0 0.084093 17 0.078163 9 0.068252 22 0.06458 11 0.057364 10 0.055681 18 0.054974 16 0.048662 6 0.046597 8 0.04454 7 0.044232 1 0.04422 4 0.043617 2 0.043252 5 0.042985 3 0.039231 19 0.037305 21 0.03372 23 0.020985 12 0.020717 15 0.009974 13 0.008332 24 0.00478 14 0.003744 0 0.084093 17 0.078163 9 0.068252 22 0.06458 11 0.057364 10 0.055681 18 0.054974 16 0.048662 6 0.046597 8 0.04454 7 0.044232 1 0.04422 4 0.043617 2 0.043252 5 0.042985 3 0.039231 19 0.037305 21 0.03372 23 0.020985 12 0.020717 15 0.009974 13 0.008332 24 0.00478 14 0.003744 0 0.07140432020752736 17 0.0685062426014539 9 0.06311895971836783 22 0.06177470956344452 18 0.05287886499925611 11 0.05149066348208689 10 0.05018623663181968 6 0.045645361930771816 16 0.0441525086627006 8 0.04399932133088536 4 0.043960067832114744 7 0.043820117519736176 1 0.04374268715255776 5 0.0433875785971529 2 0.04298537217015224 3 0.040299775164008574 19 0.039091877160272064 21 0.037246269331696565 23 0.028002259602497696 12 0.02288437763442978 24 0.015218007284069548 15 0.01435639154581118 13 0.010784207985246725 20 0.009580450055277105 14 0.009561855769525389 __DUMMY__ 0.0019215160671374942 false 1.0
755 9 0.05621749101131712 22 0.051950519004268655 4 0.05166716848893457 6 0.0512760009764462 5 0.05119622686553074 7 0.0507615181226367 8 0.050739210874218454 1 0.05070845588220979 2 0.050069644216162716 3 0.049654158011279606 17 0.04771891581744765 0 0.04640591398458291 18 0.043162498087080746 23 0.0428712918523124 21 0.037059783844969045 10 0.03593796064723511 19 0.03348774595354773 11 0.033380241010207125 24 0.03256182332973269 16 0.02913441964416896 20 0.021622298699872172 12 0.02158625543914053 15 0.019955934897601342 14 0.01610092333272549 __DUMMY__ 0.012587231172103563 13 0.012186368834267892 false 0.0
997 21 0.0814422961254506 12 0.06742017869995387 22 0.06647164528491581 19 0.06474334427419443 11 0.06237724646667941 18 0.06041667206457991 24 0.05148346460668398 20 0.05103176852072789 13 0.04914147889701028 23 0.046169754202013566 14 0.04404336895453264 10 0.04356118895323539 17 0.03793629013871892 9 0.03428834752842386 0 0.031951102729805246 16 0.03148752473544985 4 0.022008274577615058 5 0.021516654153488426 6 0.018519221646695627 __DUMMY__ 0.01833691243992595 15 0.017029781593864333 3 0.016445078193154536 7 0.015782325248315344 8 0.01569947093614426 1 0.015525530306281026 2 0.015171078722139799 false 0.0
514 18 0.099994 19 0.086219 10 0.081226 20 0.079494 14 0.065323 21 0.061309 22 0.055243 12 0.055022 13 0.054137 11 0.054055 15 0.05352 17 0.049731 16 0.049485 24 0.037802 0 0.037465 23 0.034506 9 0.032755 4 0.004641 5 0.004072 6 0.001737 3 0.001399 7 3.22E-4 8 2.79E-4 1 2.63E-4 18 0.099994 19 0.086219 10 0.081226 20 0.079494 14 0.065323 21 0.061309 22 0.055243 12 0.055022 13 0.054137 11 0.054055 15 0.05352 17 0.049731 16 0.049485 24 0.037802 0 0.037465 23 0.034506 9 0.032755 4 0.004641 5 0.004072 6 0.001737 3 0.001399 7 3.22E-4 8 2.79E-4 1 2.63E-4 18 0.08937973769389028 19 0.07563597566555914 10 0.07499366564223929 20 0.06615014963847926 14 0.06197466086375816 21 0.06176675559688838 22 0.058555369110280975 11 0.054390346766440986 12 0.04996901523740339 13 0.04915275079579085 15 0.04857370535288192 17 0.046197596393786663 16 0.04071989165215403 9 0.038169569938178015 0 0.03787221463421662 24 0.03693059626432723 23 0.034947090836433485 4 0.012221521562270042 5 0.011735219096680006 6 0.009121780025645492 3 0.008851969627070556 7 0.007704829594613687 8 0.007681181657836537 1 0.00756494509528911 2 0.007282739456864149 __DUMMY__ 0.0024567218010215926 false 1.0
998 21 0.08021378807581575 22 0.0681514148822931 19 0.06761880040471074 18 0.06309261291517315 12 0.06261012469958736 11 0.06239090891445166 20 0.05296998653554975 24 0.05205070362072 10 0.04607052388816138 23 0.045234152058953855 13 0.04365717819348511 14 0.04326433802526438 17 0.03921888553664094 9 0.035792044917340435 16 0.033140130200142136 0 0.0324847399713193 4 0.02154998130562207 5 0.02107438298370167 15 0.01870282858524626 6 0.017643053874747 3 0.01668855994143707 __DUMMY__ 0.015661182044083004 7 0.01542483090798677 8 0.015335202308153306 1 0.015147857437420639 2 0.014811787771993191 false 0.0
756 17 0.06566094052906146 0 0.061384084116170905 22 0.054568383490573046 9 0.05257253602708654 16 0.05181102442295907 18 0.05013165661853772 11 0.044695946353600864 19 0.04454898018974724 6 0.04284589508049754 8 0.0412528210581507 4 0.04121807093821121 7 0.041164090012863606 10 0.04116139932024168 1 0.041063961646178176 5 0.040739691026088695 2 0.04051297830585471 3 0.0379485663305079 21 0.0370161615346073 23 0.03571048674379984 12 0.02817757324691076 24 0.0252488374431886 20 0.022364328813199028 15 0.0214325046152372 13 0.014077634777756056 14 0.011660780648970045 __DUMMY__ 0.011030666709999968 false 0.0
757 22 0.06811947826802393 21 0.06677891787741513 11 0.0645560130728182 18 0.0607084561578477 19 0.054043461974289664 10 0.05330319507940849 12 0.04960073530208478 0 0.04728390314987562 9 0.04689839688005483 17 0.0463554019501641 14 0.036730696152859135 13 0.036625851752010954 23 0.03635557750187694 24 0.03478898181954033 20 0.032918118678834714 16 0.03106547632914952 4 0.028703552841668735 5 0.0282677266307668 6 0.026548850941030273 7 0.024134782659767876 8 0.0240936016352461 1 0.02395517207094631 3 0.023826436606657394 2 0.02355260503557709 15 0.01773062467574816 __DUMMY__ 0.013053984956337177 false 0.0
515 17 0.084337 0 0.075054 16 0.070499 22 0.056415 9 0.055032 18 0.053199 19 0.0503 11 0.047088 6 0.042362 10 0.041194 8 0.040804 7 0.040609 1 0.040487 2 0.039691 4 0.038958 5 0.038211 3 0.035561 21 0.031031 23 0.029818 12 0.023815 15 0.020797 20 0.020403 24 0.02016 13 0.004174 17 0.084337 0 0.075054 16 0.070499 22 0.056415 9 0.055032 18 0.053199 19 0.0503 11 0.047088 6 0.042362 10 0.041194 8 0.040804 7 0.040609 1 0.040487 2 0.039691 4 0.038958 5 0.038211 3 0.035561 21 0.031031 23 0.029818 12 0.023815 15 0.020797 20 0.020403 24 0.02016 13 0.004174 17 0.07437929801456515 0 0.06804000326410528 16 0.05989506484284252 22 0.056088998314071076 9 0.05460645822580375 18 0.05191685483753497 19 0.04709538198274408 11 0.045983219125162865 6 0.042956660163481486 10 0.041713711256292606 8 0.0414315541805322 7 0.041290758782907146 1 0.041173390357409995 4 0.04058034513576117 2 0.04050070539056295 5 0.03996703775626336 3 0.03729735843208579 21 0.03441469916414967 23 0.032778299761466685 12 0.02552799710833671 24 0.022850287135980946 15 0.021148223643826704 20 0.021125304957847583 13 0.008983162272568027 14 0.006386102860562149 __DUMMY__ 0.001869123033135148 false 1.0
999 21 0.08245013861639981 22 0.07352274593148257 11 0.0672982924091113 19 0.06394408536946519 18 0.06062412055916498 12 0.06033973136897487 24 0.04922307026577202 10 0.04596863982801504 20 0.04447516363415789 23 0.042115657999701975 17 0.04075239316888993 9 0.040242799789756964 14 0.040057117585087385 13 0.03996499237227401 0 0.03673871439704785 16 0.030386837126236386 4 0.023455904480122934 5 0.022950829800504172 6 0.019563350395852178 3 0.01825754197577678 7 0.017192611185092098 8 0.01707601481447717 1 0.016893751495997016 __DUMMY__ 0.016687563798157938 2 0.01647172777836172 15 0.013346203854120085 false 0.0
516 20 0.118528 19 0.111364 24 0.090782 18 0.080371 21 0.07394 23 0.071169 16 0.063556 12 0.058567 22 0.052773 15 0.048474 14 0.046961 11 0.038132 10 0.036293 17 0.034977 13 0.029702 3 0.008786 4 0.008705 5 0.00799 9 0.007659 8 0.002843 7 0.002613 2 0.002362 1 0.002141 6 0.001312 20 0.118528 19 0.111364 24 0.090782 18 0.080371 21 0.07394 23 0.071169 16 0.063556 12 0.058567 22 0.052773 15 0.048474 14 0.046961 11 0.038132 10 0.036293 17 0.034977 13 0.029702 3 0.008786 4 0.008705 5 0.00799 9 0.007659 8 0.002843 7 0.002613 2 0.002362 1 0.002141 6 0.001312 20 0.09163443506128377 19 0.09095366039927189 18 0.07506392078711277 24 0.07259794386437506 21 0.07124314210516418 23 0.05929121075118638 22 0.05642008470735705 12 0.05535161991520985 16 0.05011743694552807 14 0.04879065164627022 11 0.04412737007609437 15 0.04311908596918017 10 0.042956532283520484 17 0.03690538870876348 13 0.034985701572753235 9 0.020732394074211395 4 0.015052288402381037 5 0.014470189241084128 3 0.013490521671646176 0 0.013130282080821185 8 0.009490374303410114 7 0.00939874504062024 6 0.00930792097476484 1 0.009028254557583533 2 0.009001497926391697 __DUMMY__ 0.0033393469340148585 false 1.0
758 18 0.07576045016108503 21 0.07034056309298244 10 0.06857876274104843 22 0.0677616581895179 11 0.06525933042306674 19 0.06369497803104571 12 0.053362416124560934 14 0.0523394794959124 13 0.047252950408281445 9 0.04537034732676673 0 0.04528017447143815 17 0.04475342840385139 20 0.04420586861861343 24 0.03224605506479196 23 0.03203279781037749 16 0.03088313713409639 15 0.028504696721470935 4 0.018739290993350328 5 0.018346224461242608 6 0.01585405326227286 3 0.014014221330650637 7 0.013550207060159986 8 0.013492909264062254 1 0.013369188524350394 2 0.01302650253540339 __DUMMY__ 0.011980308349599806 false 0.0
517 20 0.114183 19 0.089596 24 0.087761 18 0.075178 23 0.068754 15 0.052647 16 0.049324 21 0.04616 14 0.039065 12 0.038289 17 0.034081 22 0.033473 10 0.031737 3 0.029295 5 0.025206 4 0.025061 8 0.023339 7 0.023333 1 0.023309 2 0.022944 9 0.021342 13 0.020857 6 0.019374 11 0.005694 20 0.114183 19 0.089596 24 0.087761 18 0.075178 23 0.068754 15 0.052647 16 0.049324 21 0.04616 14 0.039065 12 0.038289 17 0.034081 22 0.033473 10 0.031737 3 0.029295 5 0.025206 4 0.025061 8 0.023339 7 0.023333 1 0.023309 2 0.022944 9 0.021342 13 0.020857 6 0.019374 11 0.005694 20 0.08428700972048365 19 0.07695534090329595 18 0.06980335524997802 24 0.06789360311520153 23 0.05732967332772759 21 0.05422097301056679 22 0.045852897271389755 16 0.04454897683273468 12 0.04356517961080702 15 0.04218531394657401 14 0.039739286860638184 17 0.039414660186924515 10 0.03903559496267058 9 0.029288286739225115 13 0.02827009544998348 11 0.027324258179604252 3 0.025854230298521012 4 0.02555310875662391 5 0.025354565465419684 8 0.02260745548578596 7 0.022595736312449016 1 0.022475725520341445 2 0.02212131902831343 6 0.02138015379821494 0 0.01711852210943562 __DUMMY__ 0.005224677857089807 false 1.0
759 21 0.06825109780708909 22 0.06477537996186748 11 0.06223852483227804 18 0.06024621552918301 19 0.05777223487052258 12 0.05561390637584508 10 0.04989834989011073 17 0.04619674160158675 0 0.044396998830281864 9 0.04193189785402201 13 0.041033908312470176 23 0.03952332236158119 20 0.038918784095848334 24 0.03830985606552127 14 0.03712904787950913 16 0.03531784353971036 4 0.02645876333195174 5 0.026029397861679886 6 0.02450729016252705 7 0.021895492259617007 8 0.021848516901355638 1 0.021725423532490715 3 0.02137431139025921 2 0.021351129190509244 15 0.01821220949608415 __DUMMY__ 0.015043356066098293 false 0.0
518 18 0.099769 19 0.08586 10 0.081173 20 0.079526 14 0.065323 21 0.061114 22 0.054983 12 0.054682 13 0.05404 15 0.05387 11 0.053641 16 0.050081 17 0.049486 24 0.038284 0 0.037992 23 0.034432 9 0.032466 4 0.004611 5 0.004413 6 0.001878 3 0.001399 7 4.7E-4 8 3.41E-4 1 1.65E-4 18 0.099769 19 0.08586 10 0.081173 20 0.079526 14 0.065323 21 0.061114 22 0.054983 12 0.054682 13 0.05404 15 0.05387 11 0.053641 16 0.050081 17 0.049486 24 0.038284 0 0.037992 23 0.034432 9 0.032466 4 0.004611 5 0.004413 6 0.001878 3 0.001399 7 4.7E-4 8 3.41E-4 1 1.65E-4 18 0.08918855729047342 19 0.07555798932690631 10 0.0747123986647285 20 0.06641277681239739 14 0.06181177548096264 21 0.06160986104811779 22 0.058305167847075595 11 0.053970160627117375 12 0.049795203538157376 13 0.048968649420412284 15 0.048716187024727624 17 0.04605394905162688 16 0.041088172311524035 0 0.0379370021258472 9 0.03792396739699539 24 0.03741740905570704 23 0.03509766615981064 4 0.012265524725171313 5 0.011951167777324169 6 0.009236676313651467 3 0.008941539702731269 7 0.007845093964176654 8 0.007782167230206789 1 0.007593178427002273 2 0.007355422587762351 __DUMMY__ 0.002462336089386389 false 1.0
519 17 0.086004 16 0.082947 0 0.0712 19 0.057488 22 0.051612 18 0.051228 9 0.045804 11 0.045226 6 0.038554 8 0.036996 7 0.036522 1 0.036286 2 0.035999 4 0.034637 10 0.03441 23 0.034364 5 0.034041 3 0.031502 21 0.031334 20 0.03133 12 0.030645 24 0.028214 15 0.025978 13 0.007676 17 0.086004 16 0.082947 0 0.0712 19 0.057488 22 0.051612 18 0.051228 9 0.045804 11 0.045226 6 0.038554 8 0.036996 7 0.036522 1 0.036286 2 0.035999 4 0.034637 10 0.03441 23 0.034364 5 0.034041 3 0.031502 21 0.031334 20 0.03133 12 0.030645 24 0.028214 15 0.025978 13 0.007676 17 0.07710219964383148 16 0.0700933496240786 0 0.06617830523372205 19 0.05335269632820668 22 0.05286319940438077 18 0.05213299226825981 9 0.04770439518231491 11 0.045388816680364985 6 0.03914791005428258 10 0.038084086204933906 8 0.03751059717753524 7 0.037227615509729674 1 0.037064790684991335 2 0.03664774133495493 4 0.0363160028331345 5 0.03579033400459474 23 0.035369801067723215 21 0.034605165141251545 3 0.03303893306358719 12 0.030701534569474234 20 0.029286249488568578 24 0.027597105416608342 15 0.025832057344773375 13 0.011889180138393645 14 0.006944554391344818 __DUMMY__ 0.0021303872089589062 false 1.0
760 21 0.07539491824435912 12 0.07296245052826618 11 0.06622721024755138 13 0.06426361679172597 18 0.06217958693915321 22 0.06140630418232237 19 0.055057199057902816 10 0.05438629316849919 14 0.05049518946694713 0 0.0410176270288404 20 0.04061161426322732 23 0.039718746661682416 17 0.039202932927644964 9 0.03685163130529848 24 0.035755836637159484 16 0.028109828953908237 4 0.022009851731831245 5 0.021602120911246577 6 0.020370650203336515 15 0.019245320733262582 7 0.01631388462216852 8 0.016300588689654928 1 0.01617502313783007 2 0.015895944799943513 3 0.014996654584648396 __DUMMY__ 0.013448974181588837 false 0.0
761 22 0.06281653655466903 21 0.06138190291472421 18 0.06125667077492525 19 0.05966663252261133 11 0.058808033342102266 17 0.05151369145890429 10 0.04985955643868815 12 0.048572738992363716 0 0.0473250120276189 9 0.04257984512351802 16 0.04236348001181586 20 0.03957834794644717 23 0.03885158549786597 24 0.0367013108279613 13 0.03390311224459457 14 0.033132140959153865 4 0.026853922513938876 5 0.0264141663542249 6 0.02541233119994044 7 0.02320260371114462 8 0.023200380691263862 1 0.023018504570788148 2 0.022645621994802446 3 0.02244570040078239 15 0.022351957665946866 __DUMMY__ 0.016144213259203555 false 0.0
762 21 0.07905616879888065 12 0.07829723799099739 13 0.06782651870364807 11 0.06483785155930631 18 0.06032952038412761 22 0.06030871470575244 19 0.05657007869029559 14 0.051445284681495784 10 0.049842303716247836 20 0.044671624083239006 23 0.04322094230604235 24 0.040641450752273336 17 0.03644374315069204 0 0.03639195992727455 9 0.03321736983105553 16 0.027711653758168087 4 0.021330000569610003 5 0.020913491413967516 6 0.01943650302304635 15 0.01802231226057701 7 0.015222257133688934 8 0.015201297051651116 __DUMMY__ 0.015144696059090768 1 0.015071236698997636 2 0.01480212786857175 3 0.014043654881302459 false 0.0
520 17 0.085021 0 0.079726 16 0.072436 22 0.054683 18 0.052856 9 0.052788 11 0.051317 19 0.049243 10 0.044139 6 0.041551 8 0.039566 7 0.039202 1 0.039106 2 0.038701 4 0.037526 5 0.036907 3 0.033966 21 0.029289 23 0.029225 12 0.025909 15 0.022096 20 0.018828 24 0.018184 13 0.007733 17 0.085021 0 0.079726 16 0.072436 22 0.054683 18 0.052856 9 0.052788 11 0.051317 19 0.049243 10 0.044139 6 0.041551 8 0.039566 7 0.039202 1 0.039106 2 0.038701 4 0.037526 5 0.036907 3 0.033966 21 0.029289 23 0.029225 12 0.025909 15 0.022096 20 0.018828 24 0.018184 13 0.007733 17 0.0752644457487596 0 0.07033565401239712 16 0.062001025750047255 22 0.054927177702616556 9 0.05277094466525774 18 0.05224383730183892 11 0.04818533622503506 19 0.04735221431410721 10 0.04325623241426584 6 0.04189790258774912 8 0.04010831548079885 7 0.03988593247703425 1 0.03978340762520461 2 0.03929615589698115 4 0.03914343749229687 5 0.038590744105240715 3 0.03570193550176172 21 0.033596667495082035 23 0.03255729230149623 12 0.027282413473490953 15 0.022539441347604966 24 0.021917603150739144 20 0.021161177893304812 13 0.011405066066708672 14 0.006800421771404747 __DUMMY__ 0.0019952171987758934 false 1.0
521 18 0.078804 17 0.075978 19 0.073891 16 0.061291 0 0.059821 22 0.055959 20 0.053442 10 0.051909 9 0.051768 23 0.039355 24 0.037855 21 0.037077 11 0.036396 8 0.030526 4 0.030322 1 0.029912 6 0.029892 7 0.029861 5 0.029369 2 0.029057 3 0.028719 12 0.022806 15 0.021722 14 0.004267 18 0.078804 17 0.075978 19 0.073891 16 0.061291 0 0.059821 22 0.055959 20 0.053442 10 0.051909 9 0.051768 23 0.039355 24 0.037855 21 0.037077 11 0.036396 8 0.030526 4 0.030322 1 0.029912 6 0.029892 7 0.029861 5 0.029369 2 0.029057 3 0.028719 12 0.022806 15 0.021722 14 0.004267 18 0.07111429256827678 19 0.06721105425621732 17 0.06181781607745945 22 0.054944823075328934 20 0.052949441997073035 16 0.051735529683437725 10 0.04923302421209725 0 0.0482480007622175 9 0.0461848974694531 21 0.04436331444146829 23 0.041942858969985064 24 0.0413482824409709 11 0.039190556449041535 12 0.03088499405576944 4 0.030234637285325428 5 0.02954129574299034 15 0.02925140803418586 6 0.029011920693393936 8 0.028941497569094702 7 0.02859807150794845 1 0.028526922214589127 3 0.028239150296599094 2 0.027930272493861864 14 0.02066020346208887 13 0.014327094441446725 __DUMMY__ 0.0035686397996793234 false 1.0
763 18 0.06902764530418781 14 0.06672687945701805 21 0.06528169822156861 13 0.06508792646440498 10 0.06389698391579963 12 0.059938579024693406 11 0.056774620606566496 22 0.05619208550195555 19 0.05309782869912134 20 0.04439958268101849 15 0.04246035569538986 9 0.03906237468697861 0 0.036308577558222796 23 0.036210408903863206 17 0.03592900942619951 24 0.03196873475759178 16 0.024454815997660258 4 0.02104734575356018 5 0.020685923167720034 6 0.018953910070618588 8 0.015975395915834887 7 0.015939810173573862 1 0.015819873993003032 2 0.015544028142067422 3 0.015531452780677222 __DUMMY__ 0.013684153100704366 false 0.0
522 18 0.067769 19 0.062451 22 0.057039 9 0.055212 20 0.054615 17 0.050936 24 0.049672 23 0.045088 10 0.044406 21 0.043515 3 0.040877 4 0.040178 5 0.039645 8 0.039172 7 0.038893 1 0.038601 0 0.038298 2 0.037638 6 0.036859 16 0.034777 11 0.027788 15 0.023527 12 0.016908 14 0.016136 18 0.067769 19 0.062451 22 0.057039 9 0.055212 20 0.054615 17 0.050936 24 0.049672 23 0.045088 10 0.044406 21 0.043515 3 0.040877 4 0.040178 5 0.039645 8 0.039172 7 0.038893 1 0.038601 0 0.038298 2 0.037638 6 0.036859 16 0.034777 11 0.027788 15 0.023527 12 0.016908 14 0.016136 18 0.06481338602708256 19 0.06150818495436931 22 0.05628108570721548 20 0.05383009620228427 24 0.04915581754153159 21 0.0491267180406192 17 0.048069271328681426 9 0.04796869186320596 23 0.0459458931004242 10 0.0439621685640448 16 0.03675071371587253 0 0.036291402058038824 4 0.03591966401825149 5 0.035393830869508064 3 0.03506047728841604 11 0.03483128942992984 8 0.03377895489257872 7 0.03361613119611389 1 0.03338127213978987 6 0.032972063354673245 2 0.03273110732930856 12 0.028505865053249497 15 0.027536596986397748 14 0.0253039767949977 13 0.013511728189235331 __DUMMY__ 0.003753613354179889 false 1.0
764 18 0.07877154050771625 10 0.07455219218858863 22 0.06497122516034973 21 0.06206792001716988 11 0.061412642665038604 19 0.060341285671989334 14 0.05488197660848961 9 0.04894321539065874 0 0.04776434613098788 17 0.045920185567722156 12 0.04511144207834342 13 0.0449927656367076 20 0.04153832339031552 15 0.03555475385841467 16 0.029735244119656955 23 0.028918034557531683 24 0.02613929718327082 4 0.020246887048836655 5 0.019867631401734434 6 0.017721510486999197 3 0.01609553324924354 7 0.015753166333676776 8 0.01573921877744996 1 0.01560550388850796 2 0.015261995114053165 __DUMMY__ 0.01209216296654676 false 0.0
523 20 0.108148 19 0.097666 18 0.092074 24 0.066672 21 0.065047 12 0.064045 14 0.059804 16 0.058436 15 0.056651 10 0.055983 23 0.05378 13 0.052567 22 0.044558 17 0.042452 11 0.037859 9 0.015318 0 0.014668 4 0.004719 5 0.004297 3 0.002805 6 9.01E-4 7 6.65E-4 8 4.95E-4 1 3.88E-4 20 0.108148 19 0.097666 18 0.092074 24 0.066672 21 0.065047 12 0.064045 14 0.059804 16 0.058436 15 0.056651 10 0.055983 23 0.05378 13 0.052567 22 0.044558 17 0.042452 11 0.037859 9 0.015318 0 0.014668 4 0.004719 5 0.004297 3 0.002805 6 9.01E-4 7 6.65E-4 8 4.95E-4 1 3.88E-4 20 0.08825629619740849 19 0.08520886097382874 18 0.0819297203076678 21 0.06600177121072628 24 0.0607971239386654 12 0.057982573312367745 14 0.05592838709738085 10 0.05311301581106769 22 0.05129862034696829 23 0.05068804837858862 15 0.04889476546009113 16 0.048683822697937494 13 0.04676322870182592 11 0.0427595459510971 17 0.0410018928862912 9 0.02390643686019672 0 0.019999318210526393 4 0.012360146459223805 5 0.011911111054370824 3 0.009898054794866086 6 0.008427236214402252 7 0.007809963567357213 8 0.007724842085020819 1 0.007537970981860438 2 0.00721242270635948 __DUMMY__ 0.003904823793903126 false 1.0
765 21 0.07365574361974073 22 0.06960323422953102 11 0.06795419613676232 18 0.06523072484634729 19 0.05960555682105482 12 0.05690097566617755 10 0.05673057169490915 0 0.044378714123809726 13 0.04395953989138888 17 0.04395695944153747 9 0.0435910474973721 14 0.04340346250441829 20 0.039056582783191594 24 0.03719743412468062 23 0.03628967554862721 16 0.03062377643825827 4 0.023108363619345557 5 0.0226735062864807 6 0.020357627162342153 15 0.018825260029081393 3 0.017793005406734303 7 0.017682868715245686 8 0.017613855027478694 1 0.017469165813379053 2 0.017111335365237578 __DUMMY__ 0.015226817206867771 false 0.0
766 22 0.060267968556560476 17 0.057228945670952214 0 0.05700725649307825 18 0.05393379926531681 9 0.05312532141166025 11 0.051975649757105225 10 0.04757166190717864 21 0.04715225311672165 19 0.04555994769630093 16 0.04047310916020967 6 0.038278754874388435 4 0.03818305283323647 5 0.03770939504923105 8 0.03648310073841886 7 0.03645084411429929 1 0.03632367750870491 2 0.03581217063101048 23 0.03475933854269868 3 0.03445898773169462 12 0.03364643254801597 24 0.026658310220224073 20 0.023246069200196774 13 0.021415064188806714 14 0.021062767328653677 15 0.019011900684740353 __DUMMY__ 0.01220422077059565 false 0.0
524 0 0.08847 17 0.079603 9 0.065431 22 0.062643 11 0.060342 10 0.057198 18 0.05451 16 0.053414 6 0.045174 8 0.042598 7 0.042185 1 0.041961 2 0.041679 4 0.041393 5 0.040662 19 0.03759 3 0.036861 21 0.032654 12 0.023999 23 0.020764 13 0.012441 15 0.011305 14 0.003663 24 0.003458 0 0.08847 17 0.079603 9 0.065431 22 0.062643 11 0.060342 10 0.057198 18 0.05451 16 0.053414 6 0.045174 8 0.042598 7 0.042185 1 0.041961 2 0.041679 4 0.041393 5 0.040662 19 0.03759 3 0.036861 21 0.032654 12 0.023999 23 0.020764 13 0.012441 15 0.011305 14 0.003663 24 0.003458 0 0.07375011536803934 17 0.06973524623591529 9 0.061427781040461676 22 0.06052714545144015 11 0.052877079471924646 18 0.0526290773378488 10 0.05068586147982649 16 0.047305696938582505 6 0.04490358140168789 8 0.04297653085472199 7 0.04274985094319849 4 0.04273693973067625 1 0.04257686680950528 2 0.042135511027097096 5 0.04212074907867797 19 0.03947066793354999 3 0.038968942581383136 21 0.03644792728601915 23 0.027973663906129598 12 0.024719046429970255 15 0.015083864502897022 24 0.01448651508053108 13 0.012813306931277014 20 0.009760093543619555 14 0.009171430450819707 __DUMMY__ 0.0019665081841998846 false 1.0
767 18 0.06805125538733248 10 0.0648052246194364 22 0.062628719138859 11 0.056212520984384666 0 0.05366728316109401 9 0.053498070716124675 21 0.05285917667318308 17 0.05108626662155336 19 0.05099961805413068 14 0.03989658829104809 12 0.03676581595298901 13 0.03338650594074834 16 0.03237699533151581 20 0.03022597760140082 23 0.029891181020513455 4 0.029771626362558527 5 0.02934104854423547 15 0.028781118954237458 6 0.028558852038197906 8 0.026756849443670547 7 0.026748218622681185 1 0.026619175064298964 2 0.026171811617552204 3 0.02594489701146874 24 0.023214182789751674 __DUMMY__ 0.011741020057033393 false 0.0
525 17 0.082388 16 0.081694 0 0.062293 19 0.059873 18 0.050892 22 0.047984 9 0.042432 20 0.040597 23 0.039642 6 0.039173 8 0.038766 7 0.038747 1 0.038677 24 0.038307 11 0.038208 2 0.037859 4 0.036285 5 0.035634 3 0.034877 15 0.033309 10 0.029644 21 0.028711 12 0.02396 14 4.6E-5 17 0.082388 16 0.081694 0 0.062293 19 0.059873 18 0.050892 22 0.047984 9 0.042432 20 0.040597 23 0.039642 6 0.039173 8 0.038766 7 0.038747 1 0.038677 24 0.038307 11 0.038208 2 0.037859 4 0.036285 5 0.035634 3 0.034877 15 0.033309 10 0.029644 21 0.028711 12 0.02396 14 4.6E-5 17 0.07535164464018805 16 0.07206879186481469 0 0.059459863138325346 19 0.05811136259282454 18 0.05440383203594288 22 0.05034112075163467 9 0.04325419080940503 11 0.041558278589537104 20 0.03886190193403688 23 0.03858492616846294 10 0.036373649992895926 6 0.03628170407290077 8 0.03526099483427534 7 0.03516589828026251 1 0.03506009173163084 24 0.034798843440627995 15 0.034559171830464086 2 0.03443556770436204 21 0.03418646821754697 4 0.0341474555213857 5 0.033596401890807225 3 0.03175932390485947 12 0.028881170204240816 14 0.01093777626399443 13 0.010254328996703007 __DUMMY__ 0.002305240587870648 false 1.0
768 21 0.07281929011857476 19 0.0726639035706784 18 0.06528119404583275 22 0.06318440185399542 20 0.05931221974452444 12 0.05776070405082664 11 0.056171184379599025 24 0.053074443326977035 23 0.04716241836972962 10 0.045246885171683335 17 0.04377610293731379 16 0.04237086569369281 14 0.03952048257107021 13 0.03815776171687969 9 0.03353853940705068 0 0.032827676589389884 15 0.023977461992368936 4 0.02091597515933348 5 0.020460411499068056 6 0.017466591096931574 3 0.016941455406930463 7 0.015768958302525993 8 0.015707753396387764 1 0.015522609992163972 2 0.015198213873222902 __DUMMY__ 0.015172495733248217 false 0.0
526 17 0.086124 16 0.082537 0 0.07058 19 0.057356 22 0.052041 18 0.05181 9 0.04562 11 0.044742 6 0.038652 8 0.036811 1 0.036657 7 0.036588 2 0.036402 4 0.034834 5 0.034581 10 0.034124 23 0.033964 3 0.031921 21 0.031604 20 0.030958 12 0.030644 24 0.028277 15 0.02579 13 0.007385 17 0.086124 16 0.082537 0 0.07058 19 0.057356 22 0.052041 18 0.05181 9 0.04562 11 0.044742 6 0.038652 8 0.036811 1 0.036657 7 0.036588 2 0.036402 4 0.034834 5 0.034581 10 0.034124 23 0.033964 3 0.031921 21 0.031604 20 0.030958 12 0.030644 24 0.028277 15 0.02579 13 0.007385 17 0.07713993629845466 16 0.06985729919447631 0 0.06589397061531062 19 0.05330516449627101 22 0.05307943072555692 18 0.05244088775614269 9 0.04764457408531777 11 0.045171788271687476 6 0.039181915448366605 10 0.037996301439618685 8 0.03741804812602147 7 0.0372492333653901 1 0.03722602560839127 2 0.03682374667921686 4 0.03640187036289384 5 0.03603244937650021 23 0.03517801391414892 21 0.034742782559578494 3 0.03322864702568556 12 0.030686370550703453 20 0.029127497852103473 24 0.027625470512361135 15 0.02572497697557952 13 0.011746738928215842 14 0.006952433784692087 __DUMMY__ 0.0021244260473151358 false 1.0
527 19 0.087783 18 0.087474 21 0.080397 20 0.075727 12 0.068952 10 0.065831 22 0.064054 11 0.06252 14 0.054703 13 0.05432 24 0.047981 16 0.04757 17 0.046752 23 0.039998 0 0.035862 15 0.031734 9 0.030723 4 0.006092 5 0.005867 6 0.002604 3 0.001778 7 6.47E-4 8 3.38E-4 1 2.93E-4 19 0.087783 18 0.087474 21 0.080397 20 0.075727 12 0.068952 10 0.065831 22 0.064054 11 0.06252 14 0.054703 13 0.05432 24 0.047981 16 0.04757 17 0.046752 23 0.039998 0 0.035862 15 0.031734 9 0.030723 4 0.006092 5 0.005867 6 0.002604 3 0.001778 7 6.47E-4 8 3.38E-4 1 2.93E-4 18 0.07997490290065697 19 0.07900017289698492 21 0.07607475720471651 20 0.06768852789666739 12 0.06334877703242352 22 0.06306720365696097 10 0.061109515704374444 11 0.05950211759575781 14 0.05339350914572785 13 0.050725019890825236 24 0.04760977509197541 17 0.04378145485491109 16 0.04165725832110513 23 0.04110719106640165 0 0.03436187748141263 9 0.03334622068348354 15 0.032240851256311896 4 0.012273270126928255 5 0.011952167713539 6 0.008737306196933104 3 0.008100732698572553 7 0.006854876132275648 8 0.006699694628576597 1 0.006580628389567017 2 0.006305547113380144 __DUMMY__ 0.004506644319530505 false 1.0
769 19 0.0631831211623018 18 0.058099727498098594 21 0.05555389534826207 22 0.0545982487662869 17 0.052162014298012614 16 0.050106735105828526 20 0.04887470755584502 12 0.04785920984949255 23 0.04776921455717599 11 0.04718975918974623 24 0.044011845125227246 0 0.04109826287957231 10 0.040095821837977774 9 0.0364974049682924 13 0.03061099030787692 4 0.028980185483998992 5 0.028518941446331582 14 0.028167349150695162 6 0.02793102552678656 15 0.026242886812815207 8 0.026108089806824535 7 0.026101483745379957 1 0.025900987835450657 2 0.025520723277077714 3 0.025160065327867676 __DUMMY__ 0.013657303136774868 false 0.0
528 17 0.11124 16 0.102037 0 0.097348 18 0.080832 19 0.071027 10 0.067599 11 0.063564 22 0.059267 9 0.049838 15 0.035844 12 0.033837 21 0.029847 20 0.024945 6 0.02208 8 0.018007 1 0.017575 7 0.01756 2 0.017024 13 0.016442 23 0.016162 4 0.015856 5 0.015135 3 0.00914 14 0.007792 17 0.11124 16 0.102037 0 0.097348 18 0.080832 19 0.071027 10 0.067599 11 0.063564 22 0.059267 9 0.049838 15 0.035844 12 0.033837 21 0.029847 20 0.024945 6 0.02208 8 0.018007 1 0.017575 7 0.01756 2 0.017024 13 0.016442 23 0.016162 4 0.015856 5 0.015135 3 0.00914 14 0.007792 17 0.08699242571770621 0 0.07711894465414611 16 0.07664408406547003 18 0.06700230638613563 19 0.059647222529427814 22 0.0568115240022241 10 0.055229464435089255 11 0.05432931152281235 9 0.04973020602075685 21 0.03490662242224193 12 0.03240525567273813 15 0.031441957244505415 6 0.030705922417024335 8 0.02794244938166842 7 0.027679179814184045 1 0.027631272532683895 2 0.027099422987823116 4 0.02709628723658302 20 0.026932422402124952 23 0.026763515048954814 5 0.026515585811560594 3 0.022184257073655636 13 0.01741039216064325 24 0.014588575230133984 14 0.013188415503163225 __DUMMY__ 0.0020029777265429412 false 1.0
529 18 0.121983 10 0.120978 14 0.074379 22 0.072888 19 0.068972 9 0.064789 11 0.060432 21 0.054042 15 0.052892 0 0.05236 17 0.046071 20 0.041744 13 0.040812 12 0.023244 23 0.019111 5 0.014021 4 0.012359 16 0.012116 3 0.01115 2 0.009179 6 0.00795 1 0.006666 7 0.0061 8 0.005763 18 0.121983 10 0.120978 14 0.074379 22 0.072888 19 0.068972 9 0.064789 11 0.060432 21 0.054042 15 0.052892 0 0.05236 17 0.046071 20 0.041744 13 0.040812 12 0.023244 23 0.019111 5 0.014021 4 0.012359 16 0.012116 3 0.01115 2 0.009179 6 0.00795 1 0.006666 7 0.0061 8 0.005763 18 0.09678859521625188 10 0.09185605920963609 22 0.06571471133739867 14 0.06442521177416502 19 0.06392503395182632 21 0.055548914982342115 11 0.05535382067301097 9 0.054618516570879364 15 0.04825243152129423 0 0.045380017780688724 20 0.04502225575843787 17 0.04428123198830483 13 0.040845165151114735 12 0.032196171473413145 23 0.028059558837605705 16 0.021913630565102316 5 0.019166693654158917 4 0.0186236592370074 24 0.018115635935397046 3 0.016351020102263955 6 0.015032567403006333 2 0.014655232810040393 1 0.0136688674058029 7 0.013505462114522969 8 0.013357259664464112 __DUMMY__ 0.0033422748818638477 false 1.0
770 19 0.06753875649371116 18 0.064353932108158 21 0.06323483642653417 22 0.05959047384642165 20 0.055369392760054724 11 0.051094471189950676 12 0.04892551576590696 24 0.04871632527051509 10 0.04630445448061139 23 0.0462816871363088 17 0.045303063472051125 16 0.04232405877181891 14 0.03784294951116448 9 0.03635052612109952 0 0.03479385783190503 13 0.033161433316733664 15 0.02897538183707013 4 0.024815216292022324 5 0.02435961096304118 6 0.02193099148750142 3 0.0214404097245206 7 0.020559068936426287 8 0.02055087944768111 1 0.020332792191898263 2 0.020033153657265722 __DUMMY__ 0.015816760959627436 false 0.0
771 21 0.07342187759305752 19 0.07217494985737961 18 0.0642283096126822 22 0.06321052638973765 12 0.05931992913390583 20 0.05795792280657829 11 0.05686794236201131 24 0.052372850467534884 23 0.04688837693452873 17 0.044597451982423715 10 0.04419949672975968 16 0.04306285555322273 13 0.03928791948638102 14 0.03873522394553295 0 0.03384057828468404 9 0.0333546301204435 15 0.022690074483777165 4 0.02085671370816453 5 0.0203986053544178 6 0.017652355724969267 3 0.01661329069879864 __DUMMY__ 0.01612579378148203 7 0.015754732804306573 8 0.01569895744131414 1 0.01551787367678397 2 0.01517076106612228 false 0.0
530 19 0.101254 21 0.094264 18 0.082104 20 0.079929 22 0.076179 12 0.070527 11 0.064355 24 0.064274 16 0.058141 17 0.05532 23 0.053258 10 0.045747 0 0.034447 13 0.031217 14 0.029461 9 0.028859 15 0.010309 4 0.007295 5 0.006371 6 0.002825 3 0.002609 7 8.59E-4 8 3.76E-4 1 2.2E-5 19 0.101254 21 0.094264 18 0.082104 20 0.079929 22 0.076179 12 0.070527 11 0.064355 24 0.064274 16 0.058141 17 0.05532 23 0.053258 10 0.045747 0 0.034447 13 0.031217 14 0.029461 9 0.028859 15 0.010309 4 0.007295 5 0.006371 6 0.002825 3 0.002609 7 8.59E-4 8 3.76E-4 1 2.2E-5 19 0.08294515772127738 21 0.07575943207665954 18 0.07138811435705494 20 0.06715939566519892 22 0.06569894608640407 12 0.058297868933049585 24 0.05618077063501771 11 0.05497196059310269 16 0.05123679482612643 17 0.05099351078633593 23 0.05018943117277996 10 0.044477165270290955 0 0.03532764236563519 9 0.03334627821210496 14 0.03149263391259893 13 0.031041188322612778 15 0.01961763860751371 4 0.018251089845098715 5 0.01761175009965072 6 0.014875353363095936 3 0.014573218098868246 7 0.013382889034264801 8 0.013170864160492422 1 0.012896021659381326 2 0.01272779014107827 __DUMMY__ 0.002387094054305571 false 1.0
772 19 0.06865680714940627 18 0.0664432595112346 21 0.06181866427993412 22 0.05866223772343301 20 0.055545095878293406 11 0.05137292558721289 10 0.04932400611320681 12 0.048961023618255765 17 0.04672566176836842 24 0.046011306132076484 23 0.04522755453154507 16 0.0443017734857848 14 0.039924210071827705 0 0.03649854143045557 9 0.0362147500669331 13 0.035067491408352934 15 0.03180684269189247 4 0.02333555729010825 5 0.022907608936819316 6 0.02072084994932536 3 0.019870591388130552 7 0.01924472664753709 8 0.019233679966995376 1 0.01902798052664815 2 0.018732628653925568 __DUMMY__ 0.014364225192297034 false 0.0
773 21 0.08026964544691637 12 0.07890098966208753 13 0.06743602768611873 11 0.06514643508403938 22 0.060884030978646676 18 0.06040442132665195 19 0.05778472951554193 14 0.05115048678503702 10 0.04911681951809873 20 0.045793521220267586 23 0.04376746117738406 24 0.04197604934333407 17 0.036359158215607174 0 0.03574167674760141 9 0.032676677769872584 16 0.028150680265861247 4 0.020892919313755493 5 0.020471876326824477 6 0.01885306567707199 15 0.017464626002110604 __DUMMY__ 0.01504081597480801 7 0.014674959086043797 8 0.01464483771683044 1 0.014517712797124202 2 0.014249769017059611 3 0.013630607345305234 false 0.0
531 18 0.137033 10 0.127644 14 0.078308 22 0.077366 19 0.073812 9 0.068863 15 0.057381 21 0.05482 11 0.052818 20 0.048312 0 0.042504 17 0.040253 13 0.033231 23 0.029034 12 0.015639 5 0.013913 4 0.013537 3 0.008247 6 0.006503 1 0.004528 2 0.004517 7 0.004119 8 0.003903 24 0.003714 18 0.137033 10 0.127644 14 0.078308 22 0.077366 19 0.073812 9 0.068863 15 0.057381 21 0.05482 11 0.052818 20 0.048312 0 0.042504 17 0.040253 13 0.033231 23 0.029034 12 0.015639 5 0.013913 4 0.013537 3 0.008247 6 0.006503 1 0.004528 2 0.004517 7 0.004119 8 0.003903 24 0.003714 18 0.1026086996481788 10 0.0931716837252909 22 0.0668670016589253 14 0.06597566567494914 19 0.06579973128015829 9 0.05586220825511878 21 0.055158637198881734 15 0.05119140339372614 11 0.050270990468262576 20 0.04881339921390248 17 0.04101297964690595 0 0.03947305529072557 13 0.036648663668773805 23 0.033783878896302244 12 0.028080794343978813 24 0.0211637318438171 4 0.01989171701811686 5 0.01984048674004366 16 0.01641624887845985 3 0.01588891616229195 6 0.015053751497009571 1 0.013469444871441527 7 0.01338294551155367 2 0.013304294105468477 8 0.013294245870051185 __DUMMY__ 0.0035754251376658645 false 1.0
774 21 0.07617540573566502 12 0.07025669776726873 11 0.06326070062607086 22 0.06208766356373758 18 0.060640117392590155 13 0.058622324815633155 19 0.056957118949106364 10 0.04965465384313191 14 0.04787140603376262 20 0.0442078597221083 23 0.04242973958943996 24 0.041574237370223116 17 0.03780991768546739 0 0.03688377907445874 9 0.036133774205240776 16 0.028091584654057814 4 0.02324299765416195 5 0.022818634626617373 6 0.020956627755445722 15 0.018620960460603443 7 0.01743144021132005 8 0.01741229790311614 1 0.017262138539965343 2 0.016972081545948155 3 0.01686525406945625 __DUMMY__ 0.015760586205403042 false 0.0
532 19 0.102857 21 0.093281 20 0.083001 18 0.07719 22 0.074946 24 0.069263 12 0.066467 11 0.066345 23 0.054755 16 0.051757 10 0.049364 14 0.042144 17 0.039896 13 0.032848 9 0.024815 0 0.023197 15 0.020107 5 0.008923 4 0.008094 3 0.006994 2 0.001669 1 8.94E-4 6 8.15E-4 7 3.78E-4 19 0.102857 21 0.093281 20 0.083001 18 0.07719 22 0.074946 24 0.069263 12 0.066467 11 0.066345 23 0.054755 16 0.051757 10 0.049364 14 0.042144 17 0.039896 13 0.032848 9 0.024815 0 0.023197 15 0.020107 5 0.008923 4 0.008094 3 0.006994 2 0.001669 1 8.94E-4 6 8.15E-4 7 3.78E-4 21 0.08446235206977613 19 0.0842926926019348 18 0.07110925375597038 22 0.06991664988288902 20 0.06828978904913095 12 0.06397636978268141 11 0.06334698707968395 24 0.05922246751038556 23 0.04978617290800124 10 0.04948974612382703 14 0.04437446139207027 16 0.042229363055614116 13 0.03974495112101772 17 0.03946731818907608 9 0.030451157285583747 0 0.028129644622472295 15 0.02192585212167685 5 0.015308643323324786 4 0.015170813238429427 3 0.012176890083281306 6 0.009762690035681408 2 0.008733356064795523 1 0.008503457291219011 7 0.00840727629216168 8 0.008212682345626615 __DUMMY__ 0.0035089627736883708 false 1.0
775 12 0.08290812421811798 21 0.07695046326451739 13 0.07628024206929533 11 0.06102831238587237 18 0.059478818462601744 14 0.05648137926812264 22 0.05476581227210027 19 0.05463912878617763 10 0.048665893939863626 20 0.04691858047924532 23 0.044997696593367796 24 0.04022512777144178 17 0.034528566346562005 0 0.0336087478339534 9 0.029681037024063207 16 0.027779020034897055 15 0.022978923181483646 4 0.020889924599092575 5 0.020500293622663694 6 0.019557826101369625 8 0.014938404711089386 7 0.01490817631993203 __DUMMY__ 0.014801949506059106 1 0.014792084571902378 2 0.014561400216707838 3 0.013134066419500141 false 0.0
533 10 0.111629 18 0.105287 14 0.071454 22 0.069655 9 0.066279 11 0.062663 0 0.057947 19 0.057482 21 0.051763 15 0.050898 17 0.046719 13 0.043766 20 0.031965 12 0.024641 4 0.017729 5 0.017697 23 0.016212 16 0.014995 6 0.014688 3 0.014416 2 0.013138 7 0.013058 1 0.01299 8 0.012927 10 0.111629 18 0.105287 14 0.071454 22 0.069655 9 0.066279 11 0.062663 0 0.057947 19 0.057482 21 0.051763 15 0.050898 17 0.046719 13 0.043766 20 0.031965 12 0.024641 4 0.017729 5 0.017697 23 0.016212 16 0.014995 6 0.014688 3 0.014416 2 0.013138 7 0.013058 1 0.01299 8 0.012927 18 0.08878948178615657 10 0.08789289241545148 22 0.06425367162310074 14 0.0629545282302544 19 0.05767766105571579 11 0.05655744793515442 9 0.055916126713477135 21 0.054054041891334365 0 0.04862953945208405 15 0.04707345662226529 17 0.04466612458137876 13 0.042254309768237866 20 0.03924141643265069 12 0.03247290838995843 23 0.026252220013044152 16 0.02272114132064853 4 0.02150609055396104 5 0.02126972588901289 6 0.01862493357308385 3 0.01822183047594806 7 0.017163044880004183 24 0.017156182416324408 8 0.017111048434331505 1 0.01703936267449389 2 0.016932101377245854 __DUMMY__ 0.0035687114946820284 false 1.0
776 13 0.07951720598461319 12 0.079138788742098 21 0.0745949986407824 14 0.06654766630194754 18 0.0630689365957339 11 0.05953371605284446 10 0.054408800197410026 19 0.05375849324628704 22 0.05357798925293402 20 0.048240943013711936 23 0.04257221858675787 24 0.03820675349322407 15 0.03393712129101265 17 0.03214602729492616 0 0.0314842418031219 9 0.030342537956992224 16 0.024941459016767954 4 0.01929407072948078 5 0.01893667273799908 6 0.017635560228732982 8 0.013342005743102126 __DUMMY__ 0.013323059337803854 7 0.013296513009505058 1 0.013193319930126405 2 0.012977764246644829 3 0.011983136565439458 false 0.0
534 10 0.102682 18 0.090441 11 0.068572 14 0.066671 0 0.066247 22 0.064952 9 0.06194 19 0.053179 17 0.052489 13 0.050456 21 0.049928 15 0.047645 12 0.033324 16 0.028415 20 0.026827 4 0.017678 5 0.01739 6 0.016672 1 0.015036 7 0.01503 8 0.014918 2 0.014362 3 0.014106 23 0.01104 10 0.102682 18 0.090441 11 0.068572 14 0.066671 0 0.066247 22 0.064952 9 0.06194 19 0.053179 17 0.052489 13 0.050456 21 0.049928 15 0.047645 12 0.033324 16 0.028415 20 0.026827 4 0.017678 5 0.01739 6 0.016672 1 0.015036 7 0.01503 8 0.014918 2 0.014362 3 0.014106 23 0.01104 10 0.08627533816682736 18 0.08291297897781047 22 0.06450615467417652 11 0.0632934177062078 14 0.059170203720106215 0 0.05628618790758853 9 0.05566654352551807 19 0.05562129237471818 21 0.05491879801543104 17 0.04908826026874733 13 0.045836372939964454 15 0.04147845092435745 12 0.0378737486900417 20 0.03368252805987729 16 0.02885739714581972 23 0.021412137628552028 4 0.020755057819760888 5 0.020395534489942357 6 0.019001565738861706 7 0.0172626939079866 8 0.01721086393137744 1 0.017178827661710236 3 0.016963788842052012 2 0.01666797867924443 24 0.014158529572993605 __DUMMY__ 0.0035253486303267667 false 1.0
777 12 0.07653640057089671 21 0.07503925697089193 13 0.07370329770262314 18 0.062224540932979716 14 0.061361864857506415 11 0.060573121284427205 22 0.055998508130767226 19 0.0544623166856921 10 0.05307102139739504 20 0.04666398813917677 23 0.042397936314741355 24 0.03886217940811208 17 0.033763171007837364 0 0.0331630823889027 9 0.032051162175921355 15 0.02962340985808963 16 0.02574780233548207 4 0.02038084957650057 5 0.01999767173207387 6 0.01857081051330385 __DUMMY__ 0.015153900942533173 8 0.014475337424318368 7 0.014451308365050096 1 0.014328715387378817 2 0.014084617681357502 3 0.013313728216040996 false 0.0
535 10 0.101235 18 0.087754 11 0.067091 14 0.066807 0 0.065085 22 0.06461 9 0.063149 17 0.050835 19 0.050324 13 0.04919 21 0.049105 15 0.047503 12 0.031215 16 0.025233 20 0.024765 4 0.02016 5 0.019713 6 0.018996 7 0.017596 1 0.017486 8 0.017318 2 0.016797 3 0.016751 23 0.011283 10 0.101235 18 0.087754 11 0.067091 14 0.066807 0 0.065085 22 0.06461 9 0.063149 17 0.050835 19 0.050324 13 0.04919 21 0.049105 15 0.047503 12 0.031215 16 0.025233 20 0.024765 4 0.02016 5 0.019713 6 0.018996 7 0.017596 1 0.017486 8 0.017318 2 0.016797 3 0.016751 23 0.011283 10 0.08461780927255662 18 0.08067888081375472 22 0.06391873315952407 11 0.06182274150997035 14 0.05874760094725103 9 0.056312787743945825 0 0.05541067243152346 21 0.053881186467782234 19 0.053402281448126 17 0.04804449711735532 13 0.04471098902917836 15 0.04147675681073767 12 0.03629335711588474 20 0.03221196941148081 16 0.027042547247570208 4 0.022712073883985693 5 0.022276916280740675 23 0.021966004241598783 6 0.020914641862281452 7 0.019320696294669783 8 0.019195378524802305 1 0.01918341092129519 3 0.019043273827914466 2 0.018662218714532254 24 0.014373052836109257 __DUMMY__ 0.0037795220854285197 false 1.0
536 20 0.098723 18 0.09523 19 0.093438 10 0.065141 21 0.063838 14 0.061557 12 0.060717 24 0.056398 15 0.055328 16 0.055148 13 0.052825 22 0.047672 23 0.047411 17 0.044499 11 0.04361 0 0.022391 9 0.021483 4 0.004849 5 0.004209 3 0.002309 6 0.001439 7 7.71E-4 8 5.18E-4 1 4.94E-4 20 0.098723 18 0.09523 19 0.093438 10 0.065141 21 0.063838 14 0.061557 12 0.060717 24 0.056398 15 0.055328 16 0.055148 13 0.052825 22 0.047672 23 0.047411 17 0.044499 11 0.04361 0 0.022391 9 0.021483 4 0.004849 5 0.004209 3 0.002309 6 0.001439 7 7.71E-4 8 5.18E-4 1 4.94E-4 18 0.08459508500444135 20 0.08241553171107338 19 0.08231263203980345 21 0.06426542149045311 10 0.059924509022037664 14 0.05814923719333299 12 0.055029479492119324 24 0.05368869919838386 22 0.05278064996081818 15 0.04964049496227425 13 0.04726678154090017 23 0.04630739068973477 16 0.04620627420680413 11 0.045605640132977125 17 0.042148129865038964 9 0.02809301431324458 0 0.024796267290447233 4 0.012397939790407493 5 0.011862867310839069 3 0.009670243480720734 6 0.008722678388685703 7 0.007905322765104937 8 0.007783917649594458 1 0.007642353986953228 2 0.0072743349646010565 __DUMMY__ 0.00351510354920888 false 1.0
778 21 0.0790503247996334 12 0.0786992711719689 13 0.06838781472255381 11 0.061445942424635386 22 0.058433002737646754 18 0.05819263704071705 19 0.05650643816233034 14 0.052473466092408064 20 0.047016838834054685 23 0.046610136738904094 10 0.04538320025715225 24 0.04426347553995631 17 0.03448649981125648 0 0.03224687760376736 9 0.030761162127605032 16 0.027471625902693076 4 0.022105145746321622 5 0.02166176553413668 15 0.020317199740002952 6 0.02008736348660498 __DUMMY__ 0.016416602782104862 7 0.01594053271190739 8 0.015919815857287932 1 0.015769597176513873 2 0.015492603323345767 3 0.014860659674490765 false 0.0
537 20 0.118033 19 0.093586 24 0.089602 18 0.076984 23 0.066638 15 0.054725 16 0.052531 21 0.045975 14 0.03964 12 0.037606 17 0.036043 10 0.033336 22 0.031777 3 0.027884 4 0.023117 5 0.02303 8 0.021621 1 0.021576 2 0.021408 7 0.021328 9 0.020937 13 0.020515 6 0.017288 11 0.004821 20 0.118033 19 0.093586 24 0.089602 18 0.076984 23 0.066638 15 0.054725 16 0.052531 21 0.045975 14 0.03964 12 0.037606 17 0.036043 10 0.033336 22 0.031777 3 0.027884 4 0.023117 5 0.02303 8 0.021621 1 0.021576 2 0.021408 7 0.021328 9 0.020937 13 0.020515 6 0.017288 11 0.004821 20 0.08623656811001444 19 0.07859022989095193 18 0.07066053385497087 24 0.06871961473211446 23 0.05638022032283355 21 0.05359503934636587 16 0.04595407438295332 22 0.044680911230313425 15 0.04397071849501683 12 0.042804705926535146 14 0.04042933599884229 17 0.040150474232009244 10 0.03986542346072718 9 0.029057785841095862 13 0.02811106094332799 11 0.026427962321462516 3 0.025354529528480867 4 0.02475154553724129 5 0.02444579681772006 8 0.02195034717717312 1 0.021809193426019474 7 0.021803172629304986 2 0.021546319902823574 6 0.020513541821924185 0 0.01685065402543659 __DUMMY__ 0.005340240044340925 false 1.0
779 12 0.0795977608771111 21 0.07845360425882153 13 0.07033577914851247 11 0.06128159195921613 18 0.05877345663241107 22 0.05747900581380439 19 0.056173004466280534 14 0.053705433138440006 20 0.04723173699323874 10 0.046513122737644096 23 0.04608295744007337 24 0.0432362578503715 17 0.03439686689160622 0 0.03248824852929621 9 0.030506741283831015 16 0.02746976812863319 4 0.02166454924699614 5 0.02123967328717634 15 0.021219086993168854 6 0.019784034290662618 __DUMMY__ 0.016451223727881863 7 0.015538322614044644 8 0.015531969902533138 1 0.015385091392568868 2 0.015124878583741012 3 0.014335833811934876 false 0.0
538 18 0.125681 10 0.103268 19 0.091076 22 0.085577 17 0.07121 11 0.065204 0 0.06491 21 0.064712 9 0.064417 20 0.05628 14 0.039758 16 0.039754 12 0.02753 15 0.026348 23 0.019513 13 0.0172 24 0.016752 4 0.007038 5 0.005013 6 0.00324 8 0.001498 3 0.001498 7 0.001494 1 0.001029 18 0.125681 10 0.103268 19 0.091076 22 0.085577 17 0.07121 11 0.065204 0 0.06491 21 0.064712 9 0.064417 20 0.05628 14 0.039758 16 0.039754 12 0.02753 15 0.026348 23 0.019513 13 0.0172 24 0.016752 4 0.007038 5 0.005013 6 0.00324 8 0.001498 3 0.001498 7 0.001494 1 0.001029 18 0.09821123405824736 10 0.08428141552411213 22 0.0741750791084005 19 0.07366973276163101 21 0.060804724476809416 11 0.05989221265091245 17 0.05801963693283513 9 0.057238498957108745 0 0.05474287896617965 20 0.04832183793742112 14 0.04429592829351004 16 0.03481447676107409 12 0.03259877189009507 15 0.031257931590004166 13 0.02645697781858292 23 0.02632188536468058 24 0.024125821469245766 4 0.017188160704029346 5 0.016008632978048578 6 0.013962707301941624 3 0.01292707753903934 8 0.01251748300776937 7 0.01250745118312674 1 0.012191266423784236 2 0.011510584402421396 __DUMMY__ 0.0019575918989893494 false 1.0
539 18 0.100646 19 0.085526 10 0.081528 20 0.079961 14 0.06455 21 0.06131 22 0.054533 12 0.054006 13 0.053768 11 0.053567 15 0.053027 17 0.049408 16 0.049238 0 0.037928 24 0.037379 23 0.035104 9 0.03332 4 0.004722 5 0.004091 6 0.002063 3 0.001376 7 0.001114 1 9.61E-4 8 8.72E-4 18 0.100646 19 0.085526 10 0.081528 20 0.079961 14 0.06455 21 0.06131 22 0.054533 12 0.054006 13 0.053768 11 0.053567 15 0.053027 17 0.049408 16 0.049238 0 0.037928 24 0.037379 23 0.035104 9 0.03332 4 0.004722 5 0.004091 6 0.002063 3 0.001376 7 0.001114 1 9.61E-4 8 8.72E-4 18 0.08954412340546737 19 0.07542387116357475 10 0.07470730529040409 20 0.06671884063785272 21 0.061482497016310124 14 0.06114650269055832 22 0.0579549654491874 11 0.05365593534712659 12 0.04929219135822416 13 0.048551292049033135 15 0.04824535880660062 17 0.04608146591884972 16 0.04078448998712478 9 0.03834036531975334 0 0.03787495963098209 24 0.03711390819075807 23 0.03552817321933065 4 0.012448662534006116 5 0.011939761522854291 6 0.009458645855450254 3 0.00910740806226519 7 0.008304780494892135 8 0.008191088954460773 1 0.008126809699807011 2 0.0075247302015573475 __DUMMY__ 0.002451867193569077 false 1.0
780 21 0.08077004467166742 22 0.07090188479534014 11 0.0645942106686548 12 0.060947214776116934 19 0.06022077125002718 18 0.05745202592558336 24 0.04905656506441157 23 0.044562818050073505 10 0.04271013279558122 20 0.04246432389829071 13 0.042284703547318184 14 0.04048027015579225 9 0.03929844461821058 17 0.03896925337229333 0 0.03511410573617224 16 0.028270428513020793 4 0.025766381184195174 5 0.025232890128268005 6 0.02219486688639657 3 0.020274009157918167 7 0.01960937366061202 8 0.019503963088409272 1 0.019311650741391958 2 0.018881078174031393 __DUMMY__ 0.016908637492742795 15 0.014219951647480442 false 0.0
781 21 0.07343334827264966 12 0.06440942186883497 22 0.05875626810477606 19 0.05702397520466132 23 0.05464994298575373 18 0.05273999406827402 11 0.052507616422774565 24 0.05205888214241747 13 0.047708000733847324 20 0.047528704683283615 14 0.038851689174245384 17 0.0356059140159991 10 0.034670372468766565 9 0.032804139104176545 4 0.02976896250901061 16 0.029471312091272184 5 0.029234659486042456 0 0.028782939553709985 6 0.027156749467646717 7 0.024343545562545116 8 0.02422629033040139 3 0.02410877526782798 1 0.024064383527754023 2 0.023677119669807508 15 0.017421099408983322 __DUMMY__ 0.01499589387453831 false 0.0
540 18 0.099549 19 0.086733 10 0.080603 20 0.079524 14 0.065615 21 0.06245 12 0.05528 22 0.05501 11 0.053717 13 0.053343 15 0.053072 17 0.048568 16 0.048377 24 0.038872 0 0.035923 23 0.035842 9 0.032454 4 0.005462 5 0.005225 6 0.002209 3 0.001492 7 2.69E-4 8 2.29E-4 1 1.81E-4 18 0.099549 19 0.086733 10 0.080603 20 0.079524 14 0.065615 21 0.06245 12 0.05528 22 0.05501 11 0.053717 13 0.053343 15 0.053072 17 0.048568 16 0.048377 24 0.038872 0 0.035923 23 0.035842 9 0.032454 4 0.005462 5 0.005225 6 0.002209 3 0.001492 7 2.69E-4 8 2.29E-4 1 1.81E-4 18 0.0890408104693106 19 0.07597757323409854 10 0.0742829077837537 20 0.0665183270747307 21 0.062005467821524586 14 0.061635065820206406 22 0.05817377265808733 11 0.05372472639075781 12 0.049876643078414835 13 0.048356292073410426 15 0.0482659813708526 17 0.04569607708524504 16 0.040389469391300344 9 0.03794305198990853 24 0.03779883636074836 0 0.03695510627410978 23 0.035866729964387646 4 0.012788147409400397 5 0.012460002430465314 6 0.009525622091267701 3 0.00916062132733603 7 0.007917115136823537 8 0.007896095403238466 1 0.0077689645424690035 2 0.007524726749428875 __DUMMY__ 0.0024518660687233578 false 1.0
782 21 0.07343334827264966 12 0.06440942186883497 22 0.05875626810477606 19 0.05702397520466132 23 0.05464994298575373 18 0.05273999406827402 11 0.052507616422774565 24 0.05205888214241747 13 0.047708000733847324 20 0.047528704683283615 14 0.038851689174245384 17 0.0356059140159991 10 0.034670372468766565 9 0.032804139104176545 4 0.02976896250901061 16 0.029471312091272184 5 0.029234659486042456 0 0.028782939553709985 6 0.027156749467646717 7 0.024343545562545116 8 0.02422629033040139 3 0.02410877526782798 1 0.024064383527754023 2 0.023677119669807508 15 0.017421099408983322 __DUMMY__ 0.01499589387453831 false 0.0
541 18 0.073446 19 0.069148 20 0.060627 22 0.056695 17 0.055123 9 0.054185 24 0.049207 10 0.048182 23 0.042181 21 0.041965 16 0.041176 0 0.039941 3 0.037299 4 0.036039 8 0.035274 5 0.03497 7 0.034957 1 0.034841 2 0.03394 6 0.032652 15 0.027758 11 0.026967 14 0.018207 12 0.015217 18 0.073446 19 0.069148 20 0.060627 22 0.056695 17 0.055123 9 0.054185 24 0.049207 10 0.048182 23 0.042181 21 0.041965 16 0.041176 0 0.039941 3 0.037299 4 0.036039 8 0.035274 5 0.03497 7 0.034957 1 0.034841 2 0.03394 6 0.032652 15 0.027758 11 0.026967 14 0.018207 12 0.015217 18 0.06976999600237066 19 0.06434917056744995 20 0.05640132295449329 22 0.055797766694167375 17 0.04965612478091411 10 0.04960539273780288 9 0.04800478327875196 21 0.047520691784938236 24 0.04645053584247325 23 0.04290724661051648 16 0.0388733959337149 0 0.037469987816510154 11 0.03485193903511309 15 0.033565885051100926 4 0.032716260226114575 3 0.03211605031819225 5 0.03197836821445049 8 0.03067195547409436 14 0.030526166540896234 7 0.030494928616321918 1 0.03034431217825255 6 0.02974312063719217 2 0.029737956754729348 12 0.026921632293131017 13 0.015800727735338853 __DUMMY__ 0.003724281920969117 false 1.0
783 21 0.07333910574757761 18 0.06523740895799642 22 0.06438525588577038 11 0.06162490569055058 12 0.06021296449041016 19 0.05916241708455406 10 0.05415924523292793 13 0.05127450258638107 14 0.0498153323336928 20 0.04394606520738891 23 0.04108372539358674 24 0.04005177925427066 9 0.039500050912882965 17 0.039476633252538036 0 0.03772667634730101 16 0.028095084384367704 15 0.024839290270574084 4 0.02294751009587984 5 0.02247343523426608 6 0.020203282115853656 7 0.01742400383143318 3 0.01741551013039158 8 0.017344381916829642 1 0.01720011975385623 2 0.016808013505451056 __DUMMY__ 0.014253300383267331 false 0.0
784 21 0.07432761019521558 19 0.0706858237431498 18 0.06528227836985548 22 0.06524345358316633 20 0.06068211415210366 24 0.05706653544326472 11 0.0550321581567193 12 0.054301779225337736 23 0.0476403985542851 10 0.04449365811624119 14 0.043361201421442355 17 0.03941985530720345 16 0.03627296146994775 13 0.03604610823016784 9 0.03465537384598034 0 0.02771972361591607 15 0.02709389862001321 4 0.02232771512503778 5 0.021818494363833818 3 0.018793837966002896 6 0.017954608631807648 7 0.01671671702410753 8 0.016657249488877812 1 0.016416476845525715 2 0.016069364361348433 __DUMMY__ 0.01392060414344845 false 0.0
542 18 0.118512 10 0.098397 19 0.084976 22 0.075493 11 0.062718 17 0.062084 21 0.061819 20 0.059465 0 0.056993 9 0.054088 14 0.053869 16 0.041382 15 0.038383 12 0.037159 13 0.034232 23 0.022293 24 0.017596 4 0.006304 5 0.006045 6 0.003267 7 0.001367 8 0.001228 1 0.001178 3 0.001153 18 0.118512 10 0.098397 19 0.084976 22 0.075493 11 0.062718 17 0.062084 21 0.061819 20 0.059465 0 0.056993 9 0.054088 14 0.053869 16 0.041382 15 0.038383 12 0.037159 13 0.034232 23 0.022293 24 0.017596 4 0.006304 5 0.006045 6 0.003267 7 0.001367 8 0.001228 1 0.001178 3 0.001153 18 0.09753349431512334 10 0.08524051468812527 19 0.07208699727653577 22 0.06917289092805594 21 0.060336724112919016 11 0.05990344979794954 14 0.05439227706772904 17 0.05347631311415476 9 0.05163278003736381 20 0.05121642944554719 0 0.05114269367345544 12 0.03914072140465611 15 0.03887240292761557 13 0.03809990458957286 16 0.035499921330926346 23 0.026679116751056928 24 0.023237511319544282 4 0.014632600207032751 5 0.014286563090200032 6 0.011770402485365197 3 0.010339845339067235 7 0.01007811718805635 8 0.010014991838820828 1 0.00990117812358275 2 0.009167280072960839 __DUMMY__ 0.002144878874582921 false 1.0
300 12 0.112972 21 0.099076 13 0.085292 19 0.075578 20 0.069905 11 0.068059 18 0.064145 23 0.060508 22 0.058484 24 0.057675 14 0.046366 10 0.038837 16 0.03605 17 0.032599 0 0.025968 9 0.014799 4 0.01238 5 0.012313 6 0.009906 2 0.004222 7 0.004023 1 0.003917 8 0.003805 3 0.003123 12 0.112972 21 0.099076 13 0.085292 19 0.075578 20 0.069905 11 0.068059 18 0.064145 23 0.060508 22 0.058484 24 0.057675 14 0.046366 10 0.038837 16 0.03605 17 0.032599 0 0.025968 9 0.014799 4 0.01238 5 0.012313 6 0.009906 2 0.004222 7 0.004023 1 0.003917 8 0.003805 3 0.003123 12 0.09829564050647564 21 0.08925023149610972 13 0.07885584246297872 19 0.0669345060461959 11 0.06554504155885678 18 0.06191151197859331 20 0.05919944337640828 22 0.057798732345314435 23 0.053606434323521426 24 0.050371210820723517 14 0.049020743128068936 10 0.04288138780776219 17 0.034608519085704954 16 0.033408586607890534 0 0.030255587488177867 9 0.02216430571833729 4 0.01662821547098821 5 0.01637678472197964 6 0.014638033023921491 7 0.009408320938434536 15 0.009306896923701352 8 0.009300915825016813 2 0.009295508938009848 1 0.009279331579647157 3 0.008119326140200564 __DUMMY__ 0.0035389416869808267 false 1.0
785 18 0.055076848687759805 17 0.05317027128548486 19 0.05203756003436084 22 0.051948331755739166 16 0.04599998712372263 21 0.04562016142004559 0 0.04428369052208274 9 0.04297186183376642 11 0.04185480844387581 10 0.0418229253789212 23 0.04152958901511552 20 0.040223113451152884 24 0.03742076078537887 12 0.036623246683440955 15 0.03612125368372937 4 0.03422421567109036 6 0.03385774575738334 5 0.03377598588809411 8 0.032615718478710726 7 0.0325148287679159 1 0.03233440261448146 2 0.031992260016708934 14 0.031560394611924676 3 0.0313201184622786 13 0.027462681898301134 __DUMMY__ 0.011637237728534304 false 0.0
301 21 0.101912 12 0.096486 11 0.085057 22 0.075426 19 0.073101 13 0.072973 18 0.068807 10 0.055502 20 0.050458 14 0.048273 0 0.043864 24 0.043818 17 0.042359 23 0.039174 16 0.034501 9 0.032579 4 0.009705 5 0.009078 6 0.007088 7 0.002594 1 0.002128 8 0.00211 2 0.001617 3 0.001389 21 0.101912 12 0.096486 11 0.085057 22 0.075426 19 0.073101 13 0.072973 18 0.068807 10 0.055502 20 0.050458 14 0.048273 0 0.043864 24 0.043818 17 0.042359 23 0.039174 16 0.034501 9 0.032579 4 0.009705 5 0.009078 6 0.007088 7 0.002594 1 0.002128 8 0.00211 2 0.001617 3 0.001389 21 0.0909284118032722 12 0.08484169746657069 11 0.07474703396325282 22 0.06949840244748856 19 0.06749926310625551 13 0.06618134856869506 18 0.06573697061413725 10 0.05253158543142185 20 0.049334040897313615 14 0.048345805022675395 24 0.04410123533318827 23 0.041504848507521244 17 0.04049803993787143 0 0.03994771761877971 9 0.03352759900978378 16 0.03267023487176821 4 0.015347958276053083 5 0.014823603946509107 6 0.012756628377253892 15 0.009090098240356453 7 0.00871499833344383 8 0.008459167872885394 1 0.008394062511882835 2 0.007995024245805853 3 0.007930718364946084 __DUMMY__ 0.004593505230868015 false 1.0
543 17 0.071359 0 0.065022 22 0.057746 9 0.057042 16 0.056014 18 0.052367 19 0.048307 6 0.043845 8 0.043415 7 0.04327 1 0.043163 11 0.043042 2 0.042897 4 0.04267 5 0.042016 10 0.041434 3 0.041301 21 0.033512 23 0.032657 24 0.028967 20 0.025172 15 0.022291 12 0.017319 14 0.005174 17 0.071359 0 0.065022 22 0.057746 9 0.057042 16 0.056014 18 0.052367 19 0.048307 6 0.043845 8 0.043415 7 0.04327 1 0.043163 11 0.043042 2 0.042897 4 0.04267 5 0.042016 10 0.041434 3 0.041301 21 0.033512 23 0.032657 24 0.028967 20 0.025172 15 0.022291 12 0.017319 14 0.005174 17 0.06601064060890587 0 0.06202710464091565 22 0.05800110731119178 9 0.057027756968683764 18 0.05195621935941003 16 0.04928504795933975 19 0.04542044764834948 11 0.04403728093619407 6 0.04389354746863212 8 0.04308249423224333 4 0.04302260845709878 7 0.042966631752243044 1 0.04284274007070303 10 0.042840700291556025 5 0.04243971338927248 2 0.042415258950142025 3 0.040873120796764695 21 0.036725205837494855 23 0.03389130239641239 24 0.02752016706541976 20 0.023011548495438464 12 0.02124286251672684 15 0.0212206742804984 14 0.010042776335199788 13 0.006424507577828314 __DUMMY__ 0.001778534653335221 false 1.0
544 18 0.126872 10 0.103133 19 0.091475 22 0.087409 17 0.07175 9 0.065022 21 0.064681 11 0.064433 0 0.064168 20 0.056357 14 0.040465 16 0.039655 12 0.027582 15 0.026445 23 0.018477 24 0.016204 13 0.015828 4 0.006811 5 0.005523 6 0.003014 3 0.001523 8 0.001181 7 0.001157 1 8.38E-4 18 0.126872 10 0.103133 19 0.091475 22 0.087409 17 0.07175 9 0.065022 21 0.064681 11 0.064433 0 0.064168 20 0.056357 14 0.040465 16 0.039655 12 0.027582 15 0.026445 23 0.018477 24 0.016204 13 0.015828 4 0.006811 5 0.005523 6 0.003014 3 0.001523 8 0.001181 7 0.001157 1 8.38E-4 18 0.09878862007205565 10 0.08414360185237268 22 0.07494482241291531 19 0.07394803776424116 21 0.06074772225558532 11 0.059417136175603624 17 0.05828577875218002 9 0.05745613222606057 0 0.0543295252577902 20 0.04853111894984165 14 0.04456086052080251 16 0.03485315157466911 12 0.03260503332058224 15 0.03133371734617375 23 0.0259192383531895 13 0.025767373218308905 24 0.023987087297166233 4 0.01707478674689238 5 0.016230529719314445 6 0.013847034887154695 3 0.01294217376196012 8 0.012371506968722341 7 0.01235169584389046 1 0.012102535251291202 2 0.011507456591133095 __DUMMY__ 0.001953322880102828 false 1.0
786 0 0.0598870377119153 17 0.059669464712943404 22 0.058652154785222656 9 0.057897367520729645 18 0.05039727519102595 11 0.04609327354189052 10 0.04479297329504288 6 0.044534403027255684 4 0.043935117595808544 5 0.04341846345509137 8 0.04321967858783357 7 0.043156003451715816 1 0.043026655460545446 2 0.04245455856872728 3 0.040887085524349547 19 0.04031996190103645 16 0.04020538369103584 21 0.04001643444632224 23 0.034088989889776 12 0.025011923880597253 24 0.024183599553386996 15 0.0179797268303924 20 0.017816159761620747 14 0.014447049785723386 13 0.013173542558613579 __DUMMY__ 0.010735715271397456 false 0.0
302 0 0.087115 17 0.084079 11 0.073855 16 0.073558 12 0.066385 22 0.060736 18 0.058233 19 0.056302 21 0.05354 10 0.051851 9 0.044974 13 0.042209 6 0.029737 23 0.028457 4 0.024727 5 0.024514 8 0.023857 7 0.02356 1 0.023553 2 0.023399 3 0.01591 20 0.015333 24 0.008093 14 0.006024 0 0.087115 17 0.084079 11 0.073855 16 0.073558 12 0.066385 22 0.060736 18 0.058233 19 0.056302 21 0.05354 10 0.051851 9 0.044974 13 0.042209 6 0.029737 23 0.028457 4 0.024727 5 0.024514 8 0.023857 7 0.02356 1 0.023553 2 0.023399 3 0.01591 20 0.015333 24 0.008093 14 0.006024 17 0.06782152865190157 0 0.06733341023975423 11 0.06218595949560366 12 0.05989191182551053 16 0.05781569876993046 22 0.05716950583697506 18 0.05576213836326535 21 0.05411841292348911 19 0.05298374226333645 10 0.047035810585801203 9 0.043162409330089295 13 0.04177811781204022 23 0.03537929103580041 6 0.031678517625301945 4 0.029017301953896915 5 0.028688324641572137 8 0.0273045828169094 7 0.0271402765898395 1 0.027088443575601993 2 0.02679248665459839 20 0.025336077548203606 3 0.022032048573680667 24 0.02121798435313276 14 0.018116097722981284 15 0.01085205556402606 __DUMMY__ 0.0022978652467579752 false 1.0
303 21 0.080385 11 0.075778 22 0.075477 12 0.067132 18 0.063364 19 0.056673 10 0.056306 0 0.055448 17 0.049043 9 0.048976 13 0.048688 14 0.033847 23 0.032442 24 0.031632 20 0.029928 16 0.029131 4 0.024717 5 0.024046 6 0.022966 8 0.01927 7 0.01919 1 0.019018 2 0.018604 3 0.01794 21 0.080385 11 0.075778 22 0.075477 12 0.067132 18 0.063364 19 0.056673 10 0.056306 0 0.055448 17 0.049043 9 0.048976 13 0.048688 14 0.033847 23 0.032442 24 0.031632 20 0.029928 16 0.029131 4 0.024717 5 0.024046 6 0.022966 8 0.01927 7 0.01919 1 0.019018 2 0.018604 3 0.01794 21 0.08015077951109321 12 0.07491391883866973 11 0.07121131281681473 22 0.06741134367806437 18 0.06228902260256507 13 0.06099169663047838 19 0.05655575599646029 10 0.05393774193150518 0 0.04640699286289704 14 0.04377610646404376 17 0.04278769049238708 9 0.04057281030126159 23 0.03790249243324184 20 0.037427675921969925 24 0.03547049326170047 16 0.028615638835979576 4 0.022632051262566035 5 0.02209985020332529 6 0.020975895137115595 8 0.016798475568877688 7 0.01677054509325254 1 0.016612908733037793 2 0.016283934671808 3 0.015336063246536136 15 0.009206618392465763 __DUMMY__ 0.00286218511188281 false 1.0
787 18 0.06869230080503666 14 0.06777719876293196 15 0.06610859334219434 19 0.05668020361473844 10 0.056491234681090345 20 0.05535172364701412 21 0.050881082204065696 22 0.04937972743889293 13 0.048374265162930065 12 0.04070260766864563 11 0.04068224837722019 24 0.040552622411956854 23 0.04000343716327768 17 0.03997524755666272 9 0.03645855791700597 16 0.03542678986584436 0 0.02885496519219434 4 0.023064443218183454 5 0.022695663816152883 6 0.020716730828139795 3 0.02027689677892829 8 0.019700521552032835 7 0.019604307273987428 1 0.01942969124890441 2 0.019164861533305853 __DUMMY__ 0.012954077938662854 false 0.0
545 17 0.0863 16 0.082394 0 0.070482 19 0.057552 22 0.051444 18 0.051287 9 0.045784 11 0.045083 6 0.038726 8 0.037181 7 0.036992 1 0.036822 2 0.036053 4 0.034754 23 0.034556 10 0.034022 5 0.034007 21 0.031786 3 0.031585 20 0.031324 12 0.030527 24 0.028027 15 0.025564 13 0.007748 17 0.0863 16 0.082394 0 0.070482 19 0.057552 22 0.051444 18 0.051287 9 0.045784 11 0.045083 6 0.038726 8 0.037181 7 0.036992 1 0.036822 2 0.036053 4 0.034754 23 0.034556 10 0.034022 5 0.034007 21 0.031786 3 0.031585 20 0.031324 12 0.030527 24 0.028027 15 0.025564 13 0.007748 17 0.07715695984045412 16 0.06976659802138278 0 0.06575003143924592 19 0.05345697317754932 22 0.05278312929942063 18 0.052236400505562997 9 0.047671893843901525 11 0.04528620429967562 6 0.03917462455161193 10 0.03794226321004952 8 0.03755280585234588 7 0.03739954117760243 1 0.03726705431731507 2 0.03662976582287562 4 0.03633680067292936 5 0.03574145935379802 23 0.03549561429874674 21 0.034861383375217006 3 0.033054447814019915 12 0.03066350977265145 20 0.02942319108313176 24 0.027602304614601513 15 0.02566169506023223 13 0.011944342399627264 14 0.007012120758178016 __DUMMY__ 0.0021288854378734663 false 1.0
304 21 0.098547 12 0.096161 11 0.085691 13 0.075505 22 0.073609 19 0.065919 18 0.065206 10 0.055729 14 0.048606 0 0.045789 20 0.044103 17 0.041434 24 0.040442 23 0.037559 9 0.033838 16 0.030946 4 0.012894 5 0.011951 6 0.010616 7 0.005665 1 0.005588 8 0.005395 2 0.004836 3 0.003971 21 0.098547 12 0.096161 11 0.085691 13 0.075505 22 0.073609 19 0.065919 18 0.065206 10 0.055729 14 0.048606 0 0.045789 20 0.044103 17 0.041434 24 0.040442 23 0.037559 9 0.033838 16 0.030946 4 0.012894 5 0.011951 6 0.010616 7 0.005665 1 0.005588 8 0.005395 2 0.004836 3 0.003971 21 0.08932977768845615 12 0.08583571730720889 11 0.07547272693920207 13 0.06923114998078982 22 0.0682152446467589 18 0.063775584135909 19 0.0630509422927426 10 0.05301979817508258 14 0.049234983834194765 20 0.04544698964002094 24 0.041572561540063765 0 0.04118672353039987 23 0.04053421459634153 17 0.03973935272886525 9 0.0340341665455725 16 0.03031116054949846 4 0.016914064059180955 5 0.01624798985931504 6 0.01462397929671252 7 0.010208309266759938 1 0.010074870475417254 8 0.010055950620680227 2 0.009571109548421455 3 0.009013195261463738 15 0.009007829020497972 __DUMMY__ 0.0042916084604437115 false 1.0
788 13 0.07324215173774541 21 0.07273849613365624 12 0.07189326204195105 14 0.06589069315323969 18 0.06315027672658406 11 0.058818760102663646 22 0.05604970591042838 10 0.05547517291453168 19 0.05233394042041044 20 0.0453073511436429 23 0.04062155543439403 24 0.037467927140070204 15 0.035359481385721946 9 0.034230742654687556 17 0.0326389103201744 0 0.03251826412785269 16 0.022996370395330454 4 0.021213575344708076 5 0.02082517423759181 6 0.019192337693592992 8 0.015425075318039104 7 0.015357892885702438 1 0.015250842753986901 2 0.015003086428194546 3 0.014547456422573001 __DUMMY__ 0.01245149717252644 false 0.0
546 16 0.064779 23 0.063707 17 0.063338 19 0.061827 18 0.054439 20 0.054301 24 0.052205 22 0.044961 5 0.042612 6 0.0423 4 0.042075 1 0.041431 7 0.041291 2 0.040754 8 0.04045 3 0.039387 0 0.035507 15 0.035158 21 0.033778 9 0.033179 12 0.026641 11 0.022099 10 0.019037 14 0.004745 16 0.064779 23 0.063707 17 0.063338 19 0.061827 18 0.054439 20 0.054301 24 0.052205 22 0.044961 5 0.042612 6 0.0423 4 0.042075 1 0.041431 7 0.041291 2 0.040754 8 0.04045 3 0.039387 0 0.035507 15 0.035158 21 0.033778 9 0.033179 12 0.026641 11 0.022099 10 0.019037 14 0.004745 19 0.061087578077853595 18 0.05796386258588268 17 0.05662644942976695 16 0.05608599212946318 23 0.05368973695126625 20 0.05355639763642915 24 0.04812389018552702 22 0.047980854792923834 21 0.0426166064851091 15 0.03877497251878866 0 0.03660694073256749 12 0.03554182890834938 9 0.03495033226138675 5 0.03471877120820652 4 0.03471552258304671 6 0.03423760776004557 7 0.03305225343057602 1 0.03302734644812232 8 0.03271795412532408 11 0.0325946459610044 2 0.03252951875467647 10 0.032017120275009706 3 0.031855151371499524 14 0.02311328573154497 13 0.018165014081605098 __DUMMY__ 0.0036503655740247262 false 1.0
305 21 0.096311 12 0.096192 11 0.086073 13 0.077123 22 0.072405 18 0.061529 19 0.061395 10 0.055243 14 0.048829 0 0.047053 17 0.040297 20 0.039425 24 0.037657 23 0.036644 9 0.034546 16 0.029232 4 0.015099 5 0.014776 6 0.013111 2 0.007667 1 0.007664 7 0.007654 8 0.00765 3 0.006423 21 0.096311 12 0.096192 11 0.086073 13 0.077123 22 0.072405 18 0.061529 19 0.061395 10 0.055243 14 0.048829 0 0.047053 17 0.040297 20 0.039425 24 0.037657 23 0.036644 9 0.034546 16 0.029232 4 0.015099 5 0.014776 6 0.013111 2 0.007667 1 0.007664 7 0.007654 8 0.00765 3 0.006423 21 0.08776343415394085 12 0.08557396323031129 11 0.07551928649820575 13 0.07026740306873665 22 0.06739990624885357 18 0.061833922367363826 19 0.06007614575739428 10 0.053030126775959426 14 0.049557790864849 20 0.0424993164808947 0 0.0420101604911366 23 0.03988831959107928 24 0.03964025718147776 17 0.03908110360134582 9 0.034679875782665216 16 0.029002326320115675 4 0.01829664367135229 5 0.017917554837065218 6 0.01620689424596961 7 0.011532238154601294 8 0.01150649290854338 1 0.011443678844888418 2 0.011287560431475606 3 0.010485324365192665 15 0.009234142315025054 __DUMMY__ 0.004266131811556806 false 1.0
789 18 0.07337607805066598 10 0.06957053948172158 14 0.0678254065749956 21 0.05832624700053069 22 0.05710552807564029 13 0.05514281804297615 19 0.05344004530897058 11 0.05333236964850157 15 0.05078074690268589 12 0.04644797789025433 9 0.04415966214468359 20 0.043772770646310986 17 0.03855996579807054 0 0.038282424469863095 23 0.0325934407155192 24 0.02903371630001564 16 0.02517350410857587 4 0.022019741808825176 5 0.021653306376002417 6 0.019594285185537314 3 0.017886256258587137 8 0.017628907602835454 7 0.017593232676393938 1 0.01745980401498762 2 0.017146885194818516 __DUMMY__ 0.012094339722030665 false 0.0
547 10 0.102602 18 0.090271 11 0.068659 14 0.066803 0 0.066284 22 0.064778 9 0.062005 19 0.053272 17 0.052885 13 0.050524 21 0.04961 15 0.047473 12 0.033398 16 0.028446 20 0.026508 4 0.017807 5 0.017336 6 0.016768 1 0.015286 7 0.015191 8 0.015068 2 0.014268 3 0.014011 23 0.010745 10 0.102602 18 0.090271 11 0.068659 14 0.066803 0 0.066284 22 0.064778 9 0.062005 19 0.053272 17 0.052885 13 0.050524 21 0.04961 15 0.047473 12 0.033398 16 0.028446 20 0.026508 4 0.017807 5 0.017336 6 0.016768 1 0.015286 7 0.015191 8 0.015068 2 0.014268 3 0.014011 23 0.010745 10 0.08603155127265781 18 0.0824964671240634 22 0.06431648450453965 11 0.06328709420509475 14 0.059224667523554604 0 0.056243904909219704 9 0.055671590113600455 19 0.05540921620657516 21 0.05471916894356235 17 0.049136195763944845 13 0.04594644894939116 15 0.04138125963375165 12 0.03793892774563375 20 0.03334555286744732 16 0.028764856402543237 23 0.021334616986472262 4 0.020964294393407662 5 0.020526318652626344 6 0.019205290860156706 7 0.017497146554629656 1 0.017455855981610726 8 0.017441137212282052 3 0.017080697581566905 2 0.0167911969549961 24 0.01419228547286873 __DUMMY__ 0.0035977731838028877 false 1.0
548 20 0.108503 23 0.08872 19 0.08535 24 0.078412 18 0.074692 16 0.058086 15 0.055643 12 0.051793 21 0.040443 17 0.035805 14 0.035005 13 0.032251 10 0.029143 4 0.026788 5 0.025835 3 0.023766 6 0.023618 22 0.023537 8 0.023091 7 0.022485 2 0.021992 1 0.02171 11 0.008165 9 0.005167 20 0.108503 23 0.08872 19 0.08535 24 0.078412 18 0.074692 16 0.058086 15 0.055643 12 0.051793 21 0.040443 17 0.035805 14 0.035005 13 0.032251 10 0.029143 4 0.026788 5 0.025835 3 0.023766 6 0.023618 22 0.023537 8 0.023091 7 0.022485 2 0.021992 1 0.02171 11 0.008165 9 0.005167 20 0.08186263168903206 19 0.07423297187545148 18 0.07086581159413066 23 0.06682010551206292 24 0.06223788766715926 21 0.04846651527537331 16 0.04771636374930901 12 0.046869632315709155 15 0.046302435607182786 10 0.039875011452703536 17 0.03969734697830133 22 0.039678718850890984 14 0.03890105657284493 13 0.032665707994428535 4 0.027171654622679054 5 0.02649751253443277 11 0.026095445756782278 3 0.024422807420266993 6 0.02415408370833201 8 0.02348287377151185 7 0.02318974011567538 1 0.02273662113004257 2 0.022724187215199133 9 0.022642212606063257 0 0.016815947066380968 __DUMMY__ 0.0038747169180539036 false 1.0
306 12 0.102249 13 0.086811 21 0.079732 11 0.070546 22 0.051504 19 0.047971 18 0.047725 23 0.047312 0 0.043571 10 0.041298 14 0.041007 20 0.038819 17 0.037312 24 0.036825 16 0.032353 9 0.026509 6 0.025791 4 0.024923 5 0.024624 8 0.019552 7 0.019484 2 0.01935 1 0.019343 3 0.015387 12 0.102249 13 0.086811 21 0.079732 11 0.070546 22 0.051504 19 0.047971 18 0.047725 23 0.047312 0 0.043571 10 0.041298 14 0.041007 20 0.038819 17 0.037312 24 0.036825 16 0.032353 9 0.026509 6 0.025791 4 0.024923 5 0.024624 8 0.019552 7 0.019484 2 0.01935 1 0.019343 3 0.015387 12 0.08989107401429615 13 0.07847622830739596 21 0.07846975468166419 11 0.06635708043200578 22 0.05503632882796833 18 0.054342718909464016 19 0.05150106283734917 14 0.04795051331299688 10 0.04598588556702473 23 0.0454598185688162 20 0.041850262047238705 0 0.039460487987562666 24 0.038365843390182924 17 0.03651388695898615 9 0.03005904694208851 16 0.02940266834144386 4 0.023552779389003915 5 0.02319129730966223 6 0.02309321737002338 8 0.017856690827796107 7 0.01781563290370759 1 0.017682510281980122 2 0.01754659423784366 3 0.015125762243493381 15 0.01116085645809444 __DUMMY__ 0.0038519978519109825 false 1.0
549 20 0.115194 19 0.09373 24 0.089137 18 0.073777 21 0.068303 23 0.0661 12 0.063905 16 0.054381 15 0.048701 14 0.047878 22 0.042023 13 0.04164 17 0.033395 11 0.032935 10 0.029733 4 0.014841 5 0.014237 3 0.013374 7 0.010091 8 0.009967 1 0.009691 6 0.009687 2 0.008939 9 0.008342 20 0.115194 19 0.09373 24 0.089137 18 0.073777 21 0.068303 23 0.0661 12 0.063905 16 0.054381 15 0.048701 14 0.047878 22 0.042023 13 0.04164 17 0.033395 11 0.032935 10 0.029733 4 0.014841 5 0.014237 3 0.013374 7 0.010091 8 0.009967 1 0.009691 6 0.009687 2 0.008939 9 0.008342 20 0.0915931634900886 19 0.08328737428621033 24 0.07262415713664738 18 0.07214555181098711 21 0.06810411393227711 12 0.05812662890231196 23 0.05730656152568235 22 0.0504260952124955 14 0.048771106172005356 16 0.04678760426319651 15 0.04372579058835466 13 0.04056654588027576 11 0.0404165126376443 10 0.03893154396020019 17 0.03656676477868344 9 0.02038058860511126 4 0.017728198937522775 5 0.01718978028553836 3 0.015489169527408026 6 0.01310875547261686 7 0.012816923209928503 8 0.012752220459010774 0 0.012567729660433173 1 0.012482156719586761 2 0.011978185060347061 __DUMMY__ 0.004126777485435915 false 1.0
307 21 0.103114 12 0.096347 11 0.084119 19 0.077517 22 0.076716 18 0.071295 13 0.070672 10 0.055491 20 0.05498 14 0.048208 24 0.046879 17 0.042713 0 0.041977 23 0.040462 16 0.035889 9 0.031085 4 0.008232 5 0.007801 6 0.004891 15 9.68E-4 7 2.21E-4 3 2.21E-4 8 1.24E-4 1 8.0E-5 21 0.103114 12 0.096347 11 0.084119 19 0.077517 22 0.076716 18 0.071295 13 0.070672 10 0.055491 20 0.05498 14 0.048208 24 0.046879 17 0.042713 0 0.041977 23 0.040462 16 0.035889 9 0.031085 4 0.008232 5 0.007801 6 0.004891 15 9.68E-4 7 2.21E-4 3 2.21E-4 8 1.24E-4 1 8.0E-5 21 0.09140050111172054 12 0.08384896551114442 11 0.07387373135447892 19 0.07044956815480954 22 0.07030875959925008 18 0.06721209362299768 13 0.06369945371927727 20 0.05239900873450802 10 0.05226022562546109 14 0.04788852492071059 24 0.04637196446180451 23 0.04232982985854416 17 0.04085072380211155 0 0.038651386221857 16 0.033870197550431615 9 0.03278215788510183 4 0.014559869822211554 5 0.014124133181939743 6 0.011513783594234408 15 0.00986360180892466 7 0.007526699104054816 3 0.007459916654100922 8 0.00744866707707301 1 0.007350825165573673 2 0.0071508217274934855 __DUMMY__ 0.004804589730185263 false 1.0
308 13 0.132715 14 0.117235 12 0.100241 21 0.078025 10 0.077294 18 0.073324 15 0.064623 11 0.062669 20 0.0535 19 0.043205 22 0.040504 23 0.039659 24 0.026494 9 0.021386 0 0.019397 17 0.011064 4 0.009774 5 0.009018 6 0.008102 16 0.003765 7 0.002169 1 0.002037 8 0.001943 2 0.001858 13 0.132715 14 0.117235 12 0.100241 21 0.078025 10 0.077294 18 0.073324 15 0.064623 11 0.062669 20 0.0535 19 0.043205 22 0.040504 23 0.039659 24 0.026494 9 0.021386 0 0.019397 17 0.011064 4 0.009774 5 0.009018 6 0.008102 16 0.003765 7 0.002169 1 0.002037 8 0.001943 2 0.001858 13 0.10262799473410857 14 0.08980372329502433 12 0.08742699996439998 21 0.07580541559586779 18 0.06820526684422956 10 0.0652489868826002 11 0.0606852746386952 20 0.0507306480884091 19 0.04909796830017486 15 0.048780649638474366 22 0.048056777310318224 23 0.04121232188018864 24 0.03304323893673224 9 0.02696226104042637 0 0.026075604417467434 17 0.02280089479218532 4 0.015332216800680308 16 0.015242458175083516 5 0.014783974433051378 6 0.013583375657498103 7 0.008630333367523607 8 0.008554414247138788 1 0.00850997646724424 2 0.008305626827776658 3 0.0070371017899467075 __DUMMY__ 0.0034564958747544355 false 1.0
309 12 0.08694 21 0.084745 13 0.083261 11 0.074894 18 0.074593 19 0.070218 14 0.069866 10 0.066922 22 0.062976 20 0.053923 0 0.039837 17 0.03942 23 0.036749 16 0.036151 24 0.035174 15 0.03152 9 0.029367 4 0.007509 5 0.00715 6 0.005429 8 0.001013 7 9.08E-4 1 7.94E-4 2 6.41E-4 12 0.08694 21 0.084745 13 0.083261 11 0.074894 18 0.074593 19 0.070218 14 0.069866 10 0.066922 22 0.062976 20 0.053923 0 0.039837 17 0.03942 23 0.036749 16 0.036151 24 0.035174 15 0.03152 9 0.029367 4 0.007509 5 0.00715 6 0.005429 8 0.001013 7 9.08E-4 1 7.94E-4 2 6.41E-4 12 0.08319663927538432 21 0.08115462022476506 13 0.07744011577818051 11 0.06868058355549397 18 0.06821269615204058 19 0.06386653899064566 14 0.06272793759048416 22 0.060216399005688176 10 0.05882525269436132 20 0.05094806506092496 23 0.04052880550397854 24 0.03810091161729443 17 0.03773617420915054 0 0.037269015397304324 16 0.03259083463758535 9 0.03039126662989399 15 0.027483722912351027 4 0.014004490072024511 5 0.013626648141830481 6 0.012095336720305178 8 0.007752819031760803 7 0.007706664197684399 1 0.007582903389435763 2 0.007374052191628466 3 0.00659921442319724 __DUMMY__ 0.00388829259660621 false 1.0
790 14 0.07221093867949922 18 0.07065100288760698 10 0.06461809267491841 15 0.05908531461883963 21 0.056481858590019335 13 0.0558443206657741 22 0.05387364163073494 19 0.05267574943406162 11 0.047985395500620226 20 0.04780128076064261 12 0.04500264202462225 9 0.04113673457028499 17 0.03600014334748778 23 0.035583636648519684 24 0.0339502320842947 0 0.032309318108998286 16 0.025456562367642387 4 0.02282599558726718 5 0.022459471243159435 6 0.020179572942191606 3 0.019172735579765593 8 0.018580467615744032 7 0.018501783910399812 1 0.018357388700941765 2 0.018081229415398047 __DUMMY__ 0.011174490410565494 false 0.0
791 14 0.07255365431446012 13 0.06980754091126275 18 0.06676375357256939 21 0.06600006532807899 12 0.06317344738624082 10 0.05840472924859806 19 0.053822530621811665 11 0.052742307387754706 22 0.052682681835811776 20 0.05036891793254696 15 0.050215409185792856 23 0.040003126692136536 24 0.03791676681442708 9 0.033682461870368635 17 0.03295497108333333 0 0.02934181571858795 16 0.02555084977331026 4 0.020022714679673512 5 0.01966478082710968 6 0.017769649011668946 8 0.01481910843897227 7 0.014750093970635487 1 0.01462299952572858 3 0.014520019287588594 2 0.014387907093892227 __DUMMY__ 0.013457697487638965 false 0.0
792 22 0.06118365758000708 18 0.06080876568161913 21 0.05974462856714731 10 0.05707346521705295 11 0.05566195037850257 9 0.04945841785457322 19 0.04623795208020484 12 0.04623578664229972 0 0.044846490201442546 14 0.043093077201092705 13 0.04200281584170813 17 0.041371071707634585 23 0.03604969342037565 4 0.03238376607628473 5 0.03197135757289559 20 0.03099431195072787 6 0.030536879111036034 24 0.029964665465205823 7 0.028286329110579933 8 0.028264250605111386 1 0.028180119480128184 3 0.027828863691256735 2 0.027756659398472834 15 0.024286379105799637 16 0.023300250330344503 __DUMMY__ 0.012478395728496284 false 0.0
550 18 0.119207 19 0.096287 22 0.089058 10 0.086401 21 0.077638 20 0.066894 11 0.060083 17 0.059586 9 0.056886 0 0.045416 24 0.044118 14 0.039146 23 0.034551 12 0.033447 16 0.031256 15 0.018883 13 0.011388 4 0.010195 5 0.008009 3 0.00387 6 0.003262 8 0.001736 7 0.001478 1 0.001204 18 0.119207 19 0.096287 22 0.089058 10 0.086401 21 0.077638 20 0.066894 11 0.060083 17 0.059586 9 0.056886 0 0.045416 24 0.044118 14 0.039146 23 0.034551 12 0.033447 16 0.031256 15 0.018883 13 0.011388 4 0.010195 5 0.008009 3 0.00387 6 0.003262 8 0.001736 7 0.001478 1 0.001204 18 0.09608536725680818 10 0.07699463195666906 19 0.07694420507143232 22 0.07526176349132918 21 0.06721306351890419 11 0.0572375790461955 20 0.05466956387077257 9 0.052966404456040304 17 0.052204910819795426 0 0.04499117997434042 14 0.04496320514820252 24 0.03716600413111936 12 0.036353453380345145 23 0.03369184697403466 16 0.030968469075561195 15 0.02832930490991118 13 0.024999574417203078 4 0.01787509867902848 5 0.016636650695556858 3 0.013239088476569386 6 0.013155214915709708 8 0.011790305607051346 7 0.01166792744350373 1 0.011449395610546996 2 0.010694331655457185 __DUMMY__ 0.0024514594179119702 false 1.0
793 18 0.06763668545670336 15 0.061841969452372116 14 0.06031672223821037 19 0.05857282436914719 20 0.05461374816697995 10 0.05372535504789905 21 0.049412410824011155 22 0.04899077808424288 17 0.04596909030859696 13 0.045475296290281464 16 0.04289508290090713 12 0.0420287610787064 11 0.04162753799162073 23 0.04013707107822348 24 0.0398290941476458 9 0.03558807740672119 0 0.03337280992571933 4 0.022887094497944536 5 0.022502944886200762 6 0.021368399673740397 8 0.020076491320764993 7 0.019966160505320567 1 0.019807113262222075 3 0.01978518085155507 2 0.019512992125630825 __DUMMY__ 0.01206030810863249 false 0.0
551 17 0.092609 16 0.084578 0 0.082149 19 0.057179 18 0.056626 22 0.054966 11 0.053946 9 0.047961 10 0.042816 12 0.036876 6 0.035512 21 0.034587 8 0.032605 7 0.032353 1 0.032294 2 0.031592 4 0.030517 5 0.029867 23 0.029303 3 0.025465 20 0.023227 15 0.021162 24 0.017108 13 0.014702 17 0.092609 16 0.084578 0 0.082149 19 0.057179 18 0.056626 22 0.054966 11 0.053946 9 0.047961 10 0.042816 12 0.036876 6 0.035512 21 0.034587 8 0.032605 7 0.032353 1 0.032294 2 0.031592 4 0.030517 5 0.029867 23 0.029303 3 0.025465 20 0.023227 15 0.021162 24 0.017108 13 0.014702 17 0.07926231965255934 0 0.07121642302540929 16 0.06912717517378233 22 0.05440389294607605 18 0.05391216427851282 19 0.05180896671179544 9 0.04945959391029864 11 0.04920099162887647 10 0.04196287982636714 6 0.03872262175725699 8 0.03645758927535235 7 0.036286034500247234 1 0.036207891724765434 21 0.0359382952139555 2 0.03559326791300514 4 0.035417435971382014 5 0.03486442439585462 12 0.033223421023640995 23 0.03310910368621027 3 0.031246682994489138 20 0.02424658442130912 15 0.02257728820893121 24 0.021942898301608182 13 0.015119467635209997 14 0.00665762190877433 __DUMMY__ 0.0020349639143297884 false 1.0
794 21 0.0743755650954498 19 0.07308943267520099 20 0.0667999981520468 18 0.06587076511944878 12 0.06079173651778508 22 0.060005711853868375 24 0.05890352778371288 11 0.05172340259239562 23 0.05007272268354216 14 0.04585351827931289 13 0.043290703146750285 10 0.04292952482643155 16 0.038900414502276166 17 0.03843249895931737 9 0.02978494102325794 15 0.029175127820003758 0 0.024881434801326825 4 0.020026700207181364 5 0.019538451712470536 3 0.016245838510210393 __DUMMY__ 0.016127332066786158 6 0.016014809377408595 7 0.014499895788862413 8 0.014466773279462832 1 0.014253524352325948 2 0.013945648873164466 false 0.0
552 18 0.094125 19 0.086865 20 0.077813 10 0.075744 21 0.068829 14 0.060589 12 0.06046 22 0.057676 11 0.057626 13 0.054341 16 0.048601 17 0.048584 15 0.044561 24 0.042114 0 0.037061 23 0.036361 9 0.032503 4 0.005315 5 0.004709 6 0.002241 3 0.001547 7 8.71E-4 1 7.72E-4 8 6.9E-4 18 0.094125 19 0.086865 20 0.077813 10 0.075744 21 0.068829 14 0.060589 12 0.06046 22 0.057676 11 0.057626 13 0.054341 16 0.048601 17 0.048584 15 0.044561 24 0.042114 0 0.037061 23 0.036361 9 0.032503 4 0.005315 5 0.004709 6 0.002241 3 0.001547 7 8.71E-4 1 7.72E-4 8 6.9E-4 18 0.08647282001096462 19 0.07680154027555657 10 0.07179035746946763 21 0.06642319804108855 20 0.06632044432729732 22 0.05978337265942189 14 0.05939672299730252 11 0.056625306615874726 12 0.05409873405968577 13 0.049949352314076156 17 0.045628890922625315 15 0.0432954674964899 16 0.04087799051459463 24 0.03989208966039178 0 0.03743406097548263 9 0.0372972552073805 23 0.03609590215775925 4 0.012010199241781731 5 0.011526606421782689 6 0.00880990312804142 3 0.00838404020370869 7 0.007385282690642666 8 0.007294794448820654 1 0.0072375345478282995 2 0.006732657166625682 __DUMMY__ 0.0024354764453083416 false 1.0
310 12 0.119287 13 0.09607 21 0.087077 11 0.063841 23 0.061849 19 0.057223 20 0.055206 24 0.051927 18 0.048458 22 0.046728 14 0.041801 16 0.037732 17 0.034817 0 0.029972 10 0.027734 6 0.021494 4 0.021108 5 0.020511 8 0.014237 7 0.01383 2 0.013814 1 0.01362 9 0.012178 3 0.009485 12 0.119287 13 0.09607 21 0.087077 11 0.063841 23 0.061849 19 0.057223 20 0.055206 24 0.051927 18 0.048458 22 0.046728 14 0.041801 16 0.037732 17 0.034817 0 0.029972 10 0.027734 6 0.021494 4 0.021108 5 0.020511 8 0.014237 7 0.01383 2 0.013814 1 0.01362 9 0.012178 3 0.009485 12 0.09937732816731926 13 0.08307195575080652 21 0.08219116825316854 11 0.06255552617589243 19 0.05695052841633775 18 0.054065054117009965 23 0.053560743568096224 22 0.052019551156791084 20 0.051140506113648614 14 0.047181575168235686 24 0.046946836349444444 10 0.03765245861625635 17 0.035806505187482844 16 0.03373063992728094 0 0.0324160734649653 9 0.02185179267576666 4 0.021520692255045 5 0.021019110828028834 6 0.02093525528899224 8 0.01516163122444261 7 0.01495745740191197 1 0.014787720644097077 2 0.014750162567298448 3 0.01204750001895795 15 0.010622207830724682 __DUMMY__ 0.003680018831998781 false 1.0
553 18 0.081347 19 0.078311 22 0.067121 20 0.063275 17 0.059389 21 0.056253 24 0.051512 9 0.050236 23 0.045311 10 0.044929 16 0.044899 0 0.038783 11 0.03621 4 0.030961 5 0.030274 3 0.028298 12 0.027239 6 0.027125 7 0.026818 8 0.026768 1 0.026448 2 0.025832 15 0.018413 14 0.014248 18 0.081347 19 0.078311 22 0.067121 20 0.063275 17 0.059389 21 0.056253 24 0.051512 9 0.050236 23 0.045311 10 0.044929 16 0.044899 0 0.038783 11 0.03621 4 0.030961 5 0.030274 3 0.028298 12 0.027239 6 0.027125 7 0.026818 8 0.026768 1 0.026448 2 0.025832 15 0.018413 14 0.014248 18 0.07399930795116416 19 0.07164706093675198 22 0.0639025275411489 20 0.059951693380676026 21 0.05884534907840648 17 0.05087406696184044 24 0.050830573780365755 10 0.046835877189364085 9 0.0458572924112684 23 0.04499155147156189 11 0.04156354064952425 16 0.04013104111015249 0 0.03548868813585105 12 0.03449920515509131 4 0.02945065883785281 5 0.028864393347353294 14 0.027389985969067738 3 0.02696442034546642 6 0.02570286812601337 15 0.0253441175119067 7 0.02528649702484642 8 0.02528567450353103 1 0.024972756721187553 2 0.024494953790026443 13 0.014504031812687803 __DUMMY__ 0.0023218662568932746 false 1.0
311 12 0.130063 13 0.121729 21 0.101995 11 0.066923 14 0.065827 18 0.060003 23 0.059843 22 0.050576 20 0.05005 19 0.048907 10 0.04517 24 0.043061 0 0.022374 9 0.018372 4 0.01836 5 0.017945 17 0.017533 6 0.017317 8 0.008594 1 0.008579 7 0.008431 2 0.008195 16 0.005898 3 0.004254 12 0.130063 13 0.121729 21 0.101995 11 0.066923 14 0.065827 18 0.060003 23 0.059843 22 0.050576 20 0.05005 19 0.048907 10 0.04517 24 0.043061 0 0.022374 9 0.018372 4 0.01836 5 0.017945 17 0.017533 6 0.017317 8 0.008594 1 0.008579 7 0.008431 2 0.008195 16 0.005898 3 0.004254 12 0.10207282559691137 13 0.09453262421681576 21 0.08850043811218342 11 0.06404591741109636 14 0.060245765907861654 18 0.0600727695992039 22 0.05440702805819846 19 0.05168844244062755 23 0.051369122967676206 10 0.04786226890950272 20 0.04731721143207543 24 0.04153225369637127 0 0.028955775969194155 17 0.02677078454397412 9 0.02638540531056789 4 0.02069428952698066 5 0.020282705907056074 6 0.01925951895682151 16 0.01651410687111573 8 0.012953556550282313 1 0.012870652500924694 7 0.012867526001105143 2 0.012552734054555556 15 0.012184686891132461 3 0.010254782332590574 __DUMMY__ 0.00380680623517518 false 1.0
795 18 0.07533566144106389 21 0.07031355213709252 10 0.0681353232624967 22 0.06751578365896717 11 0.06509057530160818 19 0.06336722000603255 12 0.05364025715808015 14 0.0523369404707405 13 0.047557519470594 9 0.04517009950428184 0 0.0450531260451712 17 0.044535671421174164 20 0.04410299752119226 24 0.032371034433765565 23 0.032255991014333116 16 0.030736239996384144 15 0.028452470682487706 4 0.01890537972261166 5 0.018511826963808604 6 0.01604486365705027 3 0.014146534327489732 7 0.013714547013654496 8 0.01365874611214697 1 0.01353450320938026 2 0.01319268996450637 __DUMMY__ 0.012320445503886002 false 0.0
554 19 0.112764 20 0.086835 18 0.085753 16 0.076324 21 0.074726 22 0.067069 17 0.063081 24 0.059699 11 0.056279 12 0.056215 10 0.051655 23 0.049169 0 0.037982 14 0.029573 9 0.027107 15 0.026845 13 0.02337 4 0.005189 5 0.004773 3 0.002779 6 0.001041 7 6.78E-4 1 5.98E-4 8 4.96E-4 19 0.112764 20 0.086835 18 0.085753 16 0.076324 21 0.074726 22 0.067069 17 0.063081 24 0.059699 11 0.056279 12 0.056215 10 0.051655 23 0.049169 0 0.037982 14 0.029573 9 0.027107 15 0.026845 13 0.02337 4 0.005189 5 0.004773 3 0.002779 6 0.001041 7 6.78E-4 1 5.98E-4 8 4.96E-4 19 0.0921483657879687 18 0.07550226514156956 20 0.07404636982261384 21 0.07109413564759096 22 0.0628448881668462 16 0.0604820565501304 24 0.05606034988773446 12 0.055949608983917355 11 0.05388337962677124 17 0.05379902946698943 23 0.048581783552357836 10 0.048280732135876164 14 0.03517914950813553 0 0.03512011647037533 13 0.031122624465483154 9 0.029882952248169576 15 0.02824398615090552 4 0.013567964106137389 5 0.013145536830511475 3 0.010571366004722416 6 0.010004637053892625 7 0.009055916957066784 8 0.008960928382226348 1 0.008902469842795198 2 0.008455947664974766 __DUMMY__ 0.005113439544237623 false 1.0
312 12 0.106777 13 0.0837 21 0.081895 11 0.06209 19 0.061527 20 0.057185 23 0.056009 18 0.052898 24 0.048395 22 0.047323 16 0.041358 17 0.038897 14 0.036881 0 0.035324 10 0.034918 6 0.02131 4 0.021071 5 0.020642 9 0.018496 7 0.015451 8 0.015381 1 0.015339 2 0.015256 3 0.011875 12 0.106777 13 0.0837 21 0.081895 11 0.06209 19 0.061527 20 0.057185 23 0.056009 18 0.052898 24 0.048395 22 0.047323 16 0.041358 17 0.038897 14 0.036881 0 0.035324 10 0.034918 6 0.02131 4 0.021071 5 0.020642 9 0.018496 7 0.015451 8 0.015381 1 0.015339 2 0.015256 3 0.011875 12 0.09380385334591305 21 0.08109341218035278 13 0.07735904585738757 11 0.06263902881256649 19 0.05975894628175171 18 0.0569075639607199 22 0.05324319217897845 20 0.05260197885287123 23 0.05059363163664482 24 0.0456862610671853 14 0.045594411157835364 10 0.04187517731712296 17 0.03711421878150517 16 0.03468319999932209 0 0.03454105032769065 9 0.024945366125232286 4 0.020897068916482405 5 0.020478185613305888 6 0.020020410482680842 7 0.014938282523478518 8 0.014903510149930292 1 0.014808840533293224 2 0.01463788239671957 3 0.01258959523280493 15 0.0102708522784865 __DUMMY__ 0.00401503398973794 false 1.0
796 9 0.05822796681877726 22 0.05722806769934361 17 0.04882104096812498 0 0.04836373898166808 18 0.0483126244170737 4 0.04773051452421558 5 0.04719739389744805 6 0.046642233408338715 8 0.04635779104024095 7 0.046332494028207716 1 0.046190656903644024 3 0.04595086223020359 2 0.04561340603715841 10 0.04210605919441606 21 0.04082109249600421 23 0.03880383846311977 11 0.03861182462438979 19 0.038256290926220037 24 0.03172819926708755 16 0.029423238478335424 20 0.022727744992604368 15 0.021564698013458294 12 0.019991819841254296 14 0.019769070628472815 __DUMMY__ 0.01229147096259185 13 0.01093586115760092 false 0.0
313 13 0.126994 12 0.107456 14 0.096541 21 0.075453 18 0.067465 10 0.066033 11 0.060557 20 0.053135 15 0.050185 19 0.048543 23 0.04091 22 0.037977 0 0.028441 24 0.027503 17 0.024458 16 0.022165 9 0.018929 6 0.010856 4 0.010379 5 0.010049 8 0.004089 1 0.004054 7 0.003932 2 0.003894 13 0.126994 12 0.107456 14 0.096541 21 0.075453 18 0.067465 10 0.066033 11 0.060557 20 0.053135 15 0.050185 19 0.048543 23 0.04091 22 0.037977 0 0.028441 24 0.027503 17 0.024458 16 0.022165 9 0.018929 6 0.010856 4 0.010379 5 0.010049 8 0.004089 1 0.004054 7 0.003932 2 0.003894 13 0.09663976319648271 12 0.0887942276029533 14 0.0778043143839737 21 0.07429738749451516 18 0.06482620570523451 11 0.059288995342764425 10 0.05875316206003823 19 0.051755464278831285 20 0.05004144047223886 22 0.047751493206455 23 0.042021911910287986 15 0.04091970800908742 24 0.03426332389182479 0 0.030605634720833868 17 0.02979429507417025 9 0.026616733487157044 16 0.02427315411479934 4 0.01646301879389358 5 0.016093735684178885 6 0.01562545732143593 8 0.010472760925311717 7 0.010372457445424 1 0.010361755725672784 2 0.01015115681665423 3 0.008078689217168918 __DUMMY__ 0.003933753118612058 false 1.0
797 9 0.05822796681877726 22 0.05722806769934361 17 0.04882104096812498 0 0.048363738981668083 18 0.0483126244170737 4 0.04773051452421557 5 0.047197393897448044 6 0.046642233408338715 8 0.04635779104024095 7 0.046332494028207716 1 0.046190656903644024 3 0.04595086223020359 2 0.04561340603715841 10 0.04210605919441607 21 0.04082109249600421 23 0.03880383846311977 11 0.03861182462438979 19 0.038256290926220037 24 0.03172819926708755 16 0.029423238478335428 20 0.022727744992604368 15 0.021564698013458294 12 0.019991819841254296 14 0.019769070628472815 __DUMMY__ 0.01229147096259185 13 0.01093586115760092 false 0.0
555 17 0.089997 16 0.082934 0 0.080012 19 0.055852 18 0.055134 22 0.053896 11 0.050582 9 0.049098 10 0.043051 6 0.038162 8 0.03582 7 0.035378 1 0.035174 2 0.035079 4 0.033552 5 0.033254 12 0.029868 3 0.029687 23 0.029386 21 0.02913 15 0.025026 20 0.023024 24 0.017626 13 0.009279 17 0.089997 16 0.082934 0 0.080012 19 0.055852 18 0.055134 22 0.053896 11 0.050582 9 0.049098 10 0.043051 6 0.038162 8 0.03582 7 0.035378 1 0.035174 2 0.035079 4 0.033552 5 0.033254 12 0.029868 3 0.029687 23 0.029386 21 0.02913 15 0.025026 20 0.023024 24 0.017626 13 0.009279 17 0.07821840521799667 0 0.07043038389208249 16 0.06851674881276593 22 0.054201491295344496 18 0.053556853512845164 19 0.05154575769388361 9 0.050023781372076026 11 0.04803751851339583 10 0.0424272656141573 6 0.03962546358106362 8 0.03762296707602779 7 0.037362285657273966 1 0.03721362321794678 2 0.03688269671928698 4 0.036522183372559455 5 0.03612940106508983 21 0.03364362879062451 23 0.03292089610779583 3 0.03289885705539088 12 0.030007168290329043 15 0.024370914281794064 20 0.024239560168652353 24 0.02210802891066773 13 0.012578017732424318 14 0.006774073358575615 __DUMMY__ 0.002142028689949642 false 1.0
556 19 0.097999 21 0.085909 18 0.084809 20 0.084103 12 0.072233 22 0.065652 24 0.061266 11 0.056896 23 0.054382 10 0.052973 16 0.05217 17 0.047808 13 0.043479 14 0.042212 0 0.029049 9 0.025655 15 0.022367 4 0.007648 5 0.006796 6 0.002878 3 0.002541 8 6.46E-4 7 4.66E-4 1 6.1E-5 19 0.097999 21 0.085909 18 0.084809 20 0.084103 12 0.072233 22 0.065652 24 0.061266 11 0.056896 23 0.054382 10 0.052973 16 0.05217 17 0.047808 13 0.043479 14 0.042212 0 0.029049 9 0.025655 15 0.022367 4 0.007648 5 0.006796 6 0.002878 3 0.002541 8 6.46E-4 7 4.66E-4 1 6.1E-5 19 0.08365312457643084 18 0.07749200615753703 21 0.0740609989748751 20 0.07281235334801368 22 0.061362825650937244 12 0.06054873766705716 24 0.055320720529519106 11 0.05208469154134378 10 0.052078531777845834 23 0.05035315940963157 16 0.0458646624516327 17 0.04541267785929078 14 0.04282548649007421 13 0.04011318501164554 9 0.031057071854982566 0 0.03047371992813161 15 0.028162545898987385 4 0.015572909429616283 5 0.0149662500191154 3 0.011594805130678346 6 0.011576162145991458 8 0.009937574956948777 7 0.00985428558367886 1 0.009561930623308275 2 0.009399083663151148 __DUMMY__ 0.0038604993195754628 false 1.0
314 12 0.11022 13 0.101225 21 0.085347 19 0.067695 18 0.065193 20 0.06299 11 0.06241 14 0.061641 23 0.049573 10 0.048304 22 0.0466 24 0.042752 16 0.041778 17 0.038142 0 0.032684 15 0.020349 9 0.017116 4 0.010424 6 0.01042 5 0.010026 8 0.004018 7 0.003841 1 0.003834 2 0.003419 12 0.11022 13 0.101225 21 0.085347 19 0.067695 18 0.065193 20 0.06299 11 0.06241 14 0.061641 23 0.049573 10 0.048304 22 0.0466 24 0.042752 16 0.041778 17 0.038142 0 0.032684 15 0.020349 9 0.017116 4 0.010424 6 0.01042 5 0.010026 8 0.004018 7 0.003841 1 0.003834 2 0.003419 12 0.09384364202076056 13 0.08476021081568307 21 0.08163794680042391 18 0.06283532336546353 19 0.062444603965711935 11 0.061778785039104736 14 0.057794620260579556 20 0.05553463612609258 22 0.05254984708869712 10 0.04822296291177957 23 0.0474841766072729 24 0.04309075937152188 17 0.03674060152963967 16 0.03485801594998529 0 0.032915426053202794 9 0.02450380855930173 15 0.021510593959591654 4 0.01613180926764564 5 0.015721631422390026 6 0.015108977754055307 8 0.009899211027467115 7 0.009809587723943542 1 0.009730696658845125 2 0.009403175046517586 3 0.00742002445211994 __DUMMY__ 0.00426892622220343 false 1.0
798 18 0.07533566144106389 21 0.07031355213709252 10 0.0681353232624967 22 0.06751578365896717 11 0.06509057530160818 19 0.06336722000603255 12 0.05364025715808015 14 0.0523369404707405 13 0.047557519470594 9 0.04517009950428184 0 0.0450531260451712 17 0.044535671421174164 20 0.04410299752119226 24 0.032371034433765565 23 0.032255991014333116 16 0.030736239996384144 15 0.028452470682487706 4 0.01890537972261166 5 0.018511826963808604 6 0.01604486365705027 3 0.014146534327489732 7 0.013714547013654496 8 0.01365874611214697 1 0.01353450320938026 2 0.01319268996450637 __DUMMY__ 0.012320445503886002 false 0.0
557 21 0.08964 22 0.073165 12 0.068261 11 0.065654 18 0.059642 10 0.051639 13 0.05149 19 0.049442 9 0.049365 24 0.044738 23 0.044722 14 0.044161 20 0.034839 4 0.032582 5 0.032392 0 0.032331 6 0.027227 17 0.026327 3 0.026056 1 0.02443 7 0.023979 2 0.023895 8 0.023689 16 3.32E-4 21 0.08964 22 0.073165 12 0.068261 11 0.065654 18 0.059642 10 0.051639 13 0.05149 19 0.049442 9 0.049365 24 0.044738 23 0.044722 14 0.044161 20 0.034839 4 0.032582 5 0.032392 0 0.032331 6 0.027227 17 0.026327 3 0.026056 1 0.02443 7 0.023979 2 0.023895 8 0.023689 16 3.32E-4 21 0.08048433165245214 12 0.06785793944977458 22 0.06611171114584509 11 0.06238314462598199 18 0.05849825293595651 13 0.05463256263098855 19 0.050558232369636365 10 0.04989148210864446 14 0.04489246634436906 23 0.044042659057441584 9 0.043843585270917355 24 0.041986333615442226 20 0.03755087408947313 0 0.035335266523489096 17 0.032148121621318734 4 0.03018366230826603 5 0.029873832925579973 6 0.026673384811645433 3 0.023811960039776762 1 0.02346433498843897 7 0.023320996953082207 8 0.02316554990052698 2 0.023033073237198703 16 0.013675115704267249 15 0.009399386952112442 __DUMMY__ 0.0031817387373743672 false 1.0
799 21 0.08076626044371352 12 0.06776168252625617 19 0.06703531511618148 22 0.06551266563063111 18 0.06248649975450334 11 0.06165926134410788 20 0.05363959527859368 24 0.05134098251240298 13 0.049360424743233024 23 0.04609445079598651 10 0.04508748252223933 14 0.04410223458679007 17 0.03884296294037792 9 0.03368120756400353 16 0.033471962441892544 0 0.032217353589839445 4 0.020793147463725653 5 0.020328853844119057 15 0.017879416577290533 __DUMMY__ 0.017406741305614044 6 0.017337750139415464 3 0.015389061837672927 7 0.014668670374078333 8 0.014591647792795703 1 0.014434518979342588 2 0.014109849895193125 false 0.0
315 0 0.091893 17 0.08902 11 0.078607 16 0.075203 22 0.065942 12 0.064356 18 0.063863 19 0.060307 10 0.057102 21 0.055549 9 0.04708 13 0.038438 6 0.026301 23 0.024935 4 0.021485 5 0.021274 8 0.020169 2 0.020126 7 0.019977 1 0.019966 20 0.01437 3 0.012706 24 0.006024 14 0.005306 0 0.091893 17 0.08902 11 0.078607 16 0.075203 22 0.065942 12 0.064356 18 0.063863 19 0.060307 10 0.057102 21 0.055549 9 0.04708 13 0.038438 6 0.026301 23 0.024935 4 0.021485 5 0.021274 8 0.020169 2 0.020126 7 0.019977 1 0.019966 20 0.01437 3 0.012706 24 0.006024 14 0.005306 0 0.06925244740047114 17 0.06891680323688582 11 0.06481782987497199 22 0.06022767373568405 12 0.05882535348545136 18 0.058173933906751754 16 0.05646497525678559 21 0.055755515309528256 19 0.053954164929971356 10 0.04994746676827067 9 0.044918741567452514 13 0.0401342667314353 23 0.03360797479315744 6 0.030458293609404184 4 0.028056006808705902 5 0.027730725373096694 8 0.025985557358971508 7 0.02588494665843192 1 0.02583740656316021 2 0.02567689464304091 20 0.02400983688340952 3 0.02109739821487291 24 0.020127585519736292 14 0.01813273425524007 15 0.0098467413108812 __DUMMY__ 0.0021587258042315882 false 1.0
558 19 0.096083 21 0.094231 20 0.091416 18 0.078811 12 0.077006 24 0.074743 22 0.068408 11 0.062672 23 0.053456 13 0.04563 16 0.04455 14 0.044512 10 0.044069 17 0.039173 9 0.022037 15 0.020144 0 0.018415 4 0.008569 5 0.00762 3 0.004062 6 0.002394 8 8.72E-4 7 6.61E-4 1 4.65E-4 19 0.096083 21 0.094231 20 0.091416 18 0.078811 12 0.077006 24 0.074743 22 0.068408 11 0.062672 23 0.053456 13 0.04563 16 0.04455 14 0.044512 10 0.044069 17 0.039173 9 0.022037 15 0.020144 0 0.018415 4 0.008569 5 0.00762 3 0.004062 6 0.002394 8 8.72E-4 7 6.61E-4 1 4.65E-4 21 0.08433937874729881 19 0.08290785279296697 20 0.07679187076200021 18 0.07208955209568081 12 0.06943092946738032 24 0.06494838051992187 22 0.0646091402961776 11 0.05832084847738465 23 0.051093650561478604 13 0.045522484149251516 14 0.04507642675607743 10 0.04455458074377726 16 0.040261697725292055 17 0.03864851663661135 9 0.027063015489095444 15 0.02323742132839358 0 0.023043784836853987 4 0.015050173343600785 5 0.014370585776219611 3 0.0107300988534963 6 0.010089527037251134 8 0.008394149561903362 7 0.008315132929073947 1 0.008093061716821906 2 0.007730052957688867 __DUMMY__ 0.00528768643830149 false 1.0
316 21 0.101407 12 0.097983 11 0.08737 22 0.075376 13 0.074699 19 0.071209 18 0.066297 10 0.056037 14 0.049126 20 0.048165 0 0.044847 24 0.043824 17 0.04209 23 0.037759 16 0.033346 9 0.03186 4 0.010491 5 0.009647 6 0.007589 8 0.00279 7 0.00228 2 0.002136 1 0.001959 3 0.001714 21 0.101407 12 0.097983 11 0.08737 22 0.075376 13 0.074699 19 0.071209 18 0.066297 10 0.056037 14 0.049126 20 0.048165 0 0.044847 24 0.043824 17 0.04209 23 0.037759 16 0.033346 9 0.03186 4 0.010491 5 0.009647 6 0.007589 8 0.00279 7 0.00228 2 0.002136 1 0.001959 3 0.001714 21 0.09072942737026542 12 0.08603554781324481 11 0.07587793245285972 22 0.06925176480072798 13 0.06772600112996004 19 0.06632290962966206 18 0.06447806548203999 10 0.05284154154525858 14 0.049068919759679835 20 0.04813329614068447 24 0.04390291182380453 23 0.04087003907057884 0 0.04037473099925559 17 0.04018338914062851 9 0.03306092592289757 16 0.031911998246025364 4 0.015702642548443987 5 0.015078103690898402 6 0.013019866535169908 15 0.009120503773940074 8 0.008754126352456721 7 0.00854792504891338 1 0.008296487613897459 2 0.008217087511347991 3 0.00800374216567141 __DUMMY__ 0.0044901134316873564 false 1.0
317 13 0.112752 14 0.095752 12 0.090063 10 0.083115 11 0.078995 18 0.072735 21 0.07241 15 0.051001 22 0.05071 19 0.046224 0 0.045342 20 0.036605 17 0.032373 9 0.031303 23 0.024685 16 0.021742 24 0.013431 6 0.009429 4 0.0092 5 0.008978 7 0.00331 1 0.003286 8 0.003282 2 0.003277 13 0.112752 14 0.095752 12 0.090063 10 0.083115 11 0.078995 18 0.072735 21 0.07241 15 0.051001 22 0.05071 19 0.046224 0 0.045342 20 0.036605 17 0.032373 9 0.031303 23 0.024685 16 0.021742 24 0.013431 6 0.009429 4 0.0092 5 0.008978 7 0.00331 1 0.003286 8 0.003282 2 0.003277 13 0.08691478935639621 14 0.07768843928850858 12 0.07656212635906912 21 0.07145391795860838 10 0.06922839027413291 18 0.06866367036988677 11 0.06831341647269491 22 0.055088991775641284 19 0.05044511546359596 15 0.042791293497155276 20 0.04072953416735118 0 0.04007831133729999 9 0.03469365475206372 17 0.03447716815046255 23 0.03245331578540771 24 0.025959628508114937 16 0.023724677202784206 4 0.01610625210103601 5 0.01578187921741689 6 0.015034243885472767 8 0.010425703864123531 7 0.010413908165810502 1 0.01033038703626786 2 0.010167370993774107 3 0.00860373089267689 __DUMMY__ 0.003870083124247762 false 1.0
559 19 0.101885 21 0.091727 20 0.08255 18 0.076793 22 0.075536 24 0.069217 11 0.066987 12 0.066379 23 0.054488 16 0.051481 10 0.04965 14 0.043002 17 0.040393 13 0.033759 9 0.025052 0 0.024218 15 0.020911 4 0.008635 5 0.008259 3 0.005788 6 0.00145 8 7.8E-4 2 6.0E-4 7 4.61E-4 19 0.101885 21 0.091727 20 0.08255 18 0.076793 22 0.075536 24 0.069217 11 0.066987 12 0.066379 23 0.054488 16 0.051481 10 0.04965 14 0.043002 17 0.040393 13 0.033759 9 0.025052 0 0.024218 15 0.020911 4 0.008635 5 0.008259 3 0.005788 6 0.00145 8 7.8E-4 2 6.0E-4 7 4.61E-4 19 0.0839245861191113 21 0.08379689823779693 18 0.07095994520789561 22 0.07017882100331793 20 0.0681875848583611 12 0.0639727640004578 11 0.06362550993952154 24 0.05927053694510716 23 0.04969247949051923 10 0.04959498671652229 14 0.044755814080718145 16 0.042135107537776495 13 0.04015479676487048 17 0.039689583028028906 9 0.030518658440523514 0 0.02854598401895211 15 0.02228743180525829 4 0.015385007716122695 5 0.014977859834344074 3 0.011604027046459216 6 0.010013649544778626 8 0.008531474791309208 7 0.008410881546414213 2 0.00821660638266785 1 0.008066243892851443 __DUMMY__ 0.003502761050313886 false 1.0
318 21 0.097774 12 0.096274 11 0.086017 13 0.075697 22 0.073491 19 0.065666 18 0.064511 10 0.05566 14 0.04871 0 0.0461 20 0.043399 17 0.040947 24 0.040115 23 0.037402 9 0.033593 16 0.030996 4 0.013442 5 0.01284 6 0.011004 8 0.005572 7 0.005516 1 0.005406 2 0.005368 3 0.004502 21 0.097774 12 0.096274 11 0.086017 13 0.075697 22 0.073491 19 0.065666 18 0.064511 10 0.05566 14 0.04871 0 0.0461 20 0.043399 17 0.040947 24 0.040115 23 0.037402 9 0.033593 16 0.030996 4 0.013442 5 0.01284 6 0.011004 8 0.005572 7 0.005516 1 0.005406 2 0.005368 3 0.004502 21 0.08896050158319148 12 0.08606652560549179 11 0.07558314663800891 13 0.06969599378002948 22 0.06801612573651669 18 0.06346235630163173 19 0.06283282449757423 10 0.053057857163788025 14 0.049578656124138844 20 0.04516115052633792 24 0.04136777361743163 0 0.04122811429158454 23 0.04047310579879632 17 0.0393732623752773 9 0.03383101968783532 16 0.03021532939662223 4 0.017131009825931985 5 0.016622907353482954 6 0.014775493993072564 7 0.010096169395760822 8 0.010095455660191351 1 0.009948678364231854 2 0.009775851947219739 3 0.00920337890538618 15 0.00919567055501561 __DUMMY__ 0.0042516408754506825 false 1.0
319 12 0.132684 13 0.112433 21 0.105383 11 0.06961 20 0.067887 19 0.065597 23 0.065173 18 0.060165 14 0.05994 24 0.058603 22 0.05036 10 0.037686 16 0.021478 17 0.020067 0 0.01716 4 0.012901 5 0.012252 6 0.010771 9 0.008952 8 0.00293 2 0.002638 7 0.00262 1 0.002476 3 2.34E-4 12 0.132684 13 0.112433 21 0.105383 11 0.06961 20 0.067887 19 0.065597 23 0.065173 18 0.060165 14 0.05994 24 0.058603 22 0.05036 10 0.037686 16 0.021478 17 0.020067 0 0.01716 4 0.012901 5 0.012252 6 0.010771 9 0.008952 8 0.00293 2 0.002638 7 0.00262 1 0.002476 3 2.34E-4 12 0.10285657155949438 21 0.09144790759679146 13 0.08740123247972292 11 0.06528359532681856 19 0.06235435833541312 18 0.06046354798074846 20 0.058083429675605716 14 0.05573400109771043 22 0.05539082014011402 23 0.054999997488857956 24 0.051508585176443716 10 0.042761384673508034 17 0.028496101934521248 16 0.025591259207716426 0 0.025489050903876483 9 0.021148099421770976 4 0.017481173345514568 5 0.016947213235536215 6 0.015255365079643179 15 0.011264437142795984 8 0.009543148178371213 7 0.009408896681723384 1 0.009253718952218846 2 0.009180491114639375 3 0.007932957258522808 __DUMMY__ 0.004722656011920527 false 1.0
560 21 0.101692 19 0.095685 22 0.085551 20 0.078143 18 0.076148 24 0.075634 11 0.07303 12 0.068823 23 0.048579 16 0.043834 14 0.042696 17 0.042283 10 0.041892 13 0.032196 9 0.028928 0 0.021781 15 0.016787 4 0.009456 5 0.009377 3 0.005029 6 0.002014 7 2.59E-4 8 1.28E-4 2 5.3E-5 21 0.101692 19 0.095685 22 0.085551 20 0.078143 18 0.076148 24 0.075634 11 0.07303 12 0.068823 23 0.048579 16 0.043834 14 0.042696 17 0.042283 10 0.041892 13 0.032196 9 0.028928 0 0.021781 15 0.016787 4 0.009456 5 0.009377 3 0.005029 6 0.002014 7 2.59E-4 8 1.28E-4 2 5.3E-5 21 0.08831023180393544 19 0.08137286413807442 22 0.076960048164446 18 0.0700698042961506 11 0.06628104571132487 20 0.06533810135930858 24 0.06367086581357609 12 0.061330538374201174 23 0.04656007238341368 10 0.04420195068008467 17 0.042069748807927285 14 0.04185521504856675 16 0.03937407520337298 13 0.033928218868720314 9 0.03377828936692715 0 0.027722624416656075 15 0.019730743504465322 4 0.01664230345027203 5 0.01632713497807624 3 0.012403553941253954 6 0.010969843183641604 7 0.00930358386640026 8 0.009200109539920317 1 0.00901821802318389 2 0.008831484234656004 __DUMMY__ 0.004749330841444118 false 1.0
561 22 0.080387 21 0.078484 11 0.070543 9 0.060483 10 0.050603 18 0.048049 12 0.046192 0 0.043012 4 0.041898 5 0.041394 14 0.03816 6 0.037604 3 0.036943 24 0.036536 23 0.036105 7 0.03538 8 0.035247 1 0.035001 2 0.034768 13 0.034205 19 0.033346 17 0.030014 20 0.012405 15 0.00324 22 0.080387 21 0.078484 11 0.070543 9 0.060483 10 0.050603 18 0.048049 12 0.046192 0 0.043012 4 0.041898 5 0.041394 14 0.03816 6 0.037604 3 0.036943 24 0.036536 23 0.036105 7 0.03538 8 0.035247 1 0.035001 2 0.034768 13 0.034205 19 0.033346 17 0.030014 20 0.012405 15 0.00324 21 0.07487803654851173 22 0.07398173180017133 11 0.06583584891176282 18 0.053246995986463104 9 0.052498964898876045 12 0.049974660483097184 10 0.04915339259092153 19 0.044276738559491054 0 0.04200877725759505 24 0.039061178020166884 23 0.03858826599728393 14 0.03783435520966491 13 0.03643909792610075 17 0.03616796941285294 4 0.03578071712659376 5 0.035296128873935996 6 0.032269045739797705 3 0.030829512029122482 7 0.029985968920516606 8 0.029883331986558237 1 0.02970040527491303 2 0.029353164071476576 20 0.024991398328106554 16 0.01433155241452755 15 0.009627740958585996 __DUMMY__ 0.004005020672906077 false 1.0
320 12 0.125165 13 0.116937 21 0.086268 11 0.066013 14 0.061708 18 0.059465 19 0.057879 20 0.054811 23 0.051085 10 0.046327 22 0.042665 16 0.037264 24 0.036531 17 0.035471 0 0.034923 6 0.014 9 0.013743 15 0.012837 4 0.012301 5 0.012119 8 0.005704 2 0.005683 7 0.005574 1 0.005526 12 0.125165 13 0.116937 21 0.086268 11 0.066013 14 0.061708 18 0.059465 19 0.057879 20 0.054811 23 0.051085 10 0.046327 22 0.042665 16 0.037264 24 0.036531 17 0.035471 0 0.034923 6 0.014 9 0.013743 15 0.012837 4 0.012301 5 0.012119 8 0.005704 2 0.005683 7 0.005574 1 0.005526 12 0.1003549876834557 13 0.09310189390696377 21 0.08102558773841255 11 0.06328019675280011 18 0.05988500241354478 14 0.05880100144318371 19 0.05614277622921881 22 0.05021927923625699 20 0.05009102874885757 10 0.04810887839428007 23 0.04746620473867558 24 0.0386162175220056 17 0.03530176430606559 0 0.03458195957891992 16 0.03175521617192325 9 0.023625825323326608 15 0.018880382451964096 4 0.01753767617897105 6 0.017456540945296504 5 0.01723099947609953 8 0.011307222141792219 7 0.01122644761655026 1 0.011140222226220462 2 0.01107645882429056 3 0.007880511290505147 __DUMMY__ 0.003905718660419604 false 1.0
562 22 0.086991 21 0.084999 11 0.076952 9 0.061022 10 0.051604 18 0.050113 12 0.047783 0 0.044755 4 0.038596 19 0.038537 5 0.038253 24 0.038189 14 0.037312 23 0.033876 6 0.033769 3 0.033389 17 0.032638 7 0.03148 13 0.031443 8 0.031324 1 0.031251 2 0.030859 20 0.012222 16 0.002643 22 0.086991 21 0.084999 11 0.076952 9 0.061022 10 0.051604 18 0.050113 12 0.047783 0 0.044755 4 0.038596 19 0.038537 5 0.038253 24 0.038189 14 0.037312 23 0.033876 6 0.033769 3 0.033389 17 0.032638 7 0.03148 13 0.031443 8 0.031324 1 0.031251 2 0.030859 20 0.012222 16 0.002643 21 0.07849282125437797 22 0.07784531592505105 11 0.06934011167122964 18 0.054523353196903636 9 0.05274849197900349 12 0.05041425155703905 10 0.04952722484698673 19 0.0476302716880967 0 0.042875150953723816 24 0.040385034888890156 17 0.03780503280552883 23 0.037464530248971006 14 0.03707906197505769 13 0.034186078812324334 4 0.03385730470554334 5 0.03344114370904114 6 0.03000225456617426 3 0.02884059157871814 7 0.027742401546179983 8 0.02762562441444324 1 0.02751549624577683 2 0.027090628647974898 20 0.025329678551950095 16 0.01617153762523714 15 0.007919277368908672 __DUMMY__ 0.00414732923686829 false 1.0
321 23 0.091326 12 0.086645 24 0.081222 20 0.07977 19 0.060665 21 0.059813 13 0.058915 16 0.046139 5 0.038934 4 0.038128 6 0.037235 2 0.037162 3 0.036021 1 0.034994 7 0.034392 8 0.034298 18 0.032916 17 0.025197 11 0.022805 22 0.021789 14 0.0216 15 0.014448 0 0.004093 9 0.001493 23 0.091326 12 0.086645 24 0.081222 20 0.07977 19 0.060665 21 0.059813 13 0.058915 16 0.046139 5 0.038934 4 0.038128 6 0.037235 2 0.037162 3 0.036021 1 0.034994 7 0.034392 8 0.034298 18 0.032916 17 0.025197 11 0.022805 22 0.021789 14 0.0216 15 0.014448 0 0.004093 9 0.001493 12 0.0747243649911606 23 0.07152148059282416 20 0.06683864611170308 24 0.06544550241365762 21 0.06378688816586608 19 0.060649633804911264 13 0.05435072644202999 18 0.04612551682367095 16 0.04061163517832635 22 0.03836406080957552 11 0.03636295627034087 5 0.03257352330693705 4 0.03245769479939716 14 0.032454727087434215 17 0.031989535319329 6 0.03089267299552663 2 0.02915814660369887 3 0.02870925615385825 1 0.028315887582579958 7 0.028153569340598428 8 0.02809474056594915 10 0.020691396034597055 15 0.0204027975967496 0 0.017129458066888193 9 0.016816664074391807 __DUMMY__ 0.0033785188679981122 false 1.0
563 22 0.106991 21 0.100121 11 0.096602 19 0.091841 18 0.073522 17 0.061579 10 0.056556 0 0.055003 16 0.051493 12 0.050353 9 0.049847 24 0.048559 20 0.038845 23 0.030682 14 0.026698 4 0.012142 5 0.01198 13 0.010195 3 0.007014 6 0.005802 7 0.003747 1 0.003731 8 0.003487 2 0.003209 22 0.106991 21 0.100121 11 0.096602 19 0.091841 18 0.073522 17 0.061579 10 0.056556 0 0.055003 16 0.051493 12 0.050353 9 0.049847 24 0.048559 20 0.038845 23 0.030682 14 0.026698 4 0.012142 5 0.01198 13 0.010195 3 0.007014 6 0.005802 7 0.003747 1 0.003731 8 0.003487 2 0.003209 22 0.08919570618408393 21 0.08801434221474463 11 0.08044673908780293 19 0.07710907961598344 18 0.06732010091349205 17 0.05274641649207812 12 0.05231386119382222 10 0.051738544327612 24 0.04766474143474516 0 0.047233073202583464 9 0.04607757648502195 16 0.04223770668936223 20 0.041085678329053174 23 0.036106837772747646 14 0.03198912328020732 13 0.022731853435839642 4 0.01896790331634457 5 0.018620052439399234 6 0.014110492809801301 3 0.014060215312234826 7 0.012051102745037866 1 0.011883222331396907 8 0.0118814669045268 2 0.011405981825308793 15 0.008186311634210025 __DUMMY__ 0.004821870022559753 false 1.0
322 12 0.110517 13 0.101257 21 0.085719 19 0.068012 18 0.065589 20 0.063313 11 0.061677 14 0.061337 23 0.049351 10 0.048446 22 0.047732 24 0.042413 16 0.042074 17 0.038301 0 0.032935 15 0.020626 9 0.016877 6 0.009927 4 0.009761 5 0.00962 1 0.003804 7 0.003692 8 0.003607 2 0.003412 12 0.110517 13 0.101257 21 0.085719 19 0.068012 18 0.065589 20 0.063313 11 0.061677 14 0.061337 23 0.049351 10 0.048446 22 0.047732 24 0.042413 16 0.042074 17 0.038301 0 0.032935 15 0.020626 9 0.016877 6 0.009927 4 0.009761 5 0.00962 1 0.003804 7 0.003692 8 0.003607 2 0.003412 12 0.09405430700499433 13 0.0849112477892285 21 0.0818552403173626 18 0.06303866634097362 19 0.06257564546137334 11 0.06144619493153678 14 0.0577871159732971 20 0.055714931622009405 22 0.05305614367738683 10 0.04832193578106669 23 0.04738061903439988 24 0.04293871609616616 17 0.03673931247479902 16 0.034919599150795885 0 0.032968186766918525 9 0.02436618200858633 15 0.021695698367845705 4 0.01579712867475918 5 0.015505159538586223 6 0.014848095440679714 7 0.009703087788186232 1 0.009678767409292702 8 0.00967171052947534 2 0.009360532722034718 3 0.00738277052736164 __DUMMY__ 0.00428300457088365 false 1.0
564 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.094317 21 0.077543 9 0.069576 11 0.057607 24 0.051759 18 0.049608 19 0.045574 4 0.044709 5 0.043722 3 0.042551 0 0.041122 17 0.040448 8 0.038602 6 0.03817 7 0.038051 1 0.037793 2 0.037473 10 0.037024 23 0.033456 14 0.029204 12 0.018325 20 0.016999 15 0.009461 16 0.006907 22 0.0773996909709194 21 0.07370499033973221 11 0.057361467689369894 9 0.05454152444359729 18 0.05415175728551578 19 0.04923891827739583 24 0.046169878070947475 10 0.04265605869926147 12 0.03979276924114654 17 0.03947594100860586 14 0.0390805213102292 0 0.0388993740353535 23 0.037815775848134996 4 0.0360575303214556 5 0.03532983850232015 3 0.03216448745668077 6 0.03172003217916117 8 0.030459454926910344 7 0.030173398378053006 1 0.02996014366017181 2 0.02961542539526462 20 0.0291144014573072 13 0.026848949761719608 15 0.017518319504637715 16 0.017088259830099643 __DUMMY__ 0.003661091406008859 false 1.0
323 13 0.128413 12 0.10851 14 0.097515 21 0.077559 18 0.067836 10 0.066408 11 0.060301 20 0.053188 15 0.05009 19 0.048601 23 0.041808 22 0.037871 0 0.027296 24 0.026414 17 0.023607 16 0.021324 9 0.018464 6 0.010301 5 0.009955 4 0.009728 2 0.004 1 0.003828 7 0.003531 8 0.003453 13 0.128413 12 0.10851 14 0.097515 21 0.077559 18 0.067836 10 0.066408 11 0.060301 20 0.053188 15 0.05009 19 0.048601 23 0.041808 22 0.037871 0 0.027296 24 0.026414 17 0.023607 16 0.021324 9 0.018464 6 0.010301 5 0.009955 4 0.009728 2 0.004 1 0.003828 7 0.003531 8 0.003453 13 0.09726439266097828 12 0.08911571460641689 14 0.07839785494507787 21 0.07517942138289871 18 0.06501633292493197 11 0.05909011387312963 10 0.05898325334755581 19 0.05170018981843844 20 0.05003166211202444 22 0.04768658275467525 23 0.04239354969789626 15 0.041077319532964784 24 0.033726244524591394 0 0.030025284766560918 17 0.029346286665111805 9 0.02645826010526942 16 0.02378472836168423 4 0.016193562172761595 5 0.016080596773483433 6 0.015392926090775007 1 0.010291491157809455 2 0.010231399167708159 7 0.010222034902968075 8 0.010213976289568426 3 0.00812153961477817 __DUMMY__ 0.003975281749941595 false 1.0
565 17 0.086069 16 0.08259 0 0.070697 19 0.057277 18 0.052456 22 0.052389 9 0.045726 11 0.044388 6 0.03864 8 0.036985 1 0.036862 7 0.036758 2 0.03623 5 0.034746 4 0.034684 23 0.034353 10 0.034012 3 0.03176 21 0.031469 20 0.030871 12 0.030232 24 0.027523 15 0.025747 13 0.007534 17 0.086069 16 0.08259 0 0.070697 19 0.057277 18 0.052456 22 0.052389 9 0.045726 11 0.044388 6 0.03864 8 0.036985 1 0.036862 7 0.036758 2 0.03623 5 0.034746 4 0.034684 23 0.034353 10 0.034012 3 0.03176 21 0.031469 20 0.030871 12 0.030232 24 0.027523 15 0.025747 13 0.007534 17 0.07702117702996465 16 0.06984714794870746 0 0.06579261699328341 19 0.053353871199091435 22 0.05320352022553227 18 0.05278218028824318 9 0.04761509161783148 11 0.04493940149302681 6 0.039124328249218146 10 0.037917895820815145 8 0.03745265203029675 7 0.03728295186370283 1 0.03727617596941829 2 0.03670175211919117 4 0.036299243973620665 5 0.03607564032268884 23 0.0354403035485004 21 0.0347274203761769 3 0.03313052311017496 12 0.030537543051002806 20 0.029271095855928055 24 0.027417148441169454 15 0.025774085237147092 13 0.011851903706562162 14 0.007035452700965358 __DUMMY__ 0.002128876827740313 false 1.0
324 12 0.101364 21 0.088912 13 0.087269 11 0.064248 22 0.061418 18 0.06124 23 0.056909 19 0.050756 14 0.04542 17 0.039863 10 0.038094 0 0.037788 20 0.03548 24 0.03519 9 0.029382 6 0.024732 4 0.024411 5 0.022625 16 0.020408 7 0.016741 8 0.016653 1 0.016011 2 0.014957 3 0.010128 12 0.101364 21 0.088912 13 0.087269 11 0.064248 22 0.061418 18 0.06124 23 0.056909 19 0.050756 14 0.04542 17 0.039863 10 0.038094 0 0.037788 20 0.03548 24 0.03519 9 0.029382 6 0.024732 4 0.024411 5 0.022625 16 0.020408 7 0.016741 8 0.016653 1 0.016011 2 0.014957 3 0.010128 12 0.09241874539400871 21 0.08385095378553072 13 0.08154663787590027 11 0.06296088174058476 18 0.0598596837029425 22 0.05855512023982437 19 0.05314922217116923 23 0.051595004384178605 14 0.051004278024455126 10 0.04272519744293077 20 0.041755463180031455 24 0.03904946656975567 17 0.03672954477601376 0 0.03511268540729604 9 0.029394806024007968 16 0.024030655360724434 4 0.022920510743536744 6 0.02226689567138895 5 0.02186481105926593 7 0.016011211611823454 8 0.015981773822941168 1 0.015603450715983049 2 0.01498410585021097 3 0.012018045279867344 15 0.011312661677984762 __DUMMY__ 0.0032981874876430173 false 1.0
566 17 0.07691 16 0.069117 0 0.063591 19 0.054119 22 0.05326 18 0.052504 9 0.049784 6 0.041455 8 0.041131 1 0.041107 7 0.041008 11 0.040229 2 0.040135 4 0.039351 5 0.039077 3 0.037841 23 0.036308 10 0.035166 24 0.03332 20 0.032814 21 0.030965 15 0.027798 12 0.020498 14 0.002513 17 0.07691 16 0.069117 0 0.063591 19 0.054119 22 0.05326 18 0.052504 9 0.049784 6 0.041455 8 0.041131 1 0.041107 7 0.041008 11 0.040229 2 0.040135 4 0.039351 5 0.039077 3 0.037841 23 0.036308 10 0.035166 24 0.03332 20 0.032814 21 0.030965 15 0.027798 12 0.020498 14 0.002513 17 0.07256132501975486 16 0.06394700490351025 0 0.06152053483521675 18 0.05416539615877144 22 0.054069934578451606 19 0.053587493833661556 9 0.0488978402106411 11 0.043194256385412334 10 0.039103464985411326 6 0.03900201685177715 8 0.03804389951359627 7 0.03790660687789572 1 0.03787882758980099 4 0.03726256854921283 2 0.03717221556199027 5 0.03687650642813155 23 0.03632867295196125 21 0.03536240226850015 3 0.03485217527056921 20 0.032226431553624785 24 0.03129386989682289 15 0.028371493145846936 12 0.026116024414622276 14 0.009778161950688024 13 0.008536241970289269 __DUMMY__ 0.0019446342938393428 false 1.0
567 22 0.080064 21 0.078535 11 0.070165 9 0.060523 10 0.050627 18 0.047623 12 0.0461 0 0.042544 4 0.042043 5 0.041534 14 0.038296 6 0.037778 3 0.037004 24 0.036558 23 0.036213 7 0.035674 8 0.035507 1 0.03533 2 0.034845 13 0.033855 19 0.033303 17 0.029993 20 0.012384 15 0.003503 22 0.080064 21 0.078535 11 0.070165 9 0.060523 10 0.050627 18 0.047623 12 0.0461 0 0.042544 4 0.042043 5 0.041534 14 0.038296 6 0.037778 3 0.037004 24 0.036558 23 0.036213 7 0.035674 8 0.035507 1 0.03533 2 0.034845 13 0.033855 19 0.033303 17 0.029993 20 0.012384 15 0.003503 21 0.07488442256365069 22 0.07381043041672478 11 0.06564157534456858 18 0.05304192109998076 9 0.052515121506658054 12 0.04993371777619282 10 0.04916038572364966 19 0.04423624224565154 0 0.041786358379340645 24 0.039065441553965484 23 0.03864332966659137 14 0.03790252781048367 13 0.03629326749016558 17 0.03614851040143339 4 0.03585771909539156 5 0.03537069496476008 6 0.032361619849006866 3 0.030867697997601678 7 0.030133694838459773 8 0.03001545175320458 1 0.029864268719166857 2 0.029400651945097462 20 0.024979415755762784 16 0.014319525450309721 15 0.009757643956316654 __DUMMY__ 0.004008363695865311 false 1.0
325 12 0.104086 21 0.094468 19 0.07773 13 0.076216 11 0.069989 20 0.066535 18 0.064723 22 0.059635 24 0.054264 23 0.052705 16 0.044538 10 0.042119 17 0.041571 14 0.040194 0 0.035056 9 0.020204 4 0.011989 5 0.011407 6 0.010293 7 0.005227 8 0.004954 1 0.004773 2 0.00428 3 0.003042 12 0.104086 21 0.094468 19 0.07773 13 0.076216 11 0.069989 20 0.066535 18 0.064723 22 0.059635 24 0.054264 23 0.052705 16 0.044538 10 0.042119 17 0.041571 14 0.040194 0 0.035056 9 0.020204 4 0.011989 5 0.011407 6 0.010293 7 0.005227 8 0.004954 1 0.004773 2 0.00428 3 0.003042 12 0.08950986301460113 21 0.08696496943078298 19 0.07005899374890184 13 0.06886543623293666 11 0.06581097750160732 18 0.06333250396565317 22 0.060333887952377784 20 0.05900029299726464 24 0.05049804018816571 23 0.049365905228625 14 0.04498620926777767 10 0.0446688906057068 17 0.039437744278771066 16 0.03799554661791057 0 0.03402921926559458 9 0.02612279442361208 4 0.016427146778930053 5 0.01592546870636389 6 0.014303841438722391 15 0.01019417772571987 7 0.009991229734932171 8 0.009847218068863975 1 0.009681897557085772 2 0.009307924741513308 3 0.008737346496282774 __DUMMY__ 0.004602474031296735 false 1.0
326 12 0.101979 13 0.086631 21 0.079465 11 0.070258 22 0.051201 19 0.047584 23 0.047246 18 0.047229 0 0.043595 10 0.040894 14 0.040868 20 0.038264 17 0.03742 24 0.036676 16 0.032325 9 0.026383 6 0.026292 4 0.025461 5 0.025103 8 0.019914 2 0.019808 7 0.019799 1 0.019735 3 0.015869 12 0.101979 13 0.086631 21 0.079465 11 0.070258 22 0.051201 19 0.047584 23 0.047246 18 0.047229 0 0.043595 10 0.040894 14 0.040868 20 0.038264 17 0.03742 24 0.036676 16 0.032325 9 0.026383 6 0.026292 4 0.025461 5 0.025103 8 0.019914 2 0.019808 7 0.019799 1 0.019735 3 0.015869 12 0.08968069712080055 13 0.07846717937934196 21 0.07828097504250218 11 0.06616685114889233 22 0.054855851198354975 18 0.05410146374372701 19 0.05118873315814879 14 0.048064552351388984 10 0.04586809967327539 23 0.04538110882776423 20 0.04152934147325198 0 0.03941103310720442 24 0.0382390942102591 17 0.03645834921308933 9 0.03004802654865277 16 0.02923314048438439 4 0.02383768116527888 5 0.023450677686349286 6 0.02335693994842179 8 0.018061282008686196 7 0.017998613355146104 1 0.017901712828016163 2 0.01779462410150539 3 0.015391092402993498 15 0.011322748004930069 __DUMMY__ 0.003910131817634393 false 1.0
568 22 0.080039 21 0.078634 11 0.070094 9 0.060488 10 0.050602 18 0.047579 12 0.046015 0 0.042613 4 0.04207 5 0.041606 14 0.038262 6 0.037813 3 0.037087 24 0.036528 23 0.036159 7 0.03568 8 0.035536 1 0.035346 2 0.034928 13 0.033878 19 0.033272 17 0.029979 20 0.012352 15 0.00344 22 0.080039 21 0.078634 11 0.070094 9 0.060488 10 0.050602 18 0.047579 12 0.046015 0 0.042613 4 0.04207 5 0.041606 14 0.038262 6 0.037813 3 0.037087 24 0.036528 23 0.036159 7 0.03568 8 0.035536 1 0.035346 2 0.034928 13 0.033878 19 0.033272 17 0.029979 20 0.012352 15 0.00344 21 0.07493018584449292 22 0.0737989168608902 11 0.06560881034075479 18 0.05302162173756968 9 0.05249897905466785 12 0.04989447883321042 10 0.04914886078181223 19 0.044221943593487675 0 0.041818249192813545 24 0.03905160241935042 23 0.03861840459365963 14 0.03788684051482168 13 0.036303908091610715 17 0.03614206041503084 4 0.03587020711954442 5 0.03540396853271731 6 0.03237780150607081 3 0.03090605045129553 7 0.03013648019322855 8 0.030028860890724308 1 0.02987167300921138 2 0.02943900372115398 20 0.02496464630278322 16 0.014319532064584048 15 0.009728548387161431 __DUMMY__ 0.004008365547352441 false 1.0
569 22 0.093215 21 0.077241 9 0.069463 11 0.056793 24 0.051432 18 0.049346 19 0.045629 4 0.044958 5 0.044046 3 0.042663 17 0.040562 0 0.039739 8 0.039085 7 0.03873 1 0.038612 6 0.038521 2 0.037646 10 0.036149 23 0.033733 14 0.029257 12 0.018744 20 0.017328 15 0.009847 16 0.007263 22 0.093215 21 0.077241 9 0.069463 11 0.056793 24 0.051432 18 0.049346 19 0.045629 4 0.044958 5 0.044046 3 0.042663 17 0.040562 0 0.039739 8 0.039085 7 0.03873 1 0.038612 6 0.038521 2 0.037646 10 0.036149 23 0.033733 14 0.029257 12 0.018744 20 0.017328 15 0.009847 16 0.007263 22 0.07690827833468067 21 0.07362521017020385 11 0.05701184826382436 9 0.05447647376704573 18 0.05403850982483967 19 0.04926233120205387 24 0.046036558313416034 10 0.0422695327438966 12 0.04004021312483751 17 0.039471079512798095 14 0.039168980722621385 0 0.0382241721368921 23 0.03795179189643746 4 0.036156520698323015 5 0.03546301770338044 3 0.03219558039273068 6 0.03185888128002592 8 0.030655730066837163 7 0.030459646406591684 1 0.03031030643686522 2 0.029670112286598035 20 0.02927824480342914 13 0.026920309386334915 15 0.017689142218566545 16 0.017188018670582214 __DUMMY__ 0.0036695096361874643 false 1.0
327 12 0.100426 13 0.079279 21 0.071588 11 0.057708 23 0.057673 19 0.049016 20 0.04795 24 0.046949 22 0.041811 18 0.040553 16 0.040161 17 0.037527 0 0.036617 6 0.031436 14 0.030403 4 0.030264 5 0.029836 10 0.026971 8 0.025797 2 0.025714 7 0.025652 1 0.025538 3 0.021687 9 0.019446 12 0.100426 13 0.079279 21 0.071588 11 0.057708 23 0.057673 19 0.049016 20 0.04795 24 0.046949 22 0.041811 18 0.040553 16 0.040161 17 0.037527 0 0.036617 6 0.031436 14 0.030403 4 0.030264 5 0.029836 10 0.026971 8 0.025797 2 0.025714 7 0.025652 1 0.025538 3 0.021687 9 0.019446 12 0.0890556291712667 21 0.07400899485125557 13 0.07380719381172873 11 0.05945586224501466 19 0.05263790072235407 23 0.051084371048754615 18 0.05028118034385342 22 0.049886486537057996 20 0.04682930402489541 24 0.043943935301482495 14 0.04110660598741983 17 0.037690210291407705 10 0.037537202086370826 0 0.03629254753057449 16 0.03502856022191191 4 0.02628696727922534 6 0.02611580575221956 9 0.026085329569852524 5 0.025864033229701336 8 0.021176168327188077 7 0.0210900719668875 1 0.02096809184603498 2 0.020913672489974767 3 0.018345746095067117 15 0.010703425200955257 __DUMMY__ 0.003804704067544951 false 1.0
328 12 0.106128 21 0.102917 13 0.079267 19 0.075413 20 0.068391 11 0.067946 18 0.06666 22 0.064024 24 0.061333 23 0.060171 14 0.049115 10 0.042184 17 0.027616 16 0.024662 0 0.020765 9 0.020265 4 0.0144 5 0.013869 6 0.010148 3 0.005459 2 0.004913 8 0.004906 7 0.004841 1 0.004603 12 0.106128 21 0.102917 13 0.079267 19 0.075413 20 0.068391 11 0.067946 18 0.06666 22 0.064024 24 0.061333 23 0.060171 14 0.049115 10 0.042184 17 0.027616 16 0.024662 0 0.020765 9 0.020265 4 0.0144 5 0.013869 6 0.010148 3 0.005459 2 0.004913 8 0.004906 7 0.004841 1 0.004603 12 0.08888009222094613 21 0.08615054990145701 13 0.0703582073718549 19 0.06351583710731572 11 0.061212986657520806 18 0.060781626275969315 22 0.05889262355981988 20 0.05612310877291734 23 0.0538705500873966 24 0.05153920051331564 14 0.046838670186821946 10 0.04255373099971314 17 0.03255611009029547 0 0.028064103620526977 9 0.02719893683083812 16 0.027157407028173933 4 0.02148683074922278 5 0.02102161631463393 6 0.01878239115878906 8 0.01428428166944983 7 0.01425490452556034 1 0.014082604172607724 2 0.014070662795603425 3 0.013751782391137123 15 0.009753510479177347 __DUMMY__ 0.002817674518935467 false 1.0
329 15 0.17762 14 0.149486 18 0.08381 10 0.080169 20 0.071683 13 0.06787 19 0.042169 24 0.035666 9 0.032528 23 0.032499 22 0.029339 17 0.022611 16 0.020957 21 0.019019 3 0.017646 4 0.016762 5 0.01627 8 0.014442 7 0.014073 2 0.013786 1 0.01351 6 0.012746 11 0.01101 12 0.004328 15 0.17762 14 0.149486 18 0.08381 10 0.080169 20 0.071683 13 0.06787 19 0.042169 24 0.035666 9 0.032528 23 0.032499 22 0.029339 17 0.022611 16 0.020957 21 0.019019 3 0.017646 4 0.016762 5 0.01627 8 0.014442 7 0.014073 2 0.013786 1 0.01351 6 0.012746 11 0.01101 12 0.004328 15 0.11812107123069819 14 0.10813678217864173 18 0.07677014667268339 10 0.0694512430403164 20 0.06252078791898658 13 0.06129352355831033 19 0.049692184164777456 22 0.04014062767481341 21 0.03734863877350351 24 0.03687978259451059 23 0.03610111632580188 9 0.034432499472595426 17 0.03144030046018105 11 0.02845315152219858 16 0.027833136225613987 12 0.02647105598060895 4 0.019315524021300687 5 0.018893511647724986 3 0.017821953041905102 6 0.01629539976909192 8 0.016240037989195422 7 0.01602498534504429 0 0.01595921553963868 1 0.01567665505758432 2 0.015661010704162186 __DUMMY__ 0.003025659090110987 false 1.0
570 21 0.099437 22 0.093498 11 0.086285 12 0.059205 19 0.05873 18 0.053005 24 0.051396 9 0.048011 0 0.041679 10 0.04094 17 0.040558 23 0.039879 14 0.036356 13 0.032075 4 0.02709 5 0.026496 20 0.026112 6 0.022116 16 0.021723 3 0.020347 7 0.019361 8 0.019053 1 0.018857 2 0.01779 21 0.099437 22 0.093498 11 0.086285 12 0.059205 19 0.05873 18 0.053005 24 0.051396 9 0.048011 0 0.041679 10 0.04094 17 0.040558 23 0.039879 14 0.036356 13 0.032075 4 0.02709 5 0.026496 20 0.026112 6 0.022116 16 0.021723 3 0.020347 7 0.019361 8 0.019053 1 0.018857 2 0.01779 21 0.08910903854014422 22 0.08284416962650436 11 0.07522588736157995 19 0.06049962467513545 12 0.05792109273955972 18 0.05655839241644958 24 0.04994390368363518 9 0.044882765100039745 10 0.04313082962695948 23 0.041385292596966126 17 0.04106220007989813 0 0.03945177391533742 14 0.03747862663354033 20 0.03480293542728583 13 0.034690826108489024 4 0.026521787504610494 16 0.026043246999922567 5 0.02595671496893259 6 0.022178271008300644 3 0.020694022944365616 7 0.019700703216780392 8 0.019505557893432883 1 0.019304158667640424 2 0.018568550065527833 15 0.007474193939447201 __DUMMY__ 0.005065434259514776 false 1.0
571 17 0.083791 16 0.083552 19 0.076213 22 0.073753 11 0.066209 0 0.062826 21 0.060279 18 0.05726 24 0.048144 20 0.041827 9 0.039964 12 0.039653 23 0.037448 10 0.031055 6 0.023671 4 0.023546 5 0.022923 8 0.021941 1 0.021736 7 0.021734 2 0.02138 3 0.01995 15 0.018587 14 0.002559 17 0.083791 16 0.083552 19 0.076213 22 0.073753 11 0.066209 0 0.062826 21 0.060279 18 0.05726 24 0.048144 20 0.041827 9 0.039964 12 0.039653 23 0.037448 10 0.031055 6 0.023671 4 0.023546 5 0.022923 8 0.021941 1 0.021736 7 0.021734 2 0.02138 3 0.01995 15 0.018587 14 0.002559 17 0.06925961259876216 22 0.06888204970420479 19 0.06825331019120447 16 0.06468629183247832 11 0.06116119520834088 21 0.06028032590244775 18 0.058595790737291945 0 0.05496409986924819 24 0.04419041489931667 12 0.04214862661617781 9 0.0417649858647157 20 0.0411915280062184 23 0.03858631449545307 10 0.03822296437576516 4 0.026101233325296763 5 0.025553181036946943 6 0.025454750727744408 8 0.023663956994685858 7 0.023557252510986733 1 0.023440922462541147 2 0.023035031780751298 3 0.022291797902723745 15 0.02123466942033561 14 0.01612071698929237 13 0.013748102422484023 __DUMMY__ 0.0036108741245860455 false 1.0
330 17 0.080957 0 0.079807 16 0.064108 9 0.054825 22 0.050561 6 0.049191 18 0.048615 11 0.046481 8 0.045884 2 0.045879 1 0.045504 7 0.045381 5 0.044873 4 0.044452 10 0.044259 3 0.03994 19 0.037473 23 0.033344 12 0.025347 21 0.023853 15 0.020582 13 0.011472 24 0.01015 20 0.00706 17 0.080957 0 0.079807 16 0.064108 9 0.054825 22 0.050561 6 0.049191 18 0.048615 11 0.046481 8 0.045884 2 0.045879 1 0.045504 7 0.045381 5 0.044873 4 0.044452 10 0.044259 3 0.03994 19 0.037473 23 0.033344 12 0.025347 21 0.023853 15 0.020582 13 0.011472 24 0.01015 20 0.00706 17 0.06770007674682607 0 0.06542646992560905 9 0.054460737648598864 22 0.05357009867285056 18 0.05229732131057952 16 0.051195189568235495 10 0.046119572873366745 6 0.044555844530156916 11 0.044458608229490146 8 0.04242441114723264 4 0.042404317262908026 5 0.04232951573443691 7 0.04216273585084058 1 0.04214774621703737 2 0.042030768142523364 19 0.041303963094201215 3 0.038786832148700726 23 0.035265701671046853 21 0.032920781937769227 12 0.025762622363395913 15 0.02504921684759426 24 0.019785986671065448 20 0.0177290085290687 13 0.015045054529943019 14 0.013133497284787802 __DUMMY__ 0.0019339210617346056 false 1.0
572 21 0.103625 22 0.092507 11 0.087651 19 0.077065 18 0.067827 12 0.067782 10 0.05267 24 0.052385 17 0.046445 9 0.044387 20 0.044011 0 0.043949 14 0.03866 13 0.036329 23 0.035035 16 0.03376 4 0.015144 5 0.014632 6 0.00962 3 0.009426 7 0.007038 1 0.006942 8 0.006713 2 0.006399 21 0.103625 22 0.092507 11 0.087651 19 0.077065 18 0.067827 12 0.067782 10 0.05267 24 0.052385 17 0.046445 9 0.044387 20 0.044011 0 0.043949 14 0.03866 13 0.036329 23 0.035035 16 0.03376 4 0.015144 5 0.014632 6 0.00962 3 0.009426 7 0.007038 1 0.006942 8 0.006713 2 0.006399 21 0.09209255427801043 22 0.08259028848211797 11 0.07687457361975326 19 0.07080228057802244 18 0.0648882837293506 12 0.06339465971916641 24 0.050466893814420495 10 0.04988585696165151 20 0.0447332784474955 17 0.044085761243699687 9 0.042523394012811196 0 0.04065348433546455 14 0.03928934678997234 23 0.038709844497050276 13 0.03780579996692839 16 0.032644123238351544 4 0.019468949446112837 5 0.0189593865946327 6 0.014821834961740664 3 0.014077799738351708 7 0.012391500020182205 1 0.012183553617951735 8 0.01217626821364185 2 0.01170145028200903 15 0.007453455952046098 __DUMMY__ 0.005325377459064562 false 1.0
573 22 0.086678 21 0.085094 11 0.076587 9 0.060905 10 0.051585 18 0.0507 12 0.047468 0 0.044312 19 0.038942 4 0.038433 24 0.037837 5 0.037739 14 0.037217 23 0.035073 6 0.033667 3 0.033073 17 0.033019 7 0.031616 8 0.031382 1 0.031294 13 0.031219 2 0.030566 20 0.012968 16 0.002626 22 0.086678 21 0.085094 11 0.076587 9 0.060905 10 0.051585 18 0.0507 12 0.047468 0 0.044312 19 0.038942 4 0.038433 24 0.037837 5 0.037739 14 0.037217 23 0.035073 6 0.033667 3 0.033073 17 0.033019 7 0.031616 8 0.031382 1 0.031294 13 0.031219 2 0.030566 20 0.012968 16 0.002626 21 0.07852199087716615 22 0.07766754540325783 11 0.06913946962323014 18 0.054778231169820744 9 0.052707149159052454 12 0.05027634561579784 10 0.04953376989105496 19 0.04775082714419985 0 0.04263947248015707 24 0.04020101430872366 23 0.03802667736782509 17 0.03791506310300594 14 0.03707816346646992 13 0.03414017187788437 4 0.03381287222068189 5 0.033234501092958696 6 0.02998517516107128 3 0.02872436147576056 7 0.027834820954040617 8 0.02768186003301391 1 0.027564701799430394 2 0.026984588756601296 20 0.025650533818230778 16 0.01606938241657921 15 0.007921285661477729 __DUMMY__ 0.004160025122507726 false 1.0
331 23 0.08237 12 0.06888 24 0.065002 21 0.063709 5 0.048536 13 0.04849 4 0.04823 6 0.04754 20 0.045574 2 0.045268 7 0.044764 1 0.044507 8 0.044093 3 0.044031 19 0.041932 22 0.040112 11 0.028126 16 0.027594 17 0.025317 18 0.024925 14 0.024429 9 0.021541 0 0.013869 15 0.011163 23 0.08237 12 0.06888 24 0.065002 21 0.063709 5 0.048536 13 0.04849 4 0.04823 6 0.04754 20 0.045574 2 0.045268 7 0.044764 1 0.044507 8 0.044093 3 0.044031 19 0.041932 22 0.040112 11 0.028126 16 0.027594 17 0.025317 18 0.024925 14 0.024429 9 0.021541 0 0.013869 15 0.011163 21 0.0691180500316965 23 0.06770582388090847 12 0.06684042265562438 24 0.057855801151187894 22 0.05030958275273047 19 0.050172690849363454 13 0.048326645038596336 20 0.04649654050639519 11 0.041486538474374515 18 0.04011681414396508 4 0.03845789271089445 5 0.03829662134046683 6 0.03677530966135903 7 0.03391828549045564 2 0.03377059994311966 1 0.03364143384821522 8 0.03354504289898195 3 0.033364002531845016 14 0.03205309245384353 17 0.031137933197707027 16 0.028785789376595792 9 0.027784304216768113 0 0.022286540446042363 10 0.0189002266633927 15 0.014257639794898073 __DUMMY__ 0.004596375940572612 false 1.0
332 20 0.100439 19 0.09864 21 0.088814 24 0.083502 18 0.079956 12 0.069539 22 0.067178 23 0.05848 11 0.054485 16 0.051928 14 0.046604 17 0.039413 13 0.038779 10 0.038514 15 0.03159 9 0.016605 0 0.012026 4 0.00781 5 0.007028 3 0.004676 6 0.001688 7 0.001139 8 7.35E-4 1 4.32E-4 20 0.100439 19 0.09864 21 0.088814 24 0.083502 18 0.079956 12 0.069539 22 0.067178 23 0.05848 11 0.054485 16 0.051928 14 0.046604 17 0.039413 13 0.038779 10 0.038514 15 0.03159 9 0.016605 0 0.012026 4 0.00781 5 0.007028 3 0.004676 6 0.001688 7 0.001139 8 7.35E-4 1 4.32E-4 19 0.08584325747222576 20 0.08245668688759555 21 0.07965787804285852 18 0.07419876013761578 24 0.06962217235692869 22 0.06448340769329344 12 0.061643348112965325 23 0.05327318895111467 11 0.05313235945970114 16 0.04608447677721601 14 0.04500975335348104 10 0.042359929966589875 17 0.04063073562587371 13 0.0377181812338716 15 0.031179803212119862 9 0.02512654911262208 0 0.020198940502902333 4 0.014634522165430782 5 0.013990706467250579 3 0.01135703331177449 6 0.009591975902096294 7 0.008700210324695689 8 0.008496569312107058 1 0.008214742864574494 2 0.007836624286910924 __DUMMY__ 0.004558186466184313 false 1.0
574 17 0.068792 0 0.066168 9 0.061055 22 0.060622 18 0.053562 16 0.049382 19 0.045424 6 0.044939 8 0.044716 10 0.044626 11 0.044525 7 0.044524 1 0.044357 4 0.044042 2 0.043587 5 0.043276 3 0.04234 21 0.034817 23 0.031148 24 0.026444 20 0.021184 15 0.019235 12 0.015197 14 0.006036 17 0.068792 0 0.066168 9 0.061055 22 0.060622 18 0.053562 16 0.049382 19 0.045424 6 0.044939 8 0.044716 10 0.044626 11 0.044525 7 0.044524 1 0.044357 4 0.044042 2 0.043587 5 0.043276 3 0.04234 21 0.034817 23 0.031148 24 0.026444 20 0.021184 15 0.019235 12 0.015197 14 0.006036 17 0.06334246914268403 0 0.06178305597984532 22 0.06034524821868231 9 0.05971679697151595 18 0.0526126000741181 11 0.0450545194677366 10 0.044836916796513776 6 0.04449716166138736 4 0.04404333594945864 8 0.043847488634848844 16 0.04382211972678256 7 0.043717275240898384 19 0.04364392628156355 1 0.04355917369787841 5 0.04340172065299855 2 0.04289642214467366 3 0.04178991625829579 21 0.0384187776912342 23 0.033134503816378044 24 0.02665857566670313 20 0.020719824863028584 12 0.019866484614461773 15 0.019050480531552998 14 0.011176209785781798 13 0.006274263713891858 __DUMMY__ 0.0017907324170859371 false 1.0
333 24 0.077588 23 0.074506 3 0.062632 5 0.061792 4 0.061502 22 0.060581 21 0.056882 2 0.056484 8 0.056062 1 0.055984 7 0.055722 6 0.054201 9 0.042921 20 0.040001 19 0.036198 18 0.02847 11 0.028141 14 0.022753 12 0.021253 15 0.018843 17 0.01443 10 0.008425 0 0.002592 16 0.002037 24 0.077588 23 0.074506 3 0.062632 5 0.061792 4 0.061502 22 0.060581 21 0.056882 2 0.056484 8 0.056062 1 0.055984 7 0.055722 6 0.054201 9 0.042921 20 0.040001 19 0.036198 18 0.02847 11 0.028141 14 0.022753 12 0.021253 15 0.018843 17 0.01443 10 0.008425 0 0.002592 16 0.002037 22 0.06312605194347803 21 0.06276759916930356 24 0.06157202508508746 23 0.05828544062718243 19 0.047880596015296074 18 0.04517309121286275 4 0.044594742250962806 5 0.04445598122659367 3 0.04310629597753461 9 0.04280403796917416 20 0.04263976344673347 11 0.04198593509918052 8 0.03940393137588245 6 0.039340504192839174 2 0.03927174880227403 7 0.03926094478741331 1 0.03925321967110662 12 0.03507158035052944 14 0.03248056475552705 17 0.028292898116590928 10 0.028242593279567338 15 0.022466428627348583 0 0.019582542893966083 13 0.018013271984148024 16 0.01685089930943473 __DUMMY__ 0.004077311829982592 false 1.0
575 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.09095769318353024 22 0.08042397596971135 11 0.07561118163986397 12 0.0643277881392783 19 0.059081815759184114 18 0.05326323018509548 24 0.05111810981006879 23 0.04370537684088378 13 0.04185126274480454 9 0.04114808831173624 10 0.03961270739384268 14 0.039606867899959174 17 0.03901937392592464 0 0.03740758445464301 20 0.03493005778481684 4 0.026331120184134246 5 0.02586368753620665 16 0.025460642056007527 6 0.022441554411540336 3 0.01976883149076437 7 0.0193438026420514 8 0.01903610178105077 1 0.01880425608286877 2 0.018239095456452845 15 0.007506215552616628 __DUMMY__ 0.005139578762963452 false 1.0
334 18 0.094649 21 0.093318 12 0.083318 22 0.074639 13 0.072097 19 0.070821 23 0.06636 11 0.062955 10 0.062729 14 0.049281 20 0.042668 17 0.03972 0 0.036137 9 0.035731 24 0.028913 4 0.015613 16 0.014889 6 0.014633 5 0.014047 7 0.007831 8 0.007178 1 0.005881 15 0.0037 2 0.002892 18 0.094649 21 0.093318 12 0.083318 22 0.074639 13 0.072097 19 0.070821 23 0.06636 11 0.062955 10 0.062729 14 0.049281 20 0.042668 17 0.03972 0 0.036137 9 0.035731 24 0.028913 4 0.015613 16 0.014889 6 0.014633 5 0.014047 7 0.007831 8 0.007178 1 0.005881 15 0.0037 2 0.002892 21 0.08103539193556009 18 0.07229755452528726 12 0.07167359394373381 22 0.06599502632916944 19 0.06208221719925676 23 0.05934534988995075 13 0.05849382454941754 11 0.05750120101101894 10 0.04924278514094935 14 0.04341349904271786 20 0.043350300486454156 24 0.03932184102638829 17 0.03818295827577524 9 0.035620178702845395 0 0.03395627443417649 4 0.0241647862415793 5 0.02316082175078933 6 0.022468540073395875 16 0.022435203970134685 7 0.017802908631332336 8 0.01743898959625041 1 0.016764351550638688 2 0.015203515381551274 3 0.013949295986835196 15 0.011359004092453051 __DUMMY__ 0.003740586232338516 false 1.0
576 22 0.08672 9 0.071507 11 0.06735 0 0.064214 21 0.063608 18 0.059461 17 0.058147 10 0.054617 19 0.046775 4 0.040902 5 0.040263 6 0.038352 7 0.037254 8 0.037084 3 0.036901 1 0.036901 2 0.035687 24 0.025461 16 0.025434 23 0.025083 12 0.021912 14 0.014998 20 0.009129 13 0.002238 22 0.08672 9 0.071507 11 0.06735 0 0.064214 21 0.063608 18 0.059461 17 0.058147 10 0.054617 19 0.046775 4 0.040902 5 0.040263 6 0.038352 7 0.037254 8 0.037084 3 0.036901 1 0.036901 2 0.035687 24 0.025461 16 0.025434 23 0.025083 12 0.021912 14 0.014998 20 0.009129 13 0.002238 22 0.0772563899589097 9 0.0625087070127534 11 0.061756451329427475 21 0.060959605966044036 18 0.05759153646032007 0 0.0572695252873815 17 0.05438872530279914 10 0.0510881738748511 19 0.048135380086360854 4 0.03872847732779756 5 0.03814191317605819 6 0.03654174628472877 7 0.03522827151534623 8 0.03516076434283224 1 0.03494172454475292 3 0.03493127762827757 2 0.034113429912966134 23 0.030746308082546796 24 0.030032351552595208 16 0.029046616682318744 12 0.029024067126196082 14 0.02072046423538043 20 0.018236708916908175 13 0.011946663098580168 15 0.008344708216499118 __DUMMY__ 0.003160012077368544 false 1.0
335 21 0.102221 19 0.099062 22 0.090007 20 0.082616 24 0.0807 18 0.078689 11 0.07532 12 0.060815 23 0.051285 10 0.043601 14 0.04085 16 0.040138 17 0.03928 9 0.02928 13 0.021731 0 0.01774 15 0.015533 4 0.010462 5 0.010021 3 0.007102 6 0.001568 8 0.001016 7 4.85E-4 2 4.75E-4 21 0.102221 19 0.099062 22 0.090007 20 0.082616 24 0.0807 18 0.078689 11 0.07532 12 0.060815 23 0.051285 10 0.043601 14 0.04085 16 0.040138 17 0.03928 9 0.02928 13 0.021731 0 0.01774 15 0.015533 4 0.010462 5 0.010021 3 0.007102 6 0.001568 8 0.001016 7 4.85E-4 2 4.75E-4 21 0.08803174432242815 19 0.08279507578514574 22 0.079927991950911 18 0.0716896025309438 11 0.06815986532227383 20 0.06652667926774289 24 0.06533776430353559 12 0.05606474910097106 23 0.04730606435163689 10 0.04589824085121666 17 0.041003895842552845 14 0.04003061768756928 16 0.03728184797677511 9 0.034962426413520376 13 0.02728584694613963 0 0.026695987711545827 15 0.01849228554404304 4 0.017590035349562553 5 0.017109223169875034 3 0.013935371117173558 6 0.01116538797190517 8 0.010086191826422071 7 0.009873796718512367 2 0.009503251775382056 1 0.00948233862332964 __DUMMY__ 0.0037637175388857435 false 1.0
577 21 0.097648 22 0.094386 11 0.085961 19 0.059842 12 0.055499 18 0.053911 24 0.050767 9 0.05014 10 0.043203 0 0.042231 17 0.041591 23 0.037762 14 0.035439 13 0.02821 4 0.027696 5 0.027068 20 0.026216 6 0.022412 16 0.021814 3 0.02113 7 0.019928 8 0.019477 1 0.019472 2 0.018197 21 0.097648 22 0.094386 11 0.085961 19 0.059842 12 0.055499 18 0.053911 24 0.050767 9 0.05014 10 0.043203 0 0.042231 17 0.041591 23 0.037762 14 0.035439 13 0.02821 4 0.027696 5 0.027068 20 0.026216 6 0.022412 16 0.021814 3 0.02113 7 0.019928 8 0.019477 1 0.019472 2 0.018197 21 0.08787824512535074 22 0.0833434123372108 11 0.07481153363097645 19 0.061120054817915805 18 0.05713012333655835 12 0.05536888692832912 24 0.04974989339532393 9 0.04617837556245247 10 0.0443130718743577 17 0.04172663540977569 23 0.040223087665398845 0 0.039775384062669505 14 0.03676889966443928 20 0.034962657162362146 13 0.03200576600116285 4 0.026940546130760124 5 0.02635965295605905 16 0.026223523382500058 6 0.022416316917759523 3 0.021306301376877376 7 0.02014284819243943 8 0.01988637021611881 1 0.019770455073546564 2 0.018937557706648556 15 0.0076647371101945545 __DUMMY__ 0.004995663962812239 false 1.0
336 23 0.082947 12 0.068951 24 0.06513 21 0.064332 13 0.04882 4 0.04792 5 0.047623 6 0.047176 20 0.045969 7 0.044561 1 0.044348 2 0.044017 8 0.043947 3 0.042789 19 0.042517 22 0.039864 11 0.028314 16 0.027713 17 0.026003 18 0.025772 14 0.024152 9 0.021972 0 0.014164 15 0.010998 23 0.082947 12 0.068951 24 0.06513 21 0.064332 13 0.04882 4 0.04792 5 0.047623 6 0.047176 20 0.045969 7 0.044561 1 0.044348 2 0.044017 8 0.043947 3 0.042789 19 0.042517 22 0.039864 11 0.028314 16 0.027713 17 0.026003 18 0.025772 14 0.024152 9 0.021972 0 0.014164 15 0.010998 21 0.06937730787690298 23 0.06795526958954137 12 0.06685198774623405 24 0.057953753694751295 19 0.050422219922578365 22 0.05017446795292515 13 0.04844373550815533 20 0.046688204333352495 11 0.04155653280910622 18 0.04043934080527855 4 0.038336724957807294 5 0.037903355474473974 6 0.03662705525445067 7 0.03384857876569562 1 0.033594048231021884 8 0.0335019518928655 2 0.0332315483863722 3 0.032833922690672916 14 0.031911685514771186 17 0.03144225726303155 16 0.028863104612359455 9 0.02797156434691707 0 0.022405712072728953 10 0.018854174641378715 15 0.01420021014940136 __DUMMY__ 0.004611285507225792 false 1.0
578 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.102563 22 0.090406 11 0.088045 12 0.06912 19 0.056549 24 0.053087 18 0.047297 13 0.042992 23 0.042614 9 0.042305 14 0.039459 0 0.039217 17 0.037959 10 0.035295 4 0.026676 5 0.026304 20 0.025574 6 0.022499 16 0.021316 3 0.018767 7 0.018705 8 0.018165 1 0.017895 2 0.017191 21 0.09097577164428224 22 0.08041857077214326 11 0.07561367511947174 12 0.06435652317692264 19 0.05909391659147434 18 0.05326407483250538 24 0.05113590518862208 23 0.04371828299133308 13 0.041878071923852414 9 0.04112736357327319 14 0.03962442741682801 10 0.03960559860062961 17 0.03900604864045205 0 0.03738776876606227 20 0.03495312750154954 4 0.02631942215922025 5 0.025852023229422424 16 0.025460746888013516 6 0.022428544873339694 3 0.01975567881747115 7 0.019329705889481158 8 0.019021974637670056 1 0.01879014561947025 2 0.018225348551238075 15 0.007511637231602616 __DUMMY__ 0.005145645363669096 false 1.0
337 19 0.099582 21 0.098702 22 0.084306 20 0.082714 18 0.07777 24 0.077041 11 0.070295 12 0.062596 23 0.053375 16 0.045811 10 0.04379 14 0.041977 17 0.041371 9 0.027834 13 0.026749 0 0.019264 15 0.019246 4 0.009385 5 0.008431 3 0.005793 6 0.001603 7 0.001028 8 8.62E-4 1 4.77E-4 19 0.099582 21 0.098702 22 0.084306 20 0.082714 18 0.07777 24 0.077041 11 0.070295 12 0.062596 23 0.053375 16 0.045811 10 0.04379 14 0.041977 17 0.041371 9 0.027834 13 0.026749 0 0.019264 15 0.019246 4 0.009385 5 0.008431 3 0.005793 6 0.001603 7 0.001028 8 8.62E-4 1 4.77E-4 21 0.08691386933542072 19 0.08367829497430518 22 0.07679257400156668 18 0.07110768119652061 20 0.06758595242143568 11 0.0653880470396511 24 0.06438876380606522 12 0.058046874418196094 23 0.048781174823033055 10 0.04526967543177828 17 0.04196237793433691 14 0.04078014657159066 16 0.04066147271035393 9 0.033416563023986316 13 0.0304746606453027 0 0.02684541336889435 15 0.020353875954947948 4 0.016602484808759668 5 0.01588420089040223 3 0.012796356527086158 6 0.01072737458052586 7 0.009637943542798282 8 0.009520830870590993 1 0.009215315901469808 2 0.008794287101624405 __DUMMY__ 0.004373788119357185 false 1.0
579 21 0.0883 22 0.082982 11 0.081268 12 0.063024 19 0.058594 18 0.052626 24 0.046642 0 0.045867 9 0.045444 17 0.044425 10 0.043926 23 0.038027 13 0.036221 14 0.032253 20 0.031054 16 0.03104 4 0.027008 5 0.026166 6 0.02333 3 0.021028 7 0.020617 8 0.020363 1 0.020199 2 0.019596 21 0.0883 22 0.082982 11 0.081268 12 0.063024 19 0.058594 18 0.052626 24 0.046642 0 0.045867 9 0.045444 17 0.044425 10 0.043926 23 0.038027 13 0.036221 14 0.032253 20 0.031054 16 0.03104 4 0.027008 5 0.026166 6 0.02333 3 0.021028 7 0.020617 8 0.020363 1 0.020199 2 0.019596 21 0.08165777035812795 22 0.07732624073244952 11 0.07239985211300348 19 0.05975729703765378 12 0.05811071160054992 18 0.056291983356309507 24 0.04609363191562112 10 0.04499503125682161 17 0.0446540394581198 9 0.04457475009600233 0 0.043371621319604925 23 0.03954465833018014 20 0.03587831558944737 13 0.035139268412310264 14 0.0338978364573383 16 0.031930913199618556 4 0.027053016596565182 5 0.02638277233632081 6 0.023616991617418197 3 0.021680903815057544 7 0.02118429267212014 8 0.02102866121502887 1 0.020839447301659708 2 0.02031811828586732 15 0.00756604044938879 __DUMMY__ 0.0047058344774151915 false 1.0
338 0 0.086662 17 0.079201 9 0.065797 22 0.06245 11 0.059258 10 0.056303 18 0.054146 16 0.053555 6 0.045419 8 0.042992 7 0.042802 1 0.042602 2 0.042168 4 0.041699 5 0.041179 19 0.037646 3 0.037388 21 0.032705 12 0.024274 23 0.021153 13 0.011875 15 0.011788 14 0.003952 24 0.002986 0 0.086662 17 0.079201 9 0.065797 22 0.06245 11 0.059258 10 0.056303 18 0.054146 16 0.053555 6 0.045419 8 0.042992 7 0.042802 1 0.042602 2 0.042168 4 0.041699 5 0.041179 19 0.037646 3 0.037388 21 0.032705 12 0.024274 23 0.021153 13 0.011875 15 0.011788 14 0.003952 24 0.002986 0 0.07306948506203628 17 0.06963249359801968 9 0.06171309459788736 22 0.06051353485348759 18 0.052467077522604336 11 0.0524530112604454 10 0.05032310201258354 16 0.04728214841180367 6 0.045076851690566654 8 0.043200321185322084 7 0.04307669343191145 4 0.042920080122497394 1 0.04291486428615808 2 0.042401323114110434 5 0.042401047489311915 19 0.03934125505204072 3 0.039227119033631956 21 0.03646487199256452 23 0.02805706678309386 12 0.02484419536481471 15 0.015207979424200829 24 0.014109795760591955 13 0.012563973195228437 20 0.009528404100823683 14 0.009251846453451461 __DUMMY__ 0.0019583642008119905 false 1.0
339 23 0.087622 24 0.074157 4 0.063054 3 0.062309 5 0.061895 7 0.061414 8 0.060982 1 0.060235 6 0.060073 2 0.059483 20 0.056155 19 0.03398 21 0.033911 15 0.032961 9 0.03059 22 0.029775 18 0.027764 12 0.027539 14 0.021907 16 0.017387 17 0.016068 13 0.015267 10 0.003769 11 0.001702 23 0.087622 24 0.074157 4 0.063054 3 0.062309 5 0.061895 7 0.061414 8 0.060982 1 0.060235 6 0.060073 2 0.059483 20 0.056155 19 0.03398 21 0.033911 15 0.032961 9 0.03059 22 0.029775 18 0.027764 12 0.027539 14 0.021907 16 0.017387 17 0.016068 13 0.015267 10 0.003769 11 0.001702 23 0.06850826622242964 24 0.05957666324733573 4 0.04981747488495719 20 0.04924792222011251 5 0.04903122627011949 3 0.04762306669939237 6 0.04715403817184354 7 0.0470245796584602 8 0.046807635553181834 1 0.04638470691201443 21 0.04606020416524736 2 0.04584313352470533 22 0.04307074372835853 19 0.04268148335564486 18 0.041158604606523555 9 0.03648531647772005 12 0.036192799722915274 15 0.028621589699562043 14 0.028085658633374762 17 0.028032492218963513 13 0.024092938946138474 16 0.02342993898152415 11 0.022938799945553725 10 0.02204149215090386 0 0.017052312734926266 __DUMMY__ 0.0030369112680910426 false 1.0
580 17 0.084911 0 0.07903 16 0.072508 22 0.054787 18 0.054151 9 0.053099 11 0.050443 19 0.049061 10 0.043402 6 0.041713 8 0.03975 1 0.039629 7 0.03957 2 0.03864 4 0.037585 5 0.037288 3 0.03392 23 0.029756 21 0.029238 12 0.02563 15 0.022408 20 0.018665 24 0.0175 13 0.007314 17 0.084911 0 0.07903 16 0.072508 22 0.054787 18 0.054151 9 0.053099 11 0.050443 19 0.049061 10 0.043402 6 0.041713 8 0.03975 1 0.039629 7 0.03957 2 0.03864 4 0.037585 5 0.037288 3 0.03392 23 0.029756 21 0.029238 12 0.02563 15 0.022408 20 0.018665 24 0.0175 13 0.007314 17 0.0751399592415976 0 0.06989569481071653 16 0.06200091218925204 22 0.055018597859079414 18 0.05290800536066132 9 0.05284112056574082 11 0.04781697097942586 19 0.047386727388482285 10 0.042915002692788015 6 0.0418787730682079 8 0.040099689702793234 7 0.039962836491720014 1 0.03993145789669474 2 0.03917566406886375 4 0.03909888194254128 5 0.03869470779419563 3 0.03560695348189479 21 0.03370844543734612 23 0.03286203449267422 12 0.027247668840910184 15 0.022690164295051187 24 0.021733338076097095 20 0.021240704363135302 13 0.01126368998096461 14 0.006882869583644772 __DUMMY__ 0.001999129395521284 false 1.0
581 22 0.101864 21 0.099317 19 0.073637 11 0.073232 18 0.067689 24 0.058026 9 0.057563 10 0.051075 20 0.044344 23 0.043242 12 0.037253 14 0.034806 17 0.033514 0 0.03071 4 0.027613 5 0.026838 3 0.025232 8 0.018801 7 0.018617 6 0.018418 1 0.018162 2 0.017985 16 0.013635 13 0.008426 22 0.101864 21 0.099317 19 0.073637 11 0.073232 18 0.067689 24 0.058026 9 0.057563 10 0.051075 20 0.044344 23 0.043242 12 0.037253 14 0.034806 17 0.033514 0 0.03071 4 0.027613 5 0.026838 3 0.025232 8 0.018801 7 0.018617 6 0.018418 1 0.018162 2 0.017985 16 0.013635 13 0.008426 21 0.08663087511471773 22 0.08543426914315136 19 0.06864924540216447 11 0.06681688972886396 18 0.06456742185115558 24 0.05375497293844471 9 0.04917143275491667 10 0.04841009722212882 20 0.04574236670968024 12 0.044979686689242106 23 0.04325955259683478 17 0.0380953719940283 14 0.036720682006370034 0 0.033478343450131634 4 0.026795281253155896 5 0.026155484214164658 16 0.023653925293132722 3 0.023476054388398362 13 0.021412575993741377 6 0.02039410079534763 8 0.01966044547854203 7 0.019617354615939147 1 0.019244576131426553 2 0.01893156906963546 15 0.010079762525530599 __DUMMY__ 0.0048676626391550674 false 1.0
340 22 0.078359 21 0.073576 24 0.073437 23 0.064919 5 0.053719 4 0.053253 3 0.053006 11 0.047931 9 0.04783 2 0.046671 1 0.046023 8 0.046008 7 0.045664 6 0.045116 19 0.043875 18 0.036022 20 0.03351 12 0.027926 14 0.023316 17 0.020723 10 0.017119 0 0.011778 15 0.007614 16 0.002605 22 0.078359 21 0.073576 24 0.073437 23 0.064919 5 0.053719 4 0.053253 3 0.053006 11 0.047931 9 0.04783 2 0.046671 1 0.046023 8 0.046008 7 0.045664 6 0.045116 19 0.043875 18 0.036022 20 0.03351 12 0.027926 14 0.023316 17 0.020723 10 0.017119 0 0.011778 15 0.007614 16 0.002605 22 0.07304608824052881 21 0.07220565955309893 24 0.059840661724427265 23 0.05352856082846754 11 0.052971580027331204 19 0.05201387518755579 18 0.04840944806956314 9 0.04553603031247539 4 0.040634766782444605 5 0.04056921115923113 12 0.03892258332688614 20 0.038768362519029265 3 0.03837789861615553 6 0.034936017724231404 8 0.03447475611685043 2 0.03443796293897481 1 0.03436897124902738 7 0.03434177732670684 10 0.031913654250221926 17 0.03181038937644802 14 0.03102754029266658 0 0.024805005664661713 16 0.01729623198121027 13 0.01711766963209233 15 0.01442850496779481 __DUMMY__ 0.004216792131918851 false 1.0
582 22 0.088855 21 0.086909 11 0.07922 9 0.059726 10 0.051808 18 0.051599 12 0.048022 0 0.045638 19 0.042495 24 0.039065 14 0.036773 4 0.036203 5 0.035777 17 0.035318 23 0.033218 6 0.031327 3 0.031134 13 0.030082 7 0.029117 8 0.029009 1 0.028857 2 0.028523 20 0.014519 16 0.006806 22 0.088855 21 0.086909 11 0.07922 9 0.059726 10 0.051808 18 0.051599 12 0.048022 0 0.045638 19 0.042495 24 0.039065 14 0.036773 4 0.036203 5 0.035777 17 0.035318 23 0.033218 6 0.031327 3 0.031134 13 0.030082 7 0.029117 8 0.029009 1 0.028857 2 0.028523 20 0.014519 16 0.006806 21 0.07982366415198408 22 0.07918733549192518 11 0.07069870948000737 18 0.055399743279151106 9 0.05211683980120378 12 0.05044839260630706 19 0.050026126711817734 10 0.04954938607161595 0 0.04321928145643089 24 0.04118602953511753 17 0.039189062754520415 23 0.037137166638098594 14 0.036714346994417085 13 0.03310230230883183 4 0.03250201569915708 5 0.03204187464898036 6 0.028555171386321954 3 0.02757118789846697 20 0.02670085085638611 7 0.02635946749165133 8 0.02626369038435172 1 0.0261100866395189 2 0.025710444225652065 16 0.018354126851457347 15 0.007786147979317962 __DUMMY__ 0.0042465486573097675 false 1.0
583 21 0.100137 19 0.093686 22 0.084881 20 0.079053 18 0.078469 24 0.073975 11 0.071983 12 0.06666 23 0.050279 10 0.044993 16 0.043195 17 0.042563 14 0.042292 13 0.032259 9 0.028828 0 0.022823 15 0.016422 4 0.009455 5 0.008353 3 0.004817 6 0.002512 7 0.001195 8 7.9E-4 1 3.81E-4 21 0.100137 19 0.093686 22 0.084881 20 0.079053 18 0.078469 24 0.073975 11 0.071983 12 0.06666 23 0.050279 10 0.044993 16 0.043195 17 0.042563 14 0.042292 13 0.032259 9 0.028828 0 0.022823 15 0.016422 4 0.009455 5 0.008353 3 0.004817 6 0.002512 7 0.001195 8 7.9E-4 1 3.81E-4 21 0.08772762376979225 19 0.0801307666624803 22 0.07684254617414628 18 0.07094906856833073 11 0.0660185580025551 20 0.06528286124342042 24 0.06273467419665589 12 0.06033751155789153 23 0.047245392687200904 10 0.045652949967960973 17 0.042110888090362876 14 0.04161853110030817 16 0.03875146486637997 13 0.0339781500512459 9 0.03394644185174247 0 0.02834671857857683 15 0.01927272001184881 4 0.016797495897877112 5 0.01601077725247948 3 0.012435922135207436 6 0.01135437518442231 7 0.009874500583046774 8 0.009643045204073488 1 0.009332924250401638 2 0.008944388253296173 __DUMMY__ 0.004659703858296228 false 1.0
341 23 0.085985 24 0.065868 12 0.061713 21 0.055174 6 0.051392 4 0.051391 5 0.050362 20 0.050192 7 0.049473 8 0.048813 1 0.048077 2 0.04722 3 0.046144 19 0.042529 13 0.041464 22 0.034879 16 0.031076 17 0.026645 18 0.026113 9 0.023728 14 0.018416 11 0.018077 0 0.013706 15 0.011562 23 0.085985 24 0.065868 12 0.061713 21 0.055174 6 0.051392 4 0.051391 5 0.050362 20 0.050192 7 0.049473 8 0.048813 1 0.048077 2 0.04722 3 0.046144 19 0.042529 13 0.041464 22 0.034879 16 0.031076 17 0.026645 18 0.026113 9 0.023728 14 0.018416 11 0.018077 0 0.013706 15 0.011562 23 0.07015386329288985 21 0.0631635918563527 12 0.061883432219341186 24 0.05816715540790685 19 0.04980584948326468 20 0.04860646755775404 22 0.04668586688123965 13 0.04365554908420451 4 0.040978550580549465 5 0.04022189083200637 18 0.040170312098383586 6 0.039708516036771 7 0.0373583108348486 8 0.03698932506014206 1 0.03657161630756422 2 0.03597501032049778 3 0.03560608658576296 11 0.035005665096318056 17 0.03189674306086491 16 0.03072133443542606 9 0.02896762431414294 14 0.02817050956363929 0 0.02207606234723078 10 0.018333343290240778 15 0.014987789369659759 __DUMMY__ 0.004139534082997878 false 1.0
100 19 0.100706 20 0.099246 21 0.090394 24 0.083827 18 0.077522 12 0.070703 22 0.06641 23 0.058822 11 0.054517 16 0.052669 14 0.046547 17 0.039137 13 0.038258 10 0.036834 15 0.031541 9 0.017633 0 0.008983 4 0.00851 5 0.008195 3 0.004815 6 0.002093 7 0.00115 8 0.001134 1 3.54E-4 19 0.100706 20 0.099246 21 0.090394 24 0.083827 18 0.077522 12 0.070703 22 0.06641 23 0.058822 11 0.054517 16 0.052669 14 0.046547 17 0.039137 13 0.038258 10 0.036834 15 0.031541 9 0.017633 0 0.008983 4 0.00851 5 0.008195 3 0.004815 6 0.002093 7 0.00115 8 0.001134 1 3.54E-4 19 0.08699370727531502 20 0.08214997926490736 21 0.08042906649754614 18 0.07327254748889586 24 0.06983522118698396 22 0.064131738362406 12 0.062276909024628874 23 0.053428095213716754 11 0.05314241801406367 16 0.04656027983815109 14 0.04497646157141594 10 0.041635535604720074 17 0.040588267164306545 13 0.03750258249545172 15 0.031165523391197457 9 0.025526542962205915 0 0.01878518560008527 4 0.014832936306966237 5 0.01440111867560903 3 0.0112870713514233 6 0.009654008877994311 7 0.008575826149881005 8 0.008550860401065716 1 0.008046668515687862 2 0.007704388600320876 __DUMMY__ 0.004547060165054004 false 1.0
584 20 0.112389 19 0.089867 24 0.083009 18 0.071078 23 0.067623 21 0.061645 12 0.057275 16 0.05262 15 0.050245 14 0.048734 13 0.039638 22 0.038128 10 0.032239 17 0.031329 11 0.022414 3 0.018932 4 0.018886 5 0.01825 7 0.015101 8 0.014982 1 0.01481 2 0.014494 6 0.013917 9 0.012396 20 0.112389 19 0.089867 24 0.083009 18 0.071078 23 0.067623 21 0.061645 12 0.057275 16 0.05262 15 0.050245 14 0.048734 13 0.039638 22 0.038128 10 0.032239 17 0.031329 11 0.022414 3 0.018932 4 0.018886 5 0.01825 7 0.015101 8 0.014982 1 0.01481 2 0.014494 6 0.013917 9 0.012396 20 0.08908951511711015 19 0.08081265772690083 24 0.06985493208025002 18 0.0695761450824718 21 0.06527629860437616 23 0.05836262583517219 12 0.055386360834770575 22 0.048742709787519926 14 0.047794082887308395 16 0.045785121859026556 15 0.04263755654568839 13 0.039289102094511114 10 0.03905399580641788 11 0.03570500438641946 17 0.03557802089648065 9 0.022429101775034408 4 0.020273501091729634 5 0.019713081017034926 3 0.018679579637506046 7 0.01582486847161812 6 0.015797884067660282 8 0.015760819673208613 1 0.015546646867993001 2 0.015239421601530833 0 0.012943517299312694 __DUMMY__ 0.004847448952947504 false 1.0
342 0 0.08657 17 0.079703 9 0.066111 22 0.062458 11 0.058774 10 0.056004 18 0.05569 16 0.052995 6 0.045556 8 0.043032 1 0.042932 7 0.042856 4 0.041853 2 0.041726 5 0.041282 19 0.037791 3 0.036945 21 0.03306 12 0.02385 23 0.021401 13 0.011784 15 0.011347 14 0.00362 24 0.00266 0 0.08657 17 0.079703 9 0.066111 22 0.062458 11 0.058774 10 0.056004 18 0.05569 16 0.052995 6 0.045556 8 0.043032 1 0.042932 7 0.042856 4 0.041853 2 0.041726 5 0.041282 19 0.037791 3 0.036945 21 0.03306 12 0.02385 23 0.021401 13 0.011784 15 0.011347 14 0.00362 24 0.00266 0 0.07302704324799376 17 0.06986407827899083 9 0.06185795035451075 22 0.06051722544601303 18 0.05317936188001356 11 0.0522297304126565 10 0.05018516611694535 16 0.04702380693502313 6 0.045140053087564753 8 0.043218774147949265 7 0.04310160493145815 1 0.043067101227832326 4 0.04299112402861205 5 0.04244856386807691 2 0.042197417877080076 19 0.039408147041564257 3 0.039022752472535914 21 0.03662864203588075 23 0.028171475151382387 12 0.024648593960966584 15 0.015004535511236148 24 0.013959404115180424 13 0.012521992705251596 20 0.009528404100823683 14 0.00909868686364585 __DUMMY__ 0.0019583642008119905 false 1.0
101 22 0.085388 18 0.067631 21 0.065904 9 0.065528 11 0.062117 19 0.061086 17 0.058592 0 0.055136 10 0.052295 24 0.036993 4 0.035108 5 0.034711 16 0.032152 3 0.031907 6 0.031383 23 0.030954 8 0.030378 7 0.029906 2 0.029836 1 0.0294 20 0.028137 12 0.026375 14 0.01484 15 0.004242 22 0.085388 18 0.067631 21 0.065904 9 0.065528 11 0.062117 19 0.061086 17 0.058592 0 0.055136 10 0.052295 24 0.036993 4 0.035108 5 0.034711 16 0.032152 3 0.031907 6 0.031383 23 0.030954 8 0.030378 7 0.029906 2 0.029836 1 0.0294 20 0.028137 12 0.026375 14 0.01484 15 0.004242 22 0.07632271340020876 18 0.06285403659665612 21 0.06115196166666542 9 0.060086212049139776 11 0.057106837989482025 19 0.0559120203125605 17 0.054165060200351396 0 0.05154194236366831 10 0.050171927588041336 24 0.03667845624058777 4 0.03628443260874017 5 0.03577679967028397 23 0.03398474001589123 6 0.03328815537046809 3 0.03316758933569218 8 0.03229848800265268 7 0.03206329928602673 16 0.0317173825720479 1 0.03169413396000107 2 0.0316156944829085 20 0.029443274496736744 12 0.029109303214878274 14 0.020547359148358178 15 0.011270664505090426 13 0.008905241700305325 __DUMMY__ 0.0028422732225573733 false 1.0
343 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 21 0.06967964031952374 23 0.06830896177849176 12 0.06706729580005513 24 0.05812585732246699 22 0.05073117036901547 19 0.05068676331145406 13 0.04868541546017027 20 0.047204737477245316 11 0.04165253297543705 18 0.04070707278451362 4 0.03813929005498708 5 0.037353449760141294 6 0.03665691481158782 7 0.03385569503491478 8 0.03346062950406736 1 0.033025628986928006 2 0.03240596814982234 14 0.03213157832125586 3 0.0320060154941708 17 0.031247291094227626 16 0.028987530457348035 9 0.027967995884952045 0 0.022348977191449973 10 0.018856923690237844 15 0.014095887404503122 __DUMMY__ 0.004610776561032631 false 1.0
585 21 0.099343 22 0.093515 11 0.089181 12 0.061395 19 0.058284 18 0.051506 24 0.049774 9 0.047777 0 0.043925 10 0.042419 17 0.041453 14 0.037412 23 0.036811 13 0.034911 4 0.026093 5 0.025743 20 0.024648 16 0.023288 6 0.021577 3 0.019391 7 0.018516 8 0.018052 1 0.017803 2 0.017181 21 0.099343 22 0.093515 11 0.089181 12 0.061395 19 0.058284 18 0.051506 24 0.049774 9 0.047777 0 0.043925 10 0.042419 17 0.041453 14 0.037412 23 0.036811 13 0.034911 4 0.026093 5 0.025743 20 0.024648 16 0.023288 6 0.021577 3 0.019391 7 0.018516 8 0.018052 1 0.017803 2 0.017181 21 0.088970005289866 22 0.08273248952749149 11 0.07673643867346526 19 0.06010976153989805 12 0.059151470257665165 18 0.05583396631892367 24 0.048876801083709634 9 0.04473434571630712 10 0.04395315119954585 17 0.04154556154412473 0 0.04070713931712404 23 0.039897002029397395 14 0.03804342614776504 13 0.03636209144297591 20 0.03387559018782628 16 0.026796082907696042 4 0.026036301738638926 5 0.0255852548167968 6 0.021956715175748445 3 0.02017747198969904 7 0.01929733043626625 8 0.01903017927491292 1 0.01880524802363591 2 0.018275593885585577 15 0.007476254014982425 __DUMMY__ 0.0050343274599519445 false 1.0
586 21 0.122493 24 0.092914 22 0.090791 12 0.08513 11 0.069365 19 0.063179 23 0.062571 14 0.053552 20 0.053183 13 0.049881 18 0.035792 4 0.028231 9 0.028174 5 0.028119 3 0.022286 6 0.019062 2 0.016283 7 0.01626 8 0.016242 1 0.015921 17 0.013484 16 0.007062 10 0.005799 15 0.004227 21 0.122493 24 0.092914 22 0.090791 12 0.08513 11 0.069365 19 0.063179 23 0.062571 14 0.053552 20 0.053183 13 0.049881 18 0.035792 4 0.028231 9 0.028174 5 0.028119 3 0.022286 6 0.019062 2 0.016283 7 0.01626 8 0.016242 1 0.015921 17 0.013484 16 0.007062 10 0.005799 15 0.004227 21 0.09810506935190148 22 0.07625031440159463 12 0.07494384690987983 24 0.06851396262481314 11 0.06433770114016378 19 0.06122941256318336 23 0.05309108836862039 13 0.051433978310037834 14 0.05016233667150752 20 0.05000683372659496 18 0.04853414542706099 9 0.032392235967333115 10 0.02689285270313623 17 0.02665549735835511 4 0.026102510792351458 5 0.02578559539994829 6 0.020312841131727218 3 0.020260019419041802 16 0.019197293915404173 0 0.01799890278713386 7 0.017420048765340628 8 0.017408098869037176 1 0.017153155331042384 2 0.017135061289489665 15 0.013454630624880918 __DUMMY__ 0.005222566150420019 false 1.0
102 10 0.088744 9 0.078074 18 0.076656 22 0.07343 0 0.071526 11 0.062085 17 0.055489 21 0.043725 14 0.042698 19 0.039801 4 0.035503 5 0.035383 6 0.034129 8 0.032891 7 0.032615 3 0.032424 1 0.032307 2 0.032183 15 0.029732 13 0.021024 16 0.018443 12 0.013457 23 0.011158 20 0.006522 10 0.088744 9 0.078074 18 0.076656 22 0.07343 0 0.071526 11 0.062085 17 0.055489 21 0.043725 14 0.042698 19 0.039801 4 0.035503 5 0.035383 6 0.034129 8 0.032891 7 0.032615 3 0.032424 1 0.032307 2 0.032183 15 0.029732 13 0.021024 16 0.018443 12 0.013457 23 0.011158 20 0.006522 10 0.07375003687009944 18 0.07019088839056174 22 0.06826690614782936 9 0.06696767237153353 0 0.06204074991004866 11 0.057049590518646554 17 0.05333695287717627 21 0.04714209969912333 19 0.0442106246609073 14 0.038069918906958475 4 0.0352623598009707 5 0.03493143684311832 6 0.03387287986104202 8 0.032591650082338 7 0.03244521845568747 1 0.03221074768755538 3 0.032067099285776085 2 0.03188578117368417 15 0.027881275405229868 16 0.024933068250553837 13 0.023097347605901562 12 0.022311011632353706 23 0.021992230170628443 20 0.017444684051758322 24 0.013193250865773838 __DUMMY__ 0.002854518474743808 false 1.0
344 0 0.079597 17 0.076055 9 0.065267 22 0.061257 18 0.052495 11 0.051088 10 0.050415 6 0.049473 16 0.049113 8 0.04774 7 0.047442 1 0.046909 4 0.046387 2 0.046308 5 0.04543 3 0.042299 19 0.037633 21 0.030729 23 0.028848 12 0.0183 15 0.011728 24 0.008983 13 0.004221 20 0.002283 0 0.079597 17 0.076055 9 0.065267 22 0.061257 18 0.052495 11 0.051088 10 0.050415 6 0.049473 16 0.049113 8 0.04774 7 0.047442 1 0.046909 4 0.046387 2 0.046308 5 0.04543 3 0.042299 19 0.037633 21 0.030729 23 0.028848 12 0.0183 15 0.011728 24 0.008983 13 0.004221 20 0.002283 0 0.06702162357124765 17 0.06502313890055324 9 0.061949112428316425 22 0.060133759351845714 18 0.052326639660755625 10 0.048674246153715545 11 0.04754222197686798 6 0.046836332189139615 4 0.045486172800517845 8 0.0454795722416288 7 0.045316849618787874 1 0.04499716783757385 5 0.044770717235403754 2 0.044413232308202384 3 0.04212073391612779 16 0.04150297277453729 19 0.03884033700926712 21 0.03632372471258509 23 0.032260004303880846 12 0.021064222592499328 24 0.018006906438639305 15 0.016680592088944332 20 0.011599957754671602 14 0.01036856922246538 13 0.009541839681701577 __DUMMY__ 0.0017193532301239816 false 1.0
345 20 0.108322 19 0.105917 24 0.087521 21 0.084143 18 0.078245 12 0.06657 23 0.063747 22 0.06297 16 0.057141 11 0.048181 14 0.04773 15 0.038347 17 0.037092 10 0.035329 13 0.034378 9 0.012916 4 0.008429 5 0.007971 3 0.006748 0 0.004164 6 0.001194 2 0.001173 8 0.001008 7 7.64E-4 20 0.108322 19 0.105917 24 0.087521 21 0.084143 18 0.078245 12 0.06657 23 0.063747 22 0.06297 16 0.057141 11 0.048181 14 0.04773 15 0.038347 17 0.037092 10 0.035329 13 0.034378 9 0.012916 4 0.008429 5 0.007971 3 0.006748 0 0.004164 6 0.001194 2 0.001173 8 0.001008 7 7.64E-4 19 0.08938014488045676 20 0.08683565855929762 21 0.07759549130033885 18 0.07325590869465977 24 0.0722362732884751 22 0.06228290201927919 12 0.06032027324128964 23 0.05630776016006604 11 0.04980291842932585 16 0.04821185627129797 14 0.04580663288464336 10 0.04054363017915474 17 0.03888590243361002 13 0.03570906986308229 15 0.03457359896746328 9 0.023019839739148323 0 0.015698810217449153 4 0.01500473301896773 5 0.014517766692849524 3 0.012484388814315966 6 0.009350278897266187 8 0.008667288740639056 7 0.008574150031060171 2 0.008438005021142852 1 0.008063467029045188 __DUMMY__ 0.004433250625675474 false 1.0
587 22 0.094619 21 0.078311 9 0.069878 11 0.057046 24 0.051328 18 0.049557 19 0.046078 4 0.044796 5 0.044002 3 0.042579 0 0.040469 17 0.040148 8 0.038605 7 0.038268 6 0.038213 1 0.038026 2 0.037481 10 0.036358 23 0.033341 14 0.029087 12 0.018464 20 0.016884 15 0.009417 16 0.007044 22 0.094619 21 0.078311 9 0.069878 11 0.057046 24 0.051328 18 0.049557 19 0.046078 4 0.044796 5 0.044002 3 0.042579 0 0.040469 17 0.040148 8 0.038605 7 0.038268 6 0.038213 1 0.038026 2 0.037481 10 0.036358 23 0.033341 14 0.029087 12 0.018464 20 0.016884 15 0.009417 16 0.007044 22 0.07762221222496161 21 0.07437208632953778 11 0.05721975476764997 9 0.054538428203090725 18 0.054103064500466466 19 0.04955835288171973 24 0.04618581033876234 10 0.042264822926157755 12 0.04015081269293251 14 0.03922283074895777 17 0.039144038816312586 0 0.03838008541850352 23 0.0378657019235849 4 0.03600447857322554 5 0.03536612498197741 3 0.03206532591803014 6 0.031614610833320185 8 0.030323560185368772 7 0.030136563528459243 1 0.029929708170721023 2 0.02948530374178155 20 0.029208207930165105 13 0.027088055223630458 15 0.017451651388312384 16 0.01701987124378829 __DUMMY__ 0.0036785365085819344 false 1.0
103 23 0.089139 24 0.066807 4 0.064103 5 0.06274 6 0.062637 7 0.062231 8 0.062098 1 0.061537 3 0.060952 2 0.060523 20 0.048446 21 0.038605 12 0.037104 19 0.035144 9 0.033766 22 0.029407 18 0.025335 16 0.025053 17 0.024862 13 0.018102 15 0.012771 0 0.011287 14 0.006518 11 8.33E-4 23 0.089139 24 0.066807 4 0.064103 5 0.06274 6 0.062637 7 0.062231 8 0.062098 1 0.061537 3 0.060952 2 0.060523 20 0.048446 21 0.038605 12 0.037104 19 0.035144 9 0.033766 22 0.029407 18 0.025335 16 0.025053 17 0.024862 13 0.018102 15 0.012771 0 0.011287 14 0.006518 11 8.33E-4 23 0.07121414972234426 24 0.056280262369537905 4 0.050580820899518576 5 0.04970660362224986 6 0.048972547873684776 21 0.04829498231071317 7 0.047834512116977236 8 0.04770644810526144 1 0.047403020840911456 3 0.04697406898956259 2 0.04670457299472295 20 0.045443063495944874 19 0.04349768547786071 12 0.042626899993343216 22 0.04178409040989366 18 0.03873383022908384 9 0.03671150852301935 17 0.03287170205333572 16 0.028709527540392698 13 0.026209295352336334 0 0.022721884384097165 11 0.021884371249827735 14 0.01873493199987647 10 0.018248489844876117 15 0.01719281029193403 __DUMMY__ 0.0029579193086939114 false 1.0
588 22 0.099391 21 0.094089 24 0.069765 9 0.061362 11 0.059672 19 0.050229 18 0.044848 14 0.043522 4 0.040788 23 0.040062 5 0.039852 3 0.038843 8 0.032563 7 0.032014 1 0.031796 6 0.031788 2 0.031529 17 0.028035 12 0.02798 20 0.027311 10 0.027105 0 0.023989 15 0.015289 13 0.008178 22 0.099391 21 0.094089 24 0.069765 9 0.061362 11 0.059672 19 0.050229 18 0.044848 14 0.043522 4 0.040788 23 0.040062 5 0.039852 3 0.038843 8 0.032563 7 0.032014 1 0.031796 6 0.031788 2 0.031529 17 0.028035 12 0.02798 20 0.027311 10 0.027105 0 0.023989 15 0.015289 13 0.008178 21 0.08392586565313037 22 0.08060601894606702 11 0.05934582439768431 24 0.05711973824241771 19 0.05435932642848295 18 0.052784592179523686 9 0.04900755306926992 12 0.04618397238139663 14 0.04577136613177633 23 0.041961917058204484 10 0.03734842671747151 20 0.0369354993585719 17 0.0334459306941472 4 0.032604581927014806 5 0.0318993982357464 13 0.030674885544004556 0 0.029448132654216332 3 0.028794113374612965 6 0.02683940410761957 8 0.025742413396961608 7 0.025485193359747638 1 0.02527293749626668 2 0.02495285203294758 15 0.019561071254254596 16 0.015131967950111342 __DUMMY__ 0.004797017408352038 false 1.0
104 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.0587461408478145 4 0.058675226782935255 6 0.058636591945985576 7 0.05860208361668079 8 0.05847863615309024 5 0.05831168305682643 2 0.057868289232391394 9 0.05728314447132455 3 0.05725401970641129 22 0.04816576580451254 23 0.04676173133174788 17 0.04609913106008541 0 0.04451285698166578 18 0.03662142215299995 24 0.034487535847558065 21 0.03219529341667498 10 0.029156427839458716 19 0.027308670947637996 11 0.02709242780686304 16 0.026915877523631504 20 0.018903455874701325 15 0.01818359737051413 12 0.018028658065836922 14 0.010889032530456604 13 0.00833926523397021 __DUMMY__ 0.0024830343982247646 false 1.0
346 0 0.086226 17 0.079497 9 0.065839 22 0.062936 11 0.058592 10 0.055773 18 0.055485 16 0.053049 6 0.045446 8 0.042915 7 0.042881 1 0.042821 2 0.041917 4 0.04179 5 0.041267 19 0.037667 3 0.037153 21 0.033111 12 0.024012 23 0.02165 13 0.011773 15 0.011525 14 0.003971 24 0.002706 0 0.086226 17 0.079497 9 0.065839 22 0.062936 11 0.058592 10 0.055773 18 0.055485 16 0.053049 6 0.045446 8 0.042915 7 0.042881 1 0.042821 2 0.041917 4 0.04179 5 0.041267 19 0.037667 3 0.037153 21 0.033111 12 0.024012 23 0.02165 13 0.011773 15 0.011525 14 0.003971 24 0.002706 0 0.07286571840990468 17 0.06976733306684371 9 0.061730726383524226 22 0.060737100737328874 18 0.05308415052650172 11 0.05214528044467145 10 0.050076976019481266 16 0.04704882747735209 6 0.045088347757237524 8 0.04316382270106443 7 0.04311220429425832 1 0.04301504549350688 4 0.04296134793050958 5 0.04244101988107277 2 0.04228468454774529 19 0.03935178657483489 3 0.03911809269638558 21 0.03665365360781163 23 0.028287114453012303 12 0.024725214705724297 15 0.01508730481576333 24 0.01398318039193683 13 0.012518522883251872 20 0.00953116009040763 14 0.009262156683017539 __DUMMY__ 0.001959227426851333 false 1.0
589 21 0.100859 19 0.093913 22 0.083837 20 0.079433 18 0.078071 24 0.074202 11 0.071672 12 0.066936 23 0.050997 10 0.044712 16 0.042901 14 0.042412 17 0.042166 13 0.031699 9 0.028863 0 0.021793 15 0.015961 4 0.009742 5 0.008824 3 0.00484 6 0.002783 7 0.001483 8 0.001025 1 8.78E-4 21 0.100859 19 0.093913 22 0.083837 20 0.079433 18 0.078071 24 0.074202 11 0.071672 12 0.066936 23 0.050997 10 0.044712 16 0.042901 14 0.042412 17 0.042166 13 0.031699 9 0.028863 0 0.021793 15 0.015961 4 0.009742 5 0.008824 3 0.00484 6 0.002783 7 0.001483 8 0.001025 1 8.78E-4 21 0.08812378084927253 19 0.08018848451207784 22 0.07640793433107333 18 0.07070744371113855 11 0.06589847109078581 20 0.0653989799168373 24 0.06286815901692973 12 0.060486543876778175 23 0.047579763355274945 10 0.04547233047194263 17 0.04188784822063298 14 0.041693370714585204 16 0.038544115325958084 9 0.033980217329867134 13 0.03373713325074413 0 0.027849355533792853 15 0.01902437680844522 4 0.016955484767961226 5 0.016253657291159948 3 0.012467768179318217 6 0.011499317039031454 7 0.01002450702571944 8 0.00976905296484247 1 0.009579288549667333 2 0.008961999634729522 __DUMMY__ 0.004640616231433888 false 1.0
105 9 0.073348 0 0.061984 22 0.059926 17 0.05815 6 0.057102 4 0.056672 7 0.056627 8 0.056465 1 0.056345 5 0.055731 2 0.055222 3 0.054109 18 0.047335 10 0.044972 11 0.034818 23 0.031885 21 0.030834 16 0.027483 19 0.026609 24 0.017686 15 0.015406 14 0.009369 12 0.007247 20 0.004675 9 0.073348 0 0.061984 22 0.059926 17 0.05815 6 0.057102 4 0.056672 7 0.056627 8 0.056465 1 0.056345 5 0.055731 2 0.055222 3 0.054109 18 0.047335 10 0.044972 11 0.034818 23 0.031885 21 0.030834 16 0.027483 19 0.026609 24 0.017686 15 0.015406 14 0.009369 12 0.007247 20 0.004675 9 0.066211764104193 22 0.05779211942401823 0 0.05723363545339519 17 0.05523028637060956 6 0.05335967213836858 4 0.05323076815457838 7 0.05279260343552765 8 0.05272627004580956 1 0.052610053883090716 5 0.05251997054073342 2 0.05175011784939799 3 0.05087996641321362 18 0.04699171337421668 10 0.0430355515889222 11 0.03657823543055627 23 0.035316675187589686 21 0.03429193441433316 19 0.03106846497672006 16 0.02973918438242989 24 0.02316675381647532 15 0.01758876885520302 12 0.01385711149310831 14 0.01261813051788994 20 0.011852444759556113 13 0.005500427814830697 __DUMMY__ 0.0020573755752327726 false 1.0
347 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 23 0.08373 12 0.069459 24 0.065508 21 0.06502 13 0.049378 4 0.047474 6 0.047233 20 0.047107 5 0.0464 7 0.044565 8 0.043844 19 0.043109 1 0.043083 2 0.042185 22 0.041095 3 0.040949 11 0.02854 16 0.027997 18 0.02636 17 0.025578 14 0.024636 9 0.021954 0 0.014045 15 0.01075 21 0.06967964031952374 23 0.06830896177849176 12 0.06706729580005513 24 0.05812585732246699 22 0.05073117036901547 19 0.05068676331145406 13 0.04868541546017027 20 0.047204737477245316 11 0.04165253297543705 18 0.04070707278451362 4 0.03813929005498708 5 0.037353449760141294 6 0.03665691481158782 7 0.03385569503491478 8 0.03346062950406736 1 0.033025628986928006 2 0.03240596814982234 14 0.03213157832125586 3 0.0320060154941708 17 0.031247291094227626 16 0.028987530457348035 9 0.027967995884952045 0 0.022348977191449973 10 0.018856923690237844 15 0.014095887404503122 __DUMMY__ 0.004610776561032631 false 1.0
348 20 0.101007 19 0.099968 21 0.090058 24 0.084523 18 0.077736 12 0.070679 22 0.066952 23 0.058868 11 0.055443 16 0.052105 14 0.046774 17 0.039187 13 0.038286 10 0.036718 15 0.031786 9 0.016339 0 0.009265 4 0.008243 5 0.007757 3 0.005423 6 0.001473 2 6.17E-4 8 5.4E-4 7 2.53E-4 20 0.101007 19 0.099968 21 0.090058 24 0.084523 18 0.077736 12 0.070679 22 0.066952 23 0.058868 11 0.055443 16 0.052105 14 0.046774 17 0.039187 13 0.038286 10 0.036718 15 0.031786 9 0.016339 0 0.009265 4 0.008243 5 0.007757 3 0.005423 6 0.001473 2 6.17E-4 8 5.4E-4 7 2.53E-4 19 0.08625986729796267 20 0.08252027279619295 21 0.08017933056904357 18 0.0730167202432685 24 0.07009633873104094 22 0.06440447983810561 12 0.06203602790636465 11 0.053525926786930945 23 0.05349819013528176 16 0.0459949174444529 14 0.045005834204612474 10 0.04142818512188886 17 0.04044706516538058 13 0.03736580818128419 15 0.031191608431942134 9 0.02509049476616912 0 0.018903625799141056 4 0.014995758194390696 5 0.014490786400340235 3 0.01187289977147574 6 0.009649357712420445 8 0.0085698413028637 7 0.008455446952446821 2 0.008285977912809222 1 0.008180724081227686 __DUMMY__ 0.004534514252962478 false 1.0
106 9 0.05733 4 0.055742 5 0.054977 22 0.054594 6 0.052823 3 0.052383 8 0.05196 1 0.051877 7 0.051873 21 0.051367 2 0.051 23 0.048157 11 0.039194 10 0.038596 18 0.038404 24 0.03807 12 0.033934 0 0.033319 14 0.03241 13 0.030203 17 0.025352 19 0.021667 20 0.01851 15 0.016259 9 0.05733 4 0.055742 5 0.054977 22 0.054594 6 0.052823 3 0.052383 8 0.05196 1 0.051877 7 0.051873 21 0.051367 2 0.051 23 0.048157 11 0.039194 10 0.038596 18 0.038404 24 0.03807 12 0.033934 0 0.033319 14 0.03241 13 0.030203 17 0.025352 19 0.021667 20 0.01851 15 0.016259 22 0.05733211438883389 21 0.05460225563793472 9 0.05368894739105484 4 0.0474838659464992 5 0.04688139809197424 18 0.045705671449857654 6 0.04519501557738173 23 0.04499168145020548 11 0.044410814558808 8 0.04375885711910655 7 0.04374113440063227 3 0.04371085492695224 1 0.043685842536518145 2 0.043013380099947526 10 0.042038623687000946 12 0.03873920858704475 0 0.03818902108430922 24 0.036767601679412135 17 0.033733381210541626 19 0.032588400748322394 14 0.03212756006272478 13 0.03179916548914773 20 0.024027306864830487 15 0.01677299179116011 16 0.012208253134101149 __DUMMY__ 0.0028066520856980695 false 1.0
107 10 0.101878 18 0.089238 11 0.067493 14 0.066849 0 0.065701 22 0.064737 9 0.063444 17 0.050509 19 0.05026 13 0.04942 21 0.049247 15 0.0476 12 0.030894 16 0.025352 20 0.025193 4 0.019645 5 0.019294 6 0.01859 7 0.017107 8 0.016889 1 0.016871 2 0.016181 3 0.016137 23 0.011471 10 0.101878 18 0.089238 11 0.067493 14 0.066849 0 0.065701 22 0.064737 9 0.063444 17 0.050509 19 0.05026 13 0.04942 21 0.049247 15 0.0476 12 0.030894 16 0.025352 20 0.025193 4 0.019645 5 0.019294 6 0.01859 7 0.017107 8 0.016889 1 0.016871 2 0.016181 3 0.016137 23 0.011471 10 0.08580628427197382 18 0.08235911536798438 22 0.06456619959202944 11 0.0628742828928272 14 0.058566981037983495 9 0.05654572373014151 0 0.05651332316359556 21 0.05444823842548115 19 0.05433723561536053 17 0.04870685481446645 13 0.04482893390668452 15 0.04107947889709406 12 0.03654937565342359 20 0.03263118092126489 16 0.02786400067045819 4 0.021769308363379355 23 0.021548167863071236 5 0.021377913613552523 6 0.02004698680165267 7 0.018360295851512692 8 0.018263072182172616 1 0.018162883719404745 3 0.01798320815417768 2 0.01764598883908419 24 0.013944393757905012 __DUMMY__ 0.003220571893318615 false 1.0
349 0 0.085822 17 0.078945 9 0.065207 22 0.062949 11 0.058517 10 0.055859 18 0.05422 16 0.052935 6 0.045694 8 0.042993 7 0.042926 1 0.042778 2 0.042534 4 0.041975 5 0.041833 3 0.037781 19 0.037426 21 0.032738 12 0.024455 23 0.021291 15 0.011921 13 0.01172 14 0.004258 24 0.003225 0 0.085822 17 0.078945 9 0.065207 22 0.062949 11 0.058517 10 0.055859 18 0.05422 16 0.052935 6 0.045694 8 0.042993 7 0.042926 1 0.042778 2 0.042534 4 0.041975 5 0.041833 3 0.037781 19 0.037426 21 0.032738 12 0.024455 23 0.021291 15 0.011921 13 0.01172 14 0.004258 24 0.003225 0 0.07267934472167219 17 0.06951268386906073 9 0.06143917150490313 22 0.060743097910465046 18 0.05250057944824904 11 0.052110681368885706 10 0.05011664962638222 16 0.046996236882157774 6 0.045202755367835655 8 0.04319980573988159 7 0.043132963739729746 4 0.04304669231744772 1 0.04299520869005639 5 0.042702127573002416 2 0.04256931961120923 3 0.03940780229096476 19 0.03924060821131006 21 0.03648158087090394 23 0.028121500210251275 12 0.024929579913365345 15 0.015269987935911987 24 0.014222605996374085 13 0.01249407286969662 20 0.00953116009040763 14 0.009394555813024268 __DUMMY__ 0.001959227426851333 false 1.0
108 9 0.064605 3 0.055523 22 0.054979 4 0.054046 5 0.053274 8 0.053174 7 0.053021 1 0.053021 2 0.052084 6 0.050806 18 0.048749 10 0.047729 0 0.04078 23 0.038729 17 0.038713 24 0.036565 19 0.035276 15 0.034294 21 0.03201 11 0.03067 14 0.02726 20 0.026479 16 0.018058 13 1.56E-4 9 0.064605 3 0.055523 22 0.054979 4 0.054046 5 0.053274 8 0.053174 7 0.053021 1 0.053021 2 0.052084 6 0.050806 18 0.048749 10 0.047729 0 0.04078 23 0.038729 17 0.038713 24 0.036565 19 0.035276 15 0.034294 21 0.03201 11 0.03067 14 0.02726 20 0.026479 16 0.018058 13 1.56E-4 9 0.059743018517680116 22 0.058851303210209836 18 0.05327991814219824 10 0.04829595038294754 4 0.046680607934678736 3 0.04618973005124747 5 0.04601973554816065 8 0.04480516249068755 7 0.04471126488111452 1 0.044603445359895015 6 0.043942116344272156 2 0.0439016364797685 0 0.04296603971868221 17 0.042882837802291934 21 0.04176127379764929 19 0.041691303899733405 23 0.03855914056127923 11 0.038198766175064014 24 0.03592312572418757 15 0.029338086224212707 20 0.02905410397419053 14 0.02846321596119072 16 0.023534033835626918 12 0.014090498611199508 13 0.009417448164910417 __DUMMY__ 0.0030962362069210446 false 1.0
109 9 0.073947 22 0.063225 0 0.059086 4 0.056092 8 0.055599 5 0.055581 6 0.055557 7 0.055534 1 0.055086 3 0.054581 2 0.054574 17 0.05317 18 0.048794 10 0.047156 11 0.036847 21 0.034985 23 0.031426 19 0.02785 16 0.021298 24 0.020574 15 0.013879 14 0.011579 12 0.006999 20 0.006582 9 0.073947 22 0.063225 0 0.059086 4 0.056092 8 0.055599 5 0.055581 6 0.055557 7 0.055534 1 0.055086 3 0.054581 2 0.054574 17 0.05317 18 0.048794 10 0.047156 11 0.036847 21 0.034985 23 0.031426 19 0.02785 16 0.021298 24 0.020574 15 0.013879 14 0.011579 12 0.006999 20 0.006582 9 0.06677947185896979 22 0.060408550613566425 0 0.05591809764853271 17 0.05270642462495873 4 0.05236393714795915 6 0.051879690039355685 5 0.051842761443260096 8 0.05156827610198726 7 0.051526994362687026 1 0.05125537242133813 2 0.05068401970101376 3 0.05048047842018479 18 0.04846826311066813 10 0.04490855041039075 11 0.038574948197490154 21 0.03736145861505974 23 0.034624921005012424 19 0.03233042913429576 16 0.026319692298771832 24 0.024619218059116293 15 0.01659737097248005 14 0.014287869592090104 12 0.01394671980667705 20 0.012915908291146376 13 0.005586339648312357 __DUMMY__ 0.002044236474675332 false 1.0
590 22 0.085691 9 0.070676 21 0.065594 11 0.054361 18 0.051316 0 0.048522 17 0.046844 4 0.046179 5 0.04506 3 0.043856 19 0.042892 8 0.041814 24 0.041683 10 0.041593 6 0.041548 7 0.041532 1 0.041418 2 0.040412 23 0.031322 14 0.023346 12 0.016087 20 0.014647 16 0.013691 15 0.009918 22 0.085691 9 0.070676 21 0.065594 11 0.054361 18 0.051316 0 0.048522 17 0.046844 4 0.046179 5 0.04506 3 0.043856 19 0.042892 8 0.041814 24 0.041683 10 0.041593 6 0.041548 7 0.041532 1 0.041418 2 0.040412 23 0.031322 14 0.023346 12 0.016087 20 0.014647 16 0.013691 15 0.009918 22 0.07410026124416337 21 0.06668679471238019 9 0.056891028073528055 11 0.05520462741032719 18 0.05437070653263581 19 0.04711178968451866 10 0.044577412065652154 0 0.043451078321099526 17 0.04328558994304729 24 0.04091601943117338 4 0.038153535412837614 5 0.0373598752833688 23 0.0362088140597069 12 0.035527858733324 6 0.034685261593278185 3 0.034470900520643916 14 0.0342371851555229 8 0.0335566246191763 7 0.033388542760991104 1 0.03323961756755102 2 0.03257194846541428 20 0.026302973663267577 13 0.023281025771884768 16 0.02007891538763441 15 0.017029603661511353 __DUMMY__ 0.0033120099253612077 false 1.0
591 20 0.100357 19 0.099437 21 0.089876 24 0.082357 18 0.080226 12 0.069306 22 0.066408 23 0.060129 11 0.053916 16 0.051692 14 0.045993 17 0.039556 10 0.038686 13 0.038168 15 0.030681 9 0.017229 0 0.010768 4 0.008225 5 0.007256 3 0.004662 6 0.001915 7 0.001384 8 9.73E-4 1 8.0E-4 20 0.100357 19 0.099437 21 0.089876 24 0.082357 18 0.080226 12 0.069306 22 0.066408 23 0.060129 11 0.053916 16 0.051692 14 0.045993 17 0.039556 10 0.038686 13 0.038168 15 0.030681 9 0.017229 0 0.010768 4 0.008225 5 0.007256 3 0.004662 6 0.001915 7 0.001384 8 9.73E-4 1 8.0E-4 19 0.08514275468217104 20 0.08136379023429897 21 0.08049144332615477 18 0.07329861981783904 24 0.0692358845194618 22 0.06442133798784568 12 0.061444694876347065 23 0.054063949386915784 11 0.05304975705577074 14 0.045208689978099986 16 0.044866327225115715 10 0.04192590728096325 17 0.03996210842578737 13 0.037655694289468744 15 0.030718615341876945 9 0.02569588064929579 0 0.01928635170626926 4 0.015350340903791873 5 0.01463008247221096 3 0.011883871460290673 6 0.010165676917105366 7 0.009291697365151933 8 0.009081952432839704 1 0.008866547396220462 2 0.008318708978980368 __DUMMY__ 0.004579315289726585 false 1.0
592 21 0.102573 19 0.094692 22 0.083743 20 0.078694 18 0.077243 24 0.074648 11 0.071854 12 0.067202 23 0.05155 10 0.043143 16 0.042964 17 0.042309 14 0.041863 13 0.032011 9 0.029353 0 0.021684 15 0.015522 4 0.009687 5 0.008484 3 0.004873 6 0.0025 8 0.001232 7 0.00123 1 9.43E-4 21 0.102573 19 0.094692 22 0.083743 20 0.078694 18 0.077243 24 0.074648 11 0.071854 12 0.067202 23 0.05155 10 0.043143 16 0.042964 17 0.042309 14 0.041863 13 0.032011 9 0.029353 0 0.021684 15 0.015522 4 0.009687 5 0.008484 3 0.004873 6 0.0025 8 0.001232 7 0.00123 1 9.43E-4 21 0.08891391299494304 19 0.08054385715833859 22 0.07636616625344372 18 0.07032337681253156 11 0.06598458319700076 20 0.0650511565023117 24 0.06307002195621135 12 0.06060777263505246 23 0.047832628242390436 10 0.04474964238180322 17 0.04195434250995266 14 0.04143914841237905 16 0.038570739122789265 9 0.034209542395642945 13 0.03388060179201916 0 0.02780259310694726 15 0.018819602984075395 4 0.016932105759495907 5 0.016098844530164854 3 0.012484808973006103 6 0.011370993646839321 7 0.009909831606809572 8 0.009866627614843155 1 0.009611349061425032 2 0.008964109885260196 __DUMMY__ 0.0046416404643233366 false 1.0
350 0 0.081993 17 0.07556 9 0.069512 22 0.066632 18 0.056318 11 0.055401 10 0.055358 6 0.047064 16 0.045218 1 0.045193 8 0.04517 7 0.04504 4 0.04459 5 0.044537 2 0.044517 3 0.041072 19 0.036947 21 0.034826 23 0.021874 12 0.018307 15 0.009399 24 0.006061 13 0.005622 14 0.003789 0 0.081993 17 0.07556 9 0.069512 22 0.066632 18 0.056318 11 0.055401 10 0.055358 6 0.047064 16 0.045218 1 0.045193 8 0.04517 7 0.04504 4 0.04459 5 0.044537 2 0.044517 3 0.041072 19 0.036947 21 0.034826 23 0.021874 12 0.018307 15 0.009399 24 0.006061 13 0.005622 14 0.003789 0 0.07012768103080556 17 0.06685109795017528 9 0.06403696940641547 22 0.06305384615349476 18 0.05352594960957266 11 0.050526530983800895 10 0.05009824512315311 6 0.04597537040951471 4 0.044619714648473946 8 0.04443413034961343 7 0.04433953658664241 1 0.044334869966178934 5 0.04431274972100433 2 0.04370997664419884 16 0.04173454569443573 3 0.04138475217869881 19 0.03871836729564688 21 0.03803567808281056 23 0.028426163503041463 12 0.021492375983537104 24 0.015986253033507196 15 0.013868258255871634 14 0.009728566049616546 20 0.00944248016595761 13 0.009296831872524619 __DUMMY__ 0.0019390593013073273 false 1.0
351 22 0.066048 9 0.06372 4 0.0542 5 0.052798 18 0.052312 6 0.052247 8 0.051035 17 0.051002 7 0.050311 1 0.049785 3 0.049778 2 0.04952 0 0.047661 23 0.044121 21 0.043339 11 0.038095 19 0.036996 10 0.036144 24 0.035427 16 0.019607 20 0.018149 12 0.016023 15 0.012125 14 0.009557 22 0.066048 9 0.06372 4 0.0542 5 0.052798 18 0.052312 6 0.052247 8 0.051035 17 0.051002 7 0.050311 1 0.049785 3 0.049778 2 0.04952 0 0.047661 23 0.044121 21 0.043339 11 0.038095 19 0.036996 10 0.036144 24 0.035427 16 0.019607 20 0.018149 12 0.016023 15 0.012125 14 0.009557 22 0.059283397017770134 9 0.05707721640890533 18 0.04995287655936362 4 0.04992083038401649 5 0.0490369591893147 6 0.04819505214765064 8 0.04741057328785823 17 0.04709976071124073 7 0.047078167628066915 3 0.046861450967925246 1 0.04676298999727374 2 0.04639201416913796 23 0.04474157486060108 21 0.043477142836639594 0 0.04331194969701004 19 0.03904005914663004 24 0.037466123965943836 10 0.03714270931563978 11 0.03668268140994835 20 0.025438546646361804 16 0.024720594837685458 12 0.02161939281559411 15 0.020605111435418776 14 0.018705741340384333 13 0.009757514441336608 __DUMMY__ 0.00221956878228236 false 1.0
593 22 0.079465 0 0.076361 9 0.072211 17 0.070566 11 0.062602 18 0.055181 10 0.05135 21 0.050381 4 0.043298 6 0.043288 5 0.042082 8 0.041419 7 0.041065 1 0.041006 19 0.040873 2 0.040034 3 0.038511 16 0.036163 23 0.022689 12 0.019004 24 0.017201 14 0.007808 15 0.005226 13 0.002218 22 0.079465 0 0.076361 9 0.072211 17 0.070566 11 0.062602 18 0.055181 10 0.05135 21 0.050381 4 0.043298 6 0.043288 5 0.042082 8 0.041419 7 0.041065 1 0.041006 19 0.040873 2 0.040034 3 0.038511 16 0.036163 23 0.022689 12 0.019004 24 0.017201 14 0.007808 15 0.005226 13 0.002218 22 0.07004254885775645 0 0.0623029980716032 9 0.062035613225274684 17 0.059484083977148314 11 0.05600541618537621 18 0.05355822372530243 21 0.051737554759153016 10 0.047907138110088565 19 0.04226549591776583 4 0.04148000418251593 6 0.04098151315915227 5 0.04064527296158437 8 0.03919438385492456 7 0.038997579456617214 1 0.03889594314206566 2 0.03818371809273642 3 0.03722365292209688 16 0.03364292333102921 23 0.03061738177839785 12 0.02846530291466962 24 0.025147247141576165 14 0.018070269516438905 13 0.014923106545395377 20 0.013286642296735214 15 0.012571331870278655 __DUMMY__ 0.002334654004317008 false 1.0
110 22 0.065417 9 0.05498 3 0.052951 24 0.052908 21 0.052817 4 0.052092 5 0.051786 23 0.050367 8 0.048906 7 0.048875 1 0.048812 2 0.048446 6 0.047169 11 0.042504 18 0.041574 19 0.040219 10 0.032916 17 0.032079 20 0.030488 0 0.029982 14 0.023268 15 0.022491 16 0.015394 12 0.01356 22 0.065417 9 0.05498 3 0.052951 24 0.052908 21 0.052817 4 0.052092 5 0.051786 23 0.050367 8 0.048906 7 0.048875 1 0.048812 2 0.048446 6 0.047169 11 0.042504 18 0.041574 19 0.040219 10 0.032916 17 0.032079 20 0.030488 0 0.029982 14 0.023268 15 0.022491 16 0.015394 12 0.01356 22 0.06577903515138174 21 0.061003980359195166 18 0.05212683218807045 19 0.05163250949707105 24 0.049702225288391105 11 0.04934457707654111 9 0.04844862386448093 23 0.0466209945788002 10 0.03983327372188549 4 0.03949247413092969 5 0.03907101274022822 20 0.03881346709891819 17 0.038514704042733744 3 0.03786524895716355 6 0.035489304576397304 8 0.03547425955287375 7 0.03547175255725578 1 0.03530899845809634 2 0.03491966060093405 0 0.03404077976537879 12 0.03189926258997814 14 0.030287682400120235 16 0.025489088916368103 15 0.022235170797791005 13 0.01681236296151668 __DUMMY__ 0.004322718127499361 false 1.0
352 15 0.082148 20 0.077091 23 0.076602 24 0.071273 14 0.0541 19 0.043811 18 0.042127 13 0.041917 16 0.041678 4 0.041343 5 0.040867 6 0.0407 7 0.040515 8 0.040329 3 0.040129 2 0.039824 1 0.039722 12 0.038955 21 0.028121 17 0.026981 22 0.018112 10 0.014371 9 0.010451 11 0.008832 15 0.082148 20 0.077091 23 0.076602 24 0.071273 14 0.0541 19 0.043811 18 0.042127 13 0.041917 16 0.041678 4 0.041343 5 0.040867 6 0.0407 7 0.040515 8 0.040329 3 0.040129 2 0.039824 1 0.039722 12 0.038955 21 0.028121 17 0.026981 22 0.018112 10 0.014371 9 0.010451 11 0.008832 20 0.06764017583179338 15 0.06683315797525734 23 0.06008617348782764 24 0.05815413560739611 14 0.055551692543328327 18 0.055189701004192515 19 0.05306972673895466 13 0.043741582941787274 12 0.04312396279355118 21 0.04252658672898213 16 0.04021945231349074 22 0.03521203309087393 17 0.0345111654769415 10 0.03334247109076657 4 0.032254723304454204 5 0.031813135761604945 6 0.030671624095646246 3 0.03002840706216364 7 0.029882358023688226 8 0.029834971304021962 1 0.02941723313496518 2 0.02933327754101614 11 0.026323988661772525 9 0.022902273591839113 0 0.015083264625628277 __DUMMY__ 0.003252725268056347 false 1.0
594 22 0.098473 21 0.095526 11 0.085918 19 0.06165 18 0.058296 9 0.055477 24 0.05002 10 0.049392 12 0.046837 0 0.044763 17 0.043072 23 0.034473 14 0.032868 4 0.027572 5 0.027197 20 0.026455 3 0.022476 16 0.021993 6 0.021823 7 0.020089 8 0.019567 1 0.019291 2 0.018596 13 0.018176 22 0.098473 21 0.095526 11 0.085918 19 0.06165 18 0.058296 9 0.055477 24 0.05002 10 0.049392 12 0.046837 0 0.044763 17 0.043072 23 0.034473 14 0.032868 4 0.027572 5 0.027197 20 0.026455 3 0.022476 16 0.021993 6 0.021823 7 0.020089 8 0.019567 1 0.019291 2 0.018596 13 0.018176 21 0.08604343790045454 22 0.08514405538504125 11 0.07419602112252109 19 0.062104613513262255 18 0.05937288676834338 12 0.05012255654347209 24 0.04933551831482984 9 0.04905478819526855 10 0.047321774393243046 17 0.04288128161531327 0 0.041185095578651666 23 0.03847036605089055 20 0.03522729574124067 14 0.03501576570683882 4 0.02710232209820244 16 0.026793532995051696 5 0.026641365244010153 13 0.026075650892369916 6 0.022362852771372486 3 0.022305204180838246 7 0.02054288726250446 8 0.02025790260304807 1 0.020011885297587823 2 0.01944610347242564 15 0.00803103188319381 __DUMMY__ 0.004953804470024207 false 1.0
353 18 0.09858 20 0.092894 19 0.091403 15 0.078864 14 0.070006 10 0.066027 16 0.058933 21 0.056708 22 0.054561 17 0.053392 24 0.0513 23 0.042384 12 0.039968 11 0.03766 13 0.037505 9 0.027785 0 0.024826 4 0.005324 5 0.00398 3 0.002504 6 0.001832 7 0.001828 8 0.001188 1 5.48E-4 18 0.09858 20 0.092894 19 0.091403 15 0.078864 14 0.070006 10 0.066027 16 0.058933 21 0.056708 22 0.054561 17 0.053392 24 0.0513 23 0.042384 12 0.039968 11 0.03766 13 0.037505 9 0.027785 0 0.024826 4 0.005324 5 0.00398 3 0.002504 6 0.001832 7 0.001828 8 0.001188 1 5.48E-4 18 0.0826479947617193 20 0.07492302349053778 19 0.07472698979730273 15 0.07034719935614936 14 0.06516646500031531 10 0.0594304373969752 21 0.053361799046921614 22 0.052511665256931093 24 0.04814703396652706 16 0.0476238865780082 17 0.04678099284668843 23 0.04262355821611578 13 0.03850120595039161 11 0.03837932060401235 12 0.03810051043068332 9 0.032767171501115445 0 0.026403899574614125 4 0.01587166106657881 5 0.015027445029765088 3 0.013525213488269815 6 0.012724381668616308 7 0.012485123504705565 8 0.012234099871430655 1 0.011767307102060207 2 0.011368363393947584 __DUMMY__ 0.002553251099617329 false 1.0
111 9 0.06057 3 0.059598 4 0.059582 5 0.059252 8 0.058731 7 0.058641 2 0.058272 1 0.058256 6 0.058101 22 0.053545 23 0.046365 17 0.043401 0 0.042101 24 0.04134 21 0.036502 18 0.035212 19 0.031857 10 0.027123 11 0.026018 16 0.025226 20 0.02244 15 0.015361 12 0.013502 14 0.009005 9 0.06057 3 0.059598 4 0.059582 5 0.059252 8 0.058731 7 0.058641 2 0.058272 1 0.058256 6 0.058101 22 0.053545 23 0.046365 17 0.043401 0 0.042101 24 0.04134 21 0.036502 18 0.035212 19 0.031857 10 0.027123 11 0.026018 16 0.025226 20 0.02244 15 0.015361 12 0.013502 14 0.009005 9 0.05783072358348563 22 0.05692832152697571 4 0.05122069178107761 5 0.05077723158560685 6 0.04992525708574593 3 0.04983173462322016 8 0.04976099380730169 7 0.04969631502757137 1 0.04943423729701788 2 0.04916350196861087 17 0.04707048761177998 0 0.04556526810391305 18 0.04358551334121094 23 0.04263711315152279 21 0.041997628132119456 19 0.037592944748523524 24 0.03728417226398803 11 0.03530851817786751 10 0.03520371725497394 16 0.028777538753570083 20 0.024200338688363278 12 0.020822062265585233 15 0.018230900482829045 14 0.015929408620084563 13 0.008507693512263324 __DUMMY__ 0.0027176866047913086 false 1.0
595 22 0.09904 21 0.096216 11 0.084177 19 0.062705 18 0.059566 9 0.05588 24 0.049616 10 0.048564 12 0.045458 0 0.042908 17 0.042413 23 0.036961 14 0.032375 4 0.027986 20 0.02784 5 0.027394 3 0.022652 6 0.021998 16 0.020976 7 0.020587 8 0.019871 1 0.019577 2 0.018559 13 0.016682 22 0.09904 21 0.096216 11 0.084177 19 0.062705 18 0.059566 9 0.05588 24 0.049616 10 0.048564 12 0.045458 0 0.042908 17 0.042413 23 0.036961 14 0.032375 4 0.027986 20 0.02784 5 0.027394 3 0.022652 6 0.021998 16 0.020976 7 0.020587 8 0.019871 1 0.019577 2 0.018559 13 0.016682 21 0.08626568638608328 22 0.08524492900479465 11 0.07313267614299318 19 0.06254062715001843 18 0.05987716504826895 12 0.04943401298081926 24 0.049309292728742744 9 0.049170287067260496 10 0.04678906245667431 17 0.04242838927144791 0 0.04010875236900643 23 0.03977438352272556 20 0.03601643306533547 14 0.03482764573986645 4 0.02738835521739577 5 0.02682725939275154 16 0.026238488523929484 13 0.025382332806422225 6 0.022527792084911114 3 0.022502057109177093 7 0.020870394860938602 8 0.020496658492574413 1 0.020242064416072767 2 0.019529603412738555 15 0.008147664255807348 __DUMMY__ 0.004927986493244044 false 1.0
596 21 0.107004 22 0.092167 11 0.087288 19 0.082834 12 0.072091 18 0.071783 10 0.054173 24 0.053169 20 0.050767 17 0.046219 0 0.042219 9 0.042016 13 0.039992 14 0.03999 23 0.037476 16 0.035936 4 0.011387 5 0.011075 6 0.006141 3 0.005021 7 0.003598 8 0.002882 1 0.002783 2 0.001989 21 0.107004 22 0.092167 11 0.087288 19 0.082834 12 0.072091 18 0.071783 10 0.054173 24 0.053169 20 0.050767 17 0.046219 0 0.042219 9 0.042016 13 0.039992 14 0.03999 23 0.037476 16 0.035936 4 0.011387 5 0.011075 6 0.006141 3 0.005021 7 0.003598 8 0.002882 1 0.002783 2 0.001989 21 0.09388855130339667 22 0.08156099639294054 11 0.0761429807759269 19 0.07382265644534942 18 0.06674364283661398 12 0.06665569774760928 24 0.05142851291414623 10 0.05022682838760479 20 0.04906066076621422 17 0.04341571056745524 13 0.040961901879932976 14 0.04067000149316863 23 0.04047201196786903 9 0.040455507010469335 0 0.03896260400071534 16 0.03375568743718867 4 0.017359444519128735 5 0.016947490721994262 6 0.01285172941060001 3 0.011621114186979947 7 0.010393024951978358 8 0.009999117528837668 1 0.0098574228889189 2 0.009271856754248542 15 0.007939854682374733 __DUMMY__ 0.005534992428337712 false 1.0
112 22 0.089692 11 0.072243 9 0.069603 21 0.068839 0 0.062024 18 0.058238 17 0.056506 10 0.055568 19 0.049003 4 0.038039 5 0.037512 6 0.035024 3 0.034246 8 0.033919 7 0.033612 1 0.033179 2 0.032675 24 0.028826 12 0.027263 16 0.025144 23 0.024701 14 0.017806 20 0.010639 13 0.005699 22 0.089692 11 0.072243 9 0.069603 21 0.068839 0 0.062024 18 0.058238 17 0.056506 10 0.055568 19 0.049003 4 0.038039 5 0.037512 6 0.035024 3 0.034246 8 0.033919 7 0.033612 1 0.033179 2 0.032675 24 0.028826 12 0.027263 16 0.025144 23 0.024701 14 0.017806 20 0.010639 13 0.005699 22 0.0791423918431717 21 0.06503480211791186 11 0.06489714627838185 9 0.0605500502925228 18 0.05813127128796067 0 0.05568295812648677 17 0.0537536514893645 10 0.051704778654730894 19 0.05113698898281496 4 0.03600179215875511 5 0.035462688592565586 6 0.03349200337310972 12 0.033228130694501035 24 0.0326064041624344 3 0.032171761659225716 8 0.03210887049203526 7 0.031967725960735105 1 0.03163438899639475 2 0.03112854603418692 23 0.030877685223124524 16 0.029835412194061994 14 0.022598258251369293 20 0.02083106930628088 13 0.014464971354916527 15 0.008189083413771338 __DUMMY__ 0.0033671690591861522 false 1.0
355 17 0.066727 16 0.063651 19 0.055369 22 0.053264 0 0.051406 9 0.046454 18 0.045481 23 0.043183 8 0.042719 7 0.042668 6 0.042408 1 0.042281 24 0.04211 2 0.042001 4 0.041898 3 0.041364 5 0.040992 20 0.039485 21 0.038104 11 0.034791 15 0.030503 10 0.026068 12 0.020984 14 0.006088 17 0.066727 16 0.063651 19 0.055369 22 0.053264 0 0.051406 9 0.046454 18 0.045481 23 0.043183 8 0.042719 7 0.042668 6 0.042408 1 0.042281 24 0.04211 2 0.042001 4 0.041898 3 0.041364 5 0.040992 20 0.039485 21 0.038104 11 0.034791 15 0.030503 10 0.026068 12 0.020984 14 0.006088 17 0.0602831050659437 16 0.05448617112919866 19 0.053038768166812675 22 0.052713620610282036 18 0.05058227363057695 0 0.04884703974965296 9 0.04525668915667159 23 0.04200474989301662 21 0.04177447401878331 11 0.03899017413619922 20 0.038750126615010184 24 0.03860922452807277 6 0.03846955643371743 4 0.03826305029983571 8 0.0378503901885323 7 0.03777355157225293 5 0.03759952569281873 1 0.037497023494204106 2 0.0371721708656521 3 0.03632910930522302 10 0.034883660125228894 15 0.03279878704667898 12 0.029431128781624086 14 0.018993455208113366 13 0.01471712467148788 __DUMMY__ 0.002885049614409811 false 1.0
113 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.060051712015309996 22 0.05880652166329291 4 0.05060580427200128 5 0.05020535337714254 17 0.04952625538440789 6 0.04950948675267622 8 0.04923137720988088 7 0.049153750115094375 0 0.049148194228899614 3 0.04908594870200612 1 0.04890141051321241 2 0.04863525539426168 18 0.045432036586032384 21 0.04166270304823986 23 0.03981189919189338 10 0.03820970403853396 11 0.03778963804554386 19 0.037591962636585645 24 0.034079442193111195 16 0.02924672246923552 20 0.021541653448244536 12 0.019728454273446112 15 0.01700656576501919 14 0.015041322414869678 13 0.007474830013389409 __DUMMY__ 0.002521996247669281 false 1.0
597 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.09256585821799403 22 0.0831161266627916 11 0.07709663082069106 19 0.07116683182566398 18 0.065200197773616 12 0.06323309259006334 10 0.050312325225234523 24 0.04993295863850289 20 0.04497361934230063 17 0.043924006346090214 9 0.04284354635438375 0 0.04064230025350431 14 0.03939063629857705 23 0.039016719604305916 13 0.037888054681665805 16 0.03250843064622087 4 0.01918161262558998 5 0.018751479570219998 6 0.014678632558240387 3 0.013603513549511118 7 0.012327141786491046 8 0.01195767442960275 1 0.01180059599265035 2 0.011214652672799308 15 0.007383983857393048 __DUMMY__ 0.0052893776758956845 false 1.0
356 20 0.115239 19 0.103051 24 0.084213 21 0.080849 18 0.080364 12 0.077595 23 0.066647 16 0.059625 13 0.051891 14 0.049516 22 0.046044 15 0.040611 11 0.038674 17 0.037798 10 0.036602 9 0.007484 4 0.006199 5 0.005457 0 0.005254 3 0.003538 6 0.001227 7 7.57E-4 1 7.41E-4 8 6.24E-4 20 0.115239 19 0.103051 24 0.084213 21 0.080849 18 0.080364 12 0.077595 23 0.066647 16 0.059625 13 0.051891 14 0.049516 22 0.046044 15 0.040611 11 0.038674 17 0.037798 10 0.036602 9 0.007484 4 0.006199 5 0.005457 0 0.005254 3 0.003538 6 0.001227 7 7.57E-4 1 7.41E-4 8 6.24E-4 20 0.09175332388804341 19 0.08884811719145905 21 0.07584552558317982 18 0.07469117401649099 24 0.07089409476900645 12 0.06704541626110697 23 0.05801109808255026 22 0.05293449759781518 16 0.05039331206845203 14 0.04751368716259026 13 0.04584327867927874 11 0.04453736828674601 10 0.04110588796318143 17 0.03922313903687964 15 0.036586363158814916 9 0.019230949016138567 0 0.015701033660193937 4 0.013146426431686254 5 0.012544904458604096 3 0.010121187266510547 6 0.00867521297065186 7 0.007804185694395756 8 0.00772818188996412 1 0.007651710052310328 2 0.00715951374414078 __DUMMY__ 0.005010411069808569 false 1.0
114 22 0.085009 9 0.074193 0 0.066975 11 0.065622 17 0.059544 21 0.059165 18 0.058537 10 0.055792 19 0.044614 4 0.042726 5 0.041784 6 0.040435 7 0.039345 8 0.039295 3 0.039018 1 0.039014 2 0.038018 16 0.025397 24 0.024172 23 0.023245 12 0.01871 14 0.012397 20 0.006906 15 8.8E-5 22 0.085009 9 0.074193 0 0.066975 11 0.065622 17 0.059544 21 0.059165 18 0.058537 10 0.055792 19 0.044614 4 0.042726 5 0.041784 6 0.040435 7 0.039345 8 0.039295 3 0.039018 1 0.039014 2 0.038018 16 0.025397 24 0.024172 23 0.023245 12 0.01871 14 0.012397 20 0.006906 15 8.8E-5 22 0.07506166115239687 9 0.06512583028877698 0 0.060450424104349525 11 0.05876872004815123 18 0.057165953219819605 17 0.056927618095420233 21 0.05528918355368235 10 0.05194297774359873 19 0.04599109786331262 4 0.04085058984310759 5 0.040113255842239515 6 0.03915306294394261 8 0.037946876507934525 7 0.0379444738793966 1 0.03767531091059224 3 0.037385610884577855 2 0.03693157377225392 16 0.03033187103482315 23 0.029184397529340995 24 0.02740264672808316 12 0.024627765424533963 14 0.017421619199309894 20 0.015924166381646055 15 0.008992232898625321 13 0.008647515817945551 __DUMMY__ 0.0027435643321387457 false 1.0
598 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.104436 22 0.09345 11 0.087999 19 0.078115 18 0.06877 12 0.067402 10 0.05376 24 0.051171 17 0.046274 9 0.04497 20 0.044862 0 0.043985 14 0.038815 13 0.036474 23 0.035698 16 0.033798 4 0.014379 5 0.014037 6 0.009188 3 0.008272 7 0.006786 8 0.006127 1 0.006002 2 0.005232 21 0.09256585821799403 22 0.0831161266627916 11 0.07709663082069106 19 0.07116683182566398 18 0.065200197773616 12 0.06323309259006334 10 0.050312325225234523 24 0.04993295863850289 20 0.04497361934230063 17 0.043924006346090214 9 0.04284354635438375 0 0.04064230025350431 14 0.03939063629857705 23 0.039016719604305916 13 0.037888054681665805 16 0.03250843064622087 4 0.01918161262558998 5 0.018751479570219998 6 0.014678632558240387 3 0.013603513549511118 7 0.012327141786491046 8 0.01195767442960275 1 0.01180059599265035 2 0.011214652672799308 15 0.007383983857393048 __DUMMY__ 0.0052893776758956845 false 1.0
357 17 0.070327 19 0.068868 16 0.067205 22 0.062316 18 0.054774 21 0.05193 0 0.051321 20 0.047292 24 0.046853 23 0.044751 9 0.044272 11 0.041941 4 0.034006 6 0.033503 8 0.033172 7 0.033154 5 0.032862 1 0.032674 2 0.032373 3 0.032195 12 0.029548 10 0.028058 15 0.022604 14 0.003998 17 0.070327 19 0.068868 16 0.067205 22 0.062316 18 0.054774 21 0.05193 0 0.051321 20 0.047292 24 0.046853 23 0.044751 9 0.044272 11 0.041941 4 0.034006 6 0.033503 8 0.033172 7 0.033154 5 0.032862 1 0.032674 2 0.032373 3 0.032195 12 0.029548 10 0.028058 15 0.022604 14 0.003998 19 0.05911140600767172 17 0.05878071405476881 22 0.05708015689078072 18 0.0546012843166241 16 0.0529190371865245 21 0.05150076765671003 0 0.04654692102351881 23 0.04388030051374045 20 0.04343686361379215 11 0.043353914425621656 9 0.043099761848313385 24 0.04223137907316026 12 0.037610785580356236 10 0.035644198576951835 4 0.03418293799928785 6 0.03363617465147832 5 0.03342309761737553 8 0.03250647919953062 7 0.03245790919871069 1 0.03213754434880928 2 0.03183128562157343 3 0.031348298448548875 15 0.027129515437081635 14 0.02015932210229468 13 0.018922077129647826 __DUMMY__ 0.0024678674771267508 false 1.0
115 9 0.063264 4 0.057241 22 0.056977 5 0.056781 3 0.056758 8 0.056444 7 0.056294 6 0.056008 1 0.055935 2 0.055774 0 0.047664 17 0.047314 23 0.041302 18 0.039566 21 0.037235 24 0.036269 10 0.033036 19 0.032963 11 0.031053 16 0.026183 20 0.019209 15 0.014341 12 0.013004 14 0.009383 9 0.063264 4 0.057241 22 0.056977 5 0.056781 3 0.056758 8 0.056444 7 0.056294 6 0.056008 1 0.055935 2 0.055774 0 0.047664 17 0.047314 23 0.041302 18 0.039566 21 0.037235 24 0.036269 10 0.033036 19 0.032963 11 0.031053 16 0.026183 20 0.019209 15 0.014341 12 0.013004 14 0.009383 9 0.059956840688882476 22 0.05882575135317887 4 0.0506167284676406 5 0.05010868045781439 17 0.04952967727116612 6 0.049515785550281466 8 0.049281846159664945 0 0.049219033969971106 7 0.049189399350370235 3 0.04902580127808619 1 0.04893990803027288 2 0.048572634100918395 18 0.045460172926936486 21 0.041778595719364216 23 0.03973279133293945 10 0.03820837845689518 11 0.0378002396272401 19 0.03763312811847016 24 0.03411818647112144 16 0.029290811452798764 20 0.021582261463808292 12 0.0197341816819258 15 0.0168832048007515 14 0.014994383882997413 13 0.007478298205418683 __DUMMY__ 0.00252327918108503 false 1.0
599 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.103366 22 0.093472 11 0.088158 19 0.077395 12 0.068061 18 0.067987 10 0.053115 24 0.052162 17 0.046329 9 0.044565 20 0.044032 0 0.043883 14 0.03918 13 0.036298 23 0.034936 16 0.034001 4 0.014884 5 0.014432 6 0.009339 3 0.008989 7 0.006769 1 0.006374 8 0.006331 2 0.005941 21 0.09207123635729361 22 0.08312641439267268 11 0.07717025672968614 19 0.07083401447962498 18 0.06483824199526013 12 0.0635378909801428 24 0.050391249875996365 10 0.05001415770764528 20 0.044589903485722844 17 0.043949498363596025 9 0.042656340498185584 0 0.040595193521255526 14 0.03955946088899241 23 0.038664437557430785 13 0.03780672775550404 16 0.032602339575328744 4 0.019415142862383328 5 0.018934147033737206 6 0.014748472816701885 3 0.013935061334486392 7 0.012319298367884686 8 0.012052017235147336 1 0.011972618995500334 2 0.011542498076675243 15 0.007383994100088262 __DUMMY__ 0.005289385013057365 false 1.0
116 21 0.108119 22 0.095669 19 0.093491 11 0.082774 24 0.082049 18 0.080327 20 0.079342 12 0.061597 23 0.047168 10 0.042903 14 0.03831 17 0.038187 9 0.033089 16 0.030543 13 0.02131 0 0.019209 4 0.012058 5 0.010939 15 0.00833 3 0.006747 6 0.003048 7 0.001858 8 0.001738 1 0.001194 21 0.108119 22 0.095669 19 0.093491 11 0.082774 24 0.082049 18 0.080327 20 0.079342 12 0.061597 23 0.047168 10 0.042903 14 0.03831 17 0.038187 9 0.033089 16 0.030543 13 0.02131 0 0.019209 4 0.012058 5 0.010939 15 0.00833 3 0.006747 6 0.003048 7 0.001858 8 0.001738 1 0.001194 21 0.0902823763048116 22 0.08259306044922148 19 0.07948378589015354 18 0.07190054978869634 11 0.07080088357594663 24 0.06599064934117901 20 0.06433923174589364 12 0.055544549646470154 23 0.045431452290193554 10 0.044675322369000216 17 0.04077913408031666 14 0.037542666712611125 9 0.03742215929670983 16 0.03245524522788649 0 0.027512131777361653 13 0.02582737772643695 4 0.019193129875596463 5 0.01837997264735446 3 0.01465208266026023 15 0.014345030033007616 6 0.012752208316112696 7 0.011438898473080586 8 0.011362016500017514 1 0.010959610230123311 2 0.010187739441261019 __DUMMY__ 0.00414873560029701 false 1.0
358 20 0.10078 24 0.095697 21 0.095006 19 0.088509 22 0.083811 18 0.083195 11 0.067281 23 0.054435 12 0.047713 10 0.034441 14 0.033538 9 0.029103 17 0.025521 4 0.021863 5 0.020542 3 0.018822 16 0.017152 15 0.016407 7 0.012197 8 0.01202 6 0.011381 1 0.011374 2 0.009874 13 0.009335 20 0.10078 24 0.095697 21 0.095006 19 0.088509 22 0.083811 18 0.083195 11 0.067281 23 0.054435 12 0.047713 10 0.034441 14 0.033538 9 0.029103 17 0.025521 4 0.021863 5 0.020542 3 0.018822 16 0.017152 15 0.016407 7 0.012197 8 0.01202 6 0.011381 1 0.011374 2 0.009874 13 0.009335 21 0.08050246021733716 22 0.07497901042816213 19 0.07339149993099561 18 0.07188879033444978 20 0.07075252864556245 24 0.06890656653554136 11 0.06262090324615978 23 0.047887730916747986 12 0.04768604644595114 10 0.041754868999980446 9 0.03692949076462683 17 0.03512064549799462 14 0.034861449786821166 4 0.025675604199352418 16 0.025156551371937855 5 0.02480240687558576 3 0.02221108401270261 13 0.02102551247242869 0 0.02069707972566317 6 0.019028388124181225 7 0.018550481533461758 15 0.018534833176724972 8 0.01847168833359132 1 0.018034324804073763 2 0.017168868335121004 __DUMMY__ 0.003361185284845047 false 1.0
359 21 0.09581 12 0.094339 13 0.074289 23 0.070735 11 0.066524 24 0.062965 22 0.061973 19 0.043144 14 0.043115 4 0.036414 6 0.0348 5 0.034227 20 0.032451 7 0.028795 8 0.028706 1 0.027929 2 0.026429 17 0.026126 18 0.024822 3 0.02435 9 0.0186 16 0.018273 0 0.018185 15 0.007001 21 0.09581 12 0.094339 13 0.074289 23 0.070735 11 0.066524 24 0.062965 22 0.061973 19 0.043144 14 0.043115 4 0.036414 6 0.0348 5 0.034227 20 0.032451 7 0.028795 8 0.028706 1 0.027929 2 0.026429 17 0.026126 18 0.024822 3 0.02435 9 0.0186 16 0.018273 0 0.018185 15 0.007001 21 0.08675892154283084 12 0.08004343805234831 22 0.06288008953460976 11 0.06276386151195666 13 0.062043393209849425 23 0.059295468399515106 24 0.056299920474214976 19 0.052388685938710176 14 0.043571069180942494 18 0.04212900097947637 20 0.040721091523620814 17 0.03191422735059769 4 0.030493104985021488 5 0.029199061454979 6 0.02814927636530595 9 0.026849991229320108 0 0.025267360134160068 16 0.02441860403155301 7 0.02374291764011761 8 0.02365713766318721 1 0.02320409104841415 2 0.022307868067424817 3 0.021703842678362097 10 0.021683005095408648 15 0.01293716507187245 __DUMMY__ 0.0055774068362007085 false 1.0
117 9 0.074234 22 0.062801 0 0.058554 5 0.056351 4 0.056215 6 0.055681 8 0.055662 7 0.055468 1 0.055373 3 0.055051 2 0.055049 17 0.052921 18 0.047688 10 0.046673 11 0.036453 21 0.034679 23 0.030733 19 0.02752 16 0.02137 24 0.020676 15 0.015162 14 0.011896 12 0.007733 20 0.006058 9 0.074234 22 0.062801 0 0.058554 5 0.056351 4 0.056215 6 0.055681 8 0.055662 7 0.055468 1 0.055373 3 0.055051 2 0.055049 17 0.052921 18 0.047688 10 0.046673 11 0.036453 21 0.034679 23 0.030733 19 0.02752 16 0.02137 24 0.020676 15 0.015162 14 0.011896 12 0.007733 20 0.006058 9 0.06688908485281199 22 0.060226216282049175 0 0.055629111850348495 17 0.05256057307093801 4 0.05240868327988718 5 0.052186737950053276 6 0.0519174645612915 8 0.05157968189309163 7 0.05147868930053109 1 0.051369705477444676 2 0.05088634449228563 3 0.05068794049893087 18 0.047955770237319915 10 0.04466690841622152 11 0.038401302375491934 21 0.03726157598461335 23 0.0343275823093014 19 0.032206220395834366 16 0.026340864128648316 24 0.024717634231985953 15 0.017191284575826856 14 0.014453802587474404 12 0.014306634196529422 20 0.012716173546906349 13 0.005591690118295756 __DUMMY__ 0.002042323385886951 false 1.0
118 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.06634990373153786 22 0.058046040801619424 4 0.05449413726134323 6 0.05398369892219664 0 0.05380170188041574 5 0.053728508615078954 7 0.053671946020891134 8 0.05366284501383647 1 0.05330735423145515 2 0.052815944418759406 3 0.052650137460484366 17 0.05034788894826365 18 0.04641308153486875 10 0.043920191585083285 23 0.036490717509990875 21 0.03539103729625068 11 0.0352454944057379 19 0.02947873005433794 24 0.02556047227020964 16 0.024141620588001626 15 0.017680140134435154 14 0.014955323254142162 20 0.013108457894932351 12 0.01290745669291661 13 0.005698072788785762 __DUMMY__ 0.002149096684425496 false 1.0
119 19 0.101622 20 0.100032 21 0.091946 24 0.084712 18 0.078356 12 0.071585 22 0.067228 23 0.058401 11 0.054001 16 0.052446 14 0.046184 17 0.039138 13 0.037643 10 0.035322 15 0.032423 9 0.017847 5 0.008387 4 0.008025 0 0.007971 3 0.004943 6 0.001248 7 2.86E-4 8 1.8E-4 1 7.5E-5 19 0.101622 20 0.100032 21 0.091946 24 0.084712 18 0.078356 12 0.071585 22 0.067228 23 0.058401 11 0.054001 16 0.052446 14 0.046184 17 0.039138 13 0.037643 10 0.035322 15 0.032423 9 0.017847 5 0.008387 4 0.008025 0 0.007971 3 0.004943 6 0.001248 7 2.86E-4 8 1.8E-4 1 7.5E-5 19 0.08735095834090383 20 0.08247384801171953 21 0.08110432516736 18 0.07359159806101728 24 0.07024824588518803 22 0.06447535548800976 12 0.06263862823717527 23 0.053262021642195775 11 0.052868416941862666 16 0.04641645326766528 14 0.04480863519539942 10 0.040906107128880605 17 0.04054619860885799 13 0.037204302301343486 15 0.031589348149474714 9 0.025628226871243463 0 0.01829459681047671 4 0.014659344532642166 5 0.01453877422807298 3 0.011402786156413049 6 0.009314850602057865 7 0.008233325748349283 8 0.008166635607417363 1 0.00797346671781548 2 0.007758671620371266 __DUMMY__ 0.0045448786780865995 false 1.0
10 19 0.06003 22 0.059333 24 0.05489 23 0.054449 18 0.051572 20 0.04913 21 0.047613 9 0.046616 3 0.043592 4 0.043313 5 0.042214 17 0.040196 8 0.040139 7 0.039978 2 0.039415 1 0.039354 6 0.038597 16 0.037646 10 0.036529 11 0.035039 0 0.029562 15 0.029497 14 0.022749 12 0.018546 19 0.06003 22 0.059333 24 0.05489 23 0.054449 18 0.051572 20 0.04913 21 0.047613 9 0.046616 3 0.043592 4 0.043313 5 0.042214 17 0.040196 8 0.040139 7 0.039978 2 0.039415 1 0.039354 6 0.038597 16 0.037646 10 0.036529 11 0.035039 0 0.029562 15 0.029497 14 0.022749 12 0.018546 22 0.06110724032337564 19 0.06016830361246308 18 0.056806099169162606 21 0.054989955340068494 24 0.051097337761641215 23 0.05033718992519754 20 0.048643943094708 9 0.04486265078663202 11 0.04234300527524536 10 0.041780331082213115 17 0.040574961050625705 4 0.037305652514896225 5 0.03653630923893661 3 0.03597909152787263 16 0.034695101407487626 8 0.033434755552522975 7 0.03336727401898825 6 0.03314907714118658 1 0.032940128344341554 2 0.032808934279533304 0 0.031801524526804105 12 0.029977414909865763 14 0.02983423135392698 15 0.027848934948977347 13 0.013717256228786471 __DUMMY__ 0.0038932965845406837 false 1.0
11 10 0.078148 9 0.065776 22 0.06309 18 0.062862 11 0.057828 14 0.057035 21 0.053998 0 0.051362 13 0.045619 4 0.039155 5 0.039095 6 0.03683 3 0.036056 1 0.0353 2 0.035294 7 0.03517 8 0.035141 17 0.032426 12 0.032223 15 0.031716 19 0.027473 23 0.024806 24 0.011865 20 0.011732 10 0.078148 9 0.065776 22 0.06309 18 0.062862 11 0.057828 14 0.057035 21 0.053998 0 0.051362 13 0.045619 4 0.039155 5 0.039095 6 0.03683 3 0.036056 1 0.0353 2 0.035294 7 0.03517 8 0.035141 17 0.032426 12 0.032223 15 0.031716 19 0.027473 23 0.024806 24 0.011865 20 0.011732 10 0.06897380152612487 18 0.06416671497137126 22 0.06295420346283416 9 0.05743876011998531 11 0.05730935759448693 21 0.05709560200463564 14 0.05076146756681523 0 0.048650747143524624 13 0.04319502951491323 19 0.03943784023352738 12 0.03883922836865755 17 0.03845807295851371 4 0.034329351936533734 5 0.03406180631767733 6 0.03218713655206145 3 0.030488682020296556 7 0.03025496105902878 8 0.030238378160330183 1 0.030234853259422885 23 0.030126151007741422 2 0.030009706216424837 15 0.029632973362257838 20 0.023127030866178705 24 0.021069286474479674 16 0.01375890751164821 __DUMMY__ 0.0031999497905285954 false 1.0
12 10 0.081965 9 0.074416 18 0.071128 22 0.06761 0 0.058848 11 0.048274 17 0.047515 14 0.046682 15 0.043665 19 0.040192 4 0.039883 3 0.039584 5 0.039436 8 0.038102 7 0.037894 21 0.037888 1 0.037669 2 0.03712 6 0.037101 23 0.019408 16 0.017131 20 0.015177 13 0.012912 24 0.0104 10 0.081965 9 0.074416 18 0.071128 22 0.06761 0 0.058848 11 0.048274 17 0.047515 14 0.046682 15 0.043665 19 0.040192 4 0.039883 3 0.039584 5 0.039436 8 0.038102 7 0.037894 21 0.037888 1 0.037669 2 0.03712 6 0.037101 23 0.019408 16 0.017131 20 0.015177 13 0.012912 24 0.0104 10 0.06932473829098389 18 0.06719117585202455 22 0.06405378729642618 9 0.06394492992146367 0 0.05334669087314299 11 0.04833441057283711 17 0.04794191339779399 19 0.044811108521858364 21 0.0440739048752439 14 0.0412741199891037 4 0.03748644718798819 5 0.03701467170060892 15 0.03639595308644666 3 0.035818489046563956 6 0.03525204309946129 8 0.03517176956945781 7 0.03506492446113207 1 0.034870245064178934 2 0.03436417508392572 23 0.027507644615832817 16 0.024007315647606546 20 0.023935189788413715 24 0.020092190266168816 13 0.0197317504588471 12 0.015951764759029083 __DUMMY__ 0.0030386465734598424 false 1.0
13 10 0.081661 9 0.075229 18 0.071661 22 0.067671 0 0.058074 11 0.048021 17 0.04789 14 0.046829 15 0.043284 19 0.040881 4 0.040088 5 0.039577 3 0.039568 21 0.0383 8 0.038067 7 0.037725 1 0.03769 2 0.0371 6 0.036988 23 0.019572 16 0.017082 20 0.015002 13 0.011838 24 0.010203 10 0.081661 9 0.075229 18 0.071661 22 0.067671 0 0.058074 11 0.048021 17 0.04789 14 0.046829 15 0.043284 19 0.040881 4 0.040088 5 0.039577 3 0.039568 21 0.0383 8 0.038067 7 0.037725 1 0.03769 2 0.0371 6 0.036988 23 0.019572 16 0.017082 20 0.015002 13 0.011838 24 0.010203 10 0.06918389576275286 18 0.06743802615248375 9 0.0643214755312018 22 0.06408201234915761 0 0.0529881554292028 11 0.048217200567474985 17 0.048115588252604834 19 0.04513022716601916 21 0.044264719631717415 14 0.04134219011921752 4 0.037581384217977035 5 0.037079964650687726 15 0.03621946001401897 3 0.03581106138111236 6 0.035199686056570874 8 0.03515554155246438 7 0.034986628743784894 1 0.034879955947977964 2 0.0343548953234489 23 0.027583595389241336 16 0.023984608111618514 20 0.023854120073294342 24 0.020000932103510446 13 0.019234272936180345 12 0.015951757370296665 __DUMMY__ 0.0030386451659825645 false 1.0
14 23 0.08536 24 0.062803 4 0.059471 6 0.05938 5 0.059247 7 0.058489 8 0.058257 2 0.057892 1 0.057604 3 0.057275 20 0.051452 12 0.041708 19 0.03936 16 0.036375 21 0.035887 9 0.031061 17 0.030482 22 0.026226 18 0.025092 13 0.023652 0 0.017456 15 0.016253 14 0.006769 10 0.002449 23 0.08536 24 0.062803 4 0.059471 6 0.05938 5 0.059247 7 0.058489 8 0.058257 2 0.057892 1 0.057604 3 0.057275 20 0.051452 12 0.041708 19 0.03936 16 0.036375 21 0.035887 9 0.031061 17 0.030482 22 0.026226 18 0.025092 13 0.023652 0 0.017456 15 0.016253 14 0.006769 10 0.002449 23 0.0708491726765462 24 0.0562298110637469 21 0.049846043420252804 20 0.04961128456272936 12 0.04824423543802455 19 0.048012546755755996 4 0.046383144871435515 5 0.04600462225113371 6 0.04522781393761303 7 0.04368444529090395 8 0.04350829789215286 1 0.0431380631810391 2 0.04305052841534751 3 0.04290781878141657 22 0.04065061146011492 18 0.03982065899249059 17 0.034689768664881375 16 0.03455748217123444 9 0.03319947498984153 13 0.03149202629525539 0 0.02397957898668082 11 0.02283184446869445 14 0.02058239142216059 10 0.019317486542864786 15 0.018855701508872603 __DUMMY__ 0.003325145958810452 false 1.0
15 9 0.062734 3 0.055765 8 0.054657 7 0.054531 4 0.054425 1 0.054058 2 0.053915 5 0.053795 6 0.052874 22 0.051012 17 0.045967 0 0.045219 18 0.044402 10 0.043429 23 0.038088 15 0.036611 19 0.034114 24 0.032189 16 0.029813 21 0.027066 11 0.026156 20 0.024439 14 0.02342 12 0.001322 9 0.062734 3 0.055765 8 0.054657 7 0.054531 4 0.054425 1 0.054058 2 0.053915 5 0.053795 6 0.052874 22 0.051012 17 0.045967 0 0.045219 18 0.044402 10 0.043429 23 0.038088 15 0.036611 19 0.034114 24 0.032189 16 0.029813 21 0.027066 11 0.026156 20 0.024439 14 0.02342 12 0.001322 9 0.05998005249427477 22 0.05453673716474733 4 0.04952643762655795 3 0.04903251446590943 5 0.04895176548553115 8 0.04881055741189902 7 0.04873588686282838 18 0.04859028601676413 1 0.04843633725625821 6 0.04825235570955365 17 0.04815069281321277 2 0.048075736326947435 0 0.047417195905237595 10 0.04472239368505152 23 0.03821968464914903 19 0.03776489297360159 21 0.03492277902566512 11 0.033724397897849465 24 0.0312859232167911 16 0.030493522874863444 15 0.029919072355620267 20 0.024640846538590663 14 0.023133157703199576 12 0.012399996802870041 13 0.007495253096364906 __DUMMY__ 0.0027815236406614195 false 1.0
16 10 0.087849 18 0.08733 9 0.065199 22 0.062672 14 0.051217 21 0.049297 23 0.046171 19 0.045472 0 0.044671 11 0.03817 5 0.036677 4 0.03662 13 0.0351 17 0.034152 6 0.03338 15 0.032596 7 0.030737 8 0.030605 3 0.030593 1 0.030185 2 0.02964 20 0.026218 12 0.023521 24 0.011929 10 0.087849 18 0.08733 9 0.065199 22 0.062672 14 0.051217 21 0.049297 23 0.046171 19 0.045472 0 0.044671 11 0.03817 5 0.036677 4 0.03662 13 0.0351 17 0.034152 6 0.03338 15 0.032596 7 0.030737 8 0.030605 3 0.030593 1 0.030185 2 0.02964 20 0.026218 12 0.023521 24 0.011929 18 0.07552474843770629 10 0.0708745388681564 22 0.06086929650748419 9 0.05456910208652506 21 0.05383031880472018 19 0.050597010578821454 14 0.046761786638073725 11 0.045278365545939316 23 0.043454432038141554 0 0.042989345055260295 17 0.03929186435018972 13 0.0364843682970701 12 0.034317116739123577 20 0.034094201617161084 4 0.03292451062899439 5 0.0327097181527917 15 0.03149673000761882 6 0.030280311582747476 7 0.028093337301772908 8 0.028012026909912304 3 0.028004539227032846 1 0.027726266918668755 2 0.027280506422537328 24 0.02434313580395648 16 0.01665611658565664 __DUMMY__ 0.0035363048939375656 false 1.0
17 20 0.103664 19 0.102886 21 0.084758 18 0.081588 24 0.078623 12 0.071376 23 0.065686 22 0.061617 16 0.051307 14 0.049537 11 0.049087 10 0.043449 13 0.041582 17 0.033674 15 0.032653 9 0.013411 4 0.008572 5 0.008545 0 0.008221 3 0.005617 6 0.001917 7 7.89E-4 8 7.57E-4 2 6.85E-4 20 0.103664 19 0.102886 21 0.084758 18 0.081588 24 0.078623 12 0.071376 23 0.065686 22 0.061617 16 0.051307 14 0.049537 11 0.049087 10 0.043449 13 0.041582 17 0.033674 15 0.032653 9 0.013411 4 0.008572 5 0.008545 0 0.008221 3 0.005617 6 0.001917 7 7.89E-4 8 7.57E-4 2 6.85E-4 19 0.08693360821034307 20 0.08419985147187004 18 0.07560975345719485 21 0.07338117312388355 24 0.06605036226145246 22 0.059229180221127685 12 0.05885117509042931 23 0.058362551359457 11 0.04715707681782403 14 0.0465236114688777 10 0.04631769313512053 16 0.04491318626834753 13 0.037376893728394534 17 0.03670210418868057 15 0.03429127085508548 9 0.024051919466020547 0 0.0175685451839936 4 0.016640873166990155 5 0.016359209177797346 3 0.013840590184448151 6 0.011299682598104186 7 0.010366797600308012 8 0.010350585368599818 2 0.01007965678741574 1 0.009874498214043017 __DUMMY__ 0.0036681505941909055 false 1.0
18 3 0.060626 4 0.057843 5 0.057273 8 0.057014 7 0.056881 1 0.056612 2 0.056293 9 0.055866 6 0.053987 23 0.049615 24 0.047175 22 0.046602 15 0.042062 18 0.041236 10 0.037802 20 0.035345 19 0.033247 14 0.030007 17 0.029115 21 0.028741 0 0.027461 11 0.021885 16 0.01616 13 0.001155 3 0.060626 4 0.057843 5 0.057273 8 0.057014 7 0.056881 1 0.056612 2 0.056293 9 0.055866 6 0.053987 23 0.049615 24 0.047175 22 0.046602 15 0.042062 18 0.041236 10 0.037802 20 0.035345 19 0.033247 14 0.030007 17 0.029115 21 0.028741 0 0.027461 11 0.021885 16 0.01616 13 0.001155 22 0.054587787370223316 18 0.052651739609002116 9 0.050012481257209467 19 0.046599396934598344 23 0.04577469354448703 21 0.04561416187781059 24 0.04525887623711944 10 0.04376254104482322 4 0.04338446173113403 3 0.043070184487139125 5 0.04284894028618788 20 0.04097923526122387 8 0.040850292345486594 7 0.04078023015551478 1 0.04053829739996132 2 0.04018234606299892 6 0.03999188724262724 17 0.036687567196903054 11 0.036230116162386604 15 0.0353109181158679 14 0.034973887173327854 0 0.03259741687994645 16 0.024915458700888144 12 0.021878261178950965 13 0.016685293483949547 __DUMMY__ 0.0038335282602321072 false 1.0
19 10 0.09498 18 0.079236 9 0.070809 22 0.068256 0 0.066389 11 0.063729 14 0.058009 17 0.049698 21 0.044969 19 0.041267 15 0.040559 13 0.035845 4 0.029909 5 0.029837 6 0.028377 3 0.027235 7 0.026985 8 0.026929 2 0.026867 1 0.026736 12 0.020547 16 0.017997 20 0.013885 23 0.010948 10 0.09498 18 0.079236 9 0.070809 22 0.068256 0 0.066389 11 0.063729 14 0.058009 17 0.049698 21 0.044969 19 0.041267 15 0.040559 13 0.035845 4 0.029909 5 0.029837 6 0.028377 3 0.027235 7 0.026985 8 0.026929 2 0.026867 1 0.026736 12 0.020547 16 0.017997 20 0.013885 23 0.010948 10 0.07850209486698344 18 0.07376688675147214 22 0.06546609822884523 9 0.06131213763205877 11 0.05883454332377273 0 0.05771441470982147 21 0.049808685061987816 14 0.04950824850197971 17 0.049310039974470025 19 0.04723373157419247 15 0.03548543517528374 13 0.03428400457413315 4 0.029969151565724068 5 0.02968437383418351 12 0.028876851457132473 6 0.0283090828396339 7 0.026797366498779205 8 0.026782806079025032 3 0.026763156813583027 1 0.0265911204320295 2 0.026417857502204004 16 0.024803011633468888 20 0.02433470364488985 23 0.022256216429615776 24 0.014148548321306804 __DUMMY__ 0.0030394325734231535 false 1.0
360 17 0.084266 0 0.082518 16 0.071707 9 0.053416 11 0.052553 22 0.052392 18 0.047256 6 0.04571 10 0.043179 8 0.042738 7 0.042616 19 0.042427 2 0.04229 1 0.042237 4 0.040742 5 0.03999 3 0.036443 23 0.028825 12 0.027742 21 0.026676 15 0.021812 13 0.011653 20 0.010522 24 0.010292 17 0.084266 0 0.082518 16 0.071707 9 0.053416 11 0.052553 22 0.052392 18 0.047256 6 0.04571 10 0.043179 8 0.042738 7 0.042616 19 0.042427 2 0.04229 1 0.042237 4 0.040742 5 0.03999 3 0.036443 23 0.028825 12 0.027742 21 0.026676 15 0.021812 13 0.011653 20 0.010522 24 0.010292 17 0.07416965456674385 0 0.07095810729583864 16 0.06111026218787926 22 0.05384898066304018 9 0.05277779727845751 18 0.04943568896595299 11 0.04872201280139081 19 0.04431329645471121 6 0.04373297205030935 10 0.04254389302791697 8 0.04149835770644278 7 0.04139001151563092 1 0.04115314140981358 2 0.04089587671975853 4 0.04063721658330426 5 0.04002800780671292 3 0.03687725514152922 21 0.03291599820505485 23 0.03273137863454334 12 0.028595240756245872 15 0.022075969631742104 24 0.018780186433019604 20 0.01773221649786335 13 0.013597638344037323 14 0.007042627670463372 __DUMMY__ 0.0024362116515973553 false 1.0
361 17 0.062209 9 0.05801 0 0.056941 22 0.053934 8 0.050566 7 0.050357 6 0.050097 1 0.050045 2 0.049647 4 0.049476 3 0.048974 5 0.048747 16 0.048245 18 0.042849 19 0.040725 11 0.036382 10 0.03475 23 0.034368 24 0.031049 21 0.030907 15 0.026919 20 0.022789 12 0.012687 14 0.009328 17 0.062209 9 0.05801 0 0.056941 22 0.053934 8 0.050566 7 0.050357 6 0.050097 1 0.050045 2 0.049647 4 0.049476 3 0.048974 5 0.048747 16 0.048245 18 0.042849 19 0.040725 11 0.036382 10 0.03475 23 0.034368 24 0.031049 21 0.030907 15 0.026919 20 0.022789 12 0.012687 14 0.009328 17 0.059151768163388796 9 0.05607929462560303 22 0.05556092163143654 0 0.05491857392318741 18 0.047534598416170755 6 0.04596738096536383 4 0.04574832279467172 8 0.04573792325163566 7 0.045590925460476835 1 0.04535295566482453 5 0.04513560441622604 2 0.044922511860879075 16 0.04425058879804401 3 0.04423283551288671 19 0.04257122136214722 11 0.039687437152986726 10 0.03915764580712796 21 0.03640586734000968 23 0.03597358115060168 24 0.030840680056419236 15 0.025982326625341223 20 0.024632608588640827 12 0.01942457002417111 14 0.01493224174000867 13 0.007686392387448448 __DUMMY__ 0.0025212222803022376 false 1.0
362 17 0.062331 0 0.05798 9 0.057837 22 0.054763 8 0.049712 7 0.049577 6 0.049281 1 0.049182 2 0.048907 4 0.048705 16 0.048287 3 0.048232 5 0.047753 18 0.044465 19 0.040933 11 0.036645 10 0.03608 23 0.035145 21 0.031108 24 0.030881 15 0.026925 20 0.023592 12 0.012512 14 0.009164 17 0.062331 0 0.05798 9 0.057837 22 0.054763 8 0.049712 7 0.049577 6 0.049281 1 0.049182 2 0.048907 4 0.048705 16 0.048287 3 0.048232 5 0.047753 18 0.044465 19 0.040933 11 0.036645 10 0.03608 23 0.035145 21 0.031108 24 0.030881 15 0.026925 20 0.023592 12 0.012512 14 0.009164 17 0.05920725814947642 9 0.056000862145631235 22 0.055937351670421236 0 0.05539033346110048 18 0.048268276897946015 6 0.04559703670586328 4 0.04539840613711139 8 0.0453503282646137 7 0.04523692291716875 1 0.04496127437882769 5 0.044684454558621765 2 0.044586666325816 16 0.04426973528230889 3 0.04389608081439574 19 0.04266572141813523 11 0.03980689952773759 10 0.03976147779079515 21 0.0364971785119671 23 0.03632636993390393 24 0.030764471525356562 15 0.02598509753792141 20 0.02499717962303078 12 0.019345163074638527 14 0.01485782014424711 13 0.007686406344570356 __DUMMY__ 0.002521226858393617 false 1.0
120 3 0.060842 4 0.059763 5 0.059668 9 0.059414 7 0.058528 8 0.058457 1 0.058313 2 0.058001 6 0.057011 22 0.050876 23 0.048156 24 0.043317 18 0.037364 17 0.035768 21 0.034096 0 0.033796 19 0.03159 10 0.031239 15 0.028392 20 0.026898 11 0.022704 14 0.020016 16 0.019696 12 0.006094 3 0.060842 4 0.059763 5 0.059668 9 0.059414 7 0.058528 8 0.058457 1 0.058313 2 0.058001 6 0.057011 22 0.050876 23 0.048156 24 0.043317 18 0.037364 17 0.035768 21 0.034096 0 0.033796 19 0.03159 10 0.031239 15 0.028392 20 0.026898 11 0.022704 14 0.020016 16 0.019696 12 0.006094 9 0.0582016869370511 22 0.05436293232359537 4 0.05310957358537453 5 0.052785338847628746 3 0.05250132411987835 7 0.0515575181089887 8 0.05152147530343652 1 0.05138786532141871 6 0.051102423881439825 2 0.05093940260568109 23 0.04432931284290896 18 0.04402102378889823 17 0.04171560380970186 0 0.04039248385579342 21 0.0389803423664934 24 0.0379977954954502 10 0.03732888015917136 19 0.03568140542977235 11 0.03131929455916644 20 0.025893926081010224 15 0.02473629847030271 16 0.02388738446963441 14 0.02106999919412837 12 0.015112705841684978 13 0.007432038943631934 __DUMMY__ 0.0026319636577583822 false 1.0
121 22 0.096292 21 0.078103 11 0.072762 9 0.066447 18 0.056383 19 0.055652 0 0.05053 10 0.049914 17 0.048218 24 0.041604 4 0.036395 5 0.036038 3 0.034042 6 0.030677 7 0.030415 8 0.030326 23 0.029971 1 0.029851 2 0.029794 14 0.025387 12 0.024037 16 0.022917 20 0.017714 15 0.006533 22 0.096292 21 0.078103 11 0.072762 9 0.066447 18 0.056383 19 0.055652 0 0.05053 10 0.049914 17 0.048218 24 0.041604 4 0.036395 5 0.036038 3 0.034042 6 0.030677 7 0.030415 8 0.030326 23 0.029971 1 0.029851 2 0.029794 14 0.025387 12 0.024037 16 0.022917 20 0.017714 15 0.006533 22 0.08116951201765712 21 0.06916749263121962 11 0.06363422520178956 9 0.05838575890986686 18 0.056649070014687435 19 0.053963888923383434 0 0.048422772460235734 17 0.048378749483170794 10 0.048193706260577354 24 0.039792968677650364 4 0.035716565852095594 5 0.03526560888820077 23 0.03454100024484896 3 0.03269306440651016 6 0.03181490008786265 12 0.03174038271635041 7 0.03093616791536744 8 0.03087668875851828 1 0.03055050079384153 2 0.030247738714729838 16 0.02792710525546594 14 0.0268775941885112 20 0.02530346152320999 13 0.012216458262536721 15 0.012032968129253988 __DUMMY__ 0.0035016496824584633 false 1.0
363 16 0.09147 17 0.080395 19 0.075111 0 0.061452 18 0.053806 20 0.04976 22 0.048467 11 0.044278 23 0.04315 24 0.038169 9 0.036243 21 0.034627 12 0.033234 10 0.033218 6 0.032202 7 0.031472 8 0.031469 1 0.031114 2 0.030623 4 0.029889 5 0.029333 3 0.028168 15 0.026819 13 0.00553 16 0.09147 17 0.080395 19 0.075111 0 0.061452 18 0.053806 20 0.04976 22 0.048467 11 0.044278 23 0.04315 24 0.038169 9 0.036243 21 0.034627 12 0.033234 10 0.033218 6 0.032202 7 0.031472 8 0.031469 1 0.031114 2 0.030623 4 0.029889 5 0.029333 3 0.028168 15 0.026819 13 0.00553 16 0.07125219163801456 17 0.07000265081360187 19 0.06567655090501104 0 0.0567253455984485 18 0.0555048143692087 22 0.052790789163791325 11 0.04625208155228341 20 0.043281383217821316 23 0.04145039837395924 21 0.041423252815151274 9 0.040907077709803834 10 0.038522896853522406 24 0.03638125701653352 12 0.035385580047124304 6 0.03268089361883057 4 0.03156027160316162 8 0.03152439576822411 7 0.031486432143150424 1 0.03123504318159838 5 0.0310455644493166 2 0.030770012805886367 3 0.028989607269361183 15 0.026100610485204713 13 0.013840002930924562 14 0.011161693485342938 __DUMMY__ 0.004049202184723266 false 1.0
122 22 0.067477 9 0.062284 18 0.047947 3 0.047454 21 0.047349 4 0.047056 5 0.046436 17 0.045576 7 0.045097 8 0.044934 0 0.044819 1 0.044522 2 0.044324 19 0.044005 10 0.043856 6 0.043758 11 0.043104 24 0.038531 23 0.036508 16 0.028236 15 0.026847 14 0.025008 20 0.024658 12 0.010213 22 0.067477 9 0.062284 18 0.047947 3 0.047454 21 0.047349 4 0.047056 5 0.046436 17 0.045576 7 0.045097 8 0.044934 0 0.044819 1 0.044522 2 0.044324 19 0.044005 10 0.043856 6 0.043758 11 0.043104 24 0.038531 23 0.036508 16 0.028236 15 0.026847 14 0.025008 20 0.024658 12 0.010213 22 0.06362242860397421 9 0.059285333589809835 18 0.050277210860450075 17 0.04857775711749827 0 0.04768344354994527 21 0.04632718744277051 4 0.04526010405477642 5 0.04468898863775674 10 0.04444889771888039 3 0.04415539699322037 11 0.04358685536762237 19 0.04358125811127699 7 0.043343114927255566 8 0.04327928143973139 6 0.04311847794001243 1 0.042988962893204995 2 0.04260664937772439 23 0.037392998323054816 24 0.03495423850394047 16 0.03060988245664903 20 0.024886705288513097 15 0.023695698559419855 14 0.02314416191445811 12 0.018092328782439302 13 0.007541953778863856 __DUMMY__ 0.0028506837667512156 false 1.0
364 16 0.078375 17 0.074419 0 0.060405 19 0.05779 22 0.04465 18 0.044543 23 0.043052 6 0.041149 11 0.040805 8 0.040278 7 0.039966 1 0.039807 2 0.039573 20 0.039477 9 0.039188 4 0.038028 5 0.037927 3 0.036321 24 0.036125 12 0.034075 21 0.03154 10 0.028105 15 0.024019 13 0.010381 16 0.078375 17 0.074419 0 0.060405 19 0.05779 22 0.04465 18 0.044543 23 0.043052 6 0.041149 11 0.040805 8 0.040278 7 0.039966 1 0.039807 2 0.039573 20 0.039477 9 0.039188 4 0.038028 5 0.037927 3 0.036321 24 0.036125 12 0.034075 21 0.03154 10 0.028105 15 0.024019 13 0.010381 17 0.06845704767820046 16 0.06441319108707602 0 0.05852118016715631 19 0.05346799293826096 22 0.050128468677950726 18 0.04891773986653565 9 0.04469843739299724 11 0.04293661393006292 23 0.040497059133559124 6 0.040273806820687215 8 0.03910313226399573 7 0.03890837673726424 1 0.03876270278548503 2 0.038385860129158185 4 0.03833396541727656 5 0.038018325374249755 21 0.03642700158352728 3 0.03586893361216532 10 0.03517476250834386 20 0.03411749332601612 24 0.032925435787177 12 0.032484861304986755 15 0.023996070516753197 13 0.013569821464803677 14 0.008301997213871006 __DUMMY__ 0.0033097222824396725 false 1.0
123 8 0.073587 7 0.07303 1 0.072867 6 0.072424 4 0.072134 2 0.072067 3 0.071573 5 0.071518 9 0.059264 23 0.053723 17 0.040095 22 0.039883 24 0.038625 0 0.038108 18 0.023794 21 0.021226 16 0.019851 15 0.016948 10 0.016596 20 0.014478 19 0.014412 11 0.012439 12 0.008404 14 0.002954 8 0.073587 7 0.07303 1 0.072867 6 0.072424 4 0.072134 2 0.072067 3 0.071573 5 0.071518 9 0.059264 23 0.053723 17 0.040095 22 0.039883 24 0.038625 0 0.038108 18 0.023794 21 0.021226 16 0.019851 15 0.016948 10 0.016596 20 0.014478 19 0.014412 11 0.012439 12 0.008404 14 0.002954 4 0.05870078918379206 6 0.05869930138875459 8 0.05868425208524303 7 0.05841665733611849 1 0.05828660032601406 5 0.058142522290334044 2 0.05760088705922452 9 0.0571917161498529 3 0.0569689484081054 22 0.048205104350933434 23 0.046778836113241885 17 0.04619764489053155 0 0.04462444703439482 18 0.03661037087594453 24 0.03463017872531498 21 0.03208422916296395 10 0.02920327074785752 19 0.027310262025927373 11 0.027197844614639678 16 0.027063162883640565 20 0.01901321205161862 15 0.018267393945560043 12 0.018193382465461348 14 0.010936228927026831 13 0.00847124179491341 __DUMMY__ 0.002521515162590479 false 1.0
365 0 0.087039 17 0.079302 9 0.065857 22 0.062658 11 0.059348 10 0.056694 18 0.054071 16 0.05325 6 0.045568 8 0.042825 7 0.042476 2 0.042274 1 0.042222 4 0.041938 5 0.041332 19 0.037718 3 0.037472 21 0.03253 12 0.024267 23 0.020377 13 0.011858 15 0.011754 14 0.003977 24 0.003191 0 0.087039 17 0.079302 9 0.065857 22 0.062658 11 0.059348 10 0.056694 18 0.054071 16 0.05325 6 0.045568 8 0.042825 7 0.042476 2 0.042274 1 0.042222 4 0.041938 5 0.041332 19 0.037718 3 0.037472 21 0.03253 12 0.024267 23 0.020377 13 0.011858 15 0.011754 14 0.003977 24 0.003191 0 0.07324343139404661 17 0.06971897966927933 9 0.06167687276354245 22 0.06058192130864883 11 0.05250329618601923 18 0.05244188516735054 10 0.05047833436324339 16 0.047249349262461736 6 0.04510870836397797 8 0.04308383496098841 4 0.042987938198875426 7 0.04288676594071161 1 0.04270021675858083 5 0.04243030354942848 2 0.04241116423066291 19 0.0394475454236357 3 0.03922144714715475 21 0.03638843721475302 23 0.027725190761797334 12 0.024899149675966195 15 0.01520015586931732 24 0.014233543732971326 13 0.012577564578358003 20 0.00960001980908978 14 0.009241408386328257 __DUMMY__ 0.0019625352828107363 false 1.0
124 10 0.089534 18 0.083517 0 0.076869 22 0.076653 9 0.075365 11 0.065958 17 0.064607 19 0.050118 21 0.045692 14 0.035227 4 0.03027 5 0.030016 16 0.029747 6 0.029558 8 0.027723 7 0.027348 2 0.026876 1 0.026768 3 0.026295 15 0.02352 13 0.018784 12 0.018455 20 0.011679 23 0.009421 10 0.089534 18 0.083517 0 0.076869 22 0.076653 9 0.075365 11 0.065958 17 0.064607 19 0.050118 21 0.045692 14 0.035227 4 0.03027 5 0.030016 16 0.029747 6 0.029558 8 0.027723 7 0.027348 2 0.026876 1 0.026768 3 0.026295 15 0.02352 13 0.018784 12 0.018455 20 0.011679 23 0.009421 10 0.07404101632311674 18 0.0731586352932341 22 0.07041662020003406 9 0.06663285602698395 0 0.06598987842540692 11 0.05927539406165401 17 0.05878441934451002 19 0.048777824050840204 21 0.04774641424194834 4 0.033220525573979996 14 0.032985236411583914 5 0.032812926186826 6 0.03225892782832737 16 0.0308383631353559 8 0.030706354941903272 7 0.030515032266211706 1 0.030148401782929535 2 0.029909225462420565 3 0.029614941976644805 12 0.023850542617840708 15 0.023766842852034505 13 0.020661483632986224 23 0.02046096693325302 20 0.01859483109420106 24 0.012474051719074524 __DUMMY__ 0.002358287616698528 false 1.0
366 17 0.0726 16 0.070899 0 0.061566 19 0.051984 9 0.047157 6 0.045876 8 0.045648 22 0.045613 7 0.045393 1 0.045217 2 0.044985 18 0.044429 4 0.0435 5 0.042822 3 0.042448 23 0.04014 11 0.035913 24 0.033672 20 0.03324 10 0.031972 21 0.026009 15 0.025108 12 0.021747 13 0.002062 17 0.0726 16 0.070899 0 0.061566 19 0.051984 9 0.047157 6 0.045876 8 0.045648 22 0.045613 7 0.045393 1 0.045217 2 0.044985 18 0.044429 4 0.0435 5 0.042822 3 0.042448 23 0.04014 11 0.035913 24 0.033672 20 0.03324 10 0.031972 21 0.026009 15 0.025108 12 0.021747 13 0.002062 17 0.06584074368728982 16 0.05812321638088952 0 0.058023774342079996 22 0.05069288361227661 9 0.049505258926529815 19 0.04926152112879986 18 0.048340498166687756 6 0.04350198265418105 8 0.04277053554739771 7 0.04261216359029596 1 0.04245964331868814 4 0.042133679253150216 2 0.04207071311714033 5 0.0415458736547599 3 0.04013869815975567 11 0.03972005532977951 23 0.039328959623309526 10 0.03710734704088452 21 0.0336661499525162 24 0.03190218961643418 20 0.030394967899398728 12 0.02532610533602873 15 0.024307241851327925 13 0.0090756957224087 14 0.008811279199085623 __DUMMY__ 0.003338822888904044 false 1.0
125 9 0.064048 4 0.057295 5 0.056863 3 0.056734 7 0.05647 22 0.056441 8 0.056428 1 0.056296 6 0.056045 2 0.055754 0 0.047391 17 0.047333 23 0.04172 18 0.039479 21 0.037129 24 0.036212 19 0.032883 10 0.03281 11 0.030961 16 0.025914 20 0.019142 15 0.014481 12 0.012853 14 0.009315 9 0.064048 4 0.057295 5 0.056863 3 0.056734 7 0.05647 22 0.056441 8 0.056428 1 0.056296 6 0.056045 2 0.055754 0 0.047391 17 0.047333 23 0.04172 18 0.039479 21 0.037129 24 0.036212 19 0.032883 10 0.03281 11 0.030961 16 0.025914 20 0.019142 15 0.014481 12 0.012853 14 0.009315 9 0.06030501625437467 22 0.0585509839848764 4 0.0506938084470458 5 0.05019873418282774 6 0.04958130641228082 17 0.04949279779950607 8 0.049328193015982263 7 0.04932449404101331 1 0.04916045036888337 3 0.04907339471337421 0 0.049031260366189974 2 0.04861670659956453 18 0.04534602658810004 21 0.04171598770219173 23 0.039981497174522616 10 0.03801741527016323 11 0.037700483578582945 19 0.03755964653194973 24 0.03415314672147657 16 0.029140035713276974 20 0.021557616351443883 12 0.01964085456288415 15 0.016940133061573125 14 0.014933135405688986 13 0.007440352243619865 __DUMMY__ 0.0025165229086070136 false 1.0
367 16 0.091435 17 0.080453 19 0.075056 0 0.06152 18 0.053966 20 0.049512 22 0.048493 11 0.044221 23 0.043953 24 0.038396 9 0.036369 21 0.03485 12 0.033391 10 0.032955 6 0.031938 8 0.031362 7 0.031291 1 0.031138 2 0.030572 4 0.029682 5 0.02911 3 0.028121 15 0.026745 13 0.005472 16 0.091435 17 0.080453 19 0.075056 0 0.06152 18 0.053966 20 0.049512 22 0.048493 11 0.044221 23 0.043953 24 0.038396 9 0.036369 21 0.03485 12 0.033391 10 0.032955 6 0.031938 8 0.031362 7 0.031291 1 0.031138 2 0.030572 4 0.029682 5 0.02911 3 0.028121 15 0.026745 13 0.005472 16 0.07126135861217252 17 0.07003504020401112 19 0.06565041188964554 0 0.05674823088523299 18 0.055557488006283934 22 0.05277948420918989 11 0.04619806489475446 20 0.04318177192040408 23 0.04183261661736912 21 0.04149976134208951 9 0.04095460038260208 10 0.03837321093063571 24 0.0365020225108814 12 0.03544270978265066 6 0.03257451049371916 8 0.031492648123994826 4 0.031478092183845736 7 0.031420572198195024 1 0.03126332389111289 5 0.030956074838198604 2 0.030763875863052365 3 0.02898493061994704 15 0.02607504672763878 13 0.013791777066046014 14 0.011139087943152735 __DUMMY__ 0.00404328786317394 false 1.0
368 16 0.091558 17 0.080229 19 0.075257 0 0.06157 18 0.053925 20 0.049541 22 0.048547 11 0.044264 23 0.044034 24 0.03846 9 0.036041 21 0.034855 12 0.033374 10 0.033125 6 0.031883 8 0.031267 7 0.031183 1 0.030976 2 0.030676 4 0.029616 5 0.029187 3 0.028222 15 0.02679 13 0.005418 16 0.091558 17 0.080229 19 0.075257 0 0.06157 18 0.053925 20 0.049541 22 0.048547 11 0.044264 23 0.044034 24 0.03846 9 0.036041 21 0.034855 12 0.033374 10 0.033125 6 0.031883 8 0.031267 7 0.031183 1 0.030976 2 0.030676 4 0.029616 5 0.029187 3 0.028222 15 0.02679 13 0.005418 16 0.07131789667738245 17 0.06993235163093534 19 0.06574273343008294 0 0.05677125208036393 18 0.05553875116322465 22 0.052804335387116624 11 0.046217859535994776 20 0.04319513834807247 23 0.04186984198725792 21 0.04150211277766031 9 0.040804150178947514 10 0.038451270214336274 24 0.03653143989678355 12 0.03543495792656554 6 0.03254931795125784 8 0.031449099631145505 4 0.031447850655265806 7 0.03137105840626538 1 0.0311890313602152 5 0.03099144978949639 2 0.030811639811023236 3 0.029031315534465845 15 0.02609573139089817 13 0.01376701752909124 14 0.011139103277049475 __DUMMY__ 0.004043293429101679 false 1.0
126 22 0.100492 21 0.097894 11 0.080664 19 0.067912 18 0.0639 9 0.056137 24 0.052972 10 0.050564 12 0.043788 23 0.039169 17 0.038267 0 0.037599 14 0.035225 20 0.034517 4 0.02726 5 0.026544 3 0.023036 6 0.019547 8 0.018378 7 0.018354 1 0.017988 16 0.017555 2 0.017492 13 0.014745 22 0.100492 21 0.097894 11 0.080664 19 0.067912 18 0.0639 9 0.056137 24 0.052972 10 0.050564 12 0.043788 23 0.039169 17 0.038267 0 0.037599 14 0.035225 20 0.034517 4 0.02726 5 0.026544 3 0.023036 6 0.019547 8 0.018378 7 0.018354 1 0.017988 16 0.017555 2 0.017492 13 0.014745 21 0.08619647967481825 22 0.08551830589408747 11 0.07123433838611908 19 0.06601680970264509 18 0.06322261423012318 24 0.0505224166656894 9 0.04910964851112757 10 0.048851511611583076 12 0.04804540394114292 17 0.04105067208399274 23 0.04068000638777132 20 0.04028794887849897 0 0.03784416578654771 14 0.036343025213837456 4 0.026494641462843752 5 0.025875457680565615 16 0.02562561005956977 13 0.02411455637018779 3 0.022214465529998843 6 0.02084486658632239 7 0.019349243332556564 8 0.019319112002615962 1 0.019016052393310563 2 0.0185510113942028 15 0.009181696047023319 __DUMMY__ 0.004489940172818264 false 1.0
127 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.073594 22 0.060083 4 0.059402 6 0.058787 7 0.058763 8 0.05873 5 0.058349 1 0.058097 3 0.057849 2 0.057768 0 0.056265 17 0.049494 10 0.046455 18 0.045691 23 0.033951 21 0.032172 11 0.032133 19 0.023087 24 0.02187 16 0.017517 15 0.015278 14 0.012883 20 0.006542 12 0.005241 9 0.06632726878890184 22 0.05801944304115491 4 0.054534136510432284 6 0.05401934571446361 5 0.05376863513197872 0 0.053735930992320026 7 0.05371235944730309 8 0.05370354070594661 1 0.05334760104027846 2 0.052856224110975916 3 0.05269633991836545 17 0.050302449144652914 18 0.04635075995665629 10 0.043838730149473676 23 0.036545686113935924 21 0.035385643345980045 11 0.03519223619435477 19 0.029457309760422302 24 0.025627573772489316 16 0.024121045119272943 15 0.017679608339036014 14 0.01493626728044348 20 0.013131885051753198 12 0.012895174735897044 13 0.005671272338716369 __DUMMY__ 0.002143533294794793 false 1.0
369 17 0.08051 0 0.07658 16 0.070585 9 0.052167 22 0.050014 6 0.04813 11 0.046298 8 0.046199 7 0.045871 1 0.045628 2 0.04548 4 0.043495 5 0.043075 18 0.042765 19 0.04094 3 0.040241 10 0.036173 23 0.031917 12 0.026214 21 0.025437 15 0.023688 24 0.015091 20 0.013119 13 0.010382 17 0.08051 0 0.07658 16 0.070585 9 0.052167 22 0.050014 6 0.04813 11 0.046298 8 0.046199 7 0.045871 1 0.045628 2 0.04548 4 0.043495 5 0.043075 18 0.042765 19 0.04094 3 0.040241 10 0.036173 23 0.031917 12 0.026214 21 0.025437 15 0.023688 24 0.015091 20 0.013119 13 0.010382 17 0.07149373228026357 0 0.06643583161177094 16 0.060862641759593515 22 0.05201185859721205 9 0.05056963173600321 18 0.047909504507516 11 0.0454941242912046 19 0.04469629045245218 6 0.04362907429346665 8 0.0418445550628396 7 0.04163680139718117 1 0.04145817329714103 2 0.041130643641070594 4 0.040793061514553274 5 0.04034365645589554 10 0.03917773770908023 3 0.0374720509027762 23 0.03490478918634677 21 0.03312920338567984 12 0.02948168172448727 15 0.024968026669954946 24 0.02228446717364729 20 0.02122986021830996 13 0.015124758443585629 14 0.009329244827927161 __DUMMY__ 0.002588598860040586 false 1.0
128 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.0672014951968946 22 0.057709963662969814 4 0.054863555669654 6 0.05433630927431253 7 0.05413957364014016 8 0.05406109845404351 5 0.054000257793159125 1 0.05395195444397898 0 0.05344628360105943 2 0.05287749271783837 3 0.0527194535813371 17 0.050695985225460226 18 0.04606987046901211 10 0.04262693311861826 23 0.03666611936716885 21 0.035659227429303206 11 0.03492978844802285 19 0.029572662163955092 24 0.025514117393988386 16 0.024021887678890477 15 0.017369630442341768 14 0.014529874963663442 12 0.012725427900092956 20 0.012496224520629822 13 0.005671277571042491 __DUMMY__ 0.0021435352724224893 false 1.0
129 9 0.074863 4 0.059987 7 0.059758 8 0.059585 1 0.059431 22 0.059389 6 0.05937 5 0.058635 3 0.057976 2 0.057894 0 0.055456 17 0.050085 18 0.045477 10 0.043828 23 0.034822 21 0.032953 11 0.031461 19 0.023492 24 0.021346 16 0.01724 15 0.014737 14 0.01196 20 0.005356 12 0.004899 9 0.074863 4 0.059987 7 0.059758 8 0.059585 1 0.059431 22 0.059389 6 0.05937 5 0.058635 3 0.057976 2 0.057894 0 0.055456 17 0.050085 18 0.045477 10 0.043828 23 0.034822 21 0.032953 11 0.031461 19 0.023492 24 0.021346 16 0.01724 15 0.014737 14 0.01196 20 0.005356 12 0.004899 9 0.06691268996369175 22 0.05769932712541078 4 0.05480402257180741 6 0.05428830893698165 7 0.054171378413255956 8 0.054097977570970485 1 0.05396300077250979 5 0.0539005919333603 0 0.05336276352102451 2 0.052914372380763484 3 0.05275494941509019 17 0.050575101058098905 18 0.04625206299023512 10 0.04262691345478452 23 0.03694749587509942 21 0.035745935509747286 11 0.034882258363625324 19 0.02964415012930444 24 0.025385864031970296 16 0.023993275954681523 15 0.01743005282035336 14 0.014510493631963798 12 0.012737415847832716 20 0.012584788488950617 13 0.005671274954878223 __DUMMY__ 0.002143534283608185 false 1.0
20 11 0.093164 22 0.090769 10 0.080318 0 0.079109 18 0.07093 9 0.068974 21 0.064717 17 0.062517 19 0.049273 12 0.032708 4 0.029454 16 0.02944 5 0.02879 6 0.027408 14 0.026602 8 0.024179 7 0.023973 1 0.023536 2 0.023441 3 0.023095 13 0.017718 23 0.016802 15 0.006951 24 0.00613 11 0.093164 22 0.090769 10 0.080318 0 0.079109 18 0.07093 9 0.068974 21 0.064717 17 0.062517 19 0.049273 12 0.032708 4 0.029454 16 0.02944 5 0.02879 6 0.027408 14 0.026602 8 0.024179 7 0.023973 1 0.023536 2 0.023441 3 0.023095 13 0.017718 23 0.016802 15 0.006951 24 0.00613 22 0.07692783434787563 11 0.07456215075780286 10 0.06822567777756838 0 0.06753227979330231 18 0.06625977289143935 9 0.06114176315040566 17 0.05869838678822092 21 0.05856683279827427 19 0.04944682726923102 12 0.03496399694106363 16 0.03320691968633549 4 0.03138951294855905 5 0.030821802064243165 6 0.030067755468911515 14 0.02851106554766494 8 0.027478881411694293 7 0.027365778963283346 1 0.027076400844712314 2 0.02678110752574296 3 0.02619707433812541 23 0.02465544196323367 13 0.023005348406209273 24 0.015945252556641105 15 0.01472729082240899 20 0.013579364858072745 __DUMMY__ 0.002865480078977877 false 1.0
21 21 0.067224 12 0.062021 22 0.059951 23 0.054906 18 0.054356 11 0.048751 9 0.045245 13 0.044159 19 0.043032 4 0.042032 24 0.04145 5 0.041042 6 0.039948 10 0.038929 8 0.036465 7 0.035976 1 0.035156 2 0.035011 3 0.034531 20 0.03409 0 0.033838 17 0.032814 14 0.027723 16 0.011351 21 0.067224 12 0.062021 22 0.059951 23 0.054906 18 0.054356 11 0.048751 9 0.045245 13 0.044159 19 0.043032 4 0.042032 24 0.04145 5 0.041042 6 0.039948 10 0.038929 8 0.036465 7 0.035976 1 0.035156 2 0.035011 3 0.034531 20 0.03409 0 0.033838 17 0.032814 14 0.027723 16 0.011351 21 0.06332049815058545 12 0.05853900179436364 22 0.055814568672053914 18 0.05395777929801985 23 0.053055127264911246 19 0.0476174965291214 11 0.04645082015683512 24 0.04357798477723058 13 0.04344550619818473 9 0.04119495948092779 20 0.040140157491315345 10 0.038604612269930255 4 0.03817201919456804 5 0.03746669972866506 17 0.036329115895709384 6 0.03630693810224557 0 0.03353392720343114 8 0.033424868411214795 7 0.033177363702268946 1 0.03273840038469867 2 0.03252362978312819 3 0.03220734228552175 14 0.03162661785166818 16 0.022040100178899295 15 0.011747526674573428 __DUMMY__ 0.0029869385199281424 false 1.0
22 10 0.069824 18 0.069009 9 0.068029 22 0.063105 0 0.0505 17 0.047026 19 0.046036 3 0.042213 4 0.041544 15 0.041422 5 0.041024 11 0.040652 8 0.040269 7 0.040192 1 0.040007 2 0.039231 6 0.038564 14 0.037908 21 0.036848 23 0.028519 20 0.026803 16 0.023312 24 0.021725 13 0.006239 10 0.069824 18 0.069009 9 0.068029 22 0.063105 0 0.0505 17 0.047026 19 0.046036 3 0.042213 4 0.041544 15 0.041422 5 0.041024 11 0.040652 8 0.040269 7 0.040192 1 0.040007 2 0.039231 6 0.038564 14 0.037908 21 0.036848 23 0.028519 20 0.026803 16 0.023312 24 0.021725 13 0.006239 18 0.06627260606189961 10 0.06384391941356003 22 0.06246166123799238 9 0.061467803823264736 0 0.049458556810381374 19 0.047528001340603754 17 0.047505905078585244 11 0.04493006843099905 21 0.04392514369872884 4 0.0384060997814123 5 0.037894021938083985 3 0.0372835468128058 14 0.037055976035593595 8 0.036304345469744106 7 0.03625986980025735 1 0.03608313296209173 6 0.035981889974782 2 0.035467840928107904 15 0.03488269210421188 23 0.031429331167280763 20 0.029228112853686396 16 0.026334267013486595 24 0.025532211575306336 13 0.01605191405138405 12 0.015495250412666396 __DUMMY__ 0.0029158312230837136 false 1.0
23 0 0.083082 17 0.078083 10 0.06746 11 0.064121 18 0.063433 16 0.061595 22 0.055505 9 0.055068 19 0.046789 12 0.040726 21 0.037284 13 0.036878 6 0.032788 8 0.029177 7 0.02912 1 0.02906 4 0.028565 2 0.028182 5 0.027753 15 0.026217 14 0.024274 3 0.022547 23 0.019637 20 0.012658 0 0.083082 17 0.078083 10 0.06746 11 0.064121 18 0.063433 16 0.061595 22 0.055505 9 0.055068 19 0.046789 12 0.040726 21 0.037284 13 0.036878 6 0.032788 8 0.029177 7 0.02912 1 0.02906 4 0.028565 2 0.028182 5 0.027753 15 0.026217 14 0.024274 3 0.022547 23 0.019637 20 0.012658 0 0.07373561856669282 17 0.07288103274238086 18 0.05962924634751869 10 0.057551524405077555 16 0.057264111622500155 11 0.05706378266654055 22 0.05664079879703228 9 0.05407363403122885 19 0.04746009535255031 21 0.038687190068884415 6 0.03573643831604725 12 0.03564177736424643 8 0.03298316814722421 7 0.032894435174684315 4 0.0328617225363645 1 0.03279939259342347 5 0.03222696155439181 2 0.032124596535822295 3 0.028000432182725372 13 0.02713088392860714 23 0.02620176581535659 15 0.024669383857508654 14 0.020030197030249157 20 0.017904284013706192 24 0.0113667513045039 __DUMMY__ 0.0024407750447320875 false 1.0
24 0 0.091034 17 0.089019 16 0.071536 11 0.062435 22 0.057186 9 0.056568 18 0.05566 10 0.054475 19 0.044756 6 0.040082 12 0.038467 8 0.035954 7 0.035742 1 0.035728 2 0.035211 4 0.034448 5 0.033913 21 0.033006 3 0.028004 13 0.023582 23 0.021592 15 0.013466 20 0.004634 14 0.003502 0 0.091034 17 0.089019 16 0.071536 11 0.062435 22 0.057186 9 0.056568 18 0.05566 10 0.054475 19 0.044756 6 0.040082 12 0.038467 8 0.035954 7 0.035742 1 0.035728 2 0.035211 4 0.034448 5 0.033913 21 0.033006 3 0.028004 13 0.023582 23 0.021592 15 0.013466 20 0.004634 14 0.003502 17 0.07911236980599225 0 0.07791013649572141 16 0.06347482758594009 22 0.05678357092862012 11 0.055176359920118476 9 0.054670971171270955 18 0.054346631743457566 10 0.04917040940784785 19 0.04602776497519632 6 0.040409308935915586 8 0.03745471571071814 7 0.03728736205298964 1 0.037215107452931134 2 0.03669540198811134 4 0.0366620961889238 5 0.03614792871939492 21 0.035512335171838647 12 0.033916736712403514 3 0.031675123944127886 23 0.027726360332766698 13 0.01912823623358547 15 0.017828909567581333 20 0.013684895369914896 24 0.011884869151896847 14 0.007736288000531768 __DUMMY__ 0.0023612824322033657 false 1.0
25 0 0.088762 17 0.079466 9 0.06544 22 0.062651 11 0.059562 10 0.057004 18 0.054769 16 0.054158 6 0.045282 8 0.042586 7 0.042371 1 0.042117 2 0.041733 4 0.041467 5 0.040937 19 0.037461 3 0.036906 21 0.032609 12 0.023859 23 0.020973 13 0.012175 15 0.011244 14 0.00358 24 0.002888 0 0.088762 17 0.079466 9 0.06544 22 0.062651 11 0.059562 10 0.057004 18 0.054769 16 0.054158 6 0.045282 8 0.042586 7 0.042371 1 0.042117 2 0.041733 4 0.041467 5 0.040937 19 0.037461 3 0.036906 21 0.032609 12 0.023859 23 0.020973 13 0.012175 15 0.011244 14 0.00358 24 0.002888 0 0.0764586732818244 17 0.07234407731386798 9 0.061267785823020386 22 0.0611356614878661 11 0.05440167143806258 18 0.05412352013367155 10 0.051933970472897446 16 0.050503205299473095 6 0.04368536992598019 8 0.04152094976951377 7 0.041365662093728106 4 0.04119819201318367 1 0.041168933114730646 19 0.04079187069982396 2 0.04069541882315675 5 0.04066919423729989 3 0.03718740213165022 21 0.036432053103193016 23 0.02665631417251 12 0.025525409318067432 15 0.015059922673165091 13 0.013088396658320258 24 0.0126020520623818 20 0.009427464884634683 14 0.008580706858348495 __DUMMY__ 0.0021761222096284096 false 1.0
26 10 0.098536 18 0.089289 9 0.074293 22 0.06858 0 0.058814 14 0.057093 11 0.05147 17 0.045107 21 0.044288 19 0.041821 15 0.041281 4 0.033117 5 0.032256 6 0.030434 13 0.029861 7 0.029283 8 0.029115 1 0.028911 3 0.028584 2 0.027601 23 0.025258 20 0.015441 12 0.01297 16 0.006595 10 0.098536 18 0.089289 9 0.074293 22 0.06858 0 0.058814 14 0.057093 11 0.05147 17 0.045107 21 0.044288 19 0.041821 15 0.041281 4 0.033117 5 0.032256 6 0.030434 13 0.029861 7 0.029283 8 0.029115 1 0.028911 3 0.028584 2 0.027601 23 0.025258 20 0.015441 12 0.01297 16 0.006595 10 0.07868984968356459 18 0.07826493770113664 22 0.06358106100068281 9 0.06039434428838649 14 0.05184651117657017 11 0.05073964977969006 0 0.05030777363962601 21 0.049665370242968326 19 0.0482657125262301 17 0.04482230401215401 15 0.03895430460116301 13 0.03360798761824424 23 0.031512355650798095 4 0.031030209287410227 5 0.030393538157483344 6 0.028625034902919948 20 0.02860767756099864 7 0.027291463445755004 8 0.027216074412058745 3 0.02704707090829915 1 0.02702097094653857 12 0.026595158389535665 2 0.026211603966495613 16 0.019093511648936416 24 0.01689656892386009 __DUMMY__ 0.0033189555284939783 false 1.0
27 10 0.081907 18 0.079837 9 0.074344 22 0.066466 0 0.051662 17 0.044924 4 0.044183 5 0.043379 14 0.042046 3 0.041226 6 0.04064 8 0.040307 1 0.040223 7 0.039985 11 0.039977 2 0.039394 15 0.039322 19 0.03773 21 0.036369 23 0.033277 20 0.015066 24 0.012425 13 0.00906 16 0.006252 10 0.081907 18 0.079837 9 0.074344 22 0.066466 0 0.051662 17 0.044924 4 0.044183 5 0.043379 14 0.042046 3 0.041226 6 0.04064 8 0.040307 1 0.040223 7 0.039985 11 0.039977 2 0.039394 15 0.039322 19 0.03773 21 0.036369 23 0.033277 20 0.015066 24 0.012425 13 0.00906 16 0.006252 18 0.07363978860103094 10 0.07046410414226412 22 0.06157911983068876 9 0.06011527938853747 0 0.04627958720256791 19 0.04600246844380416 14 0.04573961525922834 17 0.044775514069181684 21 0.04464405924847566 11 0.04387210117647028 15 0.040492441841190295 4 0.03638520269669193 5 0.03577650661676224 23 0.03542008672293266 6 0.03363251160515676 3 0.03328072539245494 8 0.03278186988994184 1 0.032632878053360306 7 0.032621535467194776 2 0.03204822994592933 20 0.02902327971297146 13 0.023734724928430602 24 0.022945574566655906 12 0.01947483473977712 16 0.019449808409380622 __DUMMY__ 0.0031881520489197733 false 1.0
28 10 0.084526 18 0.081162 9 0.069039 22 0.064436 14 0.050192 0 0.048244 19 0.048181 15 0.047162 11 0.044765 17 0.04123 21 0.038445 3 0.036997 4 0.036949 5 0.036031 8 0.034704 7 0.034688 1 0.034434 2 0.03318 6 0.03285 20 0.030654 23 0.026575 24 0.017626 16 0.014095 13 0.013835 10 0.084526 18 0.081162 9 0.069039 22 0.064436 14 0.050192 0 0.048244 19 0.048181 15 0.047162 11 0.044765 17 0.04123 21 0.038445 3 0.036997 4 0.036949 5 0.036031 8 0.034704 7 0.034688 1 0.034434 2 0.03318 6 0.03285 20 0.030654 23 0.026575 24 0.017626 16 0.014095 13 0.013835 18 0.07579055529752571 10 0.07416807010667935 22 0.06377398119876962 9 0.05980152754374382 19 0.05205896165771985 11 0.049303854218057316 14 0.04805271212633199 21 0.04783975846472522 0 0.046956494934963 17 0.04373998797955672 15 0.04023032582612077 20 0.03491983963496237 4 0.032412429406866464 5 0.03174033758780617 3 0.030765726700258806 23 0.030017256651606917 8 0.02937920664771646 7 0.029365377978746558 1 0.029156276979309583 6 0.029151341066384995 2 0.028362214783637405 13 0.024287857880161804 24 0.024241880348690188 16 0.022184460135241325 12 0.019133491092681153 __DUMMY__ 0.0031660737517363955 false 1.0
29 19 0.069841 22 0.065472 18 0.065365 20 0.058185 24 0.056483 21 0.054531 23 0.053704 10 0.049221 9 0.047555 3 0.037813 11 0.037385 4 0.03667 5 0.036269 15 0.034993 17 0.034884 14 0.034055 8 0.031935 7 0.031838 1 0.031587 2 0.031582 16 0.030736 6 0.029833 0 0.024245 12 0.015817 19 0.069841 22 0.065472 18 0.065365 20 0.058185 24 0.056483 21 0.054531 23 0.053704 10 0.049221 9 0.047555 3 0.037813 11 0.037385 4 0.03667 5 0.036269 15 0.034993 17 0.034884 14 0.034055 8 0.031935 7 0.031838 1 0.031587 2 0.031582 16 0.030736 6 0.029833 0 0.024245 12 0.015817 18 0.06822640502747873 19 0.06543791119507973 22 0.06404228078629026 21 0.05802346558542808 10 0.054753382349883944 20 0.0530301121016815 24 0.04762741191994938 23 0.046437222516314894 9 0.046037412995988236 11 0.045540843521880606 14 0.041263803803101455 17 0.03862081781845947 15 0.03503044487414758 0 0.03122320512649088 4 0.03106107399131921 16 0.03080497179475772 5 0.030627010121749034 3 0.029907812128034922 12 0.029311089745620928 8 0.026394607817278405 7 0.026355554463856398 1 0.02611131680347549 6 0.02602735798154333 2 0.02594986064479815 13 0.01845305165648256 __DUMMY__ 0.0037015732289090338 false 1.0
370 22 0.069227 19 0.0679 17 0.064904 18 0.05991 21 0.057245 16 0.053629 0 0.053481 9 0.049873 11 0.048429 23 0.044275 24 0.04217 20 0.040601 10 0.036833 4 0.035982 5 0.035488 6 0.034311 7 0.03309 12 0.033049 8 0.032938 3 0.032685 1 0.03252 2 0.032419 15 0.00555 14 0.00349 22 0.069227 19 0.0679 17 0.064904 18 0.05991 21 0.057245 16 0.053629 0 0.053481 9 0.049873 11 0.048429 23 0.044275 24 0.04217 20 0.040601 10 0.036833 4 0.035982 5 0.035488 6 0.034311 7 0.03309 12 0.033049 8 0.032938 3 0.032685 1 0.03252 2 0.032419 15 0.00555 14 0.00349 22 0.06434771499573573 19 0.06041053276553476 18 0.0588211410676795 21 0.05592684135008718 17 0.05531008227494229 9 0.048931902030044945 11 0.04792398505769178 0 0.047766884844326576 16 0.043683540163362185 23 0.04265531469049482 10 0.04217950721571628 24 0.040619637476275804 20 0.039631270378585944 4 0.035497283798344034 5 0.03499486347538877 12 0.03494466397959623 6 0.03359515650573007 7 0.03251244252125275 3 0.03249908157696157 8 0.03245970944480834 1 0.032140958077109295 2 0.03187082392348603 14 0.018313344468084303 15 0.01595143580396006 13 0.013306754459664775 __DUMMY__ 0.00370512765513595 false 1.0
371 19 0.06972 17 0.068679 22 0.066304 18 0.066269 0 0.061544 16 0.059895 9 0.054709 10 0.053714 11 0.050758 21 0.04395 20 0.037493 23 0.033791 4 0.032233 5 0.03185 6 0.031045 24 0.031035 8 0.030841 3 0.030742 7 0.030494 1 0.030268 2 0.030151 15 0.021986 12 0.01976 14 0.012768 19 0.06972 17 0.068679 22 0.066304 18 0.066269 0 0.061544 16 0.059895 9 0.054709 10 0.053714 11 0.050758 21 0.04395 20 0.037493 23 0.033791 4 0.032233 5 0.03185 6 0.031045 24 0.031035 8 0.030841 3 0.030742 7 0.030494 1 0.030268 2 0.030151 15 0.021986 12 0.01976 14 0.012768 22 0.06500512431769394 19 0.06343478349871777 18 0.06304757551970176 17 0.06150580437977681 0 0.05611892573082337 11 0.05307619000445852 10 0.051724726737994525 9 0.051600439450197426 16 0.051328572958916234 21 0.049639821905937284 20 0.03644434058169435 23 0.03564148595700996 24 0.03297145481138205 4 0.032091770821717484 5 0.03166548160954708 6 0.030800011199656526 8 0.029986121202061806 7 0.029809639454934107 3 0.029691298112446245 1 0.029597718163962637 2 0.02932901045375191 12 0.028821595958994348 15 0.02223527397557723 14 0.020128964655696715 13 0.011639248590258377 __DUMMY__ 0.0026646199470914335 false 1.0
130 9 0.063572 4 0.056995 22 0.056953 3 0.05678 5 0.056728 8 0.056297 7 0.056122 1 0.055833 2 0.055805 6 0.055715 0 0.047398 17 0.047281 23 0.041395 18 0.039773 21 0.037062 24 0.036016 10 0.033156 19 0.032939 11 0.031448 16 0.026148 20 0.019228 15 0.0147 12 0.012934 14 0.009721 9 0.063572 4 0.056995 22 0.056953 3 0.05678 5 0.056728 8 0.056297 7 0.056122 1 0.055833 2 0.055805 6 0.055715 0 0.047398 17 0.047281 23 0.041395 18 0.039773 21 0.037062 24 0.036016 10 0.033156 19 0.032939 11 0.031448 16 0.026148 20 0.019228 15 0.0147 12 0.012934 14 0.009721 9 0.06008522129928251 22 0.05878756145650012 4 0.050555396570553954 5 0.050136599665926145 17 0.04946868031758357 6 0.04942904147208367 8 0.04926795404668685 7 0.049163929446402285 3 0.049094974486192565 0 0.04903455627885681 1 0.04894671280443756 2 0.04864060391119423 18 0.04548176715576892 21 0.04168462261173932 23 0.03983113813080474 10 0.03817736692495865 11 0.03792531434306178 19 0.037585086246081305 24 0.03406225997570738 16 0.02924792467206502 20 0.021596981386584835 12 0.019677845160841315 15 0.01704131578455284 14 0.015120654629096834 13 0.007440059550279493 __DUMMY__ 0.002516431672757188 false 1.0
372 16 0.088541 17 0.082923 0 0.069017 19 0.068622 18 0.05371 22 0.049674 11 0.04872 9 0.040093 20 0.039556 23 0.03908 10 0.037801 12 0.034186 6 0.033863 21 0.03332 8 0.032389 7 0.032285 1 0.032058 2 0.031855 4 0.030732 5 0.030291 24 0.029676 3 0.028259 15 0.024433 13 0.008917 16 0.088541 17 0.082923 0 0.069017 19 0.068622 18 0.05371 22 0.049674 11 0.04872 9 0.040093 20 0.039556 23 0.03908 10 0.037801 12 0.034186 6 0.033863 21 0.03332 8 0.032389 7 0.032285 1 0.032058 2 0.031855 4 0.030732 5 0.030291 24 0.029676 3 0.028259 15 0.024433 13 0.008917 17 0.07187378838636227 16 0.06954943625003085 0 0.06155940176037127 19 0.06039171787729859 18 0.05415583529083345 22 0.05285014836253042 11 0.04752022377042811 9 0.04394918467777215 10 0.0401102534772648 23 0.03907534730431258 21 0.0389524510541421 20 0.03608138744470693 6 0.035314056449145266 12 0.034258771939627605 8 0.033819818964592366 7 0.03373166196901759 1 0.033553344089711765 4 0.03355099205961582 2 0.03319805987193702 5 0.03308821674089941 24 0.03100806807745479 3 0.030660828876718036 15 0.024377347949408996 13 0.014204910623979562 14 0.009544758122833211 __DUMMY__ 0.003619988609004925 false 1.0
131 9 0.074775 22 0.060599 4 0.059558 5 0.059462 8 0.059162 7 0.059066 6 0.058927 1 0.058902 3 0.058551 2 0.058475 0 0.055065 17 0.049754 18 0.045025 10 0.044252 23 0.033522 21 0.032728 11 0.031185 19 0.023405 24 0.021354 16 0.017319 15 0.016289 14 0.012338 12 0.005463 20 0.004825 9 0.074775 22 0.060599 4 0.059558 5 0.059462 8 0.059162 7 0.059066 6 0.058927 1 0.058902 3 0.058551 2 0.058475 0 0.055065 17 0.049754 18 0.045025 10 0.044252 23 0.033522 21 0.032728 11 0.031185 19 0.023405 24 0.021354 16 0.017319 15 0.016289 14 0.012338 12 0.005463 20 0.004825 9 0.06687206292870013 22 0.058257436796651796 4 0.054606095381775535 5 0.054282057048903064 6 0.05408393390051765 8 0.05390282307857586 7 0.05385213540334564 1 0.05371895144297599 0 0.053182406644650654 2 0.053182362344317696 3 0.053020159711380174 17 0.050422409529864 18 0.04604355485393174 10 0.042822534351507714 23 0.036347773531208376 21 0.03564207580808912 11 0.034754922606129224 19 0.02960396619898319 24 0.02538946823302046 16 0.0240297169767752 15 0.018146022604021227 14 0.01468488189795484 12 0.012997582052555441 20 0.01233979318836726 13 0.0056713184740675585 __DUMMY__ 0.002143555011730436 false 1.0
373 17 0.085574 16 0.082167 0 0.078519 11 0.053919 19 0.051524 22 0.04896 18 0.047212 9 0.044088 12 0.042697 6 0.039931 10 0.036877 8 0.036726 7 0.036626 1 0.036503 2 0.035878 4 0.034504 23 0.03402 5 0.033936 21 0.033298 3 0.029401 13 0.022047 20 0.020779 15 0.017801 24 0.017014 17 0.085574 16 0.082167 0 0.078519 11 0.053919 19 0.051524 22 0.04896 18 0.047212 9 0.044088 12 0.042697 6 0.039931 10 0.036877 8 0.036726 7 0.036626 1 0.036503 2 0.035878 4 0.034504 23 0.03402 5 0.033936 21 0.033298 3 0.029401 13 0.022047 20 0.020779 15 0.017801 24 0.017014 17 0.07535647488582113 0 0.06911523825750517 16 0.06736613288508642 22 0.05203709086635551 18 0.049804288068622506 11 0.04973508082494339 19 0.04961424403386499 9 0.047502094579244765 6 0.0402877279036787 10 0.03948166272491164 8 0.03786670170299242 7 0.037766045113603076 1 0.037649474722148225 2 0.03708102185072285 4 0.036910251276759974 12 0.03663493839025236 5 0.036387277475748096 21 0.036314610405100325 23 0.03538901696009899 3 0.03267537134858084 20 0.023480188889362034 24 0.022220021277951422 15 0.020437413286169208 13 0.019083772090754292 14 0.007088366560802714 __DUMMY__ 0.0027154936189190035 false 1.0
132 18 0.082104 19 0.078302 22 0.068747 20 0.0632 17 0.059265 21 0.055905 24 0.050989 9 0.050651 23 0.045778 10 0.044967 16 0.04491 0 0.038923 11 0.036863 4 0.030548 5 0.030049 3 0.027727 12 0.0272 8 0.02686 6 0.026825 7 0.026339 1 0.02579 2 0.025251 15 0.018548 14 0.014258 18 0.082104 19 0.078302 22 0.068747 20 0.0632 17 0.059265 21 0.055905 24 0.050989 9 0.050651 23 0.045778 10 0.044967 16 0.04491 0 0.038923 11 0.036863 4 0.030548 5 0.030049 3 0.027727 12 0.0272 8 0.02686 6 0.026825 7 0.026339 1 0.02579 2 0.025251 15 0.018548 14 0.014258 18 0.07205274801197586 19 0.06900687268198774 22 0.06653491171924011 21 0.05856667973969018 20 0.05516856925644777 17 0.0516790479428767 24 0.049147989962305995 9 0.0486803964314899 10 0.04552741887017629 23 0.04439365187749911 11 0.04293946727211373 16 0.03873126033349879 0 0.03777324612226815 12 0.032667497662404545 4 0.031624761153147524 5 0.03112154410547123 3 0.02893110786358641 6 0.02803776667576912 8 0.02771810797634505 7 0.027461825688124688 1 0.02705017594810434 2 0.026587959221872935 14 0.02353659878538183 15 0.021299509930565824 13 0.011276721657772264 __DUMMY__ 0.00248416310988376 false 1.0
374 16 0.101021 19 0.088846 17 0.084714 18 0.062223 0 0.062198 20 0.058338 22 0.052444 11 0.046589 23 0.044867 24 0.041175 21 0.037788 10 0.037193 12 0.0331 9 0.032756 15 0.029331 6 0.024249 8 0.023917 7 0.023861 1 0.023662 2 0.023447 4 0.022607 5 0.022434 3 0.021647 13 0.001595 16 0.101021 19 0.088846 17 0.084714 18 0.062223 0 0.062198 20 0.058338 22 0.052444 11 0.046589 23 0.044867 24 0.041175 21 0.037788 10 0.037193 12 0.0331 9 0.032756 15 0.029331 6 0.024249 8 0.023917 7 0.023861 1 0.023662 2 0.023447 4 0.022607 5 0.022434 3 0.021647 13 0.001595 16 0.07576301162686187 19 0.07483959313124801 17 0.0706173329899518 18 0.06070081635483998 22 0.05521736306773258 0 0.05493496881982462 20 0.050523231665000196 11 0.048460377939406565 21 0.04571939899544393 23 0.04322761761866693 10 0.0406572748305158 24 0.039999456870407145 12 0.0379548919731839 9 0.037396116035249664 15 0.027580778419022137 6 0.026681147757989347 4 0.02623709052843972 5 0.02591132700106631 8 0.025675044420181477 7 0.025624232976828774 1 0.02543788848294571 2 0.025120523811494894 3 0.023947086706080423 13 0.01400140220090824 14 0.01326027436719029 __DUMMY__ 0.0045117514095195845 false 1.0
375 11 0.10249 21 0.097539 22 0.091513 18 0.079301 19 0.075897 12 0.075581 10 0.07082 0 0.059647 17 0.053625 13 0.0486 9 0.043311 14 0.040553 16 0.03683 20 0.034497 23 0.031981 24 0.031669 4 0.008715 5 0.008387 6 0.004742 15 0.002934 3 5.52E-4 8 3.74E-4 1 3.42E-4 2 1.0E-4 11 0.10249 21 0.097539 22 0.091513 18 0.079301 19 0.075897 12 0.075581 10 0.07082 0 0.059647 17 0.053625 13 0.0486 9 0.043311 14 0.040553 16 0.03683 20 0.034497 23 0.031981 24 0.031669 4 0.008715 5 0.008387 6 0.004742 15 0.002934 3 5.52E-4 8 3.74E-4 1 3.42E-4 2 1.0E-4 11 0.08666707458398841 21 0.08539430491737342 22 0.07908406574184758 18 0.07231174209062692 12 0.06990534465536077 19 0.06611847438302763 10 0.0655258836151703 0 0.053652707149820414 13 0.0519788254060294 17 0.048875483146685834 14 0.04434786142884018 9 0.04292857186174223 20 0.035587977373861324 16 0.03356988510820227 23 0.03314452232584834 24 0.031842094771172745 4 0.01547608745041272 5 0.015092892753631565 6 0.012603192050882034 15 0.011415472686562619 8 0.00864067772452008 1 0.008549124200515401 7 0.008493200601874555 2 0.0082799656388661 3 0.008266135774436153 __DUMMY__ 0.0022484325587008094 false 1.0
133 9 0.064651 22 0.058781 18 0.0548 4 0.052565 5 0.052209 3 0.050543 8 0.050473 6 0.050438 7 0.050044 1 0.049543 2 0.049263 17 0.048401 23 0.042923 0 0.042211 19 0.040963 10 0.039794 21 0.039118 24 0.036665 20 0.029088 11 0.025959 16 0.024162 15 0.019749 14 0.014598 12 0.013058 9 0.064651 22 0.058781 18 0.0548 4 0.052565 5 0.052209 3 0.050543 8 0.050473 6 0.050438 7 0.050044 1 0.049543 2 0.049263 17 0.048401 23 0.042923 0 0.042211 19 0.040963 10 0.039794 21 0.039118 24 0.036665 20 0.029088 11 0.025959 16 0.024162 15 0.019749 14 0.014598 12 0.013058 9 0.06207490410215371 22 0.056290592246076535 4 0.05303335597026453 5 0.05260577628415743 6 0.051611065720653125 8 0.05148325994569303 7 0.0513083419332069 3 0.051175498712850605 1 0.051044756124165244 2 0.05054833538887965 18 0.0490801966039078 17 0.04732050157227035 0 0.04465973135639509 23 0.04236006427351055 10 0.03922818137078231 21 0.03813410870432058 19 0.03611536424120873 24 0.033949107680589306 11 0.030054412345669967 16 0.024697286017732595 20 0.02392978150480889 15 0.020125696562744367 14 0.016265676824030226 12 0.015758437006679005 13 0.005562545094122897 __DUMMY__ 0.00158302241312655 false 1.0
134 21 0.089306 23 0.074078 12 0.073526 22 0.067606 24 0.063344 11 0.057441 19 0.054134 13 0.046992 18 0.043636 20 0.041524 4 0.036933 5 0.035195 6 0.03292 14 0.031128 9 0.029649 7 0.029012 8 0.028817 1 0.028238 17 0.02801 3 0.027283 2 0.026809 0 0.019399 10 0.017611 16 0.017409 21 0.089306 23 0.074078 12 0.073526 22 0.067606 24 0.063344 11 0.057441 19 0.054134 13 0.046992 18 0.043636 20 0.041524 4 0.036933 5 0.035195 6 0.03292 14 0.031128 9 0.029649 7 0.029012 8 0.028817 1 0.028238 17 0.02801 3 0.027283 2 0.026809 0 0.019399 10 0.017611 16 0.017409 21 0.07748473575396733 12 0.06474606320952782 23 0.06469912821518717 22 0.061924177732965824 24 0.056774508791952345 19 0.054149103888587964 11 0.052132431985061706 18 0.04751026577153467 13 0.04347883810482518 20 0.04340949661192216 4 0.03570257790618716 5 0.034626623140387607 9 0.03295062238945956 17 0.03277139315433608 6 0.03257710421136065 14 0.03245091613031501 7 0.029495991661641366 8 0.029329919015967054 1 0.028985104324474688 3 0.02855740496208575 2 0.02811821856237346 10 0.025996936855106765 0 0.025096784794713514 16 0.024057028454977387 15 0.00935054602390282 __DUMMY__ 0.003624078347178934 false 1.0
376 16 0.087871 17 0.08117 0 0.063512 19 0.05865 18 0.044796 11 0.043998 22 0.042967 23 0.041949 12 0.040411 20 0.039855 6 0.038815 8 0.037025 7 0.036886 1 0.036768 2 0.036182 24 0.035185 9 0.0349 4 0.03455 5 0.033997 21 0.031772 3 0.031373 15 0.02652 10 0.025146 13 0.015701 16 0.087871 17 0.08117 0 0.063512 19 0.05865 18 0.044796 11 0.043998 22 0.042967 23 0.041949 12 0.040411 20 0.039855 6 0.038815 8 0.037025 7 0.036886 1 0.036768 2 0.036182 24 0.035185 9 0.0349 4 0.03455 5 0.033997 21 0.031772 3 0.031373 15 0.02652 10 0.025146 13 0.015701 17 0.07386756074614159 16 0.07164673621150837 0 0.06163246563754339 19 0.05450449719648845 18 0.049435511186876 22 0.04904499413611802 11 0.045089170039845604 9 0.042122418461878905 23 0.039349932747838 6 0.03864970901349477 8 0.036889313813215745 7 0.0367637896188815 1 0.03664444982549616 12 0.03618677576765111 2 0.03610041452314785 21 0.03590981309784901 4 0.035826470576067825 5 0.035308916643122835 20 0.0341644805497548 10 0.03386243051834312 3 0.03248548103527022 24 0.031572687715497996 15 0.02580085084317968 13 0.016446972592877626 14 0.007696524042651102 __DUMMY__ 0.0029976334592602136 false 1.0
135 23 0.085441 12 0.069293 24 0.066406 21 0.065426 13 0.049177 4 0.048164 6 0.047276 5 0.047201 20 0.046612 7 0.044284 8 0.044137 1 0.043877 2 0.042859 19 0.042264 3 0.04161 22 0.03982 11 0.028883 16 0.02766 17 0.025386 18 0.025225 14 0.023238 9 0.020944 0 0.014522 15 0.010298 23 0.085441 12 0.069293 24 0.066406 21 0.065426 13 0.049177 4 0.048164 6 0.047276 5 0.047201 20 0.046612 7 0.044284 8 0.044137 1 0.043877 2 0.042859 19 0.042264 3 0.04161 22 0.03982 11 0.028883 16 0.02766 17 0.025386 18 0.025225 14 0.023238 9 0.020944 0 0.014522 15 0.010298 21 0.06939104282661197 23 0.06927998271020197 12 0.06573639328221709 24 0.05873519793661693 19 0.050456605909489714 22 0.050314002230846165 13 0.04712222278633856 20 0.046979476750216485 11 0.041257943511944034 18 0.04019224454035205 4 0.038790567314105406 5 0.038048174598854075 6 0.036968172756995564 7 0.03413053674506231 8 0.03398696731440757 1 0.03377859222602079 2 0.033089861350814084 3 0.032771322492953225 17 0.031389294807489074 14 0.030846061000409448 16 0.029016417540111136 9 0.0278684353960528 0 0.02253789370719736 10 0.018630111447491 15 0.014006380307653136 __DUMMY__ 0.004676098509548094 false 1.0
377 17 0.085255 0 0.08084 16 0.075645 9 0.051098 11 0.050687 22 0.050211 18 0.045798 6 0.044974 19 0.04394 8 0.042197 7 0.042121 1 0.041971 2 0.041309 4 0.03963 10 0.039323 5 0.038888 3 0.035113 12 0.031713 23 0.02971 21 0.027345 15 0.021903 13 0.015106 20 0.013074 24 0.012149 17 0.085255 0 0.08084 16 0.075645 9 0.051098 11 0.050687 22 0.050211 18 0.045798 6 0.044974 19 0.04394 8 0.042197 7 0.042121 1 0.041971 2 0.041309 4 0.03963 10 0.039323 5 0.038888 3 0.035113 12 0.031713 23 0.02971 21 0.027345 15 0.021903 13 0.015106 20 0.013074 24 0.012149 17 0.07495459988239846 0 0.06995533734966979 16 0.06399116809238577 22 0.052484481579530125 9 0.05086518538169033 18 0.04903857340468495 11 0.04790056605918734 19 0.045777000906332264 6 0.042779208146407365 10 0.040593594138298314 8 0.04058792642492035 7 0.040495807040039675 1 0.04036515878584823 2 0.039784907057135444 4 0.03945877523553544 5 0.03885734832192468 3 0.03554076690524931 21 0.033384216351492225 23 0.03336035114829356 12 0.031267303742619955 15 0.022819829036989144 24 0.02000762113302455 20 0.019876598155861756 13 0.015922475716921715 14 0.007466760142939346 __DUMMY__ 0.002464439860620034 false 1.0
136 19 0.07614 23 0.070095 16 0.064683 20 0.061658 18 0.059944 17 0.056891 24 0.051655 22 0.044986 4 0.038573 5 0.037918 6 0.036892 7 0.036801 8 0.036677 1 0.036443 21 0.036206 9 0.035945 3 0.035924 2 0.035164 0 0.032897 15 0.031318 10 0.029793 12 0.024283 11 0.020158 14 0.008957 19 0.07614 23 0.070095 16 0.064683 20 0.061658 18 0.059944 17 0.056891 24 0.051655 22 0.044986 4 0.038573 5 0.037918 6 0.036892 7 0.036801 8 0.036677 1 0.036443 21 0.036206 9 0.035945 3 0.035924 2 0.035164 0 0.032897 15 0.031318 10 0.029793 12 0.024283 11 0.020158 14 0.008957 23 0.05662901583446956 19 0.05244183712426849 18 0.050830782342798975 17 0.05019957205294026 22 0.04874599706156392 9 0.04740508065860057 4 0.04669563424681182 5 0.04615354098664797 6 0.04547968968932788 7 0.04526169821416524 8 0.045173138558289326 1 0.04506995502311347 3 0.044492148833240076 2 0.04413879270135415 16 0.04327716470802526 24 0.04214479156400221 20 0.0402810449499718 0 0.03880848749065002 21 0.03702442408312708 10 0.033321763366121734 11 0.026334653823342945 15 0.02554295332922575 12 0.02236191470037293 14 0.013900132324108996 13 0.006820992095014694 __DUMMY__ 0.001464794238444943 false 1.0
378 17 0.083762 16 0.08326 0 0.075824 19 0.051803 11 0.050402 22 0.046379 18 0.045952 9 0.042783 12 0.042285 6 0.040643 8 0.037716 7 0.037635 1 0.03742 2 0.037027 23 0.035538 10 0.035382 4 0.035235 5 0.034784 21 0.031346 3 0.030817 20 0.02422 13 0.021852 24 0.019007 15 0.018928 17 0.083762 16 0.08326 0 0.075824 19 0.051803 11 0.050402 22 0.046379 18 0.045952 9 0.042783 12 0.042285 6 0.040643 8 0.037716 7 0.037635 1 0.03742 2 0.037027 23 0.035538 10 0.035382 4 0.035235 5 0.034784 21 0.031346 3 0.030817 20 0.02422 13 0.021852 24 0.019007 15 0.018928 17 0.07439776345994738 16 0.06809584199550046 0 0.06742031242395476 22 0.05066787066250502 19 0.05011457175794635 18 0.049326046637570155 11 0.047932100751719 9 0.04646648090442392 6 0.04034252875338027 10 0.038571053092486395 8 0.03804956298609251 7 0.03795571417297541 1 0.03779528683247397 2 0.037336320905924224 4 0.03699881942053651 12 0.036788299292008206 5 0.03652874193722389 23 0.03635663085868027 21 0.035590991094161535 3 0.03307501671263083 20 0.02573391256513549 24 0.023594764687627383 15 0.02130581043655167 13 0.01927944714254184 14 0.007377681626549616 __DUMMY__ 0.0028984288894529447 false 1.0
137 19 0.12715 16 0.113091 20 0.087189 18 0.086808 17 0.082929 22 0.062016 11 0.053932 10 0.053384 21 0.052792 0 0.050956 23 0.050879 24 0.049915 15 0.040891 12 0.03695 9 0.023955 14 0.016035 5 0.003718 4 0.003329 3 0.001742 6 9.17E-4 13 6.42E-4 1 3.32E-4 7 3.24E-4 8 1.22E-4 19 0.12715 16 0.113091 20 0.087189 18 0.086808 17 0.082929 22 0.062016 11 0.053932 10 0.053384 21 0.052792 0 0.050956 23 0.050879 24 0.049915 15 0.040891 12 0.03695 9 0.023955 14 0.016035 5 0.003718 4 0.003329 3 0.001742 6 9.17E-4 13 6.42E-4 1 3.32E-4 7 3.24E-4 8 1.22E-4 19 0.09270550856717369 16 0.07719349839250851 18 0.07347676383516584 17 0.06638639469346395 20 0.06509769821222545 22 0.06018303291328334 21 0.05359760789936745 11 0.050845366713577145 10 0.05012088887634463 0 0.04714119463182485 23 0.046839537353642935 24 0.04495175321419794 12 0.03835033625583213 9 0.03412257102161922 15 0.03380281976812612 14 0.023456294220411966 4 0.017567688958211303 5 0.01748766835934185 6 0.01553179358117549 3 0.015263103305823016 7 0.014652926588436154 8 0.01456417287146276 1 0.014536288759496144 2 0.014166810930450077 13 0.013719520607003533 __DUMMY__ 0.004238759469834487 false 1.0
379 16 0.086519 17 0.081947 0 0.066765 19 0.056179 18 0.045077 22 0.043221 11 0.043197 6 0.040271 23 0.03957 8 0.038394 7 0.038289 9 0.038134 1 0.038048 2 0.037766 12 0.036963 20 0.035878 4 0.035754 5 0.035292 3 0.032815 24 0.031036 21 0.029061 10 0.028479 15 0.026978 13 0.014366 16 0.086519 17 0.081947 0 0.066765 19 0.056179 18 0.045077 22 0.043221 11 0.043197 6 0.040271 23 0.03957 8 0.038394 7 0.038289 9 0.038134 1 0.038048 2 0.037766 12 0.036963 20 0.035878 4 0.035754 5 0.035292 3 0.032815 24 0.031036 21 0.029061 10 0.028479 15 0.026978 13 0.014366 17 0.07380130581436825 16 0.07031354571289074 0 0.06298493944554309 19 0.05290900480305224 18 0.04934493046385193 22 0.04916595258567081 11 0.044530796672131445 9 0.04391284844813786 6 0.039658836660262056 23 0.03830217661751235 8 0.037880876184686704 7 0.03777456323000008 1 0.03759859724479496 2 0.037192499741029776 4 0.03675649472573721 5 0.03628053061691354 10 0.03540918883682356 21 0.03458433558364859 12 0.03431019071842969 3 0.03355376235089582 20 0.03197902877431848 24 0.029571648788697665 15 0.02574871487102403 13 0.015707806495261434 14 0.0076719875994498195 __DUMMY__ 0.00305543701486768 false 1.0
138 22 0.084846 21 0.068638 11 0.067993 9 0.066384 18 0.062175 0 0.060233 17 0.057353 19 0.055133 10 0.055111 4 0.035693 5 0.034941 6 0.032596 12 0.032411 3 0.031421 7 0.03085 8 0.03075 1 0.030656 24 0.030402 2 0.030124 16 0.029026 23 0.027027 20 0.019046 14 0.017916 13 0.009276 22 0.084846 21 0.068638 11 0.067993 9 0.066384 18 0.062175 0 0.060233 17 0.057353 19 0.055133 10 0.055111 4 0.035693 5 0.034941 6 0.032596 12 0.032411 3 0.031421 7 0.03085 8 0.03075 1 0.030656 24 0.030402 2 0.030124 16 0.029026 23 0.027027 20 0.019046 14 0.017916 13 0.009276 22 0.07644148628783262 21 0.06191457539762501 9 0.06169105770884907 11 0.05963825141277078 18 0.05753172469238457 0 0.05404369875650581 17 0.05273320804090005 19 0.05077261120877999 10 0.05006709362315321 4 0.038554631012590365 5 0.03791676030657044 6 0.03581783892376303 3 0.03516336143087455 7 0.03457869578032995 8 0.03455425555498878 1 0.03434389079895451 2 0.033870798643296535 24 0.03351150459859608 23 0.03234627112909664 12 0.030214794225066597 16 0.02886001575375888 20 0.022420385024627554 14 0.020896937835527624 13 0.011551471940193238 15 0.008387780349263909 __DUMMY__ 0.0021768995637002023 false 1.0
139 21 0.100022 12 0.089518 23 0.074344 13 0.070036 22 0.064728 11 0.064327 24 0.063277 14 0.042428 19 0.041413 4 0.036992 6 0.035035 5 0.034981 7 0.031219 1 0.03006 8 0.029889 20 0.029382 2 0.028764 3 0.027272 18 0.025812 17 0.022537 9 0.021558 0 0.017412 16 0.012834 15 0.006161 21 0.100022 12 0.089518 23 0.074344 13 0.070036 22 0.064728 11 0.064327 24 0.063277 14 0.042428 19 0.041413 4 0.036992 6 0.035035 5 0.034981 7 0.031219 1 0.03006 8 0.029889 20 0.029382 2 0.028764 3 0.027272 18 0.025812 17 0.022537 9 0.021558 0 0.017412 16 0.012834 15 0.006161 21 0.08541457137291923 12 0.07419141591348831 23 0.06322053225601935 22 0.06262511760200244 11 0.05810936163652528 24 0.056635992433637275 13 0.056131442093745876 19 0.048134223750301415 14 0.03931683490939397 18 0.03909551682940694 20 0.03663301622253576 4 0.03472426894382847 5 0.03349706964609624 6 0.032411038492862705 17 0.02981412216226428 9 0.029426859844912178 7 0.029186229530117905 8 0.02851521796146314 1 0.02848972994806097 2 0.027674028763615847 3 0.02725091257473809 0 0.024520911861704933 16 0.02066325943113915 10 0.01811552741672257 15 0.011193322181777779 __DUMMY__ 0.005009476220719869 false 1.0
30 10 0.102727 18 0.086739 9 0.078159 22 0.071133 14 0.062278 0 0.060386 11 0.055592 15 0.045963 17 0.043604 21 0.042954 19 0.04074 4 0.033203 5 0.032504 3 0.030994 6 0.029733 8 0.029497 7 0.029237 1 0.029042 2 0.028688 13 0.026925 20 0.015 23 0.013663 12 0.00649 16 0.004751 10 0.102727 18 0.086739 9 0.078159 22 0.071133 14 0.062278 0 0.060386 11 0.055592 15 0.045963 17 0.043604 21 0.042954 19 0.04074 4 0.033203 5 0.032504 3 0.030994 6 0.029733 8 0.029497 7 0.029237 1 0.029042 2 0.028688 13 0.026925 20 0.015 23 0.013663 12 0.00649 16 0.004751 10 0.08128448254012542 18 0.07757917862848321 22 0.06592164854836048 9 0.06330345029462955 11 0.05356697331671368 14 0.05280551474033093 0 0.05241699093733034 21 0.04915281001966974 19 0.04823723787780305 17 0.04519899620209301 15 0.03973442152818928 4 0.031059125036368734 13 0.030488835631817063 5 0.030488563066007654 6 0.028264618833596895 3 0.028249101437531208 20 0.027764819645293846 8 0.027434862793011865 7 0.027307855066128133 1 0.027121036742189537 2 0.02674120669945153 23 0.02495955280740876 12 0.022629740463289295 16 0.01869802485539841 24 0.01634836171241744 __DUMMY__ 0.0032425905763610306 false 1.0
31 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05886519572559762 4 0.058805113726765 6 0.05874334518926811 7 0.058724733812034996 8 0.058599489587913584 5 0.0584381198521921 2 0.057986161020212354 9 0.05745361488496549 3 0.05739920463451731 22 0.04828486634882098 23 0.046794579907809226 17 0.04604133069863275 0 0.044482869369574594 18 0.036567502268679684 24 0.03453327481232 21 0.032225359549442625 10 0.029104612298192455 19 0.027246694264421327 11 0.02701655053363394 16 0.026751837396810897 20 0.018791315920919132 15 0.018053786500442266 12 0.01783253823782846 14 0.010786966420297632 13 0.008101411532053676 __DUMMY__ 0.0023695255066534075 false 1.0
32 9 0.067434 3 0.060684 4 0.060261 8 0.059959 7 0.059854 5 0.059713 1 0.059607 2 0.059014 6 0.058559 22 0.053095 0 0.044332 17 0.042369 23 0.04018 18 0.039728 10 0.038656 24 0.031104 21 0.029716 15 0.029174 19 0.026648 11 0.022981 16 0.020355 14 0.01957 20 0.015853 12 0.001154 9 0.067434 3 0.060684 4 0.060261 8 0.059959 7 0.059854 5 0.059713 1 0.059607 2 0.059014 6 0.058559 22 0.053095 0 0.044332 17 0.042369 23 0.04018 18 0.039728 10 0.038656 24 0.031104 21 0.029716 15 0.029174 19 0.026648 11 0.022981 16 0.020355 14 0.01957 20 0.015853 12 0.001154 9 0.062111765232747265 22 0.05500820758484691 4 0.05286319215182862 5 0.05232869234522286 8 0.051954301032882455 3 0.05190674830887812 7 0.05189555974190651 1 0.051708744991855855 6 0.05160985494579081 2 0.05113083852573117 0 0.0469004896038517 17 0.046351190205748405 18 0.04557283126580849 10 0.04164658666441066 23 0.039573675047497384 21 0.03579319236594322 19 0.03345491083499142 11 0.03172031893928139 24 0.030823302401325074 15 0.026038419248057797 16 0.025890021393844748 14 0.020777208911402053 20 0.020169875414427517 12 0.012489728005699077 13 0.00758290318090722 __DUMMY__ 0.00269744165511339 false 1.0
33 9 0.065785 22 0.05938 0 0.052328 3 0.051421 4 0.051159 8 0.05088 17 0.050798 7 0.050725 1 0.050649 5 0.050493 2 0.04994 6 0.049595 18 0.047777 10 0.045559 19 0.037668 11 0.03674 21 0.035544 23 0.034153 16 0.029794 24 0.029732 15 0.025758 20 0.019639 14 0.018493 12 0.005988 9 0.065785 22 0.05938 0 0.052328 3 0.051421 4 0.051159 8 0.05088 17 0.050798 7 0.050725 1 0.050649 5 0.050493 2 0.04994 6 0.049595 18 0.047777 10 0.045559 19 0.037668 11 0.03674 21 0.035544 23 0.034153 16 0.029794 24 0.029732 15 0.025758 20 0.019639 14 0.018493 12 0.005988 9 0.062431207427962286 22 0.05993356017028105 0 0.05309088988904911 17 0.05229291690373057 18 0.050279728990586525 4 0.047806027030176466 5 0.04719729975402943 8 0.046926196611614845 7 0.04682442051819739 3 0.046712996501679316 1 0.04669389004164655 6 0.04666505196359401 2 0.04606885161212826 10 0.04606548162850065 11 0.040414182885238556 19 0.03968268309151608 21 0.039249434131234384 23 0.035013802331230866 16 0.03161509054796268 24 0.029065835211220283 15 0.023061343626654393 20 0.020768569047043422 14 0.01903440263310909 12 0.014313372918131805 13 0.006194749072172438 __DUMMY__ 0.0025980154613096168 false 1.0
34 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06747326859232548 22 0.05826593454217626 0 0.05441854353879939 4 0.05411717913099406 6 0.05362932202941506 7 0.05337991906457371 8 0.05331111412111213 5 0.0532453043301888 1 0.053179313260202844 2 0.05211229151365758 3 0.0519068577275773 17 0.05149096275384634 18 0.04700555121651543 10 0.043760795782567745 21 0.03587651536471096 11 0.03583897884751875 23 0.03583292272233538 19 0.030208096345328544 24 0.024724402104388084 16 0.024646701936343177 15 0.01752752393953973 14 0.014808481927741073 12 0.012808699042809102 20 0.01234218946198641 13 0.005837482725289812 __DUMMY__ 0.0022516479780569877 false 1.0
35 22 0.078423 9 0.063741 21 0.059241 11 0.05492 18 0.050686 19 0.048249 0 0.047055 17 0.046444 10 0.045688 4 0.04325 5 0.04299 3 0.042618 24 0.039933 8 0.039659 7 0.039527 1 0.03916 2 0.039047 6 0.038972 23 0.033645 16 0.026101 14 0.025143 20 0.021218 15 0.018512 12 0.01578 22 0.078423 9 0.063741 21 0.059241 11 0.05492 18 0.050686 19 0.048249 0 0.047055 17 0.046444 10 0.045688 4 0.04325 5 0.04299 3 0.042618 24 0.039933 8 0.039659 7 0.039527 1 0.03916 2 0.039047 6 0.038972 23 0.033645 16 0.026101 14 0.025143 20 0.021218 15 0.018512 12 0.01578 22 0.07174762138952244 9 0.05860822119997153 21 0.057208292015004616 18 0.053413728234216126 11 0.05339679115026869 19 0.04883961392525991 17 0.048536272496486746 0 0.048124736256752156 10 0.046381877280064966 4 0.04046129261237124 5 0.04004615174161276 3 0.03847247584035212 6 0.03747282065350224 24 0.03730741856865679 8 0.037168473829326636 7 0.037107314457687404 1 0.0368154112676371 2 0.036481432267201325 23 0.035682232864654016 16 0.029693743763864185 14 0.025302420713133097 20 0.025210456283550543 12 0.024841652144222445 15 0.018333735466676764 13 0.010082440499329473 __DUMMY__ 0.0032633730786747724 false 1.0
36 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058862430900635414 4 0.05880066027514029 6 0.058744544672727474 7 0.058721550506780774 8 0.05859623945123864 5 0.05843416169130606 2 0.05798381799853561 9 0.057420759705349884 3 0.057389810378066994 22 0.048254021340096 23 0.04681660231408302 17 0.04604709204378389 0 0.04447846603339649 18 0.03655867101750566 24 0.034536780483767585 21 0.03221833012638659 10 0.029082488344989662 19 0.027245177085694038 11 0.027007863083254452 16 0.026774211140786056 20 0.01880655984991314 15 0.01804816860398735 12 0.01787755180256959 14 0.0107771093938531 13 0.0081389789453995 __DUMMY__ 0.002377952810752513 false 1.0
37 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058862430900635435 4 0.05880066027514029 6 0.05874454467272747 7 0.058721550506780795 8 0.05859623945123864 5 0.05843416169130606 2 0.05798381799853561 9 0.057420759705349884 3 0.057389810378067 22 0.04825402134009601 23 0.04681660231408302 17 0.04604709204378389 0 0.04447846603339649 18 0.03655867101750566 24 0.03453678048376759 21 0.032218330126386606 10 0.029082488344989662 19 0.027245177085694045 11 0.027007863083254452 16 0.026774211140786056 20 0.01880655984991314 15 0.018048168603987353 12 0.01787755180256959 14 0.0107771093938531 13 0.0081389789453995 __DUMMY__ 0.0023779528107525138 false 1.0
38 9 0.067885 3 0.060218 4 0.060119 8 0.059868 7 0.059817 1 0.059611 5 0.059124 2 0.058566 6 0.058413 22 0.052612 0 0.043924 17 0.042986 23 0.040562 18 0.040217 10 0.038504 24 0.031399 21 0.02974 15 0.028869 19 0.026685 11 0.023305 16 0.020263 14 0.019705 20 0.016287 12 0.001318 9 0.067885 3 0.060218 4 0.060119 8 0.059868 7 0.059817 1 0.059611 5 0.059124 2 0.058566 6 0.058413 22 0.052612 0 0.043924 17 0.042986 23 0.040562 18 0.040217 10 0.038504 24 0.031399 21 0.02974 15 0.028869 19 0.026685 11 0.023305 16 0.020263 14 0.019705 20 0.016287 12 0.001318 9 0.06229829793568042 22 0.05474632469660894 4 0.052810562025772084 5 0.05207019058354542 8 0.05192782304969806 7 0.051894284576438306 1 0.051727086211304826 3 0.05170382060223704 6 0.051559241777307405 2 0.05094035755966733 0 0.046694286413239264 17 0.04662706977910777 18 0.04578110615837165 10 0.041550788164748186 23 0.039775457522243665 21 0.03577972996783696 19 0.033454366326978534 11 0.03183703365132918 24 0.03096595484252284 15 0.02590533025084445 16 0.025850308476283952 14 0.020833138050997006 20 0.020381644033413852 12 0.01257991829690699 13 0.00760251905817931 __DUMMY__ 0.0027033599887365018 false 1.0
39 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05885923426906926 4 0.05879766066231564 6 0.05874206382779295 7 0.058718324184760765 8 0.05859300336397355 5 0.05843128698847786 2 0.05798073389787106 9 0.05741720802704833 3 0.05738592818777241 22 0.04825457797106694 23 0.046817145001257505 17 0.04604970040203605 0 0.044480428232671135 18 0.036559677643583734 24 0.03453692796496405 21 0.032221524293913464 10 0.029081666574297615 19 0.02724785581934979 11 0.027012286013367262 16 0.02677808680628995 20 0.018807795278073237 15 0.018044403909255026 12 0.017885052335079834 14 0.010775333319844729 13 0.008143181075243233 __DUMMY__ 0.0023789139506245637 false 1.0
380 17 0.062772 0 0.055073 9 0.054091 16 0.052984 22 0.051045 8 0.05036 7 0.050202 1 0.049957 6 0.049869 2 0.049704 4 0.048984 3 0.048901 5 0.048488 19 0.041979 18 0.041224 23 0.037325 24 0.03362 11 0.033464 15 0.030996 10 0.030828 21 0.029192 20 0.026769 12 0.013244 14 0.008929 17 0.062772 0 0.055073 9 0.054091 16 0.052984 22 0.051045 8 0.05036 7 0.050202 1 0.049957 6 0.049869 2 0.049704 4 0.048984 3 0.048901 5 0.048488 19 0.041979 18 0.041224 23 0.037325 24 0.03362 11 0.033464 15 0.030996 10 0.030828 21 0.029192 20 0.026769 12 0.013244 14 0.008929 17 0.060728491606079425 0 0.05388330896344108 22 0.05292776940384059 9 0.05210530795524704 16 0.04993036549421129 18 0.047163115719150134 19 0.04508288390787648 6 0.04464807158393431 8 0.04435566260198685 7 0.0442277322610259 4 0.04408914181448597 1 0.044021833584888335 2 0.04367247411010767 5 0.04359498270058451 3 0.04271112079001761 11 0.038145675266709776 23 0.037965476783577895 10 0.03664977985697741 21 0.035190240203059435 24 0.03276167508740022 15 0.02968466421214518 20 0.02878605557595003 12 0.021154541036042748 14 0.01499651778339998 13 0.008732210786694025 __DUMMY__ 0.002790900911166274 false 1.0
381 14 0.121546 15 0.115736 18 0.103513 10 0.0958 20 0.078475 13 0.070326 19 0.065983 21 0.048858 22 0.046931 11 0.037723 9 0.035245 12 0.03344 24 0.033384 23 0.029969 17 0.028001 16 0.022168 0 0.015603 4 0.005584 5 0.004961 3 0.003658 7 0.00105 6 8.56E-4 8 8.24E-4 1 3.65E-4 14 0.121546 15 0.115736 18 0.103513 10 0.0958 20 0.078475 13 0.070326 19 0.065983 21 0.048858 22 0.046931 11 0.037723 9 0.035245 12 0.03344 24 0.033384 23 0.029969 17 0.028001 16 0.022168 0 0.015603 4 0.005584 5 0.004961 3 0.003658 7 0.00105 6 8.56E-4 8 8.24E-4 1 3.65E-4 14 0.09424909211520476 18 0.08792386651504241 15 0.08512257086988981 10 0.08034659409852651 20 0.0640638253964339 13 0.061853386375617 19 0.06115257564750744 21 0.052904652095616234 22 0.05071432237924772 11 0.04352720055251446 12 0.039833724015010785 9 0.038009677054809766 24 0.03387902936162446 17 0.03340518648251443 23 0.033369534097549385 16 0.025770695729904723 0 0.025083323284739587 4 0.01396611211414814 5 0.013482125105325987 3 0.0111430017270185 6 0.010347971508650688 7 0.009561787695621929 8 0.009482566205472439 1 0.00915693507902445 2 0.008848536834296896 __DUMMY__ 0.0028017076586876314 false 1.0
382 14 0.163422 15 0.157877 13 0.106301 10 0.099061 18 0.091877 20 0.064255 19 0.043821 21 0.041993 12 0.036805 22 0.034854 11 0.03414 9 0.032247 23 0.021868 24 0.021566 17 0.016399 16 0.010496 0 0.009276 4 0.004635 5 0.004557 3 0.002316 6 0.001113 8 5.17E-4 1 3.76E-4 7 2.25E-4 14 0.163422 15 0.157877 13 0.106301 10 0.099061 18 0.091877 20 0.064255 19 0.043821 21 0.041993 12 0.036805 22 0.034854 11 0.03414 9 0.032247 23 0.021868 24 0.021566 17 0.016399 16 0.010496 0 0.009276 4 0.004635 5 0.004557 3 0.002316 6 0.001113 8 5.17E-4 1 3.76E-4 7 2.25E-4 14 0.1156902425610292 15 0.10641342797584112 13 0.08243949838823852 18 0.08063791080386026 10 0.0792338191131035 20 0.05809335019986931 21 0.050596720194419555 19 0.050104730598684 12 0.04485216273313733 22 0.04366818664823028 11 0.04152262736508665 9 0.03424609051404329 23 0.030673250500309873 24 0.029614427699799162 17 0.02743117493467133 16 0.021084255295822172 0 0.02059155279596817 4 0.013015919829739677 5 0.01279211392782589 6 0.010183311209111253 3 0.009638025890727573 8 0.008781100427019125 7 0.008603834064015041 1 0.00859450392297648 2 0.008289344284488265 __DUMMY__ 0.0032084181219830653 false 1.0
140 9 0.075762 4 0.060201 1 0.059654 5 0.059591 7 0.059584 6 0.05956 8 0.059532 22 0.059023 3 0.058339 2 0.058259 0 0.055137 17 0.050124 18 0.04401 10 0.043377 23 0.033493 21 0.03248 11 0.03122 19 0.023049 24 0.021717 16 0.01741 15 0.015883 14 0.012315 12 0.005626 20 0.004653 9 0.075762 4 0.060201 1 0.059654 5 0.059591 7 0.059584 6 0.05956 8 0.059532 22 0.059023 3 0.058339 2 0.058259 0 0.055137 17 0.050124 18 0.04401 10 0.043377 23 0.033493 21 0.03248 11 0.03122 19 0.023049 24 0.021717 16 0.01741 15 0.015883 14 0.012315 12 0.005626 20 0.004653 9 0.0673415022650204 22 0.057540688700087 4 0.054903587869097284 6 0.05437934067431933 5 0.054342343710292104 7 0.054093655453457026 8 0.05407597727711376 1 0.05406875179422992 0 0.05324312139327776 2 0.053085877208341584 3 0.05292307543567814 17 0.050599566112100446 18 0.045566966138182785 10 0.042433719639646254 23 0.03630477795781319 21 0.03552948264016873 11 0.03479841467809652 19 0.029414291507166655 24 0.025531497752241047 16 0.024060879170631964 15 0.01795032118343462 14 0.014678946956880582 12 0.013074646747166109 20 0.012223884002207133 13 0.005684034939201872 __DUMMY__ 0.002150648794147938 false 1.0
383 15 0.1606 14 0.147302 10 0.088733 18 0.088646 13 0.068532 20 0.066116 19 0.041342 9 0.041224 22 0.035707 23 0.032538 24 0.031697 21 0.029272 3 0.01972 4 0.018491 5 0.018219 11 0.015414 8 0.015333 7 0.014918 1 0.014739 2 0.014534 17 0.013845 6 0.012852 12 0.005211 16 0.005015 15 0.1606 14 0.147302 10 0.088733 18 0.088646 13 0.068532 20 0.066116 19 0.041342 9 0.041224 22 0.035707 23 0.032538 24 0.031697 21 0.029272 3 0.01972 4 0.018491 5 0.018219 11 0.015414 8 0.015333 7 0.014918 1 0.014739 2 0.014534 17 0.013845 6 0.012852 12 0.005211 16 0.005015 15 0.10758018540488667 14 0.10531230827766581 18 0.07960485673071302 10 0.07494312636915591 13 0.05942919989238484 20 0.058268220820822295 19 0.049024293815898734 22 0.044468187510593137 21 0.04206779172183922 9 0.040450960047583064 23 0.03520385642620791 24 0.03379477444978328 11 0.031323593297535694 17 0.02758883772881512 12 0.025219208323588368 4 0.020827719575591232 5 0.02050208357195579 3 0.019610534987512234 16 0.01916835643397824 0 0.017444608776896915 8 0.017338255135002402 7 0.017110828685041157 6 0.0169403519540775 1 0.01693882117378358 2 0.016695729353897033 __DUMMY__ 0.00314330953479099 false 1.0
141 9 0.059445 3 0.056799 4 0.054038 7 0.053594 8 0.053509 5 0.05328 1 0.053223 2 0.052778 6 0.050539 22 0.05024 18 0.045587 10 0.044113 23 0.043443 15 0.041903 24 0.041368 19 0.035934 17 0.034105 0 0.033651 20 0.032596 14 0.032067 21 0.030801 11 0.025587 16 0.019848 13 0.001553 9 0.059445 3 0.056799 4 0.054038 7 0.053594 8 0.053509 5 0.05328 1 0.053223 2 0.052778 6 0.050539 22 0.05024 18 0.045587 10 0.044113 23 0.043443 15 0.041903 24 0.041368 19 0.035934 17 0.034105 0 0.033651 20 0.032596 14 0.032067 21 0.030801 11 0.025587 16 0.019848 13 0.001553 22 0.05576169825380796 9 0.05517280898158354 18 0.05404923289833481 10 0.048532759478706666 4 0.04415100354120514 3 0.04414710165070235 19 0.044080156027059586 5 0.043527333370942126 7 0.042264664162773254 21 0.04226303158743711 8 0.042238497129711255 1 0.04199113450599295 2 0.04155378592296713 6 0.041203171184836504 23 0.04090184580748045 17 0.03994167306661862 24 0.03861636662152165 0 0.03814095162944483 11 0.03637040881641819 15 0.03623753243462816 20 0.03512387308618128 14 0.034824207013188516 16 0.02513661271052423 12 0.016564315560616407 13 0.013875926067256694 __DUMMY__ 0.0033299084900604787 false 1.0
142 19 0.108304 21 0.107862 20 0.094267 18 0.089012 22 0.084129 24 0.079354 12 0.064295 23 0.062577 11 0.050989 10 0.050576 14 0.04471 9 0.034792 13 0.028366 17 0.026789 16 0.025732 5 0.011414 4 0.010929 3 0.00853 15 0.008345 0 0.007432 8 6.13E-4 6 5.13E-4 7 4.57E-4 2 1.2E-5 19 0.108304 21 0.107862 20 0.094267 18 0.089012 22 0.084129 24 0.079354 12 0.064295 23 0.062577 11 0.050989 10 0.050576 14 0.04471 9 0.034792 13 0.028366 17 0.026789 16 0.025732 5 0.011414 4 0.010929 3 0.00853 15 0.008345 0 0.007432 8 6.13E-4 6 5.13E-4 7 4.57E-4 2 1.2E-5 21 0.08887948099066989 19 0.08883776989270571 20 0.0768758244593572 18 0.07650526052796411 22 0.07235003179099629 24 0.0664071555572901 12 0.0600977705677705 23 0.05511623779295795 11 0.052085366412397235 10 0.04740839585884987 14 0.04309784736780633 17 0.03452208836784346 9 0.03418549847945537 13 0.033682343437315215 16 0.033147280350197705 0 0.019248953797671848 15 0.018062144155355224 4 0.016939544049666463 5 0.01690284450021976 3 0.013864141047841004 6 0.010064040920215322 8 0.009321055058657678 7 0.009274268192305446 1 0.008924000993619598 2 0.008750658190597506 __DUMMY__ 0.005449997240273287 false 1.0
384 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.094591 10 0.09023 19 0.077645 11 0.076258 21 0.075853 22 0.071652 12 0.059685 14 0.059196 0 0.056153 13 0.056088 17 0.053106 20 0.050478 9 0.046549 16 0.039509 15 0.030109 23 0.023216 24 0.02241 4 0.005978 5 0.005662 6 0.003521 7 6.67E-4 3 5.3E-4 8 4.68E-4 1 4.44E-4 18 0.08576420341162751 10 0.08073222718118539 21 0.07148083207899182 11 0.0704406131322342 19 0.06983698022525242 22 0.0692179194916791 14 0.05598369208607024 12 0.05548195290204541 0 0.05181358230324447 13 0.05167491505077975 17 0.0494920356197487 9 0.0467909251535302 20 0.046483064178508504 16 0.03514893137477787 15 0.030210240788619683 23 0.027028632107536883 24 0.025785838050786405 4 0.012875810111438518 5 0.012517397884850198 6 0.010358956630478972 3 0.007809386404423249 7 0.007765475784209311 8 0.007656548811193891 1 0.00757543799261054 2 0.0071943545687298315 __DUMMY__ 0.0028800466754470176 false 1.0
143 9 0.07274 22 0.067457 0 0.065091 17 0.05934 18 0.05308 10 0.052262 4 0.049984 6 0.049374 5 0.049324 7 0.04874 8 0.048599 1 0.048575 2 0.048054 3 0.047851 11 0.047204 21 0.039222 19 0.036743 16 0.028992 23 0.026773 24 0.019007 12 0.0118 15 0.010522 14 0.010164 20 0.009102 9 0.07274 22 0.067457 0 0.065091 17 0.05934 18 0.05308 10 0.052262 4 0.049984 6 0.049374 5 0.049324 7 0.04874 8 0.048599 1 0.048575 2 0.048054 3 0.047851 11 0.047204 21 0.039222 19 0.036743 16 0.028992 23 0.026773 24 0.019007 12 0.0118 15 0.010522 14 0.010164 20 0.009102 9 0.06599334822147854 22 0.0634532650487299 0 0.05674064064145801 17 0.053912258628749196 18 0.05095145279485226 4 0.04914861337998914 5 0.048565713633540855 6 0.048199025898602456 7 0.04766894874917602 8 0.04761044711464899 1 0.047506801738791106 10 0.04719033089664581 3 0.047074965756962586 2 0.04695396188351238 11 0.0437458606901768 21 0.04131004525569638 19 0.03756530401788809 23 0.03305060982287252 16 0.02839938478650809 24 0.025875879835334552 12 0.016595410675852375 20 0.015714649895191318 15 0.01488345656812506 14 0.014841815596681948 13 0.005565599022089151 __DUMMY__ 0.0014822094464465693 false 1.0
385 10 0.083737 18 0.072025 22 0.066583 9 0.064665 11 0.063711 21 0.058535 14 0.055858 0 0.053604 13 0.04994 12 0.039807 4 0.034941 17 0.0347 5 0.034275 6 0.032657 19 0.03253 7 0.029813 8 0.029748 1 0.029457 3 0.029118 2 0.028863 23 0.025702 15 0.024715 20 0.014489 24 0.010528 10 0.083737 18 0.072025 22 0.066583 9 0.064665 11 0.063711 21 0.058535 14 0.055858 0 0.053604 13 0.04994 12 0.039807 4 0.034941 17 0.0347 5 0.034275 6 0.032657 19 0.03253 7 0.029813 8 0.029748 1 0.029457 3 0.029118 2 0.028863 23 0.025702 15 0.024715 20 0.014489 24 0.010528 10 0.07088486989665009 18 0.0674758464441684 22 0.0642218075564592 11 0.060116019695687965 21 0.059622152818561605 9 0.05669661383910725 14 0.049823601335980364 0 0.04946322954875345 13 0.04608582876434317 12 0.04348336832134088 19 0.041037075232370775 17 0.03887300386617796 4 0.032842412823223255 5 0.03231448078222604 23 0.030826215949692364 6 0.030761895509710625 7 0.02822757257885847 8 0.02818630664910978 1 0.028003849646400007 3 0.027687578920383742 2 0.027505967911318305 15 0.025113421383853154 20 0.024075960426256815 24 0.020683078923065507 16 0.013112961178596259 __DUMMY__ 0.002874879997704813 false 1.0
386 14 0.146504 15 0.120707 13 0.117334 10 0.093165 18 0.085359 12 0.061893 20 0.057363 21 0.056361 11 0.047654 19 0.042952 22 0.038269 9 0.029944 23 0.025609 24 0.020859 0 0.015812 17 0.015432 16 0.007423 4 0.005829 5 0.005567 6 0.003251 8 7.69E-4 1 7.5E-4 3 6.02E-4 7 5.93E-4 14 0.146504 15 0.120707 13 0.117334 10 0.093165 18 0.085359 12 0.061893 20 0.057363 21 0.056361 11 0.047654 19 0.042952 22 0.038269 9 0.029944 23 0.025609 24 0.020859 0 0.015812 17 0.015432 16 0.007423 4 0.005829 5 0.005567 6 0.003251 8 7.69E-4 1 7.5E-4 3 6.02E-4 7 5.93E-4 14 0.10645093232624185 13 0.09006739986507345 15 0.0843674839548588 18 0.07615016114138526 10 0.07491677203926583 12 0.06080889690047097 21 0.060407975656916156 20 0.054001060252674545 11 0.04985731794217958 19 0.04945922767157326 22 0.046142650232513516 23 0.03313409824031271 9 0.032483166916237476 24 0.029944989638147512 17 0.026186192525858534 0 0.023743895710331538 16 0.018609964314198525 4 0.013563377010944365 5 0.013243998741719196 6 0.011199662706811078 8 0.008584764529601734 7 0.008461178094046805 1 0.008460424179636467 3 0.008347889010919058 2 0.007980020031587319 __DUMMY__ 0.003426500366494472 false 1.0
144 9 0.074319 22 0.070094 0 0.060619 17 0.056279 18 0.054418 4 0.05088 10 0.05048 5 0.049883 6 0.049467 8 0.048695 7 0.048585 1 0.048317 3 0.048078 2 0.047778 21 0.04475 11 0.044603 19 0.037068 23 0.029807 16 0.022958 24 0.022263 12 0.013781 14 0.010335 20 0.00992 15 0.006623 9 0.074319 22 0.070094 0 0.060619 17 0.056279 18 0.054418 4 0.05088 10 0.05048 5 0.049883 6 0.049467 8 0.048695 7 0.048585 1 0.048317 3 0.048078 2 0.047778 21 0.04475 11 0.044603 19 0.037068 23 0.029807 16 0.022958 24 0.022263 12 0.013781 14 0.010335 20 0.00992 15 0.006623 9 0.06668188994116633 22 0.0625318976770621 0 0.05367783599372989 4 0.051591574942726065 17 0.05145966619124982 5 0.05086657422890265 6 0.05043229951086084 8 0.04992180065862933 7 0.04988334915245568 1 0.04970836520002409 18 0.04944480787105387 3 0.049351920620560916 2 0.04911353539606529 10 0.04460149886683019 21 0.04164919859266309 11 0.039841974898572406 23 0.0357084779108977 19 0.03522685005993024 24 0.027399831012100168 16 0.02462406238152668 12 0.01637739645641258 20 0.015214933734580674 14 0.014283451317881491 15 0.013659739503201885 13 0.005323290794350711 __DUMMY__ 0.001423777086565375 false 1.0
387 10 0.10203 18 0.100604 11 0.077949 19 0.073817 22 0.072043 21 0.068798 14 0.064722 0 0.063174 13 0.056486 17 0.05602 12 0.05283 9 0.052281 20 0.043945 16 0.037834 15 0.036564 23 0.015023 24 0.011228 4 0.005267 5 0.00486 6 0.003393 7 4.97E-4 8 3.46E-4 1 2.71E-4 3 1.7E-5 10 0.10203 18 0.100604 11 0.077949 19 0.073817 22 0.072043 21 0.068798 14 0.064722 0 0.063174 13 0.056486 17 0.05602 12 0.05283 9 0.052281 20 0.043945 16 0.037834 15 0.036564 23 0.015023 24 0.011228 4 0.005267 5 0.00486 6 0.003393 7 4.97E-4 8 3.46E-4 1 2.71E-4 3 1.7E-5 18 0.08936804486226697 10 0.08786356585919837 11 0.06991885367300267 22 0.0691378150137153 19 0.06687631919971504 21 0.065565494652738 14 0.058765770861060905 0 0.055922700635570345 17 0.051349753112635683 9 0.05120265339507195 13 0.049746365192789806 12 0.048571781639405856 20 0.042091734346532905 15 0.03517655501798271 16 0.03373267700296736 23 0.022200256582703706 24 0.018800003710198174 4 0.013433931129515414 5 0.013029062443576852 6 0.011223973771242351 7 0.00878960691901611 8 0.00871072677591822 3 0.008701096888391727 1 0.008600978343782862 2 0.008279775474981554 __DUMMY__ 0.002940503496019217 false 1.0
145 9 0.071627 22 0.066744 0 0.060703 18 0.056548 17 0.054717 10 0.050594 4 0.050446 7 0.050041 6 0.049784 5 0.049434 8 0.049324 1 0.048848 3 0.048286 2 0.047935 11 0.042584 21 0.039456 19 0.034868 23 0.032404 16 0.025152 24 0.022039 15 0.014858 14 0.013076 20 0.012803 12 0.007729 9 0.071627 22 0.066744 0 0.060703 18 0.056548 17 0.054717 10 0.050594 4 0.050446 7 0.050041 6 0.049784 5 0.049434 8 0.049324 1 0.048848 3 0.048286 2 0.047935 11 0.042584 21 0.039456 19 0.034868 23 0.032404 16 0.025152 24 0.022039 15 0.014858 14 0.013076 20 0.012803 12 0.007729 9 0.06539503076468177 22 0.061349320179753926 0 0.05409054297283984 17 0.05122729788393868 4 0.0511349772331898 18 0.050526773618311274 5 0.0504033417976129 6 0.05034150325748873 7 0.05028449520316169 8 0.049947044927245506 1 0.04968198667337994 3 0.04915482880468793 2 0.04892099437378945 10 0.04455810788376218 21 0.03951957020988137 11 0.03937968680649955 23 0.03673379538353808 19 0.03464455625816822 24 0.02734642236939285 16 0.026178516644604553 15 0.017028849072418153 20 0.016553240906460126 14 0.015130039219473956 12 0.013839607073836082 13 0.005110981128670952 __DUMMY__ 0.0015184893532124598 false 1.0
388 19 0.106964 18 0.08004 20 0.078901 16 0.077882 21 0.075306 22 0.066777 11 0.062792 17 0.062612 12 0.060596 24 0.05481 10 0.052449 23 0.047028 0 0.042612 14 0.032161 13 0.029529 9 0.026625 15 0.026536 4 0.0053 5 0.004824 6 0.002 3 0.001978 7 9.05E-4 8 7.39E-4 1 6.31E-4 19 0.106964 18 0.08004 20 0.078901 16 0.077882 21 0.075306 22 0.066777 11 0.062792 17 0.062612 12 0.060596 24 0.05481 10 0.052449 23 0.047028 0 0.042612 14 0.032161 13 0.029529 9 0.026625 15 0.026536 4 0.0053 5 0.004824 6 0.002 3 0.001978 7 9.05E-4 8 7.39E-4 1 6.31E-4 19 0.08891829612245537 21 0.07307857723903272 18 0.07227529944814036 20 0.06811103040691896 22 0.06415543286237868 16 0.060836136945607855 12 0.05966905723765484 11 0.05914774502318617 17 0.05414853793226797 24 0.05270605821117703 10 0.048648377224485034 23 0.04694518092507339 0 0.03882489402973435 14 0.03534835675811082 13 0.03472821931077025 9 0.030192962662348624 15 0.025305776872254198 4 0.013541686293709278 5 0.013082433633936607 6 0.010479875796545463 3 0.009733630172912516 7 0.008924661808066607 8 0.008830927284018868 1 0.008675327439282603 2 0.008211180926546414 __DUMMY__ 0.005480337433385126 false 1.0
146 9 0.073342 22 0.065435 0 0.059384 17 0.055941 18 0.054779 4 0.051193 7 0.050601 1 0.050455 6 0.050222 8 0.050058 5 0.049827 10 0.04932 3 0.048508 2 0.048153 11 0.04212 21 0.039313 19 0.035164 23 0.031323 16 0.024487 24 0.022593 15 0.014785 14 0.013012 20 0.011696 12 0.008292 9 0.073342 22 0.065435 0 0.059384 17 0.055941 18 0.054779 4 0.051193 7 0.050601 1 0.050455 6 0.050222 8 0.050058 5 0.049827 10 0.04932 3 0.048508 2 0.048153 11 0.04212 21 0.039313 19 0.035164 23 0.031323 16 0.024487 24 0.022593 15 0.014785 14 0.013012 20 0.011696 12 0.008292 9 0.06617669395325448 22 0.06075255163488547 0 0.05348922603003741 17 0.0517851667241042 4 0.05147541413086908 5 0.05058241501586033 6 0.050541089019614766 7 0.050539692599610046 1 0.05041444144714284 8 0.05028155762783922 18 0.04972033695580801 3 0.04925595638487811 2 0.04902029894403073 10 0.04397731643585345 21 0.03945433212959889 11 0.03916812670772993 23 0.03624099029419354 19 0.03477943528087849 24 0.027598916139018315 16 0.025875352280127554 15 0.01699555001818071 20 0.016048611770809552 14 0.015100845253716747 12 0.014096221805857739 13 0.005110974139418122 __DUMMY__ 0.0015184872766823884 false 1.0
389 14 0.092172 10 0.090288 13 0.088482 18 0.08244 21 0.068777 11 0.068003 22 0.065122 12 0.063517 9 0.053565 15 0.047422 0 0.046957 19 0.038797 17 0.03186 20 0.022887 23 0.019628 4 0.01938 5 0.018983 6 0.017644 8 0.012332 7 0.012076 2 0.011698 1 0.011665 3 0.010268 24 0.00604 14 0.092172 10 0.090288 13 0.088482 18 0.08244 21 0.068777 11 0.068003 22 0.065122 12 0.063517 9 0.053565 15 0.047422 0 0.046957 19 0.038797 17 0.03186 20 0.022887 23 0.019628 4 0.01938 5 0.018983 6 0.017644 8 0.012332 7 0.012076 2 0.011698 1 0.011665 3 0.010268 24 0.00604 13 0.08063237805824736 14 0.07706534061418482 18 0.0720438952521322 10 0.07162040066766874 21 0.07092855500291202 12 0.06881719191346462 11 0.06350542415718449 22 0.06020969193185587 19 0.046061259777305553 9 0.043343172096530734 0 0.04013282838105601 15 0.03980765442665072 20 0.03458584643817719 17 0.03295852072670244 23 0.031075719025072508 24 0.02252854091222822 4 0.020653294227450745 5 0.02025855452397717 6 0.018911055682760497 8 0.014336099068116477 7 0.014182179870711156 1 0.01393979643718785 2 0.013814349926877356 16 0.012924935407233175 3 0.012737725091788233 __DUMMY__ 0.0029255903825236114 false 1.0
147 22 0.0761 9 0.073093 0 0.059517 18 0.058919 21 0.058192 11 0.055486 10 0.055379 17 0.050485 4 0.046194 5 0.045088 6 0.04405 7 0.042739 8 0.042665 1 0.042421 3 0.041778 2 0.041105 19 0.038135 23 0.030854 12 0.024433 24 0.022733 14 0.016366 16 0.013181 13 0.011098 20 0.00999 22 0.0761 9 0.073093 0 0.059517 18 0.058919 21 0.058192 11 0.055486 10 0.055379 17 0.050485 4 0.046194 5 0.045088 6 0.04405 7 0.042739 8 0.042665 1 0.042421 3 0.041778 2 0.041105 19 0.038135 23 0.030854 12 0.024433 24 0.022733 14 0.016366 16 0.013181 13 0.011098 20 0.00999 22 0.06661489428520635 9 0.06610470191440249 0 0.05382187889028896 18 0.052275706282587 21 0.049542416323578406 17 0.049133876524587186 4 0.048475920847324945 5 0.047702436321362375 10 0.047562215845972186 6 0.04692878590398368 11 0.04676666136280576 7 0.04603163850145095 8 0.04599267242510996 1 0.045827568614106404 3 0.04527888949243313 2 0.044892633731715696 19 0.03650919527200056 23 0.0355987886905557 24 0.02745059295472439 12 0.022723800806847883 16 0.020095054072525834 14 0.017276250490918858 20 0.015063709271250711 13 0.011229642230675446 15 0.009458140458595261 __DUMMY__ 0.0016419284849898126 false 1.0
148 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06714264542144462 22 0.05765051164402123 4 0.05485231070295096 6 0.05433136242917051 7 0.05413368406882552 8 0.05405667527177512 5 0.053991406909441444 1 0.05394788938640188 0 0.053428678837133356 2 0.05287644892724849 3 0.052712909740026626 17 0.050683685391786824 18 0.04603292010641868 10 0.042610245412027875 23 0.03667315541595687 21 0.035627214167610194 11 0.03492016008940165 19 0.02955303284689784 24 0.02551900746164238 16 0.024057314281512185 15 0.017436470887691107 14 0.01457378915411192 12 0.012760145184506116 20 0.012513896432003844 13 0.0057371840059969635 __DUMMY__ 0.002177255823995768 false 1.0
149 9 0.059207 3 0.058401 4 0.056291 5 0.055848 7 0.054891 1 0.054613 8 0.054551 2 0.053689 22 0.053281 6 0.051811 23 0.050421 18 0.045333 24 0.044761 10 0.040767 15 0.039042 21 0.036233 19 0.034617 14 0.032367 20 0.031873 0 0.027684 17 0.027239 11 0.025178 16 0.010174 13 0.001729 9 0.059207 3 0.058401 4 0.056291 5 0.055848 7 0.054891 1 0.054613 8 0.054551 2 0.053689 22 0.053281 6 0.051811 23 0.050421 18 0.045333 24 0.044761 10 0.040767 15 0.039042 21 0.036233 19 0.034617 14 0.032367 20 0.031873 0 0.027684 17 0.027239 11 0.025178 16 0.010174 13 0.001729 9 0.05744133516222116 22 0.05542602307615588 3 0.0511040682176254 4 0.05086354833221299 5 0.05038811058041624 7 0.04913918572983845 8 0.04899571961011422 1 0.04893519253242408 2 0.048233054834400026 18 0.04822002974843741 6 0.04770202699033047 23 0.045633136281384615 10 0.042160119764819835 21 0.04038680384260479 24 0.04035049592031214 19 0.038404556334452646 17 0.036425810156245325 0 0.03573297593758515 11 0.032071201456697424 15 0.031845875935812853 20 0.030472627614867298 14 0.02878468473834386 16 0.019213678228565057 12 0.011516560253217761 13 0.008073928456336001 __DUMMY__ 0.002479250264578887 false 1.0
40 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05885923426906926 4 0.05879766066231564 6 0.05874206382779295 7 0.05871832418476078 8 0.05859300336397355 5 0.05843128698847786 2 0.05798073389787106 9 0.05741720802704833 3 0.05738592818777241 22 0.04825457797106694 23 0.046817145001257505 17 0.04604970040203605 0 0.044480428232671135 18 0.036559677643583734 24 0.03453692796496405 21 0.032221524293913464 10 0.029081666574297615 19 0.02724785581934979 11 0.027012286013367262 16 0.02677808680628995 20 0.018807795278073237 15 0.018044403909255026 12 0.017885052335079827 14 0.01077533331984473 13 0.008143181075243233 __DUMMY__ 0.0023789139506245637 false 1.0
41 2 0.073987 3 0.073485 1 0.072767 8 0.072462 7 0.072438 5 0.072388 6 0.072073 4 0.071957 9 0.058558 23 0.053553 22 0.039749 17 0.039526 24 0.038245 0 0.037735 18 0.023509 21 0.021197 16 0.019783 15 0.017056 10 0.016651 20 0.014389 19 0.014357 11 0.012423 12 0.008547 14 0.003163 2 0.073987 3 0.073485 1 0.072767 8 0.072462 7 0.072438 5 0.072388 6 0.072073 4 0.071957 9 0.058558 23 0.053553 22 0.039749 17 0.039526 24 0.038245 0 0.037735 18 0.023509 21 0.021197 16 0.019783 15 0.017056 10 0.016651 20 0.014389 19 0.014357 11 0.012423 12 0.008547 14 0.003163 4 0.05879907861073546 5 0.058723359382973246 6 0.05868599981683045 2 0.0586575641875062 1 0.05840543241696258 8 0.058332507568413225 7 0.058313196485309166 3 0.05805951325381198 9 0.05711869944001239 22 0.048317645041529515 23 0.04670312996474182 17 0.04585641556905708 0 0.044433628890142525 18 0.03640903629759853 24 0.03449105114094831 21 0.03210054903168289 10 0.02918505482321193 19 0.027177870289385165 11 0.027103620639492492 16 0.026787834063241648 20 0.018794824205229453 15 0.018144542093826866 12 0.017975919166167562 14 0.010901427717657744 13 0.00814318485012867 __DUMMY__ 0.0023789150534033847 false 1.0
42 3 0.072394 2 0.071918 1 0.070766 5 0.070705 8 0.070477 7 0.070455 4 0.070301 6 0.069576 9 0.057823 23 0.053874 24 0.041643 22 0.041029 17 0.036679 0 0.034474 18 0.024974 21 0.023847 15 0.019253 20 0.01842 16 0.018227 10 0.01786 19 0.01722 11 0.013042 12 0.008298 14 0.006745 3 0.072394 2 0.071918 1 0.070766 5 0.070705 8 0.070477 7 0.070455 4 0.070301 6 0.069576 9 0.057823 23 0.053874 24 0.041643 22 0.041029 17 0.036679 0 0.034474 18 0.024974 21 0.023847 15 0.019253 20 0.01842 16 0.018227 10 0.01786 19 0.01722 11 0.013042 12 0.008298 14 0.006745 4 0.05788378339557393 5 0.0577950524359059 2 0.05741272582410092 3 0.05741245492908485 6 0.05721886634965745 1 0.05718870353142989 8 0.057119408063367835 7 0.05710750028418052 9 0.056446803853323055 22 0.049080312813248914 23 0.04733239989184669 17 0.04360924877669878 0 0.04191013145700672 18 0.037179209610883855 24 0.03691192802312922 21 0.03416312944236821 10 0.029622948305930683 19 0.028788142446486767 11 0.027407956780259205 16 0.02526641807589378 20 0.02139076027042037 15 0.019137807123519885 12 0.0183633385294597 14 0.013238019772204282 13 0.008591029662882981 __DUMMY__ 0.002421920351135642 false 1.0
43 22 0.094702 21 0.081371 11 0.074964 9 0.062282 19 0.054844 18 0.054358 17 0.04772 0 0.047682 10 0.045286 24 0.044538 4 0.036404 5 0.035237 12 0.033631 23 0.03324 3 0.032902 6 0.030868 7 0.030085 8 0.030029 1 0.029731 2 0.029347 14 0.023502 16 0.02204 20 0.019643 13 0.005593 22 0.094702 21 0.081371 11 0.074964 9 0.062282 19 0.054844 18 0.054358 17 0.04772 0 0.047682 10 0.045286 24 0.044538 4 0.036404 5 0.035237 12 0.033631 23 0.03324 3 0.032902 6 0.030868 7 0.030085 8 0.030029 1 0.029731 2 0.029347 14 0.023502 16 0.02204 20 0.019643 13 0.005593 22 0.08147766807844822 21 0.0730176773471842 11 0.06623419855554767 18 0.05610849705346567 9 0.05550194446636842 19 0.05490884926116165 17 0.04768812350150491 0 0.046344374126055486 10 0.04582860392112687 24 0.04241315177638102 12 0.038248050115286654 23 0.036478115201216126 4 0.03463620461870226 5 0.033808707114167134 3 0.030896840007845806 6 0.0306446453180067 7 0.029421992185608405 8 0.029367198872470388 1 0.02911799374499756 2 0.02867216679857723 16 0.027532352428459833 20 0.027309547639649982 14 0.02663267522082751 13 0.015894772910706456 15 0.008191958024912065 __DUMMY__ 0.003623691711321844 false 1.0
44 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05888848191526982 4 0.05881989023213897 6 0.058770600335402746 7 0.05874724060050891 8 0.05862204811510505 5 0.058454082091897716 2 0.05800982046218805 9 0.057417809379893374 3 0.05741005009234543 22 0.04821006446271032 23 0.04682473521281422 17 0.04605568136389159 0 0.04448680218424751 18 0.03654474700207022 24 0.0345179179003944 21 0.03216715866546339 10 0.02907145647599802 19 0.027219024642446916 11 0.026966441729835925 16 0.026787002406251228 20 0.018799793779943695 15 0.01806325338241999 12 0.017864006975773426 14 0.010759780564228444 13 0.008141836704033897 __DUMMY__ 0.0023802733227270643 false 1.0
45 22 0.084797 9 0.074236 0 0.066462 11 0.065736 17 0.059588 21 0.059424 18 0.057991 10 0.056053 19 0.044709 4 0.042776 5 0.041643 6 0.040365 8 0.03947 7 0.039292 1 0.039136 3 0.03912 2 0.038123 16 0.025104 24 0.024228 23 0.023474 12 0.01874 14 0.012515 20 0.006884 15 1.34E-4 22 0.084797 9 0.074236 0 0.066462 11 0.065736 17 0.059588 21 0.059424 18 0.057991 10 0.056053 19 0.044709 4 0.042776 5 0.041643 6 0.040365 8 0.03947 7 0.039292 1 0.039136 3 0.03912 2 0.038123 16 0.025104 24 0.024228 23 0.023474 12 0.01874 14 0.012515 20 0.006884 15 1.34E-4 22 0.07491800480499153 9 0.06514117656547029 0 0.060515776425841446 11 0.05883173113465302 17 0.05734463788581115 18 0.05705307766882823 21 0.05523544684156811 10 0.052113804386337365 19 0.04619021813831693 4 0.04077018754637451 5 0.03994616765690554 6 0.03906962252998621 8 0.03796127888841557 7 0.037852002023303605 1 0.0376645568729234 3 0.03731085376498024 2 0.03691060036268509 16 0.03064076368347225 23 0.02917619570818611 24 0.02723757747443745 12 0.024638484664576157 14 0.017249032604134264 20 0.015917160604755065 15 0.009015911537080265 13 0.008558943575775272 __DUMMY__ 0.0027367866501907968 false 1.0
46 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05888848191526982 4 0.058819890232138974 6 0.05877060033540276 7 0.05874724060050891 8 0.05862204811510505 5 0.05845408209189772 2 0.05800982046218805 9 0.05741780937989338 3 0.057410050092345434 22 0.04821006446271032 23 0.0468247352128142 17 0.04605568136389159 0 0.04448680218424752 18 0.03654474700207023 24 0.0345179179003944 21 0.03216715866546339 10 0.029071456475998025 19 0.027219024642446916 11 0.026966441729835925 16 0.026787002406251228 20 0.018799793779943695 15 0.018063253382419993 12 0.017864006975773433 14 0.010759780564228444 13 0.008141836704033897 __DUMMY__ 0.0023802733227270634 false 1.0
47 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06738658830398706 22 0.05808912507748624 4 0.05433467109833565 0 0.05416506799104608 6 0.05384286481891218 7 0.05360878441161315 8 0.05353697077434824 5 0.053467798553506134 1 0.05341400805064906 2 0.05234754169859515 3 0.05214885061672014 17 0.051303697200999566 18 0.04672078623123269 10 0.043407298644185854 23 0.03607124078478338 21 0.035786320979539765 11 0.03556877868261303 19 0.030028051826563755 24 0.024942755365827667 16 0.024523297788025877 15 0.01747703210028774 14 0.014687524675471623 12 0.01278451761046145 20 0.012379729274747014 13 0.005773448240930045 __DUMMY__ 0.002203249199131518 false 1.0
48 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05887756463335699 4 0.058809721117362386 6 0.05876071004168686 7 0.05873620470284466 8 0.05861114151662808 5 0.05844442963682676 2 0.057999611420948824 9 0.057400954276934923 3 0.05739912089717176 22 0.048206564096816194 23 0.046831581679233424 17 0.04605579073520673 0 0.044481116426894535 18 0.03654605217635585 24 0.03452705082295905 21 0.032175505668526054 10 0.029066590975948627 19 0.02723110666601746 11 0.02697263432631029 16 0.026799262066386335 20 0.018814767778704 15 0.018065669046970566 12 0.017883554766745847 14 0.010764058169813705 13 0.00815567212628877 __DUMMY__ 0.0023835642270612608 false 1.0
49 18 0.100112 19 0.085179 10 0.083378 20 0.081903 14 0.066468 21 0.060412 12 0.055048 22 0.054725 15 0.053518 13 0.053224 11 0.05315 16 0.049719 17 0.048159 24 0.038039 0 0.036906 23 0.034015 9 0.031554 4 0.004912 5 0.004546 6 0.002393 3 0.001387 7 0.001078 1 1.07E-4 8 6.7E-5 18 0.100112 19 0.085179 10 0.083378 20 0.081903 14 0.066468 21 0.060412 12 0.055048 22 0.054725 15 0.053518 13 0.053224 11 0.05315 16 0.049719 17 0.048159 24 0.038039 0 0.036906 23 0.034015 9 0.031554 4 0.004912 5 0.004546 6 0.002393 3 0.001387 7 0.001078 1 1.07E-4 8 6.7E-5 18 0.08993735828969499 10 0.07612457814120632 19 0.0751937405411132 20 0.06656619918419505 21 0.060044066083209134 14 0.0598966304244352 22 0.058639601968234374 11 0.05309871205951424 12 0.04770847966574945 15 0.04715491868360937 17 0.04653264103874893 13 0.04572075659537706 16 0.04103363139218971 9 0.038952525427102994 0 0.03864746003804608 24 0.03636203780316011 23 0.034626822913054876 4 0.013260547962410506 5 0.012843629067071476 6 0.010356155793130224 3 0.009876846504282256 7 0.009091477389611738 8 0.008632897323268277 1 0.00853216007149344 2 0.008295726578155168 __DUMMY__ 0.002870399061935785 false 1.0
390 10 0.111658 18 0.109467 19 0.087257 22 0.078679 11 0.073377 0 0.071006 17 0.068457 9 0.060218 14 0.058666 16 0.054045 21 0.053565 15 0.051206 20 0.042374 13 0.027368 12 0.02358 23 0.013449 4 0.00428 5 0.00415 24 0.003054 3 0.001601 6 0.001504 8 5.32E-4 7 3.4E-4 2 1.66E-4 10 0.111658 18 0.109467 19 0.087257 22 0.078679 11 0.073377 0 0.071006 17 0.068457 9 0.060218 14 0.058666 16 0.054045 21 0.053565 15 0.051206 20 0.042374 13 0.027368 12 0.02358 23 0.013449 4 0.00428 5 0.00415 24 0.003054 3 0.001601 6 0.001504 8 5.32E-4 7 3.4E-4 2 1.66E-4 18 0.08809523570053998 10 0.08417882494753681 19 0.0728723521826682 22 0.06963965085835 11 0.06371889739634627 17 0.057527251432344516 0 0.05703428203465825 21 0.05621213561854939 9 0.05235580931884806 14 0.05073144385428298 16 0.04475488604341445 20 0.042826291008171716 15 0.04135375146830619 12 0.03394696607470355 13 0.03210789265120861 23 0.02590323356003531 24 0.019530566567922257 4 0.015652655286494482 5 0.015361798935184726 6 0.013197859211130595 3 0.012412158955688733 8 0.011852718620499565 7 0.011760730844762996 1 0.011507033880532022 2 0.011392497278255533 __DUMMY__ 0.004073076269564864 false 1.0
391 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.08548676152261457 10 0.08124292433935996 21 0.07136056732558739 11 0.07053695683722784 19 0.06983176116551174 22 0.06931143778981605 14 0.05618677589717789 12 0.055543208654626676 0 0.051785958600729216 13 0.05165771565284166 17 0.049435365027415266 20 0.04695707393676623 9 0.046736753654505234 16 0.03507006979983518 15 0.030220561453983497 23 0.02640254131193652 24 0.02590065368607597 4 0.012786810618150431 5 0.012453499712641041 6 0.010241124317405727 3 0.007853516475438098 8 0.007677607880780913 7 0.007656641868951288 1 0.007554846635116364 2 0.007237950968049358 __DUMMY__ 0.0028709148674558402 false 1.0
392 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.094049 10 0.091349 19 0.077787 11 0.076503 21 0.075648 22 0.071876 12 0.059881 14 0.059661 0 0.056076 13 0.056061 17 0.053031 20 0.051653 9 0.046358 16 0.039464 15 0.030165 24 0.022727 23 0.021846 4 0.005688 5 0.005428 6 0.003164 3 5.35E-4 8 4.17E-4 7 3.31E-4 1 3.02E-4 18 0.08548676152261457 10 0.08124292433935996 21 0.07136056732558739 11 0.07053695683722784 19 0.06983176116551174 22 0.06931143778981602 14 0.056186775897177896 12 0.05554320865462668 0 0.05178595860072923 13 0.05165771565284167 17 0.049435365027415266 20 0.04695707393676623 9 0.04673675365450523 16 0.03507006979983518 15 0.0302205614539835 23 0.026402541311936523 24 0.025900653686075973 4 0.012786810618150431 5 0.01245349971264104 6 0.010241124317405731 3 0.007853516475438102 8 0.007677607880780914 7 0.007656641868951292 1 0.007554846635116364 2 0.007237950968049356 __DUMMY__ 0.0028709148674558424 false 1.0
150 17 0.091141 0 0.082833 16 0.078798 9 0.054677 22 0.053475 18 0.052628 11 0.048835 19 0.04804 10 0.042729 6 0.042416 8 0.039548 1 0.039404 7 0.039327 2 0.038175 4 0.037002 5 0.036512 3 0.031808 12 0.029212 21 0.028288 23 0.026214 15 0.021433 20 0.014616 13 0.01201 24 0.01088 17 0.091141 0 0.082833 16 0.078798 9 0.054677 22 0.053475 18 0.052628 11 0.048835 19 0.04804 10 0.042729 6 0.042416 8 0.039548 1 0.039404 7 0.039327 2 0.038175 4 0.037002 5 0.036512 3 0.031808 12 0.029212 21 0.028288 23 0.026214 15 0.021433 20 0.014616 13 0.01201 24 0.01088 17 0.07794548493904556 0 0.07173594286610692 16 0.06454876112342336 22 0.0542084179289971 9 0.05396791775422466 18 0.05146526210714506 11 0.046512636743135966 19 0.04609049320290682 6 0.04301272828970188 10 0.04202080584787646 8 0.04083414569495054 7 0.0406829851826689 1 0.04066746219065397 2 0.03979743795225739 4 0.039589967089061893 5 0.03910648245435125 3 0.03543530866107707 21 0.03274357622861824 23 0.031309543051540274 12 0.02833361925014748 15 0.02168390176777502 20 0.018612078869450367 24 0.018498889156092786 13 0.01283517985171521 14 0.00613193838926684 __DUMMY__ 0.0022290334078090544 false 1.0
393 10 0.102238 18 0.100642 11 0.077973 19 0.073899 22 0.071783 21 0.068922 14 0.064039 0 0.063114 13 0.056505 17 0.055886 12 0.052459 9 0.052199 20 0.043652 16 0.037655 15 0.036177 23 0.015974 24 0.010934 4 0.005507 5 0.005175 6 0.003615 7 6.85E-4 8 4.94E-4 1 4.54E-4 3 1.8E-5 10 0.102238 18 0.100642 11 0.077973 19 0.073899 22 0.071783 21 0.068922 14 0.064039 0 0.063114 13 0.056505 17 0.055886 12 0.052459 9 0.052199 20 0.043652 16 0.037655 15 0.036177 23 0.015974 24 0.010934 4 0.005507 5 0.005175 6 0.003615 7 6.85E-4 8 4.94E-4 1 4.54E-4 3 1.8E-5 18 0.08938235624877028 10 0.08795563335145457 11 0.06992580439208868 22 0.06901768924417721 19 0.06690898319691098 21 0.06561749275716795 14 0.05845261838413914 0 0.05589423034715405 17 0.05128747563528569 9 0.05116713984603771 13 0.049750923427773805 12 0.048396681277226426 20 0.041954484438972095 15 0.035001917237458685 16 0.03364835514527631 23 0.02263544462711954 24 0.018665397536611682 4 0.013547588140326285 5 0.01317692304481258 6 0.011329440920236333 7 0.008879843658369174 8 0.008782680413015038 3 0.008705983132773664 1 0.008688902425365654 2 0.008284125399788064 __DUMMY__ 0.0029418857716884263 false 1.0
151 21 0.098428 19 0.090995 12 0.080123 18 0.077258 22 0.075216 20 0.071127 11 0.069542 24 0.058284 23 0.051244 10 0.050929 13 0.04822 17 0.044579 16 0.044159 14 0.039813 0 0.034354 9 0.031492 4 0.008607 5 0.008081 15 0.007941 6 0.003915 3 0.002478 7 0.001347 8 0.001218 1 6.5E-4 21 0.098428 19 0.090995 12 0.080123 18 0.077258 22 0.075216 20 0.071127 11 0.069542 24 0.058284 23 0.051244 10 0.050929 13 0.04822 17 0.044579 16 0.044159 14 0.039813 0 0.034354 9 0.031492 4 0.008607 5 0.008081 15 0.007941 6 0.003915 3 0.002478 7 0.001347 8 0.001218 1 6.5E-4 21 0.06414392248122101 22 0.06147729809437414 19 0.05789593743121572 18 0.056382588488154126 23 0.04905017901837469 11 0.047209635678020945 12 0.04688128167624024 24 0.04653790363599596 9 0.04507724567772836 20 0.044390762115207406 17 0.044193277019504984 10 0.04005051115777319 0 0.03851977999076592 4 0.03480306370401525 5 0.0343693770550177 16 0.03390220300090607 6 0.032268381202090045 3 0.03126975930798601 7 0.031068506731799703 8 0.030965397689682164 1 0.030772717205378247 2 0.03012420365794565 13 0.027087484505452328 14 0.025916641211129323 15 0.01417657199328338 __DUMMY__ 0.0014653702707374302 false 1.0
394 18 0.094794 10 0.090482 19 0.07718 11 0.075784 21 0.075122 22 0.07181 12 0.059804 14 0.059603 0 0.055864 13 0.055613 17 0.052903 20 0.051426 9 0.046417 16 0.039655 15 0.030471 24 0.022699 23 0.022655 4 0.005974 5 0.005558 6 0.003613 7 8.87E-4 8 6.21E-4 1 5.39E-4 3 5.26E-4 18 0.094794 10 0.090482 19 0.07718 11 0.075784 21 0.075122 22 0.07181 12 0.059804 14 0.059603 0 0.055864 13 0.055613 17 0.052903 20 0.051426 9 0.046417 16 0.039655 15 0.030471 24 0.022699 23 0.022655 4 0.005974 5 0.005558 6 0.003613 7 8.87E-4 8 6.21E-4 1 5.39E-4 3 5.26E-4 18 0.08583025629229328 10 0.08085282688422786 21 0.07111999441549365 11 0.07021063134526297 19 0.06955628160911184 22 0.06928198239636416 14 0.0561621099641481 12 0.05550689329140906 0 0.05169194331593344 13 0.05145405940745159 17 0.04937867477307476 20 0.046853204828465445 9 0.04676506880555243 16 0.03515793511094561 15 0.03036171211066677 23 0.026768804352072444 24 0.02588448580014142 4 0.012915431128659595 5 0.012510998966780195 6 0.010444184898129247 7 0.007908464780969666 3 0.007847597422840686 8 0.00776891150838371 1 0.00766120909323244 2 0.0072362253298621304 __DUMMY__ 0.002870112168527458 false 1.0
152 21 0.0829 22 0.070137 12 0.062128 11 0.061082 18 0.055142 9 0.051173 13 0.050983 10 0.050824 23 0.044265 14 0.043533 19 0.041908 24 0.041305 4 0.036361 5 0.036173 0 0.034771 6 0.032052 3 0.030546 20 0.029955 7 0.02922 1 0.02902 8 0.028899 2 0.028696 17 0.024221 15 0.004705 21 0.0829 22 0.070137 12 0.062128 11 0.061082 18 0.055142 9 0.051173 13 0.050983 10 0.050824 23 0.044265 14 0.043533 19 0.041908 24 0.041305 4 0.036361 5 0.036173 0 0.034771 6 0.032052 3 0.030546 20 0.029955 7 0.02922 1 0.02902 8 0.028899 2 0.028696 17 0.024221 15 0.004705 21 0.07512649698352163 22 0.065933607013891 12 0.059514271612731685 11 0.059282674837121886 18 0.0561507270135697 10 0.04985136319775299 13 0.048463542253158395 9 0.04761793356705891 19 0.04587075646046318 23 0.043010542455088674 14 0.04163559336388453 24 0.039513904892174115 0 0.037843807687659485 4 0.03398809438038583 5 0.03367131939779829 20 0.032910657641189375 17 0.03214106024159939 6 0.03082717213543721 3 0.02843468546320571 7 0.028041094112881727 1 0.02789101028772979 8 0.027865750836313534 2 0.027529302941247575 16 0.01272773305652435 15 0.010865813572060602 __DUMMY__ 0.0032910845955503856 false 1.0
395 10 0.102054 18 0.100635 11 0.07768 19 0.073737 22 0.071674 21 0.06863 14 0.063679 0 0.062788 13 0.056266 17 0.056009 9 0.052641 12 0.052415 20 0.043697 16 0.03758 15 0.03638 23 0.016009 24 0.011083 4 0.005582 5 0.005084 6 0.003721 8 9.64E-4 7 8.89E-4 1 7.84E-4 3 1.9E-5 10 0.102054 18 0.100635 11 0.07768 19 0.073737 22 0.071674 21 0.06863 14 0.063679 0 0.062788 13 0.056266 17 0.056009 9 0.052641 12 0.052415 20 0.043697 16 0.03758 15 0.03638 23 0.016009 24 0.011083 4 0.005582 5 0.005084 6 0.003721 8 9.64E-4 7 8.89E-4 1 7.84E-4 3 1.9E-5 18 0.08937750557930192 10 0.08787024373151008 11 0.06979008534937693 22 0.06896718963607598 19 0.06683267588530234 21 0.0654819045968561 14 0.058287575799303784 0 0.055744855557924806 9 0.05136986737182639 17 0.051343072740292116 13 0.049639779152558364 12 0.048373716872149884 20 0.041973295576241305 15 0.035095568336542274 16 0.03361277333334087 23 0.022651818360706663 24 0.018733229206927472 4 0.01358383361053136 5 0.01313738163548929 6 0.011379834375180293 8 0.008999425476823121 7 0.00897511336423503 1 0.008841721961585083 3 0.008708655426930527 2 0.008286300260034246 __DUMMY__ 0.0029425768029539513 false 1.0
153 17 0.091245 0 0.082998 16 0.079001 9 0.055578 22 0.053797 18 0.052564 11 0.048546 19 0.048072 10 0.042564 6 0.042214 8 0.039228 1 0.039022 7 0.03893 2 0.038165 4 0.036826 5 0.036462 3 0.031783 12 0.029774 21 0.02841 23 0.0256 15 0.022161 20 0.013953 13 0.012027 24 0.011079 17 0.091245 0 0.082998 16 0.079001 9 0.055578 22 0.053797 18 0.052564 11 0.048546 19 0.048072 10 0.042564 6 0.042214 8 0.039228 1 0.039022 7 0.03893 2 0.038165 4 0.036826 5 0.036462 3 0.031783 12 0.029774 21 0.02841 23 0.0256 15 0.022161 20 0.013953 13 0.012027 24 0.011079 17 0.07799324171467352 0 0.07181166320856504 16 0.06464189834920624 9 0.05438108698649318 22 0.05435610865726474 18 0.05143596450350666 11 0.04638016929035065 19 0.04610520786832333 6 0.04292014821296663 10 0.04194518982319575 8 0.04068745914804081 7 0.040500993036363994 1 0.04049234771727848 2 0.03979288932272488 4 0.039509305197987496 5 0.03908359269209027 3 0.03542387834419875 21 0.03279954477756516 23 0.031028045101910155 12 0.0285913292452093 15 0.022017718736165894 24 0.018590150103083385 20 0.01830810216452504 13 0.012842986334015084 14 0.006131944012407369 __DUMMY__ 0.0022290354518883157 false 1.0
396 14 0.122589 13 0.112365 15 0.083013 10 0.08117 18 0.075829 12 0.074081 21 0.068184 20 0.053895 11 0.052355 22 0.042719 19 0.042628 23 0.035053 9 0.030389 24 0.028525 0 0.014996 5 0.013777 4 0.013424 6 0.01031 17 0.009674 3 0.007482 1 0.007007 8 0.006949 7 0.006895 2 0.006689 14 0.122589 13 0.112365 15 0.083013 10 0.08117 18 0.075829 12 0.074081 21 0.068184 20 0.053895 11 0.052355 22 0.042719 19 0.042628 23 0.035053 9 0.030389 24 0.028525 0 0.014996 5 0.013777 4 0.013424 6 0.01031 17 0.009674 3 0.007482 1 0.007007 8 0.006949 7 0.006895 2 0.006689 14 0.09600190222417594 13 0.08750196393923106 18 0.07243087896842695 10 0.07049640581532216 15 0.06735550154378778 21 0.06566113328298027 12 0.06562034351516363 20 0.052320803695343636 11 0.05208538538520171 19 0.049281603780261904 22 0.04841379510792359 23 0.037131133174258535 9 0.03320775656973479 24 0.03304889968067584 0 0.023376015159843958 17 0.023183137525817826 4 0.017047916592244403 5 0.017015099984791546 16 0.01445192232181116 6 0.014339675470321089 3 0.01159536497514724 8 0.01138579856101014 7 0.011323728272830189 1 0.01130339177979517 2 0.011026572244101657 __DUMMY__ 0.0033938704297978455 false 1.0
154 19 0.106871 18 0.079289 20 0.078657 16 0.078482 21 0.075486 22 0.066678 11 0.063537 17 0.063014 12 0.061046 24 0.055592 10 0.052611 23 0.046151 0 0.043047 14 0.032121 13 0.029586 15 0.026864 9 0.026315 4 0.005284 5 0.004567 3 0.001996 6 0.001728 8 5.82E-4 7 3.23E-4 1 1.73E-4 19 0.106871 18 0.079289 20 0.078657 16 0.078482 21 0.075486 22 0.066678 11 0.063537 17 0.063014 12 0.061046 24 0.055592 10 0.052611 23 0.046151 0 0.043047 14 0.032121 13 0.029586 15 0.026864 9 0.026315 4 0.005284 5 0.004567 3 0.001996 6 0.001728 8 5.82E-4 7 3.23E-4 1 1.73E-4 19 0.08948426171578684 21 0.07297848005922047 18 0.07222443243086248 20 0.06884250031143961 22 0.06409913848355345 16 0.061306889529812024 12 0.05909561718831689 11 0.05883349790236466 17 0.054244344412907194 24 0.053716422482164315 10 0.048571503067103804 23 0.04682275508342897 0 0.03846025389956804 14 0.03523016339865963 13 0.03380768500561064 9 0.03000320857412204 15 0.02590429043104424 4 0.013504524328677167 5 0.012939469040149011 6 0.010218313218924106 3 0.009854577861583006 8 0.00873131864743028 7 0.008630665912310834 1 0.008438421694301961 2 0.008181722628530433 __DUMMY__ 0.005875542692127966 false 1.0
397 14 0.130581 15 0.117113 10 0.100321 18 0.097846 13 0.072996 20 0.060576 19 0.051285 22 0.050196 21 0.047717 9 0.044946 11 0.038687 23 0.028343 24 0.026685 12 0.025036 17 0.016907 0 0.014069 4 0.013863 5 0.012947 3 0.011336 6 0.008187 8 0.008171 7 0.008038 1 0.007297 2 0.006857 14 0.130581 15 0.117113 10 0.100321 18 0.097846 13 0.072996 20 0.060576 19 0.051285 22 0.050196 21 0.047717 9 0.044946 11 0.038687 23 0.028343 24 0.026685 12 0.025036 17 0.016907 0 0.014069 4 0.013863 5 0.012947 3 0.011336 6 0.008187 8 0.008171 7 0.008038 1 0.007297 2 0.006857 14 0.09624092449636215 18 0.08413080138558954 15 0.08335511030921004 10 0.08142775770493736 13 0.062291714873586125 20 0.05424174233210133 19 0.053485187116204765 22 0.05240040439849152 21 0.05229542564695099 11 0.04414982103825984 9 0.042990415926462876 12 0.03611451440697424 23 0.03283347960164149 24 0.03039409108389036 17 0.028686872276884334 0 0.02524848703816177 4 0.018710820234868537 5 0.01809293804333823 3 0.015510664852522713 16 0.015431973671295411 6 0.01478057674271442 8 0.013845412147763126 7 0.013758723900451809 1 0.013335463920876273 2 0.012985791248552196 __DUMMY__ 0.003260885601908528 false 1.0
155 9 0.074539 22 0.062031 0 0.058724 5 0.056702 4 0.056406 6 0.056007 7 0.055684 8 0.055644 1 0.055523 2 0.055148 3 0.055148 17 0.052398 18 0.047088 10 0.046373 11 0.036285 21 0.034512 23 0.030752 19 0.02692 16 0.021624 24 0.020718 15 0.015835 14 0.01209 12 0.007839 20 0.00601 9 0.074539 22 0.062031 0 0.058724 5 0.056702 4 0.056406 6 0.056007 7 0.055684 8 0.055644 1 0.055523 2 0.055148 3 0.055148 17 0.052398 18 0.047088 10 0.046373 11 0.036285 21 0.034512 23 0.030752 19 0.02692 16 0.021624 24 0.020718 15 0.015835 14 0.01209 12 0.007839 20 0.00601 9 0.06693438208269677 22 0.05979250274176966 0 0.055551920705130084 4 0.05253539100693866 5 0.052388756577183 17 0.05221166564435144 6 0.05209696956235191 7 0.051617606110848584 8 0.051612159913400506 1 0.0514785520344145 2 0.05097431147719712 3 0.050788004467740455 18 0.04756254228623112 10 0.0443924904339588 11 0.03823022681267898 21 0.03717510489463077 23 0.03444471704467426 19 0.031911229765369024 16 0.026448422669348996 24 0.02488052824494851 15 0.017584179649727864 14 0.014586192905989738 12 0.014361332322119376 20 0.012782710696673336 13 0.005601320310367622 __DUMMY__ 0.0020567796392587734 false 1.0
398 18 0.094719 10 0.089962 19 0.077299 11 0.076158 21 0.075374 22 0.071993 12 0.059814 14 0.059651 0 0.056012 13 0.055787 17 0.053133 20 0.051188 9 0.046381 16 0.039737 15 0.030527 24 0.022834 23 0.022126 4 0.005863 5 0.005637 6 0.003506 7 7.01E-4 8 5.97E-4 3 5.29E-4 1 4.72E-4 18 0.094719 10 0.089962 19 0.077299 11 0.076158 21 0.075374 22 0.071993 12 0.059814 14 0.059651 0 0.056012 13 0.055787 17 0.053133 20 0.051188 9 0.046381 16 0.039737 15 0.030527 24 0.022834 23 0.022126 4 0.005863 5 0.005637 6 0.003506 7 7.01E-4 8 5.97E-4 3 5.29E-4 1 4.72E-4 18 0.0857998586230603 10 0.08062091115839243 21 0.07123411165802436 11 0.07038262008298764 19 0.06961180017830752 22 0.06936604255573442 14 0.05618571672409641 12 0.055510239983716826 0 0.05176201849146568 13 0.05153397046595873 17 0.04948523469785079 9 0.04675013573787075 20 0.04674432711494791 16 0.035196087766514006 15 0.030388903244221385 23 0.026525003712008752 24 0.025942666740533436 4 0.012863050748957595 5 0.012545232958381565 6 0.010393751888683123 3 0.007847153040982248 7 0.007822001252508719 8 0.0077563331521755 1 0.0076290147428111285 2 0.007234502575856253 __DUMMY__ 0.0028693107039525624 false 1.0
156 9 0.063058 4 0.056731 5 0.056679 6 0.055548 1 0.05453 7 0.054466 8 0.054444 3 0.053813 2 0.053773 10 0.049165 22 0.047827 18 0.043127 14 0.042223 0 0.040154 23 0.038924 21 0.037585 13 0.035115 15 0.032008 11 0.03087 17 0.028527 12 0.024277 24 0.022428 19 0.013578 20 0.011149 9 0.063058 4 0.056731 5 0.056679 6 0.055548 1 0.05453 7 0.054466 8 0.054444 3 0.053813 2 0.053773 10 0.049165 22 0.047827 18 0.043127 14 0.042223 0 0.040154 23 0.038924 21 0.037585 13 0.035115 15 0.032008 11 0.03087 17 0.028527 12 0.024277 24 0.022428 19 0.013578 20 0.011149 9 0.05789510702030563 22 0.053130994011991145 4 0.04873961648732901 10 0.04872786104930917 18 0.04849911153980525 5 0.048470659986540765 6 0.047378936763556506 7 0.0461163024018446 1 0.04609997774846597 8 0.046094580199384616 3 0.04555306246151504 2 0.04546243826160036 21 0.04463287982587055 0 0.042200763359718466 23 0.03927514101904357 11 0.038652646503496126 14 0.03775590248573503 17 0.03585482573664126 13 0.032321558829970065 12 0.030053531305340043 15 0.027709805990103073 24 0.027490531518706302 19 0.02741520069487785 20 0.019509220297922458 16 0.012203315704137565 __DUMMY__ 0.002756028796789453 false 1.0
157 3 0.060996 4 0.05792 5 0.057386 8 0.057231 7 0.057131 1 0.056983 2 0.056646 9 0.056009 6 0.054066 23 0.049615 24 0.047309 22 0.046451 15 0.042013 18 0.041084 10 0.037701 20 0.035136 19 0.032908 14 0.029882 21 0.029154 17 0.029038 0 0.027107 11 0.021808 16 0.015816 13 6.11E-4 3 0.060996 4 0.05792 5 0.057386 8 0.057231 7 0.057131 1 0.056983 2 0.056646 9 0.056009 6 0.054066 23 0.049615 24 0.047309 22 0.046451 15 0.042013 18 0.041084 10 0.037701 20 0.035136 19 0.032908 14 0.029882 21 0.029154 17 0.029038 0 0.027107 11 0.021808 16 0.015816 13 6.11E-4 22 0.054479765417254244 18 0.0529897055267921 9 0.04926663800576589 19 0.047146744506521954 21 0.04660430623167397 23 0.04593443399483804 24 0.045799347889046035 10 0.04390005256484012 4 0.042622283317543884 3 0.04237832934643867 5 0.04210628668309946 20 0.041838916220211526 8 0.04005325056840358 7 0.03999867519941095 1 0.03981606391540067 2 0.03946342378638953 6 0.0391811196869093 11 0.036645014292857055 17 0.036334232615311254 14 0.035961280276779306 15 0.035802463976244384 0 0.031888055429432266 16 0.024951746790276147 12 0.023034531081986973 13 0.0176559171551061 __DUMMY__ 0.004147415521466577 false 1.0
399 14 0.123425 13 0.11298 15 0.083404 10 0.08145 18 0.076049 12 0.074536 21 0.068185 20 0.05409 11 0.052634 19 0.042966 22 0.04285 23 0.035268 9 0.030097 24 0.028557 0 0.015002 5 0.013308 4 0.013237 6 0.009946 17 0.009492 3 0.006993 8 0.006608 1 0.006391 7 0.00634 2 0.006192 14 0.123425 13 0.11298 15 0.083404 10 0.08145 18 0.076049 12 0.074536 21 0.068185 20 0.05409 11 0.052634 19 0.042966 22 0.04285 23 0.035268 9 0.030097 24 0.028557 0 0.015002 5 0.013308 4 0.013237 6 0.009946 17 0.009492 3 0.006993 8 0.006608 1 0.006391 7 0.00634 2 0.006192 14 0.09635884838666281 13 0.08778807223759612 18 0.07251509625543874 10 0.07060199692618722 15 0.0675014318358157 12 0.06585376124950651 21 0.06567418179433027 20 0.052406362470983923 11 0.05222176234001761 19 0.049437940066719935 22 0.04847468573627676 23 0.037236368777161924 24 0.033070843534780216 9 0.03306570761855125 0 0.023384652230315713 17 0.023106517459019083 4 0.01696387931662979 5 0.016802241622558705 16 0.014464639095570041 6 0.01417636864672492 3 0.011370994211147446 8 0.011231139010639593 7 0.011071110746173982 1 0.011023173443987424 2 0.010800958830827248 __DUMMY__ 0.003397266156376858 false 1.0
158 9 0.074716 4 0.059992 22 0.059716 7 0.059651 8 0.059603 6 0.059407 1 0.059016 5 0.058474 3 0.057758 2 0.057673 0 0.055755 17 0.050481 18 0.045306 10 0.04429 23 0.034442 21 0.032562 11 0.031775 19 0.023286 24 0.021363 16 0.017223 15 0.014728 14 0.012196 20 0.005716 12 0.004873 9 0.074716 4 0.059992 22 0.059716 7 0.059651 8 0.059603 6 0.059407 1 0.059016 5 0.058474 3 0.057758 2 0.057673 0 0.055755 17 0.050481 18 0.045306 10 0.04429 23 0.034442 21 0.032562 11 0.031775 19 0.023286 24 0.021363 16 0.017223 15 0.014728 14 0.012196 20 0.005716 12 0.004873 9 0.06676089855732545 22 0.05778383666225269 4 0.054778761157637405 6 0.054278040811645306 7 0.05409598725165742 8 0.054081755573987714 5 0.05380101341389266 1 0.053747326929571515 0 0.0534396677671705 2 0.052791549610614705 3 0.05263426295739634 17 0.05071081162710247 18 0.04614778542631565 10 0.04282868041420584 23 0.036795617726195114 21 0.03555268689644633 11 0.03501506448487283 19 0.029551023512836765 24 0.025432324868991846 16 0.02400626268682266 15 0.017527230240011727 14 0.014709223678744627 20 0.012815561678241131 12 0.012774106587704696 13 0.005762376674222983 __DUMMY__ 0.0021781428041337337 false 1.0
159 6 0.073077 8 0.07249 7 0.072436 1 0.072077 2 0.071629 4 0.071541 5 0.070726 3 0.069579 9 0.06092 23 0.04986 0 0.046838 17 0.045894 22 0.040396 24 0.030256 18 0.024523 16 0.023457 10 0.019827 21 0.019515 11 0.017323 15 0.012852 19 0.011889 12 0.01185 20 0.007586 13 0.003458 6 0.073077 8 0.07249 7 0.072436 1 0.072077 2 0.071629 4 0.071541 5 0.070726 3 0.069579 9 0.06092 23 0.04986 0 0.046838 17 0.045894 22 0.040396 24 0.030256 18 0.024523 16 0.023457 10 0.019827 21 0.019515 11 0.017323 15 0.012852 19 0.011889 12 0.01185 20 0.007586 13 0.003458 6 0.05987018890359897 4 0.05909363531415135 8 0.05908543740093173 7 0.059045961799804245 1 0.058836543092112455 5 0.05845076988080066 2 0.058312714813390995 9 0.058279604325843004 3 0.056806154062793296 17 0.04978848132298038 0 0.049488486832387026 22 0.047754600320296874 23 0.044835518081468295 18 0.03634321230689427 10 0.03021835250252889 24 0.03004254264768527 21 0.029725819306785334 16 0.02965957424384826 11 0.028624744194040996 19 0.025501431721306735 12 0.018693847147773137 15 0.016503607276008924 20 0.01506102402111015 13 0.009043187553035598 14 0.008359474029238968 __DUMMY__ 0.0025750868991841307 false 1.0
50 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05887756463335699 4 0.058809721117362386 6 0.05876071004168686 7 0.05873620470284466 8 0.05861114151662808 5 0.05844442963682676 2 0.057999611420948824 9 0.057400954276934923 3 0.05739912089717176 22 0.048206564096816194 23 0.046831581679233424 17 0.04605579073520673 0 0.044481116426894535 18 0.03654605217635585 24 0.03452705082295905 21 0.032175505668526054 10 0.029066590975948627 19 0.02723110666601746 11 0.02697263432631029 16 0.026799262066386335 20 0.018814767778704 15 0.018065669046970566 12 0.017883554766745847 14 0.010764058169813705 13 0.00815567212628877 __DUMMY__ 0.0023835642270612608 false 1.0
51 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.06747712261944598 22 0.06049715748947726 0 0.05688514232655941 17 0.05378958145406465 4 0.051837834475033186 6 0.05137387178187212 7 0.051041530288238476 5 0.050986400068124736 8 0.05097078353496001 1 0.05084647477771299 2 0.04979825633843084 3 0.0495483323438817 18 0.04909915151119826 10 0.0456551324671348 11 0.039522323917000106 21 0.03764471494362433 23 0.03383037101262322 19 0.03299052388283047 16 0.026995700054973842 24 0.024039473501812278 15 0.016391524846481566 14 0.014371532877554686 12 0.013899520524025528 20 0.012715152034036552 13 0.0056446642883236685 __DUMMY__ 0.002147726640579689 false 1.0
52 22 0.088834 11 0.072042 9 0.069235 21 0.06824 0 0.062045 18 0.057159 17 0.056314 10 0.054013 19 0.04876 4 0.038697 5 0.038168 6 0.035608 3 0.03473 8 0.034058 7 0.033977 1 0.033775 2 0.033165 24 0.029524 12 0.027599 16 0.025334 23 0.023829 14 0.018513 20 0.010602 13 0.005778 22 0.088834 11 0.072042 9 0.069235 21 0.06824 0 0.062045 18 0.057159 17 0.056314 10 0.054013 19 0.04876 4 0.038697 5 0.038168 6 0.035608 3 0.03473 8 0.034058 7 0.033977 1 0.033775 2 0.033165 24 0.029524 12 0.027599 16 0.025334 23 0.023829 14 0.018513 20 0.010602 13 0.005778 22 0.07863007830896641 11 0.06466048091184076 21 0.06445649981147865 9 0.06045783132504065 18 0.057679484092745294 0 0.05591792806972797 17 0.05393854929528571 19 0.05101575111738382 10 0.05100864990256665 4 0.036349991506926055 5 0.035811735158249404 6 0.033850163786004236 12 0.033203307159850426 24 0.032738886452223045 3 0.032444035071043376 8 0.032261024119311255 7 0.032222718330088 1 0.03199680061689243 2 0.0314412626199202 23 0.03039336299627813 16 0.030188979156184976 14 0.02270608204871781 20 0.020745237750809255 13 0.014325176439946226 15 0.008239694271534639 __DUMMY__ 0.0033162896809844932 false 1.0
53 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058866213536223344 4 0.05879940446012107 6 0.058750743063060544 7 0.05872468405755553 8 0.05859981949840373 5 0.05843485339339612 2 0.05798930172362247 3 0.05738783270915389 9 0.057375234678793255 22 0.04819627170383333 23 0.046846616347819794 17 0.04605069217297652 0 0.044466767742317 18 0.03654322705099747 24 0.03454270173205197 21 0.03218439223605594 10 0.02905473096612731 19 0.027243271842381633 11 0.02697379136978843 16 0.026812576769409225 20 0.018836798391170827 15 0.018071752088433993 12 0.017910955079025744 14 0.010771490043458922 13 0.008177137106854849 __DUMMY__ 0.0023887402369668657 false 1.0
54 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.06745844156762433 22 0.06044595508036901 0 0.056830711267545915 17 0.05374868013992112 4 0.051892285360044386 6 0.05142937421080585 7 0.05110044753402379 5 0.05104175221315888 8 0.05102882759889136 1 0.05090682845684784 2 0.04985716566149729 3 0.04960699128812757 18 0.04903250163121019 10 0.04557504359793574 11 0.03945122623797038 21 0.03761132250716639 23 0.033885868395637155 19 0.03294076853515291 16 0.026967649798221256 24 0.02408103296023336 15 0.0163830095327457 14 0.014341141839740201 12 0.013891343872574232 20 0.012719165483893242 13 0.005633358291052373 __DUMMY__ 0.0021391069376097503 false 1.0
55 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.06720437399904297 22 0.05827103915152117 4 0.05438886345273601 0 0.0540690912659454 6 0.05388155477802994 5 0.053742683321625885 8 0.0536338110251485 7 0.053579431700143315 1 0.05355926007140379 2 0.05252663077958243 3 0.052325309531277536 17 0.05134945648600814 18 0.046827239893705505 10 0.04311368271381778 23 0.036088199932546194 21 0.03563463691099676 11 0.03531794346166242 19 0.029891370139352245 24 0.024921783494892383 16 0.02446668189227638 15 0.01760630486623306 14 0.014679148955443677 12 0.012819522827679891 20 0.012153007432536514 13 0.005758095154710959 __DUMMY__ 0.002190876761681264 false 1.0
56 9 0.074038 4 0.070324 8 0.069494 5 0.069272 6 0.069182 7 0.069129 3 0.068881 1 0.068587 2 0.06836 22 0.051501 0 0.043603 23 0.043577 10 0.039475 17 0.037861 18 0.034673 21 0.026436 24 0.025626 15 0.018934 11 0.016256 14 0.014929 19 0.010745 20 0.00474 16 0.004372 13 9.0E-6 9 0.074038 4 0.070324 8 0.069494 5 0.069272 6 0.069182 7 0.069129 3 0.068881 1 0.068587 2 0.06836 22 0.051501 0 0.043603 23 0.043577 10 0.039475 17 0.037861 18 0.034673 21 0.026436 24 0.025626 15 0.018934 11 0.016256 14 0.014929 19 0.010745 20 0.00474 16 0.004372 13 9.0E-6 9 0.06442201452548814 4 0.05701778340607878 5 0.05626209520721408 6 0.05608747476729977 8 0.05576070024321109 7 0.055587079460367096 1 0.05527540470940871 3 0.05496787419229482 2 0.05486164270282162 22 0.05399315941263079 0 0.04628972468507646 17 0.0439306631011459 18 0.043278405607412695 10 0.04209233079403245 23 0.04135603421098867 21 0.03500269518390897 11 0.029156679802111667 24 0.028251003451881238 19 0.025940264168017563 15 0.02141842833658534 14 0.01958625304136441 16 0.01830057569997794 20 0.015190934517080605 12 0.013736130200746877 13 0.009563851942268659 __DUMMY__ 0.002670796630585638 false 1.0
57 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.074971 22 0.062103 0 0.059025 4 0.056599 7 0.056146 6 0.056019 8 0.055944 1 0.055888 5 0.055388 3 0.05433 2 0.05432 17 0.053608 18 0.048269 10 0.046592 11 0.036804 21 0.035041 23 0.031513 19 0.027749 16 0.021098 24 0.020837 15 0.013224 14 0.01142 12 0.006695 20 0.006418 9 0.06747500531278537 22 0.06042843234347382 0 0.05680091095775181 17 0.05371322870240093 4 0.051928464678305516 6 0.051463528190742895 7 0.051135685132823114 5 0.05107712734343686 8 0.051064525581688794 1 0.05094158443368779 2 0.04989220872154043 3 0.049644204642728715 18 0.04900860988313383 10 0.04556494648264359 11 0.039403726101382694 21 0.03759168918392474 23 0.033904257429057644 19 0.03289609477708435 16 0.026915412591748587 24 0.024084083131859082 15 0.016389588817609192 14 0.014348535830964192 12 0.013864096534770136 20 0.012704367168160494 13 0.005626429425047937 __DUMMY__ 0.002133256601247448 false 1.0
58 9 0.074959 22 0.062954 4 0.061886 5 0.060927 6 0.060195 8 0.059712 7 0.059507 1 0.059302 3 0.058889 2 0.058432 0 0.050593 10 0.04572 18 0.043113 21 0.041437 17 0.039375 23 0.036655 11 0.036379 24 0.021658 14 0.018869 19 0.015641 12 0.013042 13 0.009938 15 0.009909 16 9.07E-4 9 0.074959 22 0.062954 4 0.061886 5 0.060927 6 0.060195 8 0.059712 7 0.059507 1 0.059302 3 0.058889 2 0.058432 0 0.050593 10 0.04572 18 0.043113 21 0.041437 17 0.039375 23 0.036655 11 0.036379 24 0.021658 14 0.018869 19 0.015641 12 0.013042 13 0.009938 15 0.009909 16 9.07E-4 9 0.06568058326476164 22 0.06023238046530197 4 0.053855325977154415 5 0.05314869018383017 6 0.05241773407420151 8 0.05164890849202303 7 0.05156690787834128 1 0.05142046762395656 3 0.050946922018863035 2 0.050695331688322 0 0.04866037705655131 18 0.0466368749629909 10 0.04532082505496301 21 0.04381124124869365 17 0.04236558245068309 11 0.03929885480773726 23 0.038263679054257885 19 0.02669089683023528 24 0.0265215561415881 14 0.02219300406370913 12 0.020860919814579583 13 0.015454090100623463 15 0.015152129905876593 16 0.013008056810023358 20 0.011761428422471942 __DUMMY__ 0.0023872316082599104 false 1.0
59 19 0.069385 17 0.068642 18 0.066784 22 0.066426 0 0.060808 16 0.059642 9 0.054969 10 0.052978 11 0.049837 21 0.044523 20 0.03738 23 0.034625 4 0.032012 5 0.031592 7 0.031109 1 0.031082 8 0.031037 6 0.030974 3 0.030877 24 0.030429 2 0.030292 15 0.022057 12 0.020019 14 0.012524 19 0.069385 17 0.068642 18 0.066784 22 0.066426 0 0.060808 16 0.059642 9 0.054969 10 0.052978 11 0.049837 21 0.044523 20 0.03738 23 0.034625 4 0.032012 5 0.031592 7 0.031109 1 0.031082 8 0.031037 6 0.030974 3 0.030877 24 0.030429 2 0.030292 15 0.022057 12 0.020019 14 0.012524 22 0.06454311019162731 19 0.06398161630438413 18 0.06394595755718079 17 0.061634210994563524 0 0.05525213254548715 9 0.05208606655608332 16 0.05160846152704071 10 0.05152962675504459 11 0.05064424616269781 21 0.04870433565450422 20 0.037354089583252655 23 0.03634006458071537 24 0.03288385572769194 4 0.03221032737363117 5 0.031763580038973616 6 0.030900799312222806 7 0.030391900924484343 8 0.030384838978072093 1 0.030268555166523412 3 0.030192746720920368 2 0.029682981694322416 12 0.027092729956725264 15 0.023343756493131355 14 0.019829466185610885 13 0.010068886209603339 __DUMMY__ 0.0033616568055053505 false 1.0
160 9 0.076328 4 0.060089 7 0.059566 8 0.059441 6 0.059439 22 0.059251 1 0.059214 5 0.059172 3 0.058276 2 0.058195 0 0.055201 17 0.049745 18 0.04408 10 0.043945 23 0.033582 21 0.032527 11 0.031571 19 0.023096 24 0.021546 16 0.017556 15 0.015636 14 0.012364 12 0.005393 20 0.004787 9 0.076328 4 0.060089 7 0.059566 8 0.059441 6 0.059439 22 0.059251 1 0.059214 5 0.059172 3 0.058276 2 0.058195 0 0.055201 17 0.049745 18 0.04408 10 0.043945 23 0.033582 21 0.032527 11 0.031571 19 0.023096 24 0.021546 16 0.017556 15 0.015636 14 0.012364 12 0.005393 20 0.004787 9 0.06750085590886636 22 0.057552110422163655 4 0.05484178075433373 6 0.054313587082088575 5 0.0541408927357934 7 0.0540770102731085 8 0.054027324145746757 1 0.05385862307911638 0 0.05318018999397236 2 0.053052451376370546 3 0.05289095289135709 17 0.05036915644546084 18 0.04556066447746576 10 0.04264608051913808 23 0.036411578770978066 21 0.03551916344064214 11 0.03490199923623123 19 0.029443873877977412 24 0.025519043723409445 16 0.024159474558574742 15 0.017938824736109835 14 0.014769053114970536 12 0.013012096825422436 20 0.012379206036236014 13 0.005758918922249241 __DUMMY__ 0.002175086652216598 false 1.0
161 20 0.102961 19 0.099234 21 0.083902 12 0.078846 18 0.078706 24 0.076404 23 0.059355 16 0.056119 22 0.054326 13 0.053098 14 0.048478 11 0.047942 10 0.041654 17 0.039909 15 0.033762 0 0.014057 9 0.01317 5 0.006316 4 0.006224 3 0.00323 6 0.001616 7 3.16E-4 8 2.96E-4 2 7.8E-5 20 0.102961 19 0.099234 21 0.083902 12 0.078846 18 0.078706 24 0.076404 23 0.059355 16 0.056119 22 0.054326 13 0.053098 14 0.048478 11 0.047942 10 0.041654 17 0.039909 15 0.033762 0 0.014057 9 0.01317 5 0.006316 4 0.006224 3 0.00323 6 0.001616 7 3.16E-4 8 2.96E-4 2 7.8E-5 19 0.08714937172952063 20 0.0852707230500078 21 0.07804486138273443 18 0.07358938940061886 12 0.06841263076682201 24 0.06687174537446032 22 0.05727606104100903 23 0.05436631436823039 11 0.049774300830329216 16 0.04887626022016168 13 0.04680542624317122 14 0.04670771999329132 10 0.043483269473753146 17 0.040406764273445125 15 0.03230137269474118 9 0.021977404491584702 0 0.020441274118688377 4 0.012967826698140715 5 0.012754318257994179 3 0.009682918185262747 6 0.008697186315114512 7 0.007364548614272675 8 0.007336615294014146 1 0.007077910764704896 2 0.006961132252397751 __DUMMY__ 0.005402654165528977 false 1.0
162 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.0666436167990655 22 0.05814691890287464 4 0.054613504819395746 6 0.05410975034884003 5 0.054073084245368296 8 0.05388988773263197 7 0.05384412356663968 1 0.05357132520807183 0 0.053416716142155096 2 0.05298510450025688 3 0.052823606089712385 17 0.05045397790445571 18 0.04627121770439893 10 0.042857250341761514 23 0.036655490450057254 21 0.03560860287132919 11 0.034931494337212377 19 0.029612166333465483 24 0.02543234282175274 16 0.024143324483725036 15 0.017760827071101472 14 0.014674057146751194 12 0.012916179442522253 20 0.012631428820457487 13 0.005758916266740217 __DUMMY__ 0.002175085649257135 false 1.0
163 21 0.081615 22 0.069049 12 0.061134 11 0.060893 18 0.054893 10 0.052483 9 0.050785 13 0.049939 23 0.044785 14 0.043445 19 0.041698 24 0.041575 4 0.036488 5 0.03584 0 0.034185 6 0.032281 20 0.031322 3 0.030592 8 0.029525 7 0.029507 1 0.029221 2 0.028775 17 0.025037 15 0.004933 21 0.081615 22 0.069049 12 0.061134 11 0.060893 18 0.054893 10 0.052483 9 0.050785 13 0.049939 23 0.044785 14 0.043445 19 0.041698 24 0.041575 4 0.036488 5 0.03584 0 0.034185 6 0.032281 20 0.031322 3 0.030592 8 0.029525 7 0.029507 1 0.029221 2 0.028775 17 0.025037 15 0.004933 21 0.07451348659821477 22 0.06542612101962361 11 0.059176137593014266 12 0.05903091406986864 18 0.05602786839109368 10 0.05060999835646032 13 0.047971200862819384 9 0.04745433148505903 19 0.04575179848802918 23 0.04324561002811663 14 0.04159292560591872 24 0.039626384015455575 0 0.037577551297287105 4 0.034063752137335486 5 0.03353669618686557 20 0.03351935909482542 17 0.03251124191768171 6 0.03095036721830312 3 0.02847553996392137 7 0.028192382046073074 8 0.028172160043958096 1 0.028003050285124446 2 0.027585273440569928 16 0.0127159114876404 15 0.010982329500689338 __DUMMY__ 0.0032876088660509953 false 1.0
164 10 0.103051 18 0.097812 22 0.082571 11 0.077805 9 0.070575 0 0.06937 21 0.068633 19 0.056846 17 0.054493 14 0.053349 13 0.042355 12 0.038289 15 0.02052 20 0.019409 4 0.018507 5 0.017894 6 0.01608 16 0.015028 1 0.013462 7 0.013393 8 0.013087 3 0.012525 23 0.012501 2 0.012442 10 0.103051 18 0.097812 22 0.082571 11 0.077805 9 0.070575 0 0.06937 21 0.068633 19 0.056846 17 0.054493 14 0.053349 13 0.042355 12 0.038289 15 0.02052 20 0.019409 4 0.018507 5 0.017894 6 0.01608 16 0.015028 1 0.013462 7 0.013393 8 0.013087 3 0.012525 23 0.012501 2 0.012442 10 0.08365611805387292 18 0.0829906672625554 22 0.07260780301454244 11 0.0660917951749659 21 0.0618893038181234 9 0.061737532568190034 0 0.05900826686261493 19 0.054202194652419544 17 0.05049088339455475 14 0.04824538415884227 13 0.03842990169795743 12 0.03782156692490632 20 0.026580439054059032 15 0.025197438640241848 4 0.0245395997491044 5 0.024024650610392564 23 0.022504596938852494 6 0.022333390746528365 16 0.021706812179858197 7 0.020209049918591838 1 0.020173104069742497 8 0.020059275398145414 3 0.01976381222766476 2 0.01945244184090569 24 0.013650979005930665 __DUMMY__ 0.002632992036437015 false 1.0
165 10 0.103841 18 0.090619 11 0.090341 22 0.077989 21 0.074653 13 0.070606 14 0.069492 0 0.068812 12 0.062341 9 0.058854 19 0.054483 17 0.048782 15 0.025969 20 0.02013 16 0.019164 4 0.011281 5 0.010684 23 0.010672 6 0.009571 8 0.00473 7 0.004655 2 0.004561 1 0.00447 3 0.003301 10 0.103841 18 0.090619 11 0.090341 22 0.077989 21 0.074653 13 0.070606 14 0.069492 0 0.068812 12 0.062341 9 0.058854 19 0.054483 17 0.048782 15 0.025969 20 0.02013 16 0.019164 4 0.011281 5 0.010684 23 0.010672 6 0.009571 8 0.00473 7 0.004655 2 0.004561 1 0.00447 3 0.003301 10 0.0856745472067533 18 0.08172898221710169 11 0.07558628866956744 22 0.07129125223306802 21 0.06864869550089348 14 0.059662351629277875 0 0.05806095188135306 13 0.05726409122387891 19 0.055925082618399395 12 0.05471111904221114 9 0.0535128947951606 17 0.04730582272191095 20 0.029498666167364403 15 0.028503810600757087 16 0.024497539557886014 23 0.021502039396606026 4 0.017524599139965565 5 0.017021109458310667 6 0.015562885826963196 24 0.014270354887068723 8 0.012033037479257998 7 0.01200361960630789 1 0.011832197586075727 2 0.01167678264805642 3 0.011267058620540013 __DUMMY__ 0.003434219285264407 false 1.0
166 10 0.104414 18 0.098683 11 0.089184 22 0.079386 0 0.072816 21 0.068076 19 0.067519 17 0.060534 14 0.060099 9 0.05729 13 0.054771 12 0.051365 16 0.034177 15 0.028674 20 0.02603 23 0.010646 4 0.008585 5 0.008153 6 0.006971 2 0.003031 8 0.002708 1 0.002666 7 0.002516 3 0.001706 10 0.104414 18 0.098683 11 0.089184 22 0.079386 0 0.072816 21 0.068076 19 0.067519 17 0.060534 14 0.060099 9 0.05729 13 0.054771 12 0.051365 16 0.034177 15 0.028674 20 0.02603 23 0.010646 4 0.008585 5 0.008153 6 0.006971 2 0.003031 8 0.002708 1 0.002666 7 0.002516 3 0.001706 10 0.08754043028132177 18 0.08617662026852659 11 0.0745397844437515 22 0.07289234425219152 21 0.06365991002149135 0 0.061700501321928364 19 0.06138006064615606 9 0.05534545959833759 14 0.05423313318070738 17 0.05402582220808341 13 0.046316541001859085 12 0.04540001847853621 16 0.031358838910534655 20 0.030356290203147132 15 0.030256969623941466 23 0.019822719608239593 4 0.017198599236538277 5 0.01676462655171375 6 0.015262708751175996 24 0.012538819406623228 8 0.012260840894301435 7 0.01217070673525325 1 0.01214860718021491 2 0.012097278876177073 3 0.01179612850065436 __DUMMY__ 0.002756239818594195 false 1.0
167 0 0.089632 17 0.082228 9 0.061514 11 0.061152 16 0.059445 22 0.058759 10 0.056259 18 0.053163 6 0.04423 2 0.040981 8 0.040969 7 0.040799 1 0.040771 4 0.039515 5 0.039197 19 0.03798 3 0.035126 21 0.031547 12 0.02927 23 0.021144 13 0.017715 15 0.013488 14 0.004309 24 8.07E-4 0 0.089632 17 0.082228 9 0.061514 11 0.061152 16 0.059445 22 0.058759 10 0.056259 18 0.053163 6 0.04423 2 0.040981 8 0.040969 7 0.040799 1 0.040771 4 0.039515 5 0.039197 19 0.03798 3 0.035126 21 0.031547 12 0.02927 23 0.021144 13 0.017715 15 0.013488 14 0.004309 24 8.07E-4 0 0.07481636972314028 17 0.07193044035701612 9 0.05913552083803113 22 0.05800685659479788 11 0.05282683833636013 18 0.0516878574194364 16 0.05157093879085163 10 0.04960434345616881 6 0.044676919356167764 8 0.042375389545044224 7 0.0422563306427558 1 0.042179688890719186 2 0.04196582053013114 4 0.04186657629961095 5 0.04144431840020455 19 0.039699682115304 3 0.038110947094524644 21 0.035121019294951816 23 0.028346832201741543 12 0.027374432713501255 15 0.016284321737745456 13 0.015198984457844622 24 0.013047160029531013 20 0.00981334573010457 14 0.008636027055754301 __DUMMY__ 0.002023038388560727 false 1.0
168 10 0.115086 18 0.109108 11 0.088827 22 0.088704 21 0.08505 14 0.069127 9 0.066982 0 0.064592 19 0.062372 13 0.061741 12 0.055494 17 0.046179 20 0.02479 15 0.019545 23 0.012131 4 0.008844 5 0.008581 6 0.005 16 0.004125 1 8.73E-4 24 8.49E-4 8 7.09E-4 7 6.57E-4 3 6.35E-4 10 0.115086 18 0.109108 11 0.088827 22 0.088704 21 0.08505 14 0.069127 9 0.066982 0 0.064592 19 0.062372 13 0.061741 12 0.055494 17 0.046179 20 0.02479 15 0.019545 23 0.012131 4 0.008844 5 0.008581 6 0.005 16 0.004125 1 8.73E-4 24 8.49E-4 8 7.09E-4 7 6.57E-4 3 6.35E-4 10 0.08882072447475638 18 0.08783217391952029 22 0.07517316201470639 11 0.07176774355361037 21 0.07075542167672108 9 0.05901850386348849 19 0.05674697790967906 14 0.05671282873714803 0 0.05588245236998317 13 0.04963468790161781 12 0.04797338654559547 17 0.04564049046351543 20 0.029669502134214917 15 0.024650042652636515 23 0.02287864087611125 4 0.019582045077561176 5 0.01924399394382374 6 0.016686916613976466 16 0.016116271772517274 24 0.014704484616675333 1 0.013710826104224258 8 0.013680690707526416 7 0.01367106094724905 3 0.013614551904930125 2 0.013077485603399714 __DUMMY__ 0.002754933614811849 false 1.0
169 0 0.086305 17 0.077722 10 0.06726 11 0.064106 18 0.06236 9 0.061206 22 0.060599 16 0.05505 19 0.042773 6 0.037471 21 0.035586 8 0.034354 7 0.034195 1 0.034077 4 0.033778 2 0.033715 5 0.033307 12 0.031273 3 0.028812 13 0.024724 15 0.020015 23 0.018292 14 0.016747 20 0.006275 0 0.086305 17 0.077722 10 0.06726 11 0.064106 18 0.06236 9 0.061206 22 0.060599 16 0.05505 19 0.042773 6 0.037471 21 0.035586 8 0.034354 7 0.034195 1 0.034077 4 0.033778 2 0.033715 5 0.033307 12 0.031273 3 0.028812 13 0.024724 15 0.020015 23 0.018292 14 0.016747 20 0.006275 0 0.07265313692556037 17 0.06842193662232107 9 0.059728586910337375 22 0.05951061260346608 18 0.05690482246037574 10 0.05640768147774691 11 0.054593333238556384 16 0.0472560952527552 19 0.04162476835313632 6 0.04113958689831927 4 0.039051100491072126 8 0.038950462951564596 7 0.03884449311610397 1 0.03872353982283425 5 0.03855993658522229 2 0.03824744686464059 21 0.037737298805419546 3 0.03506611763225028 12 0.027989462837188304 23 0.026518949838869252 15 0.01973227592372376 13 0.019204070167519495 14 0.016301173875526258 20 0.01259428323674229 24 0.012316910009945673 __DUMMY__ 0.001921917098802561 false 1.0
60 9 0.07489 4 0.060087 22 0.060029 8 0.059432 6 0.059338 5 0.059335 7 0.059143 1 0.059045 3 0.058372 2 0.05829 0 0.055621 17 0.050142 18 0.044819 10 0.043743 23 0.033566 21 0.032162 11 0.031611 19 0.023303 24 0.021719 16 0.01739 15 0.015435 14 0.012401 12 0.005172 20 0.004954 9 0.07489 4 0.060087 22 0.060029 8 0.059432 6 0.059338 5 0.059335 7 0.059143 1 0.059045 3 0.058372 2 0.05829 0 0.055621 17 0.050142 18 0.044819 10 0.043743 23 0.033566 21 0.032162 11 0.031611 19 0.023303 24 0.021719 16 0.01739 15 0.015435 14 0.012401 12 0.005172 20 0.004954 9 0.06708022668290407 22 0.058279208488808805 4 0.05442387167543871 0 0.054052851157911336 6 0.053883834108215595 5 0.053795183211182235 8 0.053611366215913885 7 0.05346551650296053 1 0.05335754855821969 2 0.05267710664694187 3 0.05247696393897662 17 0.05112498048194036 18 0.046479008530498286 10 0.04323518557846564 23 0.035874763840336915 11 0.03545159812962672 21 0.03544444714972213 19 0.029911264704469386 24 0.025056268056089678 16 0.024497157019511905 15 0.01785516910995561 14 0.014830751145606478 12 0.012902116443325423 20 0.012287047395413798 13 0.005758754051709492 __DUMMY__ 0.0021878111758549274 false 1.0
61 4 0.074279 6 0.073582 5 0.07322 7 0.072778 8 0.072736 1 0.07238 2 0.072131 3 0.071944 9 0.059659 23 0.054987 22 0.041626 24 0.04016 17 0.037219 0 0.035706 21 0.023833 18 0.023712 10 0.016165 16 0.015779 15 0.014126 19 0.014091 20 0.01405 11 0.012892 12 0.0095 14 0.003447 4 0.074279 6 0.073582 5 0.07322 7 0.072778 8 0.072736 1 0.07238 2 0.072131 3 0.071944 9 0.059659 23 0.054987 22 0.041626 24 0.04016 17 0.037219 0 0.035706 21 0.023833 18 0.023712 10 0.016165 16 0.015779 15 0.014126 19 0.014091 20 0.01405 11 0.012892 12 0.0095 14 0.003447 4 0.06067573411207403 6 0.059934632870058326 5 0.05991219742575205 7 0.059151167543786874 8 0.0591285405967652 1 0.058906398470211195 2 0.05847584957856496 3 0.05828918614509877 9 0.058193638430092356 22 0.04933142855901749 23 0.04784247369049421 17 0.043077291231101746 0 0.04215856266466717 18 0.03621873010084374 24 0.03597387325232047 21 0.03357782560863104 10 0.02894152910796938 11 0.02653963071040491 19 0.026246386780332094 16 0.022630546978747088 20 0.018562244813754823 12 0.01757803216885963 15 0.016757986304715193 14 0.011726428203748146 13 0.007808380264026585 __DUMMY__ 0.002361304387962673 false 1.0
62 5 0.074675 4 0.073613 6 0.073188 2 0.072978 3 0.072785 1 0.072563 8 0.072472 7 0.072404 9 0.059185 23 0.054663 22 0.041665 24 0.039706 17 0.036896 0 0.035556 18 0.023844 21 0.023715 10 0.016053 16 0.015768 15 0.014428 19 0.014079 20 0.013861 11 0.012819 12 0.009518 14 0.003566 5 0.074675 4 0.073613 6 0.073188 2 0.072978 3 0.072785 1 0.072563 8 0.072472 7 0.072404 9 0.059185 23 0.054663 22 0.041665 24 0.039706 17 0.036896 0 0.035556 18 0.023844 21 0.023715 10 0.016053 16 0.015768 15 0.014428 19 0.014079 20 0.013861 11 0.012819 12 0.009518 14 0.003566 5 0.06058428210321629 4 0.06036818085822776 6 0.059752709157532294 8 0.05900665999758358 1 0.058990976162088045 7 0.05897848062414475 2 0.05886711242421685 3 0.05867767756333662 9 0.057974763042874605 22 0.0493494872863986 23 0.04769287011595562 17 0.04292814513054851 0 0.04208932023412468 18 0.03627973116759043 24 0.03576421485616903 21 0.033523355278196526 10 0.028889825749731663 11 0.026505938290801598 19 0.0262408685155087 16 0.02262548724961623 20 0.018474967428682477 12 0.017586362171546216 15 0.01689748828576356 14 0.011781402259892935 13 0.007808387477030824 __DUMMY__ 0.0023613065692215237 false 1.0
63 1 0.072835 7 0.072641 3 0.072462 8 0.072175 4 0.07201 5 0.071812 2 0.071487 6 0.070884 23 0.068309 24 0.052908 9 0.05161 22 0.03681 17 0.031201 20 0.028423 21 0.027103 0 0.023692 18 0.022831 19 0.022054 16 0.017612 15 0.014153 12 0.013647 10 0.007809 11 0.00321 14 0.002321 1 0.072835 7 0.072641 3 0.072462 8 0.072175 4 0.07201 5 0.071812 2 0.071487 6 0.070884 23 0.068309 24 0.052908 9 0.05161 22 0.03681 17 0.031201 20 0.028423 21 0.027103 0 0.023692 18 0.022831 19 0.022054 16 0.017612 15 0.014153 12 0.013647 10 0.007809 11 0.00321 14 0.002321 4 0.05908504188869531 5 0.05872949601969434 1 0.058285228785934326 7 0.05826756093223923 23 0.058162399166100484 8 0.05801684521861344 6 0.05797418241068208 3 0.0577931647435852 2 0.05736401794575955 9 0.05071272332567213 24 0.0458042573057995 22 0.04523488975476215 17 0.03779979471706196 21 0.03695640219215402 18 0.03486914813601159 0 0.03238250968248013 19 0.031534024880935284 20 0.029302532657300814 16 0.023577944725558322 12 0.023356766096724133 10 0.021920523586390718 11 0.02051948769845728 15 0.016944841406379526 14 0.012236617626154467 13 0.010692980461769046 __DUMMY__ 0.0024766186350848297 false 1.0
64 22 0.092359 21 0.088793 11 0.078285 19 0.056179 18 0.054498 9 0.054392 24 0.049211 12 0.046069 10 0.042987 0 0.041917 17 0.04143 23 0.041251 4 0.032284 5 0.031194 14 0.030006 3 0.027722 6 0.02701 20 0.025702 7 0.025404 8 0.02526 1 0.024585 2 0.02432 16 0.020828 13 0.018314 22 0.092359 21 0.088793 11 0.078285 19 0.056179 18 0.054498 9 0.054392 24 0.049211 12 0.046069 10 0.042987 0 0.041917 17 0.04143 23 0.041251 4 0.032284 5 0.031194 14 0.030006 3 0.027722 6 0.02701 20 0.025702 7 0.025404 8 0.02526 1 0.024585 2 0.02432 16 0.020828 13 0.018314 22 0.07989371849488353 21 0.07739389579845248 11 0.06668295696916415 19 0.05606057299779721 18 0.05597222699816157 9 0.05078025386744338 24 0.046712314939577795 12 0.04486987269816096 10 0.04366602730974703 17 0.043042207376302336 23 0.04165616081424737 0 0.04124787300991855 4 0.032722229383514066 20 0.03213558556632626 5 0.031931238018525 14 0.030580154626173594 6 0.028600997969205684 3 0.028556846281361122 7 0.0270692765182762 8 0.026967467672249657 1 0.026551915950069487 2 0.026164459314324005 16 0.025954530080871462 13 0.02247882686044644 15 0.008526601839733786 __DUMMY__ 0.0037817886450669212 false 1.0
65 23 0.087572 24 0.067345 4 0.060175 5 0.059431 6 0.059138 7 0.058388 2 0.058132 3 0.057979 8 0.057946 1 0.057943 20 0.051511 12 0.046023 21 0.040591 19 0.040212 16 0.030841 9 0.029352 22 0.027229 17 0.02704 18 0.024537 13 0.024248 15 0.012075 0 0.011175 14 0.007887 11 0.003231 23 0.087572 24 0.067345 4 0.060175 5 0.059431 6 0.059138 7 0.058388 2 0.058132 3 0.057979 8 0.057946 1 0.057943 20 0.051511 12 0.046023 21 0.040591 19 0.040212 16 0.030841 9 0.029352 22 0.027229 17 0.02704 18 0.024537 13 0.024248 15 0.012075 0 0.011175 14 0.007887 11 0.003231 23 0.07012632761553712 24 0.05570784026976297 4 0.05086071440752768 5 0.050264302202761006 6 0.04950009335257777 7 0.04837803509170326 8 0.048116222414102065 1 0.04806789528000501 3 0.047936527168502815 2 0.047901472066557496 21 0.047184652365935734 20 0.044733470644492845 12 0.04371564453090549 19 0.04358756822952583 22 0.04058390716007523 18 0.03714665610288831 9 0.036540224844155304 17 0.03393178390856702 16 0.03019729973246183 13 0.026412424981695774 0 0.02329052999619362 11 0.02144849260626618 10 0.017748704697194223 14 0.017707505965107215 15 0.01643478856628335 __DUMMY__ 0.002476915799214795 false 1.0
66 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.075176 4 0.060059 22 0.059987 8 0.059526 1 0.059525 7 0.059434 6 0.059377 5 0.059268 3 0.058092 2 0.058009 0 0.055605 17 0.050569 18 0.04554 10 0.043471 23 0.034059 21 0.032554 11 0.031255 19 0.023197 24 0.021436 16 0.017243 15 0.014911 14 0.012096 12 0.004963 20 0.004649 9 0.06717781616007729 22 0.05825279597587681 4 0.054446584595753585 0 0.05395666734030091 6 0.05392882690672668 5 0.05380086018004883 8 0.05367934908188609 7 0.053624913328318105 1 0.05360357755322036 2 0.05257389444694186 3 0.052381007319587905 17 0.05124995828742663 18 0.04675528021448719 10 0.04302406656749667 23 0.03617421633279845 21 0.035666593226895735 11 0.03525856623534434 19 0.02984488291849022 24 0.025011327965698934 16 0.024374043563857813 15 0.017575114915017797 14 0.014682904930024398 12 0.012840789040740446 20 0.012175557060342568 13 0.005763280972355207 __DUMMY__ 0.002177124880285277 false 1.0
67 23 0.072906 5 0.066284 3 0.065838 4 0.065386 2 0.063622 1 0.062304 7 0.061898 6 0.061818 8 0.061473 24 0.058335 9 0.049597 22 0.048262 21 0.042816 19 0.034167 20 0.034111 18 0.032522 17 0.027958 12 0.022122 0 0.019436 16 0.013386 10 0.011989 11 0.011784 15 0.007676 14 0.004314 23 0.072906 5 0.066284 3 0.065838 4 0.065386 2 0.063622 1 0.062304 7 0.061898 6 0.061818 8 0.061473 24 0.058335 9 0.049597 22 0.048262 21 0.042816 19 0.034167 20 0.034111 18 0.032522 17 0.027958 12 0.022122 0 0.019436 16 0.013386 10 0.011989 11 0.011784 15 0.007676 14 0.004314 23 0.058554180268783326 5 0.05454117479680398 4 0.05439522561752662 22 0.05316822400871748 3 0.05283845785723171 6 0.05183276593383076 2 0.05162573864680246 1 0.05130280820382107 7 0.05119671907326695 8 0.050967216708439546 9 0.0503825214595994 24 0.047917605315920334 21 0.04786129698935012 18 0.040775331565090146 19 0.03769843971347983 17 0.03531922669049153 20 0.03136870379815557 0 0.03068299882455957 12 0.029447106468917236 11 0.027983457755295017 10 0.026191288914909093 16 0.01944392777747816 14 0.01576092277496426 13 0.013025930395277328 15 0.013016990516491888 __DUMMY__ 0.002701739924796716 false 1.0
68 21 0.06978 23 0.063933 22 0.061756 24 0.05484 12 0.054295 4 0.050467 5 0.049882 6 0.046593 9 0.045366 11 0.044095 3 0.043991 8 0.043677 7 0.043221 1 0.043153 2 0.042891 18 0.037741 19 0.035756 13 0.032759 20 0.027723 0 0.026232 17 0.02573 10 0.024386 14 0.023787 16 0.007945 21 0.06978 23 0.063933 22 0.061756 24 0.05484 12 0.054295 4 0.050467 5 0.049882 6 0.046593 9 0.045366 11 0.044095 3 0.043991 8 0.043677 7 0.043221 1 0.043153 2 0.042891 18 0.037741 19 0.035756 13 0.032759 20 0.027723 0 0.026232 17 0.02573 10 0.024386 14 0.023787 16 0.007945 21 0.06515518250733698 22 0.06063830488073222 23 0.05500334472505013 12 0.050573362807664515 24 0.047440799631453194 11 0.04725644840285272 18 0.046239232375443085 9 0.04510105554245668 4 0.043148688741801444 19 0.04267745436228777 5 0.042631722564815185 6 0.04023984684341974 3 0.03780252643521826 8 0.03776037654265555 7 0.03759867850306233 1 0.03746377155217078 2 0.03711596038130075 10 0.03426413819957817 13 0.033872174151217585 17 0.0336199253361193 0 0.03286914694665957 20 0.03202812503079463 14 0.028691120515660612 16 0.0181037933538433 15 0.009784949318965898 __DUMMY__ 0.0029198703474396176 false 1.0
69 21 0.100829 19 0.094446 22 0.085236 20 0.078615 18 0.076847 24 0.074857 11 0.07322 12 0.067331 23 0.049273 10 0.043861 16 0.043534 17 0.042619 14 0.042528 13 0.032436 9 0.029153 0 0.022558 15 0.016652 4 0.009139 5 0.008447 3 0.004887 6 0.001979 8 8.62E-4 7 5.66E-4 1 1.27E-4 21 0.100829 19 0.094446 22 0.085236 20 0.078615 18 0.076847 24 0.074857 11 0.07322 12 0.067331 23 0.049273 10 0.043861 16 0.043534 17 0.042619 14 0.042528 13 0.032436 9 0.029153 0 0.022558 15 0.016652 4 0.009139 5 0.008447 3 0.004887 6 0.001979 8 8.62E-4 7 5.66E-4 1 1.27E-4 21 0.08763934934545146 19 0.08195200010304524 22 0.07641578414471603 18 0.0713223461909328 20 0.06712812816217462 11 0.06557263084506317 24 0.06381351000715973 12 0.060598113608520514 23 0.04725341940536012 10 0.04514483501153924 17 0.042596489594861786 14 0.04141383878409311 16 0.040080664010220445 13 0.03362912919405799 9 0.03349974153951813 0 0.027729080182250853 15 0.019935234901478718 4 0.016133454375194596 5 0.015529064726769471 3 0.012014488292557746 6 0.010576710210566793 8 0.009200560657933876 7 0.009102655279725556 1 0.008725220856900135 2 0.008454408537918331 __DUMMY__ 0.004539142031989538 false 1.0
170 10 0.101307 18 0.087733 11 0.072463 22 0.071841 9 0.067435 14 0.064352 0 0.063118 21 0.060041 13 0.053981 17 0.043715 19 0.043235 12 0.039862 15 0.03145 4 0.024216 5 0.02374 6 0.022058 1 0.018991 7 0.018938 8 0.018914 2 0.018288 3 0.018144 20 0.015919 23 0.013512 16 0.006748 10 0.101307 18 0.087733 11 0.072463 22 0.071841 9 0.067435 14 0.064352 0 0.063118 21 0.060041 13 0.053981 17 0.043715 19 0.043235 12 0.039862 15 0.03145 4 0.024216 5 0.02374 6 0.022058 1 0.018991 7 0.018938 8 0.018914 2 0.018288 3 0.018144 20 0.015919 23 0.013512 16 0.006748 10 0.08279410199021096 18 0.0783754307753642 22 0.06755402586381326 11 0.06427917510151752 9 0.05930843320925483 21 0.05912269440694445 0 0.055239542820573403 14 0.05479342540153248 19 0.04808697016204353 13 0.04591338928224526 17 0.04463386159630871 12 0.04046093403408886 15 0.030586786118664982 4 0.026498134884485547 5 0.026052600165224312 20 0.025676716144935992 6 0.02436206740041602 23 0.02335444485373574 7 0.021915634992003313 8 0.021894129425796285 1 0.021871992586182273 3 0.02151063322339342 2 0.021314860362107592 16 0.017369079296219746 24 0.014207139319946748 __DUMMY__ 0.002823796582990535 false 1.0
171 14 0.104884 13 0.102647 10 0.098735 18 0.088126 12 0.07197 11 0.069997 21 0.066502 15 0.064294 22 0.053356 19 0.051178 0 0.043585 20 0.041856 9 0.040241 17 0.031642 23 0.018869 16 0.015987 24 0.009074 4 0.007481 5 0.007298 6 0.006167 8 0.00171 7 0.001571 1 0.001553 2 0.00128 14 0.104884 13 0.102647 10 0.098735 18 0.088126 12 0.07197 11 0.069997 21 0.066502 15 0.064294 22 0.053356 19 0.051178 0 0.043585 20 0.041856 9 0.040241 17 0.031642 23 0.018869 16 0.015987 24 0.009074 4 0.007481 5 0.007298 6 0.006167 8 0.00171 7 0.001571 1 0.001553 2 0.00128 14 0.08451233339717962 10 0.08443258619868879 18 0.08181709417188307 13 0.07927517080545193 21 0.06518523617117447 11 0.06420044625271898 12 0.062016332419907484 22 0.05697546962314619 19 0.05452632278154195 15 0.05381071894657048 20 0.04352271935819289 0 0.042126810749596406 9 0.0418914013595448 17 0.036190231311650264 23 0.02587219953409666 16 0.021744849662480404 24 0.019579566565349815 4 0.01364359494882241 5 0.013362798921756538 6 0.011749900011765929 8 0.008329688168973778 7 0.00825869947908935 1 0.00817837852145175 2 0.007889359150961006 3 0.0075455401501888 __DUMMY__ 0.003362551337816327 false 1.0
172 22 0.101339 11 0.100729 10 0.097716 18 0.094949 21 0.089539 19 0.071033 0 0.068933 9 0.064978 17 0.057559 14 0.055875 12 0.047198 13 0.037996 16 0.026396 20 0.022312 15 0.015481 24 0.013642 23 0.009003 4 0.008345 5 0.007676 6 0.004119 3 0.001708 7 0.001345 1 0.001107 8 0.001022 22 0.101339 11 0.100729 10 0.097716 18 0.094949 21 0.089539 19 0.071033 0 0.068933 9 0.064978 17 0.057559 14 0.055875 12 0.047198 13 0.037996 16 0.026396 20 0.022312 15 0.015481 24 0.013642 23 0.009003 4 0.008345 5 0.007676 6 0.004119 3 0.001708 7 0.001345 1 0.001107 8 0.001022 22 0.08514414818825759 11 0.08126345053503095 18 0.08103173132251304 10 0.07811603157118494 21 0.07774477977743169 19 0.06475908047789543 0 0.05790899621180822 9 0.056887447349671855 17 0.05251571844515206 14 0.048013120372947936 12 0.04626742876537501 13 0.036148474618951085 20 0.029968823631882077 16 0.029203750659254117 24 0.024233001514208468 23 0.021914189349362675 15 0.019185274715803956 4 0.017518939101077702 5 0.016946339837147075 6 0.014095434552524582 3 0.01207500397169204 7 0.011743858369385147 8 0.011572611549986907 1 0.011508328673729949 2 0.010759211333027745 __DUMMY__ 0.0034748251046978944 false 1.0
173 21 0.107147 22 0.096631 19 0.094047 11 0.087032 18 0.075276 12 0.064297 24 0.063481 20 0.060853 10 0.054584 17 0.043782 23 0.04203 16 0.039501 14 0.039333 9 0.038263 0 0.03467 13 0.02609 5 0.010223 4 0.009985 3 0.0056 15 0.004205 6 0.002238 8 2.55E-4 2 2.43E-4 7 2.33E-4 21 0.107147 22 0.096631 19 0.094047 11 0.087032 18 0.075276 12 0.064297 24 0.063481 20 0.060853 10 0.054584 17 0.043782 23 0.04203 16 0.039501 14 0.039333 9 0.038263 0 0.03467 13 0.02609 5 0.010223 4 0.009985 3 0.0056 15 0.004205 6 0.002238 8 2.55E-4 2 2.43E-4 7 2.33E-4 21 0.0932446724422692 22 0.08513059775551894 19 0.07988494390795936 11 0.07594943283458926 18 0.06893609551508616 12 0.05951639955769535 24 0.05677972110130255 20 0.053764979520874064 10 0.05068060102988138 17 0.04305254286348374 23 0.04228850759628204 9 0.03998945063861522 14 0.03896424632405836 16 0.035920929208966265 0 0.0356834974588688 13 0.030186019851457305 4 0.01722385112375957 5 0.017057439464677915 3 0.01277685324406507 6 0.011302770264112732 15 0.010197610786872955 7 0.009395716894232832 8 0.009344040140552049 1 0.00910970761034064 2 0.008997349617317706 __DUMMY__ 0.00462202324716069 false 1.0
174 18 0.093384 10 0.089569 19 0.077659 11 0.076796 21 0.075305 22 0.072475 14 0.061194 12 0.060501 0 0.056207 13 0.056018 17 0.053058 20 0.050501 9 0.046018 16 0.040062 15 0.030524 24 0.023766 23 0.020478 4 0.006098 5 0.00608 6 0.003428 3 6.36E-4 7 1.14E-4 2 9.8E-5 8 3.1E-5 18 0.093384 10 0.089569 19 0.077659 11 0.076796 21 0.075305 22 0.072475 14 0.061194 12 0.060501 0 0.056207 13 0.056018 17 0.053058 20 0.050501 9 0.046018 16 0.040062 15 0.030524 24 0.023766 23 0.020478 4 0.006098 5 0.00608 6 0.003428 3 6.36E-4 7 1.14E-4 2 9.8E-5 8 3.1E-5 18 0.08641333384238484 10 0.08178834020519773 19 0.06992288156359401 21 0.06945390673200755 11 0.06930330077965126 22 0.06922608237412882 14 0.05733957470545436 12 0.05315508300563187 0 0.05196008277980435 13 0.05004412366385503 17 0.04980419700248071 9 0.0474670820921089 20 0.046731744751919 16 0.03539535011736525 15 0.03229875193977939 24 0.025649883333640693 23 0.025216749860595376 4 0.013119553012745838 5 0.01289969818982076 6 0.010464875302920739 3 0.008318178173578775 7 0.007855062596835136 8 0.007808391780199506 1 0.0077181671289467116 2 0.007575197582253915 __DUMMY__ 0.0030704074830993086 false 1.0
175 10 0.100058 18 0.092596 11 0.09024 21 0.086632 22 0.086244 13 0.069559 12 0.067192 14 0.064352 9 0.06328 0 0.062392 19 0.050804 17 0.040586 23 0.016881 20 0.016874 4 0.015526 5 0.015234 6 0.012202 15 0.010096 8 0.007077 1 0.006983 7 0.006889 2 0.006644 3 0.006245 24 0.005415 10 0.100058 18 0.092596 11 0.09024 21 0.086632 22 0.086244 13 0.069559 12 0.067192 14 0.064352 9 0.06328 0 0.062392 19 0.050804 17 0.040586 23 0.016881 20 0.016874 4 0.015526 5 0.015234 6 0.012202 15 0.010096 8 0.007077 1 0.006983 7 0.006889 2 0.006644 3 0.006245 24 0.005415 10 0.08017275275686649 18 0.07854985809817135 22 0.07419954557772897 11 0.07332931118483588 21 0.07298926560464371 9 0.056576246492409096 12 0.055661030166921976 13 0.05465393541831141 0 0.05440028981231322 14 0.05402104934370498 19 0.05065623910974399 17 0.04230244175426374 23 0.025816607976788877 20 0.025426291327825947 4 0.022962508714800618 5 0.022611812656063976 6 0.020335258803052102 15 0.018450469457155918 24 0.01763784550950076 8 0.01677145535566764 7 0.01670356608292321 1 0.016685528627798096 2 0.01629909624008315 3 0.016258044403490008 16 0.013575784371356463 __DUMMY__ 0.002953765153578422 false 1.0
176 11 0.09749 21 0.084183 10 0.079948 18 0.079358 22 0.077367 12 0.074467 19 0.069817 13 0.063841 14 0.058794 0 0.058492 17 0.049419 20 0.04115 9 0.038998 16 0.037985 24 0.027607 23 0.022299 15 0.02045 5 0.006736 4 0.006598 6 0.004325 2 3.02E-4 7 2.41E-4 1 9.2E-5 3 4.3E-5 11 0.09749 21 0.084183 10 0.079948 18 0.079358 22 0.077367 12 0.074467 19 0.069817 13 0.063841 14 0.058794 0 0.058492 17 0.049419 20 0.04115 9 0.038998 16 0.037985 24 0.027607 23 0.022299 15 0.02045 5 0.006736 4 0.006598 6 0.004325 2 3.02E-4 7 2.41E-4 1 9.2E-5 3 4.3E-5 11 0.08129864588804728 21 0.0783994627857217 18 0.07373932828010896 22 0.07327268918294626 10 0.06880603227531326 19 0.06628819464036868 12 0.06463789278430389 13 0.05278168047277775 0 0.05102163115594229 14 0.05100966250586907 17 0.047268746422257236 20 0.04194066551403098 9 0.04144485227981885 16 0.035296696360276665 24 0.032971163825150585 23 0.02984641340630509 15 0.020753959364136248 4 0.014700265255069523 5 0.014529876181727288 6 0.012101863693089184 3 0.008923265337889313 7 0.008857257147490409 8 0.008714520393752017 1 0.008674542827213704 2 0.008580729908688857 __DUMMY__ 0.004139962111705039 false 1.0
177 11 0.089892 22 0.08369 21 0.077353 10 0.069616 9 0.062527 0 0.060813 18 0.058336 12 0.054962 13 0.045753 14 0.040427 17 0.038432 4 0.034888 5 0.034439 19 0.033065 6 0.031926 8 0.027874 1 0.027617 7 0.027605 23 0.027591 2 0.027013 3 0.026875 24 0.015574 16 0.002482 15 0.00125 11 0.089892 22 0.08369 21 0.077353 10 0.069616 9 0.062527 0 0.060813 18 0.058336 12 0.054962 13 0.045753 14 0.040427 17 0.038432 4 0.034888 5 0.034439 19 0.033065 6 0.031926 8 0.027874 1 0.027617 7 0.027605 23 0.027591 2 0.027013 3 0.026875 24 0.015574 16 0.002482 15 0.00125 11 0.07624686318340787 22 0.07437676835274117 21 0.07198689291471684 10 0.06275251577322769 18 0.0606149435270838 12 0.05449515492060068 9 0.05425618399875466 0 0.0540676173803531 13 0.04483960791501006 19 0.0434652085234368 17 0.04215851031405797 14 0.04055844002002638 23 0.03192036741723038 4 0.03120059995787547 5 0.03074846181410469 6 0.02885564302722992 8 0.025424655822429216 7 0.02531033482828957 1 0.02522898059761338 2 0.024740378012924665 3 0.02455350914360455 24 0.024237380859276268 20 0.017457572128220817 16 0.016609999102453636 15 0.010504688794614827 __DUMMY__ 0.0033887216707156258 false 1.0
178 0 0.090843 17 0.090033 11 0.081071 22 0.073566 16 0.072126 18 0.055697 9 0.055395 21 0.054587 19 0.053398 10 0.051192 12 0.050571 6 0.032365 4 0.028064 5 0.027272 8 0.027177 7 0.027154 1 0.026926 2 0.02597 13 0.023686 23 0.022268 3 0.019436 24 0.006633 20 0.002758 14 0.001811 0 0.090843 17 0.090033 11 0.081071 22 0.073566 16 0.072126 18 0.055697 9 0.055395 21 0.054587 19 0.053398 10 0.051192 12 0.050571 6 0.032365 4 0.028064 5 0.027272 8 0.027177 7 0.027154 1 0.026926 2 0.02597 13 0.023686 23 0.022268 3 0.019436 24 0.006633 20 0.002758 14 0.001811 17 0.07615704752376565 0 0.07455497716736215 22 0.0656727466498945 11 0.06424999421368052 16 0.06008831946969129 18 0.05413361667967818 9 0.05377851307246685 19 0.05022848636478277 21 0.048551929658005255 10 0.04711496272931913 12 0.04053369723160834 6 0.036315259944887504 4 0.03380491748848088 5 0.03317509030543822 8 0.03295718058222832 7 0.03290728534546554 1 0.032732643208342266 2 0.03200237458150403 23 0.029321180127574772 3 0.027854799097377744 13 0.019948408036674938 24 0.017618834374038668 20 0.014104200430715088 15 0.010791549112204103 14 0.008933696336201261 __DUMMY__ 0.0024682902686120486 false 1.0
179 10 0.100327 18 0.089075 11 0.084883 13 0.076218 14 0.071196 0 0.069237 22 0.064004 21 0.062407 12 0.062322 19 0.05752 17 0.054822 9 0.049017 15 0.03991 16 0.035522 20 0.028326 23 0.010666 6 0.008852 5 0.00834 4 0.008306 1 0.004683 8 0.004516 7 0.004457 2 0.004089 3 0.001304 10 0.100327 18 0.089075 11 0.084883 13 0.076218 14 0.071196 0 0.069237 22 0.064004 21 0.062407 12 0.062322 19 0.05752 17 0.054822 9 0.049017 15 0.03991 16 0.035522 20 0.028326 23 0.010666 6 0.008852 5 0.00834 4 0.008306 1 0.004683 8 0.004516 7 0.004457 2 0.004089 3 0.001304 10 0.0850482250077405 18 0.08154884753285954 11 0.0722355926580094 22 0.06445143080685649 21 0.06084937782716243 14 0.05998997452159187 0 0.059737164369801136 13 0.05837538389418444 19 0.05685581997560183 12 0.052372018861725926 17 0.051512238356184854 9 0.05008953395839863 15 0.036213845554535676 16 0.032990933428595076 20 0.032340546971506665 23 0.02034953231351714 4 0.016510959461751976 5 0.016301339284185083 6 0.015782224812245324 24 0.012678642945852142 8 0.012594142538795698 1 0.012586389635069332 7 0.012562017931120899 2 0.01210346750310901 3 0.010879129081638914 __DUMMY__ 0.0030412207679601806 false 1.0
70 6 0.07578 4 0.075065 7 0.074746 8 0.074514 5 0.07426 1 0.074094 2 0.073703 3 0.072557 9 0.060187 23 0.054208 17 0.040624 22 0.039951 0 0.039412 24 0.036585 18 0.022517 21 0.020563 16 0.018644 10 0.015318 15 0.013225 11 0.012162 19 0.011674 20 0.01073 12 0.009322 14 1.59E-4 6 0.07578 4 0.075065 7 0.074746 8 0.074514 5 0.07426 1 0.074094 2 0.073703 3 0.072557 9 0.060187 23 0.054208 17 0.040624 22 0.039951 0 0.039412 24 0.036585 18 0.022517 21 0.020563 16 0.018644 10 0.015318 15 0.013225 11 0.012162 19 0.011674 20 0.01073 12 0.009322 14 1.59E-4 6 0.06092975371586497 4 0.060812192785819605 5 0.06016520612351064 7 0.05997434439892116 8 0.05987308309737587 1 0.059613397302330146 2 0.059114968391665024 9 0.05855952852407335 3 0.05828603844975493 22 0.04847672174052301 23 0.04684274308273382 17 0.045985018837592165 0 0.04519766458655821 18 0.03580335543262397 24 0.03337652958160336 21 0.031396762859154166 10 0.02880733846218014 11 0.02658656271526056 16 0.025330478686989216 19 0.02523247395585614 12 0.017389687214006577 20 0.01645052981449615 15 0.016347642140140516 14 0.009499451010280305 13 0.00759264159019026 __DUMMY__ 0.0023558855004956816 false 1.0
71 23 0.090307 24 0.065106 5 0.060886 2 0.060863 3 0.060643 4 0.060503 6 0.059745 1 0.059251 7 0.059223 8 0.058865 20 0.051009 12 0.040442 19 0.039543 21 0.039055 16 0.030307 9 0.030044 22 0.028549 17 0.028461 18 0.027329 13 0.019286 15 0.012431 0 0.012301 14 0.005029 11 8.2E-4 23 0.090307 24 0.065106 5 0.060886 2 0.060863 3 0.060643 4 0.060503 6 0.059745 1 0.059251 7 0.059223 8 0.058865 20 0.051009 12 0.040442 19 0.039543 21 0.039055 16 0.030307 9 0.030044 22 0.028549 17 0.028461 18 0.027329 13 0.019286 15 0.012431 0 0.012301 14 0.005029 11 8.2E-4 23 0.06954106580780803 4 0.05412757030867643 5 0.054047161574930024 6 0.053123164621249545 2 0.05274553531344057 3 0.05267242356748614 7 0.052363762484325886 1 0.05230162371105752 24 0.052168740775204156 8 0.05215379743959321 21 0.04244181646456851 22 0.040744125274516645 20 0.040410787683846365 9 0.040216733055178 19 0.03952608734514801 18 0.03666326353882092 12 0.036011429165099154 17 0.035584216717161166 16 0.028841988901215167 0 0.025955382893366644 13 0.020049487478258035 11 0.018359217060080466 10 0.017734585195932927 15 0.01638242872755401 14 0.013812375911300443 __DUMMY__ 0.0020212289841821667 false 1.0
72 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.0673365242244586 22 0.05798429119201663 4 0.05450007151625107 6 0.054001163127642395 0 0.05397028533426852 7 0.053769424039679256 8 0.05369625719786441 5 0.05363519803751846 1 0.05357539115421325 2 0.05250982345201892 3 0.05231764185358212 17 0.05114071195327361 18 0.04652161295627302 10 0.04317265072320945 23 0.0362422582427304 21 0.03574795839467631 11 0.03538828810063804 19 0.029878844852938114 24 0.025095749658416808 16 0.024381201133197326 15 0.017424330162551134 14 0.014623310409321329 12 0.012779503810855726 20 0.012388591043869964 13 0.005744487741126171 __DUMMY__ 0.002174429687409074 false 1.0
73 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.07556720586664828 0 0.07198601613076637 16 0.05829721382497211 9 0.05791042993949627 22 0.05781370941788239 18 0.052592432790288655 11 0.04718272846323065 6 0.04423287028533645 10 0.04411180426392551 19 0.044104396068939886 8 0.04226448972836134 7 0.042065876918412584 1 0.04194891568036405 4 0.04141448047524753 2 0.041407302516988834 5 0.041075192642134946 3 0.03767108494031224 21 0.033828492836562876 23 0.02986811112157998 12 0.024847643590065208 15 0.018806595793254385 24 0.01768031053889487 20 0.015372953658994382 13 0.009852783723881601 14 0.005992874354646341 __DUMMY__ 0.0021040844288124235 false 1.0
74 17 0.089417 0 0.083846 16 0.0731 9 0.059227 22 0.055355 18 0.053398 11 0.047712 10 0.045173 19 0.045027 6 0.044097 8 0.041444 1 0.041179 7 0.041165 2 0.040303 4 0.039063 5 0.038517 3 0.034356 21 0.027444 23 0.024749 12 0.024677 15 0.021379 20 0.011056 24 0.009276 13 0.009039 17 0.089417 0 0.083846 16 0.0731 9 0.059227 22 0.055355 18 0.053398 11 0.047712 10 0.045173 19 0.045027 6 0.044097 8 0.041444 1 0.041179 7 0.041165 2 0.040303 4 0.039063 5 0.038517 3 0.034356 21 0.027444 23 0.024749 12 0.024677 15 0.021379 20 0.011056 24 0.009276 13 0.009039 17 0.07728780795261041 0 0.07272724927059002 16 0.061595813157010126 9 0.056595035613562265 22 0.05546540432655961 18 0.05204768582806421 11 0.046375757191297336 19 0.04452734261367215 6 0.04380242087216936 10 0.04370268664859568 8 0.04171409722889594 7 0.0415329027661854 1 0.041482978977559225 2 0.04077393514894393 4 0.040558177957897054 5 0.040039628424883275 3 0.0366065430958896 21 0.03241326092046037 23 0.03016352499266915 12 0.025985614164735577 15 0.021337409625924997 24 0.01721031655525434 20 0.016385521681927372 13 0.011332507372473134 14 0.006097972415660725 __DUMMY__ 0.0022384051965088033 false 1.0
75 3 0.060027 9 0.05967 4 0.058793 8 0.058612 7 0.058514 5 0.058477 2 0.058433 1 0.058271 6 0.057296 22 0.048172 23 0.046097 17 0.042559 0 0.040349 24 0.038921 18 0.037915 10 0.032765 19 0.0314 21 0.029245 15 0.027837 16 0.026925 20 0.02564 11 0.02151 14 0.015781 12 0.006793 3 0.060027 9 0.05967 4 0.058793 8 0.058612 7 0.058514 5 0.058477 2 0.058433 1 0.058271 6 0.057296 22 0.048172 23 0.046097 17 0.042559 0 0.040349 24 0.038921 18 0.037915 10 0.032765 19 0.0314 21 0.029245 15 0.027837 16 0.026925 20 0.02564 11 0.02151 14 0.015781 12 0.006793 9 0.05879692286222921 4 0.053906318276814046 3 0.05351226257648992 5 0.05347575016438181 8 0.05313374811810309 7 0.05308008368751928 1 0.052897408152039006 6 0.05269018711268579 2 0.05266498828127791 22 0.05216511118643381 17 0.04561595013196748 0 0.04400674167985269 23 0.04343225443221108 18 0.0429747147577271 10 0.03679751109360687 24 0.03558582490328173 21 0.03476334843492058 19 0.03438125565677724 11 0.02930745996118118 16 0.02795664047531672 15 0.02469511480915499 20 0.024344415378394893 14 0.017544480490226836 12 0.013876410870500042 13 0.0059248647901414125 __DUMMY__ 0.0024702317167653786 false 1.0
76 0 0.085463 17 0.0793 9 0.063325 22 0.059148 16 0.056145 11 0.056037 10 0.051289 18 0.050028 6 0.047917 8 0.044708 7 0.044611 2 0.044383 1 0.044261 4 0.043688 5 0.043578 3 0.039159 19 0.036252 21 0.030755 12 0.02597 23 0.024427 13 0.01203 15 0.011661 24 0.004744 14 0.00112 0 0.085463 17 0.0793 9 0.063325 22 0.059148 16 0.056145 11 0.056037 10 0.051289 18 0.050028 6 0.047917 8 0.044708 7 0.044611 2 0.044383 1 0.044261 4 0.043688 5 0.043578 3 0.039159 19 0.036252 21 0.030755 12 0.02597 23 0.024427 13 0.01203 15 0.011661 24 0.004744 14 0.00112 0 0.07307770104911274 17 0.0707560781734099 9 0.06000027966017506 22 0.05833096178642058 11 0.05066676545627222 18 0.05048389293949062 16 0.05023298202838231 10 0.047552208077617605 6 0.046176471047374594 8 0.04389831037032753 7 0.04380834019556731 4 0.04359467635539946 1 0.04357998133595227 2 0.04333858442543023 5 0.04327005505926601 3 0.039782330731648906 19 0.03914216726078524 21 0.03481605202265363 23 0.02967179489059599 12 0.02582041091298716 15 0.015530249726431234 24 0.014774972178367294 13 0.012537315862581597 20 0.009901449759914152 14 0.007231429285264583 __DUMMY__ 0.002024539408571727 false 1.0
77 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.06006015536560812 22 0.059197416531362484 4 0.050155869686953444 17 0.04980952636350704 5 0.049751938946983744 0 0.04942045133102898 6 0.04904279182799768 8 0.04873849641420706 7 0.04865509377708576 3 0.048594477921437236 1 0.04839386943999045 2 0.04813887603267925 18 0.04591496617080062 21 0.04205109870828168 23 0.039518575376479854 10 0.038635587740191935 11 0.03831152160722682 19 0.038088727912842006 24 0.03396695212347822 16 0.02951649704613815 20 0.021691416240942757 12 0.019965127412379158 15 0.01698918231072445 14 0.015224350807178379 13 0.00759758408776091 __DUMMY__ 0.0025694488167337416 false 1.0
78 9 0.067768 22 0.062144 0 0.056307 4 0.053584 5 0.05337 17 0.053197 6 0.052756 3 0.052665 8 0.052644 7 0.052528 2 0.052229 1 0.052159 18 0.046116 10 0.04234 11 0.038935 21 0.037805 19 0.03447 23 0.033818 24 0.028168 16 0.027599 20 0.014017 15 0.013089 12 0.012147 14 0.010146 9 0.067768 22 0.062144 0 0.056307 4 0.053584 5 0.05337 17 0.053197 6 0.052756 3 0.052665 8 0.052644 7 0.052528 2 0.052229 1 0.052159 18 0.046116 10 0.04234 11 0.038935 21 0.037805 19 0.03447 23 0.033818 24 0.028168 16 0.027599 20 0.014017 15 0.013089 12 0.012147 14 0.010146 9 0.06280576444977533 22 0.062131445948684166 0 0.05485935687026335 17 0.05348954623761881 18 0.04952466270383366 4 0.048340659125098655 5 0.04794347381452436 6 0.047499795874645805 8 0.04696487609642172 7 0.04687719393140745 1 0.04661566627618997 3 0.046477422670595375 2 0.046357842982104915 10 0.043936755522086306 11 0.042699778909241856 21 0.04209373696921963 19 0.03882902709963701 23 0.035018949833611326 16 0.030628655022768424 24 0.029115267808920854 12 0.01902923235990992 20 0.018419088085200607 15 0.015873370374481114 14 0.015022532219710845 13 0.0070596519035696645 __DUMMY__ 0.0023862469104787873 false 1.0
79 22 0.095564 21 0.09086 11 0.084046 19 0.058465 18 0.055341 9 0.055161 12 0.04882 24 0.047317 10 0.04676 0 0.046216 17 0.043758 23 0.033145 14 0.032419 4 0.029648 5 0.02888 3 0.02451 6 0.024175 20 0.024052 16 0.022932 8 0.022079 7 0.022052 1 0.021396 2 0.021222 13 0.021182 22 0.095564 21 0.09086 11 0.084046 19 0.058465 18 0.055341 9 0.055161 12 0.04882 24 0.047317 10 0.04676 0 0.046216 17 0.043758 23 0.033145 14 0.032419 4 0.029648 5 0.02888 3 0.02451 6 0.024175 20 0.024052 16 0.022932 8 0.022079 7 0.022052 1 0.021396 2 0.021222 13 0.021182 22 0.08226627763497207 21 0.07948265841351777 11 0.07129229532481107 19 0.058299753779656516 18 0.05744107156918468 9 0.05081647345244013 12 0.047499252952984204 10 0.04654740079433023 24 0.0452237321483385 17 0.04508634235203133 0 0.044331047789329545 23 0.03704489602305609 14 0.03219562747453945 20 0.031481780132800286 4 0.030118481562498772 5 0.029476758981727278 16 0.028017547810620998 6 0.02595973323659396 3 0.025487150661593353 13 0.024841140064695826 7 0.024040296339974163 8 0.024021333401327564 1 0.023591601975335563 2 0.023255289948876656 15 0.008318788932544775 __DUMMY__ 0.003863267242219087 false 1.0
180 11 0.09161 0 0.089166 22 0.081587 17 0.074101 10 0.072559 18 0.065804 9 0.062094 21 0.059121 19 0.048849 16 0.045814 12 0.043622 6 0.028197 13 0.027772 4 0.026804 5 0.02637 8 0.024161 7 0.023911 1 0.023847 2 0.023466 3 0.019983 14 0.018125 23 0.016244 15 0.004368 24 0.002424 11 0.09161 0 0.089166 22 0.081587 17 0.074101 10 0.072559 18 0.065804 9 0.062094 21 0.059121 19 0.048849 16 0.045814 12 0.043622 6 0.028197 13 0.027772 4 0.026804 5 0.02637 8 0.024161 7 0.023911 1 0.023847 2 0.023466 3 0.019983 14 0.018125 23 0.016244 15 0.004368 24 0.002424 0 0.07467211172697667 11 0.07370729231871141 22 0.07213728402040587 17 0.06708134397717125 10 0.06259068115795298 18 0.062313597346222147 9 0.05796378848442219 21 0.05418132802740305 19 0.048820973031016617 16 0.04419522439605473 12 0.039564636070758524 6 0.03165031615521559 4 0.03086824433452829 5 0.030402535244324614 8 0.02860989671602762 7 0.02845734997372067 1 0.02834434348029546 2 0.027914370158166252 13 0.02574376036761529 3 0.025408345450085166 23 0.024119110011665862 14 0.020881500758121684 24 0.01343575002266215 15 0.012255788573679793 20 0.012056183129759047 __DUMMY__ 0.0026242450670368967 false 1.0
181 10 0.107119 18 0.093166 11 0.069976 22 0.067664 0 0.06725 14 0.064783 9 0.062242 19 0.054491 17 0.052885 21 0.050306 13 0.047151 15 0.04476 12 0.032066 20 0.027651 16 0.026692 4 0.017667 5 0.017145 6 0.01637 7 0.014075 8 0.014 2 0.01374 1 0.01365 3 0.013496 23 0.011656 10 0.107119 18 0.093166 11 0.069976 22 0.067664 0 0.06725 14 0.064783 9 0.062242 19 0.054491 17 0.052885 21 0.050306 13 0.047151 15 0.04476 12 0.032066 20 0.027651 16 0.026692 4 0.017667 5 0.017145 6 0.01637 7 0.014075 8 0.014 2 0.01374 1 0.01365 3 0.013496 23 0.011656 10 0.0881622500871513 18 0.08355335535847729 22 0.06591667754743952 11 0.06352828726899486 0 0.057701719806481644 9 0.056966580739493955 14 0.05678986140781321 19 0.055203555513199776 21 0.05413422233210872 17 0.04977336423089552 13 0.04271818750375859 15 0.03921796699983806 12 0.035828274628488685 20 0.032471825553301276 16 0.02779447883206247 4 0.021831612237755607 23 0.02140606887044253 5 0.021359315049198767 6 0.020025556855998237 7 0.018028931614190134 8 0.017995512188765033 3 0.017825474378153548 1 0.017748231665820034 2 0.017576320964005545 24 0.013311792353880603 __DUMMY__ 0.003130576012284944 false 1.0
182 10 0.111189 18 0.103961 11 0.075189 14 0.070048 22 0.069582 0 0.065983 19 0.063658 21 0.057444 9 0.057403 13 0.055533 17 0.054808 15 0.045966 12 0.041493 20 0.0348 16 0.030505 23 0.012814 4 0.009541 5 0.009046 6 0.008253 7 0.005252 8 0.004849 1 0.004741 2 0.004251 3 0.00369 10 0.111189 18 0.103961 11 0.075189 14 0.070048 22 0.069582 0 0.065983 19 0.063658 21 0.057444 9 0.057403 13 0.055533 17 0.054808 15 0.045966 12 0.041493 20 0.0348 16 0.030505 23 0.012814 4 0.009541 5 0.009046 6 0.008253 7 0.005252 8 0.004849 1 0.004741 2 0.004251 3 0.00369 10 0.09096712192899711 18 0.0894758154506137 22 0.06726207037528796 11 0.06667078423230655 19 0.06025990066977767 14 0.060012351137147237 21 0.05819918420824823 0 0.057233399882181506 9 0.054653523678527334 17 0.05072838356890847 13 0.04724862753705987 12 0.040755977812443424 15 0.03992362817896936 20 0.03635687259111607 16 0.02966828018034118 23 0.021444846366966988 4 0.017271128349226044 5 0.016809848432469885 6 0.015409679520209694 24 0.01323367343123091 7 0.013074179578864722 8 0.012888501177474818 1 0.012753255188380363 3 0.012464742411063113 2 0.0123131468327277 __DUMMY__ 0.0029210772794599 false 1.0
183 21 0.102645 12 0.090318 11 0.0858 19 0.081169 22 0.079477 18 0.071418 13 0.063684 20 0.056585 10 0.055679 24 0.050121 14 0.04798 23 0.043807 17 0.039736 0 0.03829 16 0.035929 9 0.030217 4 0.008935 5 0.008486 6 0.004532 15 0.002644 3 0.001383 8 5.14E-4 7 4.53E-4 1 1.97E-4 21 0.102645 12 0.090318 11 0.0858 19 0.081169 22 0.079477 18 0.071418 13 0.063684 20 0.056585 10 0.055679 24 0.050121 14 0.04798 23 0.043807 17 0.039736 0 0.03829 16 0.035929 9 0.030217 4 0.008935 5 0.008486 6 0.004532 15 0.002644 3 0.001383 8 5.14E-4 7 4.53E-4 1 1.97E-4 21 0.0908786625476588 12 0.08022102339548712 11 0.07622559543213356 22 0.0725801354240703 19 0.07041055726908008 18 0.06686040602585215 13 0.059946825567853614 10 0.053620380623331694 20 0.05041385926452134 14 0.04727888191658772 24 0.046070792600987 23 0.042807948417609064 17 0.03939622625379022 0 0.038509942094647816 9 0.033854533825250686 16 0.03243719193848524 4 0.015672336065103813 5 0.015218039657811013 6 0.012153990961243706 15 0.009415580937204864 3 0.008740029468189432 7 0.008403611419707458 8 0.0083965135656502 1 0.00817878334544742 2 0.007931034148512692 __DUMMY__ 0.004377117833783213 false 1.0
184 10 0.08339 18 0.076114 0 0.071602 11 0.068762 22 0.061411 17 0.059916 13 0.057918 9 0.056341 14 0.053387 21 0.05073 12 0.047772 19 0.044747 15 0.035545 16 0.034687 6 0.024451 4 0.022731 5 0.022245 8 0.020305 7 0.020134 1 0.020018 2 0.019539 23 0.016294 20 0.016124 3 0.015836 10 0.08339 18 0.076114 0 0.071602 11 0.068762 22 0.061411 17 0.059916 13 0.057918 9 0.056341 14 0.053387 21 0.05073 12 0.047772 19 0.044747 15 0.035545 16 0.034687 6 0.024451 4 0.022731 5 0.022245 8 0.020305 7 0.020134 1 0.020018 2 0.019539 23 0.016294 20 0.016124 3 0.015836 10 0.07050919071443533 18 0.06810091979800757 0 0.06313142677264767 22 0.060710253358580935 11 0.06023629652643104 9 0.05599020573183403 17 0.05566852532026284 21 0.04926089422774661 19 0.044222782694957656 13 0.04350416779778211 14 0.043273843295419126 12 0.04050132580342462 16 0.033063041057637695 15 0.030662280791353413 6 0.030406513197955995 4 0.02983057624087519 5 0.029378058000971083 8 0.027483685847723927 7 0.02739118115743414 1 0.027286909169172046 2 0.02679949107973794 3 0.02456905251339644 23 0.024287460961222303 20 0.020105528288577302 24 0.011507243345623452 __DUMMY__ 0.0021191463067894056 false 1.0
185 11 0.124029 22 0.094357 21 0.083505 0 0.081907 10 0.076643 18 0.07571 17 0.071402 12 0.066266 19 0.063777 16 0.048853 9 0.048126 13 0.045782 14 0.035634 20 0.015566 24 0.013667 23 0.010149 4 0.00945 6 0.009187 5 0.008452 15 0.005099 8 0.003441 7 0.003322 2 0.002846 1 0.00283 11 0.124029 22 0.094357 21 0.083505 0 0.081907 10 0.076643 18 0.07571 17 0.071402 12 0.066266 19 0.063777 16 0.048853 9 0.048126 13 0.045782 14 0.035634 20 0.015566 24 0.013667 23 0.010149 4 0.00945 6 0.009187 5 0.008452 15 0.005099 8 0.003441 7 0.003322 2 0.002846 1 0.00283 11 0.09095836601711042 22 0.08012904748543624 21 0.0732019873620475 18 0.06816430901805556 10 0.06417338222313902 0 0.06381084843873969 19 0.05902869484447229 17 0.0589594543232454 12 0.055532739816415363 9 0.04813948165192714 16 0.040277148441937395 13 0.03882764917055275 14 0.03502554893434748 20 0.025226526602600316 24 0.02499330154995103 23 0.024520860757205023 4 0.020426217791829338 5 0.019720030865715523 6 0.019176407160970674 8 0.015330548327144042 7 0.015289412195978737 1 0.014965644102497622 2 0.014741306440897274 3 0.01359706502282713 15 0.012345392380217805 __DUMMY__ 0.003438629074739215 false 1.0
186 11 0.103086 10 0.084946 21 0.081566 18 0.079092 22 0.078022 12 0.073011 13 0.066195 19 0.065539 0 0.063926 14 0.060474 17 0.050858 9 0.041697 16 0.036202 20 0.033324 15 0.022521 24 0.020864 23 0.017788 5 0.006902 4 0.006861 6 0.004984 2 7.83E-4 1 5.69E-4 7 4.63E-4 8 3.28E-4 11 0.103086 10 0.084946 21 0.081566 18 0.079092 22 0.078022 12 0.073011 13 0.066195 19 0.065539 0 0.063926 14 0.060474 17 0.050858 9 0.041697 16 0.036202 20 0.033324 15 0.022521 24 0.020864 23 0.017788 5 0.006902 4 0.006861 6 0.004984 2 7.83E-4 1 5.69E-4 7 4.63E-4 8 3.28E-4 11 0.08313846391070698 21 0.0755617682442456 18 0.07359896147600353 22 0.07323899599347536 10 0.07159470786369469 19 0.06318684399932642 12 0.06213993064840308 0 0.05411947774572075 13 0.052835572879521085 14 0.05151365856290879 17 0.048237367886253775 9 0.04359430203415292 20 0.03722023062071555 16 0.03409384968381021 24 0.028815917415018013 23 0.027352468239553136 15 0.0224334138287614 4 0.015616737326950497 5 0.015394679173487472 6 0.01328991282370273 7 0.009904047210361162 1 0.009840997550469587 8 0.009817734179363604 3 0.009789472248489065 2 0.009740448952468816 __DUMMY__ 0.003930039502435855 false 1.0
187 10 0.101415 18 0.088737 11 0.071808 22 0.071644 9 0.066926 14 0.064025 0 0.0628 21 0.059275 13 0.053337 17 0.043502 19 0.042892 12 0.039682 15 0.031586 4 0.023954 5 0.023756 6 0.022005 7 0.019096 1 0.019077 8 0.018985 2 0.018485 3 0.018339 20 0.017143 23 0.01439 16 0.00714 10 0.101415 18 0.088737 11 0.071808 22 0.071644 9 0.066926 14 0.064025 0 0.0628 21 0.059275 13 0.053337 17 0.043502 19 0.042892 12 0.039682 15 0.031586 4 0.023954 5 0.023756 6 0.022005 7 0.019096 1 0.019077 8 0.018985 2 0.018485 3 0.018339 20 0.017143 23 0.01439 16 0.00714 10 0.0828169248206961 18 0.07879265588215817 22 0.06751024314628852 11 0.0640918288741755 9 0.05905600209793833 21 0.05883929314992372 0 0.05513303544219307 14 0.05461651452840742 19 0.04791792362336055 13 0.04565924599489645 17 0.04454673347809495 12 0.04046632633451182 15 0.03057120930220326 4 0.026364532448108626 20 0.026183126007753185 5 0.02604724398744451 6 0.02432685276366444 23 0.023750611015808394 7 0.02196861318923534 8 0.02190764556494477 1 0.021892336455804996 3 0.021575353885010844 2 0.021386602315887265 16 0.01755662715229077 24 0.01420509689287109 __DUMMY__ 0.0028174216463279647 false 1.0
188 11 0.107445 0 0.083452 22 0.079362 17 0.077073 10 0.074602 18 0.072384 21 0.07031 19 0.069936 16 0.067195 12 0.064817 13 0.048399 9 0.041962 14 0.03554 20 0.021572 15 0.017222 23 0.015047 24 0.012149 6 0.009419 4 0.007763 5 0.007581 8 0.004333 7 0.004267 1 0.004161 2 0.00401 11 0.107445 0 0.083452 22 0.079362 17 0.077073 10 0.074602 18 0.072384 21 0.07031 19 0.069936 16 0.067195 12 0.064817 13 0.048399 9 0.041962 14 0.03554 20 0.021572 15 0.017222 23 0.015047 24 0.012149 6 0.009419 4 0.007763 5 0.007581 8 0.004333 7 0.004267 1 0.004161 2 0.00401 11 0.08053934705621682 22 0.07023346521536802 18 0.06591326247741218 0 0.06561504443296023 17 0.06491498670983645 21 0.06403588367830709 19 0.06350875578318682 10 0.060828870089905555 12 0.05496701195720305 16 0.05482600499651557 9 0.04334860401208312 13 0.03926618503816751 14 0.03240198127868563 20 0.029882234041366723 23 0.02777643329471037 24 0.024436346316126983 15 0.019555617354483922 6 0.01951698643065136 4 0.019253439261472726 5 0.01892252026462323 8 0.01596478749705238 7 0.015930253351306253 1 0.015787225825711897 2 0.015491351006252627 3 0.013284769905376744 __DUMMY__ 0.003798632725016738 false 1.0
189 22 0.084034 18 0.083545 10 0.079442 9 0.073926 0 0.069319 17 0.064562 11 0.063871 19 0.061141 21 0.053019 4 0.032183 16 0.031197 5 0.031068 6 0.029126 3 0.028867 8 0.028514 7 0.028149 1 0.027946 2 0.027402 14 0.022733 20 0.019924 23 0.019465 24 0.014241 15 0.013987 12 0.01234 22 0.084034 18 0.083545 10 0.079442 9 0.073926 0 0.069319 17 0.064562 11 0.063871 19 0.061141 21 0.053019 4 0.032183 16 0.031197 5 0.031068 6 0.029126 3 0.028867 8 0.028514 7 0.028149 1 0.027946 2 0.027402 14 0.022733 20 0.019924 23 0.019465 24 0.014241 15 0.013987 12 0.01234 22 0.07488892053881421 18 0.07199245289967997 10 0.06808523708253855 9 0.06547362139345247 0 0.06012670389835075 11 0.05890331298716948 17 0.05646375430481624 19 0.05410741901326775 21 0.053317011967415416 4 0.03433561495289725 5 0.03355380318552421 6 0.03183573239342307 3 0.03119064411094754 8 0.030967137309288177 7 0.03078770898353635 1 0.030576280489312782 2 0.0300832282485052 16 0.029685670432457543 14 0.028209265631604835 23 0.02613805232690677 20 0.023235685484110286 24 0.021559889681833345 12 0.021524851407289013 15 0.018958609734540825 13 0.01186066582360966 __DUMMY__ 0.0021387257187081544 false 1.0
80 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.063458 4 0.057223 5 0.056996 22 0.056915 3 0.056895 8 0.056342 7 0.056224 6 0.056001 2 0.055917 1 0.055859 0 0.047497 17 0.047299 23 0.041486 18 0.039496 21 0.036971 24 0.036192 10 0.033026 19 0.032868 11 0.031009 16 0.02609 20 0.019132 15 0.014622 12 0.012993 14 0.009488 9 0.06005510490675552 22 0.05919653863560428 4 0.050152091062979715 17 0.049808156116330694 5 0.04974801908153109 0 0.04941706053346772 6 0.049038853169626764 8 0.048734270717008234 7 0.04865089834441111 3 0.04859002647527871 1 0.04838975358570616 2 0.04813452351276983 18 0.04591664566971442 21 0.042054942868206706 23 0.039521093076079004 10 0.03863513705353571 11 0.03831318054823331 19 0.038092056054630036 24 0.033969587578567 16 0.02951812168650308 20 0.021696296619556497 12 0.019971292014693186 15 0.016991988528173154 14 0.015228914975136464 13 0.007603871028789708 __DUMMY__ 0.0025715761567118452 false 1.0
81 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058780564610796046 4 0.05870320458984643 6 0.05867017753194034 7 0.05863702345175006 8 0.058513329811383165 5 0.05833883347590586 2 0.05790060889295652 9 0.057312622185410826 3 0.05728211011005441 22 0.04815672633053985 23 0.046759245574559787 17 0.046130824770199044 0 0.044542109247535586 18 0.03660944576125621 24 0.03446277444978922 21 0.03215208047013403 10 0.029143179305457872 19 0.027286363970648052 11 0.027058899582640187 16 0.026934403519539137 20 0.01886961779631658 15 0.01817426182510097 12 0.017983038704477674 14 0.010842651770547796 13 0.00829262744855631 __DUMMY__ 0.002463274812658002 false 1.0
82 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05878056461079605 4 0.05870320458984644 6 0.05867017753194034 7 0.058637023451750064 8 0.058513329811383165 5 0.05833883347590587 2 0.05790060889295653 9 0.05731262218541082 3 0.057282110110054414 22 0.04815672633053985 23 0.04675924557455979 17 0.04613082477019905 0 0.044542109247535586 18 0.03660944576125621 24 0.03446277444978923 21 0.032152080470134035 10 0.029143179305457876 19 0.02728636397064805 11 0.02705889958264019 16 0.02693440351953914 20 0.018869617796316584 15 0.018174261825100974 12 0.017983038704477674 14 0.010842651770547797 13 0.008292627448556312 __DUMMY__ 0.0024632748126580026 false 1.0
83 1 0.070539 3 0.070211 7 0.069993 8 0.069629 4 0.069341 5 0.069254 2 0.069251 6 0.068176 9 0.063917 23 0.04988 22 0.045172 24 0.036917 17 0.036386 0 0.036381 18 0.029367 21 0.026302 10 0.024811 15 0.02024 19 0.016301 20 0.014376 11 0.014342 16 0.012893 14 0.011329 12 0.004992 1 0.070539 3 0.070211 7 0.069993 8 0.069629 4 0.069341 5 0.069254 2 0.069251 6 0.068176 9 0.063917 23 0.04988 22 0.045172 24 0.036917 17 0.036386 0 0.036381 18 0.029367 21 0.026302 10 0.024811 15 0.02024 19 0.016301 20 0.014376 11 0.014342 16 0.012893 14 0.011329 12 0.004992 9 0.05933906983327996 4 0.05742878828710112 5 0.057116000764574314 1 0.05699988614794208 7 0.056806632542280626 8 0.056636334173797424 3 0.056448736684528544 6 0.05642952340844801 2 0.05609141198415509 22 0.05094124264011026 23 0.04547845518878882 17 0.04254537822349766 0 0.042046311216498655 18 0.039432495499157595 21 0.035489171127344434 24 0.03488044375268988 10 0.03333144791984042 19 0.028160767537249422 11 0.027798005643530264 16 0.021745173574232293 15 0.0202444632151787 20 0.019807593151308374 12 0.016666839690400316 14 0.016464843114361596 13 0.009046498311660024 __DUMMY__ 0.0026244863680440554 false 1.0
84 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.0587782204564043 4 0.05870106480669583 6 0.0586681933378387 7 0.05863474269601226 8 0.058511088845326915 5 0.058336652106078496 2 0.05789833247347992 9 0.05731184799737241 3 0.05727960393209731 22 0.04815768902826591 23 0.0467582370179486 17 0.04613271205915653 0 0.044543859347375245 18 0.03661117008110813 24 0.03446197967258181 21 0.032153316966135354 10 0.029144602652264158 19 0.027288502770671755 11 0.0270614408708703 16 0.026936810608856714 20 0.0188702285303081 15 0.018174064772246142 12 0.017985070494107733 14 0.010842903966370075 13 0.008293975841915914 __DUMMY__ 0.0024636886685111855 false 1.0
85 17 0.085326 0 0.080392 16 0.067003 9 0.062091 22 0.058208 18 0.0536 11 0.048531 10 0.045323 19 0.044962 6 0.044807 1 0.042372 7 0.042369 8 0.04223 2 0.04118 4 0.04063 5 0.040373 3 0.036137 21 0.030766 23 0.024936 12 0.023412 15 0.017654 20 0.010899 24 0.010628 13 0.006168 17 0.085326 0 0.080392 16 0.067003 9 0.062091 22 0.058208 18 0.0536 11 0.048531 10 0.045323 19 0.044962 6 0.044807 1 0.042372 7 0.042369 8 0.04223 2 0.04118 4 0.04063 5 0.040373 3 0.036137 21 0.030766 23 0.024936 12 0.023412 15 0.017654 20 0.010899 24 0.010628 13 0.006168 17 0.07475573386986574 0 0.07098252617892635 9 0.05859791683592352 16 0.057447809559264935 22 0.057165340424934215 18 0.05184918894268048 11 0.046713413349546845 6 0.04462738236934969 10 0.04383435773204275 19 0.043753904599164936 7 0.042632574243713015 8 0.04261665277262715 1 0.04257909335911226 4 0.04187197680744427 2 0.04171773188915202 5 0.04148571763251346 3 0.038064558351875555 21 0.03410806454457003 23 0.03015872164685485 12 0.024879227733991753 15 0.019028034116547236 24 0.0177706566174856 20 0.015586744533197845 13 0.009641627445573018 14 0.006060159936580083 __DUMMY__ 0.002070884507062294 false 1.0
86 10 0.093126 18 0.081863 9 0.07168 22 0.070247 0 0.069866 11 0.064476 17 0.055453 14 0.050379 19 0.046297 21 0.045905 15 0.035836 13 0.031531 5 0.02859 4 0.028249 6 0.027252 7 0.025526 8 0.02545 1 0.025288 2 0.025152 3 0.025056 16 0.024295 12 0.022298 20 0.01497 23 0.011213 10 0.093126 18 0.081863 9 0.07168 22 0.070247 0 0.069866 11 0.064476 17 0.055453 14 0.050379 19 0.046297 21 0.045905 15 0.035836 13 0.031531 5 0.02859 4 0.028249 6 0.027252 7 0.025526 8 0.02545 1 0.025288 2 0.025152 3 0.025056 16 0.024295 12 0.022298 20 0.01497 23 0.011213 10 0.07936761032096648 18 0.07604143618375124 22 0.06721510441963034 9 0.06287546439479405 0 0.06077387714367243 11 0.06000184182217543 17 0.052723049804136134 21 0.05015887159856432 19 0.0496542229911902 14 0.045748672221746875 15 0.032738285374256354 13 0.03170824126720336 4 0.028964148312651077 12 0.028895334812417794 5 0.02886438042351205 16 0.02757802694760939 6 0.027571319057849823 7 0.025913884858280032 8 0.025889835407010786 1 0.025715108732211816 3 0.02552641324078781 2 0.02540782557698446 20 0.023868618600357158 23 0.021146761663033163 24 0.012739300576894187 __DUMMY__ 0.0029123642483133354 false 1.0
87 20 0.128408 19 0.124824 18 0.108166 24 0.089645 21 0.07411 23 0.07007 16 0.064041 22 0.063258 17 0.0555 12 0.048813 10 0.036487 15 0.029607 11 0.024909 14 0.021676 9 0.0214 4 0.008655 5 0.007767 0 0.006138 3 0.005363 13 0.004834 8 0.002252 7 0.001868 6 0.001751 1 4.59E-4 20 0.128408 19 0.124824 18 0.108166 24 0.089645 21 0.07411 23 0.07007 16 0.064041 22 0.063258 17 0.0555 12 0.048813 10 0.036487 15 0.029607 11 0.024909 14 0.021676 9 0.0214 4 0.008655 5 0.007767 0 0.006138 3 0.005363 13 0.004834 8 0.002252 7 0.001868 6 0.001751 1 4.59E-4 19 0.0982329294773065 20 0.09808656682006028 18 0.08814354309282144 24 0.07311980135633124 21 0.06972967715754902 22 0.06012026246541723 23 0.05947506233984546 16 0.052384255733159135 12 0.050044703245070155 17 0.04797612449035139 10 0.041252568356236946 11 0.03582472090989893 14 0.03326928812324157 15 0.032722182861512274 9 0.02698745733985103 13 0.0208670158333344 0 0.016169314860950846 4 0.015704869318911192 5 0.015023657543852976 3 0.012746163310181016 6 0.010351346169341101 8 0.010186330171587947 7 0.010016592180532285 1 0.009213408799084555 2 0.008833111151970838 __DUMMY__ 0.0035190468916002225 false 1.0
88 18 0.078259 19 0.076924 22 0.066384 20 0.061935 17 0.058079 21 0.05531 9 0.051346 24 0.051239 23 0.04519 16 0.0449 10 0.044359 0 0.038125 11 0.036389 5 0.031724 4 0.031514 3 0.029134 12 0.028144 6 0.027948 8 0.027486 7 0.027307 1 0.026794 2 0.026709 15 0.019983 14 0.014816 18 0.078259 19 0.076924 22 0.066384 20 0.061935 17 0.058079 21 0.05531 9 0.051346 24 0.051239 23 0.04519 16 0.0449 10 0.044359 0 0.038125 11 0.036389 5 0.031724 4 0.031514 3 0.029134 12 0.028144 6 0.027948 8 0.027486 7 0.027307 1 0.026794 2 0.026709 15 0.019983 14 0.014816 18 0.07163138876833527 19 0.06968641878046523 22 0.06449947075432777 21 0.05815051377784945 20 0.05716105147324465 17 0.05085866906336854 24 0.05013418209405505 9 0.047859455268286395 10 0.04547413673867956 23 0.04479296179597755 11 0.04172826774420134 16 0.03923742233497074 0 0.036225255762143124 12 0.033853516513171825 4 0.03124441488721241 5 0.03103770942342599 3 0.028759895096585462 6 0.027675220484036315 8 0.0271600554157658 7 0.0270548726079291 1 0.02665791059247543 2 0.026394184164078703 14 0.02464443840505204 15 0.023058406481349936 13 0.012201489815092167 __DUMMY__ 0.002818691757920085 false 1.0
89 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.086216 0 0.081815 16 0.067793 9 0.060733 22 0.059618 18 0.054827 11 0.049115 10 0.045561 19 0.045293 6 0.044321 8 0.04189 7 0.041567 1 0.041433 2 0.040939 4 0.040121 5 0.039972 3 0.035836 21 0.030325 23 0.024684 12 0.023104 15 0.016969 24 0.010947 20 0.010452 13 0.00647 17 0.07516345645184201 0 0.0716345131772443 9 0.057975479806657 22 0.05781139525122228 16 0.0578097369449656 18 0.05241139024473417 11 0.04698095695077509 6 0.04440458171798843 10 0.04394334545710992 19 0.04390551151012884 8 0.04246076311471496 7 0.04226496417220669 1 0.042148700501086364 4 0.04163864101465594 2 0.041607212532832845 5 0.0413018756246427 3 0.03792654953828514 21 0.033905905291292 23 0.030043182517557037 12 0.024738035205514344 15 0.01871408481392634 24 0.017916811926977857 20 0.015381869615542143 13 0.009780007079285566 14 0.006060148827840765 __DUMMY__ 0.002070880710971698 false 1.0
190 12 0.095073 21 0.093075 11 0.086539 13 0.07969 22 0.070339 18 0.057498 10 0.055974 19 0.054214 0 0.049246 14 0.049173 17 0.039055 9 0.036421 23 0.035513 24 0.033077 20 0.032423 16 0.026167 4 0.018108 5 0.017728 6 0.016898 8 0.01131 7 0.011224 1 0.011083 2 0.01104 3 0.009132 12 0.095073 21 0.093075 11 0.086539 13 0.07969 22 0.070339 18 0.057498 10 0.055974 19 0.054214 0 0.049246 14 0.049173 17 0.039055 9 0.036421 23 0.035513 24 0.033077 20 0.032423 16 0.026167 4 0.018108 5 0.017728 6 0.016898 8 0.01131 7 0.011224 1 0.011083 2 0.01104 3 0.009132 21 0.0852038330088766 12 0.08462146244529994 11 0.0754084004634271 13 0.07144513168091114 22 0.06591996287888739 18 0.05931127302301076 19 0.055496665459011996 10 0.05313622394821959 14 0.04921182715387612 0 0.04358293577784632 23 0.03941884479480936 17 0.03867778096945909 20 0.0380007291754591 24 0.036648414656698554 9 0.035876401094505794 16 0.027315650761614286 4 0.020463346166871395 5 0.020049864268896586 6 0.018893811468286004 8 0.014086467564509942 7 0.014063539245418272 1 0.013910426740662058 2 0.013728355359690459 3 0.012451526949140732 15 0.00918311620964151 __DUMMY__ 0.0038940087349699087 false 1.0
191 11 0.125519 22 0.096459 21 0.086121 0 0.080362 10 0.079764 18 0.077842 17 0.067836 19 0.065594 12 0.065153 9 0.049113 13 0.04467 16 0.044045 14 0.03723 20 0.015625 24 0.015245 23 0.011483 4 0.009119 5 0.008568 6 0.007895 15 0.003729 8 0.002443 7 0.002241 2 0.002006 1 0.001937 11 0.125519 22 0.096459 21 0.086121 0 0.080362 10 0.079764 18 0.077842 17 0.067836 19 0.065594 12 0.065153 9 0.049113 13 0.04467 16 0.044045 14 0.03723 20 0.015625 24 0.015245 23 0.011483 4 0.009119 5 0.008568 6 0.007895 15 0.003729 8 0.002443 7 0.002241 2 0.002006 1 0.001937 11 0.09321434136302068 22 0.08208128570189573 21 0.07687362545543296 18 0.0702842305700539 10 0.06615713637284293 0 0.06276394432688814 19 0.061785131071051574 12 0.057427388059016295 17 0.057275797449769204 9 0.04762890128007052 13 0.04014501742338323 16 0.0386190100372787 14 0.037068085901006013 20 0.026724672064370687 24 0.02649261929047238 23 0.025012767132990325 4 0.018494553479680473 5 0.01797837141771708 6 0.01667959878579069 8 0.012836645485605374 7 0.012764331991548451 1 0.012500660075196922 2 0.01230719981542419 3 0.01160871479110403 15 0.011407126833904439 __DUMMY__ 0.0038688438244851883 false 1.0
192 21 0.097017 12 0.083564 11 0.082491 19 0.080269 18 0.076825 22 0.07596 13 0.059793 10 0.058452 20 0.05616 14 0.047985 24 0.046872 17 0.044458 23 0.042742 0 0.039865 16 0.036465 9 0.033015 15 0.010146 4 0.008918 5 0.008033 6 0.005213 1 0.001954 7 0.001759 8 0.001197 3 8.47E-4 21 0.097017 12 0.083564 11 0.082491 19 0.080269 18 0.076825 22 0.07596 13 0.059793 10 0.058452 20 0.05616 14 0.047985 24 0.046872 17 0.044458 23 0.042742 0 0.039865 16 0.036465 9 0.033015 15 0.010146 4 0.008918 5 0.008033 6 0.005213 1 0.001954 7 0.001759 8 0.001197 3 8.47E-4 21 0.08477388901803751 11 0.07510441981419312 22 0.07330855518981792 18 0.0693367704151697 12 0.06880907863873652 19 0.06718763606163841 10 0.05737504691183106 13 0.050954091864494185 14 0.045220014036206145 20 0.045066659661412364 17 0.04296241036810702 0 0.042370427998924105 24 0.04159367163059821 9 0.04001080946372391 23 0.039594247099940735 16 0.030892670281419433 4 0.018309632513963645 5 0.017701534202998238 6 0.014972825406011027 15 0.013605269331076742 7 0.011931342515266294 1 0.011912204298261005 3 0.011776276225068829 8 0.01166886600910404 2 0.010904285592331727 __DUMMY__ 0.002657365451667842 false 1.0
193 21 0.0964 12 0.095853 11 0.086072 13 0.076856 22 0.07247 18 0.062201 19 0.061534 10 0.056804 14 0.049116 0 0.047016 20 0.039965 17 0.039828 24 0.037464 23 0.036553 9 0.034791 16 0.029287 4 0.014777 5 0.014501 6 0.012982 7 0.007608 8 0.007421 1 0.007323 2 0.007213 3 0.005966 21 0.0964 12 0.095853 11 0.086072 13 0.076856 22 0.07247 18 0.062201 19 0.061534 10 0.056804 14 0.049116 0 0.047016 20 0.039965 17 0.039828 24 0.037464 23 0.036553 9 0.034791 16 0.029287 4 0.014777 5 0.014501 6 0.012982 7 0.007608 8 0.007421 1 0.007323 2 0.007213 3 0.005966 21 0.08775341310644988 12 0.0843181209806311 11 0.07570110042164792 13 0.0685682282512916 22 0.06810599165472411 18 0.0624925347952726 19 0.06058953781942655 10 0.05399947607121285 14 0.04891443436329886 20 0.042622051730403274 0 0.04241025554584828 23 0.03959881040345611 24 0.03956935805055983 17 0.03934397279639678 9 0.0353657683891069 16 0.029269954523886605 4 0.018209399433015094 5 0.01784897293061282 6 0.016133102163186936 7 0.011591376983760436 8 0.011476359128818562 1 0.011363554199106457 2 0.011151629606773046 3 0.010453549997614529 15 0.008892635179077546 __DUMMY__ 0.004256411474421173 false 1.0
194 10 0.091342 18 0.089241 22 0.082903 21 0.075808 11 0.073228 9 0.062383 14 0.057867 19 0.057373 0 0.045649 12 0.040231 13 0.039318 17 0.033484 23 0.031067 20 0.029718 4 0.024286 5 0.023319 24 0.021843 15 0.021239 3 0.018437 6 0.018125 1 0.016153 7 0.016055 8 0.015923 2 0.015006 10 0.091342 18 0.089241 22 0.082903 21 0.075808 11 0.073228 9 0.062383 14 0.057867 19 0.057373 0 0.045649 12 0.040231 13 0.039318 17 0.033484 23 0.031067 20 0.029718 4 0.024286 5 0.023319 24 0.021843 15 0.021239 3 0.018437 6 0.018125 1 0.016153 7 0.016055 8 0.015923 2 0.015006 18 0.07410242953559129 10 0.07293724095365699 22 0.07268680280276683 21 0.06652585818584011 11 0.06380667144161817 9 0.05713953147088407 19 0.05174900562956901 14 0.047684002177172946 0 0.04626492377462782 12 0.04041297528984724 17 0.03889354049363429 13 0.03666321201372101 23 0.03357266274024954 4 0.029739726608651002 20 0.029596251029137238 5 0.02906017541234894 24 0.026404174283691975 6 0.025766534614630947 3 0.02487458528576889 7 0.023830806173908568 1 0.02381077874042704 8 0.023755406695944892 2 0.023038979426855438 15 0.02208540017961903 16 0.013004527049973126 __DUMMY__ 0.0025937979898636903 false 1.0
195 11 0.102364 10 0.085184 21 0.081262 18 0.079226 22 0.077554 12 0.071927 13 0.065872 19 0.065373 0 0.063681 14 0.060077 17 0.050637 9 0.04184 16 0.03635 20 0.033896 15 0.022653 24 0.02099 23 0.018954 4 0.006863 5 0.006748 6 0.005231 7 9.89E-4 1 7.81E-4 8 7.79E-4 2 7.69E-4 11 0.102364 10 0.085184 21 0.081262 18 0.079226 22 0.077554 12 0.071927 13 0.065872 19 0.065373 0 0.063681 14 0.060077 17 0.050637 9 0.04184 16 0.03635 20 0.033896 15 0.022653 24 0.02099 23 0.018954 4 0.006863 5 0.006748 6 0.005231 7 9.89E-4 1 7.81E-4 8 7.79E-4 2 7.69E-4 11 0.082800449518239 21 0.0754254339928882 18 0.07362968800248691 22 0.07299113288467103 10 0.07165361681730674 19 0.06312957295839694 12 0.06169305372921341 0 0.053989877061556 13 0.0527264422544529 14 0.05133302085059979 17 0.04814492631819668 9 0.043603884515056264 20 0.03752524456292615 16 0.034224857268010514 24 0.02890886914250343 23 0.027909578874390033 15 0.022512703833778243 4 0.015597850364555589 5 0.015305171462805063 6 0.013389367220347708 7 0.010129393732588343 8 0.010008791234037202 1 0.009920744056631684 3 0.009769164942608996 2 0.009718551259738532 __DUMMY__ 0.0039586131420144815 false 1.0
196 10 0.099199 11 0.095465 18 0.092225 22 0.084713 21 0.081534 0 0.068576 19 0.064731 12 0.062847 14 0.062426 13 0.061761 9 0.056637 17 0.054194 16 0.027273 20 0.025238 15 0.020043 23 0.010843 4 0.007899 24 0.007633 5 0.007484 6 0.005658 8 0.001172 7 9.14E-4 1 8.87E-4 2 6.5E-4 10 0.099199 11 0.095465 18 0.092225 22 0.084713 21 0.081534 0 0.068576 19 0.064731 12 0.062847 14 0.062426 13 0.061761 9 0.056637 17 0.054194 16 0.027273 20 0.025238 15 0.020043 23 0.010843 4 0.007899 24 0.007633 5 0.007484 6 0.005658 8 0.001172 7 9.14E-4 1 8.87E-4 2 6.5E-4 10 0.08506225970645838 18 0.08381197647108027 11 0.07862853323363332 22 0.07558695232766588 21 0.07172100122801234 19 0.061488974050398264 0 0.059037193775430645 14 0.05603646219113317 9 0.0536518696257442 12 0.053270627236655 13 0.05138187630409217 17 0.050744352995324225 20 0.03160571121796464 16 0.028586287530476095 15 0.02572347509113984 23 0.020424843855639706 24 0.01712277530666302 4 0.015620185314595931 5 0.015196043926615149 6 0.013323432576522428 8 0.010078342656087562 7 0.009967248495296554 1 0.009862936874631783 3 0.009551239394300248 2 0.009543217014491857 __DUMMY__ 0.0029721815999471553 false 1.0
197 0 0.087185 17 0.079165 9 0.065315 22 0.062363 11 0.059799 10 0.056762 18 0.054132 16 0.05319 6 0.045493 8 0.042881 7 0.042505 1 0.042318 2 0.04203 4 0.041815 5 0.041247 19 0.037414 3 0.037233 21 0.032703 12 0.024317 23 0.020879 13 0.012058 15 0.01146 14 0.003978 24 0.003758 0 0.087185 17 0.079165 9 0.065315 22 0.062363 11 0.059799 10 0.056762 18 0.054132 16 0.05319 6 0.045493 8 0.042881 7 0.042505 1 0.042318 2 0.04203 4 0.041815 5 0.041247 19 0.037414 3 0.037233 21 0.032703 12 0.024317 23 0.020879 13 0.012058 15 0.01146 14 0.003978 24 0.003758 0 0.07327028072831147 17 0.06958003950743441 9 0.06154591095388164 22 0.06043052976708871 11 0.05256337140920855 18 0.05240235045119292 10 0.05046834126761182 16 0.047040309426232635 6 0.0452122729238213 8 0.043260860206457724 4 0.04307589901760042 7 0.04305076812211815 1 0.0428950315801313 5 0.04253580048657968 2 0.042449324005770825 3 0.03927300991389239 19 0.039144277148395225 21 0.03637156434793745 23 0.02795729771854614 12 0.024736053415593956 15 0.015054428619897194 24 0.014485401620563792 13 0.01254241859679005 20 0.009498949910364797 14 0.009203818101999666 __DUMMY__ 0.0019516907525778408 false 1.0
198 11 0.102584 0 0.092769 17 0.091027 22 0.08381 16 0.078061 18 0.076926 19 0.076763 10 0.071608 21 0.068101 12 0.058969 9 0.047709 13 0.032309 20 0.018704 23 0.017531 14 0.016918 6 0.011079 24 0.008936 4 0.008739 5 0.007865 15 0.007133 8 0.006097 7 0.005801 1 0.005663 2 0.004899 11 0.102584 0 0.092769 17 0.091027 22 0.08381 16 0.078061 18 0.076926 19 0.076763 10 0.071608 21 0.068101 12 0.058969 9 0.047709 13 0.032309 20 0.018704 23 0.017531 14 0.016918 6 0.011079 24 0.008936 4 0.008739 5 0.007865 15 0.007133 8 0.006097 7 0.005801 1 0.005663 2 0.004899 11 0.07742544420242874 17 0.07394927416911722 0 0.07286270384747603 22 0.07194574425111859 18 0.06648174194144459 19 0.06466933490558242 16 0.061498926741168594 21 0.05967426821048709 10 0.058669661353628465 12 0.04883714559565714 9 0.047925522439078626 13 0.028095876536555188 23 0.027774604867282764 20 0.025320144737355166 6 0.022657239164877867 4 0.02165518238935613 5 0.021005015347631936 24 0.020840231243427584 14 0.020107503414202837 8 0.019262892229634707 7 0.01910810273466624 1 0.018966238209267097 2 0.018369795878290473 3 0.015437963603665523 15 0.014121846250582564 __DUMMY__ 0.0033375957360163937 false 1.0
199 11 0.095226 0 0.094973 17 0.090821 18 0.07572 16 0.075289 10 0.075052 22 0.07278 19 0.063734 12 0.06208 21 0.058224 9 0.047604 13 0.044543 14 0.024364 6 0.015627 15 0.015241 20 0.014238 23 0.014071 4 0.011309 5 0.010729 8 0.009288 7 0.00928 1 0.009021 2 0.008934 3 0.001853 11 0.095226 0 0.094973 17 0.090821 18 0.07572 16 0.075289 10 0.075052 22 0.07278 19 0.063734 12 0.06208 21 0.058224 9 0.047604 13 0.044543 14 0.024364 6 0.015627 15 0.015241 20 0.014238 23 0.014071 4 0.011309 5 0.010729 8 0.009288 7 0.00928 1 0.009021 2 0.008934 3 0.001853 0 0.07779762846144617 17 0.07692486368375721 11 0.07486078433225504 22 0.06656835698516195 18 0.06636802517176779 10 0.06206244904871927 16 0.06204994895252803 19 0.05701098238084883 21 0.05250222633601693 9 0.04936067979328747 12 0.048900702929322276 13 0.033445931856131206 6 0.025466642039083477 23 0.023736681265378354 4 0.022971091621760923 14 0.02261842825501754 5 0.02245313822982722 8 0.021291370870027655 7 0.021244330846340254 1 0.021051687705426037 2 0.02076842539091511 20 0.02015129514418835 15 0.018661736087026377 3 0.016265911445059227 24 0.012942797009401192 __DUMMY__ 0.0025238841593061725 false 1.0
90 20 0.128899 19 0.12713 18 0.108503 24 0.091388 21 0.075695 23 0.069717 16 0.06464 22 0.063606 17 0.055844 12 0.050186 10 0.03422 15 0.031492 9 0.02369 11 0.022164 14 0.020898 5 0.00946 4 0.008758 3 0.005643 0 0.003203 13 0.001849 6 0.001356 8 9.01E-4 7 7.05E-4 2 5.3E-5 20 0.128899 19 0.12713 18 0.108503 24 0.091388 21 0.075695 23 0.069717 16 0.06464 22 0.063606 17 0.055844 12 0.050186 10 0.03422 15 0.031492 9 0.02369 11 0.022164 14 0.020898 5 0.00946 4 0.008758 3 0.005643 0 0.003203 13 0.001849 6 0.001356 8 9.01E-4 7 7.05E-4 2 5.3E-5 19 0.09928683777581532 20 0.09836001090257454 18 0.08829458094602538 24 0.07393095743730181 21 0.07046533455639502 22 0.060252606414190314 23 0.05933730310368269 16 0.05266418090052045 12 0.05071644517517106 17 0.04809962572250233 10 0.04023768593921793 11 0.03460734321004206 15 0.033606189381990746 14 0.03298217929049022 9 0.027956995108275498 13 0.019605229690905564 5 0.015747079467265477 4 0.0157182281806509 0 0.014817066479363303 3 0.012838006318942463 6 0.01014026761533478 8 0.00954704755055201 7 0.009461760530274546 1 0.008973726781258864 2 0.008822233099996102 __DUMMY__ 0.003531078421260606 false 1.0
91 22 0.067539 18 0.066248 9 0.062263 17 0.058994 19 0.055856 0 0.053285 10 0.049058 21 0.046942 11 0.042896 4 0.040907 5 0.040203 6 0.039 8 0.038605 7 0.038577 3 0.038494 1 0.037768 2 0.037425 16 0.036628 23 0.035627 20 0.034357 24 0.034259 12 0.018475 15 0.014167 14 0.012425 22 0.067539 18 0.066248 9 0.062263 17 0.058994 19 0.055856 0 0.053285 10 0.049058 21 0.046942 11 0.042896 4 0.040907 5 0.040203 6 0.039 8 0.038605 7 0.038577 3 0.038494 1 0.037768 2 0.037425 16 0.036628 23 0.035627 20 0.034357 24 0.034259 12 0.018475 15 0.014167 14 0.012425 22 0.06643161157518536 18 0.06337350139399749 9 0.058642434876096106 17 0.05460831161396068 19 0.053901064547885666 0 0.0502919358921929 21 0.05017585059502008 10 0.049398796064110725 11 0.04589915145205102 4 0.039128232031367935 5 0.03849517014519533 6 0.03703202725964606 3 0.036597553449283636 8 0.03647218037913329 7 0.03642572866592386 23 0.03636286008247343 1 0.03592391901249773 2 0.03549670178197987 24 0.03511386551747822 16 0.034392869418971045 20 0.033877367600803815 12 0.023948805839487844 14 0.01959696814898134 15 0.017785318176824483 13 0.008286055574156554 __DUMMY__ 0.002341718905295564 false 1.0
92 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05878622286317956 4 0.05871460742975751 6 0.058673602305506514 7 0.05864283137707648 8 0.05851900034328288 5 0.05834978258654381 2 0.05790667137553287 9 0.057304699657106176 3 0.05729580590508906 22 0.04815322703241045 23 0.04678592358217645 17 0.046070403174392226 0 0.04448831527316157 18 0.03660030403758772 24 0.03449714627201708 21 0.03217403525406756 10 0.029135665564358863 19 0.027274908576978143 11 0.027044095035087385 16 0.02687187419762583 20 0.01888998549700802 15 0.018175402086993565 12 0.01798993598491787 14 0.01087480106659754 13 0.008310097688220318 __DUMMY__ 0.002470655833324604 false 1.0
93 1 0.068425 7 0.068412 8 0.068256 4 0.067688 6 0.067276 5 0.066665 3 0.066486 2 0.06643 9 0.064095 23 0.049344 22 0.045277 17 0.041254 0 0.041068 18 0.034202 24 0.033994 10 0.027804 21 0.024247 19 0.01896 15 0.018471 11 0.016983 16 0.016644 20 0.014512 14 0.00769 12 0.005817 1 0.068425 7 0.068412 8 0.068256 4 0.067688 6 0.067276 5 0.066665 3 0.066486 2 0.06643 9 0.064095 23 0.049344 22 0.045277 17 0.041254 0 0.041068 18 0.034202 24 0.033994 10 0.027804 21 0.024247 19 0.01896 15 0.018471 11 0.016983 16 0.016644 20 0.014512 14 0.00769 12 0.005817 9 0.06075228170718719 4 0.05717847616069976 7 0.056811683212061405 1 0.05676536154645238 8 0.05673883187509033 6 0.05672125734322396 5 0.05643284943302294 2 0.055513753962414834 3 0.05530034848734406 22 0.05114892409115795 17 0.046174450191835185 0 0.0460942149108311 23 0.044068713668873674 18 0.04195458947890378 10 0.0356437636870864 21 0.03300337906201627 24 0.031695103261162774 11 0.028993884505008345 19 0.028665024070975275 16 0.023975764417482188 15 0.019278291331116637 20 0.018184421311073992 12 0.015269325950035216 14 0.013671100968913231 13 0.007619768512006655 __DUMMY__ 0.00234443685402446 false 1.0
94 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.075489 4 0.060116 7 0.059689 8 0.059505 6 0.059474 22 0.059412 1 0.059407 5 0.058851 3 0.057899 2 0.057814 0 0.055637 17 0.050347 18 0.045082 10 0.043828 23 0.034212 21 0.032765 11 0.031564 19 0.023337 24 0.021624 16 0.017302 15 0.014606 14 0.012002 20 0.005164 12 0.004873 9 0.06728882669822464 22 0.05786134535306656 4 0.0547066105164866 6 0.0541811235046777 7 0.05397275445718664 8 0.05389631645702755 5 0.05384189947806175 1 0.053782677038254526 0 0.05364854552996233 2 0.05271158583316727 3 0.05254862724297359 17 0.05084295772721006 18 0.04629180030863996 10 0.042904636610860185 23 0.03647241636706705 21 0.035727900988247914 11 0.035138189845544 19 0.029700409726317097 24 0.025334966507132423 16 0.024100474680041024 15 0.017390866602648134 14 0.014612522643844337 12 0.012727335662960157 20 0.012445612579649613 13 0.005700803746310228 __DUMMY__ 0.0021687938944387583 false 1.0
95 7 0.073564 1 0.073132 8 0.073007 6 0.072614 4 0.072151 2 0.07202 3 0.071527 5 0.071431 9 0.059352 23 0.05384 17 0.039934 22 0.039817 24 0.03835 0 0.037933 18 0.023848 21 0.02135 16 0.019917 15 0.016854 10 0.016639 20 0.014549 19 0.014506 11 0.012338 12 0.008348 14 0.002977 7 0.073564 1 0.073132 8 0.073007 6 0.072614 4 0.072151 2 0.07202 3 0.071527 5 0.071431 9 0.059352 23 0.05384 17 0.039934 22 0.039817 24 0.03835 0 0.037933 18 0.023848 21 0.02135 16 0.019917 15 0.016854 10 0.016639 20 0.014549 19 0.014506 11 0.012338 12 0.008348 14 0.002977 6 0.05884533027910248 4 0.05878247575492571 7 0.05873415922566747 8 0.05848600779948149 1 0.058476555863005285 5 0.05817581734474579 2 0.057648105130141965 9 0.05734980877780583 3 0.057036713861063175 22 0.0482491749560097 23 0.04680775289813311 17 0.046073169948945364 0 0.044532707884090486 18 0.03661558650511482 24 0.03450857962351547 21 0.03214296165512918 10 0.029234223359077865 19 0.027298939654175906 11 0.027116168228035982 16 0.02696839481673961 20 0.018972821713266065 15 0.01818502632169547 12 0.0180230490388453 14 0.010924454526159255 13 0.008334845061245268 __DUMMY__ 0.0024771697738820587 false 1.0
96 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058760878255574654 4 0.05869121588347086 6 0.05865079687264021 7 0.05861742833253271 8 0.058493853582195436 5 0.0583272273376082 2 0.057882875147939286 9 0.05728031573475361 3 0.05727055794221799 22 0.04815467819338718 23 0.046788743715430875 17 0.04607731660103191 0 0.04448776560103641 18 0.03660908600958758 24 0.03450578498289936 21 0.032192962637733386 10 0.02913649363322406 19 0.027299853231550764 11 0.02706428736237484 16 0.02689660029416111 20 0.018911682421030796 15 0.018178534361542972 12 0.01802443002186878 14 0.010884622016230906 13 0.008334841201296073 __DUMMY__ 0.002477168626680232 false 1.0
97 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.058760878255574654 4 0.05869121588347086 6 0.05865079687264021 7 0.05861742833253271 8 0.058493853582195436 5 0.0583272273376082 2 0.057882875147939286 9 0.05728031573475361 3 0.057270557942217984 22 0.04815467819338718 23 0.04678874371543088 17 0.04607731660103191 0 0.04448776560103641 18 0.03660908600958758 24 0.03450578498289936 21 0.03219296263773338 10 0.02913649363322406 19 0.027299853231550764 11 0.02706428736237484 16 0.02689660029416111 20 0.018911682421030796 15 0.018178534361542972 12 0.01802443002186878 14 0.010884622016230906 13 0.008334841201296073 __DUMMY__ 0.0024771686266802325 false 1.0
98 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.073746 7 0.073312 8 0.073024 2 0.072527 6 0.072194 3 0.072032 4 0.071954 5 0.071758 9 0.059202 23 0.053799 17 0.039943 22 0.039613 24 0.038344 0 0.037836 18 0.023834 21 0.021458 16 0.019762 15 0.01684 10 0.016428 19 0.014508 20 0.014417 11 0.012226 12 0.008351 14 0.002891 1 0.05876087825557467 4 0.05869121588347086 6 0.05865079687264021 7 0.05861742833253271 8 0.05849385358219544 5 0.05832722733760821 2 0.05788287514793929 9 0.05728031573475361 3 0.05727055794221799 22 0.04815467819338718 23 0.04678874371543089 17 0.04607731660103192 0 0.04448776560103641 18 0.036609086009587594 24 0.03450578498289936 21 0.03219296263773338 10 0.029136493633224063 19 0.027299853231550764 11 0.027064287362374845 16 0.026896600294161112 20 0.018911682421030796 15 0.018178534361542972 12 0.01802443002186878 14 0.010884622016230906 13 0.008334841201296073 __DUMMY__ 0.0024771686266802325 false 1.0
99 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.074469 22 0.060541 4 0.059594 8 0.059143 7 0.059061 5 0.059025 6 0.058997 1 0.058591 3 0.05813 2 0.058049 0 0.055714 17 0.049929 18 0.045621 10 0.044403 23 0.034111 21 0.032721 11 0.031635 19 0.023461 24 0.021358 16 0.017521 15 0.01525 14 0.012158 20 0.005334 12 0.005185 9 0.06678478573755801 22 0.05828801205765967 4 0.05456307281808844 6 0.054062976180771945 5 0.05402053556027046 8 0.053835137811159735 7 0.053790784344696516 0 0.053600141417570565 1 0.05351571990842046 2 0.0529267553075427 3 0.05275928466903737 17 0.050591605116694104 18 0.04641969280479893 10 0.04302395687845515 23 0.03652023896764443 21 0.03563903108788808 11 0.035045636344094855 19 0.029669159356777528 24 0.025279740521741242 16 0.02416759678783801 15 0.01766996594584041 14 0.014617414446790928 12 0.01285514965594113 20 0.012526787513259103 13 0.005675474730136235 __DUMMY__ 0.0021513440293240054 false 1.0
|
AdaCore/libadalang | Ada | 68 | adb | procedure Foo is
I : Integer;
begin
pragma Test (I);
end Foo;
|
ZinebZaad/ENSEEIHT | Ada | 613 | adb | -- Demander l'age de Jules
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
-- Afficher si une personne est majeure
procedure Majorite is
Age_Majorite: CONSTANT Integer := 18; -- Age de majorite
Age: Integer; -- Age de la personne
Est_Majeure: Boolean; -- Vrai si la personne est majeure
begin
-- Deman16der l'age de la personne
Get (Age);
-- Déterminer la majorité de cette personne
Est_Majeure := Age >= Age_Majorite;
-- Afficher la somme des versements
if Est_Majeure then
Put ("Oui");
else
Put ("Non");
end if;
New_Line;
end Majorite;
|
AdaCore/training_material | Ada | 177 | ads | package Swap_Generics is
generic
type Data_Type is private;
procedure Swap_Generic (Value_1 : in out Data_Type; Value_2 : in out Data_Type);
end Swap_Generics;
|
skill-lang/adaCommon | Ada | 934 | ads | -- ___ _ ___ _ _ --
-- / __| |/ (_) | | Common SKilL implementation --
-- \__ \ ' <| | | |__ file writer implementation --
-- |___/_|\_\_|_|____| by: Timm Felden --
-- --
pragma Ada_2012;
with Skill.Files;
with Skill.Streams.Writer;
-- documentation can be found in java common
-- this is a combination of serialization functions, write and append
package Skill.Internal.File_Writers is
-- write a file to disk
procedure Write
(State : Skill.Files.File;
Output : Skill.Streams.Writer.Output_Stream);
-- append a file to an existing one
procedure Append
(State : Skill.Files.File;
Output : Skill.Streams.Writer.Output_Stream);
end Skill.Internal.File_Writers;
|
reznikmm/matreshka | Ada | 19,541 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- XML Processor --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2015, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with XML.SAX.Locators.Internals;
with XML.SAX.Parse_Exceptions.Internals;
package body XML.SAX.Event_Readers is
procedure Set
(Locator : not null access Event_Reader_Shared_Locator'Class;
Element : XML.Templates.Streams.XML_Stream_Element);
procedure Reset
(Locator : not null access Event_Reader_Shared_Locator'Class);
--------------
-- Base_URI --
--------------
overriding function Base_URI
(Self : not null access constant Event_Reader_Shared_Locator)
return League.IRIs.IRI is
begin
return X : League.IRIs.IRI;
end Base_URI;
------------
-- Column --
------------
overriding function Column
(Self : not null access constant Event_Reader_Shared_Locator)
return Natural is
begin
return Self.Column;
end Column;
---------------------
-- Content_Handler --
---------------------
overriding function Content_Handler
(Self : Event_Reader) return XML.SAX.Readers.SAX_Content_Handler_Access is
begin
return Self.Content_Handler;
end Content_Handler;
-------------------------
-- Declaration_Handler --
-------------------------
overriding function Declaration_Handler
(Self : Event_Reader)
return XML.SAX.Readers.SAX_Declaration_Handler_Access is
begin
return null;
end Declaration_Handler;
-----------------
-- DTD_Handler --
-----------------
overriding function DTD_Handler
(Self : Event_Reader) return XML.SAX.Readers.SAX_DTD_Handler_Access is
begin
return null;
end DTD_Handler;
--------------
-- Encoding --
--------------
overriding function Encoding
(Self : not null access constant Event_Reader_Shared_Locator)
return League.Strings.Universal_String is
begin
return League.Strings.Empty_Universal_String;
end Encoding;
---------------------
-- Entity_Resolver --
---------------------
overriding function Entity_Resolver
(Self : Event_Reader) return XML.SAX.Readers.SAX_Entity_Resolver_Access is
begin
return null;
end Entity_Resolver;
-------------------
-- Error_Handler --
-------------------
overriding function Error_Handler
(Self : Event_Reader) return XML.SAX.Readers.SAX_Error_Handler_Access is
begin
return Self.Error_Handler;
end Error_Handler;
-------------
-- Feature --
-------------
overriding function Feature
(Self : Event_Reader;
Name : League.Strings.Universal_String) return Boolean is
begin
raise Program_Error;
return False;
end Feature;
--------------
-- Finalize --
--------------
overriding procedure Finalize (Self : in out Event_Reader) is
begin
Matreshka.Internals.SAX_Locators.Dereference
(Matreshka.Internals.SAX_Locators.Shared_Locator_Access (Self.Locator));
end Finalize;
-----------------
-- Has_Feature --
-----------------
overriding function Has_Feature
(Self : Event_Reader;
Name : League.Strings.Universal_String) return Boolean is
begin
return False;
end Has_Feature;
---------------------
-- Lexical_Handler --
---------------------
overriding function Lexical_Handler
(Self : Event_Reader) return XML.SAX.Readers.SAX_Lexical_Handler_Access is
begin
return Self.Lexical_Handler;
end Lexical_Handler;
----------
-- Line --
----------
overriding function Line
(Self : not null access constant Event_Reader_Shared_Locator)
return Natural is
begin
return Self.Line;
end Line;
-----------
-- Parse --
-----------
procedure Parse
(Self : in out Event_Reader'Class;
Stream : XML.Templates.Streams.XML_Stream_Element_Vectors.Vector)
is
Success : Boolean := True;
begin
Self.Content_Handler.Set_Document_Locator
(XML.SAX.Locators.Internals.Create
(Matreshka.Internals.SAX_Locators.Shared_Locator_Access
(Self.Locator)));
for Item of Stream loop
case Item.Kind is
when XML.Templates.Streams.Empty =>
null;
when XML.Templates.Streams.Text =>
Set (Self.Locator, Item);
Self.Content_Handler.Characters
(Text => Item.Text,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.Start_Element =>
Set (Self.Locator, Item);
Self.Content_Handler.Start_Element
(Namespace_URI => Item.Namespace_URI,
Local_Name => Item.Local_Name,
Qualified_Name => Item.Qualified_Name,
Attributes => Item.Attributes,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.End_Element =>
Set (Self.Locator, Item);
Self.Content_Handler.End_Element
(Namespace_URI => Item.Namespace_URI,
Local_Name => Item.Local_Name,
Qualified_Name => Item.Qualified_Name,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.Start_Prefix_Mapping =>
Set (Self.Locator, Item);
Self.Content_Handler.Start_Prefix_Mapping
(Prefix => Item.Prefix,
Namespace_URI => Item.Mapped_Namespace_URI,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.End_Prefix_Mapping =>
Set (Self.Locator, Item);
Self.Content_Handler.End_Prefix_Mapping
(Prefix => Item.Prefix,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.Processing_Instruction =>
Set (Self.Locator, Item);
Self.Content_Handler.Processing_Instruction
(Target => Item.Target,
Data => Item.Data,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.Comment =>
Set (Self.Locator, Item);
Self.Lexical_Handler.Comment
(Text => Item.Text,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.Start_CDATA =>
Set (Self.Locator, Item);
Self.Lexical_Handler.Start_CDATA (Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.End_CDATA =>
Set (Self.Locator, Item);
Self.Lexical_Handler.End_CDATA (Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.Start_DTD =>
Set (Self.Locator, Item);
Self.Lexical_Handler.Start_DTD
(Name => Item.Name,
Public_Id => Item.Public_Id,
System_Id => Item.System_Id,
Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
when XML.Templates.Streams.End_DTD =>
Set (Self.Locator, Item);
Self.Lexical_Handler.End_DTD (Success => Success);
if not Success then
Self.Error_Handler.Fatal_Error
(XML.SAX.Parse_Exceptions.Internals.Create
(Public_Id => League.Strings.Empty_Universal_String,
System_Id => Item.Location.System_Id,
Line => Item.Location.Line,
Column => Item.Location.Column,
Message => Self.Content_Handler.Error_String));
return;
end if;
end case;
end loop;
Reset (Self.Locator);
end Parse;
---------------
-- Public_Id --
---------------
overriding function Public_Id
(Self : not null access constant Event_Reader_Shared_Locator)
return League.Strings.Universal_String is
begin
return League.Strings.Empty_Universal_String;
end Public_Id;
-----------
-- Reset --
-----------
procedure Reset
(Locator : not null access Event_Reader_Shared_Locator'Class) is
begin
Locator.System_Id.Clear;
Locator.Line := 0;
Locator.Column := 0;
end Reset;
---------
-- Set --
---------
procedure Set
(Locator : not null access Event_Reader_Shared_Locator'Class;
Element : XML.Templates.Streams.XML_Stream_Element) is
begin
Locator.System_Id := Element.Location.System_Id;
Locator.Line := Element.Location.Line;
Locator.Column := Element.Location.Column;
end Set;
-------------------------
-- Set_Content_Handler --
-------------------------
overriding procedure Set_Content_Handler
(Self : in out Event_Reader;
Handler : XML.SAX.Readers.SAX_Content_Handler_Access) is
begin
Self.Content_Handler := Handler;
end Set_Content_Handler;
-----------------------------
-- Set_Declaration_Handler --
-----------------------------
overriding procedure Set_Declaration_Handler
(Self : in out Event_Reader;
Handler : XML.SAX.Readers.SAX_Declaration_Handler_Access) is
begin
raise Program_Error;
end Set_Declaration_Handler;
---------------------
-- Set_DTD_Handler --
---------------------
overriding procedure Set_DTD_Handler
(Self : in out Event_Reader;
Handler : XML.SAX.Readers.SAX_DTD_Handler_Access) is
begin
raise Program_Error;
end Set_DTD_Handler;
-------------------------
-- Set_Entity_Resolver --
-------------------------
overriding procedure Set_Entity_Resolver
(Self : in out Event_Reader;
Resolver : XML.SAX.Readers.SAX_Entity_Resolver_Access) is
begin
raise Program_Error;
end Set_Entity_Resolver;
-----------------------
-- Set_Error_Handler --
-----------------------
overriding procedure Set_Error_Handler
(Self : in out Event_Reader;
Handler : XML.SAX.Readers.SAX_Error_Handler_Access) is
begin
Self.Error_Handler := Handler;
end Set_Error_Handler;
-----------------
-- Set_Feature --
-----------------
overriding procedure Set_Feature
(Self : in out Event_Reader;
Name : League.Strings.Universal_String;
Value : Boolean) is
begin
raise Program_Error;
end Set_Feature;
-------------------------
-- Set_Lexical_Handler --
-------------------------
overriding procedure Set_Lexical_Handler
(Self : in out Event_Reader;
Handler : XML.SAX.Readers.SAX_Lexical_Handler_Access) is
begin
Self.Lexical_Handler := Handler;
end Set_Lexical_Handler;
---------------
-- System_Id --
---------------
overriding function System_Id
(Self : not null access constant Event_Reader_Shared_Locator)
return League.Strings.Universal_String is
begin
return Self.System_Id;
end System_Id;
-------------
-- Version --
-------------
overriding function Version
(Self : not null access constant Event_Reader_Shared_Locator)
return League.Strings.Universal_String is
begin
return League.Strings.Empty_Universal_String;
end Version;
end XML.SAX.Event_Readers;
|
onox/orka | Ada | 4,916 | adb | -- SPDX-License-Identifier: Apache-2.0
--
-- Copyright (c) 2016 onox <[email protected]>
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
with AUnit.Assertions;
with AUnit.Test_Caller;
with AUnit.Test_Fixtures;
with Orka.SIMD.SSE.Singles;
with Orka.SIMD.SSE4_1.Singles.Math;
with Orka.SIMD.SSE4_1.Integers.Math;
with Orka.SIMD.SSE2.Integers;
package body Test_SIMD_SSE4_1_Math is
use Orka;
use Orka.SIMD.SSE.Singles;
use Orka.SIMD.SSE4_1.Singles.Math;
use Orka.SIMD.SSE2.Integers;
use Orka.SIMD.SSE4_1.Integers.Math;
use AUnit.Assertions;
type Test is new AUnit.Test_Fixtures.Test_Fixture with null record;
procedure Test_Nearest_Integer (Object : in out Test) is
Elements : constant m128 := (-1.5, 0.6, -0.4, 1.9);
Expected : constant m128 := (-2.0, 1.0, 0.0, 2.0);
Result : constant m128 := Round_Nearest_Integer (Elements);
begin
for I in Index_4D loop
Assert (Expected (I) = Result (I), "Unexpected Single at " & Index_4D'Image (I));
end loop;
end Test_Nearest_Integer;
procedure Test_Floor (Object : in out Test) is
Elements : constant m128 := (-1.5, 0.6, -0.4, 1.9);
Expected : constant m128 := (-2.0, 0.0, -1.0, 1.0);
Result : constant m128 := Floor (Elements);
begin
for I in Index_4D loop
Assert (Expected (I) = Result (I), "Unexpected Single at " & Index_4D'Image (I));
end loop;
end Test_Floor;
procedure Test_Ceil (Object : in out Test) is
Elements : constant m128 := (-1.5, 0.2, -0.4, 1.9);
Expected : constant m128 := (-1.0, 1.0, 0.0, 2.0);
Result : constant m128 := Ceil (Elements);
begin
for I in Index_4D loop
Assert (Expected (I) = Result (I), "Unexpected Single at " & Index_4D'Image (I));
end loop;
end Test_Ceil;
procedure Test_Truncate (Object : in out Test) is
Elements : constant m128 := (-1.5, 0.2, -0.4, 1.9);
Expected : constant m128 := (-1.0, 0.0, 0.0, 1.0);
Result : constant m128 := Round_Truncate (Elements);
begin
for I in Index_4D loop
Assert (Expected (I) = Result (I), "Unexpected Single at " & Index_4D'Image (I));
end loop;
end Test_Truncate;
----------------------------------------------------------------------------
procedure Test_Min (Object : in out Test) is
Left : constant m128i := (0, 1, Integer_32'Last, 0);
Right : constant m128i := (0, -1, Integer_32'First, Integer_32'Last);
Expected : constant m128i := (0, -1, Integer_32'First, 0);
Result : constant m128i := Min (Left, Right);
begin
for I in Index_4D loop
Assert (Expected (I) = Result (I), "Unexpected Integer at " & Index_4D'Image (I));
end loop;
end Test_Min;
procedure Test_Max (Object : in out Test) is
Left : constant m128i := (0, 1, Integer_32'Last, 0);
Right : constant m128i := (0, -1, Integer_32'First, Integer_32'Last);
Expected : constant m128i := (0, 1, Integer_32'Last, Integer_32'Last);
Result : constant m128i := Max (Left, Right);
begin
for I in Index_4D loop
Assert (Expected (I) = Result (I), "Unexpected Integer at " & Index_4D'Image (I));
end loop;
end Test_Max;
----------------------------------------------------------------------------
package Caller is new AUnit.Test_Caller (Test);
Test_Suite : aliased AUnit.Test_Suites.Test_Suite;
function Suite return AUnit.Test_Suites.Access_Test_Suite is
Name : constant String := "(SIMD - SSE4.1 - Math) ";
begin
Test_Suite.Add_Test (Caller.Create
(Name & "Test Round_Nearest_Integer function", Test_Nearest_Integer'Access));
Test_Suite.Add_Test (Caller.Create
(Name & "Test Floor function", Test_Floor'Access));
Test_Suite.Add_Test (Caller.Create
(Name & "Test Ceil function", Test_Ceil'Access));
Test_Suite.Add_Test (Caller.Create
(Name & "Test Round_Truncate function", Test_Truncate'Access));
declare
Name : constant String := "(SIMD - SSE4.1 - Integers - Math) ";
begin
Test_Suite.Add_Test (Caller.Create
(Name & "Test Min function", Test_Min'Access));
Test_Suite.Add_Test (Caller.Create
(Name & "Test Max function", Test_Max'Access));
end;
return Test_Suite'Access;
end Suite;
end Test_SIMD_SSE4_1_Math;
|
godunko/cga | Ada | 933 | ads | --
-- Copyright (C) 2023, Vadim Godunko <[email protected]>
--
-- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
--
with CGK.Reals;
package CGK.Mathematics.Vectors_2 is
pragma Pure;
type Vector_2 is array (0 .. 1) of CGK.Reals.Real
with Alignment => 16;
pragma Machine_Attribute (Vector_2, "vector_type");
pragma Machine_Attribute (Vector_2, "may_alias");
function "-" (Right : Vector_2) return Vector_2 with Inline;
function "+"
(Left : Vector_2; Right : Vector_2) return Vector_2 with Inline;
function "-"
(Left : Vector_2; Right : Vector_2) return Vector_2 with Inline;
function "*"
(Left : Vector_2; Right : CGK.Reals.Real) return Vector_2 with Inline;
function "*"
(Left : CGK.Reals.Real; Right : Vector_2) return Vector_2 with Inline;
function "*"
(Left : Vector_2; Right : Vector_2) return Vector_2 with Inline;
end CGK.Mathematics.Vectors_2;
|
reznikmm/matreshka | Ada | 3,973 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with ODF.DOM.Fo_Min_Width_Attributes;
package Matreshka.ODF_Fo.Min_Width_Attributes is
type Fo_Min_Width_Attribute_Node is
new Matreshka.ODF_Fo.Abstract_Fo_Attribute_Node
and ODF.DOM.Fo_Min_Width_Attributes.ODF_Fo_Min_Width_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Fo_Min_Width_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Fo_Min_Width_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Fo.Min_Width_Attributes;
|
optikos/oasis | Ada | 2,576 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Formal_Type_Definitions;
with Program.Lexical_Elements;
with Program.Elements.Expressions;
package Program.Elements.Formal_Interface_Types is
pragma Pure (Program.Elements.Formal_Interface_Types);
type Formal_Interface_Type is
limited interface
and Program.Elements.Formal_Type_Definitions.Formal_Type_Definition;
type Formal_Interface_Type_Access is access all Formal_Interface_Type'Class
with Storage_Size => 0;
not overriding function Progenitors
(Self : Formal_Interface_Type)
return Program.Elements.Expressions.Expression_Vector_Access is abstract;
not overriding function Has_Limited
(Self : Formal_Interface_Type)
return Boolean is abstract;
not overriding function Has_Task
(Self : Formal_Interface_Type)
return Boolean is abstract;
not overriding function Has_Protected
(Self : Formal_Interface_Type)
return Boolean is abstract;
not overriding function Has_Synchronized
(Self : Formal_Interface_Type)
return Boolean is abstract;
type Formal_Interface_Type_Text is limited interface;
type Formal_Interface_Type_Text_Access is
access all Formal_Interface_Type_Text'Class with Storage_Size => 0;
not overriding function To_Formal_Interface_Type_Text
(Self : aliased in out Formal_Interface_Type)
return Formal_Interface_Type_Text_Access is abstract;
not overriding function Limited_Token
(Self : Formal_Interface_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Task_Token
(Self : Formal_Interface_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Protected_Token
(Self : Formal_Interface_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Synchronized_Token
(Self : Formal_Interface_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Interface_Token
(Self : Formal_Interface_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function And_Token
(Self : Formal_Interface_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
end Program.Elements.Formal_Interface_Types;
|
stcarrez/ada-security | Ada | 3,001 | adb | -----------------------------------------------------------------------
-- security-oauth -- OAuth Security
-- Copyright (C) 2017, 2018 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
package body Security.OAuth is
use Ada.Strings.Unbounded;
-- ------------------------------
-- Get the application identifier.
-- ------------------------------
function Get_Application_Identifier (App : in Application) return String is
begin
return To_String (App.Client_Id);
end Get_Application_Identifier;
-- ------------------------------
-- Set the application identifier used by the OAuth authorization server
-- to identify the application (for example, the App ID in Facebook).
-- ------------------------------
procedure Set_Application_Identifier (App : in out Application;
Client : in String) is
begin
App.Client_Id := To_Unbounded_String (Client);
end Set_Application_Identifier;
-- ------------------------------
-- Set the application secret defined in the OAuth authorization server
-- for the application (for example, the App Secret in Facebook).
-- ------------------------------
procedure Set_Application_Secret (App : in out Application;
Secret : in String) is
begin
App.Secret := To_Unbounded_String (Secret);
end Set_Application_Secret;
-- ------------------------------
-- Set the redirection callback that will be used to redirect the user
-- back to the application after the OAuth authorization is finished.
-- ------------------------------
procedure Set_Application_Callback (App : in out Application;
URI : in String) is
begin
App.Callback := To_Unbounded_String (URI);
end Set_Application_Callback;
-- ------------------------------
-- Set the client authentication method used when doing OAuth calls for this application.
-- See RFC 6749, 2.3. Client Authentication
-- ------------------------------
procedure Set_Client_Authentication (App : in out Application;
Method : in Client_Authentication_Type) is
begin
App.Client_Auth := Method;
end Set_Client_Authentication;
end Security.OAuth;
|
AdaCore/gpr | Ada | 20 | ads | package L is
end L;
|
zhmu/ananas | Ada | 2,387 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . S O C K E T S . T H I N --
-- --
-- B o d y --
-- --
-- Copyright (C) 2001-2022, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
pragma No_Body;
|
Gabriel-Degret/adalib | Ada | 608 | ads | -- Standard Ada library specification
-- Copyright (c) 2004-2016 AXE Consultants
-- Copyright (c) 2004, 2005, 2006 Ada-Europe
-- Copyright (c) 2000 The MITRE Corporation, Inc.
-- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc.
-- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual
---------------------------------------------------------------------------
package Ada.Dispatching.Non_Preemptive is
pragma Preelaborate(Non_Preemptive);
procedure Yield_To_Higher;
procedure Yield_To_Same_Or_Higher renames Yield;
end Ada.Dispatching.Non_Preemptive;
|
stcarrez/ada-util | Ada | 4,327 | adb | -----------------------------------------------------------------------
-- util-stacks -- Simple stack
-- Copyright (C) 2010, 2011, 2022 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
package body Util.Stacks is
procedure Free is
new Ada.Unchecked_Deallocation (Element_Type_Array,
Element_Type_Array_Access);
-- ------------------------------
-- Get access to the current stack element.
-- ------------------------------
function Current (Container : in Stack) return Element_Type_Access is
begin
return Container.Current;
end Current;
-- ------------------------------
-- Push an element on top of the stack making the new element the current one.
-- ------------------------------
procedure Push (Container : in out Stack) is
begin
if Container.Stack = null then
Container.Stack := new Element_Type_Array (1 .. 100);
Container.Pos := Container.Stack'First;
elsif Container.Pos = Container.Stack'Last then
declare
Old : Element_Type_Array_Access := Container.Stack;
begin
Container.Stack := new Element_Type_Array (1 .. Old'Last + 100);
Container.Stack (1 .. Old'Last) := Old (1 .. Old'Last);
Free (Old);
end;
end if;
if Container.Pos /= Container.Stack'First then
Container.Stack (Container.Pos + 1) := Container.Stack (Container.Pos);
end if;
Container.Pos := Container.Pos + 1;
Container.Current := Container.Stack (Container.Pos)'Access;
end Push;
-- ------------------------------
-- Pop the top element.
-- ------------------------------
procedure Pop (Container : in out Stack) is
begin
if Container.Pos > Container.Stack'First then
Container.Pos := Container.Pos - 1;
Container.Current := Container.Stack (Container.Pos)'Access;
else
Container.Current := null;
end if;
end Pop;
-- ------------------------------
-- Clear the stack.
-- ------------------------------
procedure Clear (Container : in out Stack) is
begin
if Container.Stack /= null then
Container.Pos := Container.Stack'First;
end if;
Container.Current := null;
end Clear;
-- ------------------------------
-- Returns true if the stack is empty.
-- ------------------------------
function Is_Empty (Container : in out Stack) return Boolean is
begin
return Container.Stack = null or else Container.Pos = Container.Stack'First;
end Is_Empty;
-- ------------------------------
-- Get the access to the stack element at the given position.
-- ------------------------------
function Get (Container : in Stack;
Position : in Positive) return Element_Type_Access is
begin
if Container.Stack = null or else Container.Pos > Position then
return null;
else
return Container.Stack (Position)'Access;
end if;
end Get;
procedure Read (Container : in Stack;
Process : not null
access procedure (Content : in Element_Type_Array)) is
Stack : constant Element_Type_Array_Access := Container.Stack;
begin
if Stack /= null then
Process (Stack (Stack'First + 1 .. Container.Pos));
end if;
end Read;
-- ------------------------------
-- Release the stack
-- ------------------------------
overriding
procedure Finalize (Obj : in out Stack) is
begin
Free (Obj.Stack);
end Finalize;
end Util.Stacks;
|
DrenfongWong/tkm-rpc | Ada | 1,758 | ads | with Tkmrpc.Types;
with Tkmrpc.Operations.Ike;
package Tkmrpc.Response.Ike.Isa_Create is
Data_Size : constant := 272;
type Data_Type is record
Sk_Ai : Types.Key_Type;
Sk_Ar : Types.Key_Type;
Sk_Ei : Types.Key_Type;
Sk_Er : Types.Key_Type;
end record;
for Data_Type use record
Sk_Ai at 0 range 0 .. (68 * 8) - 1;
Sk_Ar at 68 range 0 .. (68 * 8) - 1;
Sk_Ei at 136 range 0 .. (68 * 8) - 1;
Sk_Er at 204 range 0 .. (68 * 8) - 1;
end record;
for Data_Type'Size use Data_Size * 8;
Padding_Size : constant := Response.Body_Size - Data_Size;
subtype Padding_Range is Natural range 1 .. Padding_Size;
subtype Padding_Type is Types.Byte_Sequence (Padding_Range);
type Response_Type is record
Header : Response.Header_Type;
Data : Data_Type;
Padding : Padding_Type;
end record;
for Response_Type use record
Header at 0 range 0 .. (Response.Header_Size * 8) - 1;
Data at Response.Header_Size range 0 .. (Data_Size * 8) - 1;
Padding at Response.Header_Size + Data_Size range
0 .. (Padding_Size * 8) - 1;
end record;
for Response_Type'Size use Response.Response_Size * 8;
Null_Response : constant Response_Type :=
Response_Type'
(Header =>
Response.Header_Type'(Operation => Operations.Ike.Isa_Create,
Result => Results.Invalid_Operation,
Request_Id => 0),
Data =>
Data_Type'(Sk_Ai => Types.Null_Key_Type,
Sk_Ar => Types.Null_Key_Type,
Sk_Ei => Types.Null_Key_Type,
Sk_Er => Types.Null_Key_Type),
Padding => Padding_Type'(others => 0));
end Tkmrpc.Response.Ike.Isa_Create;
|
sungyeon/drake | Ada | 2,129 | adb | with Ada.Strings.Unbounded;
with Ada.Tags.Delegating;
procedure delegate is
package I is
type Intf is limited interface;
procedure Method (Object : Intf) is abstract;
end I;
package A is
type Aggregated_Object (Message : access String) is new I.Intf with null record;
procedure Dummy (Object : Aggregated_Object);
overriding procedure Method (Object : Aggregated_Object);
end A;
package body A is
procedure Dummy (Object : Aggregated_Object) is
begin
null;
end Dummy;
overriding procedure Method (Object : Aggregated_Object) is
begin
Ada.Debug.Put (Object.Message.all);
end Method;
end A;
package C is
type String_Access is access String;
type Container (Message : String_Access) is tagged limited record
Field : aliased A.Aggregated_Object (Message);
end record;
function Get (Object : not null access Container'Class) return access I.Intf'Class;
end C;
package body C is
function Get (Object : not null access Container'Class) return access I.Intf'Class is
begin
return I.Intf'Class (Object.Field)'Access;
end Get;
procedure Impl is new Ada.Tags.Delegating.Implements (Container, I.Intf, Get);
begin
Impl;
end C;
package D is
type Container (Additional : C.String_Access) is
new C.Container (Additional) with
record
Controlled_Field : Ada.Strings.Unbounded.Unbounded_String;
end record;
end D;
begin
declare
Obj : aliased C.Container (new String'("Hello."));
X : Boolean := C.Container'Class (Obj) in I.Intf'Class;
Intf : access I.Intf'Class := I.Intf'Class (C.Container'Class (Obj))'Access;
begin
if X then
Ada.Debug.Put ("membership test is ok.");
end if;
Ada.Debug.Put (Ada.Tags.Expanded_Name (Intf'Tag));
I.Method (Intf.all);
end;
declare
Obj : aliased D.Container (new String'("Hello, derived."));
X : Boolean := D.Container'Class (Obj) in I.Intf'Class;
Intf : access I.Intf'Class := I.Intf'Class (D.Container'Class (Obj))'Access;
begin
if X then
Ada.Debug.Put ("membership test for derived type is ok.");
end if;
Ada.Debug.Put (Ada.Tags.Expanded_Name (Intf'Tag));
I.Method (Intf.all);
end;
end delegate;
|
AdaCore/libadalang | Ada | 308 | adb | procedure Test_Subtype_Access is
type Bit is range 0 .. 1;
type Bit_Access is access all Bit;
subtype Sub is Bit_Access;
S : Sub;
B : Bit;
begin
B := 1;
pragma Test_Statement;
S.all := B;
pragma Test_Statement;
S.all := 0;
pragma Test_Statement;
end Test_Subtype_Access;
|
reznikmm/matreshka | Ada | 15,311 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014-2020, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Ada.Strings.Unbounded;
with AWS.Attachments;
with AWS.Headers.Values;
with AWS.Messages;
with AWS.Parameters;
with AWS.Server;
with AWS.URL;
with League.IRIs;
with Servlet.HTTP_Cookies;
with Servlet.HTTP_Parameters.AWS_Parameters;
package body Matreshka.Servlet_AWS_Requests is
--------------
-- Finalize --
--------------
procedure Finalize (Self : in out AWS_Servlet_Request'Class) is
begin
null;
end Finalize;
----------------------
-- Get_Content_Type --
----------------------
overriding function Get_Content_Type
(Self : AWS_Servlet_Request) return League.Strings.Universal_String is
begin
return
League.Strings.From_UTF_8_String
(AWS.Status.Content_Type (Self.Request));
end Get_Content_Type;
----------------
-- Get_Cookie --
----------------
overriding function Get_Cookies
(Self : AWS_Servlet_Request)
return Servlet.HTTP_Cookie_Sets.Cookie_Set is
begin
if Self.Data.Cookies_Computed then
-- Reuse cookies when they was computed.
return Self.Data.Cookies;
end if;
-- Compute cookies.
declare
Headers : constant AWS.Headers.List
:= AWS.Status.Header (Self.Request);
Cookies : constant String
:= AWS.Headers.Get_Values (Headers, AWS.Messages.Cookie_Token);
Set : constant AWS.Headers.Values.Set
:= AWS.Headers.Values.Split (Cookies);
Cookie : Servlet.HTTP_Cookies.Cookie;
begin
Self.Data.Cookies_Computed := True;
for J in Set'Range loop
Servlet.HTTP_Cookies.Initialize
(Cookie,
League.Strings.From_UTF_8_String
(Ada.Strings.Unbounded.To_String (Set (J).Name)),
League.Strings.From_UTF_8_String
(AWS.URL.Decode
(Ada.Strings.Unbounded.To_String (Set (J).Value))));
-- AWS.URL.Decode is used here for compatibility with AWS.Cookies.
Self.Data.Cookies.Append (Cookie);
end loop;
return Self.Data.Cookies;
end;
end Get_Cookies;
-----------------
-- Get_Headers --
-----------------
overriding function Get_Headers
(Self : AWS_Servlet_Request;
Name : League.Strings.Universal_String)
return League.String_Vectors.Universal_String_Vector
is
N : constant String := Name.To_UTF_8_String;
Headers : constant AWS.Headers.List := AWS.Status.Header (Self.Request);
Result : League.String_Vectors.Universal_String_Vector;
begin
for J in 1 .. AWS.Headers.Count (Headers, N) loop
Result.Append
(League.Strings.From_UTF_8_String (AWS.Headers.Get (Headers, N, J)));
end loop;
return Result;
end Get_Headers;
----------------------
-- Get_Input_Stream --
----------------------
overriding function Get_Input_Stream
(Self : AWS_Servlet_Request)
return not null access Ada.Streams.Root_Stream_Type'Class is
begin
-- XXX Should it be done before starting of request processing?
if not AWS.Status.Is_Body_Uploaded (Self.Request) then
AWS.Server.Get_Message_Body;
end if;
return Self.Body_Stream'Unrestricted_Access;
end Get_Input_Stream;
----------------
-- Get_Method --
----------------
overriding function Get_Method
(Self : AWS_Servlet_Request) return Servlet.HTTP_Requests.HTTP_Method is
begin
case AWS.Status.Method (Self.Request) is
when AWS.Status.OPTIONS =>
return Servlet.HTTP_Requests.Options;
when AWS.Status.GET =>
return Servlet.HTTP_Requests.Get;
when AWS.Status.HEAD =>
return Servlet.HTTP_Requests.Head;
when AWS.Status.POST =>
return Servlet.HTTP_Requests.Post;
when AWS.Status.PUT =>
return Servlet.HTTP_Requests.Put;
when AWS.Status.DELETE =>
return Servlet.HTTP_Requests.Delete;
when AWS.Status.TRACE =>
return Servlet.HTTP_Requests.Trace;
when AWS.Status.CONNECT =>
return Servlet.HTTP_Requests.Connect;
when AWS.Status.EXTENSION_METHOD =>
raise Program_Error;
end case;
end Get_Method;
-------------------------
-- Get_Parameter_Names --
-------------------------
overriding function Get_Parameter_Names
(Self : AWS_Servlet_Request)
return League.String_Vectors.Universal_String_Vector
is
Names : constant AWS.Parameters.VString_Array
:= AWS.Parameters.Get_Names (AWS.Status.Parameters (Self.Request));
Result : League.String_Vectors.Universal_String_Vector;
begin
for Name of Names loop
Result.Append
(League.Strings.From_UTF_8_String
(Ada.Strings.Unbounded.To_String (Name)));
end loop;
return Result;
end Get_Parameter_Names;
--------------------------
-- Get_Parameter_Values --
--------------------------
overriding function Get_Parameter_Values
(Self : AWS_Servlet_Request;
Name : League.Strings.Universal_String)
return Servlet.HTTP_Parameter_Vectors.HTTP_Parameter_Vector
is
N : constant String := Name.To_UTF_8_String;
Result : Servlet.HTTP_Parameter_Vectors.HTTP_Parameter_Vector;
procedure Process_Attachment_Element
(Attachment : AWS.Attachments.Element;
Index : Positive;
Quit : in out Boolean);
-- Process each attachment element.
--------------------------------
-- Process_Attachment_Element --
--------------------------------
procedure Process_Attachment_Element
(Attachment : AWS.Attachments.Element;
Index : Positive;
Quit : in out Boolean)
is
Headers : constant AWS.Headers.List
:= AWS.Attachments.Headers (Attachment);
begin
if AWS.Headers.Exist
(Headers, AWS.Messages.Content_Disposition_Token)
and then AWS.Headers.Values.Search
(AWS.Headers.Get
(Headers, AWS.Messages.Content_Disposition_Token),
"name") = N
then
Result.Append
(Servlet.HTTP_Parameters.AWS_Parameters.Create (Attachment));
end if;
end Process_Attachment_Element;
procedure Process_Attachments is
new AWS.Attachments.For_Every_Attachment (Process_Attachment_Element);
begin
Process_Attachments (AWS.Status.Attachments (Self.Request));
return Result;
end Get_Parameter_Values;
--------------------------
-- Get_Parameter_Values --
--------------------------
overriding function Get_Parameter_Values
(Self : AWS_Servlet_Request;
Name : League.Strings.Universal_String)
return League.String_Vectors.Universal_String_Vector
is
Values : constant AWS.Parameters.VString_Array
:= AWS.Parameters.Get_Values
(AWS.Status.Parameters (Self.Request), Name.To_UTF_8_String);
Result : League.String_Vectors.Universal_String_Vector;
begin
for Value of Values loop
Result.Append
(League.Strings.From_UTF_8_String
(Ada.Strings.Unbounded.To_String (Value)));
end loop;
return Result;
end Get_Parameter_Values;
-------------------------
-- Get_Upgrade_Handler --
-------------------------
function Get_Upgrade_Handler
(Self : AWS_Servlet_Request'Class)
return Servlet.HTTP_Upgrade_Handlers.HTTP_Upgrade_Handler_Access is
begin
return Self.Data.Upgrade;
end Get_Upgrade_Handler;
----------------
-- Initialize --
----------------
procedure Initialize
(Self : in out AWS_Servlet_Request'Class;
Data : AWS.Status.Data)
is
use type League.String_Vectors.Universal_String_Vector;
Headers : constant AWS.Headers.List := AWS.Status.Header (Data);
AWS_URI : constant AWS.URL.Object := AWS.Status.URI (Data);
Protocol : constant String := AWS.URL.Protocol_Name (AWS_URI);
URI_Text : constant String := AWS.Status.URI (Data);
Path : League.String_Vectors.Universal_String_Vector
:= League.Strings.From_UTF_8_String
(URI_Text).Split ('/', League.Strings.Skip_Empty);
-- XXX HTTP protocol uses some protocol specific escaping sequnces, they
-- should be handled here.
-- XXX Use of UTF-8 to encode URI by AWS should be checked.
Host : League.Strings.Universal_String;
Delimiter : Natural;
URL : League.IRIs.IRI;
begin
-- Add empty string at the end of constructed path when URI text ends
-- with '/' character to distinguish requests of directory or its
-- contents.
if URI_Text (URI_Text'Last) = '/' then
Path.Append (League.Strings.Empty_Universal_String);
end if;
-- Reconstruct request's URL.
URL.Set_Scheme (League.Strings.From_UTF_8_String (Protocol));
if AWS.Headers.Exist (Headers, AWS.Messages.Host_Token) then
-- When 'Host' header exists use its content to specify host and port
-- components of original URL.
Host :=
League.Strings.From_UTF_8_String
(AWS.Headers.Get (Headers, AWS.Messages.Host_Token));
Delimiter := Host.Index (':');
if Delimiter /= 0 then
URL.Set_Host (Host.Head_To (Delimiter - 1));
URL.Set_Port
(Integer'Wide_Wide_Value
(Host.Tail_From (Delimiter + 1).To_Wide_Wide_String));
else
URL.Set_Host (Host);
-- Default port was used by client. It depends from protocol.
if Protocol = "http" then
URL.Set_Port (80);
elsif Protocol = "https" then
URL.Set_Port (443);
else
raise Program_Error;
end if;
end if;
else
-- Otherwise (with old HTTP 1.0 client) fallback to host:port data
-- provided by AWS. As of AWS 3.1 this is address of socket where AWS
-- accepts connections, so it is incorrect in case of work in
-- internal network behind proxy/load balancer.
URL.Set_Host
(League.Strings.From_UTF_8_String (AWS.URL.Host (AWS_URI)));
URL.Set_Port (AWS.URL.Port (AWS_URI));
end if;
URL.Set_Absolute_Path (Path);
-- Initialize object.
Matreshka.Servlet_HTTP_Requests.Initialize (Self, URL);
Self.Request := Data;
Self.Data := Self.Data_Storage'Unchecked_Access;
end Initialize;
------------------------
-- Is_Async_Supported --
------------------------
overriding function Is_Async_Supported
(Self : not null access AWS_Servlet_Request) return Boolean
is
pragma Unreferenced (Self);
begin
-- AWS doesn't support asynchronous processing of requests.
return False;
end Is_Async_Supported;
----------
-- Read --
----------
overriding procedure Read
(Self : in out Body_Stream_Type;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset) is
begin
AWS.Status.Read_Body (Self.Request.Request, Item, Last);
end Read;
-------------
-- Upgrade --
-------------
overriding procedure Upgrade
(Self : AWS_Servlet_Request;
Handler :
not null Servlet.HTTP_Upgrade_Handlers.HTTP_Upgrade_Handler_Access) is
begin
Self.Data.Upgrade := Handler;
end Upgrade;
-----------
-- Write --
-----------
overriding procedure Write
(Self : in out Body_Stream_Type;
Item : Ada.Streams.Stream_Element_Array) is
begin
raise Program_Error
with "Servlet input stream doesn't allow write operations";
end Write;
end Matreshka.Servlet_AWS_Requests;
|
strenkml/EE368 | Ada | 464 | ads |
with Util; use Util;
-- Package to provide an interface for types providing an "apply" function.
package Applicative is
-- Interface for types providing an "apply" function.
type Applicative_Type is limited interface;
type Applicative_Pointer is access all Applicative_Type'Class;
function Apply(app : Applicative_Type;
addr : Address_Type;
dir : Boolean) return Address_Type is abstract;
end Applicative;
|
mfkiwl/ewok-kernel-security-OS | Ada | 1,610 | ads | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
with ada.unchecked_conversion;
package ewok.tasks_shared
with spark_mode => on
is
type t_task_id is
(ID_UNUSED,
ID_APP1,
ID_APP2,
ID_APP3,
ID_APP4,
ID_APP5,
ID_APP6,
ID_APP7,
ID_SOFTIRQ, -- Softirq thread
ID_KERNEL); -- Idle thread
type t_task_mode is
(TASK_MODE_MAINTHREAD, TASK_MODE_ISRTHREAD);
type t_scheduling_post_isr is
(ISR_STANDARD,
ISR_FORCE_MAINTHREAD,
ISR_WITHOUT_MAINTHREAD);
pragma Warnings (Off);
-- We have to turn warnings off because the size of the t_task_id may
-- differ
function to_task_id is new ada.unchecked_conversion
(unsigned_32, t_task_id);
function to_unsigned_32 is new ada.unchecked_conversion
(t_task_id, unsigned_32);
pragma Warnings (On);
end ewok.tasks_shared;
|
Gabriel-Degret/adalib | Ada | 8,339 | ads | -- Standard Ada library specification
-- Copyright (c) 2003-2018 Maxim Reznik <[email protected]>
-- Copyright (c) 2004-2016 AXE Consultants
-- Copyright (c) 2004, 2005, 2006 Ada-Europe
-- Copyright (c) 2000 The MITRE Corporation, Inc.
-- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc.
-- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual
---------------------------------------------------------------------------
with Ada.Strings.Wide_Maps;
package Ada.Strings.Wide_Fixed is
pragma Preelaborate (Wide_Fixed);
-- "Copy" procedure for strings of possibly different lengths
procedure Move (Source : in Wide_String;
Target : out Wide_String;
Drop : in Truncation := Error;
Justify : in Alignment := Left;
Pad : in Wide_Character := Wide_Space);
-- Search subprograms
function Index (Source : in Wide_String;
Pattern : in Wide_String;
From : in Positive;
Going : in Direction := Forward;
Mapping : in Wide_Maps.Wide_Character_Mapping
:= Wide_Maps.Identity)
return Natural;
function Index (Source : in Wide_String;
Pattern : in Wide_String;
From : in Positive;
Going : in Direction := Forward;
Mapping : in Wide_Maps.Wide_Character_Mapping_Function)
return Natural;
function Index (Source : in Wide_String;
Pattern : in Wide_String;
Going : in Direction := Forward;
Mapping : in Wide_Maps.Wide_Character_Mapping
:= Wide_Maps.Identity)
return Natural;
function Index (Source : in Wide_String;
Pattern : in Wide_String;
Going : in Direction := Forward;
Mapping : in Wide_Maps.Wide_Character_Mapping_Function)
return Natural;
function Index (Source : in Wide_String;
Set : in Wide_Maps.Wide_Character_Set;
From : in Positive;
Test : in Membership := Inside;
Going : in Direction := Forward)
return Natural;
function Index (Source : in Wide_String;
Set : in Wide_Maps.Wide_Character_Set;
Test : in Membership := Inside;
Going : in Direction := Forward)
return Natural;
function Index_Non_Blank (Source : in Wide_String;
From : in Positive;
Going : in Direction := Forward)
return Natural;
function Index_Non_Blank (Source : in Wide_String;
Going : in Direction := Forward)
return Natural;
function Count (Source : in Wide_String;
Pattern : in Wide_String;
Mapping : in Wide_Maps.Wide_Character_Mapping
:= Wide_Maps.Identity)
return Natural;
function Count (Source : in Wide_String;
Pattern : in Wide_String;
Mapping : in Wide_Maps.Wide_Character_Mapping_Function)
return Natural;
function Count (Source : in Wide_String;
Set : in Wide_Maps.Wide_Character_Set)
return Natural;
procedure Find_Token (Source : in Wide_String;
Set : in Wide_Maps.Wide_Character_Set;
Test : in Membership;
First : out Positive;
Last : out Natural);
-- Wide_String translation subprograms
function Translate (Source : in Wide_String;
Mapping : in Wide_Maps.Wide_Character_Mapping)
return Wide_String;
procedure Translate (Source : in out Wide_String;
Mapping : in Wide_Maps.Wide_Character_Mapping);
function Translate (Source : in Wide_String;
Mapping : in Wide_Maps.Wide_Character_Mapping_Function)
return Wide_String;
procedure Translate
(Source : in out Wide_String;
Mapping : in Wide_Maps.Wide_Character_Mapping_Function);
-- Wide_String transformation subprograms
function Replace_Slice (Source : in Wide_String;
Low : in Positive;
High : in Natural;
By : in Wide_String)
return Wide_String;
procedure Replace_Slice (Source : in out Wide_String;
Low : in Positive;
High : in Natural;
By : in Wide_String;
Drop : in Truncation := Error;
Justify : in Alignment := Left;
Pad : in Wide_Character := Wide_Space);
function Insert (Source : in Wide_String;
Before : in Positive;
New_Item : in Wide_String)
return Wide_String;
procedure Insert (Source : in out Wide_String;
Before : in Positive;
New_Item : in Wide_String;
Drop : in Truncation := Error);
function Overwrite (Source : in Wide_String;
Position : in Positive;
New_Item : in Wide_String)
return Wide_String;
procedure Overwrite (Source : in out Wide_String;
Position : in Positive;
New_Item : in Wide_String;
Drop : in Truncation := Right);
function Delete (Source : in Wide_String;
From : in Positive;
Through : in Natural)
return Wide_String;
procedure Delete (Source : in out Wide_String;
From : in Positive;
Through : in Natural;
Justify : in Alignment := Left;
Pad : in Wide_Character := Wide_Space);
-- Wide_String selector subprograms
function Trim (Source : in Wide_String;
Side : in Trim_End)
return Wide_String;
procedure Trim (Source : in out Wide_String;
Side : in Trim_End;
Justify : in Alignment := Left;
Pad : in Wide_Character := Wide_Space);
function Trim (Source : in Wide_String;
Left : in Wide_Maps.Wide_Character_Set;
Right : in Wide_Maps.Wide_Character_Set)
return Wide_String;
procedure Trim (Source : in out Wide_String;
Left : in Wide_Maps.Wide_Character_Set;
Right : in Wide_Maps.Wide_Character_Set;
Justify : in Alignment := Strings.Left;
Pad : in Wide_Character := Wide_Space);
function Head (Source : in Wide_String;
Count : in Natural;
Pad : in Wide_Character := Wide_Space)
return Wide_String;
procedure Head (Source : in out Wide_String;
Count : in Natural;
Justify : in Alignment := Left;
Pad : in Wide_Character := Wide_Space);
function Tail (Source : in Wide_String;
Count : in Natural;
Pad : in Wide_Character := Wide_Space)
return Wide_String;
procedure Tail (Source : in out Wide_String;
Count : in Natural;
Justify : in Alignment := Left;
Pad : in Wide_Character := Wide_Space);
-- Wide_String constructor functions
function "*" (Left : in Natural;
Right : in Wide_Character) return Wide_String;
function "*" (Left : in Natural;
Right : in Wide_String) return Wide_String;
end Ada.Strings.Wide_Fixed;
|
bolumclol/prueba | Ada | 4,714 | adb |
with Ada.Integer_Text_IO,Ada.Text_IO,Ada.Numerics.Discrete_Random,Ada.Calendar;
USE Ada.Integer_Text_IO,Ada.Text_IO,Ada.Calendar;
procedure Main is
subtype Espera is Integer range 1..5;
package AzarBool is new Ada.Numerics.Discrete_Random(Boolean);
package AzarEspera is new Ada.Numerics.Discrete_Random(Espera);
use AzarBool;
use AzarEspera;
Generador : AzarBool.Generator;
Generador2 : AzarEspera.Generator;
MAX :constant := 20;
ContadorClientes: Integer := 0;
Abierto :Boolean := true;
Tiempo_Cerrado : Duration :=5.0;
function Contador return Integer is
begin
ContadorClientes := ContadorClientes+1;
return ContadorClientes;
end Contador;
task type Cliente is
end Cliente;
type ClienteAcces is access Cliente;
Clientes : array(1..MAX) of ClienteAcces;
task Concesionario is
entry Reparacion(A: in Integer);
entry EntrarConcesionario(A: in Integer);
entry CochesPrueba(A: in Integer);
entry DevolverCoche(A: in Integer);
end Concesionario;
task Encargado is
entry Pagar(A: in Integer);
end Encargado;
task EncargadoCerrar;
procedure CrearClientes is
begin
for i in 1..MAX loop
Clientes(i) := new Cliente;
end loop;
end CrearClientes;
task body Concesionario is
TiempoPrueba : Duration := 4.0;
TiempoCompra : Duration := 2.0;
CochesDisponibles : Integer := 5;
begin
CrearClientes;
loop
select
when Abierto =>
accept Reparacion(A: in Integer) do
Put_Line("Cliente" & A'Image & " Reparacion Completa");
end Reparacion;
or
when Abierto =>
accept EntrarConcesionario(A: in Integer) do
Put_Line("Cliente" & A'Image & " Entra al concesionario");
end EntrarConcesionario;
or
when CochesDisponibles >0 and Abierto =>
accept CochesPrueba(A: in Integer) do
Put_Line("Cliente" & A'Image & " Se le ha dejado el coche");
delay TiempoPrueba;
CochesDisponibles :=CochesDisponibles-1;
end CochesPrueba;
or
when Abierto =>
accept DevolverCoche(A: in Integer) do
Put_Line("Cliente" & A'Image & " Se ha devuelto el coche");
CochesDisponibles := CochesDisponibles+1;
end DevolverCoche;
end select;
end loop;
end Concesionario;
task body Encargado is
begin
loop
if Abierto then
accept Pagar(A: in Integer) do
Put_Line("Cliente" & A'Image & " Ha pagado");
end Pagar;
end if;
end loop;
end Encargado;
task body EncargadoCerrar is
begin
loop
delay Tiempo_Cerrado;
if(Abierto) then
Abierto := false;
Put_Line("Encargado cierra el concesionario");
else
Abierto :=true;
Put_Line("Encargado abre el concesionario");
end if;
end loop;
end EncargadoCerrar;
task body Cliente is
Reparar: AzarBool.Generator;
ReparacionRapida : AzarBool.Generator;
ComprarCoche : AzarBool.Generator;
MaximoEspera : Integer:= 5;
ContadorEspera : Integer :=0;
NumeroCliente : Integer:=0;
TiempoVuelve : Duration := 3.0;
begin
NumeroCliente := Contador;
if Random(Generador) then
Put_Line("Cliente" & NumeroCliente'Image & " solicita reparacion");
if Random(Generador) then
Concesionario.Reparacion(NumeroCliente);
Encargado.Pagar(NumeroCliente);
else
for i in 1..Random(Generador2) loop
delay TiempoVuelve ;
Put_Line("Cliente"& NumeroCliente'Image & " pasa a ver si esta reparado el coche");
if i = MaximoEspera then
Put_Line("Cliente" & NumeroCliente'Image & " se queda esperando a la reparacion");
end if;
end loop;
Concesionario.Reparacion(NumeroCliente);
Encargado.Pagar(NumeroCliente);
end if;
else
Concesionario.EntrarConcesionario(NumeroCliente);
if Random(Generador) then
Concesionario.CochesPrueba(NumeroCliente);
Concesionario.DevolverCoche(NumeroCliente);
Encargado.Pagar(NumeroCliente);
else
Put_Line("Cliente" & NumeroCliente'Image & " no le ha interesado ningun coche");
end if;
end if;
Put_Line("Cliente" & NumeroCliente'Image & " se va");
end Cliente;
begin
null;
end Main;
|
reznikmm/matreshka | Ada | 4,249 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2013, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Nodes;
with XML.DOM.Attributes.Internals;
package body ODF.DOM.Attributes.Text.Note_Class.Internals is
------------
-- Create --
------------
function Create
(Node : Matreshka.ODF_Attributes.Text.Note_Class.Text_Note_Class_Access)
return ODF.DOM.Attributes.Text.Note_Class.ODF_Text_Note_Class is
begin
return
(XML.DOM.Attributes.Internals.Create
(Matreshka.DOM_Nodes.Attribute_Access (Node)) with null record);
end Create;
----------
-- Wrap --
----------
function Wrap
(Node : Matreshka.ODF_Attributes.Text.Note_Class.Text_Note_Class_Access)
return ODF.DOM.Attributes.Text.Note_Class.ODF_Text_Note_Class is
begin
return
(XML.DOM.Attributes.Internals.Wrap
(Matreshka.DOM_Nodes.Attribute_Access (Node)) with null record);
end Wrap;
end ODF.DOM.Attributes.Text.Note_Class.Internals;
|
mimo/Tracker | Ada | 76 | ads |
package tracker.datasource is
procedure Load;
end tracker.datasource;
|
zhmu/ananas | Ada | 80,627 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . T E X T _ I O . E D I T I N G --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Strings.Fixed;
package body Ada.Text_IO.Editing is
package Strings renames Ada.Strings;
package Strings_Fixed renames Ada.Strings.Fixed;
package Text_IO renames Ada.Text_IO;
---------------------
-- Blank_When_Zero --
---------------------
function Blank_When_Zero (Pic : Picture) return Boolean is
begin
return Pic.Contents.Original_BWZ;
end Blank_When_Zero;
------------
-- Expand --
------------
function Expand (Picture : String) return String is
Result : String (1 .. MAX_PICSIZE);
Picture_Index : Integer := Picture'First;
Result_Index : Integer := Result'First;
Count : Natural;
Last : Integer;
package Int_IO is new Ada.Text_IO.Integer_IO (Integer);
begin
if Picture'Length < 1 then
raise Picture_Error;
end if;
if Picture (Picture'First) = '(' then
raise Picture_Error;
end if;
loop
case Picture (Picture_Index) is
when '(' =>
Int_IO.Get
(Picture (Picture_Index + 1 .. Picture'Last), Count, Last);
if Picture (Last + 1) /= ')' then
raise Picture_Error;
end if;
-- In what follows note that one copy of the repeated character
-- has already been made, so a count of one is a no-op, and a
-- count of zero erases a character.
if Result_Index + Count - 2 > Result'Last then
raise Picture_Error;
end if;
for J in 2 .. Count loop
Result (Result_Index + J - 2) := Picture (Picture_Index - 1);
end loop;
Result_Index := Result_Index + Count - 1;
-- Last + 1 was a ')' throw it away too
Picture_Index := Last + 2;
when ')' =>
raise Picture_Error;
when others =>
if Result_Index > Result'Last then
raise Picture_Error;
end if;
Result (Result_Index) := Picture (Picture_Index);
Picture_Index := Picture_Index + 1;
Result_Index := Result_Index + 1;
end case;
exit when Picture_Index > Picture'Last;
end loop;
return Result (1 .. Result_Index - 1);
exception
when others =>
raise Picture_Error;
end Expand;
-------------------
-- Format_Number --
-------------------
function Format_Number
(Pic : Format_Record;
Number : String;
Currency_Symbol : String;
Fill_Character : Character;
Separator_Character : Character;
Radix_Point : Character) return String
is
Attrs : Number_Attributes := Parse_Number_String (Number);
Position : Integer;
Rounded : String := Number;
Sign_Position : Integer := Pic.Sign_Position; -- may float.
Answer : String (1 .. Pic.Picture.Length) := Pic.Picture.Expanded;
Last : Integer;
Currency_Pos : Integer := Pic.Start_Currency;
In_Currency : Boolean := False;
Dollar : Boolean := False;
-- Overridden immediately if necessary
Zero : Boolean := True;
-- Set to False when a non-zero digit is output
begin
-- If the picture has fewer decimal places than the number, the image
-- must be rounded according to the usual rules.
if Attrs.Has_Fraction then
declare
R : constant Integer :=
(Attrs.End_Of_Fraction - Attrs.Start_Of_Fraction + 1)
- Pic.Max_Trailing_Digits;
R_Pos : Integer;
begin
if R > 0 then
R_Pos := Attrs.End_Of_Fraction - R;
if Rounded (R_Pos + 1) > '4' then
if Rounded (R_Pos) = '.' then
R_Pos := R_Pos - 1;
end if;
if Rounded (R_Pos) /= '9' then
Rounded (R_Pos) := Character'Succ (Rounded (R_Pos));
else
Rounded (R_Pos) := '0';
R_Pos := R_Pos - 1;
while R_Pos > 1 loop
if Rounded (R_Pos) = '.' then
R_Pos := R_Pos - 1;
end if;
if Rounded (R_Pos) /= '9' then
Rounded (R_Pos) := Character'Succ (Rounded (R_Pos));
exit;
else
Rounded (R_Pos) := '0';
R_Pos := R_Pos - 1;
end if;
end loop;
-- The rounding may add a digit in front. Either the
-- leading blank or the sign (already captured) can
-- be overwritten.
if R_Pos = 1 then
Rounded (R_Pos) := '1';
Attrs.Start_Of_Int := Attrs.Start_Of_Int - 1;
end if;
end if;
end if;
end if;
end;
end if;
if Pic.Start_Currency /= Invalid_Position then
Dollar := Answer (Pic.Start_Currency) = '$';
end if;
-- Fix up "direct inserts" outside the playing field. Set up as one
-- loop to do the beginning, one (reverse) loop to do the end.
Last := 1;
loop
exit when Last = Pic.Start_Float;
exit when Last = Pic.Radix_Position;
exit when Answer (Last) = '9';
case Answer (Last) is
when '_' =>
Answer (Last) := Separator_Character;
when 'b' =>
Answer (Last) := ' ';
when others =>
null;
end case;
exit when Last = Answer'Last;
Last := Last + 1;
end loop;
-- Now for the end...
for J in reverse Last .. Answer'Last loop
exit when J = Pic.Radix_Position;
-- Do this test First, Separator_Character can equal Pic.Floater
if Answer (J) = Pic.Floater then
exit;
end if;
case Answer (J) is
when '_' =>
Answer (J) := Separator_Character;
when 'b' =>
Answer (J) := ' ';
when '9' =>
exit;
when others =>
null;
end case;
end loop;
-- Non-floating sign
if Pic.Start_Currency /= -1
and then Answer (Pic.Start_Currency) = '#'
and then Pic.Floater /= '#'
then
if Currency_Symbol'Length >
Pic.End_Currency - Pic.Start_Currency + 1
then
raise Picture_Error;
elsif Currency_Symbol'Length =
Pic.End_Currency - Pic.Start_Currency + 1
then
Answer (Pic.Start_Currency .. Pic.End_Currency) :=
Currency_Symbol;
elsif Pic.Radix_Position = Invalid_Position
or else Pic.Start_Currency < Pic.Radix_Position
then
Answer (Pic.Start_Currency .. Pic.End_Currency) :=
[others => ' '];
Answer (Pic.End_Currency - Currency_Symbol'Length + 1 ..
Pic.End_Currency) := Currency_Symbol;
else
Answer (Pic.Start_Currency .. Pic.End_Currency) :=
[others => ' '];
Answer (Pic.Start_Currency ..
Pic.Start_Currency + Currency_Symbol'Length - 1) :=
Currency_Symbol;
end if;
end if;
-- Fill in leading digits
if Attrs.End_Of_Int - Attrs.Start_Of_Int + 1 >
Pic.Max_Leading_Digits
then
raise Ada.Text_IO.Layout_Error;
end if;
Position :=
(if Pic.Radix_Position = Invalid_Position
then Answer'Last
else Pic.Radix_Position - 1);
for J in reverse Attrs.Start_Of_Int .. Attrs.End_Of_Int loop
while Answer (Position) /= '9'
and then
Answer (Position) /= Pic.Floater
loop
if Answer (Position) = '_' then
Answer (Position) := Separator_Character;
elsif Answer (Position) = 'b' then
Answer (Position) := ' ';
end if;
Position := Position - 1;
end loop;
Answer (Position) := Rounded (J);
if Rounded (J) /= '0' then
Zero := False;
end if;
Position := Position - 1;
end loop;
-- Do lead float
if Pic.Start_Float = Invalid_Position then
-- No leading floats, but need to change '9' to '0', '_' to
-- Separator_Character and 'b' to ' '.
for J in Last .. Position loop
-- Last set when fixing the "uninteresting" leaders above.
-- Don't duplicate the work.
if Answer (J) = '9' then
Answer (J) := '0';
elsif Answer (J) = '_' then
Answer (J) := Separator_Character;
elsif Answer (J) = 'b' then
Answer (J) := ' ';
end if;
end loop;
elsif Pic.Floater = '<'
or else
Pic.Floater = '+'
or else
Pic.Floater = '-'
then
for J in Pic.End_Float .. Position loop -- May be null range.
if Answer (J) = '9' then
Answer (J) := '0';
elsif Answer (J) = '_' then
Answer (J) := Separator_Character;
elsif Answer (J) = 'b' then
Answer (J) := ' ';
end if;
end loop;
if Position > Pic.End_Float then
Position := Pic.End_Float;
end if;
for J in Pic.Start_Float .. Position - 1 loop
Answer (J) := ' ';
end loop;
Answer (Position) := Pic.Floater;
Sign_Position := Position;
elsif Pic.Floater = '$' then
for J in Pic.End_Float .. Position loop -- May be null range.
if Answer (J) = '9' then
Answer (J) := '0';
elsif Answer (J) = '_' then
Answer (J) := ' '; -- no separators before leftmost digit.
elsif Answer (J) = 'b' then
Answer (J) := ' ';
end if;
end loop;
if Position > Pic.End_Float then
Position := Pic.End_Float;
end if;
for J in Pic.Start_Float .. Position - 1 loop
Answer (J) := ' ';
end loop;
Answer (Position) := Pic.Floater;
Currency_Pos := Position;
elsif Pic.Floater = '*' then
for J in Pic.End_Float .. Position loop -- May be null range.
if Answer (J) = '9' then
Answer (J) := '0';
elsif Answer (J) = '_' then
Answer (J) := Separator_Character;
elsif Answer (J) = 'b' then
Answer (J) := Fill_Character;
end if;
end loop;
if Position > Pic.End_Float then
Position := Pic.End_Float;
end if;
for J in Pic.Start_Float .. Position loop
Answer (J) := Fill_Character;
end loop;
else
if Pic.Floater = '#' then
Currency_Pos := Currency_Symbol'Length;
In_Currency := True;
end if;
for J in reverse Pic.Start_Float .. Position loop
case Answer (J) is
when '*' =>
Answer (J) := Fill_Character;
when 'b' | '/' =>
if In_Currency and then Currency_Pos > 0 then
Answer (J) := Currency_Symbol (Currency_Pos);
Currency_Pos := Currency_Pos - 1;
else
Answer (J) := ' ';
end if;
when 'Z' | '0' =>
Answer (J) := ' ';
when '9' =>
Answer (J) := '0';
when '.' | 'V' | 'v' | '<' | '$' | '+' | '-' =>
null;
when '#' =>
if Currency_Pos = 0 then
Answer (J) := ' ';
else
Answer (J) := Currency_Symbol (Currency_Pos);
Currency_Pos := Currency_Pos - 1;
end if;
when '_' =>
case Pic.Floater is
when '*' =>
Answer (J) := Fill_Character;
when 'Z' | 'b' =>
Answer (J) := ' ';
when '#' =>
if Currency_Pos = 0 then
Answer (J) := ' ';
else
Answer (J) := Currency_Symbol (Currency_Pos);
Currency_Pos := Currency_Pos - 1;
end if;
when others =>
null;
end case;
when others =>
null;
end case;
end loop;
if Pic.Floater = '#' and then Currency_Pos /= 0 then
raise Ada.Text_IO.Layout_Error;
end if;
end if;
-- Do sign
if Sign_Position = Invalid_Position then
if Attrs.Negative then
raise Ada.Text_IO.Layout_Error;
end if;
else
if Attrs.Negative then
case Answer (Sign_Position) is
when 'C' | 'D' | '-' =>
null;
when '+' =>
Answer (Sign_Position) := '-';
when '<' =>
Answer (Sign_Position) := '(';
Answer (Pic.Second_Sign) := ')';
when others =>
raise Picture_Error;
end case;
else -- positive
case Answer (Sign_Position) is
when '-' =>
Answer (Sign_Position) := ' ';
when '<' | 'C' | 'D' =>
Answer (Sign_Position) := ' ';
Answer (Pic.Second_Sign) := ' ';
when '+' =>
null;
when others =>
raise Picture_Error;
end case;
end if;
end if;
-- Fill in trailing digits
if Pic.Max_Trailing_Digits > 0 then
if Attrs.Has_Fraction then
Position := Attrs.Start_Of_Fraction;
Last := Pic.Radix_Position + 1;
for J in Last .. Answer'Last loop
if Answer (J) = '9' or else Answer (J) = Pic.Floater then
Answer (J) := Rounded (Position);
if Rounded (Position) /= '0' then
Zero := False;
end if;
Position := Position + 1;
Last := J + 1;
-- Used up fraction but remember place in Answer
exit when Position > Attrs.End_Of_Fraction;
elsif Answer (J) = 'b' then
Answer (J) := ' ';
elsif Answer (J) = '_' then
Answer (J) := Separator_Character;
end if;
Last := J + 1;
end loop;
Position := Last;
else
Position := Pic.Radix_Position + 1;
end if;
-- Now fill remaining 9's with zeros and _ with separators
Last := Answer'Last;
for J in Position .. Last loop
if Answer (J) = '9' then
Answer (J) := '0';
elsif Answer (J) = Pic.Floater then
Answer (J) := '0';
elsif Answer (J) = '_' then
Answer (J) := Separator_Character;
elsif Answer (J) = 'b' then
Answer (J) := ' ';
end if;
end loop;
Position := Last + 1;
else
if Pic.Floater = '#' and then Currency_Pos /= 0 then
raise Ada.Text_IO.Layout_Error;
end if;
-- No trailing digits, but now J may need to stick in a currency
-- symbol or sign.
Position :=
(if Pic.Start_Currency = Invalid_Position
then Answer'Last + 1
else Pic.Start_Currency);
end if;
for J in Position .. Answer'Last loop
if Pic.Start_Currency /= Invalid_Position
and then Answer (Pic.Start_Currency) = '#'
then
Currency_Pos := 1;
end if;
case Answer (J) is
when '*' =>
Answer (J) := Fill_Character;
when 'b' =>
if In_Currency then
Answer (J) := Currency_Symbol (Currency_Pos);
Currency_Pos := Currency_Pos + 1;
if Currency_Pos > Currency_Symbol'Length then
In_Currency := False;
end if;
end if;
when '#' =>
if Currency_Pos > Currency_Symbol'Length then
Answer (J) := ' ';
else
In_Currency := True;
Answer (J) := Currency_Symbol (Currency_Pos);
Currency_Pos := Currency_Pos + 1;
if Currency_Pos > Currency_Symbol'Length then
In_Currency := False;
end if;
end if;
when '_' =>
Answer (J) := Currency_Symbol (Currency_Pos);
Currency_Pos := Currency_Pos + 1;
case Pic.Floater is
when '*' =>
Answer (J) := Fill_Character;
when 'Z' | 'z' =>
Answer (J) := ' ';
when '#' =>
if Currency_Pos > Currency_Symbol'Length then
Answer (J) := ' ';
else
Answer (J) := Currency_Symbol (Currency_Pos);
Currency_Pos := Currency_Pos + 1;
end if;
when others =>
null;
end case;
when others =>
exit;
end case;
end loop;
-- Now get rid of Blank_when_Zero and complete Star fill
if Zero and then Pic.Blank_When_Zero then
-- Value is zero, and blank it
Last := Answer'Last;
if Dollar then
Last := Last - 1 + Currency_Symbol'Length;
end if;
if Pic.Radix_Position /= Invalid_Position
and then Answer (Pic.Radix_Position) = 'V'
then
Last := Last - 1;
end if;
return String'(1 .. Last => ' ');
elsif Zero and then Pic.Star_Fill then
Last := Answer'Last;
if Dollar then
Last := Last - 1 + Currency_Symbol'Length;
end if;
if Pic.Radix_Position /= Invalid_Position then
if Answer (Pic.Radix_Position) = 'V' then
Last := Last - 1;
elsif Dollar then
if Pic.Radix_Position > Pic.Start_Currency then
return String'(1 .. Pic.Radix_Position - 1 => '*') &
Radix_Point &
String'(Pic.Radix_Position + 1 .. Last => '*');
else
return
String'
(1 ..
Pic.Radix_Position + Currency_Symbol'Length - 2 =>
'*') & Radix_Point &
String'
(Pic.Radix_Position + Currency_Symbol'Length .. Last
=> '*');
end if;
else
return String'(1 .. Pic.Radix_Position - 1 => '*') &
Radix_Point &
String'(Pic.Radix_Position + 1 .. Last => '*');
end if;
end if;
return String'(1 .. Last => '*');
end if;
-- This was once a simple return statement, now there are nine different
-- return cases. Not to mention the five above to deal with zeros. Why
-- not split things out?
-- Processing the radix and sign expansion separately would require
-- lots of copying--the string and some of its indexes--without
-- really simplifying the logic. The cases are:
-- 1) Expand $, replace '.' with Radix_Point
-- 2) No currency expansion, replace '.' with Radix_Point
-- 3) Expand $, radix blanked
-- 4) No currency expansion, radix blanked
-- 5) Elide V
-- 6) Expand $, Elide V
-- 7) Elide V, Expand $ (Two cases depending on order.)
-- 8) No radix, expand $
-- 9) No radix, no currency expansion
if Pic.Radix_Position /= Invalid_Position then
if Answer (Pic.Radix_Position) = '.' then
Answer (Pic.Radix_Position) := Radix_Point;
if Dollar then
-- 1) Expand $, replace '.' with Radix_Point
return Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
Answer (Currency_Pos + 1 .. Answer'Last);
else
-- 2) No currency expansion, replace '.' with Radix_Point
return Answer;
end if;
elsif Answer (Pic.Radix_Position) = ' ' then -- blanked radix.
if Dollar then
-- 3) Expand $, radix blanked
return Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
Answer (Currency_Pos + 1 .. Answer'Last);
else
-- 4) No expansion, radix blanked
return Answer;
end if;
-- V cases
else
if not Dollar then
-- 5) Elide V
return Answer (1 .. Pic.Radix_Position - 1) &
Answer (Pic.Radix_Position + 1 .. Answer'Last);
elsif Currency_Pos < Pic.Radix_Position then
-- 6) Expand $, Elide V
return Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
Answer (Currency_Pos + 1 .. Pic.Radix_Position - 1) &
Answer (Pic.Radix_Position + 1 .. Answer'Last);
else
-- 7) Elide V, Expand $
return Answer (1 .. Pic.Radix_Position - 1) &
Answer (Pic.Radix_Position + 1 .. Currency_Pos - 1) &
Currency_Symbol &
Answer (Currency_Pos + 1 .. Answer'Last);
end if;
end if;
elsif Dollar then
-- 8) No radix, expand $
return Answer (1 .. Currency_Pos - 1) & Currency_Symbol &
Answer (Currency_Pos + 1 .. Answer'Last);
else
-- 9) No radix, no currency expansion
return Answer;
end if;
end Format_Number;
-------------------------
-- Parse_Number_String --
-------------------------
function Parse_Number_String (Str : String) return Number_Attributes is
Answer : Number_Attributes;
begin
for J in Str'Range loop
case Str (J) is
when ' ' =>
null; -- ignore
when '1' .. '9' =>
-- Decide if this is the start of a number.
-- If so, figure out which one...
if Answer.Has_Fraction then
Answer.End_Of_Fraction := J;
else
if Answer.Start_Of_Int = Invalid_Position then
-- start integer
Answer.Start_Of_Int := J;
end if;
Answer.End_Of_Int := J;
end if;
when '0' =>
-- Only count a zero before the decimal point if it follows a
-- non-zero digit. After the decimal point, zeros will be
-- counted if followed by a non-zero digit.
if not Answer.Has_Fraction then
if Answer.Start_Of_Int /= Invalid_Position then
Answer.End_Of_Int := J;
end if;
end if;
when '-' =>
-- Set negative
Answer.Negative := True;
when '.' =>
-- Close integer, start fraction
if Answer.Has_Fraction then
raise Picture_Error;
end if;
-- Two decimal points is a no-no
Answer.Has_Fraction := True;
Answer.End_Of_Fraction := J;
-- Could leave this at Invalid_Position, but this seems the
-- right way to indicate a null range...
Answer.Start_Of_Fraction := J + 1;
Answer.End_Of_Int := J - 1;
when others =>
raise Picture_Error; -- can this happen? probably not
end case;
end loop;
if Answer.Start_Of_Int = Invalid_Position then
Answer.Start_Of_Int := Answer.End_Of_Int + 1;
end if;
-- No significant (integer) digits needs a null range
return Answer;
end Parse_Number_String;
----------------
-- Pic_String --
----------------
-- The following ensures that we return B and not b being careful not
-- to break things which expect lower case b for blank. See CXF3A02.
function Pic_String (Pic : Picture) return String is
Temp : String (1 .. Pic.Contents.Picture.Length) :=
Pic.Contents.Picture.Expanded;
begin
for J in Temp'Range loop
if Temp (J) = 'b' then
Temp (J) := 'B';
end if;
end loop;
return Temp;
end Pic_String;
------------------
-- Precalculate --
------------------
procedure Precalculate (Pic : in out Format_Record) is
Debug : constant Boolean := False;
-- Set True to generate debug output
Computed_BWZ : Boolean := True;
type Legality is (Okay, Reject);
State : Legality := Reject;
-- Start in reject, which will reject null strings
Index : Pic_Index := Pic.Picture.Expanded'First;
function At_End return Boolean;
pragma Inline (At_End);
procedure Set_State (L : Legality);
pragma Inline (Set_State);
function Look return Character;
pragma Inline (Look);
function Is_Insert return Boolean;
pragma Inline (Is_Insert);
procedure Skip;
pragma Inline (Skip);
procedure Debug_Start (Name : String);
pragma Inline (Debug_Start);
procedure Debug_Integer (Value : Integer; S : String);
pragma Inline (Debug_Integer);
procedure Trailing_Currency;
procedure Trailing_Bracket;
procedure Number_Fraction;
procedure Number_Completion;
procedure Number_Fraction_Or_Bracket;
procedure Number_Fraction_Or_Z_Fill;
procedure Zero_Suppression;
procedure Floating_Bracket;
procedure Number_Fraction_Or_Star_Fill;
procedure Star_Suppression;
procedure Number_Fraction_Or_Dollar;
procedure Leading_Dollar;
procedure Number_Fraction_Or_Pound;
procedure Leading_Pound;
procedure Picture;
procedure Floating_Plus;
procedure Floating_Minus;
procedure Picture_Plus;
procedure Picture_Minus;
procedure Picture_Bracket;
procedure Number;
procedure Optional_RHS_Sign;
procedure Picture_String;
procedure Set_Debug;
------------
-- At_End --
------------
function At_End return Boolean is
begin
Debug_Start ("At_End");
return Index > Pic.Picture.Length;
end At_End;
--------------
-- Set_Debug--
--------------
-- Needed to have a procedure to pass to pragma Debug
procedure Set_Debug is
begin
-- Uncomment this line and make Debug a variable to enable debug
-- Debug := True;
null;
end Set_Debug;
-------------------
-- Debug_Integer --
-------------------
procedure Debug_Integer (Value : Integer; S : String) is
begin
if Debug and then Value > 0 then
if Ada.Text_IO.Col > 70 - S'Length then
Ada.Text_IO.New_Line;
end if;
Ada.Text_IO.Put (' ' & S & Integer'Image (Value) & ',');
end if;
end Debug_Integer;
-----------------
-- Debug_Start --
-----------------
procedure Debug_Start (Name : String) is
begin
if Debug then
Ada.Text_IO.Put_Line (" In " & Name & '.');
end if;
end Debug_Start;
----------------------
-- Floating_Bracket --
----------------------
-- Note that Floating_Bracket is only called with an acceptable
-- prefix. But we don't set Okay, because we must end with a '>'.
procedure Floating_Bracket is
begin
Debug_Start ("Floating_Bracket");
-- Two different floats not allowed
if Pic.Floater /= '!' and then Pic.Floater /= '<' then
raise Picture_Error;
else
Pic.Floater := '<';
end if;
Pic.End_Float := Index;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
-- First bracket wasn't counted...
Skip; -- known '<'
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '<' =>
Pic.End_Float := Index;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Skip;
when '9' =>
Number_Completion;
when '$' =>
Leading_Dollar;
when '#' =>
Leading_Pound;
when 'V' | 'v' | '.' =>
Pic.Radix_Position := Index;
Skip;
Number_Fraction_Or_Bracket;
return;
when others =>
return;
end case;
end loop;
end Floating_Bracket;
--------------------
-- Floating_Minus --
--------------------
procedure Floating_Minus is
begin
Debug_Start ("Floating_Minus");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '-' =>
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.End_Float := Index;
Skip;
when '9' =>
Number_Completion;
return;
when '.' | 'V' | 'v' =>
Pic.Radix_Position := Index;
Skip; -- Radix
while Is_Insert loop
Skip;
end loop;
if At_End then
return;
end if;
if Look = '-' then
loop
if At_End then
return;
end if;
case Look is
when '-' =>
Pic.Max_Trailing_Digits :=
Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when others =>
return;
end case;
end loop;
else
Number_Completion;
end if;
return;
when others =>
return;
end case;
end loop;
end Floating_Minus;
-------------------
-- Floating_Plus --
-------------------
procedure Floating_Plus is
begin
Debug_Start ("Floating_Plus");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '+' =>
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.End_Float := Index;
Skip;
when '9' =>
Number_Completion;
return;
when '.' | 'V' | 'v' =>
Pic.Radix_Position := Index;
Skip; -- Radix
while Is_Insert loop
Skip;
end loop;
if At_End then
return;
end if;
if Look = '+' then
loop
if At_End then
return;
end if;
case Look is
when '+' =>
Pic.Max_Trailing_Digits :=
Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when others =>
return;
end case;
end loop;
else
Number_Completion;
end if;
return;
when others =>
return;
end case;
end loop;
end Floating_Plus;
---------------
-- Is_Insert --
---------------
function Is_Insert return Boolean is
begin
if At_End then
return False;
end if;
case Pic.Picture.Expanded (Index) is
when '_' | '0' | '/' =>
return True;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b'; -- canonical
return True;
when others =>
return False;
end case;
end Is_Insert;
--------------------
-- Leading_Dollar --
--------------------
-- Note that Leading_Dollar can be called in either State. It will set
-- state to Okay only if a 9 or (second) $ is encountered.
-- Also notice the tricky bit with State and Zero_Suppression.
-- Zero_Suppression is Picture_Error if a '$' or a '9' has been
-- encountered, exactly the cases where State has been set.
procedure Leading_Dollar is
begin
Debug_Start ("Leading_Dollar");
-- Treat as a floating dollar, and unwind otherwise
if Pic.Floater /= '!' and then Pic.Floater /= '$' then
-- Two floats not allowed
raise Picture_Error;
else
Pic.Floater := '$';
end if;
Pic.Start_Currency := Index;
Pic.End_Currency := Index;
Pic.Start_Float := Index;
Pic.End_Float := Index;
-- Don't increment Pic.Max_Leading_Digits, we need one "real"
-- currency place.
Skip; -- known '$'
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
-- A trailing insertion character is not part of the
-- floating currency, so need to look ahead.
if Look /= '$' then
Pic.End_Float := Pic.End_Float - 1;
end if;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when 'Z' | 'z' =>
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
if State = Okay then
raise Picture_Error;
else
-- Overwrite Floater and Start_Float
Pic.Floater := 'Z';
Pic.Start_Float := Index;
Zero_Suppression;
end if;
when '*' =>
if State = Okay then
raise Picture_Error;
else
-- Overwrite Floater and Start_Float
Pic.Floater := '*';
Pic.Start_Float := Index;
Star_Suppression;
end if;
when '$' =>
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.End_Float := Index;
Pic.End_Currency := Index;
Set_State (Okay); Skip;
when '9' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
-- A single dollar does not a floating make
Number_Completion;
return;
when 'V' | 'v' | '.' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
-- Only one dollar before the sign is okay, but doesn't
-- float.
Pic.Radix_Position := Index;
Skip;
Number_Fraction_Or_Dollar;
return;
when others =>
return;
end case;
end loop;
end Leading_Dollar;
-------------------
-- Leading_Pound --
-------------------
-- This one is complex. A Leading_Pound can be fixed or floating,
-- but in some cases the decision has to be deferred until we leave
-- this procedure. Also note that Leading_Pound can be called in
-- either State.
-- It will set state to Okay only if a 9 or (second) # is encountered
-- One Last note: In ambiguous cases, the currency is treated as
-- floating unless there is only one '#'.
procedure Leading_Pound is
Inserts : Boolean := False;
-- Set to True if a '_', '0', '/', 'B', or 'b' is encountered
Must_Float : Boolean := False;
-- Set to true if a '#' occurs after an insert
begin
Debug_Start ("Leading_Pound");
-- Treat as a floating currency. If it isn't, this will be
-- overwritten later.
if Pic.Floater /= '!' and then Pic.Floater /= '#' then
-- Two floats not allowed
raise Picture_Error;
else
Pic.Floater := '#';
end if;
Pic.Start_Currency := Index;
Pic.End_Currency := Index;
Pic.Start_Float := Index;
Pic.End_Float := Index;
-- Don't increment Pic.Max_Leading_Digits, we need one "real"
-- currency place.
Pic.Max_Currency_Digits := 1; -- we've seen one.
Skip; -- known '#'
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Inserts := True;
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Pic.End_Float := Index;
Inserts := True;
Skip;
when 'Z' | 'z' =>
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
if Must_Float then
raise Picture_Error;
else
Pic.Max_Leading_Digits := 0;
-- Overwrite Floater and Start_Float
Pic.Floater := 'Z';
Pic.Start_Float := Index;
Zero_Suppression;
end if;
when '*' =>
if Must_Float then
raise Picture_Error;
else
Pic.Max_Leading_Digits := 0;
-- Overwrite Floater and Start_Float
Pic.Floater := '*';
Pic.Start_Float := Index;
Star_Suppression;
end if;
when '#' =>
if Inserts then
Must_Float := True;
end if;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.End_Float := Index;
Pic.End_Currency := Index;
Set_State (Okay);
Skip;
when '9' =>
if State /= Okay then
-- A single '#' doesn't float
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
Number_Completion;
return;
when 'V' | 'v' | '.' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
-- Only one pound before the sign is okay, but doesn't
-- float.
Pic.Radix_Position := Index;
Skip;
Number_Fraction_Or_Pound;
return;
when others =>
return;
end case;
end loop;
end Leading_Pound;
----------
-- Look --
----------
function Look return Character is
begin
if At_End then
raise Picture_Error;
end if;
return Pic.Picture.Expanded (Index);
end Look;
------------
-- Number --
------------
procedure Number is
begin
Debug_Start ("Number");
loop
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '9' =>
Computed_BWZ := False;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Set_State (Okay);
Skip;
when '.' | 'V' | 'v' =>
Pic.Radix_Position := Index;
Skip;
Number_Fraction;
return;
when others =>
return;
end case;
if At_End then
return;
end if;
-- Will return in Okay state if a '9' was seen
end loop;
end Number;
-----------------------
-- Number_Completion --
-----------------------
procedure Number_Completion is
begin
Debug_Start ("Number_Completion");
while not At_End loop
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '9' =>
Computed_BWZ := False;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Set_State (Okay);
Skip;
when 'V' | 'v' | '.' =>
Pic.Radix_Position := Index;
Skip;
Number_Fraction;
return;
when others =>
return;
end case;
end loop;
end Number_Completion;
---------------------
-- Number_Fraction --
---------------------
procedure Number_Fraction is
begin
-- Note that number fraction can be called in either State.
-- It will set state to Valid only if a 9 is encountered.
Debug_Start ("Number_Fraction");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '9' =>
Computed_BWZ := False;
Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
Set_State (Okay); Skip;
when others =>
return;
end case;
end loop;
end Number_Fraction;
--------------------------------
-- Number_Fraction_Or_Bracket --
--------------------------------
procedure Number_Fraction_Or_Bracket is
begin
Debug_Start ("Number_Fraction_Or_Bracket");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '<' =>
Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '<' =>
Pic.Max_Trailing_Digits :=
Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
when others =>
return;
end case;
end loop;
when others =>
Number_Fraction;
return;
end case;
end loop;
end Number_Fraction_Or_Bracket;
-------------------------------
-- Number_Fraction_Or_Dollar --
-------------------------------
procedure Number_Fraction_Or_Dollar is
begin
Debug_Start ("Number_Fraction_Or_Dollar");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '$' =>
Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '$' =>
Pic.Max_Trailing_Digits :=
Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
when others =>
return;
end case;
end loop;
when others =>
Number_Fraction;
return;
end case;
end loop;
end Number_Fraction_Or_Dollar;
------------------------------
-- Number_Fraction_Or_Pound --
------------------------------
procedure Number_Fraction_Or_Pound is
begin
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '#' =>
Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '#' =>
Pic.Max_Trailing_Digits :=
Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
when others =>
return;
end case;
end loop;
when others =>
Number_Fraction;
return;
end case;
end loop;
end Number_Fraction_Or_Pound;
----------------------------------
-- Number_Fraction_Or_Star_Fill --
----------------------------------
procedure Number_Fraction_Or_Star_Fill is
begin
Debug_Start ("Number_Fraction_Or_Star_Fill");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '*' =>
Pic.Star_Fill := True;
Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '*' =>
Pic.Star_Fill := True;
Pic.Max_Trailing_Digits :=
Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
when others =>
return;
end case;
end loop;
when others =>
Number_Fraction;
return;
end case;
end loop;
end Number_Fraction_Or_Star_Fill;
-------------------------------
-- Number_Fraction_Or_Z_Fill --
-------------------------------
procedure Number_Fraction_Or_Z_Fill is
begin
Debug_Start ("Number_Fraction_Or_Z_Fill");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when 'Z' | 'z' =>
Pic.Max_Trailing_Digits := Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
Skip;
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when 'Z' | 'z' =>
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
Pic.Max_Trailing_Digits :=
Pic.Max_Trailing_Digits + 1;
Pic.End_Float := Index;
Skip;
when others =>
return;
end case;
end loop;
when others =>
Number_Fraction;
return;
end case;
end loop;
end Number_Fraction_Or_Z_Fill;
-----------------------
-- Optional_RHS_Sign --
-----------------------
procedure Optional_RHS_Sign is
begin
Debug_Start ("Optional_RHS_Sign");
if At_End then
return;
end if;
case Look is
when '+' | '-' =>
Pic.Sign_Position := Index;
Skip;
return;
when 'C' | 'c' =>
Pic.Sign_Position := Index;
Pic.Picture.Expanded (Index) := 'C';
Skip;
if Look = 'R' or else Look = 'r' then
Pic.Second_Sign := Index;
Pic.Picture.Expanded (Index) := 'R';
Skip;
else
raise Picture_Error;
end if;
return;
when 'D' | 'd' =>
Pic.Sign_Position := Index;
Pic.Picture.Expanded (Index) := 'D';
Skip;
if Look = 'B' or else Look = 'b' then
Pic.Second_Sign := Index;
Pic.Picture.Expanded (Index) := 'B';
Skip;
else
raise Picture_Error;
end if;
return;
when '>' =>
if Pic.Picture.Expanded (Pic.Sign_Position) = '<' then
Pic.Second_Sign := Index;
Skip;
else
raise Picture_Error;
end if;
when others =>
return;
end case;
end Optional_RHS_Sign;
-------------
-- Picture --
-------------
-- Note that Picture can be called in either State
-- It will set state to Valid only if a 9 is encountered or floating
-- currency is called.
procedure Picture is
begin
Debug_Start ("Picture");
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '$' =>
Leading_Dollar;
return;
when '#' =>
Leading_Pound;
return;
when '9' =>
Computed_BWZ := False;
Set_State (Okay);
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Skip;
when 'V' | 'v' | '.' =>
Pic.Radix_Position := Index;
Skip;
Number_Fraction;
Trailing_Currency;
return;
when others =>
return;
end case;
end loop;
end Picture;
---------------------
-- Picture_Bracket --
---------------------
procedure Picture_Bracket is
begin
Pic.Sign_Position := Index;
Debug_Start ("Picture_Bracket");
Pic.Sign_Position := Index;
-- Treat as a floating sign, and unwind otherwise
Pic.Floater := '<';
Pic.Start_Float := Index;
Pic.End_Float := Index;
-- Don't increment Pic.Max_Leading_Digits, we need one "real"
-- sign place.
Skip; -- Known Bracket
loop
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '<' =>
Set_State (Okay); -- "<<>" is enough.
Floating_Bracket;
Trailing_Currency;
Trailing_Bracket;
return;
when '$' | '#' | '9' | '*' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
Picture;
Trailing_Bracket;
Set_State (Okay);
return;
when '.' | 'V' | 'v' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
-- Don't assume that state is okay, haven't seen a digit
Picture;
Trailing_Bracket;
return;
when others =>
raise Picture_Error;
end case;
end loop;
end Picture_Bracket;
-------------------
-- Picture_Minus --
-------------------
procedure Picture_Minus is
begin
Debug_Start ("Picture_Minus");
Pic.Sign_Position := Index;
-- Treat as a floating sign, and unwind otherwise
Pic.Floater := '-';
Pic.Start_Float := Index;
Pic.End_Float := Index;
-- Don't increment Pic.Max_Leading_Digits, we need one "real"
-- sign place.
Skip; -- Known Minus
loop
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '-' =>
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.End_Float := Index;
Skip;
Set_State (Okay); -- "-- " is enough.
Floating_Minus;
Trailing_Currency;
return;
when '$' | '#' | '9' | '*' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
Picture;
Set_State (Okay);
return;
when 'Z' | 'z' =>
-- Can't have Z and a floating sign
if State = Okay then
Set_State (Reject);
end if;
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
Zero_Suppression;
Trailing_Currency;
Optional_RHS_Sign;
return;
when '.' | 'V' | 'v' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
-- Don't assume that state is okay, haven't seen a digit
Picture;
return;
when others =>
return;
end case;
end loop;
end Picture_Minus;
------------------
-- Picture_Plus --
------------------
procedure Picture_Plus is
begin
Debug_Start ("Picture_Plus");
Pic.Sign_Position := Index;
-- Treat as a floating sign, and unwind otherwise
Pic.Floater := '+';
Pic.Start_Float := Index;
Pic.End_Float := Index;
-- Don't increment Pic.Max_Leading_Digits, we need one "real"
-- sign place.
Skip; -- Known Plus
loop
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '+' =>
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.End_Float := Index;
Skip;
Set_State (Okay); -- "++" is enough
Floating_Plus;
Trailing_Currency;
return;
when '$' | '#' | '9' | '*' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
Picture;
Set_State (Okay);
return;
when 'Z' | 'z' =>
if State = Okay then
Set_State (Reject);
end if;
-- Can't have Z and a floating sign
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
-- '+Z' is acceptable
Set_State (Okay);
-- Overwrite Floater and Start_Float
Pic.Floater := 'Z';
Pic.Start_Float := Index;
Zero_Suppression;
Trailing_Currency;
Optional_RHS_Sign;
return;
when '.' | 'V' | 'v' =>
if State /= Okay then
Pic.Floater := '!';
Pic.Start_Float := Invalid_Position;
Pic.End_Float := Invalid_Position;
end if;
-- Don't assume that state is okay, haven't seen a digit
Picture;
return;
when others =>
return;
end case;
end loop;
end Picture_Plus;
--------------------
-- Picture_String --
--------------------
procedure Picture_String is
begin
Debug_Start ("Picture_String");
while Is_Insert loop
Skip;
end loop;
case Look is
when '$' | '#' =>
Picture;
Optional_RHS_Sign;
when '+' =>
Picture_Plus;
when '-' =>
Picture_Minus;
when '<' =>
Picture_Bracket;
when 'Z' | 'z' =>
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
Zero_Suppression;
Trailing_Currency;
Optional_RHS_Sign;
when '*' =>
Star_Suppression;
Trailing_Currency;
Optional_RHS_Sign;
when '9' | '.' | 'V' | 'v' =>
Number;
Trailing_Currency;
Optional_RHS_Sign;
when others =>
raise Picture_Error;
end case;
-- Blank when zero either if the PIC does not contain a '9' or if
-- requested by the user and no '*'.
Pic.Blank_When_Zero :=
(Computed_BWZ or else Pic.Blank_When_Zero)
and then not Pic.Star_Fill;
-- Star fill if '*' and no '9'
Pic.Star_Fill := Pic.Star_Fill and then Computed_BWZ;
if not At_End then
Set_State (Reject);
end if;
end Picture_String;
---------------
-- Set_State --
---------------
procedure Set_State (L : Legality) is
begin
if Debug then
Ada.Text_IO.Put_Line
(" Set state from " & Legality'Image (State)
& " to " & Legality'Image (L));
end if;
State := L;
end Set_State;
----------
-- Skip --
----------
procedure Skip is
begin
if Debug then
Ada.Text_IO.Put_Line (" Skip " & Pic.Picture.Expanded (Index));
end if;
Index := Index + 1;
end Skip;
----------------------
-- Star_Suppression --
----------------------
procedure Star_Suppression is
begin
Debug_Start ("Star_Suppression");
if Pic.Floater /= '!' and then Pic.Floater /= '*' then
-- Two floats not allowed
raise Picture_Error;
else
Pic.Floater := '*';
end if;
Pic.Start_Float := Index;
Pic.End_Float := Index;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Set_State (Okay);
-- Even a single * is a valid picture
Pic.Star_Fill := True;
Skip; -- Known *
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when '*' =>
Pic.End_Float := Index;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Set_State (Okay); Skip;
when '9' =>
Set_State (Okay);
Number_Completion;
return;
when '.' | 'V' | 'v' =>
Pic.Radix_Position := Index;
Skip;
Number_Fraction_Or_Star_Fill;
return;
when '#' | '$' =>
if Pic.Max_Currency_Digits > 0 then
raise Picture_Error;
end if;
-- Cannot have leading and trailing currency
Trailing_Currency;
Set_State (Okay);
return;
when others =>
raise Picture_Error;
end case;
end loop;
end Star_Suppression;
----------------------
-- Trailing_Bracket --
----------------------
procedure Trailing_Bracket is
begin
Debug_Start ("Trailing_Bracket");
if Look = '>' then
Pic.Second_Sign := Index;
Skip;
else
raise Picture_Error;
end if;
end Trailing_Bracket;
-----------------------
-- Trailing_Currency --
-----------------------
procedure Trailing_Currency is
begin
Debug_Start ("Trailing_Currency");
if At_End then
return;
end if;
if Look = '$' then
Pic.Start_Currency := Index;
Pic.End_Currency := Index;
Skip;
else
while not At_End and then Look = '#' loop
if Pic.Start_Currency = Invalid_Position then
Pic.Start_Currency := Index;
end if;
Pic.End_Currency := Index;
Skip;
end loop;
end if;
loop
if At_End then
return;
end if;
case Look is
when '_' | '0' | '/' =>
Skip;
when 'B' | 'b' =>
Pic.Picture.Expanded (Index) := 'b';
Skip;
when others =>
return;
end case;
end loop;
end Trailing_Currency;
----------------------
-- Zero_Suppression --
----------------------
procedure Zero_Suppression is
begin
Debug_Start ("Zero_Suppression");
Pic.Floater := 'Z';
Pic.Start_Float := Index;
Pic.End_Float := Index;
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
Skip; -- Known Z
loop
-- Even a single Z is a valid picture
if At_End then
Set_State (Okay);
return;
end if;
case Look is
when '_' | '0' | '/' =>
Pic.End_Float := Index;
Skip;
when 'B' | 'b' =>
Pic.End_Float := Index;
Pic.Picture.Expanded (Index) := 'b';
Skip;
when 'Z' | 'z' =>
Pic.Picture.Expanded (Index) := 'Z'; -- consistency
Pic.Max_Leading_Digits := Pic.Max_Leading_Digits + 1;
Pic.End_Float := Index;
Set_State (Okay);
Skip;
when '9' =>
Set_State (Okay);
Number_Completion;
return;
when '.' | 'V' | 'v' =>
Pic.Radix_Position := Index;
Skip;
Number_Fraction_Or_Z_Fill;
return;
when '#' | '$' =>
Trailing_Currency;
Set_State (Okay);
return;
when others =>
return;
end case;
end loop;
end Zero_Suppression;
-- Start of processing for Precalculate
begin
pragma Debug (Set_Debug);
Picture_String;
if Debug then
Ada.Text_IO.New_Line;
Ada.Text_IO.Put (" Picture : """ &
Pic.Picture.Expanded (1 .. Pic.Picture.Length) & """,");
Ada.Text_IO.Put (" Floater : '" & Pic.Floater & "',");
end if;
if State = Reject then
raise Picture_Error;
end if;
Debug_Integer (Pic.Radix_Position, "Radix Positon : ");
Debug_Integer (Pic.Sign_Position, "Sign Positon : ");
Debug_Integer (Pic.Second_Sign, "Second Sign : ");
Debug_Integer (Pic.Start_Float, "Start Float : ");
Debug_Integer (Pic.End_Float, "End Float : ");
Debug_Integer (Pic.Start_Currency, "Start Currency : ");
Debug_Integer (Pic.End_Currency, "End Currency : ");
Debug_Integer (Pic.Max_Leading_Digits, "Max Leading Digits : ");
Debug_Integer (Pic.Max_Trailing_Digits, "Max Trailing Digits : ");
if Debug then
Ada.Text_IO.New_Line;
end if;
exception
when Constraint_Error =>
-- To deal with special cases like null strings
raise Picture_Error;
end Precalculate;
----------------
-- To_Picture --
----------------
function To_Picture
(Pic_String : String;
Blank_When_Zero : Boolean := False) return Picture
is
Result : Picture;
begin
declare
Item : constant String := Expand (Pic_String);
begin
Result.Contents.Picture := (Item'Length, Item);
Result.Contents.Original_BWZ := Blank_When_Zero;
Result.Contents.Blank_When_Zero := Blank_When_Zero;
Precalculate (Result.Contents);
return Result;
end;
exception
when others =>
raise Picture_Error;
end To_Picture;
-----------
-- Valid --
-----------
function Valid
(Pic_String : String;
Blank_When_Zero : Boolean := False) return Boolean
is
begin
declare
Expanded_Pic : constant String := Expand (Pic_String);
-- Raises Picture_Error if Item not well-formed
Format_Rec : Format_Record;
begin
Format_Rec.Picture := (Expanded_Pic'Length, Expanded_Pic);
Format_Rec.Blank_When_Zero := Blank_When_Zero;
Format_Rec.Original_BWZ := Blank_When_Zero;
Precalculate (Format_Rec);
-- False only if Blank_When_Zero is True but the pic string has a '*'
return not Blank_When_Zero
or else Strings_Fixed.Index (Expanded_Pic, "*") = 0;
end;
exception
when others => return False;
end Valid;
--------------------
-- Decimal_Output --
--------------------
package body Decimal_Output is
-----------
-- Image --
-----------
function Image
(Item : Num;
Pic : Picture;
Currency : String := Default_Currency;
Fill : Character := Default_Fill;
Separator : Character := Default_Separator;
Radix_Mark : Character := Default_Radix_Mark) return String
is
begin
return Format_Number
(Pic.Contents, Num'Image (Item),
Currency, Fill, Separator, Radix_Mark);
end Image;
------------
-- Length --
------------
function Length
(Pic : Picture;
Currency : String := Default_Currency) return Natural
is
Picstr : constant String := Pic_String (Pic);
V_Adjust : Integer := 0;
Cur_Adjust : Integer := 0;
begin
-- Check if Picstr has 'V' or '$'
-- If 'V', then length is 1 less than otherwise
-- If '$', then length is Currency'Length-1 more than otherwise
-- This should use the string handling package ???
for J in Picstr'Range loop
if Picstr (J) = 'V' then
V_Adjust := -1;
elsif Picstr (J) = '$' then
Cur_Adjust := Currency'Length - 1;
end if;
end loop;
return Picstr'Length - V_Adjust + Cur_Adjust;
end Length;
---------
-- Put --
---------
procedure Put
(File : Text_IO.File_Type;
Item : Num;
Pic : Picture;
Currency : String := Default_Currency;
Fill : Character := Default_Fill;
Separator : Character := Default_Separator;
Radix_Mark : Character := Default_Radix_Mark)
is
begin
Text_IO.Put (File, Image (Item, Pic,
Currency, Fill, Separator, Radix_Mark));
end Put;
procedure Put
(Item : Num;
Pic : Picture;
Currency : String := Default_Currency;
Fill : Character := Default_Fill;
Separator : Character := Default_Separator;
Radix_Mark : Character := Default_Radix_Mark)
is
begin
Text_IO.Put (Image (Item, Pic,
Currency, Fill, Separator, Radix_Mark));
end Put;
procedure Put
(To : out String;
Item : Num;
Pic : Picture;
Currency : String := Default_Currency;
Fill : Character := Default_Fill;
Separator : Character := Default_Separator;
Radix_Mark : Character := Default_Radix_Mark)
is
Result : constant String :=
Image (Item, Pic, Currency, Fill, Separator, Radix_Mark);
begin
if Result'Length > To'Length then
raise Ada.Text_IO.Layout_Error;
else
Strings_Fixed.Move (Source => Result, Target => To,
Justify => Strings.Right);
end if;
end Put;
-----------
-- Valid --
-----------
function Valid
(Item : Num;
Pic : Picture;
Currency : String := Default_Currency) return Boolean
is
begin
declare
Temp : constant String := Image (Item, Pic, Currency);
pragma Warnings (Off, Temp);
begin
return True;
end;
exception
when Ada.Text_IO.Layout_Error => return False;
end Valid;
end Decimal_Output;
end Ada.Text_IO.Editing;
|
zhmu/ananas | Ada | 1,993 | ads | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- U S A G E --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING3. If not, go to --
-- http://www.gnu.org/licenses for a complete copy of the license. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Procedure to generate screen of usage information if no file name present
procedure Usage;
|
zhmu/ananas | Ada | 799 | adb | -- { dg-do run }
with Ada.Streams.Stream_IO;
procedure In_Out_Parameter is
use Ada.Streams; use Stream_IO;
File : Stream_IO.File_Type;
type Bitmap is array (Natural range <>) of Boolean;
for Bitmap'Component_Size use 1;
type Message is record
B : Bitmap (0 .. 14);
end record;
for Message use record
B at 0 range 2 .. 16;
end record;
TX, RX : Message;
begin
TX.B := (others => False);
Stream_IO.Create (File => File, Mode => Out_File, Name => "data");
Message'Output (Stream (File), TX);
Stream_IO.Close (File);
--
Stream_IO.Open (File => File, Mode => In_File, Name => "data");
RX := Message'Input (Stream (File));
Stream_IO.Close (File);
if RX /= TX then
raise Program_Error;
end if;
end In_Out_Parameter;
|
AdaCore/gpr | Ada | 182 | ads | package p8_3 is
function p8_3_0 (Item : Integer) return Integer;
function p8_3_1 (Item : Integer) return Integer;
function p8_3_2 (Item : Integer) return Integer;
end p8_3;
|
PThierry/ewok-kernel | Ada | 3,436 | ads | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
with ewok.tasks_shared;
with ewok.interrupts;
with soc.interrupts;
package ewok.exported.interrupts
with spark_mode => off
is
MAX_POSTHOOK_INSTR : constant := 10;
type t_posthook_action is
(POSTHOOK_NIL,
POSTHOOK_READ,
POSTHOOK_WRITE,
POSTHOOK_WRITE_REG, -- C name "and"
POSTHOOK_WRITE_MASK); -- C name "mask"
-- value <- register
type t_posthook_action_read is record
offset : unsigned_32;
value : unsigned_32;
end record;
-- register <- value & mask
type t_posthook_action_write is record
offset : unsigned_32;
value : unsigned_32;
mask : unsigned_32;
end record;
-- register(dest) <- register(src) & mask
type t_posthook_action_write_reg is record
offset_dest : unsigned_32;
offset_src : unsigned_32;
mask : unsigned_32;
mode : unsigned_8;
end record;
-- register(dest) <- register(src) & register(mask)
type t_posthook_action_write_mask is record
offset_dest : unsigned_32;
offset_src : unsigned_32;
offset_mask : unsigned_32;
mode : unsigned_8;
end record;
MODE_STANDARD : constant := 0;
MODE_NOT : constant := 1;
type t_posthook_instruction (instr : t_posthook_action := POSTHOOK_NIL) is
record
case instr is
when POSTHOOK_NIL =>
null;
when POSTHOOK_READ =>
read : t_posthook_action_read;
when POSTHOOK_WRITE =>
write : t_posthook_action_write;
when POSTHOOK_WRITE_REG =>
write_reg : t_posthook_action_write_reg;
when POSTHOOK_WRITE_MASK =>
write_mask : t_posthook_action_write_mask;
end case;
end record;
-- number of posthooks
subtype t_posthook_instruction_number is
integer range 1 .. MAX_POSTHOOK_INSTR;
-- array of posthooks
type t_posthook_instruction_list is
array (t_posthook_instruction_number'range) of t_posthook_instruction;
type t_interrupt_posthook is record
action : t_posthook_instruction_list; -- Reading, writing, masking...
status : unsigned_32;
data : unsigned_32;
end record;
type t_interrupt_config is record
handler : ewok.interrupts.t_interrupt_handler_access := NULL;
interrupt : soc.interrupts.t_interrupt := soc.interrupts.INT_NONE;
mode : ewok.tasks_shared.t_scheduling_post_isr;
posthook : t_interrupt_posthook;
end record;
type t_interrupt_config_access is access all t_interrupt_config;
end ewok.exported.interrupts;
|
annexi-strayline/ASAP-UUIDs | Ada | 4,869 | adb | ------------------------------------------------------------------------------
-- --
-- Common UUID Handling Package --
-- - RFC 4122 Implementation - --
-- --
-- Version 1.0 --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Version 1 (Time-based) UUID Generation Package --
-- Throttled Timestamp Source Package --
-- for high performance generation --
-- --
-- ------------------------------------------------------------------------ --
-- --
-- Copyright (C) 2018, ANNEXI-STRAYLINE Trans-Human Ltd. --
-- All rights reserved. --
-- --
-- Original Contributors: --
-- * Richard Wai (ANNEXI-STRAYLINE) --
-- --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions are --
-- met: --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in --
-- the documentation and/or other materials provided with the --
-- distribution. --
-- --
-- * Neither the name of ANNEXI-STRAYLINE nor the names of its --
-- contributors may be used to endorse or promote products derived --
-- from this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A --
-- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANNEXI-STRAYLINE --
-- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR --
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF --
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR --
-- BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, --
-- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR --
-- OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF --
-- ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
package body UUIDs.Version_1.Throttled_TS is
-----------------------
-- Current_Timestamp --
-----------------------
protected body Current_Timestamp is
function Get return Timestamp is (TS);
procedure Set (New_TS: in Timestamp) is
begin
TS := New_TS;
end Set;
end Current_Timestamp;
-----------------------
-- Timestamp_Monitor --
-----------------------
task body Timestamp_Monitor is
Alive: Boolean := True;
TS : Timestamp;
begin
while Alive loop
select
accept Kill do
Alive := False;
end Kill;
or
delay Update_Quantum;
TS := Actual_Source;
Current_Timestamp.Set (TS);
end select;
end loop;
end Timestamp_Monitor;
end UUIDs.Version_1.Throttled_TS;
|
thierr26/ada-keystore | Ada | 6,123 | ads | -----------------------------------------------------------------------
-- keystore-io -- IO low level operation for the keystore
-- Copyright (C) 2019 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Streams;
with Util.Encoders.AES;
with Keystore.Buffers;
with Keystore.Marshallers;
private package Keystore.IO is
use Ada.Streams;
-- Data block size defined to a 4K to map system page.
Block_Size : constant := Buffers.Block_Size;
BT_HMAC_HEADER_SIZE : constant := 32;
BT_TYPE_HEADER_SIZE : constant := 16;
-- Block type magic values.
BT_WALLET_UNUSED : constant := 16#0000#;
BT_WALLET_HEADER : constant := 16#0101#;
BT_WALLET_DIRECTORY : constant := 16#0202#;
BT_WALLET_DATA : constant := 16#0303#;
SIZE_U16 : constant := 2;
SIZE_U32 : constant := 4;
SIZE_U64 : constant := 8;
SIZE_DATE : constant := SIZE_U64;
SIZE_HMAC : constant := BT_HMAC_HEADER_SIZE;
SIZE_KIND : constant := SIZE_U32;
SIZE_BLOCK : constant := SIZE_U32;
SIZE_SECRET : constant := 32;
SIZE_IV : constant := 16;
type Block_Kind is (MASTER_BLOCK, DIRECTORY_BLOCK, DATA_BLOCK);
subtype Buffer_Size is Buffers.Buffer_Size;
subtype Block_Index is Buffers.Block_Index;
subtype Block_Type is Buffers.Block_Type;
subtype IO_Block_Type is Buffers.IO_Block_Type;
subtype Block_Count is Buffers.Block_Count;
subtype Block_Number is Buffers.Block_Number;
subtype Storage_Block is Buffers.Storage_Block;
subtype Storage_Identifier is Buffers.Storage_Identifier;
subtype Marshaller is Marshallers.Marshaller;
BT_HEADER_START : constant Block_Index := Block_Index'First;
BT_DATA_START : constant Block_Index := BT_HEADER_START + BT_TYPE_HEADER_SIZE;
BT_DATA_LENGTH : constant Block_Index := Block_Index'Last - BT_DATA_START + 1;
BT_HMAC_HEADER_POS : constant Stream_Element_Offset := Block_Index'Last + 1;
HEADER_BLOCK_NUM : constant Block_Number := 1;
DEFAULT_STORAGE_ID : constant Storage_Identifier := 0;
type Wallet_Stream is limited interface;
type Wallet_Stream_Access is access all Wallet_Stream'Class;
-- Returns true if the block number is allocated.
function Is_Used (Stream : in out Wallet_Stream;
Block : in Storage_Block) return Boolean is abstract;
-- Read from the wallet stream the block identified by the number and
-- call the `Process` procedure with the data block content.
procedure Read (Stream : in out Wallet_Stream;
Block : in Storage_Block;
Process : not null access
procedure (Data : in IO_Block_Type)) is abstract;
-- Write in the wallet stream the block identified by the block number.
procedure Write (Stream : in out Wallet_Stream;
Block : in Storage_Block;
Process : not null access
procedure (Data : out IO_Block_Type)) is abstract;
-- Allocate a new block and return the block number in `Block`.
procedure Allocate (Stream : in out Wallet_Stream;
Kind : in Block_Kind;
Block : out Storage_Block) is abstract;
-- Release the block number.
procedure Release (Stream : in out Wallet_Stream;
Block : in Storage_Block) is abstract;
-- Close the wallet stream and release any resource.
procedure Close (Stream : in out Wallet_Stream) is abstract;
-- Set some header data in the keystore file.
procedure Set_Header_Data (Stream : in out Wallet_Stream;
Index : in Header_Slot_Index_Type;
Kind : in Header_Slot_Type;
Data : in Ada.Streams.Stream_Element_Array) is abstract;
-- Get the header data information from the keystore file.
procedure Get_Header_Data (Stream : in out Wallet_Stream;
Index : in Header_Slot_Index_Type;
Kind : out Header_Slot_Type;
Data : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset) is abstract;
-- Read the block from the wallet IO stream and decrypt the block content using
-- the decipher object. The decrypted content is stored in the marshaller which
-- is ready to read the start of the block header.
procedure Read (Stream : in out Wallet_Stream'Class;
Decipher : in out Util.Encoders.AES.Decoder;
Sign : in Secret_Key;
Decrypt_Size : out Block_Index;
Into : in out Buffers.Storage_Buffer);
-- Write the block in the wallet IO stream. Encrypt the block data using the
-- cipher object. Sign the header and encrypted data using HMAC-256 and the
-- given signature.
procedure Write (Stream : in out Wallet_Stream'Class;
Encrypt_Size : in Block_Index := BT_DATA_LENGTH;
Cipher : in out Util.Encoders.AES.Encoder;
Sign : in Secret_Key;
From : in out Buffers.Storage_Buffer) with
Pre => Encrypt_Size mod 16 = 0 and Encrypt_Size <= BT_DATA_LENGTH;
end Keystore.IO;
|
zhmu/ananas | Ada | 4,446 | ads | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P U R E _ E X C E P T I O N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2000-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides an interface for raising predefined exceptions with
-- an exception message. It can be used from Pure units. This unit is for
-- internal use only, it is not generally available to applications.
package System.Pure_Exceptions is
pragma Pure;
type Exception_Type is limited null record;
-- Type used to specify which exception to raise
-- Really Exception_Type is Exception_Id, but Exception_Id can't be
-- used directly since it is declared in the non-pure unit Ada.Exceptions,
-- Exception_Id is in fact simply a pointer to the type Exception_Data
-- declared in System.Standard_Library (which is also non-pure). So what
-- we do is to define it here as a by reference type (any by reference
-- type would do), and then Import the definitions from Standard_Library.
-- Since this is a by reference type, these will be passed by reference,
-- which has the same effect as passing a pointer.
-- This type is not private because keeping it by reference would require
-- defining it in a way (e.g. using a tagged type) that would drag in other
-- run-time files, which is unwanted in the case of e.g. Ravenscar, where
-- we want to minimize the number of run-time files needed by default.
CE : constant Exception_Type; -- Constraint_Error
PE : constant Exception_Type; -- Program_Error
SE : constant Exception_Type; -- Storage_Error
TE : constant Exception_Type; -- Tasking_Error
-- One of these constants is used in the call to specify the exception
procedure Raise_Exception (E : Exception_Type; Message : String);
pragma Import (Ada, Raise_Exception, "__gnat_raise_exception");
pragma No_Return (Raise_Exception);
-- Raise specified exception with specified message
private
pragma Import (C, CE, "constraint_error");
pragma Import (C, PE, "program_error");
pragma Import (C, SE, "storage_error");
pragma Import (C, TE, "tasking_error");
-- References to the exception structures in the standard library
end System.Pure_Exceptions;
|
AdaCore/libadalang | Ada | 134 | ads | limited with D;
package C is
type Root_Type is null record;
procedure Visit (R : Root_Type; X : in out D.Foo) is null;
end C;
|
reznikmm/matreshka | Ada | 4,703 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Documents;
with Matreshka.ODF_String_Constants;
with ODF.DOM.Iterators;
with ODF.DOM.Visitors;
package body Matreshka.ODF_Draw.Fill_Image_Ref_Point_X_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Draw_Fill_Image_Ref_Point_X_Attribute_Node is
begin
return Self : Draw_Fill_Image_Ref_Point_X_Attribute_Node do
Matreshka.ODF_Draw.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Draw_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Draw_Fill_Image_Ref_Point_X_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Fill_Image_Ref_Point_X_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Draw_URI,
Matreshka.ODF_String_Constants.Fill_Image_Ref_Point_X_Attribute,
Draw_Fill_Image_Ref_Point_X_Attribute_Node'Tag);
end Matreshka.ODF_Draw.Fill_Image_Ref_Point_X_Attributes;
|
sbksba/Concurrence-LI330 | Ada | 1,769 | adb | with Ada.text_io;
use Ada.text_io;
procedure Gest_tunnel_protect is
NB_TRAINS : constant natural := 15;
NB_MAX : constant natural := 5;
type t_sens is (sA,sB);
task type train(s : t_sens) is
entry monid(id : natural);
end train;
protected tunnel is
entry entrea(id : natural; s : t_sens);
entry entreb(id : natural; s : t_sens);
procedure sort(id : natural; s : t_sens);
private
nb_trainin : natural := 0;
nb_trainout : natural := 0;
sens_circ : t_sens := sA;
end tunnel;
task body train is
mid : natural;
begin
accept monid(id : natural) do
mid := id;
end monid;
if s = sA then
tunnel.entrea(mid,s);
else
tunnel.entreb(mid,s);
end if;
tunnel.sort(mid,s);
end train;
protected body tunnel is
entry entrea(id : natural;s : t_sens) when sens_circ = sA and nb_trainin < NB_MAX is
begin
nb_trainin:= nb_trainin+1;
put_line("train :"&natural'image(id)&" sens : "&t_sens'image(s)&" sens_circ :"&t_sens'image(sens_circ));
end entrea;
entry entreb(id : natural;s : t_sens) when sens_circ = sB and nb_trainin < NB_MAX is
begin
nb_trainin:= nb_trainin+1;
put_line("train :"&natural'image(id)&" sens : "&t_sens'image(s)&" sens_circ :"&t_sens'image(sens_circ));
end entreb;
procedure sort(id : natural; s : t_sens) is
begin
nb_trainout:= nb_trainout+1;
if nb_trainin = NB_MAX and nb_trainin = nb_trainout then
if sens_circ = sA then
sens_circ := sB;
else
sens_circ := sA;
end if;
nb_trainin := 0;
nb_trainout := 0;
end if;
end sort;
end tunnel;
type tab_train_a is array (1..NB_TRAINS) of train(sA);
type tab_train_b is array (1..NB_TRAINS) of train(sB);
t_a : tab_train_a;
t_b : tab_train_b;
begin
for i in 1..NB_TRAINS loop
t_a(i).monid(i);
t_b(i).monid(i);
end loop;
end Gest_tunnel_protect;
|
PThierry/ewok-kernel | Ada | 1,371 | ads | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
with ewok.tasks_shared;
package ewok.syscalls.init
with spark_mode => off
is
procedure svc_register_device
(caller_id : in ewok.tasks_shared.t_task_id;
params : in t_parameters;
mode : in ewok.tasks_shared.t_task_mode);
procedure svc_init_done
(caller_id : in ewok.tasks_shared.t_task_id;
mode : in ewok.tasks_shared.t_task_mode);
procedure svc_get_taskid
(caller_id : in ewok.tasks_shared.t_task_id;
params : in t_parameters;
mode : in ewok.tasks_shared.t_task_mode);
end ewok.syscalls.init;
|
zhmu/ananas | Ada | 3,223 | ads | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . I M G _ F L T --
-- --
-- S p e c --
-- --
-- Copyright (C) 2021-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains routines for the Image attribute of floating point
-- types based on Float, also used for Float_IO output.
with System.Image_R;
with System.Img_Uns;
with System.Powten_Flt;
with System.Unsigned_Types;
package System.Img_Flt is
pragma Pure;
package Impl is new Image_R
(Float,
System.Powten_Flt.Maxpow,
System.Powten_Flt.Powten'Address,
Unsigned_Types.Unsigned,
System.Img_Uns.Set_Image_Unsigned);
procedure Image_Float
(V : Float;
S : in out String;
P : out Natural;
Digs : Natural)
renames Impl.Image_Floating_Point;
procedure Set_Image_Float
(V : Float;
S : in out String;
P : in out Natural;
Fore : Natural;
Aft : Natural;
Exp : Natural)
renames Impl.Set_Image_Real;
end System.Img_Flt;
|
timboudreau/netbeans-contrib | Ada | 963 | adb | --
-- 6.1 Subprogram Declarations
--
-- NOTE: This module is not compilation is used only for testing purposes
--
package Subprogram_Declarations is
-- Examples of subprogram declarations:
procedure Traverse_Tree;
procedure Increment(X : in out Integer);
procedure Right_Indent(Margin : out Line_Size); -- see 3.5.4
procedure Switch(From, To : in out Link); -- see 3.10.1
function Random return Probability; -- see 3.5.7
function Min_Cell(X : Link) return Cell; -- see 3.10.1
function Next_Frame(K : Positive) return Frame; -- see 3.10
function Dot_Product(Left, Right : Vector) return Real; -- see 3.6
function "*"(Left, Right : Matrix) return Matrix; -- see 3.6
-- Examples of in parameters with default expressions:
procedure Print_Header
(Pages : in Natural;
Center : in Boolean := True);
end Subprogram_Declarations; |
stcarrez/ada-servlet | Ada | 1,643 | adb | -----------------------------------------------------------------------
-- aws-attachments-extend -- ASF extensions for AWS attachments
-- Copyright (C) 2012 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
package body AWS.Attachments.Extend is
-- ------------------------------
-- Get the length of the data content.
-- ------------------------------
function Get_Length (E : in Element) return Natural is
begin
case E.Kind is
when Data =>
return E.Data.Length;
when others =>
return 0;
end case;
end Get_Length;
-- ------------------------------
-- Get the name of the attachment.
-- ------------------------------
function Get_Name (E : in Element) return String is
begin
case E.Kind is
when Data =>
return To_String (E.Data.Content_Id);
when others =>
return "";
end case;
end Get_Name;
end AWS.Attachments.Extend;
|
reznikmm/matreshka | Ada | 3,739 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with XML.DOM.Attributes;
package ODF.DOM.Draw_Shadow_Offset_X_Attributes is
pragma Preelaborate;
type ODF_Draw_Shadow_Offset_X_Attribute is limited interface
and XML.DOM.Attributes.DOM_Attribute;
type ODF_Draw_Shadow_Offset_X_Attribute_Access is
access all ODF_Draw_Shadow_Offset_X_Attribute'Class
with Storage_Size => 0;
end ODF.DOM.Draw_Shadow_Offset_X_Attributes;
|
charlie5/cBound | Ada | 1,519 | ads | -- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with swig;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_generic_event_t is
-- Item
--
type Item is record
response_type : aliased Interfaces.Unsigned_8;
pad0 : aliased Interfaces.Unsigned_8;
sequence : aliased Interfaces.Unsigned_16;
pad : aliased swig.uint32_t_Array (0 .. 6);
full_sequence : aliased Interfaces.Unsigned_32;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C.size_t range <>) of aliased xcb.xcb_generic_event_t.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_generic_event_t.Item,
Element_Array => xcb.xcb_generic_event_t.Item_Array,
Default_Terminator => (others => <>));
subtype Pointer is C_Pointers.Pointer;
-- Pointer_Array
--
type Pointer_Array is
array
(Interfaces.C.size_t range <>) of aliased xcb.xcb_generic_event_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_generic_event_t.Pointer,
Element_Array => xcb.xcb_generic_event_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_generic_event_t;
|
AdaCore/gpr | Ada | 47 | ads | package Pkg is
procedure Execute;
end Pkg;
|
reznikmm/matreshka | Ada | 4,772 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with XML.DOM.Visitors;
with ODF.DOM.Draw_Regular_Polygon_Elements;
package Matreshka.ODF_Draw.Regular_Polygon_Elements is
type Draw_Regular_Polygon_Element_Node is
new Matreshka.ODF_Draw.Abstract_Draw_Element_Node
and ODF.DOM.Draw_Regular_Polygon_Elements.ODF_Draw_Regular_Polygon
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Elements.Element_L2_Parameters)
return Draw_Regular_Polygon_Element_Node;
overriding function Get_Local_Name
(Self : not null access constant Draw_Regular_Polygon_Element_Node)
return League.Strings.Universal_String;
overriding procedure Enter_Node
(Self : not null access Draw_Regular_Polygon_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control);
overriding procedure Leave_Node
(Self : not null access Draw_Regular_Polygon_Element_Node;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control);
overriding procedure Visit_Node
(Self : not null access Draw_Regular_Polygon_Element_Node;
Iterator : in out XML.DOM.Visitors.Abstract_Iterator'Class;
Visitor : in out XML.DOM.Visitors.Abstract_Visitor'Class;
Control : in out XML.DOM.Visitors.Traverse_Control);
end Matreshka.ODF_Draw.Regular_Polygon_Elements;
|
zhmu/ananas | Ada | 6,246 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 7 1 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_71 is
subtype Bit_Order is System.Bit_Order;
Reverse_Bit_Order : constant Bit_Order :=
Bit_Order'Val (1 - Bit_Order'Pos (System.Default_Bit_Order));
subtype Ofs is System.Storage_Elements.Storage_Offset;
subtype Uns is System.Unsigned_Types.Unsigned;
subtype N07 is System.Unsigned_Types.Unsigned range 0 .. 7;
use type System.Storage_Elements.Storage_Offset;
use type System.Unsigned_Types.Unsigned;
type Cluster is record
E0, E1, E2, E3, E4, E5, E6, E7 : Bits_71;
end record;
for Cluster use record
E0 at 0 range 0 * Bits .. 0 * Bits + Bits - 1;
E1 at 0 range 1 * Bits .. 1 * Bits + Bits - 1;
E2 at 0 range 2 * Bits .. 2 * Bits + Bits - 1;
E3 at 0 range 3 * Bits .. 3 * Bits + Bits - 1;
E4 at 0 range 4 * Bits .. 4 * Bits + Bits - 1;
E5 at 0 range 5 * Bits .. 5 * Bits + Bits - 1;
E6 at 0 range 6 * Bits .. 6 * Bits + Bits - 1;
E7 at 0 range 7 * Bits .. 7 * Bits + Bits - 1;
end record;
for Cluster'Size use Bits * 8;
for Cluster'Alignment use Integer'Min (Standard'Maximum_Alignment,
1 +
1 * Boolean'Pos (Bits mod 2 = 0) +
2 * Boolean'Pos (Bits mod 4 = 0));
-- Use maximum possible alignment, given the bit field size, since this
-- will result in the most efficient code possible for the field.
type Cluster_Ref is access Cluster;
type Rev_Cluster is new Cluster
with Bit_Order => Reverse_Bit_Order,
Scalar_Storage_Order => Reverse_Bit_Order;
type Rev_Cluster_Ref is access Rev_Cluster;
------------
-- Get_71 --
------------
function Get_71
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_71
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => return RC.E0;
when 1 => return RC.E1;
when 2 => return RC.E2;
when 3 => return RC.E3;
when 4 => return RC.E4;
when 5 => return RC.E5;
when 6 => return RC.E6;
when 7 => return RC.E7;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
when 1 => return C.E1;
when 2 => return C.E2;
when 3 => return C.E3;
when 4 => return C.E4;
when 5 => return C.E5;
when 6 => return C.E6;
when 7 => return C.E7;
end case;
end if;
end Get_71;
------------
-- Set_71 --
------------
procedure Set_71
(Arr : System.Address;
N : Natural;
E : Bits_71;
Rev_SSO : Boolean)
is
A : constant System.Address := Arr + Bits * Ofs (Uns (N) / 8);
C : Cluster_Ref with Address => A'Address, Import;
RC : Rev_Cluster_Ref with Address => A'Address, Import;
begin
if Rev_SSO then
case N07 (Uns (N) mod 8) is
when 0 => RC.E0 := E;
when 1 => RC.E1 := E;
when 2 => RC.E2 := E;
when 3 => RC.E3 := E;
when 4 => RC.E4 := E;
when 5 => RC.E5 := E;
when 6 => RC.E6 := E;
when 7 => RC.E7 := E;
end case;
else
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;
when 1 => C.E1 := E;
when 2 => C.E2 := E;
when 3 => C.E3 := E;
when 4 => C.E4 := E;
when 5 => C.E5 := E;
when 6 => C.E6 := E;
when 7 => C.E7 := E;
end case;
end if;
end Set_71;
end System.Pack_71;
|
AdaCore/Ada_Drivers_Library | Ada | 22,852 | ads | -- This spec has been automatically generated from STM32F429x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package STM32_SVD.FSMC is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype BCR1_MTYP_Field is HAL.UInt2;
subtype BCR1_MWID_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select control register 1
type BCR1_Register is record
-- MBKEN
MBKEN : Boolean := False;
-- MUXEN
MUXEN : Boolean := False;
-- MTYP
MTYP : BCR1_MTYP_Field := 16#0#;
-- MWID
MWID : BCR1_MWID_Field := 16#1#;
-- FACCEN
FACCEN : Boolean := True;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#1#;
-- BURSTEN
BURSTEN : Boolean := False;
-- WAITPOL
WAITPOL : Boolean := False;
-- unspecified
Reserved_10_10 : HAL.Bit := 16#0#;
-- WAITCFG
WAITCFG : Boolean := False;
-- WREN
WREN : Boolean := True;
-- WAITEN
WAITEN : Boolean := True;
-- EXTMOD
EXTMOD : Boolean := False;
-- ASYNCWAIT
ASYNCWAIT : Boolean := False;
-- unspecified
Reserved_16_18 : HAL.UInt3 := 16#0#;
-- CBURSTRW
CBURSTRW : Boolean := False;
-- CCLKEN
CCLKEN : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BCR1_Register use record
MBKEN at 0 range 0 .. 0;
MUXEN at 0 range 1 .. 1;
MTYP at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
FACCEN at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
BURSTEN at 0 range 8 .. 8;
WAITPOL at 0 range 9 .. 9;
Reserved_10_10 at 0 range 10 .. 10;
WAITCFG at 0 range 11 .. 11;
WREN at 0 range 12 .. 12;
WAITEN at 0 range 13 .. 13;
EXTMOD at 0 range 14 .. 14;
ASYNCWAIT at 0 range 15 .. 15;
Reserved_16_18 at 0 range 16 .. 18;
CBURSTRW at 0 range 19 .. 19;
CCLKEN at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
subtype BTR_ADDSET_Field is HAL.UInt4;
subtype BTR_ADDHLD_Field is HAL.UInt4;
subtype BTR_DATAST_Field is HAL.UInt8;
subtype BTR_BUSTURN_Field is HAL.UInt4;
subtype BTR_CLKDIV_Field is HAL.UInt4;
subtype BTR_DATLAT_Field is HAL.UInt4;
subtype BTR_ACCMOD_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select timing register 1
type BTR_Register is record
-- ADDSET
ADDSET : BTR_ADDSET_Field := 16#F#;
-- ADDHLD
ADDHLD : BTR_ADDHLD_Field := 16#F#;
-- DATAST
DATAST : BTR_DATAST_Field := 16#FF#;
-- BUSTURN
BUSTURN : BTR_BUSTURN_Field := 16#F#;
-- CLKDIV
CLKDIV : BTR_CLKDIV_Field := 16#F#;
-- DATLAT
DATLAT : BTR_DATLAT_Field := 16#F#;
-- ACCMOD
ACCMOD : BTR_ACCMOD_Field := 16#3#;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#3#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BTR_Register use record
ADDSET at 0 range 0 .. 3;
ADDHLD at 0 range 4 .. 7;
DATAST at 0 range 8 .. 15;
BUSTURN at 0 range 16 .. 19;
CLKDIV at 0 range 20 .. 23;
DATLAT at 0 range 24 .. 27;
ACCMOD at 0 range 28 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
subtype BCR_MTYP_Field is HAL.UInt2;
subtype BCR_MWID_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select control register 2
type BCR_Register is record
-- MBKEN
MBKEN : Boolean := False;
-- MUXEN
MUXEN : Boolean := False;
-- MTYP
MTYP : BCR_MTYP_Field := 16#0#;
-- MWID
MWID : BCR_MWID_Field := 16#1#;
-- FACCEN
FACCEN : Boolean := True;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#1#;
-- BURSTEN
BURSTEN : Boolean := False;
-- WAITPOL
WAITPOL : Boolean := False;
-- WRAPMOD
WRAPMOD : Boolean := False;
-- WAITCFG
WAITCFG : Boolean := False;
-- WREN
WREN : Boolean := True;
-- WAITEN
WAITEN : Boolean := True;
-- EXTMOD
EXTMOD : Boolean := False;
-- ASYNCWAIT
ASYNCWAIT : Boolean := False;
-- unspecified
Reserved_16_18 : HAL.UInt3 := 16#0#;
-- CBURSTRW
CBURSTRW : Boolean := False;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BCR_Register use record
MBKEN at 0 range 0 .. 0;
MUXEN at 0 range 1 .. 1;
MTYP at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
FACCEN at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
BURSTEN at 0 range 8 .. 8;
WAITPOL at 0 range 9 .. 9;
WRAPMOD at 0 range 10 .. 10;
WAITCFG at 0 range 11 .. 11;
WREN at 0 range 12 .. 12;
WAITEN at 0 range 13 .. 13;
EXTMOD at 0 range 14 .. 14;
ASYNCWAIT at 0 range 15 .. 15;
Reserved_16_18 at 0 range 16 .. 18;
CBURSTRW at 0 range 19 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
subtype PCR_PWID_Field is HAL.UInt2;
subtype PCR_TCLR_Field is HAL.UInt4;
subtype PCR_TAR_Field is HAL.UInt4;
subtype PCR_ECCPS_Field is HAL.UInt3;
-- PC Card/NAND Flash control register 2
type PCR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- PWAITEN
PWAITEN : Boolean := False;
-- PBKEN
PBKEN : Boolean := False;
-- PTYP
PTYP : Boolean := True;
-- PWID
PWID : PCR_PWID_Field := 16#1#;
-- ECCEN
ECCEN : Boolean := False;
-- unspecified
Reserved_7_8 : HAL.UInt2 := 16#0#;
-- TCLR
TCLR : PCR_TCLR_Field := 16#0#;
-- TAR
TAR : PCR_TAR_Field := 16#0#;
-- ECCPS
ECCPS : PCR_ECCPS_Field := 16#0#;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PCR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
PWAITEN at 0 range 1 .. 1;
PBKEN at 0 range 2 .. 2;
PTYP at 0 range 3 .. 3;
PWID at 0 range 4 .. 5;
ECCEN at 0 range 6 .. 6;
Reserved_7_8 at 0 range 7 .. 8;
TCLR at 0 range 9 .. 12;
TAR at 0 range 13 .. 16;
ECCPS at 0 range 17 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-- FIFO status and interrupt register 2
type SR_Register is record
-- IRS
IRS : Boolean := False;
-- ILS
ILS : Boolean := False;
-- IFS
IFS : Boolean := False;
-- IREN
IREN : Boolean := False;
-- ILEN
ILEN : Boolean := False;
-- IFEN
IFEN : Boolean := False;
-- Read-only. FEMPT
FEMPT : Boolean := True;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
IRS at 0 range 0 .. 0;
ILS at 0 range 1 .. 1;
IFS at 0 range 2 .. 2;
IREN at 0 range 3 .. 3;
ILEN at 0 range 4 .. 4;
IFEN at 0 range 5 .. 5;
FEMPT at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
subtype PMEM_MEMSETx_Field is HAL.UInt8;
subtype PMEM_MEMWAITx_Field is HAL.UInt8;
subtype PMEM_MEMHOLDx_Field is HAL.UInt8;
subtype PMEM_MEMHIZx_Field is HAL.UInt8;
-- Common memory space timing register 2
type PMEM_Register is record
-- MEMSETx
MEMSETx : PMEM_MEMSETx_Field := 16#FC#;
-- MEMWAITx
MEMWAITx : PMEM_MEMWAITx_Field := 16#FC#;
-- MEMHOLDx
MEMHOLDx : PMEM_MEMHOLDx_Field := 16#FC#;
-- MEMHIZx
MEMHIZx : PMEM_MEMHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PMEM_Register use record
MEMSETx at 0 range 0 .. 7;
MEMWAITx at 0 range 8 .. 15;
MEMHOLDx at 0 range 16 .. 23;
MEMHIZx at 0 range 24 .. 31;
end record;
subtype PATT_ATTSETx_Field is HAL.UInt8;
subtype PATT_ATTWAITx_Field is HAL.UInt8;
subtype PATT_ATTHOLDx_Field is HAL.UInt8;
subtype PATT_ATTHIZx_Field is HAL.UInt8;
-- Attribute memory space timing register 2
type PATT_Register is record
-- ATTSETx
ATTSETx : PATT_ATTSETx_Field := 16#FC#;
-- ATTWAITx
ATTWAITx : PATT_ATTWAITx_Field := 16#FC#;
-- ATTHOLDx
ATTHOLDx : PATT_ATTHOLDx_Field := 16#FC#;
-- ATTHIZx
ATTHIZx : PATT_ATTHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PATT_Register use record
ATTSETx at 0 range 0 .. 7;
ATTWAITx at 0 range 8 .. 15;
ATTHOLDx at 0 range 16 .. 23;
ATTHIZx at 0 range 24 .. 31;
end record;
subtype PIO4_IOSETx_Field is HAL.UInt8;
subtype PIO4_IOWAITx_Field is HAL.UInt8;
subtype PIO4_IOHOLDx_Field is HAL.UInt8;
subtype PIO4_IOHIZx_Field is HAL.UInt8;
-- I/O space timing register 4
type PIO4_Register is record
-- IOSETx
IOSETx : PIO4_IOSETx_Field := 16#FC#;
-- IOWAITx
IOWAITx : PIO4_IOWAITx_Field := 16#FC#;
-- IOHOLDx
IOHOLDx : PIO4_IOHOLDx_Field := 16#FC#;
-- IOHIZx
IOHIZx : PIO4_IOHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PIO4_Register use record
IOSETx at 0 range 0 .. 7;
IOWAITx at 0 range 8 .. 15;
IOHOLDx at 0 range 16 .. 23;
IOHIZx at 0 range 24 .. 31;
end record;
subtype BWTR_ADDSET_Field is HAL.UInt4;
subtype BWTR_ADDHLD_Field is HAL.UInt4;
subtype BWTR_DATAST_Field is HAL.UInt8;
subtype BWTR_CLKDIV_Field is HAL.UInt4;
subtype BWTR_DATLAT_Field is HAL.UInt4;
subtype BWTR_ACCMOD_Field is HAL.UInt2;
-- SRAM/NOR-Flash write timing registers 1
type BWTR_Register is record
-- ADDSET
ADDSET : BWTR_ADDSET_Field := 16#F#;
-- ADDHLD
ADDHLD : BWTR_ADDHLD_Field := 16#F#;
-- DATAST
DATAST : BWTR_DATAST_Field := 16#FF#;
-- unspecified
Reserved_16_19 : HAL.UInt4 := 16#F#;
-- CLKDIV
CLKDIV : BWTR_CLKDIV_Field := 16#F#;
-- DATLAT
DATLAT : BWTR_DATLAT_Field := 16#F#;
-- ACCMOD
ACCMOD : BWTR_ACCMOD_Field := 16#0#;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BWTR_Register use record
ADDSET at 0 range 0 .. 3;
ADDHLD at 0 range 4 .. 7;
DATAST at 0 range 8 .. 15;
Reserved_16_19 at 0 range 16 .. 19;
CLKDIV at 0 range 20 .. 23;
DATLAT at 0 range 24 .. 27;
ACCMOD at 0 range 28 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
subtype SDCR_NC_Field is HAL.UInt2;
subtype SDCR_NR_Field is HAL.UInt2;
subtype SDCR_MWID_Field is HAL.UInt2;
subtype SDCR_CAS_Field is HAL.UInt2;
subtype SDCR_SDCLK_Field is HAL.UInt2;
subtype SDCR_RPIPE_Field is HAL.UInt2;
-- SDRAM Control Register 1
type SDCR_Register is record
-- Number of column address bits
NC : SDCR_NC_Field := 16#0#;
-- Number of row address bits
NR : SDCR_NR_Field := 16#0#;
-- Memory data bus width
MWID : SDCR_MWID_Field := 16#1#;
-- Number of internal banks
NB : Boolean := True;
-- CAS latency
CAS : SDCR_CAS_Field := 16#1#;
-- Write protection
WP : Boolean := True;
-- SDRAM clock configuration
SDCLK : SDCR_SDCLK_Field := 16#0#;
-- Burst read
RBURST : Boolean := False;
-- Read pipe
RPIPE : SDCR_RPIPE_Field := 16#0#;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDCR_Register use record
NC at 0 range 0 .. 1;
NR at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
NB at 0 range 6 .. 6;
CAS at 0 range 7 .. 8;
WP at 0 range 9 .. 9;
SDCLK at 0 range 10 .. 11;
RBURST at 0 range 12 .. 12;
RPIPE at 0 range 13 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
subtype SDTR_TMRD_Field is HAL.UInt4;
subtype SDTR_TXSR_Field is HAL.UInt4;
subtype SDTR_TRAS_Field is HAL.UInt4;
subtype SDTR_TRC_Field is HAL.UInt4;
subtype SDTR_TWR_Field is HAL.UInt4;
subtype SDTR_TRP_Field is HAL.UInt4;
subtype SDTR_TRCD_Field is HAL.UInt4;
-- SDRAM Timing register 1
type SDTR_Register is record
-- Load Mode Register to Active
TMRD : SDTR_TMRD_Field := 16#F#;
-- Exit self-refresh delay
TXSR : SDTR_TXSR_Field := 16#F#;
-- Self refresh time
TRAS : SDTR_TRAS_Field := 16#F#;
-- Row cycle delay
TRC : SDTR_TRC_Field := 16#F#;
-- Recovery delay
TWR : SDTR_TWR_Field := 16#F#;
-- Row precharge delay
TRP : SDTR_TRP_Field := 16#F#;
-- Row to column delay
TRCD : SDTR_TRCD_Field := 16#F#;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDTR_Register use record
TMRD at 0 range 0 .. 3;
TXSR at 0 range 4 .. 7;
TRAS at 0 range 8 .. 11;
TRC at 0 range 12 .. 15;
TWR at 0 range 16 .. 19;
TRP at 0 range 20 .. 23;
TRCD at 0 range 24 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
subtype SDCMR_MODE_Field is HAL.UInt3;
subtype SDCMR_NRFS_Field is HAL.UInt4;
subtype SDCMR_MRD_Field is HAL.UInt13;
-- SDRAM Command Mode register
type SDCMR_Register is record
-- Write-only. Command mode
MODE : SDCMR_MODE_Field := 16#0#;
-- Write-only. Command target bank 2
CTB2 : Boolean := False;
-- Write-only. Command target bank 1
CTB1 : Boolean := False;
-- Number of Auto-refresh
NRFS : SDCMR_NRFS_Field := 16#0#;
-- Mode Register definition
MRD : SDCMR_MRD_Field := 16#0#;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDCMR_Register use record
MODE at 0 range 0 .. 2;
CTB2 at 0 range 3 .. 3;
CTB1 at 0 range 4 .. 4;
NRFS at 0 range 5 .. 8;
MRD at 0 range 9 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
subtype SDRTR_COUNT_Field is HAL.UInt13;
-- SDRAM Refresh Timer register
type SDRTR_Register is record
-- Write-only. Clear Refresh error flag
CRE : Boolean := False;
-- Refresh Timer Count
COUNT : SDRTR_COUNT_Field := 16#0#;
-- RES Interrupt Enable
REIE : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDRTR_Register use record
CRE at 0 range 0 .. 0;
COUNT at 0 range 1 .. 13;
REIE at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-- SDSR_MODES array element
subtype SDSR_MODES_Element is HAL.UInt2;
-- SDSR_MODES array
type SDSR_MODES_Field_Array is array (1 .. 2) of SDSR_MODES_Element
with Component_Size => 2, Size => 4;
-- Type definition for SDSR_MODES
type SDSR_MODES_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MODES as a value
Val : HAL.UInt4;
when True =>
-- MODES as an array
Arr : SDSR_MODES_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SDSR_MODES_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SDRAM Status register
type SDSR_Register is record
-- Read-only. Refresh error flag
RE : Boolean;
-- Read-only. Status Mode for Bank 1
MODES : SDSR_MODES_Field;
-- Read-only. Busy status
BUSY : Boolean;
-- unspecified
Reserved_6_31 : HAL.UInt26;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDSR_Register use record
RE at 0 range 0 .. 0;
MODES at 0 range 1 .. 4;
BUSY at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Flexible memory controller
type FMC_Peripheral is record
-- SRAM/NOR-Flash chip-select control register 1
BCR1 : aliased BCR1_Register;
-- SRAM/NOR-Flash chip-select timing register 1
BTR1 : aliased BTR_Register;
-- SRAM/NOR-Flash chip-select control register 2
BCR2 : aliased BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 2
BTR2 : aliased BTR_Register;
-- SRAM/NOR-Flash chip-select control register 3
BCR3 : aliased BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 3
BTR3 : aliased BTR_Register;
-- SRAM/NOR-Flash chip-select control register 4
BCR4 : aliased BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 4
BTR4 : aliased BTR_Register;
-- PC Card/NAND Flash control register 2
PCR2 : aliased PCR_Register;
-- FIFO status and interrupt register 2
SR2 : aliased SR_Register;
-- Common memory space timing register 2
PMEM2 : aliased PMEM_Register;
-- Attribute memory space timing register 2
PATT2 : aliased PATT_Register;
-- ECC result register 2
ECCR2 : aliased HAL.UInt32;
-- PC Card/NAND Flash control register 3
PCR3 : aliased PCR_Register;
-- FIFO status and interrupt register 3
SR3 : aliased SR_Register;
-- Common memory space timing register 3
PMEM3 : aliased PMEM_Register;
-- Attribute memory space timing register 3
PATT3 : aliased PATT_Register;
-- ECC result register 3
ECCR3 : aliased HAL.UInt32;
-- PC Card/NAND Flash control register 4
PCR4 : aliased PCR_Register;
-- FIFO status and interrupt register 4
SR4 : aliased SR_Register;
-- Common memory space timing register 4
PMEM4 : aliased PMEM_Register;
-- Attribute memory space timing register 4
PATT4 : aliased PATT_Register;
-- I/O space timing register 4
PIO4 : aliased PIO4_Register;
-- SRAM/NOR-Flash write timing registers 1
BWTR1 : aliased BWTR_Register;
-- SRAM/NOR-Flash write timing registers 2
BWTR2 : aliased BWTR_Register;
-- SRAM/NOR-Flash write timing registers 3
BWTR3 : aliased BWTR_Register;
-- SRAM/NOR-Flash write timing registers 4
BWTR4 : aliased BWTR_Register;
-- SDRAM Control Register 1
SDCR1 : aliased SDCR_Register;
-- SDRAM Control Register 2
SDCR2 : aliased SDCR_Register;
-- SDRAM Timing register 1
SDTR1 : aliased SDTR_Register;
-- SDRAM Timing register 2
SDTR2 : aliased SDTR_Register;
-- SDRAM Command Mode register
SDCMR : aliased SDCMR_Register;
-- SDRAM Refresh Timer register
SDRTR : aliased SDRTR_Register;
-- SDRAM Status register
SDSR : aliased SDSR_Register;
end record
with Volatile;
for FMC_Peripheral use record
BCR1 at 16#0# range 0 .. 31;
BTR1 at 16#4# range 0 .. 31;
BCR2 at 16#8# range 0 .. 31;
BTR2 at 16#C# range 0 .. 31;
BCR3 at 16#10# range 0 .. 31;
BTR3 at 16#14# range 0 .. 31;
BCR4 at 16#18# range 0 .. 31;
BTR4 at 16#1C# range 0 .. 31;
PCR2 at 16#60# range 0 .. 31;
SR2 at 16#64# range 0 .. 31;
PMEM2 at 16#68# range 0 .. 31;
PATT2 at 16#6C# range 0 .. 31;
ECCR2 at 16#74# range 0 .. 31;
PCR3 at 16#80# range 0 .. 31;
SR3 at 16#84# range 0 .. 31;
PMEM3 at 16#88# range 0 .. 31;
PATT3 at 16#8C# range 0 .. 31;
ECCR3 at 16#94# range 0 .. 31;
PCR4 at 16#A0# range 0 .. 31;
SR4 at 16#A4# range 0 .. 31;
PMEM4 at 16#A8# range 0 .. 31;
PATT4 at 16#AC# range 0 .. 31;
PIO4 at 16#B0# range 0 .. 31;
BWTR1 at 16#104# range 0 .. 31;
BWTR2 at 16#10C# range 0 .. 31;
BWTR3 at 16#114# range 0 .. 31;
BWTR4 at 16#11C# range 0 .. 31;
SDCR1 at 16#140# range 0 .. 31;
SDCR2 at 16#144# range 0 .. 31;
SDTR1 at 16#148# range 0 .. 31;
SDTR2 at 16#14C# range 0 .. 31;
SDCMR at 16#150# range 0 .. 31;
SDRTR at 16#154# range 0 .. 31;
SDSR at 16#158# range 0 .. 31;
end record;
-- Flexible memory controller
FMC_Periph : aliased FMC_Peripheral
with Import, Address => System'To_Address (16#A0000000#);
end STM32_SVD.FSMC;
|
charlie5/lace | Ada | 3,027 | adb | with
openGL.Light,
openGL.Visual,
openGL.Model.Sphere.lit_colored_textured,
openGL.Model.Sphere.lit_colored,
openGL.Palette,
openGL.Demo;
procedure launch_render_Lighting
--
-- Exercise the rendering of lit models.
--
is
use openGL,
openGL.Model,
openGL.Math,
openGL.linear_Algebra_3d;
the_Texture : constant asset_Name := to_Asset ("assets/opengl/texture/Face1.bmp");
begin
Demo.print_Usage ("To see the light move, disable 'Sync to VBlank'.");
Demo.define ("openGL 'render Lighting' Demo");
Demo.Camera.Position_is ([0.0, 0.0, 10.0],
y_Rotation_from (to_Radians (0.0)));
declare
use openGL.Palette;
-- The Models.
--
the_Ball_1_Model : constant Model.Sphere.lit_colored_textured.view
:= openGL.Model.Sphere.lit_colored_textured.new_Sphere (Radius => 1.0,
Image => the_Texture);
the_Ball_2_Model : constant Model.Sphere.lit_colored.view
:= openGL.Model.Sphere.lit_colored.new_Sphere (Radius => 1.0,
Color => (light_Apricot, Opaque));
-- The Visuals.
--
use openGL.Visual.Forge;
the_Visuals : constant openGL.Visual.views := [1 => new_Visual (the_Ball_1_Model.all'Access),
2 => new_Visual (the_Ball_2_Model.all'Access)];
the_Light : openGL.Light.item := Demo.Renderer.new_Light;
-- Light movement.
--
initial_Site : constant openGL.Vector_3 := [-10_000.0, 0.0, 10_000.0];
site_Delta : openGL.Vector_3 := [ 1.0, 0.0, 0.0];
begin
the_Visuals (1).Site_is ([0.0, 1.0, 0.0]);
the_Visuals (2).Site_is ([0.0, -1.0, 0.0]);
-- Set the lights initial position to far behind and far to the left.
--
the_Light.Site_is (initial_Site);
Demo.Renderer.set (the_Light);
-- Main loop.
--
while not Demo.Done
loop
-- Handle user commands.
--
Demo.Dolly.evolve;
Demo.Done := Demo.Dolly.quit_Requested;
-- Move the light.
--
if the_Light.Site (1) > 10_000.0
then
site_Delta (1) := -1.0;
the_Light.Color_is (Palette.dark_Green);
elsif the_Light.Site (1) < -10_000.0
then
site_Delta (1) := 1.0;
the_Light.Color_is (openGL.Palette.dark_Red);
end if;
the_Light.Site_is (the_Light.Site + site_Delta);
Demo.Renderer.set (the_Light);
-- Render the sprites.
--
Demo.Camera.render (the_Visuals);
while not Demo.Camera.cull_Completed
loop
delay Duration'Small;
end loop;
Demo.Renderer.render;
Demo.FPS_Counter.increment; -- Frames per second display.
end loop;
end;
Demo.destroy;
end launch_render_Lighting;
|
kisom/rover-mk1 | Ada | 576 | ads | with AVR; use AVR;
with AVR.MCU;
with Interfaces;
package Hardware.Beacon is
-- Tick_Size indicates how many ticks in a 100ms beacon cycle
-- there are.
procedure Init (Tick_Size : in Interfaces.Unsigned_8);
procedure Trigger;
private
LED1_Bit : Bit_Number := 4;
LED2_Bit : Bit_Number := 5;
LED1 : Boolean renames MCU.PORTH_Bits (LED1_Bit);
LED2 : Boolean renames MCU.PORTH_Bits (LED2_Bit);
Tick : Interfaces.Unsigned_8;
Counter : Interfaces.Unsigned_8;
Resolution : Interfaces.Unsigned_8;
end Hardware.Beacon;
|
reznikmm/matreshka | Ada | 4,041 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with ODF.DOM.Draw_Text_Style_Name_Attributes;
package Matreshka.ODF_Draw.Text_Style_Name_Attributes is
type Draw_Text_Style_Name_Attribute_Node is
new Matreshka.ODF_Draw.Abstract_Draw_Attribute_Node
and ODF.DOM.Draw_Text_Style_Name_Attributes.ODF_Draw_Text_Style_Name_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Draw_Text_Style_Name_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Draw_Text_Style_Name_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Draw.Text_Style_Name_Attributes;
|
docandrew/troodon | Ada | 695 | ads | with xcb; use xcb;
package Taskbar is
---------------------------------------------------------------------------
-- start
-- Initialize and start the Taskbar. This component runs as a separate Ada
-- task with it's own connection to the X Server.
---------------------------------------------------------------------------
procedure start;
---------------------------------------------------------------------------
-- stop
-- Shutdown the taskbar.
---------------------------------------------------------------------------
procedure stop (c : access xcb_connection_t);
task Taskbar is
entry StartTask;
end Taskbar;
end Taskbar; |
zhmu/ananas | Ada | 6,532 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- System.Atomic_Operations.Modular_Arithmetic --
-- --
-- B o d y --
-- --
-- Copyright (C) 2019-2022, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Atomic_Primitives; use System.Atomic_Primitives;
with System.Atomic_Operations.Exchange;
with Interfaces.C; use Interfaces;
package body System.Atomic_Operations.Modular_Arithmetic is
package Exchange is new System.Atomic_Operations.Exchange (Atomic_Type);
----------------
-- Atomic_Add --
----------------
procedure Atomic_Add
(Item : aliased in out Atomic_Type;
Value : Atomic_Type)
is
Ignore : constant Atomic_Type := Atomic_Fetch_And_Add (Item, Value);
begin
null;
end Atomic_Add;
---------------------
-- Atomic_Subtract --
---------------------
procedure Atomic_Subtract
(Item : aliased in out Atomic_Type;
Value : Atomic_Type)
is
Ignore : constant Atomic_Type := Atomic_Fetch_And_Subtract (Item, Value);
begin
null;
end Atomic_Subtract;
--------------------------
-- Atomic_Fetch_And_Add --
--------------------------
function Atomic_Fetch_And_Add
(Item : aliased in out Atomic_Type;
Value : Atomic_Type) return Atomic_Type
is
pragma Warnings (Off);
function Atomic_Fetch_Add
(Ptr : System.Address; Val : Atomic_Type; Model : Mem_Model := Seq_Cst)
return Atomic_Type;
pragma Import (Intrinsic, Atomic_Fetch_Add, "__atomic_fetch_add");
pragma Warnings (On);
begin
-- Use the direct intrinsics when possible, and fallback to
-- compare-and-exchange otherwise.
if Atomic_Type'Base'Last = Atomic_Type'Last
and then Atomic_Type'First = 0
and then Atomic_Type'Last = 2**Atomic_Type'Object_Size - 1
then
if Atomic_Type'Object_Size in 8 | 16 | 32 | 64 then
return Atomic_Fetch_Add (Item'Address, Value);
else
raise Program_Error;
end if;
else
declare
Old_Value : aliased Atomic_Type := Item;
New_Value : Atomic_Type := Old_Value + Value;
begin
-- Keep iterating until the exchange succeeds
while not Exchange.Atomic_Compare_And_Exchange
(Item, Old_Value, New_Value)
loop
New_Value := Old_Value + Value;
end loop;
return Old_Value;
end;
end if;
end Atomic_Fetch_And_Add;
-------------------------------
-- Atomic_Fetch_And_Subtract --
-------------------------------
function Atomic_Fetch_And_Subtract
(Item : aliased in out Atomic_Type;
Value : Atomic_Type) return Atomic_Type
is
pragma Warnings (Off);
function Atomic_Fetch_Sub
(Ptr : System.Address; Val : Atomic_Type; Model : Mem_Model := Seq_Cst)
return Atomic_Type;
pragma Import (Intrinsic, Atomic_Fetch_Sub, "__atomic_fetch_sub");
pragma Warnings (On);
begin
-- Use the direct intrinsics when possible, and fallback to
-- compare-and-exchange otherwise.
if Atomic_Type'Base'Last = Atomic_Type'Last
and then Atomic_Type'First = 0
and then Atomic_Type'Last = 2**Atomic_Type'Object_Size - 1
then
if Atomic_Type'Object_Size in 8 | 16 | 32 | 64 then
return Atomic_Fetch_Sub (Item'Address, Value);
else
raise Program_Error;
end if;
else
declare
Old_Value : aliased Atomic_Type := Item;
New_Value : Atomic_Type := Old_Value - Value;
begin
-- Keep iterating until the exchange succeeds
while not Exchange.Atomic_Compare_And_Exchange
(Item, Old_Value, New_Value)
loop
New_Value := Old_Value - Value;
end loop;
return Old_Value;
end;
end if;
end Atomic_Fetch_And_Subtract;
------------------
-- Is_Lock_Free --
------------------
function Is_Lock_Free (Item : aliased Atomic_Type) return Boolean is
pragma Unreferenced (Item);
use type Interfaces.C.size_t;
begin
return Atomic_Always_Lock_Free (Atomic_Type'Object_Size / 8);
end Is_Lock_Free;
end System.Atomic_Operations.Modular_Arithmetic;
|
fnarenji/BoiteMaker | Ada | 142 | adb | with ada.text_io;
use ada.text_io;
package body help is
procedure show_help is
begin
put_line(help_text);
end;
end help;
|
OneWingedShark/Byron | Ada | 456 | ads | Pragma Ada_2012;
Pragma Assertion_Policy( Check );
With
--Byron.Internals.Types,
Byron.Generics.Pass,
Byron.IRs.DIANA_2020.Token_Translator
Lexington.Token_Vector_Pkg,
Readington;
-- use all type
-- Byron.Internals.Types.Stream_Class;
Function Byron.Parser is new Byron.Generics.Pass(
Input_Type => Lexington.Token_Vector_Pkg.Vector,
Output_Type => Byron.IRs.DIANA_2020.Instance,
Translate => Parsington
);
|
faelys/natools | Ada | 2,419 | ads | ------------------------------------------------------------------------------
-- Copyright (c) 2014, Natacha Porté --
-- --
-- Permission to use, copy, modify, and distribute this software for any --
-- purpose with or without fee is hereby granted, provided that the above --
-- copyright notice and this permission notice appear in all copies. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --
-- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF --
-- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR --
-- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES --
-- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN --
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Natools.S_Expressions.Atom_Buffers.Tests provides a test suite for --
-- atom buffers. --
------------------------------------------------------------------------------
with Natools.Tests;
package Natools.S_Expressions.Atom_Buffers.Tests is
pragma Preelaborate (Tests);
package NT renames Natools.Tests;
procedure All_Tests (Report : in out NT.Reporter'Class);
procedure Test_Block_Append (Report : in out NT.Reporter'Class);
procedure Test_Empty_Append (Report : in out NT.Reporter'Class);
procedure Test_Octet_Append (Report : in out NT.Reporter'Class);
procedure Test_Invert (Report : in out NT.Reporter'Class);
procedure Test_Preallocate (Report : in out NT.Reporter'Class);
procedure Test_Query (Report : in out NT.Reporter'Class);
procedure Test_Query_Null (Report : in out NT.Reporter'Class);
procedure Test_Reset (Report : in out NT.Reporter'Class);
procedure Test_Reverse_Append (Report : in out NT.Reporter'Class);
procedure Test_Stream_Interface (Report : in out NT.Reporter'Class);
end Natools.S_Expressions.Atom_Buffers.Tests;
|
reznikmm/matreshka | Ada | 5,198 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Generic_Collections;
package AMF.UML.Association_Classes.Collections is
pragma Preelaborate;
package UML_Association_Class_Collections is
new AMF.Generic_Collections
(UML_Association_Class,
UML_Association_Class_Access);
type Set_Of_UML_Association_Class is
new UML_Association_Class_Collections.Set with null record;
Empty_Set_Of_UML_Association_Class : constant Set_Of_UML_Association_Class;
type Ordered_Set_Of_UML_Association_Class is
new UML_Association_Class_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UML_Association_Class : constant Ordered_Set_Of_UML_Association_Class;
type Bag_Of_UML_Association_Class is
new UML_Association_Class_Collections.Bag with null record;
Empty_Bag_Of_UML_Association_Class : constant Bag_Of_UML_Association_Class;
type Sequence_Of_UML_Association_Class is
new UML_Association_Class_Collections.Sequence with null record;
Empty_Sequence_Of_UML_Association_Class : constant Sequence_Of_UML_Association_Class;
private
Empty_Set_Of_UML_Association_Class : constant Set_Of_UML_Association_Class
:= (UML_Association_Class_Collections.Set with null record);
Empty_Ordered_Set_Of_UML_Association_Class : constant Ordered_Set_Of_UML_Association_Class
:= (UML_Association_Class_Collections.Ordered_Set with null record);
Empty_Bag_Of_UML_Association_Class : constant Bag_Of_UML_Association_Class
:= (UML_Association_Class_Collections.Bag with null record);
Empty_Sequence_Of_UML_Association_Class : constant Sequence_Of_UML_Association_Class
:= (UML_Association_Class_Collections.Sequence with null record);
end AMF.UML.Association_Classes.Collections;
|
BrickBot/Bound-T-H8-300 | Ada | 2,643 | ads | -- Options.Files (decl)
--
-- Files (file-names) as options.
--
-- A component of the Bound-T Worst-Case Execution Time Tool.
--
-------------------------------------------------------------------------------
-- Copyright (c) 1999 .. 2015 Tidorum Ltd
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- 1. Redistributions of source code must retain the above copyright notice, this
-- list of conditions and the following disclaimer.
-- 2. Redistributions in binary form must reproduce the above copyright notice,
-- this list of conditions and the following disclaimer in the documentation
-- and/or other materials provided with the distribution.
--
-- This software is provided by the copyright holders and contributors "as is" and
-- any express or implied warranties, including, but not limited to, the implied
-- warranties of merchantability and fitness for a particular purpose are
-- disclaimed. In no event shall the copyright owner or contributors be liable for
-- any direct, indirect, incidental, special, exemplary, or consequential damages
-- (including, but not limited to, procurement of substitute goods or services;
-- loss of use, data, or profits; or business interruption) however caused and
-- on any theory of liability, whether in contract, strict liability, or tort
-- (including negligence or otherwise) arising in any way out of the use of this
-- software, even if advised of the possibility of such damage.
--
-- Other modules (files) of this software composition should contain their
-- own copyright statements, which may have different copyright and usage
-- conditions. The above conditions apply to this file.
-------------------------------------------------------------------------------
--
-- $Revision: 1.3 $
-- $Date: 2015/10/24 19:36:50 $
--
-- $Log: options-files.ads,v $
-- Revision 1.3 2015/10/24 19:36:50 niklas
-- Moved to free licence.
--
-- Revision 1.2 2012-02-05 19:33:14 niklas
-- Added Set function. Default can be non-null.
--
-- Revision 1.1 2011-09-06 17:41:11 niklas
-- First version.
--
with Options.Strings;
package Options.Files is
type Option_T is new Options.Strings.Option_T with null record;
--
-- An option with a file-name as its value.
overriding
function Type_And_Default (Option : access Option_T)
return String;
overriding
function Set (Value : String) return Option_T;
--
-- Constructs an option that is Set to the given Value,
-- which is also the Default value.
end Options.Files;
|
reznikmm/matreshka | Ada | 4,687 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Documents;
with Matreshka.ODF_String_Constants;
with ODF.DOM.Iterators;
with ODF.DOM.Visitors;
package body Matreshka.ODF_Text.Separation_Character_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Text_Separation_Character_Attribute_Node is
begin
return Self : Text_Separation_Character_Attribute_Node do
Matreshka.ODF_Text.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Text_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Text_Separation_Character_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Separation_Character_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Text_URI,
Matreshka.ODF_String_Constants.Separation_Character_Attribute,
Text_Separation_Character_Attribute_Node'Tag);
end Matreshka.ODF_Text.Separation_Character_Attributes;
|
FROL256/ada-ray-tracer | Ada | 6,664 | ads | with Interfaces;
with Ada.Numerics.Float_Random;
with Vector_Math;
with Ada.Unchecked_Deallocation;
with Ada.Text_IO;
with Lights;
use Interfaces;
use Vector_Math;
use Ada.Text_IO;
use Lights;
package Materials is
-----------------------------
---- Moderm Material API ----
-----------------------------
type MatSample is record -- sample materials with Monte-Carlo
color : float3 := (0.0, 0.0, 0.0);
direction : float3 := (0.0, 0.0, 0.0);
pdf : float := 1.0;
pureSpecular : boolean := false;
end record;
StartSample : constant MatSample := ((0.0, 0.0, 0.0), (0.0, 0.0, 0.0), 1.0, true); -- for rays starting their path from screen of other places
----------------------------
---- Base Material Type ----
----------------------------
type Material is abstract tagged null record;
type MaterialRef is access Material'Class;
function IsLight(mat : Material) return Boolean is abstract; -- indicate the materias is light
function Emittance(mat : Material) return float3 is abstract; -- get light intensity
function GetLightRef(mat : Material) return LightRef is abstract; -- if material is light, return associated light reference, else return null
function SampleAndEvalBxDF(mat : Material; gen : RandRef; ray_dir, normal : float3; tx,ty : float) return MatSample is abstract; -- simultaniously create brdf/btdf sample and eval brdf/btdf value
function EvalBxDF(mat : Material; l,v,n : float3; tx,ty : float) return float3 is abstract; -- eval brdf/btdf value for direct light sampling
function EvalPDF(mat : Material; l,v,n : float3; tx,ty : float) return float is abstract; -- eval pdf for MIS with direct light sampling
-- This will simplify dispatching syntax.
-- We can do this any time we use abstact types because
-- all of their functions are dispatching (virtual)
--
function IsLight(mat : MaterialRef) return Boolean;
function Emittance(mat : MaterialRef) return float3;
function GetLightRef(mat : MaterialRef) return LightRef;
function SampleAndEvalBxDF(mat : MaterialRef; gen : RandRef; ray_dir, normal : float3; tx,ty : float) return MatSample;
function EvalBxDF(mat : MaterialRef; l,v,n : float3; tx,ty : float) return float3;
function EvalPDF(mat : MaterialRef; l,v,n : float3; tx,ty : float) return float;
-----------------------------------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------------------------------
------------------------------------
---- Simple Area Light Material ----
------------------------------------
type MaterialLight is new Material with record
lref : LightRef := null;
end record;
function IsLight(mat : MaterialLight) return Boolean;
function Emittance(mat : MaterialLight) return float3;
function GetLightRef(mat : MaterialLight) return LightRef;
function SampleAndEvalBxDF(mat : MaterialLight; gen : RandRef; ray_dir, normal : float3; tx,ty : float) return MatSample;
function EvalBxDF(mat : MaterialLight; l,v,n : float3; tx,ty : float) return float3;
function EvalPDF(mat : MaterialLight; l,v,n : float3; tx,ty : float) return float;
type MaterialLightRef is access MaterialLight;
--------------------------
---- Diffuse material ----
--------------------------
type MaterialLambert is new Material with record
kd : float3;
end record;
function IsLight(mat : MaterialLambert) return Boolean;
function Emittance(mat : MaterialLambert) return float3;
function GetLightRef(mat : MaterialLambert) return LightRef;
function SampleAndEvalBxDF(mat : MaterialLambert; gen : RandRef; ray_dir, normal : float3; tx,ty : float) return MatSample;
function EvalBxDF(mat : MaterialLambert; l,v,n : float3; tx,ty : float) return float3;
function EvalPDF(mat : MaterialLambert; l,v,n : float3; tx,ty : float) return float;
type MaterialLambertRef is access MaterialLambert;
----------------------
---- Ideal Mirror ----
----------------------
type MaterialMirror is new Material with record
reflection : float3;
end record;
function IsLight(mat : MaterialMirror) return Boolean;
function Emittance(mat : MaterialMirror) return float3;
function GetLightRef(mat : MaterialMirror) return LightRef;
function SampleAndEvalBxDF(mat : MaterialMirror; gen : RandRef; ray_dir, normal : float3; tx,ty : float) return MatSample;
function EvalBxDF(mat : MaterialMirror; l,v,n : float3; tx,ty : float) return float3;
function EvalPDF(mat : MaterialMirror; l,v,n : float3; tx,ty : float) return float;
type MaterialMirrorRef is access MaterialMirror;
-----------------------------
---- Ideal Fresnel Glass ----
-----------------------------
type MaterialFresnelDielectric is new Material with record
reflection : float3;
transparency : float3;
ior : float;
end record;
function IsLight(mat : MaterialFresnelDielectric) return Boolean;
function Emittance(mat : MaterialFresnelDielectric) return float3;
function GetLightRef(mat : MaterialFresnelDielectric) return LightRef;
function SampleAndEvalBxDF(mat : MaterialFresnelDielectric; gen : RandRef; ray_dir, normal : float3; tx,ty : float) return MatSample;
function EvalBxDF(mat : MaterialFresnelDielectric; l,v,n : float3; tx,ty : float) return float3;
function EvalPDF(mat : MaterialFresnelDielectric; l,v,n : float3; tx,ty : float) return float;
procedure ApplyFresnel(mat: in MaterialFresnelDielectric; cosTheta : float; ks : in out float3; kt : in out float3);
type MaterialFresnelDielectricRef is access MaterialFresnelDielectric;
-----------------------------
---- 'Fixed' Phong Model ----
-----------------------------
type MaterialPhong is new Material with record
reflection : float3;
cosPower : float;
end record;
function IsLight(mat : MaterialPhong) return Boolean;
function Emittance(mat : MaterialPhong) return float3;
function GetLightRef(mat : MaterialPhong) return LightRef;
function SampleAndEvalBxDF(mat : MaterialPhong; gen : RandRef; ray_dir, normal : float3; tx,ty : float) return MatSample;
function EvalBxDF(mat : MaterialPhong; l,v,n : float3; tx,ty : float) return float3;
function EvalPDF(mat : MaterialPhong; l,v,n : float3; tx,ty : float) return float;
type MaterialPhongRef is access MaterialPhong;
end Materials;
|
sungyeon/drake | Ada | 1,947 | adb | with Ada.Command_Line;
with Ada.Text_IO.Terminal;
procedure tty_info is
use Ada.Text_IO;
use Ada.Text_IO.Terminal;
package Count_IO is new Integer_IO (Count);
use Count_IO;
Try_Resize, Try_Move, Try_Col, Try_Save : Boolean := False;
State : Terminal.Output_State;
begin
Count_IO.Default_Width := 0;
for I in 1 .. Ada.Command_Line.Argument_Count loop
declare
Arg : constant String := Ada.Command_Line.Argument (I);
begin
if Arg = "--resize" then
Try_Resize := True;
elsif Arg = "--move" then
Try_Move := True;
elsif Arg = "--col" then
Try_Col := True;
elsif Arg = "--save" then
Try_Save := True;
else
Put (Standard_Error, "unknown option: "); Put (Standard_Error, Arg); New_Line (Standard_Error);
end if;
end;
end loop;
if Try_Save then
Save_State (Standard_Output.all, State);
end if;
Put ("isatty(stdin) = "); Put (Boolean'Image (Is_Terminal (Standard_Input.all))); New_Line;
Put ("isatty(stdout) = "); Put (Boolean'Image (Is_Terminal (Standard_Output.all))); New_Line;
Put ("isatty(stderr) = "); Put (Boolean'Image (Is_Terminal (Standard_Error.all))); New_Line;
if Try_Resize then
Set_Size (Standard_Output.all, 75, 25);
end if;
declare
S : Size_Type := Size (Standard_Output.all);
begin
Put ("size = "); Put (S.Line_Length); Put ("x"); Put (S.Page_Length); New_Line;
end;
declare
V : View_Type := View (Standard_Output.all);
begin
Put ("view = ("); Put (V.Left); Put (", "); Put (V.Top);
Put (")-("); Put (V.Right); Put (", "); Put (V.Bottom); Put (")"); New_Line;
end;
if Try_Move then
Set_Position (Standard_Output.all, 20, 10);
end if;
if Try_Col then
Terminal.Set_Col (Standard_Output.all, 30);
end if;
declare
P : Position_Type := Position (Standard_Output.all);
begin
Put ("position = ("); Put (P.Col); Put (", "); Put (P.Line); Put (")"); New_Line;
end;
if Try_Save then
Reset_State (Standard_Output.all, State);
end if;
end tty_info;
|
zrmyers/VulkanAda | Ada | 862,104 | ads | with Interfaces.C; use Interfaces.C;
with stdint_h;
with System;
with crtdefs_h;
with Interfaces.C.Strings;
with Interfaces.C.Extensions;
package Vulkan.Core.vulkan_core_h is
pragma Preelaborate;
-- unsupported macro: VULKAN_CORE_H_ 1
-- unsupported macro: VK_VERSION_1_0 1
-- unsupported macro: VK_DEFINE_HANDLE(object) typedef struct object ##_T* object;
-- unsupported macro: VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object ##_T *object;
-- arg-macro: function VK_MAKE_VERSION ((((uint32_t)(major)) << 22) or (((uint32_t)(minor)) << 12) or ((uint32_t)(patch))
-- return (((uint32_t)(major)) << 22) or (((uint32_t)(minor)) << 12) or ((uint32_t)(patch));
-- unsupported macro: VK_API_VERSION_1_0 VK_MAKE_VERSION(1, 0, 0)
-- unsupported macro: VK_HEADER_VERSION 170
-- unsupported macro: VK_HEADER_VERSION_COMPLETE VK_MAKE_VERSION(1, 2, VK_HEADER_VERSION)
-- arg-macro: function VK_VERSION_MAJOR ((uint32_t)(version) >> 22
-- return (uint32_t)(version) >> 22;
-- arg-macro: function VK_VERSION_MINOR (((uint32_t)(version) >> 12) and 0x3ff
-- return ((uint32_t)(version) >> 12) and 0x3ff;
-- arg-macro: function VK_VERSION_PATCH ((uint32_t)(version) and 0xfff
-- return (uint32_t)(version) and 0xfff;
-- unsupported macro: VK_NULL_HANDLE 0
-- unsupported macro: VK_ATTACHMENT_UNUSED (~0U)
-- unsupported macro: VK_FALSE 0
-- unsupported macro: VK_LOD_CLAMP_NONE 1000.0f
-- unsupported macro: VK_QUEUE_FAMILY_IGNORED (~0U)
-- unsupported macro: VK_REMAINING_ARRAY_LAYERS (~0U)
-- unsupported macro: VK_REMAINING_MIP_LEVELS (~0U)
-- unsupported macro: VK_SUBPASS_EXTERNAL (~0U)
-- unsupported macro: VK_TRUE 1
-- unsupported macro: VK_WHOLE_SIZE (~0ULL)
-- unsupported macro: VK_MAX_MEMORY_TYPES 32
-- unsupported macro: VK_MAX_MEMORY_HEAPS 16
-- unsupported macro: VK_MAX_PHYSICAL_DEVICE_NAME_SIZE 256
-- unsupported macro: VK_UUID_SIZE 16
-- unsupported macro: VK_MAX_EXTENSION_NAME_SIZE 256
-- unsupported macro: VK_MAX_DESCRIPTION_SIZE 256
-- unsupported macro: VK_VERSION_1_1 1
-- unsupported macro: VK_API_VERSION_1_1 VK_MAKE_VERSION(1, 1, 0)
-- unsupported macro: VK_MAX_DEVICE_GROUP_SIZE 32
-- unsupported macro: VK_LUID_SIZE 8
-- unsupported macro: VK_QUEUE_FAMILY_EXTERNAL (~0U-1)
-- unsupported macro: VK_VERSION_1_2 1
-- unsupported macro: VK_API_VERSION_1_2 VK_MAKE_VERSION(1, 2, 0)
-- unsupported macro: VK_MAX_DRIVER_NAME_SIZE 256
-- unsupported macro: VK_MAX_DRIVER_INFO_SIZE 256
-- unsupported macro: VK_KHR_surface 1
-- unsupported macro: VK_KHR_SURFACE_SPEC_VERSION 25
-- unsupported macro: VK_KHR_SURFACE_EXTENSION_NAME "VK_KHR_surface"
-- unsupported macro: VK_KHR_swapchain 1
-- unsupported macro: VK_KHR_SWAPCHAIN_SPEC_VERSION 70
-- unsupported macro: VK_KHR_SWAPCHAIN_EXTENSION_NAME "VK_KHR_swapchain"
-- unsupported macro: VK_KHR_display 1
-- unsupported macro: VK_KHR_DISPLAY_SPEC_VERSION 23
-- unsupported macro: VK_KHR_DISPLAY_EXTENSION_NAME "VK_KHR_display"
-- unsupported macro: VK_KHR_display_swapchain 1
-- unsupported macro: VK_KHR_DISPLAY_SWAPCHAIN_SPEC_VERSION 10
-- unsupported macro: VK_KHR_DISPLAY_SWAPCHAIN_EXTENSION_NAME "VK_KHR_display_swapchain"
-- unsupported macro: VK_KHR_sampler_mirror_clamp_to_edge 1
-- unsupported macro: VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_SPEC_VERSION 3
-- unsupported macro: VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME "VK_KHR_sampler_mirror_clamp_to_edge"
-- unsupported macro: VK_KHR_multiview 1
-- unsupported macro: VK_KHR_MULTIVIEW_SPEC_VERSION 1
-- unsupported macro: VK_KHR_MULTIVIEW_EXTENSION_NAME "VK_KHR_multiview"
-- unsupported macro: VK_KHR_get_physical_device_properties2 1
-- unsupported macro: VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_SPEC_VERSION 2
-- unsupported macro: VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME "VK_KHR_get_physical_device_properties2"
-- unsupported macro: VK_KHR_device_group 1
-- unsupported macro: VK_KHR_DEVICE_GROUP_SPEC_VERSION 4
-- unsupported macro: VK_KHR_DEVICE_GROUP_EXTENSION_NAME "VK_KHR_device_group"
-- unsupported macro: VK_KHR_shader_draw_parameters 1
-- unsupported macro: VK_KHR_SHADER_DRAW_PARAMETERS_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHADER_DRAW_PARAMETERS_EXTENSION_NAME "VK_KHR_shader_draw_parameters"
-- unsupported macro: VK_KHR_maintenance1 1
-- unsupported macro: VK_KHR_MAINTENANCE1_SPEC_VERSION 2
-- unsupported macro: VK_KHR_MAINTENANCE1_EXTENSION_NAME "VK_KHR_maintenance1"
-- unsupported macro: VK_KHR_device_group_creation 1
-- unsupported macro: VK_KHR_DEVICE_GROUP_CREATION_SPEC_VERSION 1
-- unsupported macro: VK_KHR_DEVICE_GROUP_CREATION_EXTENSION_NAME "VK_KHR_device_group_creation"
-- unsupported macro: VK_MAX_DEVICE_GROUP_SIZE_KHR VK_MAX_DEVICE_GROUP_SIZE
-- unsupported macro: VK_KHR_external_memory_capabilities 1
-- unsupported macro: VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME "VK_KHR_external_memory_capabilities"
-- unsupported macro: VK_LUID_SIZE_KHR VK_LUID_SIZE
-- unsupported macro: VK_KHR_external_memory 1
-- unsupported macro: VK_KHR_EXTERNAL_MEMORY_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME "VK_KHR_external_memory"
-- unsupported macro: VK_QUEUE_FAMILY_EXTERNAL_KHR VK_QUEUE_FAMILY_EXTERNAL
-- unsupported macro: VK_KHR_external_memory_fd 1
-- unsupported macro: VK_KHR_EXTERNAL_MEMORY_FD_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_MEMORY_FD_EXTENSION_NAME "VK_KHR_external_memory_fd"
-- unsupported macro: VK_KHR_external_semaphore_capabilities 1
-- unsupported macro: VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME "VK_KHR_external_semaphore_capabilities"
-- unsupported macro: VK_KHR_external_semaphore 1
-- unsupported macro: VK_KHR_EXTERNAL_SEMAPHORE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME "VK_KHR_external_semaphore"
-- unsupported macro: VK_KHR_external_semaphore_fd 1
-- unsupported macro: VK_KHR_EXTERNAL_SEMAPHORE_FD_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_SEMAPHORE_FD_EXTENSION_NAME "VK_KHR_external_semaphore_fd"
-- unsupported macro: VK_KHR_push_descriptor 1
-- unsupported macro: VK_KHR_PUSH_DESCRIPTOR_SPEC_VERSION 2
-- unsupported macro: VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME "VK_KHR_push_descriptor"
-- unsupported macro: VK_KHR_shader_float16_int8 1
-- unsupported macro: VK_KHR_SHADER_FLOAT16_INT8_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHADER_FLOAT16_INT8_EXTENSION_NAME "VK_KHR_shader_float16_int8"
-- unsupported macro: VK_KHR_16bit_storage 1
-- unsupported macro: VK_KHR_16BIT_STORAGE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_16BIT_STORAGE_EXTENSION_NAME "VK_KHR_16bit_storage"
-- unsupported macro: VK_KHR_incremental_present 1
-- unsupported macro: VK_KHR_INCREMENTAL_PRESENT_SPEC_VERSION 1
-- unsupported macro: VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME "VK_KHR_incremental_present"
-- unsupported macro: VK_KHR_descriptor_update_template 1
-- unsupported macro: VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_EXTENSION_NAME "VK_KHR_descriptor_update_template"
-- unsupported macro: VK_KHR_imageless_framebuffer 1
-- unsupported macro: VK_KHR_IMAGELESS_FRAMEBUFFER_SPEC_VERSION 1
-- unsupported macro: VK_KHR_IMAGELESS_FRAMEBUFFER_EXTENSION_NAME "VK_KHR_imageless_framebuffer"
-- unsupported macro: VK_KHR_create_renderpass2 1
-- unsupported macro: VK_KHR_CREATE_RENDERPASS_2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME "VK_KHR_create_renderpass2"
-- unsupported macro: VK_KHR_shared_presentable_image 1
-- unsupported macro: VK_KHR_SHARED_PRESENTABLE_IMAGE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHARED_PRESENTABLE_IMAGE_EXTENSION_NAME "VK_KHR_shared_presentable_image"
-- unsupported macro: VK_KHR_external_fence_capabilities 1
-- unsupported macro: VK_KHR_EXTERNAL_FENCE_CAPABILITIES_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_FENCE_CAPABILITIES_EXTENSION_NAME "VK_KHR_external_fence_capabilities"
-- unsupported macro: VK_KHR_external_fence 1
-- unsupported macro: VK_KHR_EXTERNAL_FENCE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_FENCE_EXTENSION_NAME "VK_KHR_external_fence"
-- unsupported macro: VK_KHR_external_fence_fd 1
-- unsupported macro: VK_KHR_EXTERNAL_FENCE_FD_SPEC_VERSION 1
-- unsupported macro: VK_KHR_EXTERNAL_FENCE_FD_EXTENSION_NAME "VK_KHR_external_fence_fd"
-- unsupported macro: VK_KHR_performance_query 1
-- unsupported macro: VK_KHR_PERFORMANCE_QUERY_SPEC_VERSION 1
-- unsupported macro: VK_KHR_PERFORMANCE_QUERY_EXTENSION_NAME "VK_KHR_performance_query"
-- unsupported macro: VK_KHR_maintenance2 1
-- unsupported macro: VK_KHR_MAINTENANCE2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_MAINTENANCE2_EXTENSION_NAME "VK_KHR_maintenance2"
-- unsupported macro: VK_KHR_get_surface_capabilities2 1
-- unsupported macro: VK_KHR_GET_SURFACE_CAPABILITIES_2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME "VK_KHR_get_surface_capabilities2"
-- unsupported macro: VK_KHR_variable_pointers 1
-- unsupported macro: VK_KHR_VARIABLE_POINTERS_SPEC_VERSION 1
-- unsupported macro: VK_KHR_VARIABLE_POINTERS_EXTENSION_NAME "VK_KHR_variable_pointers"
-- unsupported macro: VK_KHR_get_display_properties2 1
-- unsupported macro: VK_KHR_GET_DISPLAY_PROPERTIES_2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_GET_DISPLAY_PROPERTIES_2_EXTENSION_NAME "VK_KHR_get_display_properties2"
-- unsupported macro: VK_KHR_dedicated_allocation 1
-- unsupported macro: VK_KHR_DEDICATED_ALLOCATION_SPEC_VERSION 3
-- unsupported macro: VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME "VK_KHR_dedicated_allocation"
-- unsupported macro: VK_KHR_storage_buffer_storage_class 1
-- unsupported macro: VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_SPEC_VERSION 1
-- unsupported macro: VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME "VK_KHR_storage_buffer_storage_class"
-- unsupported macro: VK_KHR_relaxed_block_layout 1
-- unsupported macro: VK_KHR_RELAXED_BLOCK_LAYOUT_SPEC_VERSION 1
-- unsupported macro: VK_KHR_RELAXED_BLOCK_LAYOUT_EXTENSION_NAME "VK_KHR_relaxed_block_layout"
-- unsupported macro: VK_KHR_get_memory_requirements2 1
-- unsupported macro: VK_KHR_GET_MEMORY_REQUIREMENTS_2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME "VK_KHR_get_memory_requirements2"
-- unsupported macro: VK_KHR_image_format_list 1
-- unsupported macro: VK_KHR_IMAGE_FORMAT_LIST_SPEC_VERSION 1
-- unsupported macro: VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME "VK_KHR_image_format_list"
-- unsupported macro: VK_KHR_sampler_ycbcr_conversion 1
-- unsupported macro: VK_KHR_SAMPLER_YCBCR_CONVERSION_SPEC_VERSION 14
-- unsupported macro: VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME "VK_KHR_sampler_ycbcr_conversion"
-- unsupported macro: VK_KHR_bind_memory2 1
-- unsupported macro: VK_KHR_BIND_MEMORY_2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_BIND_MEMORY_2_EXTENSION_NAME "VK_KHR_bind_memory2"
-- unsupported macro: VK_KHR_maintenance3 1
-- unsupported macro: VK_KHR_MAINTENANCE3_SPEC_VERSION 1
-- unsupported macro: VK_KHR_MAINTENANCE3_EXTENSION_NAME "VK_KHR_maintenance3"
-- unsupported macro: VK_KHR_draw_indirect_count 1
-- unsupported macro: VK_KHR_DRAW_INDIRECT_COUNT_SPEC_VERSION 1
-- unsupported macro: VK_KHR_DRAW_INDIRECT_COUNT_EXTENSION_NAME "VK_KHR_draw_indirect_count"
-- unsupported macro: VK_KHR_shader_subgroup_extended_types 1
-- unsupported macro: VK_KHR_SHADER_SUBGROUP_EXTENDED_TYPES_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHADER_SUBGROUP_EXTENDED_TYPES_EXTENSION_NAME "VK_KHR_shader_subgroup_extended_types"
-- unsupported macro: VK_KHR_8bit_storage 1
-- unsupported macro: VK_KHR_8BIT_STORAGE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_8BIT_STORAGE_EXTENSION_NAME "VK_KHR_8bit_storage"
-- unsupported macro: VK_KHR_shader_atomic_int64 1
-- unsupported macro: VK_KHR_SHADER_ATOMIC_INT64_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHADER_ATOMIC_INT64_EXTENSION_NAME "VK_KHR_shader_atomic_int64"
-- unsupported macro: VK_KHR_shader_clock 1
-- unsupported macro: VK_KHR_SHADER_CLOCK_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHADER_CLOCK_EXTENSION_NAME "VK_KHR_shader_clock"
-- unsupported macro: VK_KHR_driver_properties 1
-- unsupported macro: VK_KHR_DRIVER_PROPERTIES_SPEC_VERSION 1
-- unsupported macro: VK_KHR_DRIVER_PROPERTIES_EXTENSION_NAME "VK_KHR_driver_properties"
-- unsupported macro: VK_MAX_DRIVER_NAME_SIZE_KHR VK_MAX_DRIVER_NAME_SIZE
-- unsupported macro: VK_MAX_DRIVER_INFO_SIZE_KHR VK_MAX_DRIVER_INFO_SIZE
-- unsupported macro: VK_KHR_shader_float_controls 1
-- unsupported macro: VK_KHR_SHADER_FLOAT_CONTROLS_SPEC_VERSION 4
-- unsupported macro: VK_KHR_SHADER_FLOAT_CONTROLS_EXTENSION_NAME "VK_KHR_shader_float_controls"
-- unsupported macro: VK_KHR_depth_stencil_resolve 1
-- unsupported macro: VK_KHR_DEPTH_STENCIL_RESOLVE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_DEPTH_STENCIL_RESOLVE_EXTENSION_NAME "VK_KHR_depth_stencil_resolve"
-- unsupported macro: VK_KHR_swapchain_mutable_format 1
-- unsupported macro: VK_KHR_SWAPCHAIN_MUTABLE_FORMAT_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SWAPCHAIN_MUTABLE_FORMAT_EXTENSION_NAME "VK_KHR_swapchain_mutable_format"
-- unsupported macro: VK_KHR_timeline_semaphore 1
-- unsupported macro: VK_KHR_TIMELINE_SEMAPHORE_SPEC_VERSION 2
-- unsupported macro: VK_KHR_TIMELINE_SEMAPHORE_EXTENSION_NAME "VK_KHR_timeline_semaphore"
-- unsupported macro: VK_KHR_vulkan_memory_model 1
-- unsupported macro: VK_KHR_VULKAN_MEMORY_MODEL_SPEC_VERSION 3
-- unsupported macro: VK_KHR_VULKAN_MEMORY_MODEL_EXTENSION_NAME "VK_KHR_vulkan_memory_model"
-- unsupported macro: VK_KHR_shader_terminate_invocation 1
-- unsupported macro: VK_KHR_SHADER_TERMINATE_INVOCATION_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHADER_TERMINATE_INVOCATION_EXTENSION_NAME "VK_KHR_shader_terminate_invocation"
-- unsupported macro: VK_KHR_fragment_shading_rate 1
-- unsupported macro: VK_KHR_FRAGMENT_SHADING_RATE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_FRAGMENT_SHADING_RATE_EXTENSION_NAME "VK_KHR_fragment_shading_rate"
-- unsupported macro: VK_KHR_spirv_1_4 1
-- unsupported macro: VK_KHR_SPIRV_1_4_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SPIRV_1_4_EXTENSION_NAME "VK_KHR_spirv_1_4"
-- unsupported macro: VK_KHR_surface_protected_capabilities 1
-- unsupported macro: VK_KHR_SURFACE_PROTECTED_CAPABILITIES_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SURFACE_PROTECTED_CAPABILITIES_EXTENSION_NAME "VK_KHR_surface_protected_capabilities"
-- unsupported macro: VK_KHR_separate_depth_stencil_layouts 1
-- unsupported macro: VK_KHR_SEPARATE_DEPTH_STENCIL_LAYOUTS_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SEPARATE_DEPTH_STENCIL_LAYOUTS_EXTENSION_NAME "VK_KHR_separate_depth_stencil_layouts"
-- unsupported macro: VK_KHR_uniform_buffer_standard_layout 1
-- unsupported macro: VK_KHR_UNIFORM_BUFFER_STANDARD_LAYOUT_SPEC_VERSION 1
-- unsupported macro: VK_KHR_UNIFORM_BUFFER_STANDARD_LAYOUT_EXTENSION_NAME "VK_KHR_uniform_buffer_standard_layout"
-- unsupported macro: VK_KHR_buffer_device_address 1
-- unsupported macro: VK_KHR_BUFFER_DEVICE_ADDRESS_SPEC_VERSION 1
-- unsupported macro: VK_KHR_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME "VK_KHR_buffer_device_address"
-- unsupported macro: VK_KHR_deferred_host_operations 1
-- unsupported macro: VK_KHR_DEFERRED_HOST_OPERATIONS_SPEC_VERSION 4
-- unsupported macro: VK_KHR_DEFERRED_HOST_OPERATIONS_EXTENSION_NAME "VK_KHR_deferred_host_operations"
-- unsupported macro: VK_KHR_pipeline_executable_properties 1
-- unsupported macro: VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_SPEC_VERSION 1
-- unsupported macro: VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_EXTENSION_NAME "VK_KHR_pipeline_executable_properties"
-- unsupported macro: VK_KHR_pipeline_library 1
-- unsupported macro: VK_KHR_PIPELINE_LIBRARY_SPEC_VERSION 1
-- unsupported macro: VK_KHR_PIPELINE_LIBRARY_EXTENSION_NAME "VK_KHR_pipeline_library"
-- unsupported macro: VK_KHR_shader_non_semantic_info 1
-- unsupported macro: VK_KHR_SHADER_NON_SEMANTIC_INFO_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SHADER_NON_SEMANTIC_INFO_EXTENSION_NAME "VK_KHR_shader_non_semantic_info"
-- unsupported macro: VK_KHR_synchronization2 1
-- unsupported macro: VK_KHR_SYNCHRONIZATION_2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME "VK_KHR_synchronization2"
-- unsupported macro: VK_KHR_zero_initialize_workgroup_memory 1
-- unsupported macro: VK_KHR_ZERO_INITIALIZE_WORKGROUP_MEMORY_SPEC_VERSION 1
-- unsupported macro: VK_KHR_ZERO_INITIALIZE_WORKGROUP_MEMORY_EXTENSION_NAME "VK_KHR_zero_initialize_workgroup_memory"
-- unsupported macro: VK_KHR_workgroup_memory_explicit_layout 1
-- unsupported macro: VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_SPEC_VERSION 1
-- unsupported macro: VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_EXTENSION_NAME "VK_KHR_workgroup_memory_explicit_layout"
-- unsupported macro: VK_KHR_copy_commands2 1
-- unsupported macro: VK_KHR_COPY_COMMANDS_2_SPEC_VERSION 1
-- unsupported macro: VK_KHR_COPY_COMMANDS_2_EXTENSION_NAME "VK_KHR_copy_commands2"
-- unsupported macro: VK_EXT_debug_report 1
-- unsupported macro: VK_EXT_DEBUG_REPORT_SPEC_VERSION 9
-- unsupported macro: VK_EXT_DEBUG_REPORT_EXTENSION_NAME "VK_EXT_debug_report"
-- unsupported macro: VK_NV_glsl_shader 1
-- unsupported macro: VK_NV_GLSL_SHADER_SPEC_VERSION 1
-- unsupported macro: VK_NV_GLSL_SHADER_EXTENSION_NAME "VK_NV_glsl_shader"
-- unsupported macro: VK_EXT_depth_range_unrestricted 1
-- unsupported macro: VK_EXT_DEPTH_RANGE_UNRESTRICTED_SPEC_VERSION 1
-- unsupported macro: VK_EXT_DEPTH_RANGE_UNRESTRICTED_EXTENSION_NAME "VK_EXT_depth_range_unrestricted"
-- unsupported macro: VK_IMG_filter_cubic 1
-- unsupported macro: VK_IMG_FILTER_CUBIC_SPEC_VERSION 1
-- unsupported macro: VK_IMG_FILTER_CUBIC_EXTENSION_NAME "VK_IMG_filter_cubic"
-- unsupported macro: VK_AMD_rasterization_order 1
-- unsupported macro: VK_AMD_RASTERIZATION_ORDER_SPEC_VERSION 1
-- unsupported macro: VK_AMD_RASTERIZATION_ORDER_EXTENSION_NAME "VK_AMD_rasterization_order"
-- unsupported macro: VK_AMD_shader_trinary_minmax 1
-- unsupported macro: VK_AMD_SHADER_TRINARY_MINMAX_SPEC_VERSION 1
-- unsupported macro: VK_AMD_SHADER_TRINARY_MINMAX_EXTENSION_NAME "VK_AMD_shader_trinary_minmax"
-- unsupported macro: VK_AMD_shader_explicit_vertex_parameter 1
-- unsupported macro: VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_SPEC_VERSION 1
-- unsupported macro: VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_EXTENSION_NAME "VK_AMD_shader_explicit_vertex_parameter"
-- unsupported macro: VK_EXT_debug_marker 1
-- unsupported macro: VK_EXT_DEBUG_MARKER_SPEC_VERSION 4
-- unsupported macro: VK_EXT_DEBUG_MARKER_EXTENSION_NAME "VK_EXT_debug_marker"
-- unsupported macro: VK_AMD_gcn_shader 1
-- unsupported macro: VK_AMD_GCN_SHADER_SPEC_VERSION 1
-- unsupported macro: VK_AMD_GCN_SHADER_EXTENSION_NAME "VK_AMD_gcn_shader"
-- unsupported macro: VK_NV_dedicated_allocation 1
-- unsupported macro: VK_NV_DEDICATED_ALLOCATION_SPEC_VERSION 1
-- unsupported macro: VK_NV_DEDICATED_ALLOCATION_EXTENSION_NAME "VK_NV_dedicated_allocation"
-- unsupported macro: VK_EXT_transform_feedback 1
-- unsupported macro: VK_EXT_TRANSFORM_FEEDBACK_SPEC_VERSION 1
-- unsupported macro: VK_EXT_TRANSFORM_FEEDBACK_EXTENSION_NAME "VK_EXT_transform_feedback"
-- unsupported macro: VK_NVX_image_view_handle 1
-- unsupported macro: VK_NVX_IMAGE_VIEW_HANDLE_SPEC_VERSION 2
-- unsupported macro: VK_NVX_IMAGE_VIEW_HANDLE_EXTENSION_NAME "VK_NVX_image_view_handle"
-- unsupported macro: VK_AMD_draw_indirect_count 1
-- unsupported macro: VK_AMD_DRAW_INDIRECT_COUNT_SPEC_VERSION 2
-- unsupported macro: VK_AMD_DRAW_INDIRECT_COUNT_EXTENSION_NAME "VK_AMD_draw_indirect_count"
-- unsupported macro: VK_AMD_negative_viewport_height 1
-- unsupported macro: VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_SPEC_VERSION 1
-- unsupported macro: VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_EXTENSION_NAME "VK_AMD_negative_viewport_height"
-- unsupported macro: VK_AMD_gpu_shader_half_float 1
-- unsupported macro: VK_AMD_GPU_SHADER_HALF_FLOAT_SPEC_VERSION 2
-- unsupported macro: VK_AMD_GPU_SHADER_HALF_FLOAT_EXTENSION_NAME "VK_AMD_gpu_shader_half_float"
-- unsupported macro: VK_AMD_shader_ballot 1
-- unsupported macro: VK_AMD_SHADER_BALLOT_SPEC_VERSION 1
-- unsupported macro: VK_AMD_SHADER_BALLOT_EXTENSION_NAME "VK_AMD_shader_ballot"
-- unsupported macro: VK_AMD_texture_gather_bias_lod 1
-- unsupported macro: VK_AMD_TEXTURE_GATHER_BIAS_LOD_SPEC_VERSION 1
-- unsupported macro: VK_AMD_TEXTURE_GATHER_BIAS_LOD_EXTENSION_NAME "VK_AMD_texture_gather_bias_lod"
-- unsupported macro: VK_AMD_shader_info 1
-- unsupported macro: VK_AMD_SHADER_INFO_SPEC_VERSION 1
-- unsupported macro: VK_AMD_SHADER_INFO_EXTENSION_NAME "VK_AMD_shader_info"
-- unsupported macro: VK_AMD_shader_image_load_store_lod 1
-- unsupported macro: VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_SPEC_VERSION 1
-- unsupported macro: VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_EXTENSION_NAME "VK_AMD_shader_image_load_store_lod"
-- unsupported macro: VK_NV_corner_sampled_image 1
-- unsupported macro: VK_NV_CORNER_SAMPLED_IMAGE_SPEC_VERSION 2
-- unsupported macro: VK_NV_CORNER_SAMPLED_IMAGE_EXTENSION_NAME "VK_NV_corner_sampled_image"
-- unsupported macro: VK_IMG_format_pvrtc 1
-- unsupported macro: VK_IMG_FORMAT_PVRTC_SPEC_VERSION 1
-- unsupported macro: VK_IMG_FORMAT_PVRTC_EXTENSION_NAME "VK_IMG_format_pvrtc"
-- unsupported macro: VK_NV_external_memory_capabilities 1
-- unsupported macro: VK_NV_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION 1
-- unsupported macro: VK_NV_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME "VK_NV_external_memory_capabilities"
-- unsupported macro: VK_NV_external_memory 1
-- unsupported macro: VK_NV_EXTERNAL_MEMORY_SPEC_VERSION 1
-- unsupported macro: VK_NV_EXTERNAL_MEMORY_EXTENSION_NAME "VK_NV_external_memory"
-- unsupported macro: VK_EXT_validation_flags 1
-- unsupported macro: VK_EXT_VALIDATION_FLAGS_SPEC_VERSION 2
-- unsupported macro: VK_EXT_VALIDATION_FLAGS_EXTENSION_NAME "VK_EXT_validation_flags"
-- unsupported macro: VK_EXT_shader_subgroup_ballot 1
-- unsupported macro: VK_EXT_SHADER_SUBGROUP_BALLOT_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SHADER_SUBGROUP_BALLOT_EXTENSION_NAME "VK_EXT_shader_subgroup_ballot"
-- unsupported macro: VK_EXT_shader_subgroup_vote 1
-- unsupported macro: VK_EXT_SHADER_SUBGROUP_VOTE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SHADER_SUBGROUP_VOTE_EXTENSION_NAME "VK_EXT_shader_subgroup_vote"
-- unsupported macro: VK_EXT_texture_compression_astc_hdr 1
-- unsupported macro: VK_EXT_TEXTURE_COMPRESSION_ASTC_HDR_SPEC_VERSION 1
-- unsupported macro: VK_EXT_TEXTURE_COMPRESSION_ASTC_HDR_EXTENSION_NAME "VK_EXT_texture_compression_astc_hdr"
-- unsupported macro: VK_EXT_astc_decode_mode 1
-- unsupported macro: VK_EXT_ASTC_DECODE_MODE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_ASTC_DECODE_MODE_EXTENSION_NAME "VK_EXT_astc_decode_mode"
-- unsupported macro: VK_EXT_conditional_rendering 1
-- unsupported macro: VK_EXT_CONDITIONAL_RENDERING_SPEC_VERSION 2
-- unsupported macro: VK_EXT_CONDITIONAL_RENDERING_EXTENSION_NAME "VK_EXT_conditional_rendering"
-- unsupported macro: VK_NV_clip_space_w_scaling 1
-- unsupported macro: VK_NV_CLIP_SPACE_W_SCALING_SPEC_VERSION 1
-- unsupported macro: VK_NV_CLIP_SPACE_W_SCALING_EXTENSION_NAME "VK_NV_clip_space_w_scaling"
-- unsupported macro: VK_EXT_direct_mode_display 1
-- unsupported macro: VK_EXT_DIRECT_MODE_DISPLAY_SPEC_VERSION 1
-- unsupported macro: VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME "VK_EXT_direct_mode_display"
-- unsupported macro: VK_EXT_display_surface_counter 1
-- unsupported macro: VK_EXT_DISPLAY_SURFACE_COUNTER_SPEC_VERSION 1
-- unsupported macro: VK_EXT_DISPLAY_SURFACE_COUNTER_EXTENSION_NAME "VK_EXT_display_surface_counter"
-- unsupported macro: VK_EXT_display_control 1
-- unsupported macro: VK_EXT_DISPLAY_CONTROL_SPEC_VERSION 1
-- unsupported macro: VK_EXT_DISPLAY_CONTROL_EXTENSION_NAME "VK_EXT_display_control"
-- unsupported macro: VK_GOOGLE_display_timing 1
-- unsupported macro: VK_GOOGLE_DISPLAY_TIMING_SPEC_VERSION 1
-- unsupported macro: VK_GOOGLE_DISPLAY_TIMING_EXTENSION_NAME "VK_GOOGLE_display_timing"
-- unsupported macro: VK_NV_sample_mask_override_coverage 1
-- unsupported macro: VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_SPEC_VERSION 1
-- unsupported macro: VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_EXTENSION_NAME "VK_NV_sample_mask_override_coverage"
-- unsupported macro: VK_NV_geometry_shader_passthrough 1
-- unsupported macro: VK_NV_GEOMETRY_SHADER_PASSTHROUGH_SPEC_VERSION 1
-- unsupported macro: VK_NV_GEOMETRY_SHADER_PASSTHROUGH_EXTENSION_NAME "VK_NV_geometry_shader_passthrough"
-- unsupported macro: VK_NV_viewport_array2 1
-- unsupported macro: VK_NV_VIEWPORT_ARRAY2_SPEC_VERSION 1
-- unsupported macro: VK_NV_VIEWPORT_ARRAY2_EXTENSION_NAME "VK_NV_viewport_array2"
-- unsupported macro: VK_NVX_multiview_per_view_attributes 1
-- unsupported macro: VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_SPEC_VERSION 1
-- unsupported macro: VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_EXTENSION_NAME "VK_NVX_multiview_per_view_attributes"
-- unsupported macro: VK_NV_viewport_swizzle 1
-- unsupported macro: VK_NV_VIEWPORT_SWIZZLE_SPEC_VERSION 1
-- unsupported macro: VK_NV_VIEWPORT_SWIZZLE_EXTENSION_NAME "VK_NV_viewport_swizzle"
-- unsupported macro: VK_EXT_discard_rectangles 1
-- unsupported macro: VK_EXT_DISCARD_RECTANGLES_SPEC_VERSION 1
-- unsupported macro: VK_EXT_DISCARD_RECTANGLES_EXTENSION_NAME "VK_EXT_discard_rectangles"
-- unsupported macro: VK_EXT_conservative_rasterization 1
-- unsupported macro: VK_EXT_CONSERVATIVE_RASTERIZATION_SPEC_VERSION 1
-- unsupported macro: VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME "VK_EXT_conservative_rasterization"
-- unsupported macro: VK_EXT_depth_clip_enable 1
-- unsupported macro: VK_EXT_DEPTH_CLIP_ENABLE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_DEPTH_CLIP_ENABLE_EXTENSION_NAME "VK_EXT_depth_clip_enable"
-- unsupported macro: VK_EXT_swapchain_colorspace 1
-- unsupported macro: VK_EXT_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION 4
-- unsupported macro: VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME "VK_EXT_swapchain_colorspace"
-- unsupported macro: VK_EXT_hdr_metadata 1
-- unsupported macro: VK_EXT_HDR_METADATA_SPEC_VERSION 2
-- unsupported macro: VK_EXT_HDR_METADATA_EXTENSION_NAME "VK_EXT_hdr_metadata"
-- unsupported macro: VK_EXT_external_memory_dma_buf 1
-- unsupported macro: VK_EXT_EXTERNAL_MEMORY_DMA_BUF_SPEC_VERSION 1
-- unsupported macro: VK_EXT_EXTERNAL_MEMORY_DMA_BUF_EXTENSION_NAME "VK_EXT_external_memory_dma_buf"
-- unsupported macro: VK_EXT_queue_family_foreign 1
-- unsupported macro: VK_EXT_QUEUE_FAMILY_FOREIGN_SPEC_VERSION 1
-- unsupported macro: VK_EXT_QUEUE_FAMILY_FOREIGN_EXTENSION_NAME "VK_EXT_queue_family_foreign"
-- unsupported macro: VK_QUEUE_FAMILY_FOREIGN_EXT (~0U-2)
-- unsupported macro: VK_EXT_debug_utils 1
-- unsupported macro: VK_EXT_DEBUG_UTILS_SPEC_VERSION 2
-- unsupported macro: VK_EXT_DEBUG_UTILS_EXTENSION_NAME "VK_EXT_debug_utils"
-- unsupported macro: VK_EXT_sampler_filter_minmax 1
-- unsupported macro: VK_EXT_SAMPLER_FILTER_MINMAX_SPEC_VERSION 2
-- unsupported macro: VK_EXT_SAMPLER_FILTER_MINMAX_EXTENSION_NAME "VK_EXT_sampler_filter_minmax"
-- unsupported macro: VK_AMD_gpu_shader_int16 1
-- unsupported macro: VK_AMD_GPU_SHADER_INT16_SPEC_VERSION 2
-- unsupported macro: VK_AMD_GPU_SHADER_INT16_EXTENSION_NAME "VK_AMD_gpu_shader_int16"
-- unsupported macro: VK_AMD_mixed_attachment_samples 1
-- unsupported macro: VK_AMD_MIXED_ATTACHMENT_SAMPLES_SPEC_VERSION 1
-- unsupported macro: VK_AMD_MIXED_ATTACHMENT_SAMPLES_EXTENSION_NAME "VK_AMD_mixed_attachment_samples"
-- unsupported macro: VK_AMD_shader_fragment_mask 1
-- unsupported macro: VK_AMD_SHADER_FRAGMENT_MASK_SPEC_VERSION 1
-- unsupported macro: VK_AMD_SHADER_FRAGMENT_MASK_EXTENSION_NAME "VK_AMD_shader_fragment_mask"
-- unsupported macro: VK_EXT_inline_uniform_block 1
-- unsupported macro: VK_EXT_INLINE_UNIFORM_BLOCK_SPEC_VERSION 1
-- unsupported macro: VK_EXT_INLINE_UNIFORM_BLOCK_EXTENSION_NAME "VK_EXT_inline_uniform_block"
-- unsupported macro: VK_EXT_shader_stencil_export 1
-- unsupported macro: VK_EXT_SHADER_STENCIL_EXPORT_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SHADER_STENCIL_EXPORT_EXTENSION_NAME "VK_EXT_shader_stencil_export"
-- unsupported macro: VK_EXT_sample_locations 1
-- unsupported macro: VK_EXT_SAMPLE_LOCATIONS_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SAMPLE_LOCATIONS_EXTENSION_NAME "VK_EXT_sample_locations"
-- unsupported macro: VK_EXT_blend_operation_advanced 1
-- unsupported macro: VK_EXT_BLEND_OPERATION_ADVANCED_SPEC_VERSION 2
-- unsupported macro: VK_EXT_BLEND_OPERATION_ADVANCED_EXTENSION_NAME "VK_EXT_blend_operation_advanced"
-- unsupported macro: VK_NV_fragment_coverage_to_color 1
-- unsupported macro: VK_NV_FRAGMENT_COVERAGE_TO_COLOR_SPEC_VERSION 1
-- unsupported macro: VK_NV_FRAGMENT_COVERAGE_TO_COLOR_EXTENSION_NAME "VK_NV_fragment_coverage_to_color"
-- unsupported macro: VK_NV_framebuffer_mixed_samples 1
-- unsupported macro: VK_NV_FRAMEBUFFER_MIXED_SAMPLES_SPEC_VERSION 1
-- unsupported macro: VK_NV_FRAMEBUFFER_MIXED_SAMPLES_EXTENSION_NAME "VK_NV_framebuffer_mixed_samples"
-- unsupported macro: VK_NV_fill_rectangle 1
-- unsupported macro: VK_NV_FILL_RECTANGLE_SPEC_VERSION 1
-- unsupported macro: VK_NV_FILL_RECTANGLE_EXTENSION_NAME "VK_NV_fill_rectangle"
-- unsupported macro: VK_NV_shader_sm_builtins 1
-- unsupported macro: VK_NV_SHADER_SM_BUILTINS_SPEC_VERSION 1
-- unsupported macro: VK_NV_SHADER_SM_BUILTINS_EXTENSION_NAME "VK_NV_shader_sm_builtins"
-- unsupported macro: VK_EXT_post_depth_coverage 1
-- unsupported macro: VK_EXT_POST_DEPTH_COVERAGE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_POST_DEPTH_COVERAGE_EXTENSION_NAME "VK_EXT_post_depth_coverage"
-- unsupported macro: VK_EXT_image_drm_format_modifier 1
-- unsupported macro: VK_EXT_IMAGE_DRM_FORMAT_MODIFIER_SPEC_VERSION 1
-- unsupported macro: VK_EXT_IMAGE_DRM_FORMAT_MODIFIER_EXTENSION_NAME "VK_EXT_image_drm_format_modifier"
-- unsupported macro: VK_EXT_validation_cache 1
-- unsupported macro: VK_EXT_VALIDATION_CACHE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_VALIDATION_CACHE_EXTENSION_NAME "VK_EXT_validation_cache"
-- unsupported macro: VK_EXT_descriptor_indexing 1
-- unsupported macro: VK_EXT_DESCRIPTOR_INDEXING_SPEC_VERSION 2
-- unsupported macro: VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME "VK_EXT_descriptor_indexing"
-- unsupported macro: VK_EXT_shader_viewport_index_layer 1
-- unsupported macro: VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_EXTENSION_NAME "VK_EXT_shader_viewport_index_layer"
-- unsupported macro: VK_NV_shading_rate_image 1
-- unsupported macro: VK_NV_SHADING_RATE_IMAGE_SPEC_VERSION 3
-- unsupported macro: VK_NV_SHADING_RATE_IMAGE_EXTENSION_NAME "VK_NV_shading_rate_image"
-- unsupported macro: VK_NV_ray_tracing 1
-- unsupported macro: VK_NV_RAY_TRACING_SPEC_VERSION 3
-- unsupported macro: VK_NV_RAY_TRACING_EXTENSION_NAME "VK_NV_ray_tracing"
-- unsupported macro: VK_SHADER_UNUSED_KHR (~0U)
-- unsupported macro: VK_SHADER_UNUSED_NV VK_SHADER_UNUSED_KHR
-- unsupported macro: VK_NV_representative_fragment_test 1
-- unsupported macro: VK_NV_REPRESENTATIVE_FRAGMENT_TEST_SPEC_VERSION 2
-- unsupported macro: VK_NV_REPRESENTATIVE_FRAGMENT_TEST_EXTENSION_NAME "VK_NV_representative_fragment_test"
-- unsupported macro: VK_EXT_filter_cubic 1
-- unsupported macro: VK_EXT_FILTER_CUBIC_SPEC_VERSION 3
-- unsupported macro: VK_EXT_FILTER_CUBIC_EXTENSION_NAME "VK_EXT_filter_cubic"
-- unsupported macro: VK_QCOM_render_pass_shader_resolve 1
-- unsupported macro: VK_QCOM_RENDER_PASS_SHADER_RESOLVE_SPEC_VERSION 4
-- unsupported macro: VK_QCOM_RENDER_PASS_SHADER_RESOLVE_EXTENSION_NAME "VK_QCOM_render_pass_shader_resolve"
-- unsupported macro: VK_EXT_global_priority 1
-- unsupported macro: VK_EXT_GLOBAL_PRIORITY_SPEC_VERSION 2
-- unsupported macro: VK_EXT_GLOBAL_PRIORITY_EXTENSION_NAME "VK_EXT_global_priority"
-- unsupported macro: VK_EXT_external_memory_host 1
-- unsupported macro: VK_EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION 1
-- unsupported macro: VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME "VK_EXT_external_memory_host"
-- unsupported macro: VK_AMD_buffer_marker 1
-- unsupported macro: VK_AMD_BUFFER_MARKER_SPEC_VERSION 1
-- unsupported macro: VK_AMD_BUFFER_MARKER_EXTENSION_NAME "VK_AMD_buffer_marker"
-- unsupported macro: VK_AMD_pipeline_compiler_control 1
-- unsupported macro: VK_AMD_PIPELINE_COMPILER_CONTROL_SPEC_VERSION 1
-- unsupported macro: VK_AMD_PIPELINE_COMPILER_CONTROL_EXTENSION_NAME "VK_AMD_pipeline_compiler_control"
-- unsupported macro: VK_EXT_calibrated_timestamps 1
-- unsupported macro: VK_EXT_CALIBRATED_TIMESTAMPS_SPEC_VERSION 1
-- unsupported macro: VK_EXT_CALIBRATED_TIMESTAMPS_EXTENSION_NAME "VK_EXT_calibrated_timestamps"
-- unsupported macro: VK_AMD_shader_core_properties 1
-- unsupported macro: VK_AMD_SHADER_CORE_PROPERTIES_SPEC_VERSION 2
-- unsupported macro: VK_AMD_SHADER_CORE_PROPERTIES_EXTENSION_NAME "VK_AMD_shader_core_properties"
-- unsupported macro: VK_AMD_memory_overallocation_behavior 1
-- unsupported macro: VK_AMD_MEMORY_OVERALLOCATION_BEHAVIOR_SPEC_VERSION 1
-- unsupported macro: VK_AMD_MEMORY_OVERALLOCATION_BEHAVIOR_EXTENSION_NAME "VK_AMD_memory_overallocation_behavior"
-- unsupported macro: VK_EXT_vertex_attribute_divisor 1
-- unsupported macro: VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_SPEC_VERSION 3
-- unsupported macro: VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_EXTENSION_NAME "VK_EXT_vertex_attribute_divisor"
-- unsupported macro: VK_EXT_pipeline_creation_feedback 1
-- unsupported macro: VK_EXT_PIPELINE_CREATION_FEEDBACK_SPEC_VERSION 1
-- unsupported macro: VK_EXT_PIPELINE_CREATION_FEEDBACK_EXTENSION_NAME "VK_EXT_pipeline_creation_feedback"
-- unsupported macro: VK_NV_shader_subgroup_partitioned 1
-- unsupported macro: VK_NV_SHADER_SUBGROUP_PARTITIONED_SPEC_VERSION 1
-- unsupported macro: VK_NV_SHADER_SUBGROUP_PARTITIONED_EXTENSION_NAME "VK_NV_shader_subgroup_partitioned"
-- unsupported macro: VK_NV_compute_shader_derivatives 1
-- unsupported macro: VK_NV_COMPUTE_SHADER_DERIVATIVES_SPEC_VERSION 1
-- unsupported macro: VK_NV_COMPUTE_SHADER_DERIVATIVES_EXTENSION_NAME "VK_NV_compute_shader_derivatives"
-- unsupported macro: VK_NV_mesh_shader 1
-- unsupported macro: VK_NV_MESH_SHADER_SPEC_VERSION 1
-- unsupported macro: VK_NV_MESH_SHADER_EXTENSION_NAME "VK_NV_mesh_shader"
-- unsupported macro: VK_NV_fragment_shader_barycentric 1
-- unsupported macro: VK_NV_FRAGMENT_SHADER_BARYCENTRIC_SPEC_VERSION 1
-- unsupported macro: VK_NV_FRAGMENT_SHADER_BARYCENTRIC_EXTENSION_NAME "VK_NV_fragment_shader_barycentric"
-- unsupported macro: VK_NV_shader_image_footprint 1
-- unsupported macro: VK_NV_SHADER_IMAGE_FOOTPRINT_SPEC_VERSION 2
-- unsupported macro: VK_NV_SHADER_IMAGE_FOOTPRINT_EXTENSION_NAME "VK_NV_shader_image_footprint"
-- unsupported macro: VK_NV_scissor_exclusive 1
-- unsupported macro: VK_NV_SCISSOR_EXCLUSIVE_SPEC_VERSION 1
-- unsupported macro: VK_NV_SCISSOR_EXCLUSIVE_EXTENSION_NAME "VK_NV_scissor_exclusive"
-- unsupported macro: VK_NV_device_diagnostic_checkpoints 1
-- unsupported macro: VK_NV_DEVICE_DIAGNOSTIC_CHECKPOINTS_SPEC_VERSION 2
-- unsupported macro: VK_NV_DEVICE_DIAGNOSTIC_CHECKPOINTS_EXTENSION_NAME "VK_NV_device_diagnostic_checkpoints"
-- unsupported macro: VK_INTEL_shader_integer_functions2 1
-- unsupported macro: VK_INTEL_SHADER_INTEGER_FUNCTIONS_2_SPEC_VERSION 1
-- unsupported macro: VK_INTEL_SHADER_INTEGER_FUNCTIONS_2_EXTENSION_NAME "VK_INTEL_shader_integer_functions2"
-- unsupported macro: VK_INTEL_performance_query 1
-- unsupported macro: VK_INTEL_PERFORMANCE_QUERY_SPEC_VERSION 2
-- unsupported macro: VK_INTEL_PERFORMANCE_QUERY_EXTENSION_NAME "VK_INTEL_performance_query"
-- unsupported macro: VK_EXT_pci_bus_info 1
-- unsupported macro: VK_EXT_PCI_BUS_INFO_SPEC_VERSION 2
-- unsupported macro: VK_EXT_PCI_BUS_INFO_EXTENSION_NAME "VK_EXT_pci_bus_info"
-- unsupported macro: VK_AMD_display_native_hdr 1
-- unsupported macro: VK_AMD_DISPLAY_NATIVE_HDR_SPEC_VERSION 1
-- unsupported macro: VK_AMD_DISPLAY_NATIVE_HDR_EXTENSION_NAME "VK_AMD_display_native_hdr"
-- unsupported macro: VK_EXT_fragment_density_map 1
-- unsupported macro: VK_EXT_FRAGMENT_DENSITY_MAP_SPEC_VERSION 1
-- unsupported macro: VK_EXT_FRAGMENT_DENSITY_MAP_EXTENSION_NAME "VK_EXT_fragment_density_map"
-- unsupported macro: VK_EXT_scalar_block_layout 1
-- unsupported macro: VK_EXT_SCALAR_BLOCK_LAYOUT_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SCALAR_BLOCK_LAYOUT_EXTENSION_NAME "VK_EXT_scalar_block_layout"
-- unsupported macro: VK_GOOGLE_hlsl_functionality1 1
-- unsupported macro: VK_GOOGLE_HLSL_FUNCTIONALITY1_SPEC_VERSION 1
-- unsupported macro: VK_GOOGLE_HLSL_FUNCTIONALITY1_EXTENSION_NAME "VK_GOOGLE_hlsl_functionality1"
-- unsupported macro: VK_GOOGLE_decorate_string 1
-- unsupported macro: VK_GOOGLE_DECORATE_STRING_SPEC_VERSION 1
-- unsupported macro: VK_GOOGLE_DECORATE_STRING_EXTENSION_NAME "VK_GOOGLE_decorate_string"
-- unsupported macro: VK_EXT_subgroup_size_control 1
-- unsupported macro: VK_EXT_SUBGROUP_SIZE_CONTROL_SPEC_VERSION 2
-- unsupported macro: VK_EXT_SUBGROUP_SIZE_CONTROL_EXTENSION_NAME "VK_EXT_subgroup_size_control"
-- unsupported macro: VK_AMD_shader_core_properties2 1
-- unsupported macro: VK_AMD_SHADER_CORE_PROPERTIES_2_SPEC_VERSION 1
-- unsupported macro: VK_AMD_SHADER_CORE_PROPERTIES_2_EXTENSION_NAME "VK_AMD_shader_core_properties2"
-- unsupported macro: VK_AMD_device_coherent_memory 1
-- unsupported macro: VK_AMD_DEVICE_COHERENT_MEMORY_SPEC_VERSION 1
-- unsupported macro: VK_AMD_DEVICE_COHERENT_MEMORY_EXTENSION_NAME "VK_AMD_device_coherent_memory"
-- unsupported macro: VK_EXT_shader_image_atomic_int64 1
-- unsupported macro: VK_EXT_SHADER_IMAGE_ATOMIC_INT64_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SHADER_IMAGE_ATOMIC_INT64_EXTENSION_NAME "VK_EXT_shader_image_atomic_int64"
-- unsupported macro: VK_EXT_memory_budget 1
-- unsupported macro: VK_EXT_MEMORY_BUDGET_SPEC_VERSION 1
-- unsupported macro: VK_EXT_MEMORY_BUDGET_EXTENSION_NAME "VK_EXT_memory_budget"
-- unsupported macro: VK_EXT_memory_priority 1
-- unsupported macro: VK_EXT_MEMORY_PRIORITY_SPEC_VERSION 1
-- unsupported macro: VK_EXT_MEMORY_PRIORITY_EXTENSION_NAME "VK_EXT_memory_priority"
-- unsupported macro: VK_NV_dedicated_allocation_image_aliasing 1
-- unsupported macro: VK_NV_DEDICATED_ALLOCATION_IMAGE_ALIASING_SPEC_VERSION 1
-- unsupported macro: VK_NV_DEDICATED_ALLOCATION_IMAGE_ALIASING_EXTENSION_NAME "VK_NV_dedicated_allocation_image_aliasing"
-- unsupported macro: VK_EXT_buffer_device_address 1
-- unsupported macro: VK_EXT_BUFFER_DEVICE_ADDRESS_SPEC_VERSION 2
-- unsupported macro: VK_EXT_BUFFER_DEVICE_ADDRESS_EXTENSION_NAME "VK_EXT_buffer_device_address"
-- unsupported macro: VK_EXT_tooling_info 1
-- unsupported macro: VK_EXT_TOOLING_INFO_SPEC_VERSION 1
-- unsupported macro: VK_EXT_TOOLING_INFO_EXTENSION_NAME "VK_EXT_tooling_info"
-- unsupported macro: VK_EXT_separate_stencil_usage 1
-- unsupported macro: VK_EXT_SEPARATE_STENCIL_USAGE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SEPARATE_STENCIL_USAGE_EXTENSION_NAME "VK_EXT_separate_stencil_usage"
-- unsupported macro: VK_EXT_validation_features 1
-- unsupported macro: VK_EXT_VALIDATION_FEATURES_SPEC_VERSION 4
-- unsupported macro: VK_EXT_VALIDATION_FEATURES_EXTENSION_NAME "VK_EXT_validation_features"
-- unsupported macro: VK_NV_cooperative_matrix 1
-- unsupported macro: VK_NV_COOPERATIVE_MATRIX_SPEC_VERSION 1
-- unsupported macro: VK_NV_COOPERATIVE_MATRIX_EXTENSION_NAME "VK_NV_cooperative_matrix"
-- unsupported macro: VK_NV_coverage_reduction_mode 1
-- unsupported macro: VK_NV_COVERAGE_REDUCTION_MODE_SPEC_VERSION 1
-- unsupported macro: VK_NV_COVERAGE_REDUCTION_MODE_EXTENSION_NAME "VK_NV_coverage_reduction_mode"
-- unsupported macro: VK_EXT_fragment_shader_interlock 1
-- unsupported macro: VK_EXT_FRAGMENT_SHADER_INTERLOCK_SPEC_VERSION 1
-- unsupported macro: VK_EXT_FRAGMENT_SHADER_INTERLOCK_EXTENSION_NAME "VK_EXT_fragment_shader_interlock"
-- unsupported macro: VK_EXT_ycbcr_image_arrays 1
-- unsupported macro: VK_EXT_YCBCR_IMAGE_ARRAYS_SPEC_VERSION 1
-- unsupported macro: VK_EXT_YCBCR_IMAGE_ARRAYS_EXTENSION_NAME "VK_EXT_ycbcr_image_arrays"
-- unsupported macro: VK_EXT_headless_surface 1
-- unsupported macro: VK_EXT_HEADLESS_SURFACE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_HEADLESS_SURFACE_EXTENSION_NAME "VK_EXT_headless_surface"
-- unsupported macro: VK_EXT_line_rasterization 1
-- unsupported macro: VK_EXT_LINE_RASTERIZATION_SPEC_VERSION 1
-- unsupported macro: VK_EXT_LINE_RASTERIZATION_EXTENSION_NAME "VK_EXT_line_rasterization"
-- unsupported macro: VK_EXT_shader_atomic_float 1
-- unsupported macro: VK_EXT_SHADER_ATOMIC_FLOAT_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SHADER_ATOMIC_FLOAT_EXTENSION_NAME "VK_EXT_shader_atomic_float"
-- unsupported macro: VK_EXT_host_query_reset 1
-- unsupported macro: VK_EXT_HOST_QUERY_RESET_SPEC_VERSION 1
-- unsupported macro: VK_EXT_HOST_QUERY_RESET_EXTENSION_NAME "VK_EXT_host_query_reset"
-- unsupported macro: VK_EXT_index_type_uint8 1
-- unsupported macro: VK_EXT_INDEX_TYPE_UINT8_SPEC_VERSION 1
-- unsupported macro: VK_EXT_INDEX_TYPE_UINT8_EXTENSION_NAME "VK_EXT_index_type_uint8"
-- unsupported macro: VK_EXT_extended_dynamic_state 1
-- unsupported macro: VK_EXT_EXTENDED_DYNAMIC_STATE_SPEC_VERSION 1
-- unsupported macro: VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME "VK_EXT_extended_dynamic_state"
-- unsupported macro: VK_EXT_shader_demote_to_helper_invocation 1
-- unsupported macro: VK_EXT_SHADER_DEMOTE_TO_HELPER_INVOCATION_SPEC_VERSION 1
-- unsupported macro: VK_EXT_SHADER_DEMOTE_TO_HELPER_INVOCATION_EXTENSION_NAME "VK_EXT_shader_demote_to_helper_invocation"
-- unsupported macro: VK_NV_device_generated_commands 1
-- unsupported macro: VK_NV_DEVICE_GENERATED_COMMANDS_SPEC_VERSION 3
-- unsupported macro: VK_NV_DEVICE_GENERATED_COMMANDS_EXTENSION_NAME "VK_NV_device_generated_commands"
-- unsupported macro: VK_EXT_texel_buffer_alignment 1
-- unsupported macro: VK_EXT_TEXEL_BUFFER_ALIGNMENT_SPEC_VERSION 1
-- unsupported macro: VK_EXT_TEXEL_BUFFER_ALIGNMENT_EXTENSION_NAME "VK_EXT_texel_buffer_alignment"
-- unsupported macro: VK_QCOM_render_pass_transform 1
-- unsupported macro: VK_QCOM_RENDER_PASS_TRANSFORM_SPEC_VERSION 1
-- unsupported macro: VK_QCOM_RENDER_PASS_TRANSFORM_EXTENSION_NAME "VK_QCOM_render_pass_transform"
-- unsupported macro: VK_EXT_device_memory_report 1
-- unsupported macro: VK_EXT_DEVICE_MEMORY_REPORT_SPEC_VERSION 2
-- unsupported macro: VK_EXT_DEVICE_MEMORY_REPORT_EXTENSION_NAME "VK_EXT_device_memory_report"
-- unsupported macro: VK_EXT_robustness2 1
-- unsupported macro: VK_EXT_ROBUSTNESS_2_SPEC_VERSION 1
-- unsupported macro: VK_EXT_ROBUSTNESS_2_EXTENSION_NAME "VK_EXT_robustness2"
-- unsupported macro: VK_EXT_custom_border_color 1
-- unsupported macro: VK_EXT_CUSTOM_BORDER_COLOR_SPEC_VERSION 12
-- unsupported macro: VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME "VK_EXT_custom_border_color"
-- unsupported macro: VK_GOOGLE_user_type 1
-- unsupported macro: VK_GOOGLE_USER_TYPE_SPEC_VERSION 1
-- unsupported macro: VK_GOOGLE_USER_TYPE_EXTENSION_NAME "VK_GOOGLE_user_type"
-- unsupported macro: VK_EXT_private_data 1
-- unsupported macro: VK_EXT_PRIVATE_DATA_SPEC_VERSION 1
-- unsupported macro: VK_EXT_PRIVATE_DATA_EXTENSION_NAME "VK_EXT_private_data"
-- unsupported macro: VK_EXT_pipeline_creation_cache_control 1
-- unsupported macro: VK_EXT_PIPELINE_CREATION_CACHE_CONTROL_SPEC_VERSION 3
-- unsupported macro: VK_EXT_PIPELINE_CREATION_CACHE_CONTROL_EXTENSION_NAME "VK_EXT_pipeline_creation_cache_control"
-- unsupported macro: VK_NV_device_diagnostics_config 1
-- unsupported macro: VK_NV_DEVICE_DIAGNOSTICS_CONFIG_SPEC_VERSION 1
-- unsupported macro: VK_NV_DEVICE_DIAGNOSTICS_CONFIG_EXTENSION_NAME "VK_NV_device_diagnostics_config"
-- unsupported macro: VK_QCOM_render_pass_store_ops 1
-- unsupported macro: VK_QCOM_render_pass_store_ops_SPEC_VERSION 2
-- unsupported macro: VK_QCOM_render_pass_store_ops_EXTENSION_NAME "VK_QCOM_render_pass_store_ops"
-- unsupported macro: VK_NV_fragment_shading_rate_enums 1
-- unsupported macro: VK_NV_FRAGMENT_SHADING_RATE_ENUMS_SPEC_VERSION 1
-- unsupported macro: VK_NV_FRAGMENT_SHADING_RATE_ENUMS_EXTENSION_NAME "VK_NV_fragment_shading_rate_enums"
-- unsupported macro: VK_EXT_fragment_density_map2 1
-- unsupported macro: VK_EXT_FRAGMENT_DENSITY_MAP_2_SPEC_VERSION 1
-- unsupported macro: VK_EXT_FRAGMENT_DENSITY_MAP_2_EXTENSION_NAME "VK_EXT_fragment_density_map2"
-- unsupported macro: VK_QCOM_rotated_copy_commands 1
-- unsupported macro: VK_QCOM_ROTATED_COPY_COMMANDS_SPEC_VERSION 0
-- unsupported macro: VK_QCOM_ROTATED_COPY_COMMANDS_EXTENSION_NAME "VK_QCOM_rotated_copy_commands"
-- unsupported macro: VK_EXT_image_robustness 1
-- unsupported macro: VK_EXT_IMAGE_ROBUSTNESS_SPEC_VERSION 1
-- unsupported macro: VK_EXT_IMAGE_ROBUSTNESS_EXTENSION_NAME "VK_EXT_image_robustness"
-- unsupported macro: VK_EXT_4444_formats 1
-- unsupported macro: VK_EXT_4444_FORMATS_SPEC_VERSION 1
-- unsupported macro: VK_EXT_4444_FORMATS_EXTENSION_NAME "VK_EXT_4444_formats"
-- unsupported macro: VK_NV_acquire_winrt_display 1
-- unsupported macro: VK_NV_ACQUIRE_WINRT_DISPLAY_SPEC_VERSION 1
-- unsupported macro: VK_NV_ACQUIRE_WINRT_DISPLAY_EXTENSION_NAME "VK_NV_acquire_winrt_display"
-- unsupported macro: VK_VALVE_mutable_descriptor_type 1
-- unsupported macro: VK_VALVE_MUTABLE_DESCRIPTOR_TYPE_SPEC_VERSION 1
-- unsupported macro: VK_VALVE_MUTABLE_DESCRIPTOR_TYPE_EXTENSION_NAME "VK_VALVE_mutable_descriptor_type"
-- unsupported macro: VK_KHR_acceleration_structure 1
-- unsupported macro: VK_KHR_ACCELERATION_STRUCTURE_SPEC_VERSION 11
-- unsupported macro: VK_KHR_ACCELERATION_STRUCTURE_EXTENSION_NAME "VK_KHR_acceleration_structure"
-- unsupported macro: VK_KHR_ray_tracing_pipeline 1
-- unsupported macro: VK_KHR_RAY_TRACING_PIPELINE_SPEC_VERSION 1
-- unsupported macro: VK_KHR_RAY_TRACING_PIPELINE_EXTENSION_NAME "VK_KHR_ray_tracing_pipeline"
-- unsupported macro: VK_KHR_ray_query 1
-- unsupported macro: VK_KHR_RAY_QUERY_SPEC_VERSION 1
-- unsupported macro: VK_KHR_RAY_QUERY_EXTENSION_NAME "VK_KHR_ray_query"
--** Copyright 2015-2021 The Khronos Group Inc.
--**
--** SPDX-License-Identifier: Apache-2.0
--
--** This header is generated from the Khronos Vulkan XML API Registry.
--**
--
-- DEPRECATED: This define has been removed. Specific version defines (e.g. VK_API_VERSION_1_0), or the VK_MAKE_VERSION macro, should be used instead.
--#define VK_API_VERSION VK_MAKE_VERSION(1, 0, 0) // Patch version should always be set to 0
-- Vulkan 1.0 version number
-- Version of this file
-- Complete version of this file
subtype VkBool32 is stdint_h.uint32_t; -- vulkan_core.h:57
subtype VkDeviceAddress is stdint_h.uint64_t; -- vulkan_core.h:58
subtype VkDeviceSize is stdint_h.uint64_t; -- vulkan_core.h:59
subtype VkFlags is stdint_h.uint32_t; -- vulkan_core.h:60
subtype VkSampleMask is stdint_h.uint32_t; -- vulkan_core.h:61
type VkBuffer is new System.Address; -- vulkan_core.h:62
-- skipped empty struct VkBuffer_T
type VkImage is new System.Address; -- vulkan_core.h:63
-- skipped empty struct VkImage_T
-- skipped empty struct VkInstance_T
type VkInstance is new System.Address; -- vulkan_core.h:64
type VkPhysicalDevice is new System.Address; -- vulkan_core.h:65
-- skipped empty struct VkPhysicalDevice_T
type VkDevice is new System.Address; -- vulkan_core.h:66
-- skipped empty struct VkDevice_T
type VkQueue is new System.Address; -- vulkan_core.h:67
-- skipped empty struct VkQueue_T
type VkSemaphore is new System.Address; -- vulkan_core.h:68
-- skipped empty struct VkSemaphore_T
-- skipped empty struct VkCommandBuffer_T
type VkCommandBuffer is new System.Address; -- vulkan_core.h:69
type VkFence is new System.Address; -- vulkan_core.h:70
-- skipped empty struct VkFence_T
type VkDeviceMemory is new System.Address; -- vulkan_core.h:71
-- skipped empty struct VkDeviceMemory_T
type VkEvent is new System.Address; -- vulkan_core.h:72
-- skipped empty struct VkEvent_T
type VkQueryPool is new System.Address; -- vulkan_core.h:73
-- skipped empty struct VkQueryPool_T
-- skipped empty struct VkBufferView_T
type VkBufferView is new System.Address; -- vulkan_core.h:74
type VkImageView is new System.Address; -- vulkan_core.h:75
-- skipped empty struct VkImageView_T
type VkShaderModule is new System.Address; -- vulkan_core.h:76
-- skipped empty struct VkShaderModule_T
type VkPipelineCache is new System.Address; -- vulkan_core.h:77
-- skipped empty struct VkPipelineCache_T
type VkPipelineLayout is new System.Address; -- vulkan_core.h:78
-- skipped empty struct VkPipelineLayout_T
-- skipped empty struct VkPipeline_T
type VkPipeline is new System.Address; -- vulkan_core.h:79
type VkRenderPass is new System.Address; -- vulkan_core.h:80
-- skipped empty struct VkRenderPass_T
type VkDescriptorSetLayout is new System.Address; -- vulkan_core.h:81
-- skipped empty struct VkDescriptorSetLayout_T
type VkSampler is new System.Address; -- vulkan_core.h:82
-- skipped empty struct VkSampler_T
type VkDescriptorSet is new System.Address; -- vulkan_core.h:83
-- skipped empty struct VkDescriptorSet_T
-- skipped empty struct VkDescriptorPool_T
type VkDescriptorPool is new System.Address; -- vulkan_core.h:84
type VkFramebuffer is new System.Address; -- vulkan_core.h:85
-- skipped empty struct VkFramebuffer_T
type VkCommandPool is new System.Address; -- vulkan_core.h:86
-- skipped empty struct VkCommandPool_T
subtype VkResult is unsigned;
VK_SUCCESS : constant VkResult := 0;
VK_NOT_READY : constant VkResult := 1;
VK_TIMEOUT : constant VkResult := 2;
VK_EVENT_SET : constant VkResult := 3;
VK_EVENT_RESET : constant VkResult := 4;
VK_INCOMPLETE : constant VkResult := 5;
VK_ERROR_OUT_OF_HOST_MEMORY : constant VkResult := -1;
VK_ERROR_OUT_OF_DEVICE_MEMORY : constant VkResult := -2;
VK_ERROR_INITIALIZATION_FAILED : constant VkResult := -3;
VK_ERROR_DEVICE_LOST : constant VkResult := -4;
VK_ERROR_MEMORY_MAP_FAILED : constant VkResult := -5;
VK_ERROR_LAYER_NOT_PRESENT : constant VkResult := -6;
VK_ERROR_EXTENSION_NOT_PRESENT : constant VkResult := -7;
VK_ERROR_FEATURE_NOT_PRESENT : constant VkResult := -8;
VK_ERROR_INCOMPATIBLE_DRIVER : constant VkResult := -9;
VK_ERROR_TOO_MANY_OBJECTS : constant VkResult := -10;
VK_ERROR_FORMAT_NOT_SUPPORTED : constant VkResult := -11;
VK_ERROR_FRAGMENTED_POOL : constant VkResult := -12;
VK_ERROR_UNKNOWN : constant VkResult := -13;
VK_ERROR_OUT_OF_POOL_MEMORY : constant VkResult := -1000069000;
VK_ERROR_INVALID_EXTERNAL_HANDLE : constant VkResult := -1000072003;
VK_ERROR_FRAGMENTATION : constant VkResult := -1000161000;
VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS : constant VkResult := -1000257000;
VK_ERROR_SURFACE_LOST_KHR : constant VkResult := -1000000000;
VK_ERROR_NATIVE_WINDOW_IN_USE_KHR : constant VkResult := -1000000001;
VK_SUBOPTIMAL_KHR : constant VkResult := 1000001003;
VK_ERROR_OUT_OF_DATE_KHR : constant VkResult := -1000001004;
VK_ERROR_INCOMPATIBLE_DISPLAY_KHR : constant VkResult := -1000003001;
VK_ERROR_VALIDATION_FAILED_EXT : constant VkResult := -1000011001;
VK_ERROR_INVALID_SHADER_NV : constant VkResult := -1000012000;
VK_ERROR_INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT : constant VkResult := -1000158000;
VK_ERROR_NOT_PERMITTED_EXT : constant VkResult := -1000174001;
VK_ERROR_FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT : constant VkResult := -1000255000;
VK_THREAD_IDLE_KHR : constant VkResult := 1000268000;
VK_THREAD_DONE_KHR : constant VkResult := 1000268001;
VK_OPERATION_DEFERRED_KHR : constant VkResult := 1000268002;
VK_OPERATION_NOT_DEFERRED_KHR : constant VkResult := 1000268003;
VK_PIPELINE_COMPILE_REQUIRED_EXT : constant VkResult := 1000297000;
VK_ERROR_OUT_OF_POOL_MEMORY_KHR : constant VkResult := -1000069000;
VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR : constant VkResult := -1000072003;
VK_ERROR_FRAGMENTATION_EXT : constant VkResult := -1000161000;
VK_ERROR_INVALID_DEVICE_ADDRESS_EXT : constant VkResult := -1000257000;
VK_ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS_KHR : constant VkResult := -1000257000;
VK_ERROR_PIPELINE_COMPILE_REQUIRED_EXT : constant VkResult := 1000297000;
VK_RESULT_MAX_ENUM : constant VkResult := 2147483647; -- vulkan_core.h:103
subtype VkStructureType is unsigned;
VK_STRUCTURE_TYPE_APPLICATION_INFO : constant VkStructureType := 0;
VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO : constant VkStructureType := 1;
VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO : constant VkStructureType := 2;
VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO : constant VkStructureType := 3;
VK_STRUCTURE_TYPE_SUBMIT_INFO : constant VkStructureType := 4;
VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO : constant VkStructureType := 5;
VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE : constant VkStructureType := 6;
VK_STRUCTURE_TYPE_BIND_SPARSE_INFO : constant VkStructureType := 7;
VK_STRUCTURE_TYPE_FENCE_CREATE_INFO : constant VkStructureType := 8;
VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO : constant VkStructureType := 9;
VK_STRUCTURE_TYPE_EVENT_CREATE_INFO : constant VkStructureType := 10;
VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO : constant VkStructureType := 11;
VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO : constant VkStructureType := 12;
VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO : constant VkStructureType := 13;
VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO : constant VkStructureType := 14;
VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO : constant VkStructureType := 15;
VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO : constant VkStructureType := 16;
VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO : constant VkStructureType := 17;
VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO : constant VkStructureType := 18;
VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO : constant VkStructureType := 19;
VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO : constant VkStructureType := 20;
VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO : constant VkStructureType := 21;
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO : constant VkStructureType := 22;
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO : constant VkStructureType := 23;
VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO : constant VkStructureType := 24;
VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO : constant VkStructureType := 25;
VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO : constant VkStructureType := 26;
VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO : constant VkStructureType := 27;
VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO : constant VkStructureType := 28;
VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO : constant VkStructureType := 29;
VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO : constant VkStructureType := 30;
VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO : constant VkStructureType := 31;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO : constant VkStructureType := 32;
VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO : constant VkStructureType := 33;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO : constant VkStructureType := 34;
VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET : constant VkStructureType := 35;
VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET : constant VkStructureType := 36;
VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO : constant VkStructureType := 37;
VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO : constant VkStructureType := 38;
VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO : constant VkStructureType := 39;
VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO : constant VkStructureType := 40;
VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO : constant VkStructureType := 41;
VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO : constant VkStructureType := 42;
VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO : constant VkStructureType := 43;
VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER : constant VkStructureType := 44;
VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER : constant VkStructureType := 45;
VK_STRUCTURE_TYPE_MEMORY_BARRIER : constant VkStructureType := 46;
VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO : constant VkStructureType := 47;
VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO : constant VkStructureType := 48;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES : constant VkStructureType := 1000094000;
VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO : constant VkStructureType := 1000157000;
VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO : constant VkStructureType := 1000157001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES : constant VkStructureType := 1000083000;
VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS : constant VkStructureType := 1000127000;
VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO : constant VkStructureType := 1000127001;
VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO : constant VkStructureType := 1000060000;
VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO : constant VkStructureType := 1000060003;
VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO : constant VkStructureType := 1000060004;
VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO : constant VkStructureType := 1000060005;
VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO : constant VkStructureType := 1000060006;
VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO : constant VkStructureType := 1000060013;
VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO : constant VkStructureType := 1000060014;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES : constant VkStructureType := 1000070000;
VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO : constant VkStructureType := 1000070001;
VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2 : constant VkStructureType := 1000146000;
VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2 : constant VkStructureType := 1000146001;
VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2 : constant VkStructureType := 1000146002;
VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2 : constant VkStructureType := 1000146003;
VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2 : constant VkStructureType := 1000146004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2 : constant VkStructureType := 1000059000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2 : constant VkStructureType := 1000059001;
VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2 : constant VkStructureType := 1000059002;
VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2 : constant VkStructureType := 1000059003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2 : constant VkStructureType := 1000059004;
VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2 : constant VkStructureType := 1000059005;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2 : constant VkStructureType := 1000059006;
VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2 : constant VkStructureType := 1000059007;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2 : constant VkStructureType := 1000059008;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES : constant VkStructureType := 1000117000;
VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO : constant VkStructureType := 1000117001;
VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO : constant VkStructureType := 1000117002;
VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO : constant VkStructureType := 1000117003;
VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO : constant VkStructureType := 1000053000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES : constant VkStructureType := 1000053001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES : constant VkStructureType := 1000053002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES : constant VkStructureType := 1000120000;
VK_STRUCTURE_TYPE_PROTECTED_SUBMIT_INFO : constant VkStructureType := 1000145000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES : constant VkStructureType := 1000145001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES : constant VkStructureType := 1000145002;
VK_STRUCTURE_TYPE_DEVICE_QUEUE_INFO_2 : constant VkStructureType := 1000145003;
VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO : constant VkStructureType := 1000156000;
VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO : constant VkStructureType := 1000156001;
VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO : constant VkStructureType := 1000156002;
VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO : constant VkStructureType := 1000156003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES : constant VkStructureType := 1000156004;
VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES : constant VkStructureType := 1000156005;
VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO : constant VkStructureType := 1000085000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO : constant VkStructureType := 1000071000;
VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES : constant VkStructureType := 1000071001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO : constant VkStructureType := 1000071002;
VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES : constant VkStructureType := 1000071003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES : constant VkStructureType := 1000071004;
VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO : constant VkStructureType := 1000072000;
VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO : constant VkStructureType := 1000072001;
VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO : constant VkStructureType := 1000072002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO : constant VkStructureType := 1000112000;
VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES : constant VkStructureType := 1000112001;
VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO : constant VkStructureType := 1000113000;
VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO : constant VkStructureType := 1000077000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO : constant VkStructureType := 1000076000;
VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES : constant VkStructureType := 1000076001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES : constant VkStructureType := 1000168000;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT : constant VkStructureType := 1000168001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETERS_FEATURES : constant VkStructureType := 1000063000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES : constant VkStructureType := 49;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_PROPERTIES : constant VkStructureType := 50;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES : constant VkStructureType := 51;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_PROPERTIES : constant VkStructureType := 52;
VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO : constant VkStructureType := 1000147000;
VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2 : constant VkStructureType := 1000109000;
VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2 : constant VkStructureType := 1000109001;
VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_2 : constant VkStructureType := 1000109002;
VK_STRUCTURE_TYPE_SUBPASS_DEPENDENCY_2 : constant VkStructureType := 1000109003;
VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2 : constant VkStructureType := 1000109004;
VK_STRUCTURE_TYPE_SUBPASS_BEGIN_INFO : constant VkStructureType := 1000109005;
VK_STRUCTURE_TYPE_SUBPASS_END_INFO : constant VkStructureType := 1000109006;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES : constant VkStructureType := 1000177000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES : constant VkStructureType := 1000196000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES : constant VkStructureType := 1000180000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES : constant VkStructureType := 1000082000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES : constant VkStructureType := 1000197000;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO : constant VkStructureType := 1000161000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES : constant VkStructureType := 1000161001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES : constant VkStructureType := 1000161002;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO : constant VkStructureType := 1000161003;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT : constant VkStructureType := 1000161004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES : constant VkStructureType := 1000199000;
VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE : constant VkStructureType := 1000199001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES : constant VkStructureType := 1000221000;
VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO : constant VkStructureType := 1000246000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES : constant VkStructureType := 1000130000;
VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO : constant VkStructureType := 1000130001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES : constant VkStructureType := 1000211000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES : constant VkStructureType := 1000108000;
VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO : constant VkStructureType := 1000108001;
VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENT_IMAGE_INFO : constant VkStructureType := 1000108002;
VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO : constant VkStructureType := 1000108003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES : constant VkStructureType := 1000253000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES : constant VkStructureType := 1000175000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES : constant VkStructureType := 1000241000;
VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_STENCIL_LAYOUT : constant VkStructureType := 1000241001;
VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT : constant VkStructureType := 1000241002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES : constant VkStructureType := 1000261000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES : constant VkStructureType := 1000207000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES : constant VkStructureType := 1000207001;
VK_STRUCTURE_TYPE_SEMAPHORE_TYPE_CREATE_INFO : constant VkStructureType := 1000207002;
VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO : constant VkStructureType := 1000207003;
VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO : constant VkStructureType := 1000207004;
VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO : constant VkStructureType := 1000207005;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES : constant VkStructureType := 1000257000;
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO : constant VkStructureType := 1000244001;
VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO : constant VkStructureType := 1000257002;
VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO : constant VkStructureType := 1000257003;
VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO : constant VkStructureType := 1000257004;
VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR : constant VkStructureType := 1000001000;
VK_STRUCTURE_TYPE_PRESENT_INFO_KHR : constant VkStructureType := 1000001001;
VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_CAPABILITIES_KHR : constant VkStructureType := 1000060007;
VK_STRUCTURE_TYPE_IMAGE_SWAPCHAIN_CREATE_INFO_KHR : constant VkStructureType := 1000060008;
VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_SWAPCHAIN_INFO_KHR : constant VkStructureType := 1000060009;
VK_STRUCTURE_TYPE_ACQUIRE_NEXT_IMAGE_INFO_KHR : constant VkStructureType := 1000060010;
VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_INFO_KHR : constant VkStructureType := 1000060011;
VK_STRUCTURE_TYPE_DEVICE_GROUP_SWAPCHAIN_CREATE_INFO_KHR : constant VkStructureType := 1000060012;
VK_STRUCTURE_TYPE_DISPLAY_MODE_CREATE_INFO_KHR : constant VkStructureType := 1000002000;
VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR : constant VkStructureType := 1000002001;
VK_STRUCTURE_TYPE_DISPLAY_PRESENT_INFO_KHR : constant VkStructureType := 1000003000;
VK_STRUCTURE_TYPE_XLIB_SURFACE_CREATE_INFO_KHR : constant VkStructureType := 1000004000;
VK_STRUCTURE_TYPE_XCB_SURFACE_CREATE_INFO_KHR : constant VkStructureType := 1000005000;
VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR : constant VkStructureType := 1000006000;
VK_STRUCTURE_TYPE_ANDROID_SURFACE_CREATE_INFO_KHR : constant VkStructureType := 1000008000;
VK_STRUCTURE_TYPE_WIN32_SURFACE_CREATE_INFO_KHR : constant VkStructureType := 1000009000;
VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT : constant VkStructureType := 1000011000;
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD : constant VkStructureType := 1000018000;
VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT : constant VkStructureType := 1000022000;
VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT : constant VkStructureType := 1000022001;
VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT : constant VkStructureType := 1000022002;
VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV : constant VkStructureType := 1000026000;
VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV : constant VkStructureType := 1000026001;
VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV : constant VkStructureType := 1000026002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_FEATURES_EXT : constant VkStructureType := 1000028000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT : constant VkStructureType := 1000028001;
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_STREAM_CREATE_INFO_EXT : constant VkStructureType := 1000028002;
VK_STRUCTURE_TYPE_IMAGE_VIEW_HANDLE_INFO_NVX : constant VkStructureType := 1000030000;
VK_STRUCTURE_TYPE_IMAGE_VIEW_ADDRESS_PROPERTIES_NVX : constant VkStructureType := 1000030001;
VK_STRUCTURE_TYPE_TEXTURE_LOD_GATHER_FORMAT_PROPERTIES_AMD : constant VkStructureType := 1000041000;
VK_STRUCTURE_TYPE_STREAM_DESCRIPTOR_SURFACE_CREATE_INFO_GGP : constant VkStructureType := 1000049000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CORNER_SAMPLED_IMAGE_FEATURES_NV : constant VkStructureType := 1000050000;
VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV : constant VkStructureType := 1000056000;
VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_NV : constant VkStructureType := 1000056001;
VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_NV : constant VkStructureType := 1000057000;
VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_NV : constant VkStructureType := 1000057001;
VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_NV : constant VkStructureType := 1000058000;
VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT : constant VkStructureType := 1000061000;
VK_STRUCTURE_TYPE_VI_SURFACE_CREATE_INFO_NN : constant VkStructureType := 1000062000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES_EXT : constant VkStructureType := 1000066000;
VK_STRUCTURE_TYPE_IMAGE_VIEW_ASTC_DECODE_MODE_EXT : constant VkStructureType := 1000067000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ASTC_DECODE_FEATURES_EXT : constant VkStructureType := 1000067001;
VK_STRUCTURE_TYPE_IMPORT_MEMORY_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000073000;
VK_STRUCTURE_TYPE_EXPORT_MEMORY_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000073001;
VK_STRUCTURE_TYPE_MEMORY_WIN32_HANDLE_PROPERTIES_KHR : constant VkStructureType := 1000073002;
VK_STRUCTURE_TYPE_MEMORY_GET_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000073003;
VK_STRUCTURE_TYPE_IMPORT_MEMORY_FD_INFO_KHR : constant VkStructureType := 1000074000;
VK_STRUCTURE_TYPE_MEMORY_FD_PROPERTIES_KHR : constant VkStructureType := 1000074001;
VK_STRUCTURE_TYPE_MEMORY_GET_FD_INFO_KHR : constant VkStructureType := 1000074002;
VK_STRUCTURE_TYPE_WIN32_KEYED_MUTEX_ACQUIRE_RELEASE_INFO_KHR : constant VkStructureType := 1000075000;
VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000078000;
VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000078001;
VK_STRUCTURE_TYPE_D3D12_FENCE_SUBMIT_INFO_KHR : constant VkStructureType := 1000078002;
VK_STRUCTURE_TYPE_SEMAPHORE_GET_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000078003;
VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_FD_INFO_KHR : constant VkStructureType := 1000079000;
VK_STRUCTURE_TYPE_SEMAPHORE_GET_FD_INFO_KHR : constant VkStructureType := 1000079001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR : constant VkStructureType := 1000080000;
VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_CONDITIONAL_RENDERING_INFO_EXT : constant VkStructureType := 1000081000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONDITIONAL_RENDERING_FEATURES_EXT : constant VkStructureType := 1000081001;
VK_STRUCTURE_TYPE_CONDITIONAL_RENDERING_BEGIN_INFO_EXT : constant VkStructureType := 1000081002;
VK_STRUCTURE_TYPE_PRESENT_REGIONS_KHR : constant VkStructureType := 1000084000;
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_W_SCALING_STATE_CREATE_INFO_NV : constant VkStructureType := 1000087000;
VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_EXT : constant VkStructureType := 1000090000;
VK_STRUCTURE_TYPE_DISPLAY_POWER_INFO_EXT : constant VkStructureType := 1000091000;
VK_STRUCTURE_TYPE_DEVICE_EVENT_INFO_EXT : constant VkStructureType := 1000091001;
VK_STRUCTURE_TYPE_DISPLAY_EVENT_INFO_EXT : constant VkStructureType := 1000091002;
VK_STRUCTURE_TYPE_SWAPCHAIN_COUNTER_CREATE_INFO_EXT : constant VkStructureType := 1000091003;
VK_STRUCTURE_TYPE_PRESENT_TIMES_INFO_GOOGLE : constant VkStructureType := 1000092000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_ATTRIBUTES_PROPERTIES_NVX : constant VkStructureType := 1000097000;
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_SWIZZLE_STATE_CREATE_INFO_NV : constant VkStructureType := 1000098000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DISCARD_RECTANGLE_PROPERTIES_EXT : constant VkStructureType := 1000099000;
VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT : constant VkStructureType := 1000099001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT : constant VkStructureType := 1000101000;
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT : constant VkStructureType := 1000101001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_CLIP_ENABLE_FEATURES_EXT : constant VkStructureType := 1000102000;
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT : constant VkStructureType := 1000102001;
VK_STRUCTURE_TYPE_HDR_METADATA_EXT : constant VkStructureType := 1000105000;
VK_STRUCTURE_TYPE_SHARED_PRESENT_SURFACE_CAPABILITIES_KHR : constant VkStructureType := 1000111000;
VK_STRUCTURE_TYPE_IMPORT_FENCE_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000114000;
VK_STRUCTURE_TYPE_EXPORT_FENCE_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000114001;
VK_STRUCTURE_TYPE_FENCE_GET_WIN32_HANDLE_INFO_KHR : constant VkStructureType := 1000114002;
VK_STRUCTURE_TYPE_IMPORT_FENCE_FD_INFO_KHR : constant VkStructureType := 1000115000;
VK_STRUCTURE_TYPE_FENCE_GET_FD_INFO_KHR : constant VkStructureType := 1000115001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PERFORMANCE_QUERY_FEATURES_KHR : constant VkStructureType := 1000116000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PERFORMANCE_QUERY_PROPERTIES_KHR : constant VkStructureType := 1000116001;
VK_STRUCTURE_TYPE_QUERY_POOL_PERFORMANCE_CREATE_INFO_KHR : constant VkStructureType := 1000116002;
VK_STRUCTURE_TYPE_PERFORMANCE_QUERY_SUBMIT_INFO_KHR : constant VkStructureType := 1000116003;
VK_STRUCTURE_TYPE_ACQUIRE_PROFILING_LOCK_INFO_KHR : constant VkStructureType := 1000116004;
VK_STRUCTURE_TYPE_PERFORMANCE_COUNTER_KHR : constant VkStructureType := 1000116005;
VK_STRUCTURE_TYPE_PERFORMANCE_COUNTER_DESCRIPTION_KHR : constant VkStructureType := 1000116006;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SURFACE_INFO_2_KHR : constant VkStructureType := 1000119000;
VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_KHR : constant VkStructureType := 1000119001;
VK_STRUCTURE_TYPE_SURFACE_FORMAT_2_KHR : constant VkStructureType := 1000119002;
VK_STRUCTURE_TYPE_DISPLAY_PROPERTIES_2_KHR : constant VkStructureType := 1000121000;
VK_STRUCTURE_TYPE_DISPLAY_PLANE_PROPERTIES_2_KHR : constant VkStructureType := 1000121001;
VK_STRUCTURE_TYPE_DISPLAY_MODE_PROPERTIES_2_KHR : constant VkStructureType := 1000121002;
VK_STRUCTURE_TYPE_DISPLAY_PLANE_INFO_2_KHR : constant VkStructureType := 1000121003;
VK_STRUCTURE_TYPE_DISPLAY_PLANE_CAPABILITIES_2_KHR : constant VkStructureType := 1000121004;
VK_STRUCTURE_TYPE_IOS_SURFACE_CREATE_INFO_MVK : constant VkStructureType := 1000122000;
VK_STRUCTURE_TYPE_MACOS_SURFACE_CREATE_INFO_MVK : constant VkStructureType := 1000123000;
VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT : constant VkStructureType := 1000128000;
VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_TAG_INFO_EXT : constant VkStructureType := 1000128001;
VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT : constant VkStructureType := 1000128002;
VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CALLBACK_DATA_EXT : constant VkStructureType := 1000128003;
VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT : constant VkStructureType := 1000128004;
VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_USAGE_ANDROID : constant VkStructureType := 1000129000;
VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_PROPERTIES_ANDROID : constant VkStructureType := 1000129001;
VK_STRUCTURE_TYPE_ANDROID_HARDWARE_BUFFER_FORMAT_PROPERTIES_ANDROID : constant VkStructureType := 1000129002;
VK_STRUCTURE_TYPE_IMPORT_ANDROID_HARDWARE_BUFFER_INFO_ANDROID : constant VkStructureType := 1000129003;
VK_STRUCTURE_TYPE_MEMORY_GET_ANDROID_HARDWARE_BUFFER_INFO_ANDROID : constant VkStructureType := 1000129004;
VK_STRUCTURE_TYPE_EXTERNAL_FORMAT_ANDROID : constant VkStructureType := 1000129005;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_FEATURES_EXT : constant VkStructureType := 1000138000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INLINE_UNIFORM_BLOCK_PROPERTIES_EXT : constant VkStructureType := 1000138001;
VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_INLINE_UNIFORM_BLOCK_EXT : constant VkStructureType := 1000138002;
VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_INLINE_UNIFORM_BLOCK_CREATE_INFO_EXT : constant VkStructureType := 1000138003;
VK_STRUCTURE_TYPE_SAMPLE_LOCATIONS_INFO_EXT : constant VkStructureType := 1000143000;
VK_STRUCTURE_TYPE_RENDER_PASS_SAMPLE_LOCATIONS_BEGIN_INFO_EXT : constant VkStructureType := 1000143001;
VK_STRUCTURE_TYPE_PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT : constant VkStructureType := 1000143002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT : constant VkStructureType := 1000143003;
VK_STRUCTURE_TYPE_MULTISAMPLE_PROPERTIES_EXT : constant VkStructureType := 1000143004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT : constant VkStructureType := 1000148000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT : constant VkStructureType := 1000148001;
VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_ADVANCED_STATE_CREATE_INFO_EXT : constant VkStructureType := 1000148002;
VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_TO_COLOR_STATE_CREATE_INFO_NV : constant VkStructureType := 1000149000;
VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_KHR : constant VkStructureType := 1000150007;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_GEOMETRY_INFO_KHR : constant VkStructureType := 1000150000;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_DEVICE_ADDRESS_INFO_KHR : constant VkStructureType := 1000150002;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_AABBS_DATA_KHR : constant VkStructureType := 1000150003;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_INSTANCES_DATA_KHR : constant VkStructureType := 1000150004;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_TRIANGLES_DATA_KHR : constant VkStructureType := 1000150005;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_GEOMETRY_KHR : constant VkStructureType := 1000150006;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_VERSION_INFO_KHR : constant VkStructureType := 1000150009;
VK_STRUCTURE_TYPE_COPY_ACCELERATION_STRUCTURE_INFO_KHR : constant VkStructureType := 1000150010;
VK_STRUCTURE_TYPE_COPY_ACCELERATION_STRUCTURE_TO_MEMORY_INFO_KHR : constant VkStructureType := 1000150011;
VK_STRUCTURE_TYPE_COPY_MEMORY_TO_ACCELERATION_STRUCTURE_INFO_KHR : constant VkStructureType := 1000150012;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_FEATURES_KHR : constant VkStructureType := 1000150013;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ACCELERATION_STRUCTURE_PROPERTIES_KHR : constant VkStructureType := 1000150014;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_KHR : constant VkStructureType := 1000150017;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR : constant VkStructureType := 1000150020;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_FEATURES_KHR : constant VkStructureType := 1000347000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PIPELINE_PROPERTIES_KHR : constant VkStructureType := 1000347001;
VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_CREATE_INFO_KHR : constant VkStructureType := 1000150015;
VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_KHR : constant VkStructureType := 1000150016;
VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_INTERFACE_CREATE_INFO_KHR : constant VkStructureType := 1000150018;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_QUERY_FEATURES_KHR : constant VkStructureType := 1000348013;
VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_MODULATION_STATE_CREATE_INFO_NV : constant VkStructureType := 1000152000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SM_BUILTINS_FEATURES_NV : constant VkStructureType := 1000154000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SM_BUILTINS_PROPERTIES_NV : constant VkStructureType := 1000154001;
VK_STRUCTURE_TYPE_DRM_FORMAT_MODIFIER_PROPERTIES_LIST_EXT : constant VkStructureType := 1000158000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_DRM_FORMAT_MODIFIER_INFO_EXT : constant VkStructureType := 1000158002;
VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_LIST_CREATE_INFO_EXT : constant VkStructureType := 1000158003;
VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_EXPLICIT_CREATE_INFO_EXT : constant VkStructureType := 1000158004;
VK_STRUCTURE_TYPE_IMAGE_DRM_FORMAT_MODIFIER_PROPERTIES_EXT : constant VkStructureType := 1000158005;
VK_STRUCTURE_TYPE_VALIDATION_CACHE_CREATE_INFO_EXT : constant VkStructureType := 1000160000;
VK_STRUCTURE_TYPE_SHADER_MODULE_VALIDATION_CACHE_CREATE_INFO_EXT : constant VkStructureType := 1000160001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PORTABILITY_SUBSET_FEATURES_KHR : constant VkStructureType := 1000163000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PORTABILITY_SUBSET_PROPERTIES_KHR : constant VkStructureType := 1000163001;
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_SHADING_RATE_IMAGE_STATE_CREATE_INFO_NV : constant VkStructureType := 1000164000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADING_RATE_IMAGE_FEATURES_NV : constant VkStructureType := 1000164001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADING_RATE_IMAGE_PROPERTIES_NV : constant VkStructureType := 1000164002;
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_COARSE_SAMPLE_ORDER_STATE_CREATE_INFO_NV : constant VkStructureType := 1000164005;
VK_STRUCTURE_TYPE_RAY_TRACING_PIPELINE_CREATE_INFO_NV : constant VkStructureType := 1000165000;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_CREATE_INFO_NV : constant VkStructureType := 1000165001;
VK_STRUCTURE_TYPE_GEOMETRY_NV : constant VkStructureType := 1000165003;
VK_STRUCTURE_TYPE_GEOMETRY_TRIANGLES_NV : constant VkStructureType := 1000165004;
VK_STRUCTURE_TYPE_GEOMETRY_AABB_NV : constant VkStructureType := 1000165005;
VK_STRUCTURE_TYPE_BIND_ACCELERATION_STRUCTURE_MEMORY_INFO_NV : constant VkStructureType := 1000165006;
VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET_ACCELERATION_STRUCTURE_NV : constant VkStructureType := 1000165007;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_INFO_NV : constant VkStructureType := 1000165008;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_PROPERTIES_NV : constant VkStructureType := 1000165009;
VK_STRUCTURE_TYPE_RAY_TRACING_SHADER_GROUP_CREATE_INFO_NV : constant VkStructureType := 1000165011;
VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_INFO_NV : constant VkStructureType := 1000165012;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_REPRESENTATIVE_FRAGMENT_TEST_FEATURES_NV : constant VkStructureType := 1000166000;
VK_STRUCTURE_TYPE_PIPELINE_REPRESENTATIVE_FRAGMENT_TEST_STATE_CREATE_INFO_NV : constant VkStructureType := 1000166001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_VIEW_IMAGE_FORMAT_INFO_EXT : constant VkStructureType := 1000170000;
VK_STRUCTURE_TYPE_FILTER_CUBIC_IMAGE_VIEW_IMAGE_FORMAT_PROPERTIES_EXT : constant VkStructureType := 1000170001;
VK_STRUCTURE_TYPE_DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_EXT : constant VkStructureType := 1000174000;
VK_STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT : constant VkStructureType := 1000178000;
VK_STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT : constant VkStructureType := 1000178001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT : constant VkStructureType := 1000178002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CLOCK_FEATURES_KHR : constant VkStructureType := 1000181000;
VK_STRUCTURE_TYPE_PIPELINE_COMPILER_CONTROL_CREATE_INFO_AMD : constant VkStructureType := 1000183000;
VK_STRUCTURE_TYPE_CALIBRATED_TIMESTAMP_INFO_EXT : constant VkStructureType := 1000184000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_AMD : constant VkStructureType := 1000185000;
VK_STRUCTURE_TYPE_DEVICE_MEMORY_OVERALLOCATION_CREATE_INFO_AMD : constant VkStructureType := 1000189000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT : constant VkStructureType := 1000190000;
VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_DIVISOR_STATE_CREATE_INFO_EXT : constant VkStructureType := 1000190001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_FEATURES_EXT : constant VkStructureType := 1000190002;
VK_STRUCTURE_TYPE_PRESENT_FRAME_TOKEN_GGP : constant VkStructureType := 1000191000;
VK_STRUCTURE_TYPE_PIPELINE_CREATION_FEEDBACK_CREATE_INFO_EXT : constant VkStructureType := 1000192000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COMPUTE_SHADER_DERIVATIVES_FEATURES_NV : constant VkStructureType := 1000201000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MESH_SHADER_FEATURES_NV : constant VkStructureType := 1000202000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MESH_SHADER_PROPERTIES_NV : constant VkStructureType := 1000202001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADER_BARYCENTRIC_FEATURES_NV : constant VkStructureType := 1000203000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_IMAGE_FOOTPRINT_FEATURES_NV : constant VkStructureType := 1000204000;
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_EXCLUSIVE_SCISSOR_STATE_CREATE_INFO_NV : constant VkStructureType := 1000205000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXCLUSIVE_SCISSOR_FEATURES_NV : constant VkStructureType := 1000205002;
VK_STRUCTURE_TYPE_CHECKPOINT_DATA_NV : constant VkStructureType := 1000206000;
VK_STRUCTURE_TYPE_QUEUE_FAMILY_CHECKPOINT_PROPERTIES_NV : constant VkStructureType := 1000206001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_INTEGER_FUNCTIONS_2_FEATURES_INTEL : constant VkStructureType := 1000209000;
VK_STRUCTURE_TYPE_QUERY_POOL_PERFORMANCE_QUERY_CREATE_INFO_INTEL : constant VkStructureType := 1000210000;
VK_STRUCTURE_TYPE_INITIALIZE_PERFORMANCE_API_INFO_INTEL : constant VkStructureType := 1000210001;
VK_STRUCTURE_TYPE_PERFORMANCE_MARKER_INFO_INTEL : constant VkStructureType := 1000210002;
VK_STRUCTURE_TYPE_PERFORMANCE_STREAM_MARKER_INFO_INTEL : constant VkStructureType := 1000210003;
VK_STRUCTURE_TYPE_PERFORMANCE_OVERRIDE_INFO_INTEL : constant VkStructureType := 1000210004;
VK_STRUCTURE_TYPE_PERFORMANCE_CONFIGURATION_ACQUIRE_INFO_INTEL : constant VkStructureType := 1000210005;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT : constant VkStructureType := 1000212000;
VK_STRUCTURE_TYPE_DISPLAY_NATIVE_HDR_SURFACE_CAPABILITIES_AMD : constant VkStructureType := 1000213000;
VK_STRUCTURE_TYPE_SWAPCHAIN_DISPLAY_NATIVE_HDR_CREATE_INFO_AMD : constant VkStructureType := 1000213001;
VK_STRUCTURE_TYPE_IMAGEPIPE_SURFACE_CREATE_INFO_FUCHSIA : constant VkStructureType := 1000214000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_TERMINATE_INVOCATION_FEATURES_KHR : constant VkStructureType := 1000215000;
VK_STRUCTURE_TYPE_METAL_SURFACE_CREATE_INFO_EXT : constant VkStructureType := 1000217000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_FEATURES_EXT : constant VkStructureType := 1000218000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_PROPERTIES_EXT : constant VkStructureType := 1000218001;
VK_STRUCTURE_TYPE_RENDER_PASS_FRAGMENT_DENSITY_MAP_CREATE_INFO_EXT : constant VkStructureType := 1000218002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES_EXT : constant VkStructureType := 1000225000;
VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_REQUIRED_SUBGROUP_SIZE_CREATE_INFO_EXT : constant VkStructureType := 1000225001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_FEATURES_EXT : constant VkStructureType := 1000225002;
VK_STRUCTURE_TYPE_FRAGMENT_SHADING_RATE_ATTACHMENT_INFO_KHR : constant VkStructureType := 1000226000;
VK_STRUCTURE_TYPE_PIPELINE_FRAGMENT_SHADING_RATE_STATE_CREATE_INFO_KHR : constant VkStructureType := 1000226001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_PROPERTIES_KHR : constant VkStructureType := 1000226002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_FEATURES_KHR : constant VkStructureType := 1000226003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_KHR : constant VkStructureType := 1000226004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_2_AMD : constant VkStructureType := 1000227000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COHERENT_MEMORY_FEATURES_AMD : constant VkStructureType := 1000229000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_IMAGE_ATOMIC_INT64_FEATURES_EXT : constant VkStructureType := 1000234000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT : constant VkStructureType := 1000237000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PRIORITY_FEATURES_EXT : constant VkStructureType := 1000238000;
VK_STRUCTURE_TYPE_MEMORY_PRIORITY_ALLOCATE_INFO_EXT : constant VkStructureType := 1000238001;
VK_STRUCTURE_TYPE_SURFACE_PROTECTED_CAPABILITIES_KHR : constant VkStructureType := 1000239000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEDICATED_ALLOCATION_IMAGE_ALIASING_FEATURES_NV : constant VkStructureType := 1000240000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_EXT : constant VkStructureType := 1000244000;
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_CREATE_INFO_EXT : constant VkStructureType := 1000244002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES_EXT : constant VkStructureType := 1000245000;
VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT : constant VkStructureType := 1000247000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_FEATURES_NV : constant VkStructureType := 1000249000;
VK_STRUCTURE_TYPE_COOPERATIVE_MATRIX_PROPERTIES_NV : constant VkStructureType := 1000249001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COOPERATIVE_MATRIX_PROPERTIES_NV : constant VkStructureType := 1000249002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_COVERAGE_REDUCTION_MODE_FEATURES_NV : constant VkStructureType := 1000250000;
VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_REDUCTION_STATE_CREATE_INFO_NV : constant VkStructureType := 1000250001;
VK_STRUCTURE_TYPE_FRAMEBUFFER_MIXED_SAMPLES_COMBINATION_NV : constant VkStructureType := 1000250002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADER_INTERLOCK_FEATURES_EXT : constant VkStructureType := 1000251000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_YCBCR_IMAGE_ARRAYS_FEATURES_EXT : constant VkStructureType := 1000252000;
VK_STRUCTURE_TYPE_SURFACE_FULL_SCREEN_EXCLUSIVE_INFO_EXT : constant VkStructureType := 1000255000;
VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_FULL_SCREEN_EXCLUSIVE_EXT : constant VkStructureType := 1000255002;
VK_STRUCTURE_TYPE_SURFACE_FULL_SCREEN_EXCLUSIVE_WIN32_INFO_EXT : constant VkStructureType := 1000255001;
VK_STRUCTURE_TYPE_HEADLESS_SURFACE_CREATE_INFO_EXT : constant VkStructureType := 1000256000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINE_RASTERIZATION_FEATURES_EXT : constant VkStructureType := 1000259000;
VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_LINE_STATE_CREATE_INFO_EXT : constant VkStructureType := 1000259001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LINE_RASTERIZATION_PROPERTIES_EXT : constant VkStructureType := 1000259002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_FLOAT_FEATURES_EXT : constant VkStructureType := 1000260000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_INDEX_TYPE_UINT8_FEATURES_EXT : constant VkStructureType := 1000265000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_FEATURES_EXT : constant VkStructureType := 1000267000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_EXECUTABLE_PROPERTIES_FEATURES_KHR : constant VkStructureType := 1000269000;
VK_STRUCTURE_TYPE_PIPELINE_INFO_KHR : constant VkStructureType := 1000269001;
VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_PROPERTIES_KHR : constant VkStructureType := 1000269002;
VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INFO_KHR : constant VkStructureType := 1000269003;
VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_STATISTIC_KHR : constant VkStructureType := 1000269004;
VK_STRUCTURE_TYPE_PIPELINE_EXECUTABLE_INTERNAL_REPRESENTATION_KHR : constant VkStructureType := 1000269005;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DEMOTE_TO_HELPER_INVOCATION_FEATURES_EXT : constant VkStructureType := 1000276000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_PROPERTIES_NV : constant VkStructureType := 1000277000;
VK_STRUCTURE_TYPE_GRAPHICS_SHADER_GROUP_CREATE_INFO_NV : constant VkStructureType := 1000277001;
VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_SHADER_GROUPS_CREATE_INFO_NV : constant VkStructureType := 1000277002;
VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_TOKEN_NV : constant VkStructureType := 1000277003;
VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NV : constant VkStructureType := 1000277004;
VK_STRUCTURE_TYPE_GENERATED_COMMANDS_INFO_NV : constant VkStructureType := 1000277005;
VK_STRUCTURE_TYPE_GENERATED_COMMANDS_MEMORY_REQUIREMENTS_INFO_NV : constant VkStructureType := 1000277006;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_GENERATED_COMMANDS_FEATURES_NV : constant VkStructureType := 1000277007;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_FEATURES_EXT : constant VkStructureType := 1000281000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXEL_BUFFER_ALIGNMENT_PROPERTIES_EXT : constant VkStructureType := 1000281001;
VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_RENDER_PASS_TRANSFORM_INFO_QCOM : constant VkStructureType := 1000282000;
VK_STRUCTURE_TYPE_RENDER_PASS_TRANSFORM_BEGIN_INFO_QCOM : constant VkStructureType := 1000282001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEVICE_MEMORY_REPORT_FEATURES_EXT : constant VkStructureType := 1000284000;
VK_STRUCTURE_TYPE_DEVICE_DEVICE_MEMORY_REPORT_CREATE_INFO_EXT : constant VkStructureType := 1000284001;
VK_STRUCTURE_TYPE_DEVICE_MEMORY_REPORT_CALLBACK_DATA_EXT : constant VkStructureType := 1000284002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_FEATURES_EXT : constant VkStructureType := 1000286000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ROBUSTNESS_2_PROPERTIES_EXT : constant VkStructureType := 1000286001;
VK_STRUCTURE_TYPE_SAMPLER_CUSTOM_BORDER_COLOR_CREATE_INFO_EXT : constant VkStructureType := 1000287000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_PROPERTIES_EXT : constant VkStructureType := 1000287001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CUSTOM_BORDER_COLOR_FEATURES_EXT : constant VkStructureType := 1000287002;
VK_STRUCTURE_TYPE_PIPELINE_LIBRARY_CREATE_INFO_KHR : constant VkStructureType := 1000290000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRIVATE_DATA_FEATURES_EXT : constant VkStructureType := 1000295000;
VK_STRUCTURE_TYPE_DEVICE_PRIVATE_DATA_CREATE_INFO_EXT : constant VkStructureType := 1000295001;
VK_STRUCTURE_TYPE_PRIVATE_DATA_SLOT_CREATE_INFO_EXT : constant VkStructureType := 1000295002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PIPELINE_CREATION_CACHE_CONTROL_FEATURES_EXT : constant VkStructureType := 1000297000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DIAGNOSTICS_CONFIG_FEATURES_NV : constant VkStructureType := 1000300000;
VK_STRUCTURE_TYPE_DEVICE_DIAGNOSTICS_CONFIG_CREATE_INFO_NV : constant VkStructureType := 1000300001;
VK_STRUCTURE_TYPE_MEMORY_BARRIER_2_KHR : constant VkStructureType := 1000314000;
VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER_2_KHR : constant VkStructureType := 1000314001;
VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER_2_KHR : constant VkStructureType := 1000314002;
VK_STRUCTURE_TYPE_DEPENDENCY_INFO_KHR : constant VkStructureType := 1000314003;
VK_STRUCTURE_TYPE_SUBMIT_INFO_2_KHR : constant VkStructureType := 1000314004;
VK_STRUCTURE_TYPE_SEMAPHORE_SUBMIT_INFO_KHR : constant VkStructureType := 1000314005;
VK_STRUCTURE_TYPE_COMMAND_BUFFER_SUBMIT_INFO_KHR : constant VkStructureType := 1000314006;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SYNCHRONIZATION_2_FEATURES_KHR : constant VkStructureType := 1000314007;
VK_STRUCTURE_TYPE_QUEUE_FAMILY_CHECKPOINT_PROPERTIES_2_NV : constant VkStructureType := 1000314008;
VK_STRUCTURE_TYPE_CHECKPOINT_DATA_2_NV : constant VkStructureType := 1000314009;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ZERO_INITIALIZE_WORKGROUP_MEMORY_FEATURES_KHR : constant VkStructureType := 1000325000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_PROPERTIES_NV : constant VkStructureType := 1000326000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_ENUMS_FEATURES_NV : constant VkStructureType := 1000326001;
VK_STRUCTURE_TYPE_PIPELINE_FRAGMENT_SHADING_RATE_ENUM_STATE_CREATE_INFO_NV : constant VkStructureType := 1000326002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_FEATURES_EXT : constant VkStructureType := 1000332000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_DENSITY_MAP_2_PROPERTIES_EXT : constant VkStructureType := 1000332001;
VK_STRUCTURE_TYPE_COPY_COMMAND_TRANSFORM_INFO_QCOM : constant VkStructureType := 1000333000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_ROBUSTNESS_FEATURES_EXT : constant VkStructureType := 1000335000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_FEATURES_KHR : constant VkStructureType := 1000336000;
VK_STRUCTURE_TYPE_COPY_BUFFER_INFO_2_KHR : constant VkStructureType := 1000337000;
VK_STRUCTURE_TYPE_COPY_IMAGE_INFO_2_KHR : constant VkStructureType := 1000337001;
VK_STRUCTURE_TYPE_COPY_BUFFER_TO_IMAGE_INFO_2_KHR : constant VkStructureType := 1000337002;
VK_STRUCTURE_TYPE_COPY_IMAGE_TO_BUFFER_INFO_2_KHR : constant VkStructureType := 1000337003;
VK_STRUCTURE_TYPE_BLIT_IMAGE_INFO_2_KHR : constant VkStructureType := 1000337004;
VK_STRUCTURE_TYPE_RESOLVE_IMAGE_INFO_2_KHR : constant VkStructureType := 1000337005;
VK_STRUCTURE_TYPE_BUFFER_COPY_2_KHR : constant VkStructureType := 1000337006;
VK_STRUCTURE_TYPE_IMAGE_COPY_2_KHR : constant VkStructureType := 1000337007;
VK_STRUCTURE_TYPE_IMAGE_BLIT_2_KHR : constant VkStructureType := 1000337008;
VK_STRUCTURE_TYPE_BUFFER_IMAGE_COPY_2_KHR : constant VkStructureType := 1000337009;
VK_STRUCTURE_TYPE_IMAGE_RESOLVE_2_KHR : constant VkStructureType := 1000337010;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_4444_FORMATS_FEATURES_EXT : constant VkStructureType := 1000340000;
VK_STRUCTURE_TYPE_DIRECTFB_SURFACE_CREATE_INFO_EXT : constant VkStructureType := 1000346000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MUTABLE_DESCRIPTOR_TYPE_FEATURES_VALVE : constant VkStructureType := 1000351000;
VK_STRUCTURE_TYPE_MUTABLE_DESCRIPTOR_TYPE_CREATE_INFO_VALVE : constant VkStructureType := 1000351002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES : constant VkStructureType := 1000120000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETER_FEATURES : constant VkStructureType := 1000063000;
VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT : constant VkStructureType := 1000011000;
VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR : constant VkStructureType := 1000053000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR : constant VkStructureType := 1000053001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES_KHR : constant VkStructureType := 1000053002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2_KHR : constant VkStructureType := 1000059000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2_KHR : constant VkStructureType := 1000059001;
VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2_KHR : constant VkStructureType := 1000059002;
VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2_KHR : constant VkStructureType := 1000059003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2_KHR : constant VkStructureType := 1000059004;
VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2_KHR : constant VkStructureType := 1000059005;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2_KHR : constant VkStructureType := 1000059006;
VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2_KHR : constant VkStructureType := 1000059007;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2_KHR : constant VkStructureType := 1000059008;
VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO_KHR : constant VkStructureType := 1000060000;
VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO_KHR : constant VkStructureType := 1000060003;
VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO_KHR : constant VkStructureType := 1000060004;
VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO_KHR : constant VkStructureType := 1000060005;
VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO_KHR : constant VkStructureType := 1000060006;
VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO_KHR : constant VkStructureType := 1000060013;
VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO_KHR : constant VkStructureType := 1000060014;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES_KHR : constant VkStructureType := 1000070000;
VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO_KHR : constant VkStructureType := 1000070001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO_KHR : constant VkStructureType := 1000071000;
VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES_KHR : constant VkStructureType := 1000071001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO_KHR : constant VkStructureType := 1000071002;
VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES_KHR : constant VkStructureType := 1000071003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR : constant VkStructureType := 1000071004;
VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO_KHR : constant VkStructureType := 1000072000;
VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_KHR : constant VkStructureType := 1000072001;
VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_KHR : constant VkStructureType := 1000072002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO_KHR : constant VkStructureType := 1000076000;
VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES_KHR : constant VkStructureType := 1000076001;
VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO_KHR : constant VkStructureType := 1000077000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES_KHR : constant VkStructureType := 1000082000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT16_INT8_FEATURES_KHR : constant VkStructureType := 1000082000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR : constant VkStructureType := 1000083000;
VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO_KHR : constant VkStructureType := 1000085000;
VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES2_EXT : constant VkStructureType := 1000090000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGELESS_FRAMEBUFFER_FEATURES_KHR : constant VkStructureType := 1000108000;
VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO_KHR : constant VkStructureType := 1000108001;
VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENT_IMAGE_INFO_KHR : constant VkStructureType := 1000108002;
VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO_KHR : constant VkStructureType := 1000108003;
VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_2_KHR : constant VkStructureType := 1000109000;
VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_2_KHR : constant VkStructureType := 1000109001;
VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_2_KHR : constant VkStructureType := 1000109002;
VK_STRUCTURE_TYPE_SUBPASS_DEPENDENCY_2_KHR : constant VkStructureType := 1000109003;
VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO_2_KHR : constant VkStructureType := 1000109004;
VK_STRUCTURE_TYPE_SUBPASS_BEGIN_INFO_KHR : constant VkStructureType := 1000109005;
VK_STRUCTURE_TYPE_SUBPASS_END_INFO_KHR : constant VkStructureType := 1000109006;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO_KHR : constant VkStructureType := 1000112000;
VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES_KHR : constant VkStructureType := 1000112001;
VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO_KHR : constant VkStructureType := 1000113000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES_KHR : constant VkStructureType := 1000117000;
VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO_KHR : constant VkStructureType := 1000117001;
VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO_KHR : constant VkStructureType := 1000117002;
VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO_KHR : constant VkStructureType := 1000117003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTERS_FEATURES_KHR : constant VkStructureType := 1000120000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES_KHR : constant VkStructureType := 1000120000;
VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS_KHR : constant VkStructureType := 1000127000;
VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO_KHR : constant VkStructureType := 1000127001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES_EXT : constant VkStructureType := 1000130000;
VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO_EXT : constant VkStructureType := 1000130001;
VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2_KHR : constant VkStructureType := 1000146000;
VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2_KHR : constant VkStructureType := 1000146001;
VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2_KHR : constant VkStructureType := 1000146002;
VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2_KHR : constant VkStructureType := 1000146003;
VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2_KHR : constant VkStructureType := 1000146004;
VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO_KHR : constant VkStructureType := 1000147000;
VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO_KHR : constant VkStructureType := 1000156000;
VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO_KHR : constant VkStructureType := 1000156001;
VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO_KHR : constant VkStructureType := 1000156002;
VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO_KHR : constant VkStructureType := 1000156003;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES_KHR : constant VkStructureType := 1000156004;
VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES_KHR : constant VkStructureType := 1000156005;
VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO_KHR : constant VkStructureType := 1000157000;
VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO_KHR : constant VkStructureType := 1000157001;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO_EXT : constant VkStructureType := 1000161000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES_EXT : constant VkStructureType := 1000161001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES_EXT : constant VkStructureType := 1000161002;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO_EXT : constant VkStructureType := 1000161003;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT_EXT : constant VkStructureType := 1000161004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES_KHR : constant VkStructureType := 1000168000;
VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT_KHR : constant VkStructureType := 1000168001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_SUBGROUP_EXTENDED_TYPES_FEATURES_KHR : constant VkStructureType := 1000175000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES_KHR : constant VkStructureType := 1000177000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_ATOMIC_INT64_FEATURES_KHR : constant VkStructureType := 1000180000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES_KHR : constant VkStructureType := 1000196000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES_KHR : constant VkStructureType := 1000197000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DEPTH_STENCIL_RESOLVE_PROPERTIES_KHR : constant VkStructureType := 1000199000;
VK_STRUCTURE_TYPE_SUBPASS_DESCRIPTION_DEPTH_STENCIL_RESOLVE_KHR : constant VkStructureType := 1000199001;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_FEATURES_KHR : constant VkStructureType := 1000207000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TIMELINE_SEMAPHORE_PROPERTIES_KHR : constant VkStructureType := 1000207001;
VK_STRUCTURE_TYPE_SEMAPHORE_TYPE_CREATE_INFO_KHR : constant VkStructureType := 1000207002;
VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO_KHR : constant VkStructureType := 1000207003;
VK_STRUCTURE_TYPE_SEMAPHORE_WAIT_INFO_KHR : constant VkStructureType := 1000207004;
VK_STRUCTURE_TYPE_SEMAPHORE_SIGNAL_INFO_KHR : constant VkStructureType := 1000207005;
VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO_INTEL : constant VkStructureType := 1000210000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES_KHR : constant VkStructureType := 1000211000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SCALAR_BLOCK_LAYOUT_FEATURES_EXT : constant VkStructureType := 1000221000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SEPARATE_DEPTH_STENCIL_LAYOUTS_FEATURES_KHR : constant VkStructureType := 1000241000;
VK_STRUCTURE_TYPE_ATTACHMENT_REFERENCE_STENCIL_LAYOUT_KHR : constant VkStructureType := 1000241001;
VK_STRUCTURE_TYPE_ATTACHMENT_DESCRIPTION_STENCIL_LAYOUT_KHR : constant VkStructureType := 1000241002;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_ADDRESS_FEATURES_EXT : constant VkStructureType := 1000244000;
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_EXT : constant VkStructureType := 1000244001;
VK_STRUCTURE_TYPE_IMAGE_STENCIL_USAGE_CREATE_INFO_EXT : constant VkStructureType := 1000246000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_UNIFORM_BUFFER_STANDARD_LAYOUT_FEATURES_KHR : constant VkStructureType := 1000253000;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BUFFER_DEVICE_ADDRESS_FEATURES_KHR : constant VkStructureType := 1000257000;
VK_STRUCTURE_TYPE_BUFFER_DEVICE_ADDRESS_INFO_KHR : constant VkStructureType := 1000244001;
VK_STRUCTURE_TYPE_BUFFER_OPAQUE_CAPTURE_ADDRESS_CREATE_INFO_KHR : constant VkStructureType := 1000257002;
VK_STRUCTURE_TYPE_MEMORY_OPAQUE_CAPTURE_ADDRESS_ALLOCATE_INFO_KHR : constant VkStructureType := 1000257003;
VK_STRUCTURE_TYPE_DEVICE_MEMORY_OPAQUE_CAPTURE_ADDRESS_INFO_KHR : constant VkStructureType := 1000257004;
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_HOST_QUERY_RESET_FEATURES_EXT : constant VkStructureType := 1000261000;
VK_STRUCTURE_TYPE_MAX_ENUM : constant VkStructureType := 2147483647; -- vulkan_core.h:151
subtype VkImageLayout is unsigned;
VK_IMAGE_LAYOUT_UNDEFINED : constant VkImageLayout := 0;
VK_IMAGE_LAYOUT_GENERAL : constant VkImageLayout := 1;
VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL : constant VkImageLayout := 2;
VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL : constant VkImageLayout := 3;
VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL : constant VkImageLayout := 4;
VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL : constant VkImageLayout := 5;
VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL : constant VkImageLayout := 6;
VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL : constant VkImageLayout := 7;
VK_IMAGE_LAYOUT_PREINITIALIZED : constant VkImageLayout := 8;
VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL : constant VkImageLayout := 1000117000;
VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL : constant VkImageLayout := 1000117001;
VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL : constant VkImageLayout := 1000241000;
VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL : constant VkImageLayout := 1000241001;
VK_IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL : constant VkImageLayout := 1000241002;
VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL : constant VkImageLayout := 1000241003;
VK_IMAGE_LAYOUT_PRESENT_SRC_KHR : constant VkImageLayout := 1000001002;
VK_IMAGE_LAYOUT_SHARED_PRESENT_KHR : constant VkImageLayout := 1000111000;
VK_IMAGE_LAYOUT_SHADING_RATE_OPTIMAL_NV : constant VkImageLayout := 1000164003;
VK_IMAGE_LAYOUT_FRAGMENT_DENSITY_MAP_OPTIMAL_EXT : constant VkImageLayout := 1000218000;
VK_IMAGE_LAYOUT_READ_ONLY_OPTIMAL_KHR : constant VkImageLayout := 1000314000;
VK_IMAGE_LAYOUT_ATTACHMENT_OPTIMAL_KHR : constant VkImageLayout := 1000314001;
VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL_KHR : constant VkImageLayout := 1000117000;
VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL_KHR : constant VkImageLayout := 1000117001;
VK_IMAGE_LAYOUT_FRAGMENT_SHADING_RATE_ATTACHMENT_OPTIMAL_KHR : constant VkImageLayout := 1000164003;
VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL_KHR : constant VkImageLayout := 1000241000;
VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL_KHR : constant VkImageLayout := 1000241001;
VK_IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL_KHR : constant VkImageLayout := 1000241002;
VK_IMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL_KHR : constant VkImageLayout := 1000241003;
VK_IMAGE_LAYOUT_MAX_ENUM : constant VkImageLayout := 2147483647; -- vulkan_core.h:754
subtype VkObjectType is unsigned;
VK_OBJECT_TYPE_UNKNOWN : constant VkObjectType := 0;
VK_OBJECT_TYPE_INSTANCE : constant VkObjectType := 1;
VK_OBJECT_TYPE_PHYSICAL_DEVICE : constant VkObjectType := 2;
VK_OBJECT_TYPE_DEVICE : constant VkObjectType := 3;
VK_OBJECT_TYPE_QUEUE : constant VkObjectType := 4;
VK_OBJECT_TYPE_SEMAPHORE : constant VkObjectType := 5;
VK_OBJECT_TYPE_COMMAND_BUFFER : constant VkObjectType := 6;
VK_OBJECT_TYPE_FENCE : constant VkObjectType := 7;
VK_OBJECT_TYPE_DEVICE_MEMORY : constant VkObjectType := 8;
VK_OBJECT_TYPE_BUFFER : constant VkObjectType := 9;
VK_OBJECT_TYPE_IMAGE : constant VkObjectType := 10;
VK_OBJECT_TYPE_EVENT : constant VkObjectType := 11;
VK_OBJECT_TYPE_QUERY_POOL : constant VkObjectType := 12;
VK_OBJECT_TYPE_BUFFER_VIEW : constant VkObjectType := 13;
VK_OBJECT_TYPE_IMAGE_VIEW : constant VkObjectType := 14;
VK_OBJECT_TYPE_SHADER_MODULE : constant VkObjectType := 15;
VK_OBJECT_TYPE_PIPELINE_CACHE : constant VkObjectType := 16;
VK_OBJECT_TYPE_PIPELINE_LAYOUT : constant VkObjectType := 17;
VK_OBJECT_TYPE_RENDER_PASS : constant VkObjectType := 18;
VK_OBJECT_TYPE_PIPELINE : constant VkObjectType := 19;
VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT : constant VkObjectType := 20;
VK_OBJECT_TYPE_SAMPLER : constant VkObjectType := 21;
VK_OBJECT_TYPE_DESCRIPTOR_POOL : constant VkObjectType := 22;
VK_OBJECT_TYPE_DESCRIPTOR_SET : constant VkObjectType := 23;
VK_OBJECT_TYPE_FRAMEBUFFER : constant VkObjectType := 24;
VK_OBJECT_TYPE_COMMAND_POOL : constant VkObjectType := 25;
VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION : constant VkObjectType := 1000156000;
VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE : constant VkObjectType := 1000085000;
VK_OBJECT_TYPE_SURFACE_KHR : constant VkObjectType := 1000000000;
VK_OBJECT_TYPE_SWAPCHAIN_KHR : constant VkObjectType := 1000001000;
VK_OBJECT_TYPE_DISPLAY_KHR : constant VkObjectType := 1000002000;
VK_OBJECT_TYPE_DISPLAY_MODE_KHR : constant VkObjectType := 1000002001;
VK_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT : constant VkObjectType := 1000011000;
VK_OBJECT_TYPE_DEBUG_UTILS_MESSENGER_EXT : constant VkObjectType := 1000128000;
VK_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR : constant VkObjectType := 1000150000;
VK_OBJECT_TYPE_VALIDATION_CACHE_EXT : constant VkObjectType := 1000160000;
VK_OBJECT_TYPE_ACCELERATION_STRUCTURE_NV : constant VkObjectType := 1000165000;
VK_OBJECT_TYPE_PERFORMANCE_CONFIGURATION_INTEL : constant VkObjectType := 1000210000;
VK_OBJECT_TYPE_DEFERRED_OPERATION_KHR : constant VkObjectType := 1000268000;
VK_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NV : constant VkObjectType := 1000277000;
VK_OBJECT_TYPE_PRIVATE_DATA_SLOT_EXT : constant VkObjectType := 1000295000;
VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR : constant VkObjectType := 1000085000;
VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR : constant VkObjectType := 1000156000;
VK_OBJECT_TYPE_MAX_ENUM : constant VkObjectType := 2147483647; -- vulkan_core.h:786
subtype VkVendorId is unsigned;
VK_VENDOR_ID_VIV : constant VkVendorId := 65537;
VK_VENDOR_ID_VSI : constant VkVendorId := 65538;
VK_VENDOR_ID_KAZAN : constant VkVendorId := 65539;
VK_VENDOR_ID_CODEPLAY : constant VkVendorId := 65540;
VK_VENDOR_ID_MESA : constant VkVendorId := 65541;
VK_VENDOR_ID_POCL : constant VkVendorId := 65542;
VK_VENDOR_ID_MAX_ENUM : constant VkVendorId := 2147483647; -- vulkan_core.h:833
subtype VkPipelineCacheHeaderVersion is unsigned;
VK_PIPELINE_CACHE_HEADER_VERSION_ONE : constant VkPipelineCacheHeaderVersion := 1;
VK_PIPELINE_CACHE_HEADER_VERSION_MAX_ENUM : constant VkPipelineCacheHeaderVersion := 2147483647; -- vulkan_core.h:843
subtype VkSystemAllocationScope is unsigned;
VK_SYSTEM_ALLOCATION_SCOPE_COMMAND : constant VkSystemAllocationScope := 0;
VK_SYSTEM_ALLOCATION_SCOPE_OBJECT : constant VkSystemAllocationScope := 1;
VK_SYSTEM_ALLOCATION_SCOPE_CACHE : constant VkSystemAllocationScope := 2;
VK_SYSTEM_ALLOCATION_SCOPE_DEVICE : constant VkSystemAllocationScope := 3;
VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE : constant VkSystemAllocationScope := 4;
VK_SYSTEM_ALLOCATION_SCOPE_MAX_ENUM : constant VkSystemAllocationScope := 2147483647; -- vulkan_core.h:848
subtype VkInternalAllocationType is unsigned;
VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE : constant VkInternalAllocationType := 0;
VK_INTERNAL_ALLOCATION_TYPE_MAX_ENUM : constant VkInternalAllocationType := 2147483647; -- vulkan_core.h:857
subtype VkFormat is unsigned;
VK_FORMAT_UNDEFINED : constant VkFormat := 0;
VK_FORMAT_R4G4_UNORM_PACK8 : constant VkFormat := 1;
VK_FORMAT_R4G4B4A4_UNORM_PACK16 : constant VkFormat := 2;
VK_FORMAT_B4G4R4A4_UNORM_PACK16 : constant VkFormat := 3;
VK_FORMAT_R5G6B5_UNORM_PACK16 : constant VkFormat := 4;
VK_FORMAT_B5G6R5_UNORM_PACK16 : constant VkFormat := 5;
VK_FORMAT_R5G5B5A1_UNORM_PACK16 : constant VkFormat := 6;
VK_FORMAT_B5G5R5A1_UNORM_PACK16 : constant VkFormat := 7;
VK_FORMAT_A1R5G5B5_UNORM_PACK16 : constant VkFormat := 8;
VK_FORMAT_R8_UNORM : constant VkFormat := 9;
VK_FORMAT_R8_SNORM : constant VkFormat := 10;
VK_FORMAT_R8_USCALED : constant VkFormat := 11;
VK_FORMAT_R8_SSCALED : constant VkFormat := 12;
VK_FORMAT_R8_UINT : constant VkFormat := 13;
VK_FORMAT_R8_SINT : constant VkFormat := 14;
VK_FORMAT_R8_SRGB : constant VkFormat := 15;
VK_FORMAT_R8G8_UNORM : constant VkFormat := 16;
VK_FORMAT_R8G8_SNORM : constant VkFormat := 17;
VK_FORMAT_R8G8_USCALED : constant VkFormat := 18;
VK_FORMAT_R8G8_SSCALED : constant VkFormat := 19;
VK_FORMAT_R8G8_UINT : constant VkFormat := 20;
VK_FORMAT_R8G8_SINT : constant VkFormat := 21;
VK_FORMAT_R8G8_SRGB : constant VkFormat := 22;
VK_FORMAT_R8G8B8_UNORM : constant VkFormat := 23;
VK_FORMAT_R8G8B8_SNORM : constant VkFormat := 24;
VK_FORMAT_R8G8B8_USCALED : constant VkFormat := 25;
VK_FORMAT_R8G8B8_SSCALED : constant VkFormat := 26;
VK_FORMAT_R8G8B8_UINT : constant VkFormat := 27;
VK_FORMAT_R8G8B8_SINT : constant VkFormat := 28;
VK_FORMAT_R8G8B8_SRGB : constant VkFormat := 29;
VK_FORMAT_B8G8R8_UNORM : constant VkFormat := 30;
VK_FORMAT_B8G8R8_SNORM : constant VkFormat := 31;
VK_FORMAT_B8G8R8_USCALED : constant VkFormat := 32;
VK_FORMAT_B8G8R8_SSCALED : constant VkFormat := 33;
VK_FORMAT_B8G8R8_UINT : constant VkFormat := 34;
VK_FORMAT_B8G8R8_SINT : constant VkFormat := 35;
VK_FORMAT_B8G8R8_SRGB : constant VkFormat := 36;
VK_FORMAT_R8G8B8A8_UNORM : constant VkFormat := 37;
VK_FORMAT_R8G8B8A8_SNORM : constant VkFormat := 38;
VK_FORMAT_R8G8B8A8_USCALED : constant VkFormat := 39;
VK_FORMAT_R8G8B8A8_SSCALED : constant VkFormat := 40;
VK_FORMAT_R8G8B8A8_UINT : constant VkFormat := 41;
VK_FORMAT_R8G8B8A8_SINT : constant VkFormat := 42;
VK_FORMAT_R8G8B8A8_SRGB : constant VkFormat := 43;
VK_FORMAT_B8G8R8A8_UNORM : constant VkFormat := 44;
VK_FORMAT_B8G8R8A8_SNORM : constant VkFormat := 45;
VK_FORMAT_B8G8R8A8_USCALED : constant VkFormat := 46;
VK_FORMAT_B8G8R8A8_SSCALED : constant VkFormat := 47;
VK_FORMAT_B8G8R8A8_UINT : constant VkFormat := 48;
VK_FORMAT_B8G8R8A8_SINT : constant VkFormat := 49;
VK_FORMAT_B8G8R8A8_SRGB : constant VkFormat := 50;
VK_FORMAT_A8B8G8R8_UNORM_PACK32 : constant VkFormat := 51;
VK_FORMAT_A8B8G8R8_SNORM_PACK32 : constant VkFormat := 52;
VK_FORMAT_A8B8G8R8_USCALED_PACK32 : constant VkFormat := 53;
VK_FORMAT_A8B8G8R8_SSCALED_PACK32 : constant VkFormat := 54;
VK_FORMAT_A8B8G8R8_UINT_PACK32 : constant VkFormat := 55;
VK_FORMAT_A8B8G8R8_SINT_PACK32 : constant VkFormat := 56;
VK_FORMAT_A8B8G8R8_SRGB_PACK32 : constant VkFormat := 57;
VK_FORMAT_A2R10G10B10_UNORM_PACK32 : constant VkFormat := 58;
VK_FORMAT_A2R10G10B10_SNORM_PACK32 : constant VkFormat := 59;
VK_FORMAT_A2R10G10B10_USCALED_PACK32 : constant VkFormat := 60;
VK_FORMAT_A2R10G10B10_SSCALED_PACK32 : constant VkFormat := 61;
VK_FORMAT_A2R10G10B10_UINT_PACK32 : constant VkFormat := 62;
VK_FORMAT_A2R10G10B10_SINT_PACK32 : constant VkFormat := 63;
VK_FORMAT_A2B10G10R10_UNORM_PACK32 : constant VkFormat := 64;
VK_FORMAT_A2B10G10R10_SNORM_PACK32 : constant VkFormat := 65;
VK_FORMAT_A2B10G10R10_USCALED_PACK32 : constant VkFormat := 66;
VK_FORMAT_A2B10G10R10_SSCALED_PACK32 : constant VkFormat := 67;
VK_FORMAT_A2B10G10R10_UINT_PACK32 : constant VkFormat := 68;
VK_FORMAT_A2B10G10R10_SINT_PACK32 : constant VkFormat := 69;
VK_FORMAT_R16_UNORM : constant VkFormat := 70;
VK_FORMAT_R16_SNORM : constant VkFormat := 71;
VK_FORMAT_R16_USCALED : constant VkFormat := 72;
VK_FORMAT_R16_SSCALED : constant VkFormat := 73;
VK_FORMAT_R16_UINT : constant VkFormat := 74;
VK_FORMAT_R16_SINT : constant VkFormat := 75;
VK_FORMAT_R16_SFLOAT : constant VkFormat := 76;
VK_FORMAT_R16G16_UNORM : constant VkFormat := 77;
VK_FORMAT_R16G16_SNORM : constant VkFormat := 78;
VK_FORMAT_R16G16_USCALED : constant VkFormat := 79;
VK_FORMAT_R16G16_SSCALED : constant VkFormat := 80;
VK_FORMAT_R16G16_UINT : constant VkFormat := 81;
VK_FORMAT_R16G16_SINT : constant VkFormat := 82;
VK_FORMAT_R16G16_SFLOAT : constant VkFormat := 83;
VK_FORMAT_R16G16B16_UNORM : constant VkFormat := 84;
VK_FORMAT_R16G16B16_SNORM : constant VkFormat := 85;
VK_FORMAT_R16G16B16_USCALED : constant VkFormat := 86;
VK_FORMAT_R16G16B16_SSCALED : constant VkFormat := 87;
VK_FORMAT_R16G16B16_UINT : constant VkFormat := 88;
VK_FORMAT_R16G16B16_SINT : constant VkFormat := 89;
VK_FORMAT_R16G16B16_SFLOAT : constant VkFormat := 90;
VK_FORMAT_R16G16B16A16_UNORM : constant VkFormat := 91;
VK_FORMAT_R16G16B16A16_SNORM : constant VkFormat := 92;
VK_FORMAT_R16G16B16A16_USCALED : constant VkFormat := 93;
VK_FORMAT_R16G16B16A16_SSCALED : constant VkFormat := 94;
VK_FORMAT_R16G16B16A16_UINT : constant VkFormat := 95;
VK_FORMAT_R16G16B16A16_SINT : constant VkFormat := 96;
VK_FORMAT_R16G16B16A16_SFLOAT : constant VkFormat := 97;
VK_FORMAT_R32_UINT : constant VkFormat := 98;
VK_FORMAT_R32_SINT : constant VkFormat := 99;
VK_FORMAT_R32_SFLOAT : constant VkFormat := 100;
VK_FORMAT_R32G32_UINT : constant VkFormat := 101;
VK_FORMAT_R32G32_SINT : constant VkFormat := 102;
VK_FORMAT_R32G32_SFLOAT : constant VkFormat := 103;
VK_FORMAT_R32G32B32_UINT : constant VkFormat := 104;
VK_FORMAT_R32G32B32_SINT : constant VkFormat := 105;
VK_FORMAT_R32G32B32_SFLOAT : constant VkFormat := 106;
VK_FORMAT_R32G32B32A32_UINT : constant VkFormat := 107;
VK_FORMAT_R32G32B32A32_SINT : constant VkFormat := 108;
VK_FORMAT_R32G32B32A32_SFLOAT : constant VkFormat := 109;
VK_FORMAT_R64_UINT : constant VkFormat := 110;
VK_FORMAT_R64_SINT : constant VkFormat := 111;
VK_FORMAT_R64_SFLOAT : constant VkFormat := 112;
VK_FORMAT_R64G64_UINT : constant VkFormat := 113;
VK_FORMAT_R64G64_SINT : constant VkFormat := 114;
VK_FORMAT_R64G64_SFLOAT : constant VkFormat := 115;
VK_FORMAT_R64G64B64_UINT : constant VkFormat := 116;
VK_FORMAT_R64G64B64_SINT : constant VkFormat := 117;
VK_FORMAT_R64G64B64_SFLOAT : constant VkFormat := 118;
VK_FORMAT_R64G64B64A64_UINT : constant VkFormat := 119;
VK_FORMAT_R64G64B64A64_SINT : constant VkFormat := 120;
VK_FORMAT_R64G64B64A64_SFLOAT : constant VkFormat := 121;
VK_FORMAT_B10G11R11_UFLOAT_PACK32 : constant VkFormat := 122;
VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 : constant VkFormat := 123;
VK_FORMAT_D16_UNORM : constant VkFormat := 124;
VK_FORMAT_X8_D24_UNORM_PACK32 : constant VkFormat := 125;
VK_FORMAT_D32_SFLOAT : constant VkFormat := 126;
VK_FORMAT_S8_UINT : constant VkFormat := 127;
VK_FORMAT_D16_UNORM_S8_UINT : constant VkFormat := 128;
VK_FORMAT_D24_UNORM_S8_UINT : constant VkFormat := 129;
VK_FORMAT_D32_SFLOAT_S8_UINT : constant VkFormat := 130;
VK_FORMAT_BC1_RGB_UNORM_BLOCK : constant VkFormat := 131;
VK_FORMAT_BC1_RGB_SRGB_BLOCK : constant VkFormat := 132;
VK_FORMAT_BC1_RGBA_UNORM_BLOCK : constant VkFormat := 133;
VK_FORMAT_BC1_RGBA_SRGB_BLOCK : constant VkFormat := 134;
VK_FORMAT_BC2_UNORM_BLOCK : constant VkFormat := 135;
VK_FORMAT_BC2_SRGB_BLOCK : constant VkFormat := 136;
VK_FORMAT_BC3_UNORM_BLOCK : constant VkFormat := 137;
VK_FORMAT_BC3_SRGB_BLOCK : constant VkFormat := 138;
VK_FORMAT_BC4_UNORM_BLOCK : constant VkFormat := 139;
VK_FORMAT_BC4_SNORM_BLOCK : constant VkFormat := 140;
VK_FORMAT_BC5_UNORM_BLOCK : constant VkFormat := 141;
VK_FORMAT_BC5_SNORM_BLOCK : constant VkFormat := 142;
VK_FORMAT_BC6H_UFLOAT_BLOCK : constant VkFormat := 143;
VK_FORMAT_BC6H_SFLOAT_BLOCK : constant VkFormat := 144;
VK_FORMAT_BC7_UNORM_BLOCK : constant VkFormat := 145;
VK_FORMAT_BC7_SRGB_BLOCK : constant VkFormat := 146;
VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK : constant VkFormat := 147;
VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK : constant VkFormat := 148;
VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK : constant VkFormat := 149;
VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK : constant VkFormat := 150;
VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK : constant VkFormat := 151;
VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK : constant VkFormat := 152;
VK_FORMAT_EAC_R11_UNORM_BLOCK : constant VkFormat := 153;
VK_FORMAT_EAC_R11_SNORM_BLOCK : constant VkFormat := 154;
VK_FORMAT_EAC_R11G11_UNORM_BLOCK : constant VkFormat := 155;
VK_FORMAT_EAC_R11G11_SNORM_BLOCK : constant VkFormat := 156;
VK_FORMAT_ASTC_4x4_UNORM_BLOCK : constant VkFormat := 157;
VK_FORMAT_ASTC_4x4_SRGB_BLOCK : constant VkFormat := 158;
VK_FORMAT_ASTC_5x4_UNORM_BLOCK : constant VkFormat := 159;
VK_FORMAT_ASTC_5x4_SRGB_BLOCK : constant VkFormat := 160;
VK_FORMAT_ASTC_5x5_UNORM_BLOCK : constant VkFormat := 161;
VK_FORMAT_ASTC_5x5_SRGB_BLOCK : constant VkFormat := 162;
VK_FORMAT_ASTC_6x5_UNORM_BLOCK : constant VkFormat := 163;
VK_FORMAT_ASTC_6x5_SRGB_BLOCK : constant VkFormat := 164;
VK_FORMAT_ASTC_6x6_UNORM_BLOCK : constant VkFormat := 165;
VK_FORMAT_ASTC_6x6_SRGB_BLOCK : constant VkFormat := 166;
VK_FORMAT_ASTC_8x5_UNORM_BLOCK : constant VkFormat := 167;
VK_FORMAT_ASTC_8x5_SRGB_BLOCK : constant VkFormat := 168;
VK_FORMAT_ASTC_8x6_UNORM_BLOCK : constant VkFormat := 169;
VK_FORMAT_ASTC_8x6_SRGB_BLOCK : constant VkFormat := 170;
VK_FORMAT_ASTC_8x8_UNORM_BLOCK : constant VkFormat := 171;
VK_FORMAT_ASTC_8x8_SRGB_BLOCK : constant VkFormat := 172;
VK_FORMAT_ASTC_10x5_UNORM_BLOCK : constant VkFormat := 173;
VK_FORMAT_ASTC_10x5_SRGB_BLOCK : constant VkFormat := 174;
VK_FORMAT_ASTC_10x6_UNORM_BLOCK : constant VkFormat := 175;
VK_FORMAT_ASTC_10x6_SRGB_BLOCK : constant VkFormat := 176;
VK_FORMAT_ASTC_10x8_UNORM_BLOCK : constant VkFormat := 177;
VK_FORMAT_ASTC_10x8_SRGB_BLOCK : constant VkFormat := 178;
VK_FORMAT_ASTC_10x10_UNORM_BLOCK : constant VkFormat := 179;
VK_FORMAT_ASTC_10x10_SRGB_BLOCK : constant VkFormat := 180;
VK_FORMAT_ASTC_12x10_UNORM_BLOCK : constant VkFormat := 181;
VK_FORMAT_ASTC_12x10_SRGB_BLOCK : constant VkFormat := 182;
VK_FORMAT_ASTC_12x12_UNORM_BLOCK : constant VkFormat := 183;
VK_FORMAT_ASTC_12x12_SRGB_BLOCK : constant VkFormat := 184;
VK_FORMAT_G8B8G8R8_422_UNORM : constant VkFormat := 1000156000;
VK_FORMAT_B8G8R8G8_422_UNORM : constant VkFormat := 1000156001;
VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM : constant VkFormat := 1000156002;
VK_FORMAT_G8_B8R8_2PLANE_420_UNORM : constant VkFormat := 1000156003;
VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM : constant VkFormat := 1000156004;
VK_FORMAT_G8_B8R8_2PLANE_422_UNORM : constant VkFormat := 1000156005;
VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM : constant VkFormat := 1000156006;
VK_FORMAT_R10X6_UNORM_PACK16 : constant VkFormat := 1000156007;
VK_FORMAT_R10X6G10X6_UNORM_2PACK16 : constant VkFormat := 1000156008;
VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16 : constant VkFormat := 1000156009;
VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16 : constant VkFormat := 1000156010;
VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16 : constant VkFormat := 1000156011;
VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16 : constant VkFormat := 1000156012;
VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16 : constant VkFormat := 1000156013;
VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16 : constant VkFormat := 1000156014;
VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16 : constant VkFormat := 1000156015;
VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16 : constant VkFormat := 1000156016;
VK_FORMAT_R12X4_UNORM_PACK16 : constant VkFormat := 1000156017;
VK_FORMAT_R12X4G12X4_UNORM_2PACK16 : constant VkFormat := 1000156018;
VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16 : constant VkFormat := 1000156019;
VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16 : constant VkFormat := 1000156020;
VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16 : constant VkFormat := 1000156021;
VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16 : constant VkFormat := 1000156022;
VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16 : constant VkFormat := 1000156023;
VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16 : constant VkFormat := 1000156024;
VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16 : constant VkFormat := 1000156025;
VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16 : constant VkFormat := 1000156026;
VK_FORMAT_G16B16G16R16_422_UNORM : constant VkFormat := 1000156027;
VK_FORMAT_B16G16R16G16_422_UNORM : constant VkFormat := 1000156028;
VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM : constant VkFormat := 1000156029;
VK_FORMAT_G16_B16R16_2PLANE_420_UNORM : constant VkFormat := 1000156030;
VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM : constant VkFormat := 1000156031;
VK_FORMAT_G16_B16R16_2PLANE_422_UNORM : constant VkFormat := 1000156032;
VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM : constant VkFormat := 1000156033;
VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG : constant VkFormat := 1000054000;
VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG : constant VkFormat := 1000054001;
VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG : constant VkFormat := 1000054002;
VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG : constant VkFormat := 1000054003;
VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG : constant VkFormat := 1000054004;
VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG : constant VkFormat := 1000054005;
VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG : constant VkFormat := 1000054006;
VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG : constant VkFormat := 1000054007;
VK_FORMAT_ASTC_4x4_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066000;
VK_FORMAT_ASTC_5x4_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066001;
VK_FORMAT_ASTC_5x5_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066002;
VK_FORMAT_ASTC_6x5_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066003;
VK_FORMAT_ASTC_6x6_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066004;
VK_FORMAT_ASTC_8x5_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066005;
VK_FORMAT_ASTC_8x6_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066006;
VK_FORMAT_ASTC_8x8_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066007;
VK_FORMAT_ASTC_10x5_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066008;
VK_FORMAT_ASTC_10x6_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066009;
VK_FORMAT_ASTC_10x8_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066010;
VK_FORMAT_ASTC_10x10_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066011;
VK_FORMAT_ASTC_12x10_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066012;
VK_FORMAT_ASTC_12x12_SFLOAT_BLOCK_EXT : constant VkFormat := 1000066013;
VK_FORMAT_A4R4G4B4_UNORM_PACK16_EXT : constant VkFormat := 1000340000;
VK_FORMAT_A4B4G4R4_UNORM_PACK16_EXT : constant VkFormat := 1000340001;
VK_FORMAT_G8B8G8R8_422_UNORM_KHR : constant VkFormat := 1000156000;
VK_FORMAT_B8G8R8G8_422_UNORM_KHR : constant VkFormat := 1000156001;
VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM_KHR : constant VkFormat := 1000156002;
VK_FORMAT_G8_B8R8_2PLANE_420_UNORM_KHR : constant VkFormat := 1000156003;
VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM_KHR : constant VkFormat := 1000156004;
VK_FORMAT_G8_B8R8_2PLANE_422_UNORM_KHR : constant VkFormat := 1000156005;
VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM_KHR : constant VkFormat := 1000156006;
VK_FORMAT_R10X6_UNORM_PACK16_KHR : constant VkFormat := 1000156007;
VK_FORMAT_R10X6G10X6_UNORM_2PACK16_KHR : constant VkFormat := 1000156008;
VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16_KHR : constant VkFormat := 1000156009;
VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16_KHR : constant VkFormat := 1000156010;
VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16_KHR : constant VkFormat := 1000156011;
VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16_KHR : constant VkFormat := 1000156012;
VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16_KHR : constant VkFormat := 1000156013;
VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16_KHR : constant VkFormat := 1000156014;
VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16_KHR : constant VkFormat := 1000156015;
VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16_KHR : constant VkFormat := 1000156016;
VK_FORMAT_R12X4_UNORM_PACK16_KHR : constant VkFormat := 1000156017;
VK_FORMAT_R12X4G12X4_UNORM_2PACK16_KHR : constant VkFormat := 1000156018;
VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16_KHR : constant VkFormat := 1000156019;
VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16_KHR : constant VkFormat := 1000156020;
VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16_KHR : constant VkFormat := 1000156021;
VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16_KHR : constant VkFormat := 1000156022;
VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16_KHR : constant VkFormat := 1000156023;
VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16_KHR : constant VkFormat := 1000156024;
VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16_KHR : constant VkFormat := 1000156025;
VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16_KHR : constant VkFormat := 1000156026;
VK_FORMAT_G16B16G16R16_422_UNORM_KHR : constant VkFormat := 1000156027;
VK_FORMAT_B16G16R16G16_422_UNORM_KHR : constant VkFormat := 1000156028;
VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM_KHR : constant VkFormat := 1000156029;
VK_FORMAT_G16_B16R16_2PLANE_420_UNORM_KHR : constant VkFormat := 1000156030;
VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM_KHR : constant VkFormat := 1000156031;
VK_FORMAT_G16_B16R16_2PLANE_422_UNORM_KHR : constant VkFormat := 1000156032;
VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM_KHR : constant VkFormat := 1000156033;
VK_FORMAT_MAX_ENUM : constant VkFormat := 2147483647; -- vulkan_core.h:862
subtype VkImageTiling is unsigned;
VK_IMAGE_TILING_OPTIMAL : constant VkImageTiling := 0;
VK_IMAGE_TILING_LINEAR : constant VkImageTiling := 1;
VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT : constant VkImageTiling := 1000158000;
VK_IMAGE_TILING_MAX_ENUM : constant VkImageTiling := 2147483647; -- vulkan_core.h:1143
subtype VkImageType is unsigned;
VK_IMAGE_TYPE_1D : constant VkImageType := 0;
VK_IMAGE_TYPE_2D : constant VkImageType := 1;
VK_IMAGE_TYPE_3D : constant VkImageType := 2;
VK_IMAGE_TYPE_MAX_ENUM : constant VkImageType := 2147483647; -- vulkan_core.h:1150
subtype VkPhysicalDeviceType is unsigned;
VK_PHYSICAL_DEVICE_TYPE_OTHER : constant VkPhysicalDeviceType := 0;
VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU : constant VkPhysicalDeviceType := 1;
VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU : constant VkPhysicalDeviceType := 2;
VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU : constant VkPhysicalDeviceType := 3;
VK_PHYSICAL_DEVICE_TYPE_CPU : constant VkPhysicalDeviceType := 4;
VK_PHYSICAL_DEVICE_TYPE_MAX_ENUM : constant VkPhysicalDeviceType := 2147483647; -- vulkan_core.h:1157
subtype VkQueryType is unsigned;
VK_QUERY_TYPE_OCCLUSION : constant VkQueryType := 0;
VK_QUERY_TYPE_PIPELINE_STATISTICS : constant VkQueryType := 1;
VK_QUERY_TYPE_TIMESTAMP : constant VkQueryType := 2;
VK_QUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT : constant VkQueryType := 1000028004;
VK_QUERY_TYPE_PERFORMANCE_QUERY_KHR : constant VkQueryType := 1000116000;
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_KHR : constant VkQueryType := 1000150000;
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_SERIALIZATION_SIZE_KHR : constant VkQueryType := 1000150001;
VK_QUERY_TYPE_ACCELERATION_STRUCTURE_COMPACTED_SIZE_NV : constant VkQueryType := 1000165000;
VK_QUERY_TYPE_PERFORMANCE_QUERY_INTEL : constant VkQueryType := 1000210000;
VK_QUERY_TYPE_MAX_ENUM : constant VkQueryType := 2147483647; -- vulkan_core.h:1166
subtype VkSharingMode is unsigned;
VK_SHARING_MODE_EXCLUSIVE : constant VkSharingMode := 0;
VK_SHARING_MODE_CONCURRENT : constant VkSharingMode := 1;
VK_SHARING_MODE_MAX_ENUM : constant VkSharingMode := 2147483647; -- vulkan_core.h:1179
subtype VkComponentSwizzle is unsigned;
VK_COMPONENT_SWIZZLE_IDENTITY : constant VkComponentSwizzle := 0;
VK_COMPONENT_SWIZZLE_ZERO : constant VkComponentSwizzle := 1;
VK_COMPONENT_SWIZZLE_ONE : constant VkComponentSwizzle := 2;
VK_COMPONENT_SWIZZLE_R : constant VkComponentSwizzle := 3;
VK_COMPONENT_SWIZZLE_G : constant VkComponentSwizzle := 4;
VK_COMPONENT_SWIZZLE_B : constant VkComponentSwizzle := 5;
VK_COMPONENT_SWIZZLE_A : constant VkComponentSwizzle := 6;
VK_COMPONENT_SWIZZLE_MAX_ENUM : constant VkComponentSwizzle := 2147483647; -- vulkan_core.h:1185
subtype VkImageViewType is unsigned;
VK_IMAGE_VIEW_TYPE_1D : constant VkImageViewType := 0;
VK_IMAGE_VIEW_TYPE_2D : constant VkImageViewType := 1;
VK_IMAGE_VIEW_TYPE_3D : constant VkImageViewType := 2;
VK_IMAGE_VIEW_TYPE_CUBE : constant VkImageViewType := 3;
VK_IMAGE_VIEW_TYPE_1D_ARRAY : constant VkImageViewType := 4;
VK_IMAGE_VIEW_TYPE_2D_ARRAY : constant VkImageViewType := 5;
VK_IMAGE_VIEW_TYPE_CUBE_ARRAY : constant VkImageViewType := 6;
VK_IMAGE_VIEW_TYPE_MAX_ENUM : constant VkImageViewType := 2147483647; -- vulkan_core.h:1196
subtype VkBlendFactor is unsigned;
VK_BLEND_FACTOR_ZERO : constant VkBlendFactor := 0;
VK_BLEND_FACTOR_ONE : constant VkBlendFactor := 1;
VK_BLEND_FACTOR_SRC_COLOR : constant VkBlendFactor := 2;
VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR : constant VkBlendFactor := 3;
VK_BLEND_FACTOR_DST_COLOR : constant VkBlendFactor := 4;
VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR : constant VkBlendFactor := 5;
VK_BLEND_FACTOR_SRC_ALPHA : constant VkBlendFactor := 6;
VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA : constant VkBlendFactor := 7;
VK_BLEND_FACTOR_DST_ALPHA : constant VkBlendFactor := 8;
VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA : constant VkBlendFactor := 9;
VK_BLEND_FACTOR_CONSTANT_COLOR : constant VkBlendFactor := 10;
VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR : constant VkBlendFactor := 11;
VK_BLEND_FACTOR_CONSTANT_ALPHA : constant VkBlendFactor := 12;
VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA : constant VkBlendFactor := 13;
VK_BLEND_FACTOR_SRC_ALPHA_SATURATE : constant VkBlendFactor := 14;
VK_BLEND_FACTOR_SRC1_COLOR : constant VkBlendFactor := 15;
VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR : constant VkBlendFactor := 16;
VK_BLEND_FACTOR_SRC1_ALPHA : constant VkBlendFactor := 17;
VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA : constant VkBlendFactor := 18;
VK_BLEND_FACTOR_MAX_ENUM : constant VkBlendFactor := 2147483647; -- vulkan_core.h:1207
subtype VkBlendOp is unsigned;
VK_BLEND_OP_ADD : constant VkBlendOp := 0;
VK_BLEND_OP_SUBTRACT : constant VkBlendOp := 1;
VK_BLEND_OP_REVERSE_SUBTRACT : constant VkBlendOp := 2;
VK_BLEND_OP_MIN : constant VkBlendOp := 3;
VK_BLEND_OP_MAX : constant VkBlendOp := 4;
VK_BLEND_OP_ZERO_EXT : constant VkBlendOp := 1000148000;
VK_BLEND_OP_SRC_EXT : constant VkBlendOp := 1000148001;
VK_BLEND_OP_DST_EXT : constant VkBlendOp := 1000148002;
VK_BLEND_OP_SRC_OVER_EXT : constant VkBlendOp := 1000148003;
VK_BLEND_OP_DST_OVER_EXT : constant VkBlendOp := 1000148004;
VK_BLEND_OP_SRC_IN_EXT : constant VkBlendOp := 1000148005;
VK_BLEND_OP_DST_IN_EXT : constant VkBlendOp := 1000148006;
VK_BLEND_OP_SRC_OUT_EXT : constant VkBlendOp := 1000148007;
VK_BLEND_OP_DST_OUT_EXT : constant VkBlendOp := 1000148008;
VK_BLEND_OP_SRC_ATOP_EXT : constant VkBlendOp := 1000148009;
VK_BLEND_OP_DST_ATOP_EXT : constant VkBlendOp := 1000148010;
VK_BLEND_OP_XOR_EXT : constant VkBlendOp := 1000148011;
VK_BLEND_OP_MULTIPLY_EXT : constant VkBlendOp := 1000148012;
VK_BLEND_OP_SCREEN_EXT : constant VkBlendOp := 1000148013;
VK_BLEND_OP_OVERLAY_EXT : constant VkBlendOp := 1000148014;
VK_BLEND_OP_DARKEN_EXT : constant VkBlendOp := 1000148015;
VK_BLEND_OP_LIGHTEN_EXT : constant VkBlendOp := 1000148016;
VK_BLEND_OP_COLORDODGE_EXT : constant VkBlendOp := 1000148017;
VK_BLEND_OP_COLORBURN_EXT : constant VkBlendOp := 1000148018;
VK_BLEND_OP_HARDLIGHT_EXT : constant VkBlendOp := 1000148019;
VK_BLEND_OP_SOFTLIGHT_EXT : constant VkBlendOp := 1000148020;
VK_BLEND_OP_DIFFERENCE_EXT : constant VkBlendOp := 1000148021;
VK_BLEND_OP_EXCLUSION_EXT : constant VkBlendOp := 1000148022;
VK_BLEND_OP_INVERT_EXT : constant VkBlendOp := 1000148023;
VK_BLEND_OP_INVERT_RGB_EXT : constant VkBlendOp := 1000148024;
VK_BLEND_OP_LINEARDODGE_EXT : constant VkBlendOp := 1000148025;
VK_BLEND_OP_LINEARBURN_EXT : constant VkBlendOp := 1000148026;
VK_BLEND_OP_VIVIDLIGHT_EXT : constant VkBlendOp := 1000148027;
VK_BLEND_OP_LINEARLIGHT_EXT : constant VkBlendOp := 1000148028;
VK_BLEND_OP_PINLIGHT_EXT : constant VkBlendOp := 1000148029;
VK_BLEND_OP_HARDMIX_EXT : constant VkBlendOp := 1000148030;
VK_BLEND_OP_HSL_HUE_EXT : constant VkBlendOp := 1000148031;
VK_BLEND_OP_HSL_SATURATION_EXT : constant VkBlendOp := 1000148032;
VK_BLEND_OP_HSL_COLOR_EXT : constant VkBlendOp := 1000148033;
VK_BLEND_OP_HSL_LUMINOSITY_EXT : constant VkBlendOp := 1000148034;
VK_BLEND_OP_PLUS_EXT : constant VkBlendOp := 1000148035;
VK_BLEND_OP_PLUS_CLAMPED_EXT : constant VkBlendOp := 1000148036;
VK_BLEND_OP_PLUS_CLAMPED_ALPHA_EXT : constant VkBlendOp := 1000148037;
VK_BLEND_OP_PLUS_DARKER_EXT : constant VkBlendOp := 1000148038;
VK_BLEND_OP_MINUS_EXT : constant VkBlendOp := 1000148039;
VK_BLEND_OP_MINUS_CLAMPED_EXT : constant VkBlendOp := 1000148040;
VK_BLEND_OP_CONTRAST_EXT : constant VkBlendOp := 1000148041;
VK_BLEND_OP_INVERT_OVG_EXT : constant VkBlendOp := 1000148042;
VK_BLEND_OP_RED_EXT : constant VkBlendOp := 1000148043;
VK_BLEND_OP_GREEN_EXT : constant VkBlendOp := 1000148044;
VK_BLEND_OP_BLUE_EXT : constant VkBlendOp := 1000148045;
VK_BLEND_OP_MAX_ENUM : constant VkBlendOp := 2147483647; -- vulkan_core.h:1230
subtype VkCompareOp is unsigned;
VK_COMPARE_OP_NEVER : constant VkCompareOp := 0;
VK_COMPARE_OP_LESS : constant VkCompareOp := 1;
VK_COMPARE_OP_EQUAL : constant VkCompareOp := 2;
VK_COMPARE_OP_LESS_OR_EQUAL : constant VkCompareOp := 3;
VK_COMPARE_OP_GREATER : constant VkCompareOp := 4;
VK_COMPARE_OP_NOT_EQUAL : constant VkCompareOp := 5;
VK_COMPARE_OP_GREATER_OR_EQUAL : constant VkCompareOp := 6;
VK_COMPARE_OP_ALWAYS : constant VkCompareOp := 7;
VK_COMPARE_OP_MAX_ENUM : constant VkCompareOp := 2147483647; -- vulkan_core.h:1285
subtype VkDynamicState is unsigned;
VK_DYNAMIC_STATE_VIEWPORT : constant VkDynamicState := 0;
VK_DYNAMIC_STATE_SCISSOR : constant VkDynamicState := 1;
VK_DYNAMIC_STATE_LINE_WIDTH : constant VkDynamicState := 2;
VK_DYNAMIC_STATE_DEPTH_BIAS : constant VkDynamicState := 3;
VK_DYNAMIC_STATE_BLEND_CONSTANTS : constant VkDynamicState := 4;
VK_DYNAMIC_STATE_DEPTH_BOUNDS : constant VkDynamicState := 5;
VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK : constant VkDynamicState := 6;
VK_DYNAMIC_STATE_STENCIL_WRITE_MASK : constant VkDynamicState := 7;
VK_DYNAMIC_STATE_STENCIL_REFERENCE : constant VkDynamicState := 8;
VK_DYNAMIC_STATE_VIEWPORT_W_SCALING_NV : constant VkDynamicState := 1000087000;
VK_DYNAMIC_STATE_DISCARD_RECTANGLE_EXT : constant VkDynamicState := 1000099000;
VK_DYNAMIC_STATE_SAMPLE_LOCATIONS_EXT : constant VkDynamicState := 1000143000;
VK_DYNAMIC_STATE_RAY_TRACING_PIPELINE_STACK_SIZE_KHR : constant VkDynamicState := 1000347000;
VK_DYNAMIC_STATE_VIEWPORT_SHADING_RATE_PALETTE_NV : constant VkDynamicState := 1000164004;
VK_DYNAMIC_STATE_VIEWPORT_COARSE_SAMPLE_ORDER_NV : constant VkDynamicState := 1000164006;
VK_DYNAMIC_STATE_EXCLUSIVE_SCISSOR_NV : constant VkDynamicState := 1000205001;
VK_DYNAMIC_STATE_FRAGMENT_SHADING_RATE_KHR : constant VkDynamicState := 1000226000;
VK_DYNAMIC_STATE_LINE_STIPPLE_EXT : constant VkDynamicState := 1000259000;
VK_DYNAMIC_STATE_CULL_MODE_EXT : constant VkDynamicState := 1000267000;
VK_DYNAMIC_STATE_FRONT_FACE_EXT : constant VkDynamicState := 1000267001;
VK_DYNAMIC_STATE_PRIMITIVE_TOPOLOGY_EXT : constant VkDynamicState := 1000267002;
VK_DYNAMIC_STATE_VIEWPORT_WITH_COUNT_EXT : constant VkDynamicState := 1000267003;
VK_DYNAMIC_STATE_SCISSOR_WITH_COUNT_EXT : constant VkDynamicState := 1000267004;
VK_DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE_EXT : constant VkDynamicState := 1000267005;
VK_DYNAMIC_STATE_DEPTH_TEST_ENABLE_EXT : constant VkDynamicState := 1000267006;
VK_DYNAMIC_STATE_DEPTH_WRITE_ENABLE_EXT : constant VkDynamicState := 1000267007;
VK_DYNAMIC_STATE_DEPTH_COMPARE_OP_EXT : constant VkDynamicState := 1000267008;
VK_DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE_EXT : constant VkDynamicState := 1000267009;
VK_DYNAMIC_STATE_STENCIL_TEST_ENABLE_EXT : constant VkDynamicState := 1000267010;
VK_DYNAMIC_STATE_STENCIL_OP_EXT : constant VkDynamicState := 1000267011;
VK_DYNAMIC_STATE_MAX_ENUM : constant VkDynamicState := 2147483647; -- vulkan_core.h:1297
subtype VkFrontFace is unsigned;
VK_FRONT_FACE_COUNTER_CLOCKWISE : constant VkFrontFace := 0;
VK_FRONT_FACE_CLOCKWISE : constant VkFrontFace := 1;
VK_FRONT_FACE_MAX_ENUM : constant VkFrontFace := 2147483647; -- vulkan_core.h:1331
subtype VkVertexInputRate is unsigned;
VK_VERTEX_INPUT_RATE_VERTEX : constant VkVertexInputRate := 0;
VK_VERTEX_INPUT_RATE_INSTANCE : constant VkVertexInputRate := 1;
VK_VERTEX_INPUT_RATE_MAX_ENUM : constant VkVertexInputRate := 2147483647; -- vulkan_core.h:1337
subtype VkPrimitiveTopology is unsigned;
VK_PRIMITIVE_TOPOLOGY_POINT_LIST : constant VkPrimitiveTopology := 0;
VK_PRIMITIVE_TOPOLOGY_LINE_LIST : constant VkPrimitiveTopology := 1;
VK_PRIMITIVE_TOPOLOGY_LINE_STRIP : constant VkPrimitiveTopology := 2;
VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST : constant VkPrimitiveTopology := 3;
VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP : constant VkPrimitiveTopology := 4;
VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN : constant VkPrimitiveTopology := 5;
VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY : constant VkPrimitiveTopology := 6;
VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY : constant VkPrimitiveTopology := 7;
VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY : constant VkPrimitiveTopology := 8;
VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY : constant VkPrimitiveTopology := 9;
VK_PRIMITIVE_TOPOLOGY_PATCH_LIST : constant VkPrimitiveTopology := 10;
VK_PRIMITIVE_TOPOLOGY_MAX_ENUM : constant VkPrimitiveTopology := 2147483647; -- vulkan_core.h:1343
subtype VkPolygonMode is unsigned;
VK_POLYGON_MODE_FILL : constant VkPolygonMode := 0;
VK_POLYGON_MODE_LINE : constant VkPolygonMode := 1;
VK_POLYGON_MODE_POINT : constant VkPolygonMode := 2;
VK_POLYGON_MODE_FILL_RECTANGLE_NV : constant VkPolygonMode := 1000153000;
VK_POLYGON_MODE_MAX_ENUM : constant VkPolygonMode := 2147483647; -- vulkan_core.h:1358
subtype VkStencilOp is unsigned;
VK_STENCIL_OP_KEEP : constant VkStencilOp := 0;
VK_STENCIL_OP_ZERO : constant VkStencilOp := 1;
VK_STENCIL_OP_REPLACE : constant VkStencilOp := 2;
VK_STENCIL_OP_INCREMENT_AND_CLAMP : constant VkStencilOp := 3;
VK_STENCIL_OP_DECREMENT_AND_CLAMP : constant VkStencilOp := 4;
VK_STENCIL_OP_INVERT : constant VkStencilOp := 5;
VK_STENCIL_OP_INCREMENT_AND_WRAP : constant VkStencilOp := 6;
VK_STENCIL_OP_DECREMENT_AND_WRAP : constant VkStencilOp := 7;
VK_STENCIL_OP_MAX_ENUM : constant VkStencilOp := 2147483647; -- vulkan_core.h:1366
subtype VkLogicOp is unsigned;
VK_LOGIC_OP_CLEAR : constant VkLogicOp := 0;
VK_LOGIC_OP_AND : constant VkLogicOp := 1;
VK_LOGIC_OP_AND_REVERSE : constant VkLogicOp := 2;
VK_LOGIC_OP_COPY : constant VkLogicOp := 3;
VK_LOGIC_OP_AND_INVERTED : constant VkLogicOp := 4;
VK_LOGIC_OP_NO_OP : constant VkLogicOp := 5;
VK_LOGIC_OP_XOR : constant VkLogicOp := 6;
VK_LOGIC_OP_OR : constant VkLogicOp := 7;
VK_LOGIC_OP_NOR : constant VkLogicOp := 8;
VK_LOGIC_OP_EQUIVALENT : constant VkLogicOp := 9;
VK_LOGIC_OP_INVERT : constant VkLogicOp := 10;
VK_LOGIC_OP_OR_REVERSE : constant VkLogicOp := 11;
VK_LOGIC_OP_COPY_INVERTED : constant VkLogicOp := 12;
VK_LOGIC_OP_OR_INVERTED : constant VkLogicOp := 13;
VK_LOGIC_OP_NAND : constant VkLogicOp := 14;
VK_LOGIC_OP_SET : constant VkLogicOp := 15;
VK_LOGIC_OP_MAX_ENUM : constant VkLogicOp := 2147483647; -- vulkan_core.h:1378
subtype VkBorderColor is unsigned;
VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK : constant VkBorderColor := 0;
VK_BORDER_COLOR_INT_TRANSPARENT_BLACK : constant VkBorderColor := 1;
VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK : constant VkBorderColor := 2;
VK_BORDER_COLOR_INT_OPAQUE_BLACK : constant VkBorderColor := 3;
VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE : constant VkBorderColor := 4;
VK_BORDER_COLOR_INT_OPAQUE_WHITE : constant VkBorderColor := 5;
VK_BORDER_COLOR_FLOAT_CUSTOM_EXT : constant VkBorderColor := 1000287003;
VK_BORDER_COLOR_INT_CUSTOM_EXT : constant VkBorderColor := 1000287004;
VK_BORDER_COLOR_MAX_ENUM : constant VkBorderColor := 2147483647; -- vulkan_core.h:1398
subtype VkFilter is unsigned;
VK_FILTER_NEAREST : constant VkFilter := 0;
VK_FILTER_LINEAR : constant VkFilter := 1;
VK_FILTER_CUBIC_IMG : constant VkFilter := 1000015000;
VK_FILTER_CUBIC_EXT : constant VkFilter := 1000015000;
VK_FILTER_MAX_ENUM : constant VkFilter := 2147483647; -- vulkan_core.h:1410
subtype VkSamplerAddressMode is unsigned;
VK_SAMPLER_ADDRESS_MODE_REPEAT : constant VkSamplerAddressMode := 0;
VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT : constant VkSamplerAddressMode := 1;
VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE : constant VkSamplerAddressMode := 2;
VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER : constant VkSamplerAddressMode := 3;
VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE : constant VkSamplerAddressMode := 4;
VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE_KHR : constant VkSamplerAddressMode := 4;
VK_SAMPLER_ADDRESS_MODE_MAX_ENUM : constant VkSamplerAddressMode := 2147483647; -- vulkan_core.h:1418
subtype VkSamplerMipmapMode is unsigned;
VK_SAMPLER_MIPMAP_MODE_NEAREST : constant VkSamplerMipmapMode := 0;
VK_SAMPLER_MIPMAP_MODE_LINEAR : constant VkSamplerMipmapMode := 1;
VK_SAMPLER_MIPMAP_MODE_MAX_ENUM : constant VkSamplerMipmapMode := 2147483647; -- vulkan_core.h:1428
subtype VkDescriptorType is unsigned;
VK_DESCRIPTOR_TYPE_SAMPLER : constant VkDescriptorType := 0;
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER : constant VkDescriptorType := 1;
VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE : constant VkDescriptorType := 2;
VK_DESCRIPTOR_TYPE_STORAGE_IMAGE : constant VkDescriptorType := 3;
VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER : constant VkDescriptorType := 4;
VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER : constant VkDescriptorType := 5;
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER : constant VkDescriptorType := 6;
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER : constant VkDescriptorType := 7;
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC : constant VkDescriptorType := 8;
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC : constant VkDescriptorType := 9;
VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT : constant VkDescriptorType := 10;
VK_DESCRIPTOR_TYPE_INLINE_UNIFORM_BLOCK_EXT : constant VkDescriptorType := 1000138000;
VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_KHR : constant VkDescriptorType := 1000150000;
VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_NV : constant VkDescriptorType := 1000165000;
VK_DESCRIPTOR_TYPE_MUTABLE_VALVE : constant VkDescriptorType := 1000351000;
VK_DESCRIPTOR_TYPE_MAX_ENUM : constant VkDescriptorType := 2147483647; -- vulkan_core.h:1434
subtype VkAttachmentLoadOp is unsigned;
VK_ATTACHMENT_LOAD_OP_LOAD : constant VkAttachmentLoadOp := 0;
VK_ATTACHMENT_LOAD_OP_CLEAR : constant VkAttachmentLoadOp := 1;
VK_ATTACHMENT_LOAD_OP_DONT_CARE : constant VkAttachmentLoadOp := 2;
VK_ATTACHMENT_LOAD_OP_MAX_ENUM : constant VkAttachmentLoadOp := 2147483647; -- vulkan_core.h:1453
subtype VkAttachmentStoreOp is unsigned;
VK_ATTACHMENT_STORE_OP_STORE : constant VkAttachmentStoreOp := 0;
VK_ATTACHMENT_STORE_OP_DONT_CARE : constant VkAttachmentStoreOp := 1;
VK_ATTACHMENT_STORE_OP_NONE_QCOM : constant VkAttachmentStoreOp := 1000301000;
VK_ATTACHMENT_STORE_OP_MAX_ENUM : constant VkAttachmentStoreOp := 2147483647; -- vulkan_core.h:1460
subtype VkPipelineBindPoint is unsigned;
VK_PIPELINE_BIND_POINT_GRAPHICS : constant VkPipelineBindPoint := 0;
VK_PIPELINE_BIND_POINT_COMPUTE : constant VkPipelineBindPoint := 1;
VK_PIPELINE_BIND_POINT_RAY_TRACING_KHR : constant VkPipelineBindPoint := 1000165000;
VK_PIPELINE_BIND_POINT_RAY_TRACING_NV : constant VkPipelineBindPoint := 1000165000;
VK_PIPELINE_BIND_POINT_MAX_ENUM : constant VkPipelineBindPoint := 2147483647; -- vulkan_core.h:1467
subtype VkCommandBufferLevel is unsigned;
VK_COMMAND_BUFFER_LEVEL_PRIMARY : constant VkCommandBufferLevel := 0;
VK_COMMAND_BUFFER_LEVEL_SECONDARY : constant VkCommandBufferLevel := 1;
VK_COMMAND_BUFFER_LEVEL_MAX_ENUM : constant VkCommandBufferLevel := 2147483647; -- vulkan_core.h:1475
subtype VkIndexType is unsigned;
VK_INDEX_TYPE_UINT16 : constant VkIndexType := 0;
VK_INDEX_TYPE_UINT32 : constant VkIndexType := 1;
VK_INDEX_TYPE_NONE_KHR : constant VkIndexType := 1000165000;
VK_INDEX_TYPE_UINT8_EXT : constant VkIndexType := 1000265000;
VK_INDEX_TYPE_NONE_NV : constant VkIndexType := 1000165000;
VK_INDEX_TYPE_MAX_ENUM : constant VkIndexType := 2147483647; -- vulkan_core.h:1481
subtype VkSubpassContents is unsigned;
VK_SUBPASS_CONTENTS_INLINE : constant VkSubpassContents := 0;
VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS : constant VkSubpassContents := 1;
VK_SUBPASS_CONTENTS_MAX_ENUM : constant VkSubpassContents := 2147483647; -- vulkan_core.h:1490
subtype VkAccessFlagBits is unsigned;
VK_ACCESS_INDIRECT_COMMAND_READ_BIT : constant VkAccessFlagBits := 1;
VK_ACCESS_INDEX_READ_BIT : constant VkAccessFlagBits := 2;
VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT : constant VkAccessFlagBits := 4;
VK_ACCESS_UNIFORM_READ_BIT : constant VkAccessFlagBits := 8;
VK_ACCESS_INPUT_ATTACHMENT_READ_BIT : constant VkAccessFlagBits := 16;
VK_ACCESS_SHADER_READ_BIT : constant VkAccessFlagBits := 32;
VK_ACCESS_SHADER_WRITE_BIT : constant VkAccessFlagBits := 64;
VK_ACCESS_COLOR_ATTACHMENT_READ_BIT : constant VkAccessFlagBits := 128;
VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT : constant VkAccessFlagBits := 256;
VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT : constant VkAccessFlagBits := 512;
VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT : constant VkAccessFlagBits := 1024;
VK_ACCESS_TRANSFER_READ_BIT : constant VkAccessFlagBits := 2048;
VK_ACCESS_TRANSFER_WRITE_BIT : constant VkAccessFlagBits := 4096;
VK_ACCESS_HOST_READ_BIT : constant VkAccessFlagBits := 8192;
VK_ACCESS_HOST_WRITE_BIT : constant VkAccessFlagBits := 16384;
VK_ACCESS_MEMORY_READ_BIT : constant VkAccessFlagBits := 32768;
VK_ACCESS_MEMORY_WRITE_BIT : constant VkAccessFlagBits := 65536;
VK_ACCESS_TRANSFORM_FEEDBACK_WRITE_BIT_EXT : constant VkAccessFlagBits := 33554432;
VK_ACCESS_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT : constant VkAccessFlagBits := 67108864;
VK_ACCESS_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT : constant VkAccessFlagBits := 134217728;
VK_ACCESS_CONDITIONAL_RENDERING_READ_BIT_EXT : constant VkAccessFlagBits := 1048576;
VK_ACCESS_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT : constant VkAccessFlagBits := 524288;
VK_ACCESS_ACCELERATION_STRUCTURE_READ_BIT_KHR : constant VkAccessFlagBits := 2097152;
VK_ACCESS_ACCELERATION_STRUCTURE_WRITE_BIT_KHR : constant VkAccessFlagBits := 4194304;
VK_ACCESS_SHADING_RATE_IMAGE_READ_BIT_NV : constant VkAccessFlagBits := 8388608;
VK_ACCESS_FRAGMENT_DENSITY_MAP_READ_BIT_EXT : constant VkAccessFlagBits := 16777216;
VK_ACCESS_COMMAND_PREPROCESS_READ_BIT_NV : constant VkAccessFlagBits := 131072;
VK_ACCESS_COMMAND_PREPROCESS_WRITE_BIT_NV : constant VkAccessFlagBits := 262144;
VK_ACCESS_NONE_KHR : constant VkAccessFlagBits := 0;
VK_ACCESS_ACCELERATION_STRUCTURE_READ_BIT_NV : constant VkAccessFlagBits := 2097152;
VK_ACCESS_ACCELERATION_STRUCTURE_WRITE_BIT_NV : constant VkAccessFlagBits := 4194304;
VK_ACCESS_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR : constant VkAccessFlagBits := 8388608;
VK_ACCESS_FLAG_BITS_MAX_ENUM : constant VkAccessFlagBits := 2147483647; -- vulkan_core.h:1496
subtype VkAccessFlags is VkFlags; -- vulkan_core.h:1531
subtype VkImageAspectFlagBits is unsigned;
VK_IMAGE_ASPECT_COLOR_BIT : constant VkImageAspectFlagBits := 1;
VK_IMAGE_ASPECT_DEPTH_BIT : constant VkImageAspectFlagBits := 2;
VK_IMAGE_ASPECT_STENCIL_BIT : constant VkImageAspectFlagBits := 4;
VK_IMAGE_ASPECT_METADATA_BIT : constant VkImageAspectFlagBits := 8;
VK_IMAGE_ASPECT_PLANE_0_BIT : constant VkImageAspectFlagBits := 16;
VK_IMAGE_ASPECT_PLANE_1_BIT : constant VkImageAspectFlagBits := 32;
VK_IMAGE_ASPECT_PLANE_2_BIT : constant VkImageAspectFlagBits := 64;
VK_IMAGE_ASPECT_MEMORY_PLANE_0_BIT_EXT : constant VkImageAspectFlagBits := 128;
VK_IMAGE_ASPECT_MEMORY_PLANE_1_BIT_EXT : constant VkImageAspectFlagBits := 256;
VK_IMAGE_ASPECT_MEMORY_PLANE_2_BIT_EXT : constant VkImageAspectFlagBits := 512;
VK_IMAGE_ASPECT_MEMORY_PLANE_3_BIT_EXT : constant VkImageAspectFlagBits := 1024;
VK_IMAGE_ASPECT_PLANE_0_BIT_KHR : constant VkImageAspectFlagBits := 16;
VK_IMAGE_ASPECT_PLANE_1_BIT_KHR : constant VkImageAspectFlagBits := 32;
VK_IMAGE_ASPECT_PLANE_2_BIT_KHR : constant VkImageAspectFlagBits := 64;
VK_IMAGE_ASPECT_FLAG_BITS_MAX_ENUM : constant VkImageAspectFlagBits := 2147483647; -- vulkan_core.h:1533
subtype VkImageAspectFlags is VkFlags; -- vulkan_core.h:1550
subtype VkFormatFeatureFlagBits is unsigned;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT : constant VkFormatFeatureFlagBits := 1;
VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT : constant VkFormatFeatureFlagBits := 2;
VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT : constant VkFormatFeatureFlagBits := 4;
VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT : constant VkFormatFeatureFlagBits := 8;
VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT : constant VkFormatFeatureFlagBits := 16;
VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT : constant VkFormatFeatureFlagBits := 32;
VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT : constant VkFormatFeatureFlagBits := 64;
VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT : constant VkFormatFeatureFlagBits := 128;
VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT : constant VkFormatFeatureFlagBits := 256;
VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT : constant VkFormatFeatureFlagBits := 512;
VK_FORMAT_FEATURE_BLIT_SRC_BIT : constant VkFormatFeatureFlagBits := 1024;
VK_FORMAT_FEATURE_BLIT_DST_BIT : constant VkFormatFeatureFlagBits := 2048;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT : constant VkFormatFeatureFlagBits := 4096;
VK_FORMAT_FEATURE_TRANSFER_SRC_BIT : constant VkFormatFeatureFlagBits := 16384;
VK_FORMAT_FEATURE_TRANSFER_DST_BIT : constant VkFormatFeatureFlagBits := 32768;
VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT : constant VkFormatFeatureFlagBits := 131072;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT : constant VkFormatFeatureFlagBits := 262144;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT : constant VkFormatFeatureFlagBits := 524288;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT : constant VkFormatFeatureFlagBits := 1048576;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT : constant VkFormatFeatureFlagBits := 2097152;
VK_FORMAT_FEATURE_DISJOINT_BIT : constant VkFormatFeatureFlagBits := 4194304;
VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT : constant VkFormatFeatureFlagBits := 8388608;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT : constant VkFormatFeatureFlagBits := 65536;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG : constant VkFormatFeatureFlagBits := 8192;
VK_FORMAT_FEATURE_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR : constant VkFormatFeatureFlagBits := 536870912;
VK_FORMAT_FEATURE_FRAGMENT_DENSITY_MAP_BIT_EXT : constant VkFormatFeatureFlagBits := 16777216;
VK_FORMAT_FEATURE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR : constant VkFormatFeatureFlagBits := 1073741824;
VK_FORMAT_FEATURE_TRANSFER_SRC_BIT_KHR : constant VkFormatFeatureFlagBits := 16384;
VK_FORMAT_FEATURE_TRANSFER_DST_BIT_KHR : constant VkFormatFeatureFlagBits := 32768;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT_EXT : constant VkFormatFeatureFlagBits := 65536;
VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT_KHR : constant VkFormatFeatureFlagBits := 131072;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT_KHR : constant VkFormatFeatureFlagBits := 262144;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT_KHR : constant VkFormatFeatureFlagBits := 524288;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT_KHR : constant VkFormatFeatureFlagBits := 1048576;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT_KHR : constant VkFormatFeatureFlagBits := 2097152;
VK_FORMAT_FEATURE_DISJOINT_BIT_KHR : constant VkFormatFeatureFlagBits := 4194304;
VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT_KHR : constant VkFormatFeatureFlagBits := 8388608;
VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT : constant VkFormatFeatureFlagBits := 8192;
VK_FORMAT_FEATURE_FLAG_BITS_MAX_ENUM : constant VkFormatFeatureFlagBits := 2147483647; -- vulkan_core.h:1552
subtype VkFormatFeatureFlags is VkFlags; -- vulkan_core.h:1593
subtype VkImageCreateFlagBits is unsigned;
VK_IMAGE_CREATE_SPARSE_BINDING_BIT : constant VkImageCreateFlagBits := 1;
VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT : constant VkImageCreateFlagBits := 2;
VK_IMAGE_CREATE_SPARSE_ALIASED_BIT : constant VkImageCreateFlagBits := 4;
VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT : constant VkImageCreateFlagBits := 8;
VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT : constant VkImageCreateFlagBits := 16;
VK_IMAGE_CREATE_ALIAS_BIT : constant VkImageCreateFlagBits := 1024;
VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT : constant VkImageCreateFlagBits := 64;
VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT : constant VkImageCreateFlagBits := 32;
VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT : constant VkImageCreateFlagBits := 128;
VK_IMAGE_CREATE_EXTENDED_USAGE_BIT : constant VkImageCreateFlagBits := 256;
VK_IMAGE_CREATE_PROTECTED_BIT : constant VkImageCreateFlagBits := 2048;
VK_IMAGE_CREATE_DISJOINT_BIT : constant VkImageCreateFlagBits := 512;
VK_IMAGE_CREATE_CORNER_SAMPLED_BIT_NV : constant VkImageCreateFlagBits := 8192;
VK_IMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT : constant VkImageCreateFlagBits := 4096;
VK_IMAGE_CREATE_SUBSAMPLED_BIT_EXT : constant VkImageCreateFlagBits := 16384;
VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR : constant VkImageCreateFlagBits := 64;
VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT_KHR : constant VkImageCreateFlagBits := 32;
VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT_KHR : constant VkImageCreateFlagBits := 128;
VK_IMAGE_CREATE_EXTENDED_USAGE_BIT_KHR : constant VkImageCreateFlagBits := 256;
VK_IMAGE_CREATE_DISJOINT_BIT_KHR : constant VkImageCreateFlagBits := 512;
VK_IMAGE_CREATE_ALIAS_BIT_KHR : constant VkImageCreateFlagBits := 1024;
VK_IMAGE_CREATE_FLAG_BITS_MAX_ENUM : constant VkImageCreateFlagBits := 2147483647; -- vulkan_core.h:1595
subtype VkImageCreateFlags is VkFlags; -- vulkan_core.h:1619
subtype VkSampleCountFlagBits is unsigned;
VK_SAMPLE_COUNT_1_BIT : constant VkSampleCountFlagBits := 1;
VK_SAMPLE_COUNT_2_BIT : constant VkSampleCountFlagBits := 2;
VK_SAMPLE_COUNT_4_BIT : constant VkSampleCountFlagBits := 4;
VK_SAMPLE_COUNT_8_BIT : constant VkSampleCountFlagBits := 8;
VK_SAMPLE_COUNT_16_BIT : constant VkSampleCountFlagBits := 16;
VK_SAMPLE_COUNT_32_BIT : constant VkSampleCountFlagBits := 32;
VK_SAMPLE_COUNT_64_BIT : constant VkSampleCountFlagBits := 64;
VK_SAMPLE_COUNT_FLAG_BITS_MAX_ENUM : constant VkSampleCountFlagBits := 2147483647; -- vulkan_core.h:1621
subtype VkSampleCountFlags is VkFlags; -- vulkan_core.h:1631
subtype VkImageUsageFlagBits is unsigned;
VK_IMAGE_USAGE_TRANSFER_SRC_BIT : constant VkImageUsageFlagBits := 1;
VK_IMAGE_USAGE_TRANSFER_DST_BIT : constant VkImageUsageFlagBits := 2;
VK_IMAGE_USAGE_SAMPLED_BIT : constant VkImageUsageFlagBits := 4;
VK_IMAGE_USAGE_STORAGE_BIT : constant VkImageUsageFlagBits := 8;
VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT : constant VkImageUsageFlagBits := 16;
VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT : constant VkImageUsageFlagBits := 32;
VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT : constant VkImageUsageFlagBits := 64;
VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT : constant VkImageUsageFlagBits := 128;
VK_IMAGE_USAGE_SHADING_RATE_IMAGE_BIT_NV : constant VkImageUsageFlagBits := 256;
VK_IMAGE_USAGE_FRAGMENT_DENSITY_MAP_BIT_EXT : constant VkImageUsageFlagBits := 512;
VK_IMAGE_USAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR : constant VkImageUsageFlagBits := 256;
VK_IMAGE_USAGE_FLAG_BITS_MAX_ENUM : constant VkImageUsageFlagBits := 2147483647; -- vulkan_core.h:1633
subtype VkImageUsageFlags is VkFlags; -- vulkan_core.h:1647
subtype VkInstanceCreateFlags is VkFlags; -- vulkan_core.h:1648
subtype VkMemoryHeapFlagBits is unsigned;
VK_MEMORY_HEAP_DEVICE_LOCAL_BIT : constant VkMemoryHeapFlagBits := 1;
VK_MEMORY_HEAP_MULTI_INSTANCE_BIT : constant VkMemoryHeapFlagBits := 2;
VK_MEMORY_HEAP_MULTI_INSTANCE_BIT_KHR : constant VkMemoryHeapFlagBits := 2;
VK_MEMORY_HEAP_FLAG_BITS_MAX_ENUM : constant VkMemoryHeapFlagBits := 2147483647; -- vulkan_core.h:1650
subtype VkMemoryHeapFlags is VkFlags; -- vulkan_core.h:1656
subtype VkMemoryPropertyFlagBits is unsigned;
VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT : constant VkMemoryPropertyFlagBits := 1;
VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT : constant VkMemoryPropertyFlagBits := 2;
VK_MEMORY_PROPERTY_HOST_COHERENT_BIT : constant VkMemoryPropertyFlagBits := 4;
VK_MEMORY_PROPERTY_HOST_CACHED_BIT : constant VkMemoryPropertyFlagBits := 8;
VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT : constant VkMemoryPropertyFlagBits := 16;
VK_MEMORY_PROPERTY_PROTECTED_BIT : constant VkMemoryPropertyFlagBits := 32;
VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD : constant VkMemoryPropertyFlagBits := 64;
VK_MEMORY_PROPERTY_DEVICE_UNCACHED_BIT_AMD : constant VkMemoryPropertyFlagBits := 128;
VK_MEMORY_PROPERTY_FLAG_BITS_MAX_ENUM : constant VkMemoryPropertyFlagBits := 2147483647; -- vulkan_core.h:1658
subtype VkMemoryPropertyFlags is VkFlags; -- vulkan_core.h:1669
subtype VkQueueFlagBits is unsigned;
VK_QUEUE_GRAPHICS_BIT : constant VkQueueFlagBits := 1;
VK_QUEUE_COMPUTE_BIT : constant VkQueueFlagBits := 2;
VK_QUEUE_TRANSFER_BIT : constant VkQueueFlagBits := 4;
VK_QUEUE_SPARSE_BINDING_BIT : constant VkQueueFlagBits := 8;
VK_QUEUE_PROTECTED_BIT : constant VkQueueFlagBits := 16;
VK_QUEUE_FLAG_BITS_MAX_ENUM : constant VkQueueFlagBits := 2147483647; -- vulkan_core.h:1671
subtype VkQueueFlags is VkFlags; -- vulkan_core.h:1679
subtype VkDeviceCreateFlags is VkFlags; -- vulkan_core.h:1680
subtype VkDeviceQueueCreateFlagBits is unsigned;
VK_DEVICE_QUEUE_CREATE_PROTECTED_BIT : constant VkDeviceQueueCreateFlagBits := 1;
VK_DEVICE_QUEUE_CREATE_FLAG_BITS_MAX_ENUM : constant VkDeviceQueueCreateFlagBits := 2147483647; -- vulkan_core.h:1682
subtype VkDeviceQueueCreateFlags is VkFlags; -- vulkan_core.h:1686
subtype VkPipelineStageFlagBits is unsigned;
VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT : constant VkPipelineStageFlagBits := 1;
VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT : constant VkPipelineStageFlagBits := 2;
VK_PIPELINE_STAGE_VERTEX_INPUT_BIT : constant VkPipelineStageFlagBits := 4;
VK_PIPELINE_STAGE_VERTEX_SHADER_BIT : constant VkPipelineStageFlagBits := 8;
VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT : constant VkPipelineStageFlagBits := 16;
VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT : constant VkPipelineStageFlagBits := 32;
VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT : constant VkPipelineStageFlagBits := 64;
VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT : constant VkPipelineStageFlagBits := 128;
VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT : constant VkPipelineStageFlagBits := 256;
VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT : constant VkPipelineStageFlagBits := 512;
VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT : constant VkPipelineStageFlagBits := 1024;
VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT : constant VkPipelineStageFlagBits := 2048;
VK_PIPELINE_STAGE_TRANSFER_BIT : constant VkPipelineStageFlagBits := 4096;
VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT : constant VkPipelineStageFlagBits := 8192;
VK_PIPELINE_STAGE_HOST_BIT : constant VkPipelineStageFlagBits := 16384;
VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT : constant VkPipelineStageFlagBits := 32768;
VK_PIPELINE_STAGE_ALL_COMMANDS_BIT : constant VkPipelineStageFlagBits := 65536;
VK_PIPELINE_STAGE_TRANSFORM_FEEDBACK_BIT_EXT : constant VkPipelineStageFlagBits := 16777216;
VK_PIPELINE_STAGE_CONDITIONAL_RENDERING_BIT_EXT : constant VkPipelineStageFlagBits := 262144;
VK_PIPELINE_STAGE_ACCELERATION_STRUCTURE_BUILD_BIT_KHR : constant VkPipelineStageFlagBits := 33554432;
VK_PIPELINE_STAGE_RAY_TRACING_SHADER_BIT_KHR : constant VkPipelineStageFlagBits := 2097152;
VK_PIPELINE_STAGE_SHADING_RATE_IMAGE_BIT_NV : constant VkPipelineStageFlagBits := 4194304;
VK_PIPELINE_STAGE_TASK_SHADER_BIT_NV : constant VkPipelineStageFlagBits := 524288;
VK_PIPELINE_STAGE_MESH_SHADER_BIT_NV : constant VkPipelineStageFlagBits := 1048576;
VK_PIPELINE_STAGE_FRAGMENT_DENSITY_PROCESS_BIT_EXT : constant VkPipelineStageFlagBits := 8388608;
VK_PIPELINE_STAGE_COMMAND_PREPROCESS_BIT_NV : constant VkPipelineStageFlagBits := 131072;
VK_PIPELINE_STAGE_NONE_KHR : constant VkPipelineStageFlagBits := 0;
VK_PIPELINE_STAGE_RAY_TRACING_SHADER_BIT_NV : constant VkPipelineStageFlagBits := 2097152;
VK_PIPELINE_STAGE_ACCELERATION_STRUCTURE_BUILD_BIT_NV : constant VkPipelineStageFlagBits := 33554432;
VK_PIPELINE_STAGE_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR : constant VkPipelineStageFlagBits := 4194304;
VK_PIPELINE_STAGE_FLAG_BITS_MAX_ENUM : constant VkPipelineStageFlagBits := 2147483647; -- vulkan_core.h:1688
subtype VkPipelineStageFlags is VkFlags; -- vulkan_core.h:1721
subtype VkMemoryMapFlags is VkFlags; -- vulkan_core.h:1722
subtype VkSparseMemoryBindFlagBits is unsigned;
VK_SPARSE_MEMORY_BIND_METADATA_BIT : constant VkSparseMemoryBindFlagBits := 1;
VK_SPARSE_MEMORY_BIND_FLAG_BITS_MAX_ENUM : constant VkSparseMemoryBindFlagBits := 2147483647; -- vulkan_core.h:1724
subtype VkSparseMemoryBindFlags is VkFlags; -- vulkan_core.h:1728
subtype VkSparseImageFormatFlagBits is unsigned;
VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT : constant VkSparseImageFormatFlagBits := 1;
VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT : constant VkSparseImageFormatFlagBits := 2;
VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT : constant VkSparseImageFormatFlagBits := 4;
VK_SPARSE_IMAGE_FORMAT_FLAG_BITS_MAX_ENUM : constant VkSparseImageFormatFlagBits := 2147483647; -- vulkan_core.h:1730
subtype VkSparseImageFormatFlags is VkFlags; -- vulkan_core.h:1736
subtype VkFenceCreateFlagBits is unsigned;
VK_FENCE_CREATE_SIGNALED_BIT : constant VkFenceCreateFlagBits := 1;
VK_FENCE_CREATE_FLAG_BITS_MAX_ENUM : constant VkFenceCreateFlagBits := 2147483647; -- vulkan_core.h:1738
subtype VkFenceCreateFlags is VkFlags; -- vulkan_core.h:1742
subtype VkSemaphoreCreateFlags is VkFlags; -- vulkan_core.h:1743
subtype VkEventCreateFlagBits is unsigned;
VK_EVENT_CREATE_DEVICE_ONLY_BIT_KHR : constant VkEventCreateFlagBits := 1;
VK_EVENT_CREATE_FLAG_BITS_MAX_ENUM : constant VkEventCreateFlagBits := 2147483647; -- vulkan_core.h:1745
subtype VkEventCreateFlags is VkFlags; -- vulkan_core.h:1749
subtype VkQueryPipelineStatisticFlagBits is unsigned;
VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT : constant VkQueryPipelineStatisticFlagBits := 1;
VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT : constant VkQueryPipelineStatisticFlagBits := 2;
VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT : constant VkQueryPipelineStatisticFlagBits := 4;
VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_INVOCATIONS_BIT : constant VkQueryPipelineStatisticFlagBits := 8;
VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT : constant VkQueryPipelineStatisticFlagBits := 16;
VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT : constant VkQueryPipelineStatisticFlagBits := 32;
VK_QUERY_PIPELINE_STATISTIC_CLIPPING_PRIMITIVES_BIT : constant VkQueryPipelineStatisticFlagBits := 64;
VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT : constant VkQueryPipelineStatisticFlagBits := 128;
VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_CONTROL_SHADER_PATCHES_BIT : constant VkQueryPipelineStatisticFlagBits := 256;
VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_EVALUATION_SHADER_INVOCATIONS_BIT : constant VkQueryPipelineStatisticFlagBits := 512;
VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT : constant VkQueryPipelineStatisticFlagBits := 1024;
VK_QUERY_PIPELINE_STATISTIC_FLAG_BITS_MAX_ENUM : constant VkQueryPipelineStatisticFlagBits := 2147483647; -- vulkan_core.h:1751
subtype VkQueryPipelineStatisticFlags is VkFlags; -- vulkan_core.h:1765
subtype VkQueryPoolCreateFlags is VkFlags; -- vulkan_core.h:1766
subtype VkQueryResultFlagBits is unsigned;
VK_QUERY_RESULT_64_BIT : constant VkQueryResultFlagBits := 1;
VK_QUERY_RESULT_WAIT_BIT : constant VkQueryResultFlagBits := 2;
VK_QUERY_RESULT_WITH_AVAILABILITY_BIT : constant VkQueryResultFlagBits := 4;
VK_QUERY_RESULT_PARTIAL_BIT : constant VkQueryResultFlagBits := 8;
VK_QUERY_RESULT_FLAG_BITS_MAX_ENUM : constant VkQueryResultFlagBits := 2147483647; -- vulkan_core.h:1768
subtype VkQueryResultFlags is VkFlags; -- vulkan_core.h:1775
subtype VkBufferCreateFlagBits is unsigned;
VK_BUFFER_CREATE_SPARSE_BINDING_BIT : constant VkBufferCreateFlagBits := 1;
VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT : constant VkBufferCreateFlagBits := 2;
VK_BUFFER_CREATE_SPARSE_ALIASED_BIT : constant VkBufferCreateFlagBits := 4;
VK_BUFFER_CREATE_PROTECTED_BIT : constant VkBufferCreateFlagBits := 8;
VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT : constant VkBufferCreateFlagBits := 16;
VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_EXT : constant VkBufferCreateFlagBits := 16;
VK_BUFFER_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR : constant VkBufferCreateFlagBits := 16;
VK_BUFFER_CREATE_FLAG_BITS_MAX_ENUM : constant VkBufferCreateFlagBits := 2147483647; -- vulkan_core.h:1777
subtype VkBufferCreateFlags is VkFlags; -- vulkan_core.h:1787
subtype VkBufferUsageFlagBits is unsigned;
VK_BUFFER_USAGE_TRANSFER_SRC_BIT : constant VkBufferUsageFlagBits := 1;
VK_BUFFER_USAGE_TRANSFER_DST_BIT : constant VkBufferUsageFlagBits := 2;
VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT : constant VkBufferUsageFlagBits := 4;
VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT : constant VkBufferUsageFlagBits := 8;
VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT : constant VkBufferUsageFlagBits := 16;
VK_BUFFER_USAGE_STORAGE_BUFFER_BIT : constant VkBufferUsageFlagBits := 32;
VK_BUFFER_USAGE_INDEX_BUFFER_BIT : constant VkBufferUsageFlagBits := 64;
VK_BUFFER_USAGE_VERTEX_BUFFER_BIT : constant VkBufferUsageFlagBits := 128;
VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT : constant VkBufferUsageFlagBits := 256;
VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT : constant VkBufferUsageFlagBits := 131072;
VK_BUFFER_USAGE_TRANSFORM_FEEDBACK_BUFFER_BIT_EXT : constant VkBufferUsageFlagBits := 2048;
VK_BUFFER_USAGE_TRANSFORM_FEEDBACK_COUNTER_BUFFER_BIT_EXT : constant VkBufferUsageFlagBits := 4096;
VK_BUFFER_USAGE_CONDITIONAL_RENDERING_BIT_EXT : constant VkBufferUsageFlagBits := 512;
VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_BUILD_INPUT_READ_ONLY_BIT_KHR : constant VkBufferUsageFlagBits := 524288;
VK_BUFFER_USAGE_ACCELERATION_STRUCTURE_STORAGE_BIT_KHR : constant VkBufferUsageFlagBits := 1048576;
VK_BUFFER_USAGE_SHADER_BINDING_TABLE_BIT_KHR : constant VkBufferUsageFlagBits := 1024;
VK_BUFFER_USAGE_RAY_TRACING_BIT_NV : constant VkBufferUsageFlagBits := 1024;
VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT_EXT : constant VkBufferUsageFlagBits := 131072;
VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT_KHR : constant VkBufferUsageFlagBits := 131072;
VK_BUFFER_USAGE_FLAG_BITS_MAX_ENUM : constant VkBufferUsageFlagBits := 2147483647; -- vulkan_core.h:1789
subtype VkBufferUsageFlags is VkFlags; -- vulkan_core.h:1811
subtype VkBufferViewCreateFlags is VkFlags; -- vulkan_core.h:1812
subtype VkImageViewCreateFlagBits is unsigned;
VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DYNAMIC_BIT_EXT : constant VkImageViewCreateFlagBits := 1;
VK_IMAGE_VIEW_CREATE_FRAGMENT_DENSITY_MAP_DEFERRED_BIT_EXT : constant VkImageViewCreateFlagBits := 2;
VK_IMAGE_VIEW_CREATE_FLAG_BITS_MAX_ENUM : constant VkImageViewCreateFlagBits := 2147483647; -- vulkan_core.h:1814
subtype VkImageViewCreateFlags is VkFlags; -- vulkan_core.h:1819
subtype VkShaderModuleCreateFlagBits is unsigned;
VK_SHADER_MODULE_CREATE_FLAG_BITS_MAX_ENUM : constant VkShaderModuleCreateFlagBits := 2147483647; -- vulkan_core.h:1821
subtype VkShaderModuleCreateFlags is VkFlags; -- vulkan_core.h:1824
subtype VkPipelineCacheCreateFlagBits is unsigned;
VK_PIPELINE_CACHE_CREATE_EXTERNALLY_SYNCHRONIZED_BIT_EXT : constant VkPipelineCacheCreateFlagBits := 1;
VK_PIPELINE_CACHE_CREATE_FLAG_BITS_MAX_ENUM : constant VkPipelineCacheCreateFlagBits := 2147483647; -- vulkan_core.h:1826
subtype VkPipelineCacheCreateFlags is VkFlags; -- vulkan_core.h:1830
subtype VkColorComponentFlagBits is unsigned;
VK_COLOR_COMPONENT_R_BIT : constant VkColorComponentFlagBits := 1;
VK_COLOR_COMPONENT_G_BIT : constant VkColorComponentFlagBits := 2;
VK_COLOR_COMPONENT_B_BIT : constant VkColorComponentFlagBits := 4;
VK_COLOR_COMPONENT_A_BIT : constant VkColorComponentFlagBits := 8;
VK_COLOR_COMPONENT_FLAG_BITS_MAX_ENUM : constant VkColorComponentFlagBits := 2147483647; -- vulkan_core.h:1832
subtype VkColorComponentFlags is VkFlags; -- vulkan_core.h:1839
subtype VkPipelineCreateFlagBits is unsigned;
VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT : constant VkPipelineCreateFlagBits := 1;
VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT : constant VkPipelineCreateFlagBits := 2;
VK_PIPELINE_CREATE_DERIVATIVE_BIT : constant VkPipelineCreateFlagBits := 4;
VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT : constant VkPipelineCreateFlagBits := 8;
VK_PIPELINE_CREATE_DISPATCH_BASE_BIT : constant VkPipelineCreateFlagBits := 16;
VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_ANY_HIT_SHADERS_BIT_KHR : constant VkPipelineCreateFlagBits := 16384;
VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_CLOSEST_HIT_SHADERS_BIT_KHR : constant VkPipelineCreateFlagBits := 32768;
VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_MISS_SHADERS_BIT_KHR : constant VkPipelineCreateFlagBits := 65536;
VK_PIPELINE_CREATE_RAY_TRACING_NO_NULL_INTERSECTION_SHADERS_BIT_KHR : constant VkPipelineCreateFlagBits := 131072;
VK_PIPELINE_CREATE_RAY_TRACING_SKIP_TRIANGLES_BIT_KHR : constant VkPipelineCreateFlagBits := 4096;
VK_PIPELINE_CREATE_RAY_TRACING_SKIP_AABBS_BIT_KHR : constant VkPipelineCreateFlagBits := 8192;
VK_PIPELINE_CREATE_RAY_TRACING_SHADER_GROUP_HANDLE_CAPTURE_REPLAY_BIT_KHR : constant VkPipelineCreateFlagBits := 524288;
VK_PIPELINE_CREATE_DEFER_COMPILE_BIT_NV : constant VkPipelineCreateFlagBits := 32;
VK_PIPELINE_CREATE_CAPTURE_STATISTICS_BIT_KHR : constant VkPipelineCreateFlagBits := 64;
VK_PIPELINE_CREATE_CAPTURE_INTERNAL_REPRESENTATIONS_BIT_KHR : constant VkPipelineCreateFlagBits := 128;
VK_PIPELINE_CREATE_INDIRECT_BINDABLE_BIT_NV : constant VkPipelineCreateFlagBits := 262144;
VK_PIPELINE_CREATE_LIBRARY_BIT_KHR : constant VkPipelineCreateFlagBits := 2048;
VK_PIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT_EXT : constant VkPipelineCreateFlagBits := 256;
VK_PIPELINE_CREATE_EARLY_RETURN_ON_FAILURE_BIT_EXT : constant VkPipelineCreateFlagBits := 512;
VK_PIPELINE_CREATE_DISPATCH_BASE : constant VkPipelineCreateFlagBits := 16;
VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT_KHR : constant VkPipelineCreateFlagBits := 8;
VK_PIPELINE_CREATE_DISPATCH_BASE_KHR : constant VkPipelineCreateFlagBits := 16;
VK_PIPELINE_CREATE_FLAG_BITS_MAX_ENUM : constant VkPipelineCreateFlagBits := 2147483647; -- vulkan_core.h:1841
subtype VkPipelineCreateFlags is VkFlags; -- vulkan_core.h:1866
subtype VkPipelineShaderStageCreateFlagBits is unsigned;
VK_PIPELINE_SHADER_STAGE_CREATE_ALLOW_VARYING_SUBGROUP_SIZE_BIT_EXT : constant VkPipelineShaderStageCreateFlagBits := 1;
VK_PIPELINE_SHADER_STAGE_CREATE_REQUIRE_FULL_SUBGROUPS_BIT_EXT : constant VkPipelineShaderStageCreateFlagBits := 2;
VK_PIPELINE_SHADER_STAGE_CREATE_FLAG_BITS_MAX_ENUM : constant VkPipelineShaderStageCreateFlagBits := 2147483647; -- vulkan_core.h:1868
subtype VkPipelineShaderStageCreateFlags is VkFlags; -- vulkan_core.h:1873
subtype VkShaderStageFlagBits is unsigned;
VK_SHADER_STAGE_VERTEX_BIT : constant VkShaderStageFlagBits := 1;
VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT : constant VkShaderStageFlagBits := 2;
VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT : constant VkShaderStageFlagBits := 4;
VK_SHADER_STAGE_GEOMETRY_BIT : constant VkShaderStageFlagBits := 8;
VK_SHADER_STAGE_FRAGMENT_BIT : constant VkShaderStageFlagBits := 16;
VK_SHADER_STAGE_COMPUTE_BIT : constant VkShaderStageFlagBits := 32;
VK_SHADER_STAGE_ALL_GRAPHICS : constant VkShaderStageFlagBits := 31;
VK_SHADER_STAGE_ALL : constant VkShaderStageFlagBits := 2147483647;
VK_SHADER_STAGE_RAYGEN_BIT_KHR : constant VkShaderStageFlagBits := 256;
VK_SHADER_STAGE_ANY_HIT_BIT_KHR : constant VkShaderStageFlagBits := 512;
VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR : constant VkShaderStageFlagBits := 1024;
VK_SHADER_STAGE_MISS_BIT_KHR : constant VkShaderStageFlagBits := 2048;
VK_SHADER_STAGE_INTERSECTION_BIT_KHR : constant VkShaderStageFlagBits := 4096;
VK_SHADER_STAGE_CALLABLE_BIT_KHR : constant VkShaderStageFlagBits := 8192;
VK_SHADER_STAGE_TASK_BIT_NV : constant VkShaderStageFlagBits := 64;
VK_SHADER_STAGE_MESH_BIT_NV : constant VkShaderStageFlagBits := 128;
VK_SHADER_STAGE_RAYGEN_BIT_NV : constant VkShaderStageFlagBits := 256;
VK_SHADER_STAGE_ANY_HIT_BIT_NV : constant VkShaderStageFlagBits := 512;
VK_SHADER_STAGE_CLOSEST_HIT_BIT_NV : constant VkShaderStageFlagBits := 1024;
VK_SHADER_STAGE_MISS_BIT_NV : constant VkShaderStageFlagBits := 2048;
VK_SHADER_STAGE_INTERSECTION_BIT_NV : constant VkShaderStageFlagBits := 4096;
VK_SHADER_STAGE_CALLABLE_BIT_NV : constant VkShaderStageFlagBits := 8192;
VK_SHADER_STAGE_FLAG_BITS_MAX_ENUM : constant VkShaderStageFlagBits := 2147483647; -- vulkan_core.h:1875
subtype VkCullModeFlagBits is unsigned;
VK_CULL_MODE_NONE : constant VkCullModeFlagBits := 0;
VK_CULL_MODE_FRONT_BIT : constant VkCullModeFlagBits := 1;
VK_CULL_MODE_BACK_BIT : constant VkCullModeFlagBits := 2;
VK_CULL_MODE_FRONT_AND_BACK : constant VkCullModeFlagBits := 3;
VK_CULL_MODE_FLAG_BITS_MAX_ENUM : constant VkCullModeFlagBits := 2147483647; -- vulkan_core.h:1901
subtype VkCullModeFlags is VkFlags; -- vulkan_core.h:1908
subtype VkPipelineVertexInputStateCreateFlags is VkFlags; -- vulkan_core.h:1909
subtype VkPipelineInputAssemblyStateCreateFlags is VkFlags; -- vulkan_core.h:1910
subtype VkPipelineTessellationStateCreateFlags is VkFlags; -- vulkan_core.h:1911
subtype VkPipelineViewportStateCreateFlags is VkFlags; -- vulkan_core.h:1912
subtype VkPipelineRasterizationStateCreateFlags is VkFlags; -- vulkan_core.h:1913
subtype VkPipelineMultisampleStateCreateFlags is VkFlags; -- vulkan_core.h:1914
subtype VkPipelineDepthStencilStateCreateFlags is VkFlags; -- vulkan_core.h:1915
subtype VkPipelineColorBlendStateCreateFlags is VkFlags; -- vulkan_core.h:1916
subtype VkPipelineDynamicStateCreateFlags is VkFlags; -- vulkan_core.h:1917
subtype VkPipelineLayoutCreateFlags is VkFlags; -- vulkan_core.h:1918
subtype VkShaderStageFlags is VkFlags; -- vulkan_core.h:1919
subtype VkSamplerCreateFlagBits is unsigned;
VK_SAMPLER_CREATE_SUBSAMPLED_BIT_EXT : constant VkSamplerCreateFlagBits := 1;
VK_SAMPLER_CREATE_SUBSAMPLED_COARSE_RECONSTRUCTION_BIT_EXT : constant VkSamplerCreateFlagBits := 2;
VK_SAMPLER_CREATE_FLAG_BITS_MAX_ENUM : constant VkSamplerCreateFlagBits := 2147483647; -- vulkan_core.h:1921
subtype VkSamplerCreateFlags is VkFlags; -- vulkan_core.h:1926
subtype VkDescriptorPoolCreateFlagBits is unsigned;
VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT : constant VkDescriptorPoolCreateFlagBits := 1;
VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT : constant VkDescriptorPoolCreateFlagBits := 2;
VK_DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_VALVE : constant VkDescriptorPoolCreateFlagBits := 4;
VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT_EXT : constant VkDescriptorPoolCreateFlagBits := 2;
VK_DESCRIPTOR_POOL_CREATE_FLAG_BITS_MAX_ENUM : constant VkDescriptorPoolCreateFlagBits := 2147483647; -- vulkan_core.h:1928
subtype VkDescriptorPoolCreateFlags is VkFlags; -- vulkan_core.h:1935
subtype VkDescriptorPoolResetFlags is VkFlags; -- vulkan_core.h:1936
subtype VkDescriptorSetLayoutCreateFlagBits is unsigned;
VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT : constant VkDescriptorSetLayoutCreateFlagBits := 2;
VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR : constant VkDescriptorSetLayoutCreateFlagBits := 1;
VK_DESCRIPTOR_SET_LAYOUT_CREATE_HOST_ONLY_POOL_BIT_VALVE : constant VkDescriptorSetLayoutCreateFlagBits := 4;
VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT : constant VkDescriptorSetLayoutCreateFlagBits := 2;
VK_DESCRIPTOR_SET_LAYOUT_CREATE_FLAG_BITS_MAX_ENUM : constant VkDescriptorSetLayoutCreateFlagBits := 2147483647; -- vulkan_core.h:1938
subtype VkDescriptorSetLayoutCreateFlags is VkFlags; -- vulkan_core.h:1945
subtype VkAttachmentDescriptionFlagBits is unsigned;
VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT : constant VkAttachmentDescriptionFlagBits := 1;
VK_ATTACHMENT_DESCRIPTION_FLAG_BITS_MAX_ENUM : constant VkAttachmentDescriptionFlagBits := 2147483647; -- vulkan_core.h:1947
subtype VkAttachmentDescriptionFlags is VkFlags; -- vulkan_core.h:1951
subtype VkDependencyFlagBits is unsigned;
VK_DEPENDENCY_BY_REGION_BIT : constant VkDependencyFlagBits := 1;
VK_DEPENDENCY_DEVICE_GROUP_BIT : constant VkDependencyFlagBits := 4;
VK_DEPENDENCY_VIEW_LOCAL_BIT : constant VkDependencyFlagBits := 2;
VK_DEPENDENCY_VIEW_LOCAL_BIT_KHR : constant VkDependencyFlagBits := 2;
VK_DEPENDENCY_DEVICE_GROUP_BIT_KHR : constant VkDependencyFlagBits := 4;
VK_DEPENDENCY_FLAG_BITS_MAX_ENUM : constant VkDependencyFlagBits := 2147483647; -- vulkan_core.h:1953
subtype VkDependencyFlags is VkFlags; -- vulkan_core.h:1961
subtype VkFramebufferCreateFlagBits is unsigned;
VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT : constant VkFramebufferCreateFlagBits := 1;
VK_FRAMEBUFFER_CREATE_IMAGELESS_BIT_KHR : constant VkFramebufferCreateFlagBits := 1;
VK_FRAMEBUFFER_CREATE_FLAG_BITS_MAX_ENUM : constant VkFramebufferCreateFlagBits := 2147483647; -- vulkan_core.h:1963
subtype VkFramebufferCreateFlags is VkFlags; -- vulkan_core.h:1968
subtype VkRenderPassCreateFlagBits is unsigned;
VK_RENDER_PASS_CREATE_TRANSFORM_BIT_QCOM : constant VkRenderPassCreateFlagBits := 2;
VK_RENDER_PASS_CREATE_FLAG_BITS_MAX_ENUM : constant VkRenderPassCreateFlagBits := 2147483647; -- vulkan_core.h:1970
subtype VkRenderPassCreateFlags is VkFlags; -- vulkan_core.h:1974
subtype VkSubpassDescriptionFlagBits is unsigned;
VK_SUBPASS_DESCRIPTION_PER_VIEW_ATTRIBUTES_BIT_NVX : constant VkSubpassDescriptionFlagBits := 1;
VK_SUBPASS_DESCRIPTION_PER_VIEW_POSITION_X_ONLY_BIT_NVX : constant VkSubpassDescriptionFlagBits := 2;
VK_SUBPASS_DESCRIPTION_FRAGMENT_REGION_BIT_QCOM : constant VkSubpassDescriptionFlagBits := 4;
VK_SUBPASS_DESCRIPTION_SHADER_RESOLVE_BIT_QCOM : constant VkSubpassDescriptionFlagBits := 8;
VK_SUBPASS_DESCRIPTION_FLAG_BITS_MAX_ENUM : constant VkSubpassDescriptionFlagBits := 2147483647; -- vulkan_core.h:1976
subtype VkSubpassDescriptionFlags is VkFlags; -- vulkan_core.h:1983
subtype VkCommandPoolCreateFlagBits is unsigned;
VK_COMMAND_POOL_CREATE_TRANSIENT_BIT : constant VkCommandPoolCreateFlagBits := 1;
VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT : constant VkCommandPoolCreateFlagBits := 2;
VK_COMMAND_POOL_CREATE_PROTECTED_BIT : constant VkCommandPoolCreateFlagBits := 4;
VK_COMMAND_POOL_CREATE_FLAG_BITS_MAX_ENUM : constant VkCommandPoolCreateFlagBits := 2147483647; -- vulkan_core.h:1985
subtype VkCommandPoolCreateFlags is VkFlags; -- vulkan_core.h:1991
subtype VkCommandPoolResetFlagBits is unsigned;
VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT : constant VkCommandPoolResetFlagBits := 1;
VK_COMMAND_POOL_RESET_FLAG_BITS_MAX_ENUM : constant VkCommandPoolResetFlagBits := 2147483647; -- vulkan_core.h:1993
subtype VkCommandPoolResetFlags is VkFlags; -- vulkan_core.h:1997
subtype VkCommandBufferUsageFlagBits is unsigned;
VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT : constant VkCommandBufferUsageFlagBits := 1;
VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT : constant VkCommandBufferUsageFlagBits := 2;
VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT : constant VkCommandBufferUsageFlagBits := 4;
VK_COMMAND_BUFFER_USAGE_FLAG_BITS_MAX_ENUM : constant VkCommandBufferUsageFlagBits := 2147483647; -- vulkan_core.h:1999
subtype VkCommandBufferUsageFlags is VkFlags; -- vulkan_core.h:2005
subtype VkQueryControlFlagBits is unsigned;
VK_QUERY_CONTROL_PRECISE_BIT : constant VkQueryControlFlagBits := 1;
VK_QUERY_CONTROL_FLAG_BITS_MAX_ENUM : constant VkQueryControlFlagBits := 2147483647; -- vulkan_core.h:2007
subtype VkQueryControlFlags is VkFlags; -- vulkan_core.h:2011
subtype VkCommandBufferResetFlagBits is unsigned;
VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT : constant VkCommandBufferResetFlagBits := 1;
VK_COMMAND_BUFFER_RESET_FLAG_BITS_MAX_ENUM : constant VkCommandBufferResetFlagBits := 2147483647; -- vulkan_core.h:2013
subtype VkCommandBufferResetFlags is VkFlags; -- vulkan_core.h:2017
subtype VkStencilFaceFlagBits is unsigned;
VK_STENCIL_FACE_FRONT_BIT : constant VkStencilFaceFlagBits := 1;
VK_STENCIL_FACE_BACK_BIT : constant VkStencilFaceFlagBits := 2;
VK_STENCIL_FACE_FRONT_AND_BACK : constant VkStencilFaceFlagBits := 3;
VK_STENCIL_FRONT_AND_BACK : constant VkStencilFaceFlagBits := 3;
VK_STENCIL_FACE_FLAG_BITS_MAX_ENUM : constant VkStencilFaceFlagBits := 2147483647; -- vulkan_core.h:2019
subtype VkStencilFaceFlags is VkFlags; -- vulkan_core.h:2026
type VkExtent2D is record
width : aliased stdint_h.uint32_t; -- vulkan_core.h:2028
height : aliased stdint_h.uint32_t; -- vulkan_core.h:2029
end record;
pragma Convention (C_Pass_By_Copy, VkExtent2D); -- vulkan_core.h:2027
type VkExtent3D is record
width : aliased stdint_h.uint32_t; -- vulkan_core.h:2033
height : aliased stdint_h.uint32_t; -- vulkan_core.h:2034
depth : aliased stdint_h.uint32_t; -- vulkan_core.h:2035
end record;
pragma Convention (C_Pass_By_Copy, VkExtent3D); -- vulkan_core.h:2032
type VkOffset2D is record
x : aliased stdint_h.int32_t; -- vulkan_core.h:2039
y : aliased stdint_h.int32_t; -- vulkan_core.h:2040
end record;
pragma Convention (C_Pass_By_Copy, VkOffset2D); -- vulkan_core.h:2038
type VkOffset3D is record
x : aliased stdint_h.int32_t; -- vulkan_core.h:2044
y : aliased stdint_h.int32_t; -- vulkan_core.h:2045
z : aliased stdint_h.int32_t; -- vulkan_core.h:2046
end record;
pragma Convention (C_Pass_By_Copy, VkOffset3D); -- vulkan_core.h:2043
type VkRect2D is record
offset : aliased VkOffset2D; -- vulkan_core.h:2050
extent : aliased VkExtent2D; -- vulkan_core.h:2051
end record;
pragma Convention (C_Pass_By_Copy, VkRect2D); -- vulkan_core.h:2049
type VkBaseInStructure is record
sType : aliased VkStructureType; -- vulkan_core.h:2055
pNext : access constant VkBaseInStructure; -- vulkan_core.h:2056
end record;
pragma Convention (C_Pass_By_Copy, VkBaseInStructure); -- vulkan_core.h:2054
type VkBaseOutStructure is record
sType : aliased VkStructureType; -- vulkan_core.h:2060
pNext : access VkBaseOutStructure; -- vulkan_core.h:2061
end record;
pragma Convention (C_Pass_By_Copy, VkBaseOutStructure); -- vulkan_core.h:2059
type VkBufferMemoryBarrier is record
sType : aliased VkStructureType; -- vulkan_core.h:2065
pNext : System.Address; -- vulkan_core.h:2066
srcAccessMask : aliased VkAccessFlags; -- vulkan_core.h:2067
dstAccessMask : aliased VkAccessFlags; -- vulkan_core.h:2068
srcQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2069
dstQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2070
buffer : VkBuffer; -- vulkan_core.h:2071
offset : aliased VkDeviceSize; -- vulkan_core.h:2072
size : aliased VkDeviceSize; -- vulkan_core.h:2073
end record;
pragma Convention (C_Pass_By_Copy, VkBufferMemoryBarrier); -- vulkan_core.h:2064
type VkDispatchIndirectCommand is record
x : aliased stdint_h.uint32_t; -- vulkan_core.h:2077
y : aliased stdint_h.uint32_t; -- vulkan_core.h:2078
z : aliased stdint_h.uint32_t; -- vulkan_core.h:2079
end record;
pragma Convention (C_Pass_By_Copy, VkDispatchIndirectCommand); -- vulkan_core.h:2076
type VkDrawIndexedIndirectCommand is record
indexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2083
instanceCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2084
firstIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2085
vertexOffset : aliased stdint_h.int32_t; -- vulkan_core.h:2086
firstInstance : aliased stdint_h.uint32_t; -- vulkan_core.h:2087
end record;
pragma Convention (C_Pass_By_Copy, VkDrawIndexedIndirectCommand); -- vulkan_core.h:2082
type VkDrawIndirectCommand is record
vertexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2091
instanceCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2092
firstVertex : aliased stdint_h.uint32_t; -- vulkan_core.h:2093
firstInstance : aliased stdint_h.uint32_t; -- vulkan_core.h:2094
end record;
pragma Convention (C_Pass_By_Copy, VkDrawIndirectCommand); -- vulkan_core.h:2090
type VkImageSubresourceRange is record
aspectMask : aliased VkImageAspectFlags; -- vulkan_core.h:2098
baseMipLevel : aliased stdint_h.uint32_t; -- vulkan_core.h:2099
levelCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2100
baseArrayLayer : aliased stdint_h.uint32_t; -- vulkan_core.h:2101
layerCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2102
end record;
pragma Convention (C_Pass_By_Copy, VkImageSubresourceRange); -- vulkan_core.h:2097
type VkImageMemoryBarrier is record
sType : aliased VkStructureType; -- vulkan_core.h:2106
pNext : System.Address; -- vulkan_core.h:2107
srcAccessMask : aliased VkAccessFlags; -- vulkan_core.h:2108
dstAccessMask : aliased VkAccessFlags; -- vulkan_core.h:2109
oldLayout : aliased VkImageLayout; -- vulkan_core.h:2110
newLayout : aliased VkImageLayout; -- vulkan_core.h:2111
srcQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2112
dstQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2113
image : VkImage; -- vulkan_core.h:2114
subresourceRange : aliased VkImageSubresourceRange; -- vulkan_core.h:2115
end record;
pragma Convention (C_Pass_By_Copy, VkImageMemoryBarrier); -- vulkan_core.h:2105
type VkMemoryBarrier is record
sType : aliased VkStructureType; -- vulkan_core.h:2119
pNext : System.Address; -- vulkan_core.h:2120
srcAccessMask : aliased VkAccessFlags; -- vulkan_core.h:2121
dstAccessMask : aliased VkAccessFlags; -- vulkan_core.h:2122
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryBarrier); -- vulkan_core.h:2118
type PFN_vkAllocationFunction is access function
(arg1 : System.Address;
arg2 : crtdefs_h.size_t;
arg3 : crtdefs_h.size_t;
arg4 : VkSystemAllocationScope) return System.Address;
pragma Convention (C, PFN_vkAllocationFunction); -- vulkan_core.h:2125
type PFN_vkFreeFunction is access procedure (arg1 : System.Address; arg2 : System.Address);
pragma Convention (C, PFN_vkFreeFunction); -- vulkan_core.h:2131
type PFN_vkInternalAllocationNotification is access procedure
(arg1 : System.Address;
arg2 : crtdefs_h.size_t;
arg3 : VkInternalAllocationType;
arg4 : VkSystemAllocationScope);
pragma Convention (C, PFN_vkInternalAllocationNotification); -- vulkan_core.h:2135
type PFN_vkInternalFreeNotification is access procedure
(arg1 : System.Address;
arg2 : crtdefs_h.size_t;
arg3 : VkInternalAllocationType;
arg4 : VkSystemAllocationScope);
pragma Convention (C, PFN_vkInternalFreeNotification); -- vulkan_core.h:2141
type PFN_vkReallocationFunction is access function
(arg1 : System.Address;
arg2 : System.Address;
arg3 : crtdefs_h.size_t;
arg4 : crtdefs_h.size_t;
arg5 : VkSystemAllocationScope) return System.Address;
pragma Convention (C, PFN_vkReallocationFunction); -- vulkan_core.h:2147
type PFN_vkVoidFunction is access procedure;
pragma Convention (C, PFN_vkVoidFunction); -- vulkan_core.h:2154
type VkAllocationCallbacks is record
pUserData : System.Address; -- vulkan_core.h:2156
pfnAllocation : PFN_vkAllocationFunction; -- vulkan_core.h:2157
pfnReallocation : PFN_vkReallocationFunction; -- vulkan_core.h:2158
pfnFree : PFN_vkFreeFunction; -- vulkan_core.h:2159
pfnInternalAllocation : PFN_vkInternalAllocationNotification; -- vulkan_core.h:2160
pfnInternalFree : PFN_vkInternalFreeNotification; -- vulkan_core.h:2161
end record;
pragma Convention (C_Pass_By_Copy, VkAllocationCallbacks); -- vulkan_core.h:2155
type VkApplicationInfo is record
sType : aliased VkStructureType := VK_STRUCTURE_TYPE_APPLICATION_INFO;
pNext : System.Address := System.Null_Address ;
pApplicationName : Interfaces.C.Strings.chars_ptr := Interfaces.C.Strings.Null_Ptr;
applicationVersion : aliased stdint_h.uint32_t := 0;
pEngineName : Interfaces.C.Strings.chars_ptr := Interfaces.C.Strings.Null_Ptr;
engineVersion : aliased stdint_h.uint32_t := 0;
apiVersion : aliased stdint_h.uint32_t; -- In absense of macro to use here, should force using software to initialize.
end record;
pragma Convention (C_Pass_By_Copy, VkApplicationInfo); -- vulkan_core.h:2164
type VkFormatProperties is record
linearTilingFeatures : aliased VkFormatFeatureFlags; -- vulkan_core.h:2175
optimalTilingFeatures : aliased VkFormatFeatureFlags; -- vulkan_core.h:2176
bufferFeatures : aliased VkFormatFeatureFlags; -- vulkan_core.h:2177
end record;
pragma Convention (C_Pass_By_Copy, VkFormatProperties); -- vulkan_core.h:2174
type VkImageFormatProperties is record
maxExtent : aliased VkExtent3D; -- vulkan_core.h:2181
maxMipLevels : aliased stdint_h.uint32_t; -- vulkan_core.h:2182
maxArrayLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:2183
sampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2184
maxResourceSize : aliased VkDeviceSize; -- vulkan_core.h:2185
end record;
pragma Convention (C_Pass_By_Copy, VkImageFormatProperties); -- vulkan_core.h:2180
type VkInstanceCreateInfo is record
sType : aliased VkStructureType := VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
pNext : System.Address := System.Null_Address ;
flags : aliased VkInstanceCreateFlags := 0;
pApplicationInfo : System.Address := System.Null_Address ;
enabledLayerCount : aliased stdint_h.uint32_t := 0;
ppEnabledLayerNames : System.Address := System.Null_Address ;
enabledExtensionCount : aliased stdint_h.uint32_t := 0;
ppEnabledExtensionNames : System.Address := System.Null_Address ;
end record;
pragma Convention (C_Pass_By_Copy, VkInstanceCreateInfo); -- vulkan_core.h:2188
type VkMemoryHeap is record
size : aliased VkDeviceSize; -- vulkan_core.h:2200
flags : aliased VkMemoryHeapFlags; -- vulkan_core.h:2201
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryHeap); -- vulkan_core.h:2199
type VkMemoryType is record
propertyFlags : aliased VkMemoryPropertyFlags; -- vulkan_core.h:2205
heapIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2206
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryType); -- vulkan_core.h:2204
type VkPhysicalDeviceFeatures is record
robustBufferAccess : aliased VkBool32; -- vulkan_core.h:2210
fullDrawIndexUint32 : aliased VkBool32; -- vulkan_core.h:2211
imageCubeArray : aliased VkBool32; -- vulkan_core.h:2212
independentBlend : aliased VkBool32; -- vulkan_core.h:2213
geometryShader : aliased VkBool32; -- vulkan_core.h:2214
tessellationShader : aliased VkBool32; -- vulkan_core.h:2215
sampleRateShading : aliased VkBool32; -- vulkan_core.h:2216
dualSrcBlend : aliased VkBool32; -- vulkan_core.h:2217
logicOp : aliased VkBool32; -- vulkan_core.h:2218
multiDrawIndirect : aliased VkBool32; -- vulkan_core.h:2219
drawIndirectFirstInstance : aliased VkBool32; -- vulkan_core.h:2220
depthClamp : aliased VkBool32; -- vulkan_core.h:2221
depthBiasClamp : aliased VkBool32; -- vulkan_core.h:2222
fillModeNonSolid : aliased VkBool32; -- vulkan_core.h:2223
depthBounds : aliased VkBool32; -- vulkan_core.h:2224
wideLines : aliased VkBool32; -- vulkan_core.h:2225
largePoints : aliased VkBool32; -- vulkan_core.h:2226
alphaToOne : aliased VkBool32; -- vulkan_core.h:2227
multiViewport : aliased VkBool32; -- vulkan_core.h:2228
samplerAnisotropy : aliased VkBool32; -- vulkan_core.h:2229
textureCompressionETC2 : aliased VkBool32; -- vulkan_core.h:2230
textureCompressionASTC_LDR : aliased VkBool32; -- vulkan_core.h:2231
textureCompressionBC : aliased VkBool32; -- vulkan_core.h:2232
occlusionQueryPrecise : aliased VkBool32; -- vulkan_core.h:2233
pipelineStatisticsQuery : aliased VkBool32; -- vulkan_core.h:2234
vertexPipelineStoresAndAtomics : aliased VkBool32; -- vulkan_core.h:2235
fragmentStoresAndAtomics : aliased VkBool32; -- vulkan_core.h:2236
shaderTessellationAndGeometryPointSize : aliased VkBool32; -- vulkan_core.h:2237
shaderImageGatherExtended : aliased VkBool32; -- vulkan_core.h:2238
shaderStorageImageExtendedFormats : aliased VkBool32; -- vulkan_core.h:2239
shaderStorageImageMultisample : aliased VkBool32; -- vulkan_core.h:2240
shaderStorageImageReadWithoutFormat : aliased VkBool32; -- vulkan_core.h:2241
shaderStorageImageWriteWithoutFormat : aliased VkBool32; -- vulkan_core.h:2242
shaderUniformBufferArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:2243
shaderSampledImageArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:2244
shaderStorageBufferArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:2245
shaderStorageImageArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:2246
shaderClipDistance : aliased VkBool32; -- vulkan_core.h:2247
shaderCullDistance : aliased VkBool32; -- vulkan_core.h:2248
shaderFloat64 : aliased VkBool32; -- vulkan_core.h:2249
shaderInt64 : aliased VkBool32; -- vulkan_core.h:2250
shaderInt16 : aliased VkBool32; -- vulkan_core.h:2251
shaderResourceResidency : aliased VkBool32; -- vulkan_core.h:2252
shaderResourceMinLod : aliased VkBool32; -- vulkan_core.h:2253
sparseBinding : aliased VkBool32; -- vulkan_core.h:2254
sparseResidencyBuffer : aliased VkBool32; -- vulkan_core.h:2255
sparseResidencyImage2D : aliased VkBool32; -- vulkan_core.h:2256
sparseResidencyImage3D : aliased VkBool32; -- vulkan_core.h:2257
sparseResidency2Samples : aliased VkBool32; -- vulkan_core.h:2258
sparseResidency4Samples : aliased VkBool32; -- vulkan_core.h:2259
sparseResidency8Samples : aliased VkBool32; -- vulkan_core.h:2260
sparseResidency16Samples : aliased VkBool32; -- vulkan_core.h:2261
sparseResidencyAliased : aliased VkBool32; -- vulkan_core.h:2262
variableMultisampleRate : aliased VkBool32; -- vulkan_core.h:2263
inheritedQueries : aliased VkBool32; -- vulkan_core.h:2264
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFeatures); -- vulkan_core.h:2209
type VkPhysicalDeviceLimits_maxComputeWorkGroupCount_array is array (0 .. 2) of aliased stdint_h.uint32_t;
type VkPhysicalDeviceLimits_maxComputeWorkGroupSize_array is array (0 .. 2) of aliased stdint_h.uint32_t;
type VkPhysicalDeviceLimits_maxViewportDimensions_array is array (0 .. 1) of aliased stdint_h.uint32_t;
type VkPhysicalDeviceLimits_viewportBoundsRange_array is array (0 .. 1) of aliased float;
type VkPhysicalDeviceLimits_pointSizeRange_array is array (0 .. 1) of aliased float;
type VkPhysicalDeviceLimits_lineWidthRange_array is array (0 .. 1) of aliased float;
type VkPhysicalDeviceLimits is record
maxImageDimension1D : aliased stdint_h.uint32_t; -- vulkan_core.h:2268
maxImageDimension2D : aliased stdint_h.uint32_t; -- vulkan_core.h:2269
maxImageDimension3D : aliased stdint_h.uint32_t; -- vulkan_core.h:2270
maxImageDimensionCube : aliased stdint_h.uint32_t; -- vulkan_core.h:2271
maxImageArrayLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:2272
maxTexelBufferElements : aliased stdint_h.uint32_t; -- vulkan_core.h:2273
maxUniformBufferRange : aliased stdint_h.uint32_t; -- vulkan_core.h:2274
maxStorageBufferRange : aliased stdint_h.uint32_t; -- vulkan_core.h:2275
maxPushConstantsSize : aliased stdint_h.uint32_t; -- vulkan_core.h:2276
maxMemoryAllocationCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2277
maxSamplerAllocationCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2278
bufferImageGranularity : aliased VkDeviceSize; -- vulkan_core.h:2279
sparseAddressSpaceSize : aliased VkDeviceSize; -- vulkan_core.h:2280
maxBoundDescriptorSets : aliased stdint_h.uint32_t; -- vulkan_core.h:2281
maxPerStageDescriptorSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:2282
maxPerStageDescriptorUniformBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:2283
maxPerStageDescriptorStorageBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:2284
maxPerStageDescriptorSampledImages : aliased stdint_h.uint32_t; -- vulkan_core.h:2285
maxPerStageDescriptorStorageImages : aliased stdint_h.uint32_t; -- vulkan_core.h:2286
maxPerStageDescriptorInputAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:2287
maxPerStageResources : aliased stdint_h.uint32_t; -- vulkan_core.h:2288
maxDescriptorSetSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:2289
maxDescriptorSetUniformBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:2290
maxDescriptorSetUniformBuffersDynamic : aliased stdint_h.uint32_t; -- vulkan_core.h:2291
maxDescriptorSetStorageBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:2292
maxDescriptorSetStorageBuffersDynamic : aliased stdint_h.uint32_t; -- vulkan_core.h:2293
maxDescriptorSetSampledImages : aliased stdint_h.uint32_t; -- vulkan_core.h:2294
maxDescriptorSetStorageImages : aliased stdint_h.uint32_t; -- vulkan_core.h:2295
maxDescriptorSetInputAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:2296
maxVertexInputAttributes : aliased stdint_h.uint32_t; -- vulkan_core.h:2297
maxVertexInputBindings : aliased stdint_h.uint32_t; -- vulkan_core.h:2298
maxVertexInputAttributeOffset : aliased stdint_h.uint32_t; -- vulkan_core.h:2299
maxVertexInputBindingStride : aliased stdint_h.uint32_t; -- vulkan_core.h:2300
maxVertexOutputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2301
maxTessellationGenerationLevel : aliased stdint_h.uint32_t; -- vulkan_core.h:2302
maxTessellationPatchSize : aliased stdint_h.uint32_t; -- vulkan_core.h:2303
maxTessellationControlPerVertexInputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2304
maxTessellationControlPerVertexOutputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2305
maxTessellationControlPerPatchOutputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2306
maxTessellationControlTotalOutputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2307
maxTessellationEvaluationInputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2308
maxTessellationEvaluationOutputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2309
maxGeometryShaderInvocations : aliased stdint_h.uint32_t; -- vulkan_core.h:2310
maxGeometryInputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2311
maxGeometryOutputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2312
maxGeometryOutputVertices : aliased stdint_h.uint32_t; -- vulkan_core.h:2313
maxGeometryTotalOutputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2314
maxFragmentInputComponents : aliased stdint_h.uint32_t; -- vulkan_core.h:2315
maxFragmentOutputAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:2316
maxFragmentDualSrcAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:2317
maxFragmentCombinedOutputResources : aliased stdint_h.uint32_t; -- vulkan_core.h:2318
maxComputeSharedMemorySize : aliased stdint_h.uint32_t; -- vulkan_core.h:2319
maxComputeWorkGroupCount : aliased VkPhysicalDeviceLimits_maxComputeWorkGroupCount_array; -- vulkan_core.h:2320
maxComputeWorkGroupInvocations : aliased stdint_h.uint32_t; -- vulkan_core.h:2321
maxComputeWorkGroupSize : aliased VkPhysicalDeviceLimits_maxComputeWorkGroupSize_array; -- vulkan_core.h:2322
subPixelPrecisionBits : aliased stdint_h.uint32_t; -- vulkan_core.h:2323
subTexelPrecisionBits : aliased stdint_h.uint32_t; -- vulkan_core.h:2324
mipmapPrecisionBits : aliased stdint_h.uint32_t; -- vulkan_core.h:2325
maxDrawIndexedIndexValue : aliased stdint_h.uint32_t; -- vulkan_core.h:2326
maxDrawIndirectCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2327
maxSamplerLodBias : aliased float; -- vulkan_core.h:2328
maxSamplerAnisotropy : aliased float; -- vulkan_core.h:2329
maxViewports : aliased stdint_h.uint32_t; -- vulkan_core.h:2330
maxViewportDimensions : aliased VkPhysicalDeviceLimits_maxViewportDimensions_array; -- vulkan_core.h:2331
viewportBoundsRange : aliased VkPhysicalDeviceLimits_viewportBoundsRange_array; -- vulkan_core.h:2332
viewportSubPixelBits : aliased stdint_h.uint32_t; -- vulkan_core.h:2333
minMemoryMapAlignment : aliased crtdefs_h.size_t; -- vulkan_core.h:2334
minTexelBufferOffsetAlignment : aliased VkDeviceSize; -- vulkan_core.h:2335
minUniformBufferOffsetAlignment : aliased VkDeviceSize; -- vulkan_core.h:2336
minStorageBufferOffsetAlignment : aliased VkDeviceSize; -- vulkan_core.h:2337
minTexelOffset : aliased stdint_h.int32_t; -- vulkan_core.h:2338
maxTexelOffset : aliased stdint_h.uint32_t; -- vulkan_core.h:2339
minTexelGatherOffset : aliased stdint_h.int32_t; -- vulkan_core.h:2340
maxTexelGatherOffset : aliased stdint_h.uint32_t; -- vulkan_core.h:2341
minInterpolationOffset : aliased float; -- vulkan_core.h:2342
maxInterpolationOffset : aliased float; -- vulkan_core.h:2343
subPixelInterpolationOffsetBits : aliased stdint_h.uint32_t; -- vulkan_core.h:2344
maxFramebufferWidth : aliased stdint_h.uint32_t; -- vulkan_core.h:2345
maxFramebufferHeight : aliased stdint_h.uint32_t; -- vulkan_core.h:2346
maxFramebufferLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:2347
framebufferColorSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2348
framebufferDepthSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2349
framebufferStencilSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2350
framebufferNoAttachmentsSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2351
maxColorAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:2352
sampledImageColorSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2353
sampledImageIntegerSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2354
sampledImageDepthSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2355
sampledImageStencilSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2356
storageImageSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:2357
maxSampleMaskWords : aliased stdint_h.uint32_t; -- vulkan_core.h:2358
timestampComputeAndGraphics : aliased VkBool32; -- vulkan_core.h:2359
timestampPeriod : aliased float; -- vulkan_core.h:2360
maxClipDistances : aliased stdint_h.uint32_t; -- vulkan_core.h:2361
maxCullDistances : aliased stdint_h.uint32_t; -- vulkan_core.h:2362
maxCombinedClipAndCullDistances : aliased stdint_h.uint32_t; -- vulkan_core.h:2363
discreteQueuePriorities : aliased stdint_h.uint32_t; -- vulkan_core.h:2364
pointSizeRange : aliased VkPhysicalDeviceLimits_pointSizeRange_array; -- vulkan_core.h:2365
lineWidthRange : aliased VkPhysicalDeviceLimits_lineWidthRange_array; -- vulkan_core.h:2366
pointSizeGranularity : aliased float; -- vulkan_core.h:2367
lineWidthGranularity : aliased float; -- vulkan_core.h:2368
strictLines : aliased VkBool32; -- vulkan_core.h:2369
standardSampleLocations : aliased VkBool32; -- vulkan_core.h:2370
optimalBufferCopyOffsetAlignment : aliased VkDeviceSize; -- vulkan_core.h:2371
optimalBufferCopyRowPitchAlignment : aliased VkDeviceSize; -- vulkan_core.h:2372
nonCoherentAtomSize : aliased VkDeviceSize; -- vulkan_core.h:2373
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceLimits); -- vulkan_core.h:2267
type VkPhysicalDeviceMemoryProperties_memoryTypes_array is array (0 .. 31) of aliased VkMemoryType;
type VkPhysicalDeviceMemoryProperties_memoryHeaps_array is array (0 .. 15) of aliased VkMemoryHeap;
type VkPhysicalDeviceMemoryProperties is record
memoryTypeCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2377
memoryTypes : aliased VkPhysicalDeviceMemoryProperties_memoryTypes_array; -- vulkan_core.h:2378
memoryHeapCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2379
memoryHeaps : aliased VkPhysicalDeviceMemoryProperties_memoryHeaps_array; -- vulkan_core.h:2380
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMemoryProperties); -- vulkan_core.h:2376
type VkPhysicalDeviceSparseProperties is record
residencyStandard2DBlockShape : aliased VkBool32; -- vulkan_core.h:2384
residencyStandard2DMultisampleBlockShape : aliased VkBool32; -- vulkan_core.h:2385
residencyStandard3DBlockShape : aliased VkBool32; -- vulkan_core.h:2386
residencyAlignedMipSize : aliased VkBool32; -- vulkan_core.h:2387
residencyNonResidentStrict : aliased VkBool32; -- vulkan_core.h:2388
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSparseProperties); -- vulkan_core.h:2383
subtype VkPhysicalDeviceProperties_deviceName_array is Interfaces.C.char_array (0 .. 255);
type VkPhysicalDeviceProperties_pipelineCacheUUID_array is array (0 .. 15) of aliased stdint_h.uint8_t;
type VkPhysicalDeviceProperties is record
apiVersion : aliased stdint_h.uint32_t; -- vulkan_core.h:2392
driverVersion : aliased stdint_h.uint32_t; -- vulkan_core.h:2393
vendorID : aliased stdint_h.uint32_t; -- vulkan_core.h:2394
deviceID : aliased stdint_h.uint32_t; -- vulkan_core.h:2395
deviceType : aliased VkPhysicalDeviceType; -- vulkan_core.h:2396
deviceName : aliased VkPhysicalDeviceProperties_deviceName_array; -- vulkan_core.h:2397
pipelineCacheUUID : aliased VkPhysicalDeviceProperties_pipelineCacheUUID_array; -- vulkan_core.h:2398
limits : aliased VkPhysicalDeviceLimits; -- vulkan_core.h:2399
sparseProperties : aliased VkPhysicalDeviceSparseProperties; -- vulkan_core.h:2400
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceProperties); -- vulkan_core.h:2391
type VkQueueFamilyProperties is record
queueFlags : aliased VkQueueFlags; -- vulkan_core.h:2404
queueCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2405
timestampValidBits : aliased stdint_h.uint32_t; -- vulkan_core.h:2406
minImageTransferGranularity : aliased VkExtent3D; -- vulkan_core.h:2407
end record;
pragma Convention (C_Pass_By_Copy, VkQueueFamilyProperties); -- vulkan_core.h:2403
type VkDeviceQueueCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2411
pNext : System.Address; -- vulkan_core.h:2412
flags : aliased VkDeviceQueueCreateFlags; -- vulkan_core.h:2413
queueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2414
queueCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2415
pQueuePriorities : access float; -- vulkan_core.h:2416
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceQueueCreateInfo); -- vulkan_core.h:2410
type VkDeviceCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2420
pNext : System.Address; -- vulkan_core.h:2421
flags : aliased VkDeviceCreateFlags; -- vulkan_core.h:2422
queueCreateInfoCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2423
pQueueCreateInfos : System.Address; -- vulkan_core.h:2424
enabledLayerCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2425
ppEnabledLayerNames : System.Address; -- vulkan_core.h:2426
enabledExtensionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2427
ppEnabledExtensionNames : System.Address; -- vulkan_core.h:2428
pEnabledFeatures : System.Address; -- vulkan_core.h:2429
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceCreateInfo); -- vulkan_core.h:2419
subtype VkExtensionProperties_extensionName_array is Interfaces.C.char_array (0 .. 255);
type VkExtensionProperties is record
extensionName : aliased VkExtensionProperties_extensionName_array; -- vulkan_core.h:2433
specVersion : aliased stdint_h.uint32_t; -- vulkan_core.h:2434
end record;
pragma Convention (C_Pass_By_Copy, VkExtensionProperties); -- vulkan_core.h:2432
subtype VkLayerProperties_layerName_array is Interfaces.C.char_array (0 .. 255);
subtype VkLayerProperties_description_array is Interfaces.C.char_array (0 .. 255);
type VkLayerProperties is record
layerName : aliased VkLayerProperties_layerName_array; -- vulkan_core.h:2438
specVersion : aliased stdint_h.uint32_t; -- vulkan_core.h:2439
implementationVersion : aliased stdint_h.uint32_t; -- vulkan_core.h:2440
description : aliased VkLayerProperties_description_array; -- vulkan_core.h:2441
end record;
pragma Convention (C, VkLayerProperties); -- vulkan_core.h:2437
type VkSubmitInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2445
pNext : System.Address; -- vulkan_core.h:2446
waitSemaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2447
pWaitSemaphores : System.Address; -- vulkan_core.h:2448
pWaitDstStageMask : access VkPipelineStageFlags; -- vulkan_core.h:2449
commandBufferCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2450
pCommandBuffers : System.Address; -- vulkan_core.h:2451
signalSemaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2452
pSignalSemaphores : System.Address; -- vulkan_core.h:2453
end record;
pragma Convention (C_Pass_By_Copy, VkSubmitInfo); -- vulkan_core.h:2444
type VkMappedMemoryRange is record
sType : aliased VkStructureType; -- vulkan_core.h:2457
pNext : System.Address; -- vulkan_core.h:2458
memory : VkDeviceMemory; -- vulkan_core.h:2459
offset : aliased VkDeviceSize; -- vulkan_core.h:2460
size : aliased VkDeviceSize; -- vulkan_core.h:2461
end record;
pragma Convention (C_Pass_By_Copy, VkMappedMemoryRange); -- vulkan_core.h:2456
type VkMemoryAllocateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2465
pNext : System.Address; -- vulkan_core.h:2466
allocationSize : aliased VkDeviceSize; -- vulkan_core.h:2467
memoryTypeIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:2468
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryAllocateInfo); -- vulkan_core.h:2464
type VkMemoryRequirements is record
size : aliased VkDeviceSize; -- vulkan_core.h:2472
alignment : aliased VkDeviceSize; -- vulkan_core.h:2473
memoryTypeBits : aliased stdint_h.uint32_t; -- vulkan_core.h:2474
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryRequirements); -- vulkan_core.h:2471
type VkSparseMemoryBind is record
resourceOffset : aliased VkDeviceSize; -- vulkan_core.h:2478
size : aliased VkDeviceSize; -- vulkan_core.h:2479
memory : VkDeviceMemory; -- vulkan_core.h:2480
memoryOffset : aliased VkDeviceSize; -- vulkan_core.h:2481
flags : aliased VkSparseMemoryBindFlags; -- vulkan_core.h:2482
end record;
pragma Convention (C_Pass_By_Copy, VkSparseMemoryBind); -- vulkan_core.h:2477
type VkSparseBufferMemoryBindInfo is record
buffer : VkBuffer; -- vulkan_core.h:2486
bindCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2487
pBinds : System.Address; -- vulkan_core.h:2488
end record;
pragma Convention (C_Pass_By_Copy, VkSparseBufferMemoryBindInfo); -- vulkan_core.h:2485
type VkSparseImageOpaqueMemoryBindInfo is record
image : VkImage; -- vulkan_core.h:2492
bindCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2493
pBinds : System.Address; -- vulkan_core.h:2494
end record;
pragma Convention (C_Pass_By_Copy, VkSparseImageOpaqueMemoryBindInfo); -- vulkan_core.h:2491
type VkImageSubresource is record
aspectMask : aliased VkImageAspectFlags; -- vulkan_core.h:2498
mipLevel : aliased stdint_h.uint32_t; -- vulkan_core.h:2499
arrayLayer : aliased stdint_h.uint32_t; -- vulkan_core.h:2500
end record;
pragma Convention (C_Pass_By_Copy, VkImageSubresource); -- vulkan_core.h:2497
type VkSparseImageMemoryBind is record
subresource : aliased VkImageSubresource; -- vulkan_core.h:2504
offset : aliased VkOffset3D; -- vulkan_core.h:2505
extent : aliased VkExtent3D; -- vulkan_core.h:2506
memory : VkDeviceMemory; -- vulkan_core.h:2507
memoryOffset : aliased VkDeviceSize; -- vulkan_core.h:2508
flags : aliased VkSparseMemoryBindFlags; -- vulkan_core.h:2509
end record;
pragma Convention (C_Pass_By_Copy, VkSparseImageMemoryBind); -- vulkan_core.h:2503
type VkSparseImageMemoryBindInfo is record
image : VkImage; -- vulkan_core.h:2513
bindCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2514
pBinds : System.Address; -- vulkan_core.h:2515
end record;
pragma Convention (C_Pass_By_Copy, VkSparseImageMemoryBindInfo); -- vulkan_core.h:2512
type VkBindSparseInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2519
pNext : System.Address; -- vulkan_core.h:2520
waitSemaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2521
pWaitSemaphores : System.Address; -- vulkan_core.h:2522
bufferBindCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2523
pBufferBinds : System.Address; -- vulkan_core.h:2524
imageOpaqueBindCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2525
pImageOpaqueBinds : System.Address; -- vulkan_core.h:2526
imageBindCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2527
pImageBinds : System.Address; -- vulkan_core.h:2528
signalSemaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2529
pSignalSemaphores : System.Address; -- vulkan_core.h:2530
end record;
pragma Convention (C_Pass_By_Copy, VkBindSparseInfo); -- vulkan_core.h:2518
type VkSparseImageFormatProperties is record
aspectMask : aliased VkImageAspectFlags; -- vulkan_core.h:2534
imageGranularity : aliased VkExtent3D; -- vulkan_core.h:2535
flags : aliased VkSparseImageFormatFlags; -- vulkan_core.h:2536
end record;
pragma Convention (C_Pass_By_Copy, VkSparseImageFormatProperties); -- vulkan_core.h:2533
type VkSparseImageMemoryRequirements is record
formatProperties : aliased VkSparseImageFormatProperties; -- vulkan_core.h:2540
imageMipTailFirstLod : aliased stdint_h.uint32_t; -- vulkan_core.h:2541
imageMipTailSize : aliased VkDeviceSize; -- vulkan_core.h:2542
imageMipTailOffset : aliased VkDeviceSize; -- vulkan_core.h:2543
imageMipTailStride : aliased VkDeviceSize; -- vulkan_core.h:2544
end record;
pragma Convention (C_Pass_By_Copy, VkSparseImageMemoryRequirements); -- vulkan_core.h:2539
type VkFenceCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2548
pNext : System.Address; -- vulkan_core.h:2549
flags : aliased VkFenceCreateFlags; -- vulkan_core.h:2550
end record;
pragma Convention (C_Pass_By_Copy, VkFenceCreateInfo); -- vulkan_core.h:2547
type VkSemaphoreCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2554
pNext : System.Address; -- vulkan_core.h:2555
flags : aliased VkSemaphoreCreateFlags; -- vulkan_core.h:2556
end record;
pragma Convention (C_Pass_By_Copy, VkSemaphoreCreateInfo); -- vulkan_core.h:2553
type VkEventCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2560
pNext : System.Address; -- vulkan_core.h:2561
flags : aliased VkEventCreateFlags; -- vulkan_core.h:2562
end record;
pragma Convention (C_Pass_By_Copy, VkEventCreateInfo); -- vulkan_core.h:2559
type VkQueryPoolCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2566
pNext : System.Address; -- vulkan_core.h:2567
flags : aliased VkQueryPoolCreateFlags; -- vulkan_core.h:2568
queryType : aliased VkQueryType; -- vulkan_core.h:2569
queryCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2570
pipelineStatistics : aliased VkQueryPipelineStatisticFlags; -- vulkan_core.h:2571
end record;
pragma Convention (C_Pass_By_Copy, VkQueryPoolCreateInfo); -- vulkan_core.h:2565
type VkBufferCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2575
pNext : System.Address; -- vulkan_core.h:2576
flags : aliased VkBufferCreateFlags; -- vulkan_core.h:2577
size : aliased VkDeviceSize; -- vulkan_core.h:2578
usage : aliased VkBufferUsageFlags; -- vulkan_core.h:2579
sharingMode : aliased VkSharingMode; -- vulkan_core.h:2580
queueFamilyIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2581
pQueueFamilyIndices : access stdint_h.uint32_t; -- vulkan_core.h:2582
end record;
pragma Convention (C_Pass_By_Copy, VkBufferCreateInfo); -- vulkan_core.h:2574
type VkBufferViewCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2586
pNext : System.Address; -- vulkan_core.h:2587
flags : aliased VkBufferViewCreateFlags; -- vulkan_core.h:2588
buffer : VkBuffer; -- vulkan_core.h:2589
format : aliased VkFormat; -- vulkan_core.h:2590
offset : aliased VkDeviceSize; -- vulkan_core.h:2591
c_range : aliased VkDeviceSize; -- vulkan_core.h:2592
end record;
pragma Convention (C_Pass_By_Copy, VkBufferViewCreateInfo); -- vulkan_core.h:2585
type VkImageCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2596
pNext : System.Address; -- vulkan_core.h:2597
flags : aliased VkImageCreateFlags; -- vulkan_core.h:2598
imageType : aliased VkImageType; -- vulkan_core.h:2599
format : aliased VkFormat; -- vulkan_core.h:2600
extent : aliased VkExtent3D; -- vulkan_core.h:2601
mipLevels : aliased stdint_h.uint32_t; -- vulkan_core.h:2602
arrayLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:2603
samples : aliased VkSampleCountFlagBits; -- vulkan_core.h:2604
tiling : aliased VkImageTiling; -- vulkan_core.h:2605
usage : aliased VkImageUsageFlags; -- vulkan_core.h:2606
sharingMode : aliased VkSharingMode; -- vulkan_core.h:2607
queueFamilyIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2608
pQueueFamilyIndices : access stdint_h.uint32_t; -- vulkan_core.h:2609
initialLayout : aliased VkImageLayout; -- vulkan_core.h:2610
end record;
pragma Convention (C_Pass_By_Copy, VkImageCreateInfo); -- vulkan_core.h:2595
type VkSubresourceLayout is record
offset : aliased VkDeviceSize; -- vulkan_core.h:2614
size : aliased VkDeviceSize; -- vulkan_core.h:2615
rowPitch : aliased VkDeviceSize; -- vulkan_core.h:2616
arrayPitch : aliased VkDeviceSize; -- vulkan_core.h:2617
depthPitch : aliased VkDeviceSize; -- vulkan_core.h:2618
end record;
pragma Convention (C_Pass_By_Copy, VkSubresourceLayout); -- vulkan_core.h:2613
type VkComponentMapping is record
r : aliased VkComponentSwizzle; -- vulkan_core.h:2622
g : aliased VkComponentSwizzle; -- vulkan_core.h:2623
b : aliased VkComponentSwizzle; -- vulkan_core.h:2624
a : aliased VkComponentSwizzle; -- vulkan_core.h:2625
end record;
pragma Convention (C_Pass_By_Copy, VkComponentMapping); -- vulkan_core.h:2621
type VkImageViewCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2629
pNext : System.Address; -- vulkan_core.h:2630
flags : aliased VkImageViewCreateFlags; -- vulkan_core.h:2631
image : VkImage; -- vulkan_core.h:2632
viewType : aliased VkImageViewType; -- vulkan_core.h:2633
format : aliased VkFormat; -- vulkan_core.h:2634
components : aliased VkComponentMapping; -- vulkan_core.h:2635
subresourceRange : aliased VkImageSubresourceRange; -- vulkan_core.h:2636
end record;
pragma Convention (C_Pass_By_Copy, VkImageViewCreateInfo); -- vulkan_core.h:2628
type VkShaderModuleCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2640
pNext : System.Address; -- vulkan_core.h:2641
flags : aliased VkShaderModuleCreateFlags; -- vulkan_core.h:2642
codeSize : aliased crtdefs_h.size_t; -- vulkan_core.h:2643
pCode : access stdint_h.uint32_t; -- vulkan_core.h:2644
end record;
pragma Convention (C_Pass_By_Copy, VkShaderModuleCreateInfo); -- vulkan_core.h:2639
type VkPipelineCacheCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2648
pNext : System.Address; -- vulkan_core.h:2649
flags : aliased VkPipelineCacheCreateFlags; -- vulkan_core.h:2650
initialDataSize : aliased crtdefs_h.size_t; -- vulkan_core.h:2651
pInitialData : System.Address; -- vulkan_core.h:2652
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineCacheCreateInfo); -- vulkan_core.h:2647
type VkSpecializationMapEntry is record
constantID : aliased stdint_h.uint32_t; -- vulkan_core.h:2656
offset : aliased stdint_h.uint32_t; -- vulkan_core.h:2657
size : aliased crtdefs_h.size_t; -- vulkan_core.h:2658
end record;
pragma Convention (C_Pass_By_Copy, VkSpecializationMapEntry); -- vulkan_core.h:2655
type VkSpecializationInfo is record
mapEntryCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2662
pMapEntries : System.Address; -- vulkan_core.h:2663
dataSize : aliased crtdefs_h.size_t; -- vulkan_core.h:2664
pData : System.Address; -- vulkan_core.h:2665
end record;
pragma Convention (C_Pass_By_Copy, VkSpecializationInfo); -- vulkan_core.h:2661
type VkPipelineShaderStageCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2669
pNext : System.Address; -- vulkan_core.h:2670
flags : aliased VkPipelineShaderStageCreateFlags; -- vulkan_core.h:2671
stage : aliased VkShaderStageFlagBits; -- vulkan_core.h:2672
module : VkShaderModule; -- vulkan_core.h:2673
pName : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:2674
pSpecializationInfo : System.Address; -- vulkan_core.h:2675
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineShaderStageCreateInfo); -- vulkan_core.h:2668
type VkComputePipelineCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2679
pNext : System.Address; -- vulkan_core.h:2680
flags : aliased VkPipelineCreateFlags; -- vulkan_core.h:2681
stage : aliased VkPipelineShaderStageCreateInfo; -- vulkan_core.h:2682
layout : VkPipelineLayout; -- vulkan_core.h:2683
basePipelineHandle : VkPipeline; -- vulkan_core.h:2684
basePipelineIndex : aliased stdint_h.int32_t; -- vulkan_core.h:2685
end record;
pragma Convention (C_Pass_By_Copy, VkComputePipelineCreateInfo); -- vulkan_core.h:2678
type VkVertexInputBindingDescription is record
binding : aliased stdint_h.uint32_t; -- vulkan_core.h:2689
stride : aliased stdint_h.uint32_t; -- vulkan_core.h:2690
inputRate : aliased VkVertexInputRate; -- vulkan_core.h:2691
end record;
pragma Convention (C_Pass_By_Copy, VkVertexInputBindingDescription); -- vulkan_core.h:2688
type VkVertexInputAttributeDescription is record
location : aliased stdint_h.uint32_t; -- vulkan_core.h:2695
binding : aliased stdint_h.uint32_t; -- vulkan_core.h:2696
format : aliased VkFormat; -- vulkan_core.h:2697
offset : aliased stdint_h.uint32_t; -- vulkan_core.h:2698
end record;
pragma Convention (C_Pass_By_Copy, VkVertexInputAttributeDescription); -- vulkan_core.h:2694
type VkPipelineVertexInputStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2702
pNext : System.Address; -- vulkan_core.h:2703
flags : aliased VkPipelineVertexInputStateCreateFlags; -- vulkan_core.h:2704
vertexBindingDescriptionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2705
pVertexBindingDescriptions : System.Address; -- vulkan_core.h:2706
vertexAttributeDescriptionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2707
pVertexAttributeDescriptions : System.Address; -- vulkan_core.h:2708
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineVertexInputStateCreateInfo); -- vulkan_core.h:2701
type VkPipelineInputAssemblyStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2712
pNext : System.Address; -- vulkan_core.h:2713
flags : aliased VkPipelineInputAssemblyStateCreateFlags; -- vulkan_core.h:2714
topology : aliased VkPrimitiveTopology; -- vulkan_core.h:2715
primitiveRestartEnable : aliased VkBool32; -- vulkan_core.h:2716
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineInputAssemblyStateCreateInfo); -- vulkan_core.h:2711
type VkPipelineTessellationStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2720
pNext : System.Address; -- vulkan_core.h:2721
flags : aliased VkPipelineTessellationStateCreateFlags; -- vulkan_core.h:2722
patchControlPoints : aliased stdint_h.uint32_t; -- vulkan_core.h:2723
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineTessellationStateCreateInfo); -- vulkan_core.h:2719
type VkViewport is record
x : aliased float; -- vulkan_core.h:2727
y : aliased float; -- vulkan_core.h:2728
width : aliased float; -- vulkan_core.h:2729
height : aliased float; -- vulkan_core.h:2730
minDepth : aliased float; -- vulkan_core.h:2731
maxDepth : aliased float; -- vulkan_core.h:2732
end record;
pragma Convention (C_Pass_By_Copy, VkViewport); -- vulkan_core.h:2726
type VkPipelineViewportStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2736
pNext : System.Address; -- vulkan_core.h:2737
flags : aliased VkPipelineViewportStateCreateFlags; -- vulkan_core.h:2738
viewportCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2739
pViewports : System.Address; -- vulkan_core.h:2740
scissorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2741
pScissors : System.Address; -- vulkan_core.h:2742
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineViewportStateCreateInfo); -- vulkan_core.h:2735
type VkPipelineRasterizationStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2746
pNext : System.Address; -- vulkan_core.h:2747
flags : aliased VkPipelineRasterizationStateCreateFlags; -- vulkan_core.h:2748
depthClampEnable : aliased VkBool32; -- vulkan_core.h:2749
rasterizerDiscardEnable : aliased VkBool32; -- vulkan_core.h:2750
polygonMode : aliased VkPolygonMode; -- vulkan_core.h:2751
cullMode : aliased VkCullModeFlags; -- vulkan_core.h:2752
frontFace : aliased VkFrontFace; -- vulkan_core.h:2753
depthBiasEnable : aliased VkBool32; -- vulkan_core.h:2754
depthBiasConstantFactor : aliased float; -- vulkan_core.h:2755
depthBiasClamp : aliased float; -- vulkan_core.h:2756
depthBiasSlopeFactor : aliased float; -- vulkan_core.h:2757
lineWidth : aliased float; -- vulkan_core.h:2758
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineRasterizationStateCreateInfo); -- vulkan_core.h:2745
type VkPipelineMultisampleStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2762
pNext : System.Address; -- vulkan_core.h:2763
flags : aliased VkPipelineMultisampleStateCreateFlags; -- vulkan_core.h:2764
rasterizationSamples : aliased VkSampleCountFlagBits; -- vulkan_core.h:2765
sampleShadingEnable : aliased VkBool32; -- vulkan_core.h:2766
minSampleShading : aliased float; -- vulkan_core.h:2767
pSampleMask : access VkSampleMask; -- vulkan_core.h:2768
alphaToCoverageEnable : aliased VkBool32; -- vulkan_core.h:2769
alphaToOneEnable : aliased VkBool32; -- vulkan_core.h:2770
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineMultisampleStateCreateInfo); -- vulkan_core.h:2761
type VkStencilOpState is record
failOp : aliased VkStencilOp; -- vulkan_core.h:2774
passOp : aliased VkStencilOp; -- vulkan_core.h:2775
depthFailOp : aliased VkStencilOp; -- vulkan_core.h:2776
compareOp : aliased VkCompareOp; -- vulkan_core.h:2777
compareMask : aliased stdint_h.uint32_t; -- vulkan_core.h:2778
writeMask : aliased stdint_h.uint32_t; -- vulkan_core.h:2779
reference : aliased stdint_h.uint32_t; -- vulkan_core.h:2780
end record;
pragma Convention (C_Pass_By_Copy, VkStencilOpState); -- vulkan_core.h:2773
type VkPipelineDepthStencilStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2784
pNext : System.Address; -- vulkan_core.h:2785
flags : aliased VkPipelineDepthStencilStateCreateFlags; -- vulkan_core.h:2786
depthTestEnable : aliased VkBool32; -- vulkan_core.h:2787
depthWriteEnable : aliased VkBool32; -- vulkan_core.h:2788
depthCompareOp : aliased VkCompareOp; -- vulkan_core.h:2789
depthBoundsTestEnable : aliased VkBool32; -- vulkan_core.h:2790
stencilTestEnable : aliased VkBool32; -- vulkan_core.h:2791
front : aliased VkStencilOpState; -- vulkan_core.h:2792
back : aliased VkStencilOpState; -- vulkan_core.h:2793
minDepthBounds : aliased float; -- vulkan_core.h:2794
maxDepthBounds : aliased float; -- vulkan_core.h:2795
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineDepthStencilStateCreateInfo); -- vulkan_core.h:2783
type VkPipelineColorBlendAttachmentState is record
blendEnable : aliased VkBool32; -- vulkan_core.h:2799
srcColorBlendFactor : aliased VkBlendFactor; -- vulkan_core.h:2800
dstColorBlendFactor : aliased VkBlendFactor; -- vulkan_core.h:2801
colorBlendOp : aliased VkBlendOp; -- vulkan_core.h:2802
srcAlphaBlendFactor : aliased VkBlendFactor; -- vulkan_core.h:2803
dstAlphaBlendFactor : aliased VkBlendFactor; -- vulkan_core.h:2804
alphaBlendOp : aliased VkBlendOp; -- vulkan_core.h:2805
colorWriteMask : aliased VkColorComponentFlags; -- vulkan_core.h:2806
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineColorBlendAttachmentState); -- vulkan_core.h:2798
type VkPipelineColorBlendStateCreateInfo_blendConstants_array is array (0 .. 3) of aliased float;
type VkPipelineColorBlendStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2810
pNext : System.Address; -- vulkan_core.h:2811
flags : aliased VkPipelineColorBlendStateCreateFlags; -- vulkan_core.h:2812
logicOpEnable : aliased VkBool32; -- vulkan_core.h:2813
logicOp : aliased VkLogicOp; -- vulkan_core.h:2814
attachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2815
pAttachments : System.Address; -- vulkan_core.h:2816
blendConstants : aliased VkPipelineColorBlendStateCreateInfo_blendConstants_array; -- vulkan_core.h:2817
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineColorBlendStateCreateInfo); -- vulkan_core.h:2809
type VkPipelineDynamicStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2821
pNext : System.Address; -- vulkan_core.h:2822
flags : aliased VkPipelineDynamicStateCreateFlags; -- vulkan_core.h:2823
dynamicStateCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2824
pDynamicStates : System.Address; -- vulkan_core.h:2825
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineDynamicStateCreateInfo); -- vulkan_core.h:2820
type VkGraphicsPipelineCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2829
pNext : System.Address; -- vulkan_core.h:2830
flags : aliased VkPipelineCreateFlags; -- vulkan_core.h:2831
stageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2832
pStages : System.Address; -- vulkan_core.h:2833
pVertexInputState : System.Address; -- vulkan_core.h:2834
pInputAssemblyState : System.Address; -- vulkan_core.h:2835
pTessellationState : System.Address; -- vulkan_core.h:2836
pViewportState : System.Address; -- vulkan_core.h:2837
pRasterizationState : System.Address; -- vulkan_core.h:2838
pMultisampleState : System.Address; -- vulkan_core.h:2839
pDepthStencilState : System.Address; -- vulkan_core.h:2840
pColorBlendState : System.Address; -- vulkan_core.h:2841
pDynamicState : System.Address; -- vulkan_core.h:2842
layout : VkPipelineLayout; -- vulkan_core.h:2843
renderPass : VkRenderPass; -- vulkan_core.h:2844
subpass : aliased stdint_h.uint32_t; -- vulkan_core.h:2845
basePipelineHandle : VkPipeline; -- vulkan_core.h:2846
basePipelineIndex : aliased stdint_h.int32_t; -- vulkan_core.h:2847
end record;
pragma Convention (C_Pass_By_Copy, VkGraphicsPipelineCreateInfo); -- vulkan_core.h:2828
type VkPushConstantRange is record
stageFlags : aliased VkShaderStageFlags; -- vulkan_core.h:2851
offset : aliased stdint_h.uint32_t; -- vulkan_core.h:2852
size : aliased stdint_h.uint32_t; -- vulkan_core.h:2853
end record;
pragma Convention (C_Pass_By_Copy, VkPushConstantRange); -- vulkan_core.h:2850
type VkPipelineLayoutCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2857
pNext : System.Address; -- vulkan_core.h:2858
flags : aliased VkPipelineLayoutCreateFlags; -- vulkan_core.h:2859
setLayoutCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2860
pSetLayouts : System.Address; -- vulkan_core.h:2861
pushConstantRangeCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2862
pPushConstantRanges : System.Address; -- vulkan_core.h:2863
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineLayoutCreateInfo); -- vulkan_core.h:2856
type VkSamplerCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2867
pNext : System.Address; -- vulkan_core.h:2868
flags : aliased VkSamplerCreateFlags; -- vulkan_core.h:2869
magFilter : aliased VkFilter; -- vulkan_core.h:2870
minFilter : aliased VkFilter; -- vulkan_core.h:2871
mipmapMode : aliased VkSamplerMipmapMode; -- vulkan_core.h:2872
addressModeU : aliased VkSamplerAddressMode; -- vulkan_core.h:2873
addressModeV : aliased VkSamplerAddressMode; -- vulkan_core.h:2874
addressModeW : aliased VkSamplerAddressMode; -- vulkan_core.h:2875
mipLodBias : aliased float; -- vulkan_core.h:2876
anisotropyEnable : aliased VkBool32; -- vulkan_core.h:2877
maxAnisotropy : aliased float; -- vulkan_core.h:2878
compareEnable : aliased VkBool32; -- vulkan_core.h:2879
compareOp : aliased VkCompareOp; -- vulkan_core.h:2880
minLod : aliased float; -- vulkan_core.h:2881
maxLod : aliased float; -- vulkan_core.h:2882
borderColor : aliased VkBorderColor; -- vulkan_core.h:2883
unnormalizedCoordinates : aliased VkBool32; -- vulkan_core.h:2884
end record;
pragma Convention (C_Pass_By_Copy, VkSamplerCreateInfo); -- vulkan_core.h:2866
type VkCopyDescriptorSet is record
sType : aliased VkStructureType; -- vulkan_core.h:2888
pNext : System.Address; -- vulkan_core.h:2889
srcSet : VkDescriptorSet; -- vulkan_core.h:2890
srcBinding : aliased stdint_h.uint32_t; -- vulkan_core.h:2891
srcArrayElement : aliased stdint_h.uint32_t; -- vulkan_core.h:2892
dstSet : VkDescriptorSet; -- vulkan_core.h:2893
dstBinding : aliased stdint_h.uint32_t; -- vulkan_core.h:2894
dstArrayElement : aliased stdint_h.uint32_t; -- vulkan_core.h:2895
descriptorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2896
end record;
pragma Convention (C_Pass_By_Copy, VkCopyDescriptorSet); -- vulkan_core.h:2887
type VkDescriptorBufferInfo is record
buffer : VkBuffer; -- vulkan_core.h:2900
offset : aliased VkDeviceSize; -- vulkan_core.h:2901
c_range : aliased VkDeviceSize; -- vulkan_core.h:2902
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorBufferInfo); -- vulkan_core.h:2899
type VkDescriptorImageInfo is record
sampler : VkSampler; -- vulkan_core.h:2906
imageView : VkImageView; -- vulkan_core.h:2907
imageLayout : aliased VkImageLayout; -- vulkan_core.h:2908
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorImageInfo); -- vulkan_core.h:2905
type VkDescriptorPoolSize is record
c_type : aliased VkDescriptorType; -- vulkan_core.h:2912
descriptorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2913
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorPoolSize); -- vulkan_core.h:2911
type VkDescriptorPoolCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2917
pNext : System.Address; -- vulkan_core.h:2918
flags : aliased VkDescriptorPoolCreateFlags; -- vulkan_core.h:2919
maxSets : aliased stdint_h.uint32_t; -- vulkan_core.h:2920
poolSizeCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2921
pPoolSizes : System.Address; -- vulkan_core.h:2922
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorPoolCreateInfo); -- vulkan_core.h:2916
type VkDescriptorSetAllocateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2926
pNext : System.Address; -- vulkan_core.h:2927
descriptorPool : VkDescriptorPool; -- vulkan_core.h:2928
descriptorSetCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2929
pSetLayouts : System.Address; -- vulkan_core.h:2930
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorSetAllocateInfo); -- vulkan_core.h:2925
type VkDescriptorSetLayoutBinding is record
binding : aliased stdint_h.uint32_t; -- vulkan_core.h:2934
descriptorType : aliased VkDescriptorType; -- vulkan_core.h:2935
descriptorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2936
stageFlags : aliased VkShaderStageFlags; -- vulkan_core.h:2937
pImmutableSamplers : System.Address; -- vulkan_core.h:2938
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorSetLayoutBinding); -- vulkan_core.h:2933
type VkDescriptorSetLayoutCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2942
pNext : System.Address; -- vulkan_core.h:2943
flags : aliased VkDescriptorSetLayoutCreateFlags; -- vulkan_core.h:2944
bindingCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2945
pBindings : System.Address; -- vulkan_core.h:2946
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorSetLayoutCreateInfo); -- vulkan_core.h:2941
type VkWriteDescriptorSet is record
sType : aliased VkStructureType; -- vulkan_core.h:2950
pNext : System.Address; -- vulkan_core.h:2951
dstSet : VkDescriptorSet; -- vulkan_core.h:2952
dstBinding : aliased stdint_h.uint32_t; -- vulkan_core.h:2953
dstArrayElement : aliased stdint_h.uint32_t; -- vulkan_core.h:2954
descriptorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2955
descriptorType : aliased VkDescriptorType; -- vulkan_core.h:2956
pImageInfo : System.Address; -- vulkan_core.h:2957
pBufferInfo : System.Address; -- vulkan_core.h:2958
pTexelBufferView : System.Address; -- vulkan_core.h:2959
end record;
pragma Convention (C_Pass_By_Copy, VkWriteDescriptorSet); -- vulkan_core.h:2949
type VkAttachmentDescription is record
flags : aliased VkAttachmentDescriptionFlags; -- vulkan_core.h:2963
format : aliased VkFormat; -- vulkan_core.h:2964
samples : aliased VkSampleCountFlagBits; -- vulkan_core.h:2965
loadOp : aliased VkAttachmentLoadOp; -- vulkan_core.h:2966
storeOp : aliased VkAttachmentStoreOp; -- vulkan_core.h:2967
stencilLoadOp : aliased VkAttachmentLoadOp; -- vulkan_core.h:2968
stencilStoreOp : aliased VkAttachmentStoreOp; -- vulkan_core.h:2969
initialLayout : aliased VkImageLayout; -- vulkan_core.h:2970
finalLayout : aliased VkImageLayout; -- vulkan_core.h:2971
end record;
pragma Convention (C_Pass_By_Copy, VkAttachmentDescription); -- vulkan_core.h:2962
type VkAttachmentReference is record
attachment : aliased stdint_h.uint32_t; -- vulkan_core.h:2975
layout : aliased VkImageLayout; -- vulkan_core.h:2976
end record;
pragma Convention (C_Pass_By_Copy, VkAttachmentReference); -- vulkan_core.h:2974
type VkFramebufferCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:2980
pNext : System.Address; -- vulkan_core.h:2981
flags : aliased VkFramebufferCreateFlags; -- vulkan_core.h:2982
renderPass : VkRenderPass; -- vulkan_core.h:2983
attachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2984
pAttachments : System.Address; -- vulkan_core.h:2985
width : aliased stdint_h.uint32_t; -- vulkan_core.h:2986
height : aliased stdint_h.uint32_t; -- vulkan_core.h:2987
layers : aliased stdint_h.uint32_t; -- vulkan_core.h:2988
end record;
pragma Convention (C_Pass_By_Copy, VkFramebufferCreateInfo); -- vulkan_core.h:2979
type VkSubpassDescription is record
flags : aliased VkSubpassDescriptionFlags; -- vulkan_core.h:2992
pipelineBindPoint : aliased VkPipelineBindPoint; -- vulkan_core.h:2993
inputAttachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2994
pInputAttachments : System.Address; -- vulkan_core.h:2995
colorAttachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:2996
pColorAttachments : System.Address; -- vulkan_core.h:2997
pResolveAttachments : System.Address; -- vulkan_core.h:2998
pDepthStencilAttachment : System.Address; -- vulkan_core.h:2999
preserveAttachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3000
pPreserveAttachments : access stdint_h.uint32_t; -- vulkan_core.h:3001
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassDescription); -- vulkan_core.h:2991
type VkSubpassDependency is record
srcSubpass : aliased stdint_h.uint32_t; -- vulkan_core.h:3005
dstSubpass : aliased stdint_h.uint32_t; -- vulkan_core.h:3006
srcStageMask : aliased VkPipelineStageFlags; -- vulkan_core.h:3007
dstStageMask : aliased VkPipelineStageFlags; -- vulkan_core.h:3008
srcAccessMask : aliased VkAccessFlags; -- vulkan_core.h:3009
dstAccessMask : aliased VkAccessFlags; -- vulkan_core.h:3010
dependencyFlags : aliased VkDependencyFlags; -- vulkan_core.h:3011
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassDependency); -- vulkan_core.h:3004
type VkRenderPassCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:3015
pNext : System.Address; -- vulkan_core.h:3016
flags : aliased VkRenderPassCreateFlags; -- vulkan_core.h:3017
attachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3018
pAttachments : System.Address; -- vulkan_core.h:3019
subpassCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3020
pSubpasses : System.Address; -- vulkan_core.h:3021
dependencyCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3022
pDependencies : System.Address; -- vulkan_core.h:3023
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassCreateInfo); -- vulkan_core.h:3014
type VkCommandPoolCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:3027
pNext : System.Address; -- vulkan_core.h:3028
flags : aliased VkCommandPoolCreateFlags; -- vulkan_core.h:3029
queueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:3030
end record;
pragma Convention (C_Pass_By_Copy, VkCommandPoolCreateInfo); -- vulkan_core.h:3026
type VkCommandBufferAllocateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:3034
pNext : System.Address; -- vulkan_core.h:3035
commandPool : VkCommandPool; -- vulkan_core.h:3036
level : aliased VkCommandBufferLevel; -- vulkan_core.h:3037
commandBufferCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3038
end record;
pragma Convention (C_Pass_By_Copy, VkCommandBufferAllocateInfo); -- vulkan_core.h:3033
type VkCommandBufferInheritanceInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:3042
pNext : System.Address; -- vulkan_core.h:3043
renderPass : VkRenderPass; -- vulkan_core.h:3044
subpass : aliased stdint_h.uint32_t; -- vulkan_core.h:3045
framebuffer : VkFramebuffer; -- vulkan_core.h:3046
occlusionQueryEnable : aliased VkBool32; -- vulkan_core.h:3047
queryFlags : aliased VkQueryControlFlags; -- vulkan_core.h:3048
pipelineStatistics : aliased VkQueryPipelineStatisticFlags; -- vulkan_core.h:3049
end record;
pragma Convention (C_Pass_By_Copy, VkCommandBufferInheritanceInfo); -- vulkan_core.h:3041
type VkCommandBufferBeginInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:3053
pNext : System.Address; -- vulkan_core.h:3054
flags : aliased VkCommandBufferUsageFlags; -- vulkan_core.h:3055
pInheritanceInfo : System.Address; -- vulkan_core.h:3056
end record;
pragma Convention (C_Pass_By_Copy, VkCommandBufferBeginInfo); -- vulkan_core.h:3052
type VkBufferCopy is record
srcOffset : aliased VkDeviceSize; -- vulkan_core.h:3060
dstOffset : aliased VkDeviceSize; -- vulkan_core.h:3061
size : aliased VkDeviceSize; -- vulkan_core.h:3062
end record;
pragma Convention (C_Pass_By_Copy, VkBufferCopy); -- vulkan_core.h:3059
type VkImageSubresourceLayers is record
aspectMask : aliased VkImageAspectFlags; -- vulkan_core.h:3066
mipLevel : aliased stdint_h.uint32_t; -- vulkan_core.h:3067
baseArrayLayer : aliased stdint_h.uint32_t; -- vulkan_core.h:3068
layerCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3069
end record;
pragma Convention (C_Pass_By_Copy, VkImageSubresourceLayers); -- vulkan_core.h:3065
type VkBufferImageCopy is record
bufferOffset : aliased VkDeviceSize; -- vulkan_core.h:3073
bufferRowLength : aliased stdint_h.uint32_t; -- vulkan_core.h:3074
bufferImageHeight : aliased stdint_h.uint32_t; -- vulkan_core.h:3075
imageSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:3076
imageOffset : aliased VkOffset3D; -- vulkan_core.h:3077
imageExtent : aliased VkExtent3D; -- vulkan_core.h:3078
end record;
pragma Convention (C_Pass_By_Copy, VkBufferImageCopy); -- vulkan_core.h:3072
type VkClearColorValue_float32_array is array (0 .. 3) of aliased float;
type VkClearColorValue_int32_array is array (0 .. 3) of aliased stdint_h.int32_t;
type VkClearColorValue_uint32_array is array (0 .. 3) of aliased stdint_h.uint32_t;
type VkClearColorValue (discr : unsigned := 0) is record
case discr is
when 0 =>
float32 : aliased VkClearColorValue_float32_array; -- vulkan_core.h:3082
when 1 =>
int32 : aliased VkClearColorValue_int32_array; -- vulkan_core.h:3083
when others =>
uint32 : aliased VkClearColorValue_uint32_array; -- vulkan_core.h:3084
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkClearColorValue);
pragma Unchecked_Union (VkClearColorValue); -- vulkan_core.h:3081
type VkClearDepthStencilValue is record
depth : aliased float; -- vulkan_core.h:3088
stencil : aliased stdint_h.uint32_t; -- vulkan_core.h:3089
end record;
pragma Convention (C_Pass_By_Copy, VkClearDepthStencilValue); -- vulkan_core.h:3087
type VkClearValue (discr : unsigned := 0) is record
case discr is
when 0 =>
color : VkClearColorValue; -- vulkan_core.h:3093
when others =>
depthStencil : aliased VkClearDepthStencilValue; -- vulkan_core.h:3094
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkClearValue);
pragma Unchecked_Union (VkClearValue); -- vulkan_core.h:3092
type VkClearAttachment is record
aspectMask : aliased VkImageAspectFlags; -- vulkan_core.h:3098
colorAttachment : aliased stdint_h.uint32_t; -- vulkan_core.h:3099
clearValue : VkClearValue; -- vulkan_core.h:3100
end record;
pragma Convention (C_Pass_By_Copy, VkClearAttachment); -- vulkan_core.h:3097
type VkClearRect is record
rect : aliased VkRect2D; -- vulkan_core.h:3104
baseArrayLayer : aliased stdint_h.uint32_t; -- vulkan_core.h:3105
layerCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3106
end record;
pragma Convention (C_Pass_By_Copy, VkClearRect); -- vulkan_core.h:3103
type VkImageBlit_srcOffsets_array is array (0 .. 1) of aliased VkOffset3D;
type VkImageBlit_dstOffsets_array is array (0 .. 1) of aliased VkOffset3D;
type VkImageBlit is record
srcSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:3110
srcOffsets : aliased VkImageBlit_srcOffsets_array; -- vulkan_core.h:3111
dstSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:3112
dstOffsets : aliased VkImageBlit_dstOffsets_array; -- vulkan_core.h:3113
end record;
pragma Convention (C_Pass_By_Copy, VkImageBlit); -- vulkan_core.h:3109
type VkImageCopy is record
srcSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:3117
srcOffset : aliased VkOffset3D; -- vulkan_core.h:3118
dstSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:3119
dstOffset : aliased VkOffset3D; -- vulkan_core.h:3120
extent : aliased VkExtent3D; -- vulkan_core.h:3121
end record;
pragma Convention (C_Pass_By_Copy, VkImageCopy); -- vulkan_core.h:3116
type VkImageResolve is record
srcSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:3125
srcOffset : aliased VkOffset3D; -- vulkan_core.h:3126
dstSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:3127
dstOffset : aliased VkOffset3D; -- vulkan_core.h:3128
extent : aliased VkExtent3D; -- vulkan_core.h:3129
end record;
pragma Convention (C_Pass_By_Copy, VkImageResolve); -- vulkan_core.h:3124
type VkRenderPassBeginInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:3133
pNext : System.Address; -- vulkan_core.h:3134
renderPass : VkRenderPass; -- vulkan_core.h:3135
framebuffer : VkFramebuffer; -- vulkan_core.h:3136
renderArea : aliased VkRect2D; -- vulkan_core.h:3137
clearValueCount : aliased stdint_h.uint32_t; -- vulkan_core.h:3138
pClearValues : System.Address; -- vulkan_core.h:3139
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassBeginInfo); -- vulkan_core.h:3132
type PFN_vkCreateInstance is access function
(arg1 : System.Address;
arg2 : System.Address;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateInstance); -- vulkan_core.h:3142
type PFN_vkDestroyInstance is access procedure (arg1 : VkInstance; arg2 : System.Address);
pragma Convention (C, PFN_vkDestroyInstance); -- vulkan_core.h:3143
type PFN_vkEnumeratePhysicalDevices is access function
(arg1 : VkInstance;
arg2 : access stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkEnumeratePhysicalDevices); -- vulkan_core.h:3144
type PFN_vkGetPhysicalDeviceFeatures is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceFeatures);
pragma Convention (C, PFN_vkGetPhysicalDeviceFeatures); -- vulkan_core.h:3145
type PFN_vkGetPhysicalDeviceFormatProperties is access procedure
(arg1 : VkPhysicalDevice;
arg2 : VkFormat;
arg3 : access VkFormatProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceFormatProperties); -- vulkan_core.h:3146
type PFN_vkGetPhysicalDeviceImageFormatProperties is access function
(arg1 : VkPhysicalDevice;
arg2 : VkFormat;
arg3 : VkImageType;
arg4 : VkImageTiling;
arg5 : VkImageUsageFlags;
arg6 : VkImageCreateFlags;
arg7 : access VkImageFormatProperties) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceImageFormatProperties); -- vulkan_core.h:3147
type PFN_vkGetPhysicalDeviceProperties is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceProperties); -- vulkan_core.h:3148
type PFN_vkGetPhysicalDeviceQueueFamilyProperties is access procedure
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkQueueFamilyProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceQueueFamilyProperties); -- vulkan_core.h:3149
type PFN_vkGetPhysicalDeviceMemoryProperties is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceMemoryProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceMemoryProperties); -- vulkan_core.h:3150
type PFN_vkGetInstanceProcAddr is access function (arg1 : VkInstance; arg2 : Interfaces.C.Strings.chars_ptr) return PFN_vkVoidFunction;
pragma Convention (C, PFN_vkGetInstanceProcAddr); -- vulkan_core.h:3151
type PFN_vkGetDeviceProcAddr is access function (arg1 : VkDevice; arg2 : Interfaces.C.Strings.chars_ptr) return PFN_vkVoidFunction;
pragma Convention (C, PFN_vkGetDeviceProcAddr); -- vulkan_core.h:3152
type PFN_vkCreateDevice is access function
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDevice); -- vulkan_core.h:3153
type PFN_vkDestroyDevice is access procedure (arg1 : VkDevice; arg2 : System.Address);
pragma Convention (C, PFN_vkDestroyDevice); -- vulkan_core.h:3154
type PFN_vkEnumerateInstanceExtensionProperties is access function
(arg1 : Interfaces.C.Strings.chars_ptr;
arg2 : access stdint_h.uint32_t;
arg3 : access VkExtensionProperties) return VkResult;
pragma Convention (C, PFN_vkEnumerateInstanceExtensionProperties); -- vulkan_core.h:3155
type PFN_vkEnumerateDeviceExtensionProperties is access function
(arg1 : VkPhysicalDevice;
arg2 : Interfaces.C.Strings.chars_ptr;
arg3 : access stdint_h.uint32_t;
arg4 : access VkExtensionProperties) return VkResult;
pragma Convention (C, PFN_vkEnumerateDeviceExtensionProperties); -- vulkan_core.h:3156
type PFN_vkEnumerateInstanceLayerProperties is access function (arg1 : access stdint_h.uint32_t; arg2 : access VkLayerProperties) return VkResult;
pragma Convention (C, PFN_vkEnumerateInstanceLayerProperties); -- vulkan_core.h:3157
type PFN_vkEnumerateDeviceLayerProperties is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkLayerProperties) return VkResult;
pragma Convention (C, PFN_vkEnumerateDeviceLayerProperties); -- vulkan_core.h:3158
type PFN_vkGetDeviceQueue is access procedure
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkGetDeviceQueue); -- vulkan_core.h:3159
type PFN_vkQueueSubmit is access function
(arg1 : VkQueue;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkFence) return VkResult;
pragma Convention (C, PFN_vkQueueSubmit); -- vulkan_core.h:3160
type PFN_vkQueueWaitIdle is access function (arg1 : VkQueue) return VkResult;
pragma Convention (C, PFN_vkQueueWaitIdle); -- vulkan_core.h:3161
type PFN_vkDeviceWaitIdle is access function (arg1 : VkDevice) return VkResult;
pragma Convention (C, PFN_vkDeviceWaitIdle); -- vulkan_core.h:3162
type PFN_vkAllocateMemory is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkAllocateMemory); -- vulkan_core.h:3163
type PFN_vkFreeMemory is access procedure
(arg1 : VkDevice;
arg2 : VkDeviceMemory;
arg3 : System.Address);
pragma Convention (C, PFN_vkFreeMemory); -- vulkan_core.h:3164
type PFN_vkMapMemory is access function
(arg1 : VkDevice;
arg2 : VkDeviceMemory;
arg3 : VkDeviceSize;
arg4 : VkDeviceSize;
arg5 : VkMemoryMapFlags;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkMapMemory); -- vulkan_core.h:3165
type PFN_vkUnmapMemory is access procedure (arg1 : VkDevice; arg2 : VkDeviceMemory);
pragma Convention (C, PFN_vkUnmapMemory); -- vulkan_core.h:3166
type PFN_vkFlushMappedMemoryRanges is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkFlushMappedMemoryRanges); -- vulkan_core.h:3167
type PFN_vkInvalidateMappedMemoryRanges is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkInvalidateMappedMemoryRanges); -- vulkan_core.h:3168
type PFN_vkGetDeviceMemoryCommitment is access procedure
(arg1 : VkDevice;
arg2 : VkDeviceMemory;
arg3 : access VkDeviceSize);
pragma Convention (C, PFN_vkGetDeviceMemoryCommitment); -- vulkan_core.h:3169
type PFN_vkBindBufferMemory is access function
(arg1 : VkDevice;
arg2 : VkBuffer;
arg3 : VkDeviceMemory;
arg4 : VkDeviceSize) return VkResult;
pragma Convention (C, PFN_vkBindBufferMemory); -- vulkan_core.h:3170
type PFN_vkBindImageMemory is access function
(arg1 : VkDevice;
arg2 : VkImage;
arg3 : VkDeviceMemory;
arg4 : VkDeviceSize) return VkResult;
pragma Convention (C, PFN_vkBindImageMemory); -- vulkan_core.h:3171
type PFN_vkGetBufferMemoryRequirements is access procedure
(arg1 : VkDevice;
arg2 : VkBuffer;
arg3 : access VkMemoryRequirements);
pragma Convention (C, PFN_vkGetBufferMemoryRequirements); -- vulkan_core.h:3172
type PFN_vkGetImageMemoryRequirements is access procedure
(arg1 : VkDevice;
arg2 : VkImage;
arg3 : access VkMemoryRequirements);
pragma Convention (C, PFN_vkGetImageMemoryRequirements); -- vulkan_core.h:3173
type PFN_vkGetImageSparseMemoryRequirements is access procedure
(arg1 : VkDevice;
arg2 : VkImage;
arg3 : access stdint_h.uint32_t;
arg4 : access VkSparseImageMemoryRequirements);
pragma Convention (C, PFN_vkGetImageSparseMemoryRequirements); -- vulkan_core.h:3174
type PFN_vkGetPhysicalDeviceSparseImageFormatProperties is access procedure
(arg1 : VkPhysicalDevice;
arg2 : VkFormat;
arg3 : VkImageType;
arg4 : VkSampleCountFlagBits;
arg5 : VkImageUsageFlags;
arg6 : VkImageTiling;
arg7 : access stdint_h.uint32_t;
arg8 : access VkSparseImageFormatProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceSparseImageFormatProperties); -- vulkan_core.h:3175
type PFN_vkQueueBindSparse is access function
(arg1 : VkQueue;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkFence) return VkResult;
pragma Convention (C, PFN_vkQueueBindSparse); -- vulkan_core.h:3176
type PFN_vkCreateFence is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateFence); -- vulkan_core.h:3177
type PFN_vkDestroyFence is access procedure
(arg1 : VkDevice;
arg2 : VkFence;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyFence); -- vulkan_core.h:3178
type PFN_vkResetFences is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkResetFences); -- vulkan_core.h:3179
type PFN_vkGetFenceStatus is access function (arg1 : VkDevice; arg2 : VkFence) return VkResult;
pragma Convention (C, PFN_vkGetFenceStatus); -- vulkan_core.h:3180
type PFN_vkWaitForFences is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkBool32;
arg5 : stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkWaitForFences); -- vulkan_core.h:3181
type PFN_vkCreateSemaphore is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateSemaphore); -- vulkan_core.h:3182
type PFN_vkDestroySemaphore is access procedure
(arg1 : VkDevice;
arg2 : VkSemaphore;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroySemaphore); -- vulkan_core.h:3183
type PFN_vkCreateEvent is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateEvent); -- vulkan_core.h:3184
type PFN_vkDestroyEvent is access procedure
(arg1 : VkDevice;
arg2 : VkEvent;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyEvent); -- vulkan_core.h:3185
type PFN_vkGetEventStatus is access function (arg1 : VkDevice; arg2 : VkEvent) return VkResult;
pragma Convention (C, PFN_vkGetEventStatus); -- vulkan_core.h:3186
type PFN_vkSetEvent is access function (arg1 : VkDevice; arg2 : VkEvent) return VkResult;
pragma Convention (C, PFN_vkSetEvent); -- vulkan_core.h:3187
type PFN_vkResetEvent is access function (arg1 : VkDevice; arg2 : VkEvent) return VkResult;
pragma Convention (C, PFN_vkResetEvent); -- vulkan_core.h:3188
type PFN_vkCreateQueryPool is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateQueryPool); -- vulkan_core.h:3189
type PFN_vkDestroyQueryPool is access procedure
(arg1 : VkDevice;
arg2 : VkQueryPool;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyQueryPool); -- vulkan_core.h:3190
type PFN_vkGetQueryPoolResults is access function
(arg1 : VkDevice;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : crtdefs_h.size_t;
arg6 : System.Address;
arg7 : VkDeviceSize;
arg8 : VkQueryResultFlags) return VkResult;
pragma Convention (C, PFN_vkGetQueryPoolResults); -- vulkan_core.h:3191
type PFN_vkCreateBuffer is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateBuffer); -- vulkan_core.h:3192
type PFN_vkDestroyBuffer is access procedure
(arg1 : VkDevice;
arg2 : VkBuffer;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyBuffer); -- vulkan_core.h:3193
type PFN_vkCreateBufferView is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateBufferView); -- vulkan_core.h:3194
type PFN_vkDestroyBufferView is access procedure
(arg1 : VkDevice;
arg2 : VkBufferView;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyBufferView); -- vulkan_core.h:3195
type PFN_vkCreateImage is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateImage); -- vulkan_core.h:3196
type PFN_vkDestroyImage is access procedure
(arg1 : VkDevice;
arg2 : VkImage;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyImage); -- vulkan_core.h:3197
type PFN_vkGetImageSubresourceLayout is access procedure
(arg1 : VkDevice;
arg2 : VkImage;
arg3 : System.Address;
arg4 : access VkSubresourceLayout);
pragma Convention (C, PFN_vkGetImageSubresourceLayout); -- vulkan_core.h:3198
type PFN_vkCreateImageView is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateImageView); -- vulkan_core.h:3199
type PFN_vkDestroyImageView is access procedure
(arg1 : VkDevice;
arg2 : VkImageView;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyImageView); -- vulkan_core.h:3200
type PFN_vkCreateShaderModule is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateShaderModule); -- vulkan_core.h:3201
type PFN_vkDestroyShaderModule is access procedure
(arg1 : VkDevice;
arg2 : VkShaderModule;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyShaderModule); -- vulkan_core.h:3202
type PFN_vkCreatePipelineCache is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreatePipelineCache); -- vulkan_core.h:3203
type PFN_vkDestroyPipelineCache is access procedure
(arg1 : VkDevice;
arg2 : VkPipelineCache;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyPipelineCache); -- vulkan_core.h:3204
type PFN_vkGetPipelineCacheData is access function
(arg1 : VkDevice;
arg2 : VkPipelineCache;
arg3 : access crtdefs_h.size_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetPipelineCacheData); -- vulkan_core.h:3205
type PFN_vkMergePipelineCaches is access function
(arg1 : VkDevice;
arg2 : VkPipelineCache;
arg3 : stdint_h.uint32_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkMergePipelineCaches); -- vulkan_core.h:3206
type PFN_vkCreateGraphicsPipelines is access function
(arg1 : VkDevice;
arg2 : VkPipelineCache;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : System.Address;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateGraphicsPipelines); -- vulkan_core.h:3207
type PFN_vkCreateComputePipelines is access function
(arg1 : VkDevice;
arg2 : VkPipelineCache;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : System.Address;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateComputePipelines); -- vulkan_core.h:3208
type PFN_vkDestroyPipeline is access procedure
(arg1 : VkDevice;
arg2 : VkPipeline;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyPipeline); -- vulkan_core.h:3209
type PFN_vkCreatePipelineLayout is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreatePipelineLayout); -- vulkan_core.h:3210
type PFN_vkDestroyPipelineLayout is access procedure
(arg1 : VkDevice;
arg2 : VkPipelineLayout;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyPipelineLayout); -- vulkan_core.h:3211
type PFN_vkCreateSampler is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateSampler); -- vulkan_core.h:3212
type PFN_vkDestroySampler is access procedure
(arg1 : VkDevice;
arg2 : VkSampler;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroySampler); -- vulkan_core.h:3213
type PFN_vkCreateDescriptorSetLayout is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDescriptorSetLayout); -- vulkan_core.h:3214
type PFN_vkDestroyDescriptorSetLayout is access procedure
(arg1 : VkDevice;
arg2 : VkDescriptorSetLayout;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyDescriptorSetLayout); -- vulkan_core.h:3215
type PFN_vkCreateDescriptorPool is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDescriptorPool); -- vulkan_core.h:3216
type PFN_vkDestroyDescriptorPool is access procedure
(arg1 : VkDevice;
arg2 : VkDescriptorPool;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyDescriptorPool); -- vulkan_core.h:3217
type PFN_vkResetDescriptorPool is access function
(arg1 : VkDevice;
arg2 : VkDescriptorPool;
arg3 : VkDescriptorPoolResetFlags) return VkResult;
pragma Convention (C, PFN_vkResetDescriptorPool); -- vulkan_core.h:3218
type PFN_vkAllocateDescriptorSets is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkAllocateDescriptorSets); -- vulkan_core.h:3219
type PFN_vkFreeDescriptorSets is access function
(arg1 : VkDevice;
arg2 : VkDescriptorPool;
arg3 : stdint_h.uint32_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkFreeDescriptorSets); -- vulkan_core.h:3220
type PFN_vkUpdateDescriptorSets is access procedure
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : stdint_h.uint32_t;
arg5 : System.Address);
pragma Convention (C, PFN_vkUpdateDescriptorSets); -- vulkan_core.h:3221
type PFN_vkCreateFramebuffer is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateFramebuffer); -- vulkan_core.h:3222
type PFN_vkDestroyFramebuffer is access procedure
(arg1 : VkDevice;
arg2 : VkFramebuffer;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyFramebuffer); -- vulkan_core.h:3223
type PFN_vkCreateRenderPass is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateRenderPass); -- vulkan_core.h:3224
type PFN_vkDestroyRenderPass is access procedure
(arg1 : VkDevice;
arg2 : VkRenderPass;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyRenderPass); -- vulkan_core.h:3225
type PFN_vkGetRenderAreaGranularity is access procedure
(arg1 : VkDevice;
arg2 : VkRenderPass;
arg3 : access VkExtent2D);
pragma Convention (C, PFN_vkGetRenderAreaGranularity); -- vulkan_core.h:3226
type PFN_vkCreateCommandPool is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateCommandPool); -- vulkan_core.h:3227
type PFN_vkDestroyCommandPool is access procedure
(arg1 : VkDevice;
arg2 : VkCommandPool;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyCommandPool); -- vulkan_core.h:3228
type PFN_vkResetCommandPool is access function
(arg1 : VkDevice;
arg2 : VkCommandPool;
arg3 : VkCommandPoolResetFlags) return VkResult;
pragma Convention (C, PFN_vkResetCommandPool); -- vulkan_core.h:3229
type PFN_vkAllocateCommandBuffers is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkAllocateCommandBuffers); -- vulkan_core.h:3230
type PFN_vkFreeCommandBuffers is access procedure
(arg1 : VkDevice;
arg2 : VkCommandPool;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkFreeCommandBuffers); -- vulkan_core.h:3231
type PFN_vkBeginCommandBuffer is access function (arg1 : VkCommandBuffer; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkBeginCommandBuffer); -- vulkan_core.h:3232
type PFN_vkEndCommandBuffer is access function (arg1 : VkCommandBuffer) return VkResult;
pragma Convention (C, PFN_vkEndCommandBuffer); -- vulkan_core.h:3233
type PFN_vkResetCommandBuffer is access function (arg1 : VkCommandBuffer; arg2 : VkCommandBufferResetFlags) return VkResult;
pragma Convention (C, PFN_vkResetCommandBuffer); -- vulkan_core.h:3234
type PFN_vkCmdBindPipeline is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineBindPoint;
arg3 : VkPipeline);
pragma Convention (C, PFN_vkCmdBindPipeline); -- vulkan_core.h:3235
type PFN_vkCmdSetViewport is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdSetViewport); -- vulkan_core.h:3236
type PFN_vkCmdSetScissor is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdSetScissor); -- vulkan_core.h:3237
type PFN_vkCmdSetLineWidth is access procedure (arg1 : VkCommandBuffer; arg2 : float);
pragma Convention (C, PFN_vkCmdSetLineWidth); -- vulkan_core.h:3238
type PFN_vkCmdSetDepthBias is access procedure
(arg1 : VkCommandBuffer;
arg2 : float;
arg3 : float;
arg4 : float);
pragma Convention (C, PFN_vkCmdSetDepthBias); -- vulkan_core.h:3239
type PFN_vkCmdSetBlendConstants is access procedure (arg1 : VkCommandBuffer; arg2 : access float);
pragma Convention (C, PFN_vkCmdSetBlendConstants); -- vulkan_core.h:3240
type PFN_vkCmdSetDepthBounds is access procedure
(arg1 : VkCommandBuffer;
arg2 : float;
arg3 : float);
pragma Convention (C, PFN_vkCmdSetDepthBounds); -- vulkan_core.h:3241
type PFN_vkCmdSetStencilCompareMask is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkStencilFaceFlags;
arg3 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdSetStencilCompareMask); -- vulkan_core.h:3242
type PFN_vkCmdSetStencilWriteMask is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkStencilFaceFlags;
arg3 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdSetStencilWriteMask); -- vulkan_core.h:3243
type PFN_vkCmdSetStencilReference is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkStencilFaceFlags;
arg3 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdSetStencilReference); -- vulkan_core.h:3244
type PFN_vkCmdBindDescriptorSets is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineBindPoint;
arg3 : VkPipelineLayout;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t;
arg6 : System.Address;
arg7 : stdint_h.uint32_t;
arg8 : access stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdBindDescriptorSets); -- vulkan_core.h:3245
type PFN_vkCmdBindIndexBuffer is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkIndexType);
pragma Convention (C, PFN_vkCmdBindIndexBuffer); -- vulkan_core.h:3246
type PFN_vkCmdBindVertexBuffers is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : access VkDeviceSize);
pragma Convention (C, PFN_vkCmdBindVertexBuffers); -- vulkan_core.h:3247
type PFN_vkCmdDraw is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDraw); -- vulkan_core.h:3248
type PFN_vkCmdDrawIndexed is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.int32_t;
arg6 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndexed); -- vulkan_core.h:3249
type PFN_vkCmdDrawIndirect is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndirect); -- vulkan_core.h:3250
type PFN_vkCmdDrawIndexedIndirect is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndexedIndirect); -- vulkan_core.h:3251
type PFN_vkCmdDispatch is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDispatch); -- vulkan_core.h:3252
type PFN_vkCmdDispatchIndirect is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize);
pragma Convention (C, PFN_vkCmdDispatchIndirect); -- vulkan_core.h:3253
type PFN_vkCmdCopyBuffer is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkBuffer;
arg4 : stdint_h.uint32_t;
arg5 : System.Address);
pragma Convention (C, PFN_vkCmdCopyBuffer); -- vulkan_core.h:3254
type PFN_vkCmdCopyImage is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkImage;
arg3 : VkImageLayout;
arg4 : VkImage;
arg5 : VkImageLayout;
arg6 : stdint_h.uint32_t;
arg7 : System.Address);
pragma Convention (C, PFN_vkCmdCopyImage); -- vulkan_core.h:3255
type PFN_vkCmdBlitImage is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkImage;
arg3 : VkImageLayout;
arg4 : VkImage;
arg5 : VkImageLayout;
arg6 : stdint_h.uint32_t;
arg7 : System.Address;
arg8 : VkFilter);
pragma Convention (C, PFN_vkCmdBlitImage); -- vulkan_core.h:3256
type PFN_vkCmdCopyBufferToImage is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkImage;
arg4 : VkImageLayout;
arg5 : stdint_h.uint32_t;
arg6 : System.Address);
pragma Convention (C, PFN_vkCmdCopyBufferToImage); -- vulkan_core.h:3257
type PFN_vkCmdCopyImageToBuffer is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkImage;
arg3 : VkImageLayout;
arg4 : VkBuffer;
arg5 : stdint_h.uint32_t;
arg6 : System.Address);
pragma Convention (C, PFN_vkCmdCopyImageToBuffer); -- vulkan_core.h:3258
type PFN_vkCmdUpdateBuffer is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkDeviceSize;
arg5 : System.Address);
pragma Convention (C, PFN_vkCmdUpdateBuffer); -- vulkan_core.h:3259
type PFN_vkCmdFillBuffer is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkDeviceSize;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdFillBuffer); -- vulkan_core.h:3260
type PFN_vkCmdClearColorImage is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkImage;
arg3 : VkImageLayout;
arg4 : System.Address;
arg5 : stdint_h.uint32_t;
arg6 : System.Address);
pragma Convention (C, PFN_vkCmdClearColorImage); -- vulkan_core.h:3261
type PFN_vkCmdClearDepthStencilImage is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkImage;
arg3 : VkImageLayout;
arg4 : System.Address;
arg5 : stdint_h.uint32_t;
arg6 : System.Address);
pragma Convention (C, PFN_vkCmdClearDepthStencilImage); -- vulkan_core.h:3262
type PFN_vkCmdClearAttachments is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : stdint_h.uint32_t;
arg5 : System.Address);
pragma Convention (C, PFN_vkCmdClearAttachments); -- vulkan_core.h:3263
type PFN_vkCmdResolveImage is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkImage;
arg3 : VkImageLayout;
arg4 : VkImage;
arg5 : VkImageLayout;
arg6 : stdint_h.uint32_t;
arg7 : System.Address);
pragma Convention (C, PFN_vkCmdResolveImage); -- vulkan_core.h:3264
type PFN_vkCmdSetEvent is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkEvent;
arg3 : VkPipelineStageFlags);
pragma Convention (C, PFN_vkCmdSetEvent); -- vulkan_core.h:3265
type PFN_vkCmdResetEvent is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkEvent;
arg3 : VkPipelineStageFlags);
pragma Convention (C, PFN_vkCmdResetEvent); -- vulkan_core.h:3266
type PFN_vkCmdWaitEvents is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkPipelineStageFlags;
arg5 : VkPipelineStageFlags;
arg6 : stdint_h.uint32_t;
arg7 : System.Address;
arg8 : stdint_h.uint32_t;
arg9 : System.Address;
arg10 : stdint_h.uint32_t;
arg11 : System.Address);
pragma Convention (C, PFN_vkCmdWaitEvents); -- vulkan_core.h:3267
type PFN_vkCmdPipelineBarrier is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineStageFlags;
arg3 : VkPipelineStageFlags;
arg4 : VkDependencyFlags;
arg5 : stdint_h.uint32_t;
arg6 : System.Address;
arg7 : stdint_h.uint32_t;
arg8 : System.Address;
arg9 : stdint_h.uint32_t;
arg10 : System.Address);
pragma Convention (C, PFN_vkCmdPipelineBarrier); -- vulkan_core.h:3268
type PFN_vkCmdBeginQuery is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : VkQueryControlFlags);
pragma Convention (C, PFN_vkCmdBeginQuery); -- vulkan_core.h:3269
type PFN_vkCmdEndQuery is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdEndQuery); -- vulkan_core.h:3270
type PFN_vkCmdResetQueryPool is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdResetQueryPool); -- vulkan_core.h:3271
type PFN_vkCmdWriteTimestamp is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineStageFlagBits;
arg3 : VkQueryPool;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdWriteTimestamp); -- vulkan_core.h:3272
type PFN_vkCmdCopyQueryPoolResults is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : VkBuffer;
arg6 : VkDeviceSize;
arg7 : VkDeviceSize;
arg8 : VkQueryResultFlags);
pragma Convention (C, PFN_vkCmdCopyQueryPoolResults); -- vulkan_core.h:3273
type PFN_vkCmdPushConstants is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineLayout;
arg3 : VkShaderStageFlags;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t;
arg6 : System.Address);
pragma Convention (C, PFN_vkCmdPushConstants); -- vulkan_core.h:3274
type PFN_vkCmdBeginRenderPass is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : VkSubpassContents);
pragma Convention (C, PFN_vkCmdBeginRenderPass); -- vulkan_core.h:3275
type PFN_vkCmdNextSubpass is access procedure (arg1 : VkCommandBuffer; arg2 : VkSubpassContents);
pragma Convention (C, PFN_vkCmdNextSubpass); -- vulkan_core.h:3276
type PFN_vkCmdEndRenderPass is access procedure (arg1 : VkCommandBuffer);
pragma Convention (C, PFN_vkCmdEndRenderPass); -- vulkan_core.h:3277
type PFN_vkCmdExecuteCommands is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdExecuteCommands); -- vulkan_core.h:3278
function vkCreateInstance
(pCreateInfo : System.Address;
pAllocator : System.Address := System.Null_Address;
pInstance : System.Address) return VkResult; -- vulkan_core.h:3281
pragma Import (C, vkCreateInstance, "vkCreateInstance");
procedure vkDestroyInstance (instance : VkInstance; pAllocator : System.Address := System.Null_Address); -- vulkan_core.h:3286
pragma Import (C, vkDestroyInstance, "vkDestroyInstance");
function vkEnumeratePhysicalDevices
(instance : VkInstance;
pPhysicalDeviceCount : access stdint_h.uint32_t;
pPhysicalDevices : System.Address) return VkResult; -- vulkan_core.h:3290
pragma Import (C, vkEnumeratePhysicalDevices, "vkEnumeratePhysicalDevices");
procedure vkGetPhysicalDeviceFeatures (physicalDevice : VkPhysicalDevice; pFeatures : access VkPhysicalDeviceFeatures); -- vulkan_core.h:3295
pragma Import (C, vkGetPhysicalDeviceFeatures, "vkGetPhysicalDeviceFeatures");
procedure vkGetPhysicalDeviceFormatProperties
(physicalDevice : VkPhysicalDevice;
format : VkFormat;
pFormatProperties : access VkFormatProperties); -- vulkan_core.h:3299
pragma Import (C, vkGetPhysicalDeviceFormatProperties, "vkGetPhysicalDeviceFormatProperties");
function vkGetPhysicalDeviceImageFormatProperties
(physicalDevice : VkPhysicalDevice;
format : VkFormat;
c_type : VkImageType;
tiling : VkImageTiling;
usage : VkImageUsageFlags;
flags : VkImageCreateFlags;
pImageFormatProperties : access VkImageFormatProperties) return VkResult; -- vulkan_core.h:3304
pragma Import (C, vkGetPhysicalDeviceImageFormatProperties, "vkGetPhysicalDeviceImageFormatProperties");
procedure vkGetPhysicalDeviceProperties (physicalDevice : VkPhysicalDevice; pProperties : access VkPhysicalDeviceProperties); -- vulkan_core.h:3313
pragma Import (C, vkGetPhysicalDeviceProperties, "vkGetPhysicalDeviceProperties");
procedure vkGetPhysicalDeviceQueueFamilyProperties
(physicalDevice : VkPhysicalDevice;
pQueueFamilyPropertyCount : access stdint_h.uint32_t;
pQueueFamilyProperties : access VkQueueFamilyProperties); -- vulkan_core.h:3317
pragma Import (C, vkGetPhysicalDeviceQueueFamilyProperties, "vkGetPhysicalDeviceQueueFamilyProperties");
procedure vkGetPhysicalDeviceMemoryProperties (physicalDevice : VkPhysicalDevice; pMemoryProperties : access VkPhysicalDeviceMemoryProperties); -- vulkan_core.h:3322
pragma Import (C, vkGetPhysicalDeviceMemoryProperties, "vkGetPhysicalDeviceMemoryProperties");
function vkGetInstanceProcAddr (instance : VkInstance; pName : Interfaces.C.Strings.chars_ptr) return PFN_vkVoidFunction; -- vulkan_core.h:3326
pragma Import (C, vkGetInstanceProcAddr, "vkGetInstanceProcAddr");
function vkGetDeviceProcAddr (device : VkDevice; pName : Interfaces.C.Strings.chars_ptr) return PFN_vkVoidFunction; -- vulkan_core.h:3330
pragma Import (C, vkGetDeviceProcAddr, "vkGetDeviceProcAddr");
function vkCreateDevice
(physicalDevice : VkPhysicalDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pDevice : System.Address) return VkResult; -- vulkan_core.h:3334
pragma Import (C, vkCreateDevice, "vkCreateDevice");
procedure vkDestroyDevice (device : VkDevice; pAllocator : System.Address); -- vulkan_core.h:3340
pragma Import (C, vkDestroyDevice, "vkDestroyDevice");
function vkEnumerateInstanceExtensionProperties
(pLayerName : Interfaces.C.Strings.chars_ptr;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkExtensionProperties) return VkResult; -- vulkan_core.h:3344
pragma Import (C, vkEnumerateInstanceExtensionProperties, "vkEnumerateInstanceExtensionProperties");
function vkEnumerateDeviceExtensionProperties
(physicalDevice : VkPhysicalDevice;
pLayerName : Interfaces.C.Strings.chars_ptr;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkExtensionProperties) return VkResult; -- vulkan_core.h:3349
pragma Import (C, vkEnumerateDeviceExtensionProperties, "vkEnumerateDeviceExtensionProperties");
function vkEnumerateInstanceLayerProperties (pPropertyCount : access stdint_h.uint32_t; pProperties : access VkLayerProperties) return VkResult; -- vulkan_core.h:3355
pragma Import (C, vkEnumerateInstanceLayerProperties, "vkEnumerateInstanceLayerProperties");
function vkEnumerateDeviceLayerProperties
(physicalDevice : VkPhysicalDevice;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkLayerProperties) return VkResult; -- vulkan_core.h:3359
pragma Import (C, vkEnumerateDeviceLayerProperties, "vkEnumerateDeviceLayerProperties");
procedure vkGetDeviceQueue
(device : VkDevice;
queueFamilyIndex : stdint_h.uint32_t;
queueIndex : stdint_h.uint32_t;
pQueue : System.Address); -- vulkan_core.h:3364
pragma Import (C, vkGetDeviceQueue, "vkGetDeviceQueue");
function vkQueueSubmit
(queue : VkQueue;
submitCount : stdint_h.uint32_t;
pSubmits : System.Address;
fence : VkFence) return VkResult; -- vulkan_core.h:3370
pragma Import (C, vkQueueSubmit, "vkQueueSubmit");
function vkQueueWaitIdle (queue : VkQueue) return VkResult; -- vulkan_core.h:3376
pragma Import (C, vkQueueWaitIdle, "vkQueueWaitIdle");
function vkDeviceWaitIdle (device : VkDevice) return VkResult; -- vulkan_core.h:3379
pragma Import (C, vkDeviceWaitIdle, "vkDeviceWaitIdle");
function vkAllocateMemory
(device : VkDevice;
pAllocateInfo : System.Address;
pAllocator : System.Address;
pMemory : System.Address) return VkResult; -- vulkan_core.h:3382
pragma Import (C, vkAllocateMemory, "vkAllocateMemory");
procedure vkFreeMemory
(device : VkDevice;
memory : VkDeviceMemory;
pAllocator : System.Address); -- vulkan_core.h:3388
pragma Import (C, vkFreeMemory, "vkFreeMemory");
function vkMapMemory
(device : VkDevice;
memory : VkDeviceMemory;
offset : VkDeviceSize;
size : VkDeviceSize;
flags : VkMemoryMapFlags;
ppData : System.Address) return VkResult; -- vulkan_core.h:3393
pragma Import (C, vkMapMemory, "vkMapMemory");
procedure vkUnmapMemory (device : VkDevice; memory : VkDeviceMemory); -- vulkan_core.h:3401
pragma Import (C, vkUnmapMemory, "vkUnmapMemory");
function vkFlushMappedMemoryRanges
(device : VkDevice;
memoryRangeCount : stdint_h.uint32_t;
pMemoryRanges : System.Address) return VkResult; -- vulkan_core.h:3405
pragma Import (C, vkFlushMappedMemoryRanges, "vkFlushMappedMemoryRanges");
function vkInvalidateMappedMemoryRanges
(device : VkDevice;
memoryRangeCount : stdint_h.uint32_t;
pMemoryRanges : System.Address) return VkResult; -- vulkan_core.h:3410
pragma Import (C, vkInvalidateMappedMemoryRanges, "vkInvalidateMappedMemoryRanges");
procedure vkGetDeviceMemoryCommitment
(device : VkDevice;
memory : VkDeviceMemory;
pCommittedMemoryInBytes : access VkDeviceSize); -- vulkan_core.h:3415
pragma Import (C, vkGetDeviceMemoryCommitment, "vkGetDeviceMemoryCommitment");
function vkBindBufferMemory
(device : VkDevice;
buffer : VkBuffer;
memory : VkDeviceMemory;
memoryOffset : VkDeviceSize) return VkResult; -- vulkan_core.h:3420
pragma Import (C, vkBindBufferMemory, "vkBindBufferMemory");
function vkBindImageMemory
(device : VkDevice;
image : VkImage;
memory : VkDeviceMemory;
memoryOffset : VkDeviceSize) return VkResult; -- vulkan_core.h:3426
pragma Import (C, vkBindImageMemory, "vkBindImageMemory");
procedure vkGetBufferMemoryRequirements
(device : VkDevice;
buffer : VkBuffer;
pMemoryRequirements : access VkMemoryRequirements); -- vulkan_core.h:3432
pragma Import (C, vkGetBufferMemoryRequirements, "vkGetBufferMemoryRequirements");
procedure vkGetImageMemoryRequirements
(device : VkDevice;
image : VkImage;
pMemoryRequirements : access VkMemoryRequirements); -- vulkan_core.h:3437
pragma Import (C, vkGetImageMemoryRequirements, "vkGetImageMemoryRequirements");
procedure vkGetImageSparseMemoryRequirements
(device : VkDevice;
image : VkImage;
pSparseMemoryRequirementCount : access stdint_h.uint32_t;
pSparseMemoryRequirements : access VkSparseImageMemoryRequirements); -- vulkan_core.h:3442
pragma Import (C, vkGetImageSparseMemoryRequirements, "vkGetImageSparseMemoryRequirements");
procedure vkGetPhysicalDeviceSparseImageFormatProperties
(physicalDevice : VkPhysicalDevice;
format : VkFormat;
c_type : VkImageType;
samples : VkSampleCountFlagBits;
usage : VkImageUsageFlags;
tiling : VkImageTiling;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkSparseImageFormatProperties); -- vulkan_core.h:3448
pragma Import (C, vkGetPhysicalDeviceSparseImageFormatProperties, "vkGetPhysicalDeviceSparseImageFormatProperties");
function vkQueueBindSparse
(queue : VkQueue;
bindInfoCount : stdint_h.uint32_t;
pBindInfo : System.Address;
fence : VkFence) return VkResult; -- vulkan_core.h:3458
pragma Import (C, vkQueueBindSparse, "vkQueueBindSparse");
function vkCreateFence
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pFence : System.Address) return VkResult; -- vulkan_core.h:3464
pragma Import (C, vkCreateFence, "vkCreateFence");
procedure vkDestroyFence
(device : VkDevice;
fence : VkFence;
pAllocator : System.Address); -- vulkan_core.h:3470
pragma Import (C, vkDestroyFence, "vkDestroyFence");
function vkResetFences
(device : VkDevice;
fenceCount : stdint_h.uint32_t;
pFences : System.Address) return VkResult; -- vulkan_core.h:3475
pragma Import (C, vkResetFences, "vkResetFences");
function vkGetFenceStatus (device : VkDevice; fence : VkFence) return VkResult; -- vulkan_core.h:3480
pragma Import (C, vkGetFenceStatus, "vkGetFenceStatus");
function vkWaitForFences
(device : VkDevice;
fenceCount : stdint_h.uint32_t;
pFences : System.Address;
waitAll : VkBool32;
timeout : stdint_h.uint64_t) return VkResult; -- vulkan_core.h:3484
pragma Import (C, vkWaitForFences, "vkWaitForFences");
function vkCreateSemaphore
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pSemaphore : System.Address) return VkResult; -- vulkan_core.h:3491
pragma Import (C, vkCreateSemaphore, "vkCreateSemaphore");
procedure vkDestroySemaphore
(device : VkDevice;
semaphore : VkSemaphore;
pAllocator : System.Address); -- vulkan_core.h:3497
pragma Import (C, vkDestroySemaphore, "vkDestroySemaphore");
function vkCreateEvent
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pEvent : System.Address) return VkResult; -- vulkan_core.h:3502
pragma Import (C, vkCreateEvent, "vkCreateEvent");
procedure vkDestroyEvent
(device : VkDevice;
event : VkEvent;
pAllocator : System.Address); -- vulkan_core.h:3508
pragma Import (C, vkDestroyEvent, "vkDestroyEvent");
function vkGetEventStatus (device : VkDevice; event : VkEvent) return VkResult; -- vulkan_core.h:3513
pragma Import (C, vkGetEventStatus, "vkGetEventStatus");
function vkSetEvent (device : VkDevice; event : VkEvent) return VkResult; -- vulkan_core.h:3517
pragma Import (C, vkSetEvent, "vkSetEvent");
function vkResetEvent (device : VkDevice; event : VkEvent) return VkResult; -- vulkan_core.h:3521
pragma Import (C, vkResetEvent, "vkResetEvent");
function vkCreateQueryPool
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pQueryPool : System.Address) return VkResult; -- vulkan_core.h:3525
pragma Import (C, vkCreateQueryPool, "vkCreateQueryPool");
procedure vkDestroyQueryPool
(device : VkDevice;
queryPool : VkQueryPool;
pAllocator : System.Address); -- vulkan_core.h:3531
pragma Import (C, vkDestroyQueryPool, "vkDestroyQueryPool");
function vkGetQueryPoolResults
(device : VkDevice;
queryPool : VkQueryPool;
firstQuery : stdint_h.uint32_t;
queryCount : stdint_h.uint32_t;
dataSize : crtdefs_h.size_t;
pData : System.Address;
stride : VkDeviceSize;
flags : VkQueryResultFlags) return VkResult; -- vulkan_core.h:3536
pragma Import (C, vkGetQueryPoolResults, "vkGetQueryPoolResults");
function vkCreateBuffer
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pBuffer : System.Address) return VkResult; -- vulkan_core.h:3546
pragma Import (C, vkCreateBuffer, "vkCreateBuffer");
procedure vkDestroyBuffer
(device : VkDevice;
buffer : VkBuffer;
pAllocator : System.Address); -- vulkan_core.h:3552
pragma Import (C, vkDestroyBuffer, "vkDestroyBuffer");
function vkCreateBufferView
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pView : System.Address) return VkResult; -- vulkan_core.h:3557
pragma Import (C, vkCreateBufferView, "vkCreateBufferView");
procedure vkDestroyBufferView
(device : VkDevice;
bufferView : VkBufferView;
pAllocator : System.Address); -- vulkan_core.h:3563
pragma Import (C, vkDestroyBufferView, "vkDestroyBufferView");
function vkCreateImage
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pImage : System.Address) return VkResult; -- vulkan_core.h:3568
pragma Import (C, vkCreateImage, "vkCreateImage");
procedure vkDestroyImage
(device : VkDevice;
image : VkImage;
pAllocator : System.Address); -- vulkan_core.h:3574
pragma Import (C, vkDestroyImage, "vkDestroyImage");
procedure vkGetImageSubresourceLayout
(device : VkDevice;
image : VkImage;
pSubresource : System.Address;
pLayout : access VkSubresourceLayout); -- vulkan_core.h:3579
pragma Import (C, vkGetImageSubresourceLayout, "vkGetImageSubresourceLayout");
function vkCreateImageView
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pView : System.Address) return VkResult; -- vulkan_core.h:3585
pragma Import (C, vkCreateImageView, "vkCreateImageView");
procedure vkDestroyImageView
(device : VkDevice;
imageView : VkImageView;
pAllocator : System.Address); -- vulkan_core.h:3591
pragma Import (C, vkDestroyImageView, "vkDestroyImageView");
function vkCreateShaderModule
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pShaderModule : System.Address) return VkResult; -- vulkan_core.h:3596
pragma Import (C, vkCreateShaderModule, "vkCreateShaderModule");
procedure vkDestroyShaderModule
(device : VkDevice;
shaderModule : VkShaderModule;
pAllocator : System.Address); -- vulkan_core.h:3602
pragma Import (C, vkDestroyShaderModule, "vkDestroyShaderModule");
function vkCreatePipelineCache
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pPipelineCache : System.Address) return VkResult; -- vulkan_core.h:3607
pragma Import (C, vkCreatePipelineCache, "vkCreatePipelineCache");
procedure vkDestroyPipelineCache
(device : VkDevice;
pipelineCache : VkPipelineCache;
pAllocator : System.Address); -- vulkan_core.h:3613
pragma Import (C, vkDestroyPipelineCache, "vkDestroyPipelineCache");
function vkGetPipelineCacheData
(device : VkDevice;
pipelineCache : VkPipelineCache;
pDataSize : access crtdefs_h.size_t;
pData : System.Address) return VkResult; -- vulkan_core.h:3618
pragma Import (C, vkGetPipelineCacheData, "vkGetPipelineCacheData");
function vkMergePipelineCaches
(device : VkDevice;
dstCache : VkPipelineCache;
srcCacheCount : stdint_h.uint32_t;
pSrcCaches : System.Address) return VkResult; -- vulkan_core.h:3624
pragma Import (C, vkMergePipelineCaches, "vkMergePipelineCaches");
function vkCreateGraphicsPipelines
(device : VkDevice;
pipelineCache : VkPipelineCache;
createInfoCount : stdint_h.uint32_t;
pCreateInfos : System.Address;
pAllocator : System.Address;
pPipelines : System.Address) return VkResult; -- vulkan_core.h:3630
pragma Import (C, vkCreateGraphicsPipelines, "vkCreateGraphicsPipelines");
function vkCreateComputePipelines
(device : VkDevice;
pipelineCache : VkPipelineCache;
createInfoCount : stdint_h.uint32_t;
pCreateInfos : System.Address;
pAllocator : System.Address;
pPipelines : System.Address) return VkResult; -- vulkan_core.h:3638
pragma Import (C, vkCreateComputePipelines, "vkCreateComputePipelines");
procedure vkDestroyPipeline
(device : VkDevice;
pipeline : VkPipeline;
pAllocator : System.Address); -- vulkan_core.h:3646
pragma Import (C, vkDestroyPipeline, "vkDestroyPipeline");
function vkCreatePipelineLayout
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pPipelineLayout : System.Address) return VkResult; -- vulkan_core.h:3651
pragma Import (C, vkCreatePipelineLayout, "vkCreatePipelineLayout");
procedure vkDestroyPipelineLayout
(device : VkDevice;
pipelineLayout : VkPipelineLayout;
pAllocator : System.Address); -- vulkan_core.h:3657
pragma Import (C, vkDestroyPipelineLayout, "vkDestroyPipelineLayout");
function vkCreateSampler
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pSampler : System.Address) return VkResult; -- vulkan_core.h:3662
pragma Import (C, vkCreateSampler, "vkCreateSampler");
procedure vkDestroySampler
(device : VkDevice;
sampler : VkSampler;
pAllocator : System.Address); -- vulkan_core.h:3668
pragma Import (C, vkDestroySampler, "vkDestroySampler");
function vkCreateDescriptorSetLayout
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pSetLayout : System.Address) return VkResult; -- vulkan_core.h:3673
pragma Import (C, vkCreateDescriptorSetLayout, "vkCreateDescriptorSetLayout");
procedure vkDestroyDescriptorSetLayout
(device : VkDevice;
descriptorSetLayout : VkDescriptorSetLayout;
pAllocator : System.Address); -- vulkan_core.h:3679
pragma Import (C, vkDestroyDescriptorSetLayout, "vkDestroyDescriptorSetLayout");
function vkCreateDescriptorPool
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pDescriptorPool : System.Address) return VkResult; -- vulkan_core.h:3684
pragma Import (C, vkCreateDescriptorPool, "vkCreateDescriptorPool");
procedure vkDestroyDescriptorPool
(device : VkDevice;
descriptorPool : VkDescriptorPool;
pAllocator : System.Address); -- vulkan_core.h:3690
pragma Import (C, vkDestroyDescriptorPool, "vkDestroyDescriptorPool");
function vkResetDescriptorPool
(device : VkDevice;
descriptorPool : VkDescriptorPool;
flags : VkDescriptorPoolResetFlags) return VkResult; -- vulkan_core.h:3695
pragma Import (C, vkResetDescriptorPool, "vkResetDescriptorPool");
function vkAllocateDescriptorSets
(device : VkDevice;
pAllocateInfo : System.Address;
pDescriptorSets : System.Address) return VkResult; -- vulkan_core.h:3700
pragma Import (C, vkAllocateDescriptorSets, "vkAllocateDescriptorSets");
function vkFreeDescriptorSets
(device : VkDevice;
descriptorPool : VkDescriptorPool;
descriptorSetCount : stdint_h.uint32_t;
pDescriptorSets : System.Address) return VkResult; -- vulkan_core.h:3705
pragma Import (C, vkFreeDescriptorSets, "vkFreeDescriptorSets");
procedure vkUpdateDescriptorSets
(device : VkDevice;
descriptorWriteCount : stdint_h.uint32_t;
pDescriptorWrites : System.Address;
descriptorCopyCount : stdint_h.uint32_t;
pDescriptorCopies : System.Address); -- vulkan_core.h:3711
pragma Import (C, vkUpdateDescriptorSets, "vkUpdateDescriptorSets");
function vkCreateFramebuffer
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pFramebuffer : System.Address) return VkResult; -- vulkan_core.h:3718
pragma Import (C, vkCreateFramebuffer, "vkCreateFramebuffer");
procedure vkDestroyFramebuffer
(device : VkDevice;
framebuffer : VkFramebuffer;
pAllocator : System.Address); -- vulkan_core.h:3724
pragma Import (C, vkDestroyFramebuffer, "vkDestroyFramebuffer");
function vkCreateRenderPass
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pRenderPass : System.Address) return VkResult; -- vulkan_core.h:3729
pragma Import (C, vkCreateRenderPass, "vkCreateRenderPass");
procedure vkDestroyRenderPass
(device : VkDevice;
renderPass : VkRenderPass;
pAllocator : System.Address); -- vulkan_core.h:3735
pragma Import (C, vkDestroyRenderPass, "vkDestroyRenderPass");
procedure vkGetRenderAreaGranularity
(device : VkDevice;
renderPass : VkRenderPass;
pGranularity : access VkExtent2D); -- vulkan_core.h:3740
pragma Import (C, vkGetRenderAreaGranularity, "vkGetRenderAreaGranularity");
function vkCreateCommandPool
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pCommandPool : System.Address) return VkResult; -- vulkan_core.h:3745
pragma Import (C, vkCreateCommandPool, "vkCreateCommandPool");
procedure vkDestroyCommandPool
(device : VkDevice;
commandPool : VkCommandPool;
pAllocator : System.Address); -- vulkan_core.h:3751
pragma Import (C, vkDestroyCommandPool, "vkDestroyCommandPool");
function vkResetCommandPool
(device : VkDevice;
commandPool : VkCommandPool;
flags : VkCommandPoolResetFlags) return VkResult; -- vulkan_core.h:3756
pragma Import (C, vkResetCommandPool, "vkResetCommandPool");
function vkAllocateCommandBuffers
(device : VkDevice;
pAllocateInfo : System.Address;
pCommandBuffers : System.Address) return VkResult; -- vulkan_core.h:3761
pragma Import (C, vkAllocateCommandBuffers, "vkAllocateCommandBuffers");
procedure vkFreeCommandBuffers
(device : VkDevice;
commandPool : VkCommandPool;
commandBufferCount : stdint_h.uint32_t;
pCommandBuffers : System.Address); -- vulkan_core.h:3766
pragma Import (C, vkFreeCommandBuffers, "vkFreeCommandBuffers");
function vkBeginCommandBuffer (commandBuffer : VkCommandBuffer; pBeginInfo : System.Address) return VkResult; -- vulkan_core.h:3772
pragma Import (C, vkBeginCommandBuffer, "vkBeginCommandBuffer");
function vkEndCommandBuffer (commandBuffer : VkCommandBuffer) return VkResult; -- vulkan_core.h:3776
pragma Import (C, vkEndCommandBuffer, "vkEndCommandBuffer");
function vkResetCommandBuffer (commandBuffer : VkCommandBuffer; flags : VkCommandBufferResetFlags) return VkResult; -- vulkan_core.h:3779
pragma Import (C, vkResetCommandBuffer, "vkResetCommandBuffer");
procedure vkCmdBindPipeline
(commandBuffer : VkCommandBuffer;
pipelineBindPoint : VkPipelineBindPoint;
pipeline : VkPipeline); -- vulkan_core.h:3783
pragma Import (C, vkCmdBindPipeline, "vkCmdBindPipeline");
procedure vkCmdSetViewport
(commandBuffer : VkCommandBuffer;
firstViewport : stdint_h.uint32_t;
viewportCount : stdint_h.uint32_t;
pViewports : System.Address); -- vulkan_core.h:3788
pragma Import (C, vkCmdSetViewport, "vkCmdSetViewport");
procedure vkCmdSetScissor
(commandBuffer : VkCommandBuffer;
firstScissor : stdint_h.uint32_t;
scissorCount : stdint_h.uint32_t;
pScissors : System.Address); -- vulkan_core.h:3794
pragma Import (C, vkCmdSetScissor, "vkCmdSetScissor");
procedure vkCmdSetLineWidth (commandBuffer : VkCommandBuffer; lineWidth : float); -- vulkan_core.h:3800
pragma Import (C, vkCmdSetLineWidth, "vkCmdSetLineWidth");
procedure vkCmdSetDepthBias
(commandBuffer : VkCommandBuffer;
depthBiasConstantFactor : float;
depthBiasClamp : float;
depthBiasSlopeFactor : float); -- vulkan_core.h:3804
pragma Import (C, vkCmdSetDepthBias, "vkCmdSetDepthBias");
procedure vkCmdSetBlendConstants (commandBuffer : VkCommandBuffer; blendConstants : access float); -- vulkan_core.h:3810
pragma Import (C, vkCmdSetBlendConstants, "vkCmdSetBlendConstants");
procedure vkCmdSetDepthBounds
(commandBuffer : VkCommandBuffer;
minDepthBounds : float;
maxDepthBounds : float); -- vulkan_core.h:3814
pragma Import (C, vkCmdSetDepthBounds, "vkCmdSetDepthBounds");
procedure vkCmdSetStencilCompareMask
(commandBuffer : VkCommandBuffer;
faceMask : VkStencilFaceFlags;
compareMask : stdint_h.uint32_t); -- vulkan_core.h:3819
pragma Import (C, vkCmdSetStencilCompareMask, "vkCmdSetStencilCompareMask");
procedure vkCmdSetStencilWriteMask
(commandBuffer : VkCommandBuffer;
faceMask : VkStencilFaceFlags;
writeMask : stdint_h.uint32_t); -- vulkan_core.h:3824
pragma Import (C, vkCmdSetStencilWriteMask, "vkCmdSetStencilWriteMask");
procedure vkCmdSetStencilReference
(commandBuffer : VkCommandBuffer;
faceMask : VkStencilFaceFlags;
reference : stdint_h.uint32_t); -- vulkan_core.h:3829
pragma Import (C, vkCmdSetStencilReference, "vkCmdSetStencilReference");
procedure vkCmdBindDescriptorSets
(commandBuffer : VkCommandBuffer;
pipelineBindPoint : VkPipelineBindPoint;
layout : VkPipelineLayout;
firstSet : stdint_h.uint32_t;
descriptorSetCount : stdint_h.uint32_t;
pDescriptorSets : System.Address;
dynamicOffsetCount : stdint_h.uint32_t;
pDynamicOffsets : access stdint_h.uint32_t); -- vulkan_core.h:3834
pragma Import (C, vkCmdBindDescriptorSets, "vkCmdBindDescriptorSets");
procedure vkCmdBindIndexBuffer
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
indexType : VkIndexType); -- vulkan_core.h:3844
pragma Import (C, vkCmdBindIndexBuffer, "vkCmdBindIndexBuffer");
procedure vkCmdBindVertexBuffers
(commandBuffer : VkCommandBuffer;
firstBinding : stdint_h.uint32_t;
bindingCount : stdint_h.uint32_t;
pBuffers : System.Address;
pOffsets : access VkDeviceSize); -- vulkan_core.h:3850
pragma Import (C, vkCmdBindVertexBuffers, "vkCmdBindVertexBuffers");
procedure vkCmdDraw
(commandBuffer : VkCommandBuffer;
vertexCount : stdint_h.uint32_t;
instanceCount : stdint_h.uint32_t;
firstVertex : stdint_h.uint32_t;
firstInstance : stdint_h.uint32_t); -- vulkan_core.h:3857
pragma Import (C, vkCmdDraw, "vkCmdDraw");
procedure vkCmdDrawIndexed
(commandBuffer : VkCommandBuffer;
indexCount : stdint_h.uint32_t;
instanceCount : stdint_h.uint32_t;
firstIndex : stdint_h.uint32_t;
vertexOffset : stdint_h.int32_t;
firstInstance : stdint_h.uint32_t); -- vulkan_core.h:3864
pragma Import (C, vkCmdDrawIndexed, "vkCmdDrawIndexed");
procedure vkCmdDrawIndirect
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
drawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:3872
pragma Import (C, vkCmdDrawIndirect, "vkCmdDrawIndirect");
procedure vkCmdDrawIndexedIndirect
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
drawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:3879
pragma Import (C, vkCmdDrawIndexedIndirect, "vkCmdDrawIndexedIndirect");
procedure vkCmdDispatch
(commandBuffer : VkCommandBuffer;
groupCountX : stdint_h.uint32_t;
groupCountY : stdint_h.uint32_t;
groupCountZ : stdint_h.uint32_t); -- vulkan_core.h:3886
pragma Import (C, vkCmdDispatch, "vkCmdDispatch");
procedure vkCmdDispatchIndirect
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize); -- vulkan_core.h:3892
pragma Import (C, vkCmdDispatchIndirect, "vkCmdDispatchIndirect");
procedure vkCmdCopyBuffer
(commandBuffer : VkCommandBuffer;
srcBuffer : VkBuffer;
dstBuffer : VkBuffer;
regionCount : stdint_h.uint32_t;
pRegions : System.Address); -- vulkan_core.h:3897
pragma Import (C, vkCmdCopyBuffer, "vkCmdCopyBuffer");
procedure vkCmdCopyImage
(commandBuffer : VkCommandBuffer;
srcImage : VkImage;
srcImageLayout : VkImageLayout;
dstImage : VkImage;
dstImageLayout : VkImageLayout;
regionCount : stdint_h.uint32_t;
pRegions : System.Address); -- vulkan_core.h:3904
pragma Import (C, vkCmdCopyImage, "vkCmdCopyImage");
procedure vkCmdBlitImage
(commandBuffer : VkCommandBuffer;
srcImage : VkImage;
srcImageLayout : VkImageLayout;
dstImage : VkImage;
dstImageLayout : VkImageLayout;
regionCount : stdint_h.uint32_t;
pRegions : System.Address;
filter : VkFilter); -- vulkan_core.h:3913
pragma Import (C, vkCmdBlitImage, "vkCmdBlitImage");
procedure vkCmdCopyBufferToImage
(commandBuffer : VkCommandBuffer;
srcBuffer : VkBuffer;
dstImage : VkImage;
dstImageLayout : VkImageLayout;
regionCount : stdint_h.uint32_t;
pRegions : System.Address); -- vulkan_core.h:3923
pragma Import (C, vkCmdCopyBufferToImage, "vkCmdCopyBufferToImage");
procedure vkCmdCopyImageToBuffer
(commandBuffer : VkCommandBuffer;
srcImage : VkImage;
srcImageLayout : VkImageLayout;
dstBuffer : VkBuffer;
regionCount : stdint_h.uint32_t;
pRegions : System.Address); -- vulkan_core.h:3931
pragma Import (C, vkCmdCopyImageToBuffer, "vkCmdCopyImageToBuffer");
procedure vkCmdUpdateBuffer
(commandBuffer : VkCommandBuffer;
dstBuffer : VkBuffer;
dstOffset : VkDeviceSize;
dataSize : VkDeviceSize;
pData : System.Address); -- vulkan_core.h:3939
pragma Import (C, vkCmdUpdateBuffer, "vkCmdUpdateBuffer");
procedure vkCmdFillBuffer
(commandBuffer : VkCommandBuffer;
dstBuffer : VkBuffer;
dstOffset : VkDeviceSize;
size : VkDeviceSize;
data : stdint_h.uint32_t); -- vulkan_core.h:3946
pragma Import (C, vkCmdFillBuffer, "vkCmdFillBuffer");
procedure vkCmdClearColorImage
(commandBuffer : VkCommandBuffer;
image : VkImage;
imageLayout : VkImageLayout;
pColor : System.Address;
rangeCount : stdint_h.uint32_t;
pRanges : System.Address); -- vulkan_core.h:3953
pragma Import (C, vkCmdClearColorImage, "vkCmdClearColorImage");
procedure vkCmdClearDepthStencilImage
(commandBuffer : VkCommandBuffer;
image : VkImage;
imageLayout : VkImageLayout;
pDepthStencil : System.Address;
rangeCount : stdint_h.uint32_t;
pRanges : System.Address); -- vulkan_core.h:3961
pragma Import (C, vkCmdClearDepthStencilImage, "vkCmdClearDepthStencilImage");
procedure vkCmdClearAttachments
(commandBuffer : VkCommandBuffer;
attachmentCount : stdint_h.uint32_t;
pAttachments : System.Address;
rectCount : stdint_h.uint32_t;
pRects : System.Address); -- vulkan_core.h:3969
pragma Import (C, vkCmdClearAttachments, "vkCmdClearAttachments");
procedure vkCmdResolveImage
(commandBuffer : VkCommandBuffer;
srcImage : VkImage;
srcImageLayout : VkImageLayout;
dstImage : VkImage;
dstImageLayout : VkImageLayout;
regionCount : stdint_h.uint32_t;
pRegions : System.Address); -- vulkan_core.h:3976
pragma Import (C, vkCmdResolveImage, "vkCmdResolveImage");
procedure vkCmdSetEvent
(commandBuffer : VkCommandBuffer;
event : VkEvent;
stageMask : VkPipelineStageFlags); -- vulkan_core.h:3985
pragma Import (C, vkCmdSetEvent, "vkCmdSetEvent");
procedure vkCmdResetEvent
(commandBuffer : VkCommandBuffer;
event : VkEvent;
stageMask : VkPipelineStageFlags); -- vulkan_core.h:3990
pragma Import (C, vkCmdResetEvent, "vkCmdResetEvent");
procedure vkCmdWaitEvents
(commandBuffer : VkCommandBuffer;
eventCount : stdint_h.uint32_t;
pEvents : System.Address;
srcStageMask : VkPipelineStageFlags;
dstStageMask : VkPipelineStageFlags;
memoryBarrierCount : stdint_h.uint32_t;
pMemoryBarriers : System.Address;
bufferMemoryBarrierCount : stdint_h.uint32_t;
pBufferMemoryBarriers : System.Address;
imageMemoryBarrierCount : stdint_h.uint32_t;
pImageMemoryBarriers : System.Address); -- vulkan_core.h:3995
pragma Import (C, vkCmdWaitEvents, "vkCmdWaitEvents");
procedure vkCmdPipelineBarrier
(commandBuffer : VkCommandBuffer;
srcStageMask : VkPipelineStageFlags;
dstStageMask : VkPipelineStageFlags;
dependencyFlags : VkDependencyFlags;
memoryBarrierCount : stdint_h.uint32_t;
pMemoryBarriers : System.Address;
bufferMemoryBarrierCount : stdint_h.uint32_t;
pBufferMemoryBarriers : System.Address;
imageMemoryBarrierCount : stdint_h.uint32_t;
pImageMemoryBarriers : System.Address); -- vulkan_core.h:4008
pragma Import (C, vkCmdPipelineBarrier, "vkCmdPipelineBarrier");
procedure vkCmdBeginQuery
(commandBuffer : VkCommandBuffer;
queryPool : VkQueryPool;
query : stdint_h.uint32_t;
flags : VkQueryControlFlags); -- vulkan_core.h:4020
pragma Import (C, vkCmdBeginQuery, "vkCmdBeginQuery");
procedure vkCmdEndQuery
(commandBuffer : VkCommandBuffer;
queryPool : VkQueryPool;
query : stdint_h.uint32_t); -- vulkan_core.h:4026
pragma Import (C, vkCmdEndQuery, "vkCmdEndQuery");
procedure vkCmdResetQueryPool
(commandBuffer : VkCommandBuffer;
queryPool : VkQueryPool;
firstQuery : stdint_h.uint32_t;
queryCount : stdint_h.uint32_t); -- vulkan_core.h:4031
pragma Import (C, vkCmdResetQueryPool, "vkCmdResetQueryPool");
procedure vkCmdWriteTimestamp
(commandBuffer : VkCommandBuffer;
pipelineStage : VkPipelineStageFlagBits;
queryPool : VkQueryPool;
query : stdint_h.uint32_t); -- vulkan_core.h:4037
pragma Import (C, vkCmdWriteTimestamp, "vkCmdWriteTimestamp");
procedure vkCmdCopyQueryPoolResults
(commandBuffer : VkCommandBuffer;
queryPool : VkQueryPool;
firstQuery : stdint_h.uint32_t;
queryCount : stdint_h.uint32_t;
dstBuffer : VkBuffer;
dstOffset : VkDeviceSize;
stride : VkDeviceSize;
flags : VkQueryResultFlags); -- vulkan_core.h:4043
pragma Import (C, vkCmdCopyQueryPoolResults, "vkCmdCopyQueryPoolResults");
procedure vkCmdPushConstants
(commandBuffer : VkCommandBuffer;
layout : VkPipelineLayout;
stageFlags : VkShaderStageFlags;
offset : stdint_h.uint32_t;
size : stdint_h.uint32_t;
pValues : System.Address); -- vulkan_core.h:4053
pragma Import (C, vkCmdPushConstants, "vkCmdPushConstants");
procedure vkCmdBeginRenderPass
(commandBuffer : VkCommandBuffer;
pRenderPassBegin : System.Address;
contents : VkSubpassContents); -- vulkan_core.h:4061
pragma Import (C, vkCmdBeginRenderPass, "vkCmdBeginRenderPass");
procedure vkCmdNextSubpass (commandBuffer : VkCommandBuffer; contents : VkSubpassContents); -- vulkan_core.h:4066
pragma Import (C, vkCmdNextSubpass, "vkCmdNextSubpass");
procedure vkCmdEndRenderPass (commandBuffer : VkCommandBuffer); -- vulkan_core.h:4070
pragma Import (C, vkCmdEndRenderPass, "vkCmdEndRenderPass");
procedure vkCmdExecuteCommands
(commandBuffer : VkCommandBuffer;
commandBufferCount : stdint_h.uint32_t;
pCommandBuffers : System.Address); -- vulkan_core.h:4073
pragma Import (C, vkCmdExecuteCommands, "vkCmdExecuteCommands");
-- Vulkan 1.1 version number
-- skipped empty struct VkSamplerYcbcrConversion_T
type VkSamplerYcbcrConversion is new System.Address; -- vulkan_core.h:4084
type VkDescriptorUpdateTemplate is new System.Address; -- vulkan_core.h:4085
-- skipped empty struct VkDescriptorUpdateTemplate_T
subtype VkPointClippingBehavior is unsigned;
VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES : constant VkPointClippingBehavior := 0;
VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY : constant VkPointClippingBehavior := 1;
VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES_KHR : constant VkPointClippingBehavior := 0;
VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY_KHR : constant VkPointClippingBehavior := 1;
VK_POINT_CLIPPING_BEHAVIOR_MAX_ENUM : constant VkPointClippingBehavior := 2147483647; -- vulkan_core.h:4090
subtype VkTessellationDomainOrigin is unsigned;
VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT : constant VkTessellationDomainOrigin := 0;
VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT : constant VkTessellationDomainOrigin := 1;
VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT_KHR : constant VkTessellationDomainOrigin := 0;
VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT_KHR : constant VkTessellationDomainOrigin := 1;
VK_TESSELLATION_DOMAIN_ORIGIN_MAX_ENUM : constant VkTessellationDomainOrigin := 2147483647; -- vulkan_core.h:4098
subtype VkSamplerYcbcrModelConversion is unsigned;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY : constant VkSamplerYcbcrModelConversion := 0;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY : constant VkSamplerYcbcrModelConversion := 1;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709 : constant VkSamplerYcbcrModelConversion := 2;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601 : constant VkSamplerYcbcrModelConversion := 3;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020 : constant VkSamplerYcbcrModelConversion := 4;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY_KHR : constant VkSamplerYcbcrModelConversion := 0;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY_KHR : constant VkSamplerYcbcrModelConversion := 1;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709_KHR : constant VkSamplerYcbcrModelConversion := 2;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601_KHR : constant VkSamplerYcbcrModelConversion := 3;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020_KHR : constant VkSamplerYcbcrModelConversion := 4;
VK_SAMPLER_YCBCR_MODEL_CONVERSION_MAX_ENUM : constant VkSamplerYcbcrModelConversion := 2147483647; -- vulkan_core.h:4106
subtype VkSamplerYcbcrRange is unsigned;
VK_SAMPLER_YCBCR_RANGE_ITU_FULL : constant VkSamplerYcbcrRange := 0;
VK_SAMPLER_YCBCR_RANGE_ITU_NARROW : constant VkSamplerYcbcrRange := 1;
VK_SAMPLER_YCBCR_RANGE_ITU_FULL_KHR : constant VkSamplerYcbcrRange := 0;
VK_SAMPLER_YCBCR_RANGE_ITU_NARROW_KHR : constant VkSamplerYcbcrRange := 1;
VK_SAMPLER_YCBCR_RANGE_MAX_ENUM : constant VkSamplerYcbcrRange := 2147483647; -- vulkan_core.h:4120
subtype VkChromaLocation is unsigned;
VK_CHROMA_LOCATION_COSITED_EVEN : constant VkChromaLocation := 0;
VK_CHROMA_LOCATION_MIDPOINT : constant VkChromaLocation := 1;
VK_CHROMA_LOCATION_COSITED_EVEN_KHR : constant VkChromaLocation := 0;
VK_CHROMA_LOCATION_MIDPOINT_KHR : constant VkChromaLocation := 1;
VK_CHROMA_LOCATION_MAX_ENUM : constant VkChromaLocation := 2147483647; -- vulkan_core.h:4128
subtype VkDescriptorUpdateTemplateType is unsigned;
VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET : constant VkDescriptorUpdateTemplateType := 0;
VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORS_KHR : constant VkDescriptorUpdateTemplateType := 1;
VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET_KHR : constant VkDescriptorUpdateTemplateType := 0;
VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_MAX_ENUM : constant VkDescriptorUpdateTemplateType := 2147483647; -- vulkan_core.h:4136
subtype VkSubgroupFeatureFlagBits is unsigned;
VK_SUBGROUP_FEATURE_BASIC_BIT : constant VkSubgroupFeatureFlagBits := 1;
VK_SUBGROUP_FEATURE_VOTE_BIT : constant VkSubgroupFeatureFlagBits := 2;
VK_SUBGROUP_FEATURE_ARITHMETIC_BIT : constant VkSubgroupFeatureFlagBits := 4;
VK_SUBGROUP_FEATURE_BALLOT_BIT : constant VkSubgroupFeatureFlagBits := 8;
VK_SUBGROUP_FEATURE_SHUFFLE_BIT : constant VkSubgroupFeatureFlagBits := 16;
VK_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT : constant VkSubgroupFeatureFlagBits := 32;
VK_SUBGROUP_FEATURE_CLUSTERED_BIT : constant VkSubgroupFeatureFlagBits := 64;
VK_SUBGROUP_FEATURE_QUAD_BIT : constant VkSubgroupFeatureFlagBits := 128;
VK_SUBGROUP_FEATURE_PARTITIONED_BIT_NV : constant VkSubgroupFeatureFlagBits := 256;
VK_SUBGROUP_FEATURE_FLAG_BITS_MAX_ENUM : constant VkSubgroupFeatureFlagBits := 2147483647; -- vulkan_core.h:4143
subtype VkSubgroupFeatureFlags is VkFlags; -- vulkan_core.h:4155
subtype VkPeerMemoryFeatureFlagBits is unsigned;
VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT : constant VkPeerMemoryFeatureFlagBits := 1;
VK_PEER_MEMORY_FEATURE_COPY_DST_BIT : constant VkPeerMemoryFeatureFlagBits := 2;
VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT : constant VkPeerMemoryFeatureFlagBits := 4;
VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT : constant VkPeerMemoryFeatureFlagBits := 8;
VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT_KHR : constant VkPeerMemoryFeatureFlagBits := 1;
VK_PEER_MEMORY_FEATURE_COPY_DST_BIT_KHR : constant VkPeerMemoryFeatureFlagBits := 2;
VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT_KHR : constant VkPeerMemoryFeatureFlagBits := 4;
VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT_KHR : constant VkPeerMemoryFeatureFlagBits := 8;
VK_PEER_MEMORY_FEATURE_FLAG_BITS_MAX_ENUM : constant VkPeerMemoryFeatureFlagBits := 2147483647; -- vulkan_core.h:4157
subtype VkPeerMemoryFeatureFlags is VkFlags; -- vulkan_core.h:4168
subtype VkMemoryAllocateFlagBits is unsigned;
VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT : constant VkMemoryAllocateFlagBits := 1;
VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT : constant VkMemoryAllocateFlagBits := 2;
VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT : constant VkMemoryAllocateFlagBits := 4;
VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT_KHR : constant VkMemoryAllocateFlagBits := 1;
VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT_KHR : constant VkMemoryAllocateFlagBits := 2;
VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR : constant VkMemoryAllocateFlagBits := 4;
VK_MEMORY_ALLOCATE_FLAG_BITS_MAX_ENUM : constant VkMemoryAllocateFlagBits := 2147483647; -- vulkan_core.h:4170
subtype VkMemoryAllocateFlags is VkFlags; -- vulkan_core.h:4179
subtype VkCommandPoolTrimFlags is VkFlags; -- vulkan_core.h:4180
subtype VkDescriptorUpdateTemplateCreateFlags is VkFlags; -- vulkan_core.h:4181
subtype VkExternalMemoryHandleTypeFlagBits is unsigned;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT : constant VkExternalMemoryHandleTypeFlagBits := 1;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT : constant VkExternalMemoryHandleTypeFlagBits := 2;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT : constant VkExternalMemoryHandleTypeFlagBits := 4;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT : constant VkExternalMemoryHandleTypeFlagBits := 8;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT : constant VkExternalMemoryHandleTypeFlagBits := 16;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT : constant VkExternalMemoryHandleTypeFlagBits := 32;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT : constant VkExternalMemoryHandleTypeFlagBits := 64;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT : constant VkExternalMemoryHandleTypeFlagBits := 512;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_ANDROID_HARDWARE_BUFFER_BIT_ANDROID : constant VkExternalMemoryHandleTypeFlagBits := 1024;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT : constant VkExternalMemoryHandleTypeFlagBits := 128;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT : constant VkExternalMemoryHandleTypeFlagBits := 256;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT_KHR : constant VkExternalMemoryHandleTypeFlagBits := 1;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR : constant VkExternalMemoryHandleTypeFlagBits := 2;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR : constant VkExternalMemoryHandleTypeFlagBits := 4;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT_KHR : constant VkExternalMemoryHandleTypeFlagBits := 8;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT_KHR : constant VkExternalMemoryHandleTypeFlagBits := 16;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT_KHR : constant VkExternalMemoryHandleTypeFlagBits := 32;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT_KHR : constant VkExternalMemoryHandleTypeFlagBits := 64;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_FLAG_BITS_MAX_ENUM : constant VkExternalMemoryHandleTypeFlagBits := 2147483647; -- vulkan_core.h:4183
subtype VkExternalMemoryHandleTypeFlags is VkFlags; -- vulkan_core.h:4204
subtype VkExternalMemoryFeatureFlagBits is unsigned;
VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT : constant VkExternalMemoryFeatureFlagBits := 1;
VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT : constant VkExternalMemoryFeatureFlagBits := 2;
VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT : constant VkExternalMemoryFeatureFlagBits := 4;
VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_KHR : constant VkExternalMemoryFeatureFlagBits := 1;
VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_KHR : constant VkExternalMemoryFeatureFlagBits := 2;
VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_KHR : constant VkExternalMemoryFeatureFlagBits := 4;
VK_EXTERNAL_MEMORY_FEATURE_FLAG_BITS_MAX_ENUM : constant VkExternalMemoryFeatureFlagBits := 2147483647; -- vulkan_core.h:4206
subtype VkExternalMemoryFeatureFlags is VkFlags; -- vulkan_core.h:4215
subtype VkExternalFenceHandleTypeFlagBits is unsigned;
VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT : constant VkExternalFenceHandleTypeFlagBits := 1;
VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT : constant VkExternalFenceHandleTypeFlagBits := 2;
VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT : constant VkExternalFenceHandleTypeFlagBits := 4;
VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT : constant VkExternalFenceHandleTypeFlagBits := 8;
VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR : constant VkExternalFenceHandleTypeFlagBits := 1;
VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR : constant VkExternalFenceHandleTypeFlagBits := 2;
VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR : constant VkExternalFenceHandleTypeFlagBits := 4;
VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR : constant VkExternalFenceHandleTypeFlagBits := 8;
VK_EXTERNAL_FENCE_HANDLE_TYPE_FLAG_BITS_MAX_ENUM : constant VkExternalFenceHandleTypeFlagBits := 2147483647; -- vulkan_core.h:4217
subtype VkExternalFenceHandleTypeFlags is VkFlags; -- vulkan_core.h:4228
subtype VkExternalFenceFeatureFlagBits is unsigned;
VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT : constant VkExternalFenceFeatureFlagBits := 1;
VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT : constant VkExternalFenceFeatureFlagBits := 2;
VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT_KHR : constant VkExternalFenceFeatureFlagBits := 1;
VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT_KHR : constant VkExternalFenceFeatureFlagBits := 2;
VK_EXTERNAL_FENCE_FEATURE_FLAG_BITS_MAX_ENUM : constant VkExternalFenceFeatureFlagBits := 2147483647; -- vulkan_core.h:4230
subtype VkExternalFenceFeatureFlags is VkFlags; -- vulkan_core.h:4237
subtype VkFenceImportFlagBits is unsigned;
VK_FENCE_IMPORT_TEMPORARY_BIT : constant VkFenceImportFlagBits := 1;
VK_FENCE_IMPORT_TEMPORARY_BIT_KHR : constant VkFenceImportFlagBits := 1;
VK_FENCE_IMPORT_FLAG_BITS_MAX_ENUM : constant VkFenceImportFlagBits := 2147483647; -- vulkan_core.h:4239
subtype VkFenceImportFlags is VkFlags; -- vulkan_core.h:4244
subtype VkSemaphoreImportFlagBits is unsigned;
VK_SEMAPHORE_IMPORT_TEMPORARY_BIT : constant VkSemaphoreImportFlagBits := 1;
VK_SEMAPHORE_IMPORT_TEMPORARY_BIT_KHR : constant VkSemaphoreImportFlagBits := 1;
VK_SEMAPHORE_IMPORT_FLAG_BITS_MAX_ENUM : constant VkSemaphoreImportFlagBits := 2147483647; -- vulkan_core.h:4246
subtype VkSemaphoreImportFlags is VkFlags; -- vulkan_core.h:4251
subtype VkExternalSemaphoreHandleTypeFlagBits is unsigned;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT : constant VkExternalSemaphoreHandleTypeFlagBits := 1;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT : constant VkExternalSemaphoreHandleTypeFlagBits := 2;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT : constant VkExternalSemaphoreHandleTypeFlagBits := 4;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT : constant VkExternalSemaphoreHandleTypeFlagBits := 8;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT : constant VkExternalSemaphoreHandleTypeFlagBits := 16;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D11_FENCE_BIT : constant VkExternalSemaphoreHandleTypeFlagBits := 8;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR : constant VkExternalSemaphoreHandleTypeFlagBits := 1;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR : constant VkExternalSemaphoreHandleTypeFlagBits := 2;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR : constant VkExternalSemaphoreHandleTypeFlagBits := 4;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT_KHR : constant VkExternalSemaphoreHandleTypeFlagBits := 8;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR : constant VkExternalSemaphoreHandleTypeFlagBits := 16;
VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_FLAG_BITS_MAX_ENUM : constant VkExternalSemaphoreHandleTypeFlagBits := 2147483647; -- vulkan_core.h:4253
subtype VkExternalSemaphoreHandleTypeFlags is VkFlags; -- vulkan_core.h:4267
subtype VkExternalSemaphoreFeatureFlagBits is unsigned;
VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT : constant VkExternalSemaphoreFeatureFlagBits := 1;
VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT : constant VkExternalSemaphoreFeatureFlagBits := 2;
VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT_KHR : constant VkExternalSemaphoreFeatureFlagBits := 1;
VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT_KHR : constant VkExternalSemaphoreFeatureFlagBits := 2;
VK_EXTERNAL_SEMAPHORE_FEATURE_FLAG_BITS_MAX_ENUM : constant VkExternalSemaphoreFeatureFlagBits := 2147483647; -- vulkan_core.h:4269
subtype VkExternalSemaphoreFeatureFlags is VkFlags; -- vulkan_core.h:4276
type VkPhysicalDeviceSubgroupProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4278
pNext : System.Address; -- vulkan_core.h:4279
subgroupSize : aliased stdint_h.uint32_t; -- vulkan_core.h:4280
supportedStages : aliased VkShaderStageFlags; -- vulkan_core.h:4281
supportedOperations : aliased VkSubgroupFeatureFlags; -- vulkan_core.h:4282
quadOperationsInAllStages : aliased VkBool32; -- vulkan_core.h:4283
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSubgroupProperties); -- vulkan_core.h:4277
type VkBindBufferMemoryInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4287
pNext : System.Address; -- vulkan_core.h:4288
buffer : VkBuffer; -- vulkan_core.h:4289
memory : VkDeviceMemory; -- vulkan_core.h:4290
memoryOffset : aliased VkDeviceSize; -- vulkan_core.h:4291
end record;
pragma Convention (C_Pass_By_Copy, VkBindBufferMemoryInfo); -- vulkan_core.h:4286
type VkBindImageMemoryInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4295
pNext : System.Address; -- vulkan_core.h:4296
image : VkImage; -- vulkan_core.h:4297
memory : VkDeviceMemory; -- vulkan_core.h:4298
memoryOffset : aliased VkDeviceSize; -- vulkan_core.h:4299
end record;
pragma Convention (C_Pass_By_Copy, VkBindImageMemoryInfo); -- vulkan_core.h:4294
type VkPhysicalDevice16BitStorageFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:4303
pNext : System.Address; -- vulkan_core.h:4304
storageBuffer16BitAccess : aliased VkBool32; -- vulkan_core.h:4305
uniformAndStorageBuffer16BitAccess : aliased VkBool32; -- vulkan_core.h:4306
storagePushConstant16 : aliased VkBool32; -- vulkan_core.h:4307
storageInputOutput16 : aliased VkBool32; -- vulkan_core.h:4308
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevice16BitStorageFeatures); -- vulkan_core.h:4302
type VkMemoryDedicatedRequirements is record
sType : aliased VkStructureType; -- vulkan_core.h:4312
pNext : System.Address; -- vulkan_core.h:4313
prefersDedicatedAllocation : aliased VkBool32; -- vulkan_core.h:4314
requiresDedicatedAllocation : aliased VkBool32; -- vulkan_core.h:4315
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryDedicatedRequirements); -- vulkan_core.h:4311
type VkMemoryDedicatedAllocateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4319
pNext : System.Address; -- vulkan_core.h:4320
image : VkImage; -- vulkan_core.h:4321
buffer : VkBuffer; -- vulkan_core.h:4322
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryDedicatedAllocateInfo); -- vulkan_core.h:4318
type VkMemoryAllocateFlagsInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4326
pNext : System.Address; -- vulkan_core.h:4327
flags : aliased VkMemoryAllocateFlags; -- vulkan_core.h:4328
deviceMask : aliased stdint_h.uint32_t; -- vulkan_core.h:4329
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryAllocateFlagsInfo); -- vulkan_core.h:4325
type VkDeviceGroupRenderPassBeginInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4333
pNext : System.Address; -- vulkan_core.h:4334
deviceMask : aliased stdint_h.uint32_t; -- vulkan_core.h:4335
deviceRenderAreaCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4336
pDeviceRenderAreas : System.Address; -- vulkan_core.h:4337
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupRenderPassBeginInfo); -- vulkan_core.h:4332
type VkDeviceGroupCommandBufferBeginInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4341
pNext : System.Address; -- vulkan_core.h:4342
deviceMask : aliased stdint_h.uint32_t; -- vulkan_core.h:4343
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupCommandBufferBeginInfo); -- vulkan_core.h:4340
type VkDeviceGroupSubmitInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4347
pNext : System.Address; -- vulkan_core.h:4348
waitSemaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4349
pWaitSemaphoreDeviceIndices : access stdint_h.uint32_t; -- vulkan_core.h:4350
commandBufferCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4351
pCommandBufferDeviceMasks : access stdint_h.uint32_t; -- vulkan_core.h:4352
signalSemaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4353
pSignalSemaphoreDeviceIndices : access stdint_h.uint32_t; -- vulkan_core.h:4354
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupSubmitInfo); -- vulkan_core.h:4346
type VkDeviceGroupBindSparseInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4358
pNext : System.Address; -- vulkan_core.h:4359
resourceDeviceIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:4360
memoryDeviceIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:4361
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupBindSparseInfo); -- vulkan_core.h:4357
type VkBindBufferMemoryDeviceGroupInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4365
pNext : System.Address; -- vulkan_core.h:4366
deviceIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4367
pDeviceIndices : access stdint_h.uint32_t; -- vulkan_core.h:4368
end record;
pragma Convention (C_Pass_By_Copy, VkBindBufferMemoryDeviceGroupInfo); -- vulkan_core.h:4364
type VkBindImageMemoryDeviceGroupInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4372
pNext : System.Address; -- vulkan_core.h:4373
deviceIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4374
pDeviceIndices : access stdint_h.uint32_t; -- vulkan_core.h:4375
splitInstanceBindRegionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4376
pSplitInstanceBindRegions : System.Address; -- vulkan_core.h:4377
end record;
pragma Convention (C_Pass_By_Copy, VkBindImageMemoryDeviceGroupInfo); -- vulkan_core.h:4371
type VkPhysicalDeviceGroupProperties_physicalDevices_array is array (0 .. 31) of VkPhysicalDevice;
type VkPhysicalDeviceGroupProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4381
pNext : System.Address; -- vulkan_core.h:4382
physicalDeviceCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4383
physicalDevices : aliased VkPhysicalDeviceGroupProperties_physicalDevices_array; -- vulkan_core.h:4384
subsetAllocation : aliased VkBool32; -- vulkan_core.h:4385
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceGroupProperties); -- vulkan_core.h:4380
type VkDeviceGroupDeviceCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4389
pNext : System.Address; -- vulkan_core.h:4390
physicalDeviceCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4391
pPhysicalDevices : System.Address; -- vulkan_core.h:4392
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupDeviceCreateInfo); -- vulkan_core.h:4388
type VkBufferMemoryRequirementsInfo2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4396
pNext : System.Address; -- vulkan_core.h:4397
buffer : VkBuffer; -- vulkan_core.h:4398
end record;
pragma Convention (C_Pass_By_Copy, VkBufferMemoryRequirementsInfo2); -- vulkan_core.h:4395
type VkImageMemoryRequirementsInfo2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4402
pNext : System.Address; -- vulkan_core.h:4403
image : VkImage; -- vulkan_core.h:4404
end record;
pragma Convention (C_Pass_By_Copy, VkImageMemoryRequirementsInfo2); -- vulkan_core.h:4401
type VkImageSparseMemoryRequirementsInfo2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4408
pNext : System.Address; -- vulkan_core.h:4409
image : VkImage; -- vulkan_core.h:4410
end record;
pragma Convention (C_Pass_By_Copy, VkImageSparseMemoryRequirementsInfo2); -- vulkan_core.h:4407
type VkMemoryRequirements2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4414
pNext : System.Address; -- vulkan_core.h:4415
memoryRequirements : aliased VkMemoryRequirements; -- vulkan_core.h:4416
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryRequirements2); -- vulkan_core.h:4413
type VkSparseImageMemoryRequirements2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4420
pNext : System.Address; -- vulkan_core.h:4421
memoryRequirements : aliased VkSparseImageMemoryRequirements; -- vulkan_core.h:4422
end record;
pragma Convention (C_Pass_By_Copy, VkSparseImageMemoryRequirements2); -- vulkan_core.h:4419
type VkPhysicalDeviceFeatures2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4426
pNext : System.Address; -- vulkan_core.h:4427
features : aliased VkPhysicalDeviceFeatures; -- vulkan_core.h:4428
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFeatures2); -- vulkan_core.h:4425
type VkPhysicalDeviceProperties2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4432
pNext : System.Address; -- vulkan_core.h:4433
properties : aliased VkPhysicalDeviceProperties; -- vulkan_core.h:4434
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceProperties2); -- vulkan_core.h:4431
type VkFormatProperties2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4438
pNext : System.Address; -- vulkan_core.h:4439
formatProperties : aliased VkFormatProperties; -- vulkan_core.h:4440
end record;
pragma Convention (C_Pass_By_Copy, VkFormatProperties2); -- vulkan_core.h:4437
type VkImageFormatProperties2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4444
pNext : System.Address; -- vulkan_core.h:4445
imageFormatProperties : aliased VkImageFormatProperties; -- vulkan_core.h:4446
end record;
pragma Convention (C_Pass_By_Copy, VkImageFormatProperties2); -- vulkan_core.h:4443
type VkPhysicalDeviceImageFormatInfo2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4450
pNext : System.Address; -- vulkan_core.h:4451
format : aliased VkFormat; -- vulkan_core.h:4452
c_type : aliased VkImageType; -- vulkan_core.h:4453
tiling : aliased VkImageTiling; -- vulkan_core.h:4454
usage : aliased VkImageUsageFlags; -- vulkan_core.h:4455
flags : aliased VkImageCreateFlags; -- vulkan_core.h:4456
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceImageFormatInfo2); -- vulkan_core.h:4449
type VkQueueFamilyProperties2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4460
pNext : System.Address; -- vulkan_core.h:4461
queueFamilyProperties : aliased VkQueueFamilyProperties; -- vulkan_core.h:4462
end record;
pragma Convention (C_Pass_By_Copy, VkQueueFamilyProperties2); -- vulkan_core.h:4459
type VkPhysicalDeviceMemoryProperties2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4466
pNext : System.Address; -- vulkan_core.h:4467
memoryProperties : aliased VkPhysicalDeviceMemoryProperties; -- vulkan_core.h:4468
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMemoryProperties2); -- vulkan_core.h:4465
type VkSparseImageFormatProperties2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4472
pNext : System.Address; -- vulkan_core.h:4473
properties : aliased VkSparseImageFormatProperties; -- vulkan_core.h:4474
end record;
pragma Convention (C_Pass_By_Copy, VkSparseImageFormatProperties2); -- vulkan_core.h:4471
type VkPhysicalDeviceSparseImageFormatInfo2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4478
pNext : System.Address; -- vulkan_core.h:4479
format : aliased VkFormat; -- vulkan_core.h:4480
c_type : aliased VkImageType; -- vulkan_core.h:4481
samples : aliased VkSampleCountFlagBits; -- vulkan_core.h:4482
usage : aliased VkImageUsageFlags; -- vulkan_core.h:4483
tiling : aliased VkImageTiling; -- vulkan_core.h:4484
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSparseImageFormatInfo2); -- vulkan_core.h:4477
type VkPhysicalDevicePointClippingProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4488
pNext : System.Address; -- vulkan_core.h:4489
pointClippingBehavior : aliased VkPointClippingBehavior; -- vulkan_core.h:4490
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePointClippingProperties); -- vulkan_core.h:4487
type VkInputAttachmentAspectReference is record
subpass : aliased stdint_h.uint32_t; -- vulkan_core.h:4494
inputAttachmentIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:4495
aspectMask : aliased VkImageAspectFlags; -- vulkan_core.h:4496
end record;
pragma Convention (C_Pass_By_Copy, VkInputAttachmentAspectReference); -- vulkan_core.h:4493
type VkRenderPassInputAttachmentAspectCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4500
pNext : System.Address; -- vulkan_core.h:4501
aspectReferenceCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4502
pAspectReferences : System.Address; -- vulkan_core.h:4503
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassInputAttachmentAspectCreateInfo); -- vulkan_core.h:4499
type VkImageViewUsageCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4507
pNext : System.Address; -- vulkan_core.h:4508
usage : aliased VkImageUsageFlags; -- vulkan_core.h:4509
end record;
pragma Convention (C_Pass_By_Copy, VkImageViewUsageCreateInfo); -- vulkan_core.h:4506
type VkPipelineTessellationDomainOriginStateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4513
pNext : System.Address; -- vulkan_core.h:4514
domainOrigin : aliased VkTessellationDomainOrigin; -- vulkan_core.h:4515
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineTessellationDomainOriginStateCreateInfo); -- vulkan_core.h:4512
type VkRenderPassMultiviewCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4519
pNext : System.Address; -- vulkan_core.h:4520
subpassCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4521
pViewMasks : access stdint_h.uint32_t; -- vulkan_core.h:4522
dependencyCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4523
pViewOffsets : access stdint_h.int32_t; -- vulkan_core.h:4524
correlationMaskCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4525
pCorrelationMasks : access stdint_h.uint32_t; -- vulkan_core.h:4526
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassMultiviewCreateInfo); -- vulkan_core.h:4518
type VkPhysicalDeviceMultiviewFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:4530
pNext : System.Address; -- vulkan_core.h:4531
multiview : aliased VkBool32; -- vulkan_core.h:4532
multiviewGeometryShader : aliased VkBool32; -- vulkan_core.h:4533
multiviewTessellationShader : aliased VkBool32; -- vulkan_core.h:4534
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMultiviewFeatures); -- vulkan_core.h:4529
type VkPhysicalDeviceMultiviewProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4538
pNext : System.Address; -- vulkan_core.h:4539
maxMultiviewViewCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4540
maxMultiviewInstanceIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:4541
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMultiviewProperties); -- vulkan_core.h:4537
type VkPhysicalDeviceVariablePointersFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:4545
pNext : System.Address; -- vulkan_core.h:4546
variablePointersStorageBuffer : aliased VkBool32; -- vulkan_core.h:4547
variablePointers : aliased VkBool32; -- vulkan_core.h:4548
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVariablePointersFeatures); -- vulkan_core.h:4544
subtype VkPhysicalDeviceVariablePointerFeatures is VkPhysicalDeviceVariablePointersFeatures;
type VkPhysicalDeviceProtectedMemoryFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:4554
pNext : System.Address; -- vulkan_core.h:4555
protectedMemory : aliased VkBool32; -- vulkan_core.h:4556
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceProtectedMemoryFeatures); -- vulkan_core.h:4553
type VkPhysicalDeviceProtectedMemoryProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4560
pNext : System.Address; -- vulkan_core.h:4561
protectedNoFault : aliased VkBool32; -- vulkan_core.h:4562
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceProtectedMemoryProperties); -- vulkan_core.h:4559
type VkDeviceQueueInfo2 is record
sType : aliased VkStructureType; -- vulkan_core.h:4566
pNext : System.Address; -- vulkan_core.h:4567
flags : aliased VkDeviceQueueCreateFlags; -- vulkan_core.h:4568
queueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:4569
queueIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:4570
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceQueueInfo2); -- vulkan_core.h:4565
type VkProtectedSubmitInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4574
pNext : System.Address; -- vulkan_core.h:4575
protectedSubmit : aliased VkBool32; -- vulkan_core.h:4576
end record;
pragma Convention (C_Pass_By_Copy, VkProtectedSubmitInfo); -- vulkan_core.h:4573
type VkSamplerYcbcrConversionCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4580
pNext : System.Address; -- vulkan_core.h:4581
format : aliased VkFormat; -- vulkan_core.h:4582
ycbcrModel : aliased VkSamplerYcbcrModelConversion; -- vulkan_core.h:4583
ycbcrRange : aliased VkSamplerYcbcrRange; -- vulkan_core.h:4584
components : aliased VkComponentMapping; -- vulkan_core.h:4585
xChromaOffset : aliased VkChromaLocation; -- vulkan_core.h:4586
yChromaOffset : aliased VkChromaLocation; -- vulkan_core.h:4587
chromaFilter : aliased VkFilter; -- vulkan_core.h:4588
forceExplicitReconstruction : aliased VkBool32; -- vulkan_core.h:4589
end record;
pragma Convention (C_Pass_By_Copy, VkSamplerYcbcrConversionCreateInfo); -- vulkan_core.h:4579
type VkSamplerYcbcrConversionInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4593
pNext : System.Address; -- vulkan_core.h:4594
conversion : VkSamplerYcbcrConversion; -- vulkan_core.h:4595
end record;
pragma Convention (C_Pass_By_Copy, VkSamplerYcbcrConversionInfo); -- vulkan_core.h:4592
type VkBindImagePlaneMemoryInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4599
pNext : System.Address; -- vulkan_core.h:4600
planeAspect : aliased VkImageAspectFlagBits; -- vulkan_core.h:4601
end record;
pragma Convention (C_Pass_By_Copy, VkBindImagePlaneMemoryInfo); -- vulkan_core.h:4598
type VkImagePlaneMemoryRequirementsInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4605
pNext : System.Address; -- vulkan_core.h:4606
planeAspect : aliased VkImageAspectFlagBits; -- vulkan_core.h:4607
end record;
pragma Convention (C_Pass_By_Copy, VkImagePlaneMemoryRequirementsInfo); -- vulkan_core.h:4604
type VkPhysicalDeviceSamplerYcbcrConversionFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:4611
pNext : System.Address; -- vulkan_core.h:4612
samplerYcbcrConversion : aliased VkBool32; -- vulkan_core.h:4613
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSamplerYcbcrConversionFeatures); -- vulkan_core.h:4610
type VkSamplerYcbcrConversionImageFormatProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4617
pNext : System.Address; -- vulkan_core.h:4618
combinedImageSamplerDescriptorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4619
end record;
pragma Convention (C_Pass_By_Copy, VkSamplerYcbcrConversionImageFormatProperties); -- vulkan_core.h:4616
type VkDescriptorUpdateTemplateEntry is record
dstBinding : aliased stdint_h.uint32_t; -- vulkan_core.h:4623
dstArrayElement : aliased stdint_h.uint32_t; -- vulkan_core.h:4624
descriptorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4625
descriptorType : aliased VkDescriptorType; -- vulkan_core.h:4626
offset : aliased crtdefs_h.size_t; -- vulkan_core.h:4627
stride : aliased crtdefs_h.size_t; -- vulkan_core.h:4628
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorUpdateTemplateEntry); -- vulkan_core.h:4622
type VkDescriptorUpdateTemplateCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4632
pNext : System.Address; -- vulkan_core.h:4633
flags : aliased VkDescriptorUpdateTemplateCreateFlags; -- vulkan_core.h:4634
descriptorUpdateEntryCount : aliased stdint_h.uint32_t; -- vulkan_core.h:4635
pDescriptorUpdateEntries : System.Address; -- vulkan_core.h:4636
templateType : aliased VkDescriptorUpdateTemplateType; -- vulkan_core.h:4637
descriptorSetLayout : VkDescriptorSetLayout; -- vulkan_core.h:4638
pipelineBindPoint : aliased VkPipelineBindPoint; -- vulkan_core.h:4639
pipelineLayout : VkPipelineLayout; -- vulkan_core.h:4640
set : aliased stdint_h.uint32_t; -- vulkan_core.h:4641
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorUpdateTemplateCreateInfo); -- vulkan_core.h:4631
type VkExternalMemoryProperties is record
externalMemoryFeatures : aliased VkExternalMemoryFeatureFlags; -- vulkan_core.h:4645
exportFromImportedHandleTypes : aliased VkExternalMemoryHandleTypeFlags; -- vulkan_core.h:4646
compatibleHandleTypes : aliased VkExternalMemoryHandleTypeFlags; -- vulkan_core.h:4647
end record;
pragma Convention (C_Pass_By_Copy, VkExternalMemoryProperties); -- vulkan_core.h:4644
type VkPhysicalDeviceExternalImageFormatInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4651
pNext : System.Address; -- vulkan_core.h:4652
handleType : aliased VkExternalMemoryHandleTypeFlagBits; -- vulkan_core.h:4653
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceExternalImageFormatInfo); -- vulkan_core.h:4650
type VkExternalImageFormatProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4657
pNext : System.Address; -- vulkan_core.h:4658
externalMemoryProperties : aliased VkExternalMemoryProperties; -- vulkan_core.h:4659
end record;
pragma Convention (C_Pass_By_Copy, VkExternalImageFormatProperties); -- vulkan_core.h:4656
type VkPhysicalDeviceExternalBufferInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4663
pNext : System.Address; -- vulkan_core.h:4664
flags : aliased VkBufferCreateFlags; -- vulkan_core.h:4665
usage : aliased VkBufferUsageFlags; -- vulkan_core.h:4666
handleType : aliased VkExternalMemoryHandleTypeFlagBits; -- vulkan_core.h:4667
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceExternalBufferInfo); -- vulkan_core.h:4662
type VkExternalBufferProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4671
pNext : System.Address; -- vulkan_core.h:4672
externalMemoryProperties : aliased VkExternalMemoryProperties; -- vulkan_core.h:4673
end record;
pragma Convention (C_Pass_By_Copy, VkExternalBufferProperties); -- vulkan_core.h:4670
type VkPhysicalDeviceIDProperties_deviceUUID_array is array (0 .. 15) of aliased stdint_h.uint8_t;
type VkPhysicalDeviceIDProperties_driverUUID_array is array (0 .. 15) of aliased stdint_h.uint8_t;
type VkPhysicalDeviceIDProperties_deviceLUID_array is array (0 .. 7) of aliased stdint_h.uint8_t;
type VkPhysicalDeviceIDProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4677
pNext : System.Address; -- vulkan_core.h:4678
deviceUUID : aliased VkPhysicalDeviceIDProperties_deviceUUID_array; -- vulkan_core.h:4679
driverUUID : aliased VkPhysicalDeviceIDProperties_driverUUID_array; -- vulkan_core.h:4680
deviceLUID : aliased VkPhysicalDeviceIDProperties_deviceLUID_array; -- vulkan_core.h:4681
deviceNodeMask : aliased stdint_h.uint32_t; -- vulkan_core.h:4682
deviceLUIDValid : aliased VkBool32; -- vulkan_core.h:4683
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceIDProperties); -- vulkan_core.h:4676
type VkExternalMemoryImageCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4687
pNext : System.Address; -- vulkan_core.h:4688
handleTypes : aliased VkExternalMemoryHandleTypeFlags; -- vulkan_core.h:4689
end record;
pragma Convention (C_Pass_By_Copy, VkExternalMemoryImageCreateInfo); -- vulkan_core.h:4686
type VkExternalMemoryBufferCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4693
pNext : System.Address; -- vulkan_core.h:4694
handleTypes : aliased VkExternalMemoryHandleTypeFlags; -- vulkan_core.h:4695
end record;
pragma Convention (C_Pass_By_Copy, VkExternalMemoryBufferCreateInfo); -- vulkan_core.h:4692
type VkExportMemoryAllocateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4699
pNext : System.Address; -- vulkan_core.h:4700
handleTypes : aliased VkExternalMemoryHandleTypeFlags; -- vulkan_core.h:4701
end record;
pragma Convention (C_Pass_By_Copy, VkExportMemoryAllocateInfo); -- vulkan_core.h:4698
type VkPhysicalDeviceExternalFenceInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4705
pNext : System.Address; -- vulkan_core.h:4706
handleType : aliased VkExternalFenceHandleTypeFlagBits; -- vulkan_core.h:4707
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceExternalFenceInfo); -- vulkan_core.h:4704
type VkExternalFenceProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4711
pNext : System.Address; -- vulkan_core.h:4712
exportFromImportedHandleTypes : aliased VkExternalFenceHandleTypeFlags; -- vulkan_core.h:4713
compatibleHandleTypes : aliased VkExternalFenceHandleTypeFlags; -- vulkan_core.h:4714
externalFenceFeatures : aliased VkExternalFenceFeatureFlags; -- vulkan_core.h:4715
end record;
pragma Convention (C_Pass_By_Copy, VkExternalFenceProperties); -- vulkan_core.h:4710
type VkExportFenceCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4719
pNext : System.Address; -- vulkan_core.h:4720
handleTypes : aliased VkExternalFenceHandleTypeFlags; -- vulkan_core.h:4721
end record;
pragma Convention (C_Pass_By_Copy, VkExportFenceCreateInfo); -- vulkan_core.h:4718
type VkExportSemaphoreCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4725
pNext : System.Address; -- vulkan_core.h:4726
handleTypes : aliased VkExternalSemaphoreHandleTypeFlags; -- vulkan_core.h:4727
end record;
pragma Convention (C_Pass_By_Copy, VkExportSemaphoreCreateInfo); -- vulkan_core.h:4724
type VkPhysicalDeviceExternalSemaphoreInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:4731
pNext : System.Address; -- vulkan_core.h:4732
handleType : aliased VkExternalSemaphoreHandleTypeFlagBits; -- vulkan_core.h:4733
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceExternalSemaphoreInfo); -- vulkan_core.h:4730
type VkExternalSemaphoreProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:4737
pNext : System.Address; -- vulkan_core.h:4738
exportFromImportedHandleTypes : aliased VkExternalSemaphoreHandleTypeFlags; -- vulkan_core.h:4739
compatibleHandleTypes : aliased VkExternalSemaphoreHandleTypeFlags; -- vulkan_core.h:4740
externalSemaphoreFeatures : aliased VkExternalSemaphoreFeatureFlags; -- vulkan_core.h:4741
end record;
pragma Convention (C_Pass_By_Copy, VkExternalSemaphoreProperties); -- vulkan_core.h:4736
type VkPhysicalDeviceMaintenance3Properties is record
sType : aliased VkStructureType; -- vulkan_core.h:4745
pNext : System.Address; -- vulkan_core.h:4746
maxPerSetDescriptors : aliased stdint_h.uint32_t; -- vulkan_core.h:4747
maxMemoryAllocationSize : aliased VkDeviceSize; -- vulkan_core.h:4748
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMaintenance3Properties); -- vulkan_core.h:4744
type VkDescriptorSetLayoutSupport is record
sType : aliased VkStructureType; -- vulkan_core.h:4752
pNext : System.Address; -- vulkan_core.h:4753
supported : aliased VkBool32; -- vulkan_core.h:4754
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorSetLayoutSupport); -- vulkan_core.h:4751
type VkPhysicalDeviceShaderDrawParametersFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:4758
pNext : System.Address; -- vulkan_core.h:4759
shaderDrawParameters : aliased VkBool32; -- vulkan_core.h:4760
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderDrawParametersFeatures); -- vulkan_core.h:4757
subtype VkPhysicalDeviceShaderDrawParameterFeatures is VkPhysicalDeviceShaderDrawParametersFeatures;
type PFN_vkEnumerateInstanceVersion is access function (arg1 : access stdint_h.uint32_t) return VkResult;
pragma Convention (C, PFN_vkEnumerateInstanceVersion); -- vulkan_core.h:4765
type PFN_vkBindBufferMemory2 is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkBindBufferMemory2); -- vulkan_core.h:4766
type PFN_vkBindImageMemory2 is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkBindImageMemory2); -- vulkan_core.h:4767
type PFN_vkGetDeviceGroupPeerMemoryFeatures is access procedure
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : access VkPeerMemoryFeatureFlags);
pragma Convention (C, PFN_vkGetDeviceGroupPeerMemoryFeatures); -- vulkan_core.h:4768
type PFN_vkCmdSetDeviceMask is access procedure (arg1 : VkCommandBuffer; arg2 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdSetDeviceMask); -- vulkan_core.h:4769
type PFN_vkCmdDispatchBase is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDispatchBase); -- vulkan_core.h:4770
type PFN_vkEnumeratePhysicalDeviceGroups is access function
(arg1 : VkInstance;
arg2 : access stdint_h.uint32_t;
arg3 : access VkPhysicalDeviceGroupProperties) return VkResult;
pragma Convention (C, PFN_vkEnumeratePhysicalDeviceGroups); -- vulkan_core.h:4771
type PFN_vkGetImageMemoryRequirements2 is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkMemoryRequirements2);
pragma Convention (C, PFN_vkGetImageMemoryRequirements2); -- vulkan_core.h:4772
type PFN_vkGetBufferMemoryRequirements2 is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkMemoryRequirements2);
pragma Convention (C, PFN_vkGetBufferMemoryRequirements2); -- vulkan_core.h:4773
type PFN_vkGetImageSparseMemoryRequirements2 is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkSparseImageMemoryRequirements2);
pragma Convention (C, PFN_vkGetImageSparseMemoryRequirements2); -- vulkan_core.h:4774
type PFN_vkGetPhysicalDeviceFeatures2 is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceFeatures2);
pragma Convention (C, PFN_vkGetPhysicalDeviceFeatures2); -- vulkan_core.h:4775
type PFN_vkGetPhysicalDeviceProperties2 is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceProperties2); -- vulkan_core.h:4776
type PFN_vkGetPhysicalDeviceFormatProperties2 is access procedure
(arg1 : VkPhysicalDevice;
arg2 : VkFormat;
arg3 : access VkFormatProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceFormatProperties2); -- vulkan_core.h:4777
type PFN_vkGetPhysicalDeviceImageFormatProperties2 is access function
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkImageFormatProperties2) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceImageFormatProperties2); -- vulkan_core.h:4778
type PFN_vkGetPhysicalDeviceQueueFamilyProperties2 is access procedure
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkQueueFamilyProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceQueueFamilyProperties2); -- vulkan_core.h:4779
type PFN_vkGetPhysicalDeviceMemoryProperties2 is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceMemoryProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceMemoryProperties2); -- vulkan_core.h:4780
type PFN_vkGetPhysicalDeviceSparseImageFormatProperties2 is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkSparseImageFormatProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceSparseImageFormatProperties2); -- vulkan_core.h:4781
type PFN_vkTrimCommandPool is access procedure
(arg1 : VkDevice;
arg2 : VkCommandPool;
arg3 : VkCommandPoolTrimFlags);
pragma Convention (C, PFN_vkTrimCommandPool); -- vulkan_core.h:4782
type PFN_vkGetDeviceQueue2 is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address);
pragma Convention (C, PFN_vkGetDeviceQueue2); -- vulkan_core.h:4783
type PFN_vkCreateSamplerYcbcrConversion is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateSamplerYcbcrConversion); -- vulkan_core.h:4784
type PFN_vkDestroySamplerYcbcrConversion is access procedure
(arg1 : VkDevice;
arg2 : VkSamplerYcbcrConversion;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroySamplerYcbcrConversion); -- vulkan_core.h:4785
type PFN_vkCreateDescriptorUpdateTemplate is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDescriptorUpdateTemplate); -- vulkan_core.h:4786
type PFN_vkDestroyDescriptorUpdateTemplate is access procedure
(arg1 : VkDevice;
arg2 : VkDescriptorUpdateTemplate;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyDescriptorUpdateTemplate); -- vulkan_core.h:4787
type PFN_vkUpdateDescriptorSetWithTemplate is access procedure
(arg1 : VkDevice;
arg2 : VkDescriptorSet;
arg3 : VkDescriptorUpdateTemplate;
arg4 : System.Address);
pragma Convention (C, PFN_vkUpdateDescriptorSetWithTemplate); -- vulkan_core.h:4788
type PFN_vkGetPhysicalDeviceExternalBufferProperties is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkExternalBufferProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceExternalBufferProperties); -- vulkan_core.h:4789
type PFN_vkGetPhysicalDeviceExternalFenceProperties is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkExternalFenceProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceExternalFenceProperties); -- vulkan_core.h:4790
type PFN_vkGetPhysicalDeviceExternalSemaphoreProperties is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkExternalSemaphoreProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceExternalSemaphoreProperties); -- vulkan_core.h:4791
type PFN_vkGetDescriptorSetLayoutSupport is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkDescriptorSetLayoutSupport);
pragma Convention (C, PFN_vkGetDescriptorSetLayoutSupport); -- vulkan_core.h:4792
function vkEnumerateInstanceVersion (pApiVersion : access stdint_h.uint32_t) return VkResult; -- vulkan_core.h:4795
pragma Import (C, vkEnumerateInstanceVersion, "vkEnumerateInstanceVersion");
function vkBindBufferMemory2
(device : VkDevice;
bindInfoCount : stdint_h.uint32_t;
pBindInfos : System.Address) return VkResult; -- vulkan_core.h:4798
pragma Import (C, vkBindBufferMemory2, "vkBindBufferMemory2");
function vkBindImageMemory2
(device : VkDevice;
bindInfoCount : stdint_h.uint32_t;
pBindInfos : System.Address) return VkResult; -- vulkan_core.h:4803
pragma Import (C, vkBindImageMemory2, "vkBindImageMemory2");
procedure vkGetDeviceGroupPeerMemoryFeatures
(device : VkDevice;
heapIndex : stdint_h.uint32_t;
localDeviceIndex : stdint_h.uint32_t;
remoteDeviceIndex : stdint_h.uint32_t;
pPeerMemoryFeatures : access VkPeerMemoryFeatureFlags); -- vulkan_core.h:4808
pragma Import (C, vkGetDeviceGroupPeerMemoryFeatures, "vkGetDeviceGroupPeerMemoryFeatures");
procedure vkCmdSetDeviceMask (commandBuffer : VkCommandBuffer; deviceMask : stdint_h.uint32_t); -- vulkan_core.h:4815
pragma Import (C, vkCmdSetDeviceMask, "vkCmdSetDeviceMask");
procedure vkCmdDispatchBase
(commandBuffer : VkCommandBuffer;
baseGroupX : stdint_h.uint32_t;
baseGroupY : stdint_h.uint32_t;
baseGroupZ : stdint_h.uint32_t;
groupCountX : stdint_h.uint32_t;
groupCountY : stdint_h.uint32_t;
groupCountZ : stdint_h.uint32_t); -- vulkan_core.h:4819
pragma Import (C, vkCmdDispatchBase, "vkCmdDispatchBase");
function vkEnumeratePhysicalDeviceGroups
(instance : VkInstance;
pPhysicalDeviceGroupCount : access stdint_h.uint32_t;
pPhysicalDeviceGroupProperties : access VkPhysicalDeviceGroupProperties) return VkResult; -- vulkan_core.h:4828
pragma Import (C, vkEnumeratePhysicalDeviceGroups, "vkEnumeratePhysicalDeviceGroups");
procedure vkGetImageMemoryRequirements2
(device : VkDevice;
pInfo : System.Address;
pMemoryRequirements : access VkMemoryRequirements2); -- vulkan_core.h:4833
pragma Import (C, vkGetImageMemoryRequirements2, "vkGetImageMemoryRequirements2");
procedure vkGetBufferMemoryRequirements2
(device : VkDevice;
pInfo : System.Address;
pMemoryRequirements : access VkMemoryRequirements2); -- vulkan_core.h:4838
pragma Import (C, vkGetBufferMemoryRequirements2, "vkGetBufferMemoryRequirements2");
procedure vkGetImageSparseMemoryRequirements2
(device : VkDevice;
pInfo : System.Address;
pSparseMemoryRequirementCount : access stdint_h.uint32_t;
pSparseMemoryRequirements : access VkSparseImageMemoryRequirements2); -- vulkan_core.h:4843
pragma Import (C, vkGetImageSparseMemoryRequirements2, "vkGetImageSparseMemoryRequirements2");
procedure vkGetPhysicalDeviceFeatures2 (physicalDevice : VkPhysicalDevice; pFeatures : access VkPhysicalDeviceFeatures2); -- vulkan_core.h:4849
pragma Import (C, vkGetPhysicalDeviceFeatures2, "vkGetPhysicalDeviceFeatures2");
procedure vkGetPhysicalDeviceProperties2 (physicalDevice : VkPhysicalDevice; pProperties : access VkPhysicalDeviceProperties2); -- vulkan_core.h:4853
pragma Import (C, vkGetPhysicalDeviceProperties2, "vkGetPhysicalDeviceProperties2");
procedure vkGetPhysicalDeviceFormatProperties2
(physicalDevice : VkPhysicalDevice;
format : VkFormat;
pFormatProperties : access VkFormatProperties2); -- vulkan_core.h:4857
pragma Import (C, vkGetPhysicalDeviceFormatProperties2, "vkGetPhysicalDeviceFormatProperties2");
function vkGetPhysicalDeviceImageFormatProperties2
(physicalDevice : VkPhysicalDevice;
pImageFormatInfo : System.Address;
pImageFormatProperties : access VkImageFormatProperties2) return VkResult; -- vulkan_core.h:4862
pragma Import (C, vkGetPhysicalDeviceImageFormatProperties2, "vkGetPhysicalDeviceImageFormatProperties2");
procedure vkGetPhysicalDeviceQueueFamilyProperties2
(physicalDevice : VkPhysicalDevice;
pQueueFamilyPropertyCount : access stdint_h.uint32_t;
pQueueFamilyProperties : access VkQueueFamilyProperties2); -- vulkan_core.h:4867
pragma Import (C, vkGetPhysicalDeviceQueueFamilyProperties2, "vkGetPhysicalDeviceQueueFamilyProperties2");
procedure vkGetPhysicalDeviceMemoryProperties2 (physicalDevice : VkPhysicalDevice; pMemoryProperties : access VkPhysicalDeviceMemoryProperties2); -- vulkan_core.h:4872
pragma Import (C, vkGetPhysicalDeviceMemoryProperties2, "vkGetPhysicalDeviceMemoryProperties2");
procedure vkGetPhysicalDeviceSparseImageFormatProperties2
(physicalDevice : VkPhysicalDevice;
pFormatInfo : System.Address;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkSparseImageFormatProperties2); -- vulkan_core.h:4876
pragma Import (C, vkGetPhysicalDeviceSparseImageFormatProperties2, "vkGetPhysicalDeviceSparseImageFormatProperties2");
procedure vkTrimCommandPool
(device : VkDevice;
commandPool : VkCommandPool;
flags : VkCommandPoolTrimFlags); -- vulkan_core.h:4882
pragma Import (C, vkTrimCommandPool, "vkTrimCommandPool");
procedure vkGetDeviceQueue2
(device : VkDevice;
pQueueInfo : System.Address;
pQueue : System.Address); -- vulkan_core.h:4887
pragma Import (C, vkGetDeviceQueue2, "vkGetDeviceQueue2");
function vkCreateSamplerYcbcrConversion
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pYcbcrConversion : System.Address) return VkResult; -- vulkan_core.h:4892
pragma Import (C, vkCreateSamplerYcbcrConversion, "vkCreateSamplerYcbcrConversion");
procedure vkDestroySamplerYcbcrConversion
(device : VkDevice;
ycbcrConversion : VkSamplerYcbcrConversion;
pAllocator : System.Address); -- vulkan_core.h:4898
pragma Import (C, vkDestroySamplerYcbcrConversion, "vkDestroySamplerYcbcrConversion");
function vkCreateDescriptorUpdateTemplate
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pDescriptorUpdateTemplate : System.Address) return VkResult; -- vulkan_core.h:4903
pragma Import (C, vkCreateDescriptorUpdateTemplate, "vkCreateDescriptorUpdateTemplate");
procedure vkDestroyDescriptorUpdateTemplate
(device : VkDevice;
descriptorUpdateTemplate : VkDescriptorUpdateTemplate;
pAllocator : System.Address); -- vulkan_core.h:4909
pragma Import (C, vkDestroyDescriptorUpdateTemplate, "vkDestroyDescriptorUpdateTemplate");
procedure vkUpdateDescriptorSetWithTemplate
(device : VkDevice;
descriptorSet : VkDescriptorSet;
descriptorUpdateTemplate : VkDescriptorUpdateTemplate;
pData : System.Address); -- vulkan_core.h:4914
pragma Import (C, vkUpdateDescriptorSetWithTemplate, "vkUpdateDescriptorSetWithTemplate");
procedure vkGetPhysicalDeviceExternalBufferProperties
(physicalDevice : VkPhysicalDevice;
pExternalBufferInfo : System.Address;
pExternalBufferProperties : access VkExternalBufferProperties); -- vulkan_core.h:4920
pragma Import (C, vkGetPhysicalDeviceExternalBufferProperties, "vkGetPhysicalDeviceExternalBufferProperties");
procedure vkGetPhysicalDeviceExternalFenceProperties
(physicalDevice : VkPhysicalDevice;
pExternalFenceInfo : System.Address;
pExternalFenceProperties : access VkExternalFenceProperties); -- vulkan_core.h:4925
pragma Import (C, vkGetPhysicalDeviceExternalFenceProperties, "vkGetPhysicalDeviceExternalFenceProperties");
procedure vkGetPhysicalDeviceExternalSemaphoreProperties
(physicalDevice : VkPhysicalDevice;
pExternalSemaphoreInfo : System.Address;
pExternalSemaphoreProperties : access VkExternalSemaphoreProperties); -- vulkan_core.h:4930
pragma Import (C, vkGetPhysicalDeviceExternalSemaphoreProperties, "vkGetPhysicalDeviceExternalSemaphoreProperties");
procedure vkGetDescriptorSetLayoutSupport
(device : VkDevice;
pCreateInfo : System.Address;
pSupport : access VkDescriptorSetLayoutSupport); -- vulkan_core.h:4935
pragma Import (C, vkGetDescriptorSetLayoutSupport, "vkGetDescriptorSetLayoutSupport");
-- Vulkan 1.2 version number
subtype VkDriverId is unsigned;
VK_DRIVER_ID_AMD_PROPRIETARY : constant VkDriverId := 1;
VK_DRIVER_ID_AMD_OPEN_SOURCE : constant VkDriverId := 2;
VK_DRIVER_ID_MESA_RADV : constant VkDriverId := 3;
VK_DRIVER_ID_NVIDIA_PROPRIETARY : constant VkDriverId := 4;
VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS : constant VkDriverId := 5;
VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA : constant VkDriverId := 6;
VK_DRIVER_ID_IMAGINATION_PROPRIETARY : constant VkDriverId := 7;
VK_DRIVER_ID_QUALCOMM_PROPRIETARY : constant VkDriverId := 8;
VK_DRIVER_ID_ARM_PROPRIETARY : constant VkDriverId := 9;
VK_DRIVER_ID_GOOGLE_SWIFTSHADER : constant VkDriverId := 10;
VK_DRIVER_ID_GGP_PROPRIETARY : constant VkDriverId := 11;
VK_DRIVER_ID_BROADCOM_PROPRIETARY : constant VkDriverId := 12;
VK_DRIVER_ID_MESA_LLVMPIPE : constant VkDriverId := 13;
VK_DRIVER_ID_MOLTENVK : constant VkDriverId := 14;
VK_DRIVER_ID_AMD_PROPRIETARY_KHR : constant VkDriverId := 1;
VK_DRIVER_ID_AMD_OPEN_SOURCE_KHR : constant VkDriverId := 2;
VK_DRIVER_ID_MESA_RADV_KHR : constant VkDriverId := 3;
VK_DRIVER_ID_NVIDIA_PROPRIETARY_KHR : constant VkDriverId := 4;
VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS_KHR : constant VkDriverId := 5;
VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA_KHR : constant VkDriverId := 6;
VK_DRIVER_ID_IMAGINATION_PROPRIETARY_KHR : constant VkDriverId := 7;
VK_DRIVER_ID_QUALCOMM_PROPRIETARY_KHR : constant VkDriverId := 8;
VK_DRIVER_ID_ARM_PROPRIETARY_KHR : constant VkDriverId := 9;
VK_DRIVER_ID_GOOGLE_SWIFTSHADER_KHR : constant VkDriverId := 10;
VK_DRIVER_ID_GGP_PROPRIETARY_KHR : constant VkDriverId := 11;
VK_DRIVER_ID_BROADCOM_PROPRIETARY_KHR : constant VkDriverId := 12;
VK_DRIVER_ID_MAX_ENUM : constant VkDriverId := 2147483647; -- vulkan_core.h:4949
subtype VkShaderFloatControlsIndependence is unsigned;
VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_32_BIT_ONLY : constant VkShaderFloatControlsIndependence := 0;
VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_ALL : constant VkShaderFloatControlsIndependence := 1;
VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_NONE : constant VkShaderFloatControlsIndependence := 2;
VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_32_BIT_ONLY_KHR : constant VkShaderFloatControlsIndependence := 0;
VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_ALL_KHR : constant VkShaderFloatControlsIndependence := 1;
VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_NONE_KHR : constant VkShaderFloatControlsIndependence := 2;
VK_SHADER_FLOAT_CONTROLS_INDEPENDENCE_MAX_ENUM : constant VkShaderFloatControlsIndependence := 2147483647; -- vulkan_core.h:4979
subtype VkSamplerReductionMode is unsigned;
VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE : constant VkSamplerReductionMode := 0;
VK_SAMPLER_REDUCTION_MODE_MIN : constant VkSamplerReductionMode := 1;
VK_SAMPLER_REDUCTION_MODE_MAX : constant VkSamplerReductionMode := 2;
VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE_EXT : constant VkSamplerReductionMode := 0;
VK_SAMPLER_REDUCTION_MODE_MIN_EXT : constant VkSamplerReductionMode := 1;
VK_SAMPLER_REDUCTION_MODE_MAX_EXT : constant VkSamplerReductionMode := 2;
VK_SAMPLER_REDUCTION_MODE_MAX_ENUM : constant VkSamplerReductionMode := 2147483647; -- vulkan_core.h:4989
subtype VkSemaphoreType is unsigned;
VK_SEMAPHORE_TYPE_BINARY : constant VkSemaphoreType := 0;
VK_SEMAPHORE_TYPE_TIMELINE : constant VkSemaphoreType := 1;
VK_SEMAPHORE_TYPE_BINARY_KHR : constant VkSemaphoreType := 0;
VK_SEMAPHORE_TYPE_TIMELINE_KHR : constant VkSemaphoreType := 1;
VK_SEMAPHORE_TYPE_MAX_ENUM : constant VkSemaphoreType := 2147483647; -- vulkan_core.h:4999
subtype VkResolveModeFlagBits is unsigned;
VK_RESOLVE_MODE_NONE : constant VkResolveModeFlagBits := 0;
VK_RESOLVE_MODE_SAMPLE_ZERO_BIT : constant VkResolveModeFlagBits := 1;
VK_RESOLVE_MODE_AVERAGE_BIT : constant VkResolveModeFlagBits := 2;
VK_RESOLVE_MODE_MIN_BIT : constant VkResolveModeFlagBits := 4;
VK_RESOLVE_MODE_MAX_BIT : constant VkResolveModeFlagBits := 8;
VK_RESOLVE_MODE_NONE_KHR : constant VkResolveModeFlagBits := 0;
VK_RESOLVE_MODE_SAMPLE_ZERO_BIT_KHR : constant VkResolveModeFlagBits := 1;
VK_RESOLVE_MODE_AVERAGE_BIT_KHR : constant VkResolveModeFlagBits := 2;
VK_RESOLVE_MODE_MIN_BIT_KHR : constant VkResolveModeFlagBits := 4;
VK_RESOLVE_MODE_MAX_BIT_KHR : constant VkResolveModeFlagBits := 8;
VK_RESOLVE_MODE_FLAG_BITS_MAX_ENUM : constant VkResolveModeFlagBits := 2147483647; -- vulkan_core.h:5007
subtype VkResolveModeFlags is VkFlags; -- vulkan_core.h:5020
subtype VkDescriptorBindingFlagBits is unsigned;
VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT : constant VkDescriptorBindingFlagBits := 1;
VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT : constant VkDescriptorBindingFlagBits := 2;
VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT : constant VkDescriptorBindingFlagBits := 4;
VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT : constant VkDescriptorBindingFlagBits := 8;
VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT : constant VkDescriptorBindingFlagBits := 1;
VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT : constant VkDescriptorBindingFlagBits := 2;
VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT : constant VkDescriptorBindingFlagBits := 4;
VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT : constant VkDescriptorBindingFlagBits := 8;
VK_DESCRIPTOR_BINDING_FLAG_BITS_MAX_ENUM : constant VkDescriptorBindingFlagBits := 2147483647; -- vulkan_core.h:5022
subtype VkDescriptorBindingFlags is VkFlags; -- vulkan_core.h:5033
subtype VkSemaphoreWaitFlagBits is unsigned;
VK_SEMAPHORE_WAIT_ANY_BIT : constant VkSemaphoreWaitFlagBits := 1;
VK_SEMAPHORE_WAIT_ANY_BIT_KHR : constant VkSemaphoreWaitFlagBits := 1;
VK_SEMAPHORE_WAIT_FLAG_BITS_MAX_ENUM : constant VkSemaphoreWaitFlagBits := 2147483647; -- vulkan_core.h:5035
subtype VkSemaphoreWaitFlags is VkFlags; -- vulkan_core.h:5040
type VkPhysicalDeviceVulkan11Features is record
sType : aliased VkStructureType; -- vulkan_core.h:5042
pNext : System.Address; -- vulkan_core.h:5043
storageBuffer16BitAccess : aliased VkBool32; -- vulkan_core.h:5044
uniformAndStorageBuffer16BitAccess : aliased VkBool32; -- vulkan_core.h:5045
storagePushConstant16 : aliased VkBool32; -- vulkan_core.h:5046
storageInputOutput16 : aliased VkBool32; -- vulkan_core.h:5047
multiview : aliased VkBool32; -- vulkan_core.h:5048
multiviewGeometryShader : aliased VkBool32; -- vulkan_core.h:5049
multiviewTessellationShader : aliased VkBool32; -- vulkan_core.h:5050
variablePointersStorageBuffer : aliased VkBool32; -- vulkan_core.h:5051
variablePointers : aliased VkBool32; -- vulkan_core.h:5052
protectedMemory : aliased VkBool32; -- vulkan_core.h:5053
samplerYcbcrConversion : aliased VkBool32; -- vulkan_core.h:5054
shaderDrawParameters : aliased VkBool32; -- vulkan_core.h:5055
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVulkan11Features); -- vulkan_core.h:5041
type VkPhysicalDeviceVulkan11Properties_deviceUUID_array is array (0 .. 15) of aliased stdint_h.uint8_t;
type VkPhysicalDeviceVulkan11Properties_driverUUID_array is array (0 .. 15) of aliased stdint_h.uint8_t;
type VkPhysicalDeviceVulkan11Properties_deviceLUID_array is array (0 .. 7) of aliased stdint_h.uint8_t;
type VkPhysicalDeviceVulkan11Properties is record
sType : aliased VkStructureType; -- vulkan_core.h:5059
pNext : System.Address; -- vulkan_core.h:5060
deviceUUID : aliased VkPhysicalDeviceVulkan11Properties_deviceUUID_array; -- vulkan_core.h:5061
driverUUID : aliased VkPhysicalDeviceVulkan11Properties_driverUUID_array; -- vulkan_core.h:5062
deviceLUID : aliased VkPhysicalDeviceVulkan11Properties_deviceLUID_array; -- vulkan_core.h:5063
deviceNodeMask : aliased stdint_h.uint32_t; -- vulkan_core.h:5064
deviceLUIDValid : aliased VkBool32; -- vulkan_core.h:5065
subgroupSize : aliased stdint_h.uint32_t; -- vulkan_core.h:5066
subgroupSupportedStages : aliased VkShaderStageFlags; -- vulkan_core.h:5067
subgroupSupportedOperations : aliased VkSubgroupFeatureFlags; -- vulkan_core.h:5068
subgroupQuadOperationsInAllStages : aliased VkBool32; -- vulkan_core.h:5069
pointClippingBehavior : aliased VkPointClippingBehavior; -- vulkan_core.h:5070
maxMultiviewViewCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5071
maxMultiviewInstanceIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:5072
protectedNoFault : aliased VkBool32; -- vulkan_core.h:5073
maxPerSetDescriptors : aliased stdint_h.uint32_t; -- vulkan_core.h:5074
maxMemoryAllocationSize : aliased VkDeviceSize; -- vulkan_core.h:5075
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVulkan11Properties); -- vulkan_core.h:5058
type VkPhysicalDeviceVulkan12Features is record
sType : aliased VkStructureType; -- vulkan_core.h:5079
pNext : System.Address; -- vulkan_core.h:5080
samplerMirrorClampToEdge : aliased VkBool32; -- vulkan_core.h:5081
drawIndirectCount : aliased VkBool32; -- vulkan_core.h:5082
storageBuffer8BitAccess : aliased VkBool32; -- vulkan_core.h:5083
uniformAndStorageBuffer8BitAccess : aliased VkBool32; -- vulkan_core.h:5084
storagePushConstant8 : aliased VkBool32; -- vulkan_core.h:5085
shaderBufferInt64Atomics : aliased VkBool32; -- vulkan_core.h:5086
shaderSharedInt64Atomics : aliased VkBool32; -- vulkan_core.h:5087
shaderFloat16 : aliased VkBool32; -- vulkan_core.h:5088
shaderInt8 : aliased VkBool32; -- vulkan_core.h:5089
descriptorIndexing : aliased VkBool32; -- vulkan_core.h:5090
shaderInputAttachmentArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:5091
shaderUniformTexelBufferArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:5092
shaderStorageTexelBufferArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:5093
shaderUniformBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5094
shaderSampledImageArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5095
shaderStorageBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5096
shaderStorageImageArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5097
shaderInputAttachmentArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5098
shaderUniformTexelBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5099
shaderStorageTexelBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5100
descriptorBindingUniformBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5101
descriptorBindingSampledImageUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5102
descriptorBindingStorageImageUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5103
descriptorBindingStorageBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5104
descriptorBindingUniformTexelBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5105
descriptorBindingStorageTexelBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5106
descriptorBindingUpdateUnusedWhilePending : aliased VkBool32; -- vulkan_core.h:5107
descriptorBindingPartiallyBound : aliased VkBool32; -- vulkan_core.h:5108
descriptorBindingVariableDescriptorCount : aliased VkBool32; -- vulkan_core.h:5109
runtimeDescriptorArray : aliased VkBool32; -- vulkan_core.h:5110
samplerFilterMinmax : aliased VkBool32; -- vulkan_core.h:5111
scalarBlockLayout : aliased VkBool32; -- vulkan_core.h:5112
imagelessFramebuffer : aliased VkBool32; -- vulkan_core.h:5113
uniformBufferStandardLayout : aliased VkBool32; -- vulkan_core.h:5114
shaderSubgroupExtendedTypes : aliased VkBool32; -- vulkan_core.h:5115
separateDepthStencilLayouts : aliased VkBool32; -- vulkan_core.h:5116
hostQueryReset : aliased VkBool32; -- vulkan_core.h:5117
timelineSemaphore : aliased VkBool32; -- vulkan_core.h:5118
bufferDeviceAddress : aliased VkBool32; -- vulkan_core.h:5119
bufferDeviceAddressCaptureReplay : aliased VkBool32; -- vulkan_core.h:5120
bufferDeviceAddressMultiDevice : aliased VkBool32; -- vulkan_core.h:5121
vulkanMemoryModel : aliased VkBool32; -- vulkan_core.h:5122
vulkanMemoryModelDeviceScope : aliased VkBool32; -- vulkan_core.h:5123
vulkanMemoryModelAvailabilityVisibilityChains : aliased VkBool32; -- vulkan_core.h:5124
shaderOutputViewportIndex : aliased VkBool32; -- vulkan_core.h:5125
shaderOutputLayer : aliased VkBool32; -- vulkan_core.h:5126
subgroupBroadcastDynamicId : aliased VkBool32; -- vulkan_core.h:5127
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVulkan12Features); -- vulkan_core.h:5078
type VkConformanceVersion is record
major : aliased stdint_h.uint8_t; -- vulkan_core.h:5131
minor : aliased stdint_h.uint8_t; -- vulkan_core.h:5132
subminor : aliased stdint_h.uint8_t; -- vulkan_core.h:5133
patch : aliased stdint_h.uint8_t; -- vulkan_core.h:5134
end record;
pragma Convention (C_Pass_By_Copy, VkConformanceVersion); -- vulkan_core.h:5130
subtype VkPhysicalDeviceVulkan12Properties_driverName_array is Interfaces.C.char_array (0 .. 255);
subtype VkPhysicalDeviceVulkan12Properties_driverInfo_array is Interfaces.C.char_array (0 .. 255);
type VkPhysicalDeviceVulkan12Properties is record
sType : aliased VkStructureType; -- vulkan_core.h:5138
pNext : System.Address; -- vulkan_core.h:5139
driverID : aliased VkDriverId; -- vulkan_core.h:5140
driverName : aliased VkPhysicalDeviceVulkan12Properties_driverName_array; -- vulkan_core.h:5141
driverInfo : aliased VkPhysicalDeviceVulkan12Properties_driverInfo_array; -- vulkan_core.h:5142
conformanceVersion : aliased VkConformanceVersion; -- vulkan_core.h:5143
denormBehaviorIndependence : aliased VkShaderFloatControlsIndependence; -- vulkan_core.h:5144
roundingModeIndependence : aliased VkShaderFloatControlsIndependence; -- vulkan_core.h:5145
shaderSignedZeroInfNanPreserveFloat16 : aliased VkBool32; -- vulkan_core.h:5146
shaderSignedZeroInfNanPreserveFloat32 : aliased VkBool32; -- vulkan_core.h:5147
shaderSignedZeroInfNanPreserveFloat64 : aliased VkBool32; -- vulkan_core.h:5148
shaderDenormPreserveFloat16 : aliased VkBool32; -- vulkan_core.h:5149
shaderDenormPreserveFloat32 : aliased VkBool32; -- vulkan_core.h:5150
shaderDenormPreserveFloat64 : aliased VkBool32; -- vulkan_core.h:5151
shaderDenormFlushToZeroFloat16 : aliased VkBool32; -- vulkan_core.h:5152
shaderDenormFlushToZeroFloat32 : aliased VkBool32; -- vulkan_core.h:5153
shaderDenormFlushToZeroFloat64 : aliased VkBool32; -- vulkan_core.h:5154
shaderRoundingModeRTEFloat16 : aliased VkBool32; -- vulkan_core.h:5155
shaderRoundingModeRTEFloat32 : aliased VkBool32; -- vulkan_core.h:5156
shaderRoundingModeRTEFloat64 : aliased VkBool32; -- vulkan_core.h:5157
shaderRoundingModeRTZFloat16 : aliased VkBool32; -- vulkan_core.h:5158
shaderRoundingModeRTZFloat32 : aliased VkBool32; -- vulkan_core.h:5159
shaderRoundingModeRTZFloat64 : aliased VkBool32; -- vulkan_core.h:5160
maxUpdateAfterBindDescriptorsInAllPools : aliased stdint_h.uint32_t; -- vulkan_core.h:5161
shaderUniformBufferArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5162
shaderSampledImageArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5163
shaderStorageBufferArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5164
shaderStorageImageArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5165
shaderInputAttachmentArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5166
robustBufferAccessUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5167
quadDivergentImplicitLod : aliased VkBool32; -- vulkan_core.h:5168
maxPerStageDescriptorUpdateAfterBindSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:5169
maxPerStageDescriptorUpdateAfterBindUniformBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5170
maxPerStageDescriptorUpdateAfterBindStorageBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5171
maxPerStageDescriptorUpdateAfterBindSampledImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5172
maxPerStageDescriptorUpdateAfterBindStorageImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5173
maxPerStageDescriptorUpdateAfterBindInputAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:5174
maxPerStageUpdateAfterBindResources : aliased stdint_h.uint32_t; -- vulkan_core.h:5175
maxDescriptorSetUpdateAfterBindSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:5176
maxDescriptorSetUpdateAfterBindUniformBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5177
maxDescriptorSetUpdateAfterBindUniformBuffersDynamic : aliased stdint_h.uint32_t; -- vulkan_core.h:5178
maxDescriptorSetUpdateAfterBindStorageBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5179
maxDescriptorSetUpdateAfterBindStorageBuffersDynamic : aliased stdint_h.uint32_t; -- vulkan_core.h:5180
maxDescriptorSetUpdateAfterBindSampledImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5181
maxDescriptorSetUpdateAfterBindStorageImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5182
maxDescriptorSetUpdateAfterBindInputAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:5183
supportedDepthResolveModes : aliased VkResolveModeFlags; -- vulkan_core.h:5184
supportedStencilResolveModes : aliased VkResolveModeFlags; -- vulkan_core.h:5185
independentResolveNone : aliased VkBool32; -- vulkan_core.h:5186
independentResolve : aliased VkBool32; -- vulkan_core.h:5187
filterMinmaxSingleComponentFormats : aliased VkBool32; -- vulkan_core.h:5188
filterMinmaxImageComponentMapping : aliased VkBool32; -- vulkan_core.h:5189
maxTimelineSemaphoreValueDifference : aliased stdint_h.uint64_t; -- vulkan_core.h:5190
framebufferIntegerColorSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:5191
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVulkan12Properties); -- vulkan_core.h:5137
type VkImageFormatListCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5195
pNext : System.Address; -- vulkan_core.h:5196
viewFormatCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5197
pViewFormats : System.Address; -- vulkan_core.h:5198
end record;
pragma Convention (C_Pass_By_Copy, VkImageFormatListCreateInfo); -- vulkan_core.h:5194
type VkAttachmentDescription2 is record
sType : aliased VkStructureType; -- vulkan_core.h:5202
pNext : System.Address; -- vulkan_core.h:5203
flags : aliased VkAttachmentDescriptionFlags; -- vulkan_core.h:5204
format : aliased VkFormat; -- vulkan_core.h:5205
samples : aliased VkSampleCountFlagBits; -- vulkan_core.h:5206
loadOp : aliased VkAttachmentLoadOp; -- vulkan_core.h:5207
storeOp : aliased VkAttachmentStoreOp; -- vulkan_core.h:5208
stencilLoadOp : aliased VkAttachmentLoadOp; -- vulkan_core.h:5209
stencilStoreOp : aliased VkAttachmentStoreOp; -- vulkan_core.h:5210
initialLayout : aliased VkImageLayout; -- vulkan_core.h:5211
finalLayout : aliased VkImageLayout; -- vulkan_core.h:5212
end record;
pragma Convention (C_Pass_By_Copy, VkAttachmentDescription2); -- vulkan_core.h:5201
type VkAttachmentReference2 is record
sType : aliased VkStructureType; -- vulkan_core.h:5216
pNext : System.Address; -- vulkan_core.h:5217
attachment : aliased stdint_h.uint32_t; -- vulkan_core.h:5218
layout : aliased VkImageLayout; -- vulkan_core.h:5219
aspectMask : aliased VkImageAspectFlags; -- vulkan_core.h:5220
end record;
pragma Convention (C_Pass_By_Copy, VkAttachmentReference2); -- vulkan_core.h:5215
type VkSubpassDescription2 is record
sType : aliased VkStructureType; -- vulkan_core.h:5224
pNext : System.Address; -- vulkan_core.h:5225
flags : aliased VkSubpassDescriptionFlags; -- vulkan_core.h:5226
pipelineBindPoint : aliased VkPipelineBindPoint; -- vulkan_core.h:5227
viewMask : aliased stdint_h.uint32_t; -- vulkan_core.h:5228
inputAttachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5229
pInputAttachments : System.Address; -- vulkan_core.h:5230
colorAttachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5231
pColorAttachments : System.Address; -- vulkan_core.h:5232
pResolveAttachments : System.Address; -- vulkan_core.h:5233
pDepthStencilAttachment : System.Address; -- vulkan_core.h:5234
preserveAttachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5235
pPreserveAttachments : access stdint_h.uint32_t; -- vulkan_core.h:5236
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassDescription2); -- vulkan_core.h:5223
type VkSubpassDependency2 is record
sType : aliased VkStructureType; -- vulkan_core.h:5240
pNext : System.Address; -- vulkan_core.h:5241
srcSubpass : aliased stdint_h.uint32_t; -- vulkan_core.h:5242
dstSubpass : aliased stdint_h.uint32_t; -- vulkan_core.h:5243
srcStageMask : aliased VkPipelineStageFlags; -- vulkan_core.h:5244
dstStageMask : aliased VkPipelineStageFlags; -- vulkan_core.h:5245
srcAccessMask : aliased VkAccessFlags; -- vulkan_core.h:5246
dstAccessMask : aliased VkAccessFlags; -- vulkan_core.h:5247
dependencyFlags : aliased VkDependencyFlags; -- vulkan_core.h:5248
viewOffset : aliased stdint_h.int32_t; -- vulkan_core.h:5249
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassDependency2); -- vulkan_core.h:5239
type VkRenderPassCreateInfo2 is record
sType : aliased VkStructureType; -- vulkan_core.h:5253
pNext : System.Address; -- vulkan_core.h:5254
flags : aliased VkRenderPassCreateFlags; -- vulkan_core.h:5255
attachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5256
pAttachments : System.Address; -- vulkan_core.h:5257
subpassCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5258
pSubpasses : System.Address; -- vulkan_core.h:5259
dependencyCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5260
pDependencies : System.Address; -- vulkan_core.h:5261
correlatedViewMaskCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5262
pCorrelatedViewMasks : access stdint_h.uint32_t; -- vulkan_core.h:5263
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassCreateInfo2); -- vulkan_core.h:5252
type VkSubpassBeginInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5267
pNext : System.Address; -- vulkan_core.h:5268
contents : aliased VkSubpassContents; -- vulkan_core.h:5269
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassBeginInfo); -- vulkan_core.h:5266
type VkSubpassEndInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5273
pNext : System.Address; -- vulkan_core.h:5274
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassEndInfo); -- vulkan_core.h:5272
type VkPhysicalDevice8BitStorageFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5278
pNext : System.Address; -- vulkan_core.h:5279
storageBuffer8BitAccess : aliased VkBool32; -- vulkan_core.h:5280
uniformAndStorageBuffer8BitAccess : aliased VkBool32; -- vulkan_core.h:5281
storagePushConstant8 : aliased VkBool32; -- vulkan_core.h:5282
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevice8BitStorageFeatures); -- vulkan_core.h:5277
subtype VkPhysicalDeviceDriverProperties_driverName_array is Interfaces.C.char_array (0 .. 255);
subtype VkPhysicalDeviceDriverProperties_driverInfo_array is Interfaces.C.char_array (0 .. 255);
type VkPhysicalDeviceDriverProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:5286
pNext : System.Address; -- vulkan_core.h:5287
driverID : aliased VkDriverId; -- vulkan_core.h:5288
driverName : aliased VkPhysicalDeviceDriverProperties_driverName_array; -- vulkan_core.h:5289
driverInfo : aliased VkPhysicalDeviceDriverProperties_driverInfo_array; -- vulkan_core.h:5290
conformanceVersion : aliased VkConformanceVersion; -- vulkan_core.h:5291
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDriverProperties); -- vulkan_core.h:5285
type VkPhysicalDeviceShaderAtomicInt64Features is record
sType : aliased VkStructureType; -- vulkan_core.h:5295
pNext : System.Address; -- vulkan_core.h:5296
shaderBufferInt64Atomics : aliased VkBool32; -- vulkan_core.h:5297
shaderSharedInt64Atomics : aliased VkBool32; -- vulkan_core.h:5298
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderAtomicInt64Features); -- vulkan_core.h:5294
type VkPhysicalDeviceShaderFloat16Int8Features is record
sType : aliased VkStructureType; -- vulkan_core.h:5302
pNext : System.Address; -- vulkan_core.h:5303
shaderFloat16 : aliased VkBool32; -- vulkan_core.h:5304
shaderInt8 : aliased VkBool32; -- vulkan_core.h:5305
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderFloat16Int8Features); -- vulkan_core.h:5301
type VkPhysicalDeviceFloatControlsProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:5309
pNext : System.Address; -- vulkan_core.h:5310
denormBehaviorIndependence : aliased VkShaderFloatControlsIndependence; -- vulkan_core.h:5311
roundingModeIndependence : aliased VkShaderFloatControlsIndependence; -- vulkan_core.h:5312
shaderSignedZeroInfNanPreserveFloat16 : aliased VkBool32; -- vulkan_core.h:5313
shaderSignedZeroInfNanPreserveFloat32 : aliased VkBool32; -- vulkan_core.h:5314
shaderSignedZeroInfNanPreserveFloat64 : aliased VkBool32; -- vulkan_core.h:5315
shaderDenormPreserveFloat16 : aliased VkBool32; -- vulkan_core.h:5316
shaderDenormPreserveFloat32 : aliased VkBool32; -- vulkan_core.h:5317
shaderDenormPreserveFloat64 : aliased VkBool32; -- vulkan_core.h:5318
shaderDenormFlushToZeroFloat16 : aliased VkBool32; -- vulkan_core.h:5319
shaderDenormFlushToZeroFloat32 : aliased VkBool32; -- vulkan_core.h:5320
shaderDenormFlushToZeroFloat64 : aliased VkBool32; -- vulkan_core.h:5321
shaderRoundingModeRTEFloat16 : aliased VkBool32; -- vulkan_core.h:5322
shaderRoundingModeRTEFloat32 : aliased VkBool32; -- vulkan_core.h:5323
shaderRoundingModeRTEFloat64 : aliased VkBool32; -- vulkan_core.h:5324
shaderRoundingModeRTZFloat16 : aliased VkBool32; -- vulkan_core.h:5325
shaderRoundingModeRTZFloat32 : aliased VkBool32; -- vulkan_core.h:5326
shaderRoundingModeRTZFloat64 : aliased VkBool32; -- vulkan_core.h:5327
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFloatControlsProperties); -- vulkan_core.h:5308
type VkDescriptorSetLayoutBindingFlagsCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5331
pNext : System.Address; -- vulkan_core.h:5332
bindingCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5333
pBindingFlags : access VkDescriptorBindingFlags; -- vulkan_core.h:5334
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorSetLayoutBindingFlagsCreateInfo); -- vulkan_core.h:5330
type VkPhysicalDeviceDescriptorIndexingFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5338
pNext : System.Address; -- vulkan_core.h:5339
shaderInputAttachmentArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:5340
shaderUniformTexelBufferArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:5341
shaderStorageTexelBufferArrayDynamicIndexing : aliased VkBool32; -- vulkan_core.h:5342
shaderUniformBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5343
shaderSampledImageArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5344
shaderStorageBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5345
shaderStorageImageArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5346
shaderInputAttachmentArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5347
shaderUniformTexelBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5348
shaderStorageTexelBufferArrayNonUniformIndexing : aliased VkBool32; -- vulkan_core.h:5349
descriptorBindingUniformBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5350
descriptorBindingSampledImageUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5351
descriptorBindingStorageImageUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5352
descriptorBindingStorageBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5353
descriptorBindingUniformTexelBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5354
descriptorBindingStorageTexelBufferUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5355
descriptorBindingUpdateUnusedWhilePending : aliased VkBool32; -- vulkan_core.h:5356
descriptorBindingPartiallyBound : aliased VkBool32; -- vulkan_core.h:5357
descriptorBindingVariableDescriptorCount : aliased VkBool32; -- vulkan_core.h:5358
runtimeDescriptorArray : aliased VkBool32; -- vulkan_core.h:5359
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDescriptorIndexingFeatures); -- vulkan_core.h:5337
type VkPhysicalDeviceDescriptorIndexingProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:5363
pNext : System.Address; -- vulkan_core.h:5364
maxUpdateAfterBindDescriptorsInAllPools : aliased stdint_h.uint32_t; -- vulkan_core.h:5365
shaderUniformBufferArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5366
shaderSampledImageArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5367
shaderStorageBufferArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5368
shaderStorageImageArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5369
shaderInputAttachmentArrayNonUniformIndexingNative : aliased VkBool32; -- vulkan_core.h:5370
robustBufferAccessUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:5371
quadDivergentImplicitLod : aliased VkBool32; -- vulkan_core.h:5372
maxPerStageDescriptorUpdateAfterBindSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:5373
maxPerStageDescriptorUpdateAfterBindUniformBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5374
maxPerStageDescriptorUpdateAfterBindStorageBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5375
maxPerStageDescriptorUpdateAfterBindSampledImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5376
maxPerStageDescriptorUpdateAfterBindStorageImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5377
maxPerStageDescriptorUpdateAfterBindInputAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:5378
maxPerStageUpdateAfterBindResources : aliased stdint_h.uint32_t; -- vulkan_core.h:5379
maxDescriptorSetUpdateAfterBindSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:5380
maxDescriptorSetUpdateAfterBindUniformBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5381
maxDescriptorSetUpdateAfterBindUniformBuffersDynamic : aliased stdint_h.uint32_t; -- vulkan_core.h:5382
maxDescriptorSetUpdateAfterBindStorageBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:5383
maxDescriptorSetUpdateAfterBindStorageBuffersDynamic : aliased stdint_h.uint32_t; -- vulkan_core.h:5384
maxDescriptorSetUpdateAfterBindSampledImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5385
maxDescriptorSetUpdateAfterBindStorageImages : aliased stdint_h.uint32_t; -- vulkan_core.h:5386
maxDescriptorSetUpdateAfterBindInputAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:5387
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDescriptorIndexingProperties); -- vulkan_core.h:5362
type VkDescriptorSetVariableDescriptorCountAllocateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5391
pNext : System.Address; -- vulkan_core.h:5392
descriptorSetCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5393
pDescriptorCounts : access stdint_h.uint32_t; -- vulkan_core.h:5394
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorSetVariableDescriptorCountAllocateInfo); -- vulkan_core.h:5390
type VkDescriptorSetVariableDescriptorCountLayoutSupport is record
sType : aliased VkStructureType; -- vulkan_core.h:5398
pNext : System.Address; -- vulkan_core.h:5399
maxVariableDescriptorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5400
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorSetVariableDescriptorCountLayoutSupport); -- vulkan_core.h:5397
type VkSubpassDescriptionDepthStencilResolve is record
sType : aliased VkStructureType; -- vulkan_core.h:5404
pNext : System.Address; -- vulkan_core.h:5405
depthResolveMode : aliased VkResolveModeFlagBits; -- vulkan_core.h:5406
stencilResolveMode : aliased VkResolveModeFlagBits; -- vulkan_core.h:5407
pDepthStencilResolveAttachment : System.Address; -- vulkan_core.h:5408
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassDescriptionDepthStencilResolve); -- vulkan_core.h:5403
type VkPhysicalDeviceDepthStencilResolveProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:5412
pNext : System.Address; -- vulkan_core.h:5413
supportedDepthResolveModes : aliased VkResolveModeFlags; -- vulkan_core.h:5414
supportedStencilResolveModes : aliased VkResolveModeFlags; -- vulkan_core.h:5415
independentResolveNone : aliased VkBool32; -- vulkan_core.h:5416
independentResolve : aliased VkBool32; -- vulkan_core.h:5417
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDepthStencilResolveProperties); -- vulkan_core.h:5411
type VkPhysicalDeviceScalarBlockLayoutFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5421
pNext : System.Address; -- vulkan_core.h:5422
scalarBlockLayout : aliased VkBool32; -- vulkan_core.h:5423
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceScalarBlockLayoutFeatures); -- vulkan_core.h:5420
type VkImageStencilUsageCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5427
pNext : System.Address; -- vulkan_core.h:5428
stencilUsage : aliased VkImageUsageFlags; -- vulkan_core.h:5429
end record;
pragma Convention (C_Pass_By_Copy, VkImageStencilUsageCreateInfo); -- vulkan_core.h:5426
type VkSamplerReductionModeCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5433
pNext : System.Address; -- vulkan_core.h:5434
reductionMode : aliased VkSamplerReductionMode; -- vulkan_core.h:5435
end record;
pragma Convention (C_Pass_By_Copy, VkSamplerReductionModeCreateInfo); -- vulkan_core.h:5432
type VkPhysicalDeviceSamplerFilterMinmaxProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:5439
pNext : System.Address; -- vulkan_core.h:5440
filterMinmaxSingleComponentFormats : aliased VkBool32; -- vulkan_core.h:5441
filterMinmaxImageComponentMapping : aliased VkBool32; -- vulkan_core.h:5442
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSamplerFilterMinmaxProperties); -- vulkan_core.h:5438
type VkPhysicalDeviceVulkanMemoryModelFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5446
pNext : System.Address; -- vulkan_core.h:5447
vulkanMemoryModel : aliased VkBool32; -- vulkan_core.h:5448
vulkanMemoryModelDeviceScope : aliased VkBool32; -- vulkan_core.h:5449
vulkanMemoryModelAvailabilityVisibilityChains : aliased VkBool32; -- vulkan_core.h:5450
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVulkanMemoryModelFeatures); -- vulkan_core.h:5445
type VkPhysicalDeviceImagelessFramebufferFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5454
pNext : System.Address; -- vulkan_core.h:5455
imagelessFramebuffer : aliased VkBool32; -- vulkan_core.h:5456
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceImagelessFramebufferFeatures); -- vulkan_core.h:5453
type VkFramebufferAttachmentImageInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5460
pNext : System.Address; -- vulkan_core.h:5461
flags : aliased VkImageCreateFlags; -- vulkan_core.h:5462
usage : aliased VkImageUsageFlags; -- vulkan_core.h:5463
width : aliased stdint_h.uint32_t; -- vulkan_core.h:5464
height : aliased stdint_h.uint32_t; -- vulkan_core.h:5465
layerCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5466
viewFormatCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5467
pViewFormats : System.Address; -- vulkan_core.h:5468
end record;
pragma Convention (C_Pass_By_Copy, VkFramebufferAttachmentImageInfo); -- vulkan_core.h:5459
type VkFramebufferAttachmentsCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5472
pNext : System.Address; -- vulkan_core.h:5473
attachmentImageInfoCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5474
pAttachmentImageInfos : System.Address; -- vulkan_core.h:5475
end record;
pragma Convention (C_Pass_By_Copy, VkFramebufferAttachmentsCreateInfo); -- vulkan_core.h:5471
type VkRenderPassAttachmentBeginInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5479
pNext : System.Address; -- vulkan_core.h:5480
attachmentCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5481
pAttachments : System.Address; -- vulkan_core.h:5482
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassAttachmentBeginInfo); -- vulkan_core.h:5478
type VkPhysicalDeviceUniformBufferStandardLayoutFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5486
pNext : System.Address; -- vulkan_core.h:5487
uniformBufferStandardLayout : aliased VkBool32; -- vulkan_core.h:5488
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceUniformBufferStandardLayoutFeatures); -- vulkan_core.h:5485
type VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5492
pNext : System.Address; -- vulkan_core.h:5493
shaderSubgroupExtendedTypes : aliased VkBool32; -- vulkan_core.h:5494
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures); -- vulkan_core.h:5491
type VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5498
pNext : System.Address; -- vulkan_core.h:5499
separateDepthStencilLayouts : aliased VkBool32; -- vulkan_core.h:5500
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures); -- vulkan_core.h:5497
type VkAttachmentReferenceStencilLayout is record
sType : aliased VkStructureType; -- vulkan_core.h:5504
pNext : System.Address; -- vulkan_core.h:5505
stencilLayout : aliased VkImageLayout; -- vulkan_core.h:5506
end record;
pragma Convention (C_Pass_By_Copy, VkAttachmentReferenceStencilLayout); -- vulkan_core.h:5503
type VkAttachmentDescriptionStencilLayout is record
sType : aliased VkStructureType; -- vulkan_core.h:5510
pNext : System.Address; -- vulkan_core.h:5511
stencilInitialLayout : aliased VkImageLayout; -- vulkan_core.h:5512
stencilFinalLayout : aliased VkImageLayout; -- vulkan_core.h:5513
end record;
pragma Convention (C_Pass_By_Copy, VkAttachmentDescriptionStencilLayout); -- vulkan_core.h:5509
type VkPhysicalDeviceHostQueryResetFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5517
pNext : System.Address; -- vulkan_core.h:5518
hostQueryReset : aliased VkBool32; -- vulkan_core.h:5519
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceHostQueryResetFeatures); -- vulkan_core.h:5516
type VkPhysicalDeviceTimelineSemaphoreFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5523
pNext : System.Address; -- vulkan_core.h:5524
timelineSemaphore : aliased VkBool32; -- vulkan_core.h:5525
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceTimelineSemaphoreFeatures); -- vulkan_core.h:5522
type VkPhysicalDeviceTimelineSemaphoreProperties is record
sType : aliased VkStructureType; -- vulkan_core.h:5529
pNext : System.Address; -- vulkan_core.h:5530
maxTimelineSemaphoreValueDifference : aliased stdint_h.uint64_t; -- vulkan_core.h:5531
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceTimelineSemaphoreProperties); -- vulkan_core.h:5528
type VkSemaphoreTypeCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5535
pNext : System.Address; -- vulkan_core.h:5536
semaphoreType : aliased VkSemaphoreType; -- vulkan_core.h:5537
initialValue : aliased stdint_h.uint64_t; -- vulkan_core.h:5538
end record;
pragma Convention (C_Pass_By_Copy, VkSemaphoreTypeCreateInfo); -- vulkan_core.h:5534
type VkTimelineSemaphoreSubmitInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5542
pNext : System.Address; -- vulkan_core.h:5543
waitSemaphoreValueCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5544
pWaitSemaphoreValues : access stdint_h.uint64_t; -- vulkan_core.h:5545
signalSemaphoreValueCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5546
pSignalSemaphoreValues : access stdint_h.uint64_t; -- vulkan_core.h:5547
end record;
pragma Convention (C_Pass_By_Copy, VkTimelineSemaphoreSubmitInfo); -- vulkan_core.h:5541
type VkSemaphoreWaitInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5551
pNext : System.Address; -- vulkan_core.h:5552
flags : aliased VkSemaphoreWaitFlags; -- vulkan_core.h:5553
semaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5554
pSemaphores : System.Address; -- vulkan_core.h:5555
pValues : access stdint_h.uint64_t; -- vulkan_core.h:5556
end record;
pragma Convention (C_Pass_By_Copy, VkSemaphoreWaitInfo); -- vulkan_core.h:5550
type VkSemaphoreSignalInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5560
pNext : System.Address; -- vulkan_core.h:5561
semaphore : VkSemaphore; -- vulkan_core.h:5562
value : aliased stdint_h.uint64_t; -- vulkan_core.h:5563
end record;
pragma Convention (C_Pass_By_Copy, VkSemaphoreSignalInfo); -- vulkan_core.h:5559
type VkPhysicalDeviceBufferDeviceAddressFeatures is record
sType : aliased VkStructureType; -- vulkan_core.h:5567
pNext : System.Address; -- vulkan_core.h:5568
bufferDeviceAddress : aliased VkBool32; -- vulkan_core.h:5569
bufferDeviceAddressCaptureReplay : aliased VkBool32; -- vulkan_core.h:5570
bufferDeviceAddressMultiDevice : aliased VkBool32; -- vulkan_core.h:5571
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceBufferDeviceAddressFeatures); -- vulkan_core.h:5566
type VkBufferDeviceAddressInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5575
pNext : System.Address; -- vulkan_core.h:5576
buffer : VkBuffer; -- vulkan_core.h:5577
end record;
pragma Convention (C_Pass_By_Copy, VkBufferDeviceAddressInfo); -- vulkan_core.h:5574
type VkBufferOpaqueCaptureAddressCreateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5581
pNext : System.Address; -- vulkan_core.h:5582
opaqueCaptureAddress : aliased stdint_h.uint64_t; -- vulkan_core.h:5583
end record;
pragma Convention (C_Pass_By_Copy, VkBufferOpaqueCaptureAddressCreateInfo); -- vulkan_core.h:5580
type VkMemoryOpaqueCaptureAddressAllocateInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5587
pNext : System.Address; -- vulkan_core.h:5588
opaqueCaptureAddress : aliased stdint_h.uint64_t; -- vulkan_core.h:5589
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryOpaqueCaptureAddressAllocateInfo); -- vulkan_core.h:5586
type VkDeviceMemoryOpaqueCaptureAddressInfo is record
sType : aliased VkStructureType; -- vulkan_core.h:5593
pNext : System.Address; -- vulkan_core.h:5594
memory : VkDeviceMemory; -- vulkan_core.h:5595
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceMemoryOpaqueCaptureAddressInfo); -- vulkan_core.h:5592
type PFN_vkCmdDrawIndirectCount is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndirectCount); -- vulkan_core.h:5598
type PFN_vkCmdDrawIndexedIndirectCount is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndexedIndirectCount); -- vulkan_core.h:5599
type PFN_vkCreateRenderPass2 is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateRenderPass2); -- vulkan_core.h:5600
type PFN_vkCmdBeginRenderPass2 is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdBeginRenderPass2); -- vulkan_core.h:5601
type PFN_vkCmdNextSubpass2 is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdNextSubpass2); -- vulkan_core.h:5602
type PFN_vkCmdEndRenderPass2 is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdEndRenderPass2); -- vulkan_core.h:5603
type PFN_vkResetQueryPool is access procedure
(arg1 : VkDevice;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkResetQueryPool); -- vulkan_core.h:5604
type PFN_vkGetSemaphoreCounterValue is access function
(arg1 : VkDevice;
arg2 : VkSemaphore;
arg3 : access stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkGetSemaphoreCounterValue); -- vulkan_core.h:5605
type PFN_vkWaitSemaphores is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkWaitSemaphores); -- vulkan_core.h:5606
type PFN_vkSignalSemaphore is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkSignalSemaphore); -- vulkan_core.h:5607
type PFN_vkGetBufferDeviceAddress is access function (arg1 : VkDevice; arg2 : System.Address) return VkDeviceAddress;
pragma Convention (C, PFN_vkGetBufferDeviceAddress); -- vulkan_core.h:5608
type PFN_vkGetBufferOpaqueCaptureAddress is access function (arg1 : VkDevice; arg2 : System.Address) return stdint_h.uint64_t;
pragma Convention (C, PFN_vkGetBufferOpaqueCaptureAddress); -- vulkan_core.h:5609
type PFN_vkGetDeviceMemoryOpaqueCaptureAddress is access function (arg1 : VkDevice; arg2 : System.Address) return stdint_h.uint64_t;
pragma Convention (C, PFN_vkGetDeviceMemoryOpaqueCaptureAddress); -- vulkan_core.h:5610
procedure vkCmdDrawIndirectCount
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
countBuffer : VkBuffer;
countBufferOffset : VkDeviceSize;
maxDrawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:5613
pragma Import (C, vkCmdDrawIndirectCount, "vkCmdDrawIndirectCount");
procedure vkCmdDrawIndexedIndirectCount
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
countBuffer : VkBuffer;
countBufferOffset : VkDeviceSize;
maxDrawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:5622
pragma Import (C, vkCmdDrawIndexedIndirectCount, "vkCmdDrawIndexedIndirectCount");
function vkCreateRenderPass2
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pRenderPass : System.Address) return VkResult; -- vulkan_core.h:5631
pragma Import (C, vkCreateRenderPass2, "vkCreateRenderPass2");
procedure vkCmdBeginRenderPass2
(commandBuffer : VkCommandBuffer;
pRenderPassBegin : System.Address;
pSubpassBeginInfo : System.Address); -- vulkan_core.h:5637
pragma Import (C, vkCmdBeginRenderPass2, "vkCmdBeginRenderPass2");
procedure vkCmdNextSubpass2
(commandBuffer : VkCommandBuffer;
pSubpassBeginInfo : System.Address;
pSubpassEndInfo : System.Address); -- vulkan_core.h:5642
pragma Import (C, vkCmdNextSubpass2, "vkCmdNextSubpass2");
procedure vkCmdEndRenderPass2 (commandBuffer : VkCommandBuffer; pSubpassEndInfo : System.Address); -- vulkan_core.h:5647
pragma Import (C, vkCmdEndRenderPass2, "vkCmdEndRenderPass2");
procedure vkResetQueryPool
(device : VkDevice;
queryPool : VkQueryPool;
firstQuery : stdint_h.uint32_t;
queryCount : stdint_h.uint32_t); -- vulkan_core.h:5651
pragma Import (C, vkResetQueryPool, "vkResetQueryPool");
function vkGetSemaphoreCounterValue
(device : VkDevice;
semaphore : VkSemaphore;
pValue : access stdint_h.uint64_t) return VkResult; -- vulkan_core.h:5657
pragma Import (C, vkGetSemaphoreCounterValue, "vkGetSemaphoreCounterValue");
function vkWaitSemaphores
(device : VkDevice;
pWaitInfo : System.Address;
timeout : stdint_h.uint64_t) return VkResult; -- vulkan_core.h:5662
pragma Import (C, vkWaitSemaphores, "vkWaitSemaphores");
function vkSignalSemaphore (device : VkDevice; pSignalInfo : System.Address) return VkResult; -- vulkan_core.h:5667
pragma Import (C, vkSignalSemaphore, "vkSignalSemaphore");
function vkGetBufferDeviceAddress (device : VkDevice; pInfo : System.Address) return VkDeviceAddress; -- vulkan_core.h:5671
pragma Import (C, vkGetBufferDeviceAddress, "vkGetBufferDeviceAddress");
function vkGetBufferOpaqueCaptureAddress (device : VkDevice; pInfo : System.Address) return stdint_h.uint64_t; -- vulkan_core.h:5675
pragma Import (C, vkGetBufferOpaqueCaptureAddress, "vkGetBufferOpaqueCaptureAddress");
function vkGetDeviceMemoryOpaqueCaptureAddress (device : VkDevice; pInfo : System.Address) return stdint_h.uint64_t; -- vulkan_core.h:5679
pragma Import (C, vkGetDeviceMemoryOpaqueCaptureAddress, "vkGetDeviceMemoryOpaqueCaptureAddress");
type VkSurfaceKHR is new System.Address; -- vulkan_core.h:5686
-- skipped empty struct VkSurfaceKHR_T
subtype VkPresentModeKHR is unsigned;
VK_PRESENT_MODE_IMMEDIATE_KHR : constant VkPresentModeKHR := 0;
VK_PRESENT_MODE_MAILBOX_KHR : constant VkPresentModeKHR := 1;
VK_PRESENT_MODE_FIFO_KHR : constant VkPresentModeKHR := 2;
VK_PRESENT_MODE_FIFO_RELAXED_KHR : constant VkPresentModeKHR := 3;
VK_PRESENT_MODE_SHARED_DEMAND_REFRESH_KHR : constant VkPresentModeKHR := 1000111000;
VK_PRESENT_MODE_SHARED_CONTINUOUS_REFRESH_KHR : constant VkPresentModeKHR := 1000111001;
VK_PRESENT_MODE_MAX_ENUM_KHR : constant VkPresentModeKHR := 2147483647; -- vulkan_core.h:5690
subtype VkColorSpaceKHR is unsigned;
VK_COLOR_SPACE_SRGB_NONLINEAR_KHR : constant VkColorSpaceKHR := 0;
VK_COLOR_SPACE_DISPLAY_P3_NONLINEAR_EXT : constant VkColorSpaceKHR := 1000104001;
VK_COLOR_SPACE_EXTENDED_SRGB_LINEAR_EXT : constant VkColorSpaceKHR := 1000104002;
VK_COLOR_SPACE_DISPLAY_P3_LINEAR_EXT : constant VkColorSpaceKHR := 1000104003;
VK_COLOR_SPACE_DCI_P3_NONLINEAR_EXT : constant VkColorSpaceKHR := 1000104004;
VK_COLOR_SPACE_BT709_LINEAR_EXT : constant VkColorSpaceKHR := 1000104005;
VK_COLOR_SPACE_BT709_NONLINEAR_EXT : constant VkColorSpaceKHR := 1000104006;
VK_COLOR_SPACE_BT2020_LINEAR_EXT : constant VkColorSpaceKHR := 1000104007;
VK_COLOR_SPACE_HDR10_ST2084_EXT : constant VkColorSpaceKHR := 1000104008;
VK_COLOR_SPACE_DOLBYVISION_EXT : constant VkColorSpaceKHR := 1000104009;
VK_COLOR_SPACE_HDR10_HLG_EXT : constant VkColorSpaceKHR := 1000104010;
VK_COLOR_SPACE_ADOBERGB_LINEAR_EXT : constant VkColorSpaceKHR := 1000104011;
VK_COLOR_SPACE_ADOBERGB_NONLINEAR_EXT : constant VkColorSpaceKHR := 1000104012;
VK_COLOR_SPACE_PASS_THROUGH_EXT : constant VkColorSpaceKHR := 1000104013;
VK_COLOR_SPACE_EXTENDED_SRGB_NONLINEAR_EXT : constant VkColorSpaceKHR := 1000104014;
VK_COLOR_SPACE_DISPLAY_NATIVE_AMD : constant VkColorSpaceKHR := 1000213000;
VK_COLORSPACE_SRGB_NONLINEAR_KHR : constant VkColorSpaceKHR := 0;
VK_COLOR_SPACE_DCI_P3_LINEAR_EXT : constant VkColorSpaceKHR := 1000104003;
VK_COLOR_SPACE_MAX_ENUM_KHR : constant VkColorSpaceKHR := 2147483647; -- vulkan_core.h:5700
subtype VkSurfaceTransformFlagBitsKHR is unsigned;
VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 1;
VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 2;
VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 4;
VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 8;
VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 16;
VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 32;
VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 64;
VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 128;
VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR : constant VkSurfaceTransformFlagBitsKHR := 256;
VK_SURFACE_TRANSFORM_FLAG_BITS_MAX_ENUM_KHR : constant VkSurfaceTransformFlagBitsKHR := 2147483647; -- vulkan_core.h:5722
subtype VkCompositeAlphaFlagBitsKHR is unsigned;
VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR : constant VkCompositeAlphaFlagBitsKHR := 1;
VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR : constant VkCompositeAlphaFlagBitsKHR := 2;
VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR : constant VkCompositeAlphaFlagBitsKHR := 4;
VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR : constant VkCompositeAlphaFlagBitsKHR := 8;
VK_COMPOSITE_ALPHA_FLAG_BITS_MAX_ENUM_KHR : constant VkCompositeAlphaFlagBitsKHR := 2147483647; -- vulkan_core.h:5735
subtype VkCompositeAlphaFlagsKHR is VkFlags; -- vulkan_core.h:5742
subtype VkSurfaceTransformFlagsKHR is VkFlags; -- vulkan_core.h:5743
type VkSurfaceCapabilitiesKHR is record
minImageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5745
maxImageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5746
currentExtent : aliased VkExtent2D; -- vulkan_core.h:5747
minImageExtent : aliased VkExtent2D; -- vulkan_core.h:5748
maxImageExtent : aliased VkExtent2D; -- vulkan_core.h:5749
maxImageArrayLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:5750
supportedTransforms : aliased VkSurfaceTransformFlagsKHR; -- vulkan_core.h:5751
currentTransform : aliased VkSurfaceTransformFlagBitsKHR; -- vulkan_core.h:5752
supportedCompositeAlpha : aliased VkCompositeAlphaFlagsKHR; -- vulkan_core.h:5753
supportedUsageFlags : aliased VkImageUsageFlags; -- vulkan_core.h:5754
end record;
pragma Convention (C_Pass_By_Copy, VkSurfaceCapabilitiesKHR); -- vulkan_core.h:5744
type VkSurfaceFormatKHR is record
format : aliased VkFormat; -- vulkan_core.h:5758
colorSpace : aliased VkColorSpaceKHR; -- vulkan_core.h:5759
end record;
pragma Convention (C_Pass_By_Copy, VkSurfaceFormatKHR); -- vulkan_core.h:5757
type PFN_vkDestroySurfaceKHR is access procedure
(arg1 : VkInstance;
arg2 : VkSurfaceKHR;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroySurfaceKHR); -- vulkan_core.h:5762
type PFN_vkGetPhysicalDeviceSurfaceSupportKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : stdint_h.uint32_t;
arg3 : VkSurfaceKHR;
arg4 : access VkBool32) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSurfaceSupportKHR); -- vulkan_core.h:5763
type PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkSurfaceKHR;
arg3 : access VkSurfaceCapabilitiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR); -- vulkan_core.h:5764
type PFN_vkGetPhysicalDeviceSurfaceFormatsKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkSurfaceKHR;
arg3 : access stdint_h.uint32_t;
arg4 : access VkSurfaceFormatKHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSurfaceFormatsKHR); -- vulkan_core.h:5765
type PFN_vkGetPhysicalDeviceSurfacePresentModesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkSurfaceKHR;
arg3 : access stdint_h.uint32_t;
arg4 : access VkPresentModeKHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSurfacePresentModesKHR); -- vulkan_core.h:5766
procedure vkDestroySurfaceKHR
(instance : VkInstance;
surface : VkSurfaceKHR;
pAllocator : System.Address); -- vulkan_core.h:5769
pragma Import (C, vkDestroySurfaceKHR, "vkDestroySurfaceKHR");
function vkGetPhysicalDeviceSurfaceSupportKHR
(physicalDevice : VkPhysicalDevice;
queueFamilyIndex : stdint_h.uint32_t;
surface : VkSurfaceKHR;
pSupported : access VkBool32) return VkResult; -- vulkan_core.h:5774
pragma Import (C, vkGetPhysicalDeviceSurfaceSupportKHR, "vkGetPhysicalDeviceSurfaceSupportKHR");
function vkGetPhysicalDeviceSurfaceCapabilitiesKHR
(physicalDevice : VkPhysicalDevice;
surface : VkSurfaceKHR;
pSurfaceCapabilities : access VkSurfaceCapabilitiesKHR) return VkResult; -- vulkan_core.h:5780
pragma Import (C, vkGetPhysicalDeviceSurfaceCapabilitiesKHR, "vkGetPhysicalDeviceSurfaceCapabilitiesKHR");
function vkGetPhysicalDeviceSurfaceFormatsKHR
(physicalDevice : VkPhysicalDevice;
surface : VkSurfaceKHR;
pSurfaceFormatCount : access stdint_h.uint32_t;
pSurfaceFormats : access VkSurfaceFormatKHR) return VkResult; -- vulkan_core.h:5785
pragma Import (C, vkGetPhysicalDeviceSurfaceFormatsKHR, "vkGetPhysicalDeviceSurfaceFormatsKHR");
function vkGetPhysicalDeviceSurfacePresentModesKHR
(physicalDevice : VkPhysicalDevice;
surface : VkSurfaceKHR;
pPresentModeCount : access stdint_h.uint32_t;
pPresentModes : access VkPresentModeKHR) return VkResult; -- vulkan_core.h:5791
pragma Import (C, vkGetPhysicalDeviceSurfacePresentModesKHR, "vkGetPhysicalDeviceSurfacePresentModesKHR");
-- skipped empty struct VkSwapchainKHR_T
type VkSwapchainKHR is new System.Address; -- vulkan_core.h:5800
subtype VkSwapchainCreateFlagBitsKHR is unsigned;
VK_SWAPCHAIN_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR : constant VkSwapchainCreateFlagBitsKHR := 1;
VK_SWAPCHAIN_CREATE_PROTECTED_BIT_KHR : constant VkSwapchainCreateFlagBitsKHR := 2;
VK_SWAPCHAIN_CREATE_MUTABLE_FORMAT_BIT_KHR : constant VkSwapchainCreateFlagBitsKHR := 4;
VK_SWAPCHAIN_CREATE_FLAG_BITS_MAX_ENUM_KHR : constant VkSwapchainCreateFlagBitsKHR := 2147483647; -- vulkan_core.h:5804
subtype VkSwapchainCreateFlagsKHR is VkFlags; -- vulkan_core.h:5810
subtype VkDeviceGroupPresentModeFlagBitsKHR is unsigned;
VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR : constant VkDeviceGroupPresentModeFlagBitsKHR := 1;
VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR : constant VkDeviceGroupPresentModeFlagBitsKHR := 2;
VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR : constant VkDeviceGroupPresentModeFlagBitsKHR := 4;
VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR : constant VkDeviceGroupPresentModeFlagBitsKHR := 8;
VK_DEVICE_GROUP_PRESENT_MODE_FLAG_BITS_MAX_ENUM_KHR : constant VkDeviceGroupPresentModeFlagBitsKHR := 2147483647; -- vulkan_core.h:5812
subtype VkDeviceGroupPresentModeFlagsKHR is VkFlags; -- vulkan_core.h:5819
type VkSwapchainCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5821
pNext : System.Address; -- vulkan_core.h:5822
flags : aliased VkSwapchainCreateFlagsKHR; -- vulkan_core.h:5823
surface : VkSurfaceKHR; -- vulkan_core.h:5824
minImageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5825
imageFormat : aliased VkFormat; -- vulkan_core.h:5826
imageColorSpace : aliased VkColorSpaceKHR; -- vulkan_core.h:5827
imageExtent : aliased VkExtent2D; -- vulkan_core.h:5828
imageArrayLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:5829
imageUsage : aliased VkImageUsageFlags; -- vulkan_core.h:5830
imageSharingMode : aliased VkSharingMode; -- vulkan_core.h:5831
queueFamilyIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5832
pQueueFamilyIndices : access stdint_h.uint32_t; -- vulkan_core.h:5833
preTransform : aliased VkSurfaceTransformFlagBitsKHR; -- vulkan_core.h:5834
compositeAlpha : aliased VkCompositeAlphaFlagBitsKHR; -- vulkan_core.h:5835
presentMode : aliased VkPresentModeKHR; -- vulkan_core.h:5836
clipped : aliased VkBool32; -- vulkan_core.h:5837
oldSwapchain : VkSwapchainKHR; -- vulkan_core.h:5838
end record;
pragma Convention (C_Pass_By_Copy, VkSwapchainCreateInfoKHR); -- vulkan_core.h:5820
type VkPresentInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5842
pNext : System.Address; -- vulkan_core.h:5843
waitSemaphoreCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5844
pWaitSemaphores : System.Address; -- vulkan_core.h:5845
swapchainCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5846
pSwapchains : System.Address; -- vulkan_core.h:5847
pImageIndices : access stdint_h.uint32_t; -- vulkan_core.h:5848
pResults : access VkResult; -- vulkan_core.h:5849
end record;
pragma Convention (C_Pass_By_Copy, VkPresentInfoKHR); -- vulkan_core.h:5841
type VkImageSwapchainCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5853
pNext : System.Address; -- vulkan_core.h:5854
swapchain : VkSwapchainKHR; -- vulkan_core.h:5855
end record;
pragma Convention (C_Pass_By_Copy, VkImageSwapchainCreateInfoKHR); -- vulkan_core.h:5852
type VkBindImageMemorySwapchainInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5859
pNext : System.Address; -- vulkan_core.h:5860
swapchain : VkSwapchainKHR; -- vulkan_core.h:5861
imageIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:5862
end record;
pragma Convention (C_Pass_By_Copy, VkBindImageMemorySwapchainInfoKHR); -- vulkan_core.h:5858
type VkAcquireNextImageInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5866
pNext : System.Address; -- vulkan_core.h:5867
swapchain : VkSwapchainKHR; -- vulkan_core.h:5868
timeout : aliased stdint_h.uint64_t; -- vulkan_core.h:5869
semaphore : VkSemaphore; -- vulkan_core.h:5870
fence : VkFence; -- vulkan_core.h:5871
deviceMask : aliased stdint_h.uint32_t; -- vulkan_core.h:5872
end record;
pragma Convention (C_Pass_By_Copy, VkAcquireNextImageInfoKHR); -- vulkan_core.h:5865
type VkDeviceGroupPresentCapabilitiesKHR_presentMask_array is array (0 .. 31) of aliased stdint_h.uint32_t;
type VkDeviceGroupPresentCapabilitiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5876
pNext : System.Address; -- vulkan_core.h:5877
presentMask : aliased VkDeviceGroupPresentCapabilitiesKHR_presentMask_array; -- vulkan_core.h:5878
modes : aliased VkDeviceGroupPresentModeFlagsKHR; -- vulkan_core.h:5879
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupPresentCapabilitiesKHR); -- vulkan_core.h:5875
type VkDeviceGroupPresentInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5883
pNext : System.Address; -- vulkan_core.h:5884
swapchainCount : aliased stdint_h.uint32_t; -- vulkan_core.h:5885
pDeviceMasks : access stdint_h.uint32_t; -- vulkan_core.h:5886
mode : aliased VkDeviceGroupPresentModeFlagBitsKHR; -- vulkan_core.h:5887
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupPresentInfoKHR); -- vulkan_core.h:5882
type VkDeviceGroupSwapchainCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5891
pNext : System.Address; -- vulkan_core.h:5892
modes : aliased VkDeviceGroupPresentModeFlagsKHR; -- vulkan_core.h:5893
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceGroupSwapchainCreateInfoKHR); -- vulkan_core.h:5890
type PFN_vkCreateSwapchainKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateSwapchainKHR); -- vulkan_core.h:5896
type PFN_vkDestroySwapchainKHR is access procedure
(arg1 : VkDevice;
arg2 : VkSwapchainKHR;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroySwapchainKHR); -- vulkan_core.h:5897
type PFN_vkGetSwapchainImagesKHR is access function
(arg1 : VkDevice;
arg2 : VkSwapchainKHR;
arg3 : access stdint_h.uint32_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetSwapchainImagesKHR); -- vulkan_core.h:5898
type PFN_vkAcquireNextImageKHR is access function
(arg1 : VkDevice;
arg2 : VkSwapchainKHR;
arg3 : stdint_h.uint64_t;
arg4 : VkSemaphore;
arg5 : VkFence;
arg6 : access stdint_h.uint32_t) return VkResult;
pragma Convention (C, PFN_vkAcquireNextImageKHR); -- vulkan_core.h:5899
type PFN_vkQueuePresentKHR is access function (arg1 : VkQueue; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkQueuePresentKHR); -- vulkan_core.h:5900
type PFN_vkGetDeviceGroupPresentCapabilitiesKHR is access function (arg1 : VkDevice; arg2 : access VkDeviceGroupPresentCapabilitiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetDeviceGroupPresentCapabilitiesKHR); -- vulkan_core.h:5901
type PFN_vkGetDeviceGroupSurfacePresentModesKHR is access function
(arg1 : VkDevice;
arg2 : VkSurfaceKHR;
arg3 : access VkDeviceGroupPresentModeFlagsKHR) return VkResult;
pragma Convention (C, PFN_vkGetDeviceGroupSurfacePresentModesKHR); -- vulkan_core.h:5902
type PFN_vkGetPhysicalDevicePresentRectanglesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkSurfaceKHR;
arg3 : access stdint_h.uint32_t;
arg4 : access VkRect2D) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDevicePresentRectanglesKHR); -- vulkan_core.h:5903
type PFN_vkAcquireNextImage2KHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t) return VkResult;
pragma Convention (C, PFN_vkAcquireNextImage2KHR); -- vulkan_core.h:5904
function vkCreateSwapchainKHR
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pSwapchain : System.Address) return VkResult; -- vulkan_core.h:5907
pragma Import (C, vkCreateSwapchainKHR, "vkCreateSwapchainKHR");
procedure vkDestroySwapchainKHR
(device : VkDevice;
swapchain : VkSwapchainKHR;
pAllocator : System.Address); -- vulkan_core.h:5913
pragma Import (C, vkDestroySwapchainKHR, "vkDestroySwapchainKHR");
function vkGetSwapchainImagesKHR
(device : VkDevice;
swapchain : VkSwapchainKHR;
pSwapchainImageCount : access stdint_h.uint32_t;
pSwapchainImages : System.Address) return VkResult; -- vulkan_core.h:5918
pragma Import (C, vkGetSwapchainImagesKHR, "vkGetSwapchainImagesKHR");
function vkAcquireNextImageKHR
(device : VkDevice;
swapchain : VkSwapchainKHR;
timeout : stdint_h.uint64_t;
semaphore : VkSemaphore;
fence : VkFence;
pImageIndex : access stdint_h.uint32_t) return VkResult; -- vulkan_core.h:5924
pragma Import (C, vkAcquireNextImageKHR, "vkAcquireNextImageKHR");
function vkQueuePresentKHR (queue : VkQueue; pPresentInfo : System.Address) return VkResult; -- vulkan_core.h:5932
pragma Import (C, vkQueuePresentKHR, "vkQueuePresentKHR");
function vkGetDeviceGroupPresentCapabilitiesKHR (device : VkDevice; pDeviceGroupPresentCapabilities : access VkDeviceGroupPresentCapabilitiesKHR) return VkResult; -- vulkan_core.h:5936
pragma Import (C, vkGetDeviceGroupPresentCapabilitiesKHR, "vkGetDeviceGroupPresentCapabilitiesKHR");
function vkGetDeviceGroupSurfacePresentModesKHR
(device : VkDevice;
surface : VkSurfaceKHR;
pModes : access VkDeviceGroupPresentModeFlagsKHR) return VkResult; -- vulkan_core.h:5940
pragma Import (C, vkGetDeviceGroupSurfacePresentModesKHR, "vkGetDeviceGroupSurfacePresentModesKHR");
function vkGetPhysicalDevicePresentRectanglesKHR
(physicalDevice : VkPhysicalDevice;
surface : VkSurfaceKHR;
pRectCount : access stdint_h.uint32_t;
pRects : access VkRect2D) return VkResult; -- vulkan_core.h:5945
pragma Import (C, vkGetPhysicalDevicePresentRectanglesKHR, "vkGetPhysicalDevicePresentRectanglesKHR");
function vkAcquireNextImage2KHR
(device : VkDevice;
pAcquireInfo : System.Address;
pImageIndex : access stdint_h.uint32_t) return VkResult; -- vulkan_core.h:5951
pragma Import (C, vkAcquireNextImage2KHR, "vkAcquireNextImage2KHR");
type VkDisplayKHR is new System.Address; -- vulkan_core.h:5959
-- skipped empty struct VkDisplayKHR_T
-- skipped empty struct VkDisplayModeKHR_T
type VkDisplayModeKHR is new System.Address; -- vulkan_core.h:5960
subtype VkDisplayModeCreateFlagsKHR is VkFlags; -- vulkan_core.h:5963
subtype VkDisplayPlaneAlphaFlagBitsKHR is unsigned;
VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR : constant VkDisplayPlaneAlphaFlagBitsKHR := 1;
VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR : constant VkDisplayPlaneAlphaFlagBitsKHR := 2;
VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR : constant VkDisplayPlaneAlphaFlagBitsKHR := 4;
VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR : constant VkDisplayPlaneAlphaFlagBitsKHR := 8;
VK_DISPLAY_PLANE_ALPHA_FLAG_BITS_MAX_ENUM_KHR : constant VkDisplayPlaneAlphaFlagBitsKHR := 2147483647; -- vulkan_core.h:5965
subtype VkDisplayPlaneAlphaFlagsKHR is VkFlags; -- vulkan_core.h:5972
subtype VkDisplaySurfaceCreateFlagsKHR is VkFlags; -- vulkan_core.h:5973
type VkDisplayModeParametersKHR is record
visibleRegion : aliased VkExtent2D; -- vulkan_core.h:5975
refreshRate : aliased stdint_h.uint32_t; -- vulkan_core.h:5976
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayModeParametersKHR); -- vulkan_core.h:5974
type VkDisplayModeCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:5980
pNext : System.Address; -- vulkan_core.h:5981
flags : aliased VkDisplayModeCreateFlagsKHR; -- vulkan_core.h:5982
parameters : aliased VkDisplayModeParametersKHR; -- vulkan_core.h:5983
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayModeCreateInfoKHR); -- vulkan_core.h:5979
type VkDisplayModePropertiesKHR is record
displayMode : VkDisplayModeKHR; -- vulkan_core.h:5987
parameters : aliased VkDisplayModeParametersKHR; -- vulkan_core.h:5988
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayModePropertiesKHR); -- vulkan_core.h:5986
type VkDisplayPlaneCapabilitiesKHR is record
supportedAlpha : aliased VkDisplayPlaneAlphaFlagsKHR; -- vulkan_core.h:5992
minSrcPosition : aliased VkOffset2D; -- vulkan_core.h:5993
maxSrcPosition : aliased VkOffset2D; -- vulkan_core.h:5994
minSrcExtent : aliased VkExtent2D; -- vulkan_core.h:5995
maxSrcExtent : aliased VkExtent2D; -- vulkan_core.h:5996
minDstPosition : aliased VkOffset2D; -- vulkan_core.h:5997
maxDstPosition : aliased VkOffset2D; -- vulkan_core.h:5998
minDstExtent : aliased VkExtent2D; -- vulkan_core.h:5999
maxDstExtent : aliased VkExtent2D; -- vulkan_core.h:6000
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPlaneCapabilitiesKHR); -- vulkan_core.h:5991
type VkDisplayPlanePropertiesKHR is record
currentDisplay : VkDisplayKHR; -- vulkan_core.h:6004
currentStackIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:6005
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPlanePropertiesKHR); -- vulkan_core.h:6003
type VkDisplayPropertiesKHR is record
display : VkDisplayKHR; -- vulkan_core.h:6009
displayName : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:6010
physicalDimensions : aliased VkExtent2D; -- vulkan_core.h:6011
physicalResolution : aliased VkExtent2D; -- vulkan_core.h:6012
supportedTransforms : aliased VkSurfaceTransformFlagsKHR; -- vulkan_core.h:6013
planeReorderPossible : aliased VkBool32; -- vulkan_core.h:6014
persistentContent : aliased VkBool32; -- vulkan_core.h:6015
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPropertiesKHR); -- vulkan_core.h:6008
type VkDisplaySurfaceCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6019
pNext : System.Address; -- vulkan_core.h:6020
flags : aliased VkDisplaySurfaceCreateFlagsKHR; -- vulkan_core.h:6021
displayMode : VkDisplayModeKHR; -- vulkan_core.h:6022
planeIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:6023
planeStackIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:6024
transform : aliased VkSurfaceTransformFlagBitsKHR; -- vulkan_core.h:6025
globalAlpha : aliased float; -- vulkan_core.h:6026
alphaMode : aliased VkDisplayPlaneAlphaFlagBitsKHR; -- vulkan_core.h:6027
imageExtent : aliased VkExtent2D; -- vulkan_core.h:6028
end record;
pragma Convention (C_Pass_By_Copy, VkDisplaySurfaceCreateInfoKHR); -- vulkan_core.h:6018
type PFN_vkGetPhysicalDeviceDisplayPropertiesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkDisplayPropertiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceDisplayPropertiesKHR); -- vulkan_core.h:6031
type PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkDisplayPlanePropertiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR); -- vulkan_core.h:6032
type PFN_vkGetDisplayPlaneSupportedDisplaysKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : stdint_h.uint32_t;
arg3 : access stdint_h.uint32_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetDisplayPlaneSupportedDisplaysKHR); -- vulkan_core.h:6033
type PFN_vkGetDisplayModePropertiesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkDisplayKHR;
arg3 : access stdint_h.uint32_t;
arg4 : access VkDisplayModePropertiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetDisplayModePropertiesKHR); -- vulkan_core.h:6034
type PFN_vkCreateDisplayModeKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkDisplayKHR;
arg3 : System.Address;
arg4 : System.Address;
arg5 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDisplayModeKHR); -- vulkan_core.h:6035
type PFN_vkGetDisplayPlaneCapabilitiesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkDisplayModeKHR;
arg3 : stdint_h.uint32_t;
arg4 : access VkDisplayPlaneCapabilitiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetDisplayPlaneCapabilitiesKHR); -- vulkan_core.h:6036
type PFN_vkCreateDisplayPlaneSurfaceKHR is access function
(arg1 : VkInstance;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDisplayPlaneSurfaceKHR); -- vulkan_core.h:6037
function vkGetPhysicalDeviceDisplayPropertiesKHR
(physicalDevice : VkPhysicalDevice;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkDisplayPropertiesKHR) return VkResult; -- vulkan_core.h:6040
pragma Import (C, vkGetPhysicalDeviceDisplayPropertiesKHR, "vkGetPhysicalDeviceDisplayPropertiesKHR");
function vkGetPhysicalDeviceDisplayPlanePropertiesKHR
(physicalDevice : VkPhysicalDevice;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkDisplayPlanePropertiesKHR) return VkResult; -- vulkan_core.h:6045
pragma Import (C, vkGetPhysicalDeviceDisplayPlanePropertiesKHR, "vkGetPhysicalDeviceDisplayPlanePropertiesKHR");
function vkGetDisplayPlaneSupportedDisplaysKHR
(physicalDevice : VkPhysicalDevice;
planeIndex : stdint_h.uint32_t;
pDisplayCount : access stdint_h.uint32_t;
pDisplays : System.Address) return VkResult; -- vulkan_core.h:6050
pragma Import (C, vkGetDisplayPlaneSupportedDisplaysKHR, "vkGetDisplayPlaneSupportedDisplaysKHR");
function vkGetDisplayModePropertiesKHR
(physicalDevice : VkPhysicalDevice;
display : VkDisplayKHR;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkDisplayModePropertiesKHR) return VkResult; -- vulkan_core.h:6056
pragma Import (C, vkGetDisplayModePropertiesKHR, "vkGetDisplayModePropertiesKHR");
function vkCreateDisplayModeKHR
(physicalDevice : VkPhysicalDevice;
display : VkDisplayKHR;
pCreateInfo : System.Address;
pAllocator : System.Address;
pMode : System.Address) return VkResult; -- vulkan_core.h:6062
pragma Import (C, vkCreateDisplayModeKHR, "vkCreateDisplayModeKHR");
function vkGetDisplayPlaneCapabilitiesKHR
(physicalDevice : VkPhysicalDevice;
mode : VkDisplayModeKHR;
planeIndex : stdint_h.uint32_t;
pCapabilities : access VkDisplayPlaneCapabilitiesKHR) return VkResult; -- vulkan_core.h:6069
pragma Import (C, vkGetDisplayPlaneCapabilitiesKHR, "vkGetDisplayPlaneCapabilitiesKHR");
function vkCreateDisplayPlaneSurfaceKHR
(instance : VkInstance;
pCreateInfo : System.Address;
pAllocator : System.Address;
pSurface : System.Address) return VkResult; -- vulkan_core.h:6075
pragma Import (C, vkCreateDisplayPlaneSurfaceKHR, "vkCreateDisplayPlaneSurfaceKHR");
type VkDisplayPresentInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6087
pNext : System.Address; -- vulkan_core.h:6088
srcRect : aliased VkRect2D; -- vulkan_core.h:6089
dstRect : aliased VkRect2D; -- vulkan_core.h:6090
persistent : aliased VkBool32; -- vulkan_core.h:6091
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPresentInfoKHR); -- vulkan_core.h:6086
type PFN_vkCreateSharedSwapchainsKHR is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : System.Address;
arg5 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateSharedSwapchainsKHR); -- vulkan_core.h:6094
function vkCreateSharedSwapchainsKHR
(device : VkDevice;
swapchainCount : stdint_h.uint32_t;
pCreateInfos : System.Address;
pAllocator : System.Address;
pSwapchains : System.Address) return VkResult; -- vulkan_core.h:6097
pragma Import (C, vkCreateSharedSwapchainsKHR, "vkCreateSharedSwapchainsKHR");
subtype VkRenderPassMultiviewCreateInfoKHR is VkRenderPassMultiviewCreateInfo;
subtype VkPhysicalDeviceMultiviewFeaturesKHR is VkPhysicalDeviceMultiviewFeatures;
subtype VkPhysicalDeviceMultiviewPropertiesKHR is VkPhysicalDeviceMultiviewProperties;
subtype VkPhysicalDeviceFeatures2KHR is VkPhysicalDeviceFeatures2;
subtype VkPhysicalDeviceProperties2KHR is VkPhysicalDeviceProperties2;
subtype VkFormatProperties2KHR is VkFormatProperties2;
subtype VkImageFormatProperties2KHR is VkImageFormatProperties2;
subtype VkPhysicalDeviceImageFormatInfo2KHR is VkPhysicalDeviceImageFormatInfo2;
subtype VkQueueFamilyProperties2KHR is VkQueueFamilyProperties2;
subtype VkPhysicalDeviceMemoryProperties2KHR is VkPhysicalDeviceMemoryProperties2;
subtype VkSparseImageFormatProperties2KHR is VkSparseImageFormatProperties2;
subtype VkPhysicalDeviceSparseImageFormatInfo2KHR is VkPhysicalDeviceSparseImageFormatInfo2;
type PFN_vkGetPhysicalDeviceFeatures2KHR is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceFeatures2);
pragma Convention (C, PFN_vkGetPhysicalDeviceFeatures2KHR); -- vulkan_core.h:6143
type PFN_vkGetPhysicalDeviceProperties2KHR is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceProperties2KHR); -- vulkan_core.h:6144
type PFN_vkGetPhysicalDeviceFormatProperties2KHR is access procedure
(arg1 : VkPhysicalDevice;
arg2 : VkFormat;
arg3 : access VkFormatProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceFormatProperties2KHR); -- vulkan_core.h:6145
type PFN_vkGetPhysicalDeviceImageFormatProperties2KHR is access function
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkImageFormatProperties2) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceImageFormatProperties2KHR); -- vulkan_core.h:6146
type PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR is access procedure
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkQueueFamilyProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR); -- vulkan_core.h:6147
type PFN_vkGetPhysicalDeviceMemoryProperties2KHR is access procedure (arg1 : VkPhysicalDevice; arg2 : access VkPhysicalDeviceMemoryProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceMemoryProperties2KHR); -- vulkan_core.h:6148
type PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkSparseImageFormatProperties2);
pragma Convention (C, PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR); -- vulkan_core.h:6149
procedure vkGetPhysicalDeviceFeatures2KHR (physicalDevice : VkPhysicalDevice; pFeatures : access VkPhysicalDeviceFeatures2); -- vulkan_core.h:6152
pragma Import (C, vkGetPhysicalDeviceFeatures2KHR, "vkGetPhysicalDeviceFeatures2KHR");
procedure vkGetPhysicalDeviceProperties2KHR (physicalDevice : VkPhysicalDevice; pProperties : access VkPhysicalDeviceProperties2); -- vulkan_core.h:6156
pragma Import (C, vkGetPhysicalDeviceProperties2KHR, "vkGetPhysicalDeviceProperties2KHR");
procedure vkGetPhysicalDeviceFormatProperties2KHR
(physicalDevice : VkPhysicalDevice;
format : VkFormat;
pFormatProperties : access VkFormatProperties2); -- vulkan_core.h:6160
pragma Import (C, vkGetPhysicalDeviceFormatProperties2KHR, "vkGetPhysicalDeviceFormatProperties2KHR");
function vkGetPhysicalDeviceImageFormatProperties2KHR
(physicalDevice : VkPhysicalDevice;
pImageFormatInfo : System.Address;
pImageFormatProperties : access VkImageFormatProperties2) return VkResult; -- vulkan_core.h:6165
pragma Import (C, vkGetPhysicalDeviceImageFormatProperties2KHR, "vkGetPhysicalDeviceImageFormatProperties2KHR");
procedure vkGetPhysicalDeviceQueueFamilyProperties2KHR
(physicalDevice : VkPhysicalDevice;
pQueueFamilyPropertyCount : access stdint_h.uint32_t;
pQueueFamilyProperties : access VkQueueFamilyProperties2); -- vulkan_core.h:6170
pragma Import (C, vkGetPhysicalDeviceQueueFamilyProperties2KHR, "vkGetPhysicalDeviceQueueFamilyProperties2KHR");
procedure vkGetPhysicalDeviceMemoryProperties2KHR (physicalDevice : VkPhysicalDevice; pMemoryProperties : access VkPhysicalDeviceMemoryProperties2); -- vulkan_core.h:6175
pragma Import (C, vkGetPhysicalDeviceMemoryProperties2KHR, "vkGetPhysicalDeviceMemoryProperties2KHR");
procedure vkGetPhysicalDeviceSparseImageFormatProperties2KHR
(physicalDevice : VkPhysicalDevice;
pFormatInfo : System.Address;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkSparseImageFormatProperties2); -- vulkan_core.h:6179
pragma Import (C, vkGetPhysicalDeviceSparseImageFormatProperties2KHR, "vkGetPhysicalDeviceSparseImageFormatProperties2KHR");
subtype VkPeerMemoryFeatureFlagsKHR is VkPeerMemoryFeatureFlags; -- vulkan_core.h:6190
subtype VkPeerMemoryFeatureFlagBitsKHR is VkPeerMemoryFeatureFlagBits;
subtype VkMemoryAllocateFlagsKHR is VkMemoryAllocateFlags; -- vulkan_core.h:6194
subtype VkMemoryAllocateFlagBitsKHR is VkMemoryAllocateFlagBits;
subtype VkMemoryAllocateFlagsInfoKHR is VkMemoryAllocateFlagsInfo;
subtype VkDeviceGroupRenderPassBeginInfoKHR is VkDeviceGroupRenderPassBeginInfo;
subtype VkDeviceGroupCommandBufferBeginInfoKHR is VkDeviceGroupCommandBufferBeginInfo;
subtype VkDeviceGroupSubmitInfoKHR is VkDeviceGroupSubmitInfo;
subtype VkDeviceGroupBindSparseInfoKHR is VkDeviceGroupBindSparseInfo;
subtype VkBindBufferMemoryDeviceGroupInfoKHR is VkBindBufferMemoryDeviceGroupInfo;
subtype VkBindImageMemoryDeviceGroupInfoKHR is VkBindImageMemoryDeviceGroupInfo;
type PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR is access procedure
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : access VkPeerMemoryFeatureFlags);
pragma Convention (C, PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR); -- vulkan_core.h:6212
type PFN_vkCmdSetDeviceMaskKHR is access procedure (arg1 : VkCommandBuffer; arg2 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdSetDeviceMaskKHR); -- vulkan_core.h:6213
type PFN_vkCmdDispatchBaseKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDispatchBaseKHR); -- vulkan_core.h:6214
procedure vkGetDeviceGroupPeerMemoryFeaturesKHR
(device : VkDevice;
heapIndex : stdint_h.uint32_t;
localDeviceIndex : stdint_h.uint32_t;
remoteDeviceIndex : stdint_h.uint32_t;
pPeerMemoryFeatures : access VkPeerMemoryFeatureFlags); -- vulkan_core.h:6217
pragma Import (C, vkGetDeviceGroupPeerMemoryFeaturesKHR, "vkGetDeviceGroupPeerMemoryFeaturesKHR");
procedure vkCmdSetDeviceMaskKHR (commandBuffer : VkCommandBuffer; deviceMask : stdint_h.uint32_t); -- vulkan_core.h:6224
pragma Import (C, vkCmdSetDeviceMaskKHR, "vkCmdSetDeviceMaskKHR");
procedure vkCmdDispatchBaseKHR
(commandBuffer : VkCommandBuffer;
baseGroupX : stdint_h.uint32_t;
baseGroupY : stdint_h.uint32_t;
baseGroupZ : stdint_h.uint32_t;
groupCountX : stdint_h.uint32_t;
groupCountY : stdint_h.uint32_t;
groupCountZ : stdint_h.uint32_t); -- vulkan_core.h:6228
pragma Import (C, vkCmdDispatchBaseKHR, "vkCmdDispatchBaseKHR");
subtype VkCommandPoolTrimFlagsKHR is VkCommandPoolTrimFlags; -- vulkan_core.h:6247
type PFN_vkTrimCommandPoolKHR is access procedure
(arg1 : VkDevice;
arg2 : VkCommandPool;
arg3 : VkCommandPoolTrimFlags);
pragma Convention (C, PFN_vkTrimCommandPoolKHR); -- vulkan_core.h:6249
procedure vkTrimCommandPoolKHR
(device : VkDevice;
commandPool : VkCommandPool;
flags : VkCommandPoolTrimFlags); -- vulkan_core.h:6252
pragma Import (C, vkTrimCommandPoolKHR, "vkTrimCommandPoolKHR");
subtype VkPhysicalDeviceGroupPropertiesKHR is VkPhysicalDeviceGroupProperties;
subtype VkDeviceGroupDeviceCreateInfoKHR is VkDeviceGroupDeviceCreateInfo;
type PFN_vkEnumeratePhysicalDeviceGroupsKHR is access function
(arg1 : VkInstance;
arg2 : access stdint_h.uint32_t;
arg3 : access VkPhysicalDeviceGroupProperties) return VkResult;
pragma Convention (C, PFN_vkEnumeratePhysicalDeviceGroupsKHR); -- vulkan_core.h:6267
function vkEnumeratePhysicalDeviceGroupsKHR
(instance : VkInstance;
pPhysicalDeviceGroupCount : access stdint_h.uint32_t;
pPhysicalDeviceGroupProperties : access VkPhysicalDeviceGroupProperties) return VkResult; -- vulkan_core.h:6270
pragma Import (C, vkEnumeratePhysicalDeviceGroupsKHR, "vkEnumeratePhysicalDeviceGroupsKHR");
subtype VkExternalMemoryHandleTypeFlagsKHR is VkExternalMemoryHandleTypeFlags; -- vulkan_core.h:6281
subtype VkExternalMemoryHandleTypeFlagBitsKHR is VkExternalMemoryHandleTypeFlagBits;
subtype VkExternalMemoryFeatureFlagsKHR is VkExternalMemoryFeatureFlags; -- vulkan_core.h:6285
subtype VkExternalMemoryFeatureFlagBitsKHR is VkExternalMemoryFeatureFlagBits;
subtype VkExternalMemoryPropertiesKHR is VkExternalMemoryProperties;
subtype VkPhysicalDeviceExternalImageFormatInfoKHR is VkPhysicalDeviceExternalImageFormatInfo;
subtype VkExternalImageFormatPropertiesKHR is VkExternalImageFormatProperties;
subtype VkPhysicalDeviceExternalBufferInfoKHR is VkPhysicalDeviceExternalBufferInfo;
subtype VkExternalBufferPropertiesKHR is VkExternalBufferProperties;
subtype VkPhysicalDeviceIDPropertiesKHR is VkPhysicalDeviceIDProperties;
type PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkExternalBufferProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR); -- vulkan_core.h:6301
procedure vkGetPhysicalDeviceExternalBufferPropertiesKHR
(physicalDevice : VkPhysicalDevice;
pExternalBufferInfo : System.Address;
pExternalBufferProperties : access VkExternalBufferProperties); -- vulkan_core.h:6304
pragma Import (C, vkGetPhysicalDeviceExternalBufferPropertiesKHR, "vkGetPhysicalDeviceExternalBufferPropertiesKHR");
subtype VkExternalMemoryImageCreateInfoKHR is VkExternalMemoryImageCreateInfo;
subtype VkExternalMemoryBufferCreateInfoKHR is VkExternalMemoryBufferCreateInfo;
subtype VkExportMemoryAllocateInfoKHR is VkExportMemoryAllocateInfo;
type VkImportMemoryFdInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6327
pNext : System.Address; -- vulkan_core.h:6328
handleType : aliased VkExternalMemoryHandleTypeFlagBits; -- vulkan_core.h:6329
fd : aliased int; -- vulkan_core.h:6330
end record;
pragma Convention (C_Pass_By_Copy, VkImportMemoryFdInfoKHR); -- vulkan_core.h:6326
type VkMemoryFdPropertiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6334
pNext : System.Address; -- vulkan_core.h:6335
memoryTypeBits : aliased stdint_h.uint32_t; -- vulkan_core.h:6336
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryFdPropertiesKHR); -- vulkan_core.h:6333
type VkMemoryGetFdInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6340
pNext : System.Address; -- vulkan_core.h:6341
memory : VkDeviceMemory; -- vulkan_core.h:6342
handleType : aliased VkExternalMemoryHandleTypeFlagBits; -- vulkan_core.h:6343
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryGetFdInfoKHR); -- vulkan_core.h:6339
type PFN_vkGetMemoryFdKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access int) return VkResult;
pragma Convention (C, PFN_vkGetMemoryFdKHR); -- vulkan_core.h:6346
type PFN_vkGetMemoryFdPropertiesKHR is access function
(arg1 : VkDevice;
arg2 : VkExternalMemoryHandleTypeFlagBits;
arg3 : int;
arg4 : access VkMemoryFdPropertiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetMemoryFdPropertiesKHR); -- vulkan_core.h:6347
function vkGetMemoryFdKHR
(device : VkDevice;
pGetFdInfo : System.Address;
pFd : access int) return VkResult; -- vulkan_core.h:6350
pragma Import (C, vkGetMemoryFdKHR, "vkGetMemoryFdKHR");
function vkGetMemoryFdPropertiesKHR
(device : VkDevice;
handleType : VkExternalMemoryHandleTypeFlagBits;
fd : int;
pMemoryFdProperties : access VkMemoryFdPropertiesKHR) return VkResult; -- vulkan_core.h:6355
pragma Import (C, vkGetMemoryFdPropertiesKHR, "vkGetMemoryFdPropertiesKHR");
subtype VkExternalSemaphoreHandleTypeFlagsKHR is VkExternalSemaphoreHandleTypeFlags; -- vulkan_core.h:6366
subtype VkExternalSemaphoreHandleTypeFlagBitsKHR is VkExternalSemaphoreHandleTypeFlagBits;
subtype VkExternalSemaphoreFeatureFlagsKHR is VkExternalSemaphoreFeatureFlags; -- vulkan_core.h:6370
subtype VkExternalSemaphoreFeatureFlagBitsKHR is VkExternalSemaphoreFeatureFlagBits;
subtype VkPhysicalDeviceExternalSemaphoreInfoKHR is VkPhysicalDeviceExternalSemaphoreInfo;
subtype VkExternalSemaphorePropertiesKHR is VkExternalSemaphoreProperties;
type PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkExternalSemaphoreProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR); -- vulkan_core.h:6378
procedure vkGetPhysicalDeviceExternalSemaphorePropertiesKHR
(physicalDevice : VkPhysicalDevice;
pExternalSemaphoreInfo : System.Address;
pExternalSemaphoreProperties : access VkExternalSemaphoreProperties); -- vulkan_core.h:6381
pragma Import (C, vkGetPhysicalDeviceExternalSemaphorePropertiesKHR, "vkGetPhysicalDeviceExternalSemaphorePropertiesKHR");
subtype VkSemaphoreImportFlagsKHR is VkSemaphoreImportFlags; -- vulkan_core.h:6391
subtype VkSemaphoreImportFlagBitsKHR is VkSemaphoreImportFlagBits;
subtype VkExportSemaphoreCreateInfoKHR is VkExportSemaphoreCreateInfo;
type VkImportSemaphoreFdInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6403
pNext : System.Address; -- vulkan_core.h:6404
semaphore : VkSemaphore; -- vulkan_core.h:6405
flags : aliased VkSemaphoreImportFlags; -- vulkan_core.h:6406
handleType : aliased VkExternalSemaphoreHandleTypeFlagBits; -- vulkan_core.h:6407
fd : aliased int; -- vulkan_core.h:6408
end record;
pragma Convention (C_Pass_By_Copy, VkImportSemaphoreFdInfoKHR); -- vulkan_core.h:6402
type VkSemaphoreGetFdInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6412
pNext : System.Address; -- vulkan_core.h:6413
semaphore : VkSemaphore; -- vulkan_core.h:6414
handleType : aliased VkExternalSemaphoreHandleTypeFlagBits; -- vulkan_core.h:6415
end record;
pragma Convention (C_Pass_By_Copy, VkSemaphoreGetFdInfoKHR); -- vulkan_core.h:6411
type PFN_vkImportSemaphoreFdKHR is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkImportSemaphoreFdKHR); -- vulkan_core.h:6418
type PFN_vkGetSemaphoreFdKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access int) return VkResult;
pragma Convention (C, PFN_vkGetSemaphoreFdKHR); -- vulkan_core.h:6419
function vkImportSemaphoreFdKHR (device : VkDevice; pImportSemaphoreFdInfo : System.Address) return VkResult; -- vulkan_core.h:6422
pragma Import (C, vkImportSemaphoreFdKHR, "vkImportSemaphoreFdKHR");
function vkGetSemaphoreFdKHR
(device : VkDevice;
pGetFdInfo : System.Address;
pFd : access int) return VkResult; -- vulkan_core.h:6426
pragma Import (C, vkGetSemaphoreFdKHR, "vkGetSemaphoreFdKHR");
type VkPhysicalDevicePushDescriptorPropertiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6437
pNext : System.Address; -- vulkan_core.h:6438
maxPushDescriptors : aliased stdint_h.uint32_t; -- vulkan_core.h:6439
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePushDescriptorPropertiesKHR); -- vulkan_core.h:6436
type PFN_vkCmdPushDescriptorSetKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineBindPoint;
arg3 : VkPipelineLayout;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t;
arg6 : System.Address);
pragma Convention (C, PFN_vkCmdPushDescriptorSetKHR); -- vulkan_core.h:6442
type PFN_vkCmdPushDescriptorSetWithTemplateKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkDescriptorUpdateTemplate;
arg3 : VkPipelineLayout;
arg4 : stdint_h.uint32_t;
arg5 : System.Address);
pragma Convention (C, PFN_vkCmdPushDescriptorSetWithTemplateKHR); -- vulkan_core.h:6443
procedure vkCmdPushDescriptorSetKHR
(commandBuffer : VkCommandBuffer;
pipelineBindPoint : VkPipelineBindPoint;
layout : VkPipelineLayout;
set : stdint_h.uint32_t;
descriptorWriteCount : stdint_h.uint32_t;
pDescriptorWrites : System.Address); -- vulkan_core.h:6446
pragma Import (C, vkCmdPushDescriptorSetKHR, "vkCmdPushDescriptorSetKHR");
procedure vkCmdPushDescriptorSetWithTemplateKHR
(commandBuffer : VkCommandBuffer;
descriptorUpdateTemplate : VkDescriptorUpdateTemplate;
layout : VkPipelineLayout;
set : stdint_h.uint32_t;
pData : System.Address); -- vulkan_core.h:6454
pragma Import (C, vkCmdPushDescriptorSetWithTemplateKHR, "vkCmdPushDescriptorSetWithTemplateKHR");
subtype VkPhysicalDeviceShaderFloat16Int8FeaturesKHR is VkPhysicalDeviceShaderFloat16Int8Features;
subtype VkPhysicalDeviceFloat16Int8FeaturesKHR is VkPhysicalDeviceShaderFloat16Int8Features;
subtype VkPhysicalDevice16BitStorageFeaturesKHR is VkPhysicalDevice16BitStorageFeatures;
type VkRectLayerKHR is record
offset : aliased VkOffset2D; -- vulkan_core.h:6483
extent : aliased VkExtent2D; -- vulkan_core.h:6484
layer : aliased stdint_h.uint32_t; -- vulkan_core.h:6485
end record;
pragma Convention (C_Pass_By_Copy, VkRectLayerKHR); -- vulkan_core.h:6482
type VkPresentRegionKHR is record
rectangleCount : aliased stdint_h.uint32_t; -- vulkan_core.h:6489
pRectangles : System.Address; -- vulkan_core.h:6490
end record;
pragma Convention (C_Pass_By_Copy, VkPresentRegionKHR); -- vulkan_core.h:6488
type VkPresentRegionsKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6494
pNext : System.Address; -- vulkan_core.h:6495
swapchainCount : aliased stdint_h.uint32_t; -- vulkan_core.h:6496
pRegions : System.Address; -- vulkan_core.h:6497
end record;
pragma Convention (C_Pass_By_Copy, VkPresentRegionsKHR); -- vulkan_core.h:6493
subtype VkDescriptorUpdateTemplateKHR is VkDescriptorUpdateTemplate; -- vulkan_core.h:6503
subtype VkDescriptorUpdateTemplateTypeKHR is VkDescriptorUpdateTemplateType;
subtype VkDescriptorUpdateTemplateCreateFlagsKHR is VkDescriptorUpdateTemplateCreateFlags; -- vulkan_core.h:6509
subtype VkDescriptorUpdateTemplateEntryKHR is VkDescriptorUpdateTemplateEntry;
subtype VkDescriptorUpdateTemplateCreateInfoKHR is VkDescriptorUpdateTemplateCreateInfo;
type PFN_vkCreateDescriptorUpdateTemplateKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDescriptorUpdateTemplateKHR); -- vulkan_core.h:6515
type PFN_vkDestroyDescriptorUpdateTemplateKHR is access procedure
(arg1 : VkDevice;
arg2 : VkDescriptorUpdateTemplate;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyDescriptorUpdateTemplateKHR); -- vulkan_core.h:6516
type PFN_vkUpdateDescriptorSetWithTemplateKHR is access procedure
(arg1 : VkDevice;
arg2 : VkDescriptorSet;
arg3 : VkDescriptorUpdateTemplate;
arg4 : System.Address);
pragma Convention (C, PFN_vkUpdateDescriptorSetWithTemplateKHR); -- vulkan_core.h:6517
function vkCreateDescriptorUpdateTemplateKHR
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pDescriptorUpdateTemplate : System.Address) return VkResult; -- vulkan_core.h:6520
pragma Import (C, vkCreateDescriptorUpdateTemplateKHR, "vkCreateDescriptorUpdateTemplateKHR");
procedure vkDestroyDescriptorUpdateTemplateKHR
(device : VkDevice;
descriptorUpdateTemplate : VkDescriptorUpdateTemplate;
pAllocator : System.Address); -- vulkan_core.h:6526
pragma Import (C, vkDestroyDescriptorUpdateTemplateKHR, "vkDestroyDescriptorUpdateTemplateKHR");
procedure vkUpdateDescriptorSetWithTemplateKHR
(device : VkDevice;
descriptorSet : VkDescriptorSet;
descriptorUpdateTemplate : VkDescriptorUpdateTemplate;
pData : System.Address); -- vulkan_core.h:6531
pragma Import (C, vkUpdateDescriptorSetWithTemplateKHR, "vkUpdateDescriptorSetWithTemplateKHR");
subtype VkPhysicalDeviceImagelessFramebufferFeaturesKHR is VkPhysicalDeviceImagelessFramebufferFeatures;
subtype VkFramebufferAttachmentsCreateInfoKHR is VkFramebufferAttachmentsCreateInfo;
subtype VkFramebufferAttachmentImageInfoKHR is VkFramebufferAttachmentImageInfo;
subtype VkRenderPassAttachmentBeginInfoKHR is VkRenderPassAttachmentBeginInfo;
subtype VkRenderPassCreateInfo2KHR is VkRenderPassCreateInfo2;
subtype VkAttachmentDescription2KHR is VkAttachmentDescription2;
subtype VkAttachmentReference2KHR is VkAttachmentReference2;
subtype VkSubpassDescription2KHR is VkSubpassDescription2;
subtype VkSubpassDependency2KHR is VkSubpassDependency2;
subtype VkSubpassBeginInfoKHR is VkSubpassBeginInfo;
subtype VkSubpassEndInfoKHR is VkSubpassEndInfo;
type PFN_vkCreateRenderPass2KHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateRenderPass2KHR); -- vulkan_core.h:6569
type PFN_vkCmdBeginRenderPass2KHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdBeginRenderPass2KHR); -- vulkan_core.h:6570
type PFN_vkCmdNextSubpass2KHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdNextSubpass2KHR); -- vulkan_core.h:6571
type PFN_vkCmdEndRenderPass2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdEndRenderPass2KHR); -- vulkan_core.h:6572
function vkCreateRenderPass2KHR
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pRenderPass : System.Address) return VkResult; -- vulkan_core.h:6575
pragma Import (C, vkCreateRenderPass2KHR, "vkCreateRenderPass2KHR");
procedure vkCmdBeginRenderPass2KHR
(commandBuffer : VkCommandBuffer;
pRenderPassBegin : System.Address;
pSubpassBeginInfo : System.Address); -- vulkan_core.h:6581
pragma Import (C, vkCmdBeginRenderPass2KHR, "vkCmdBeginRenderPass2KHR");
procedure vkCmdNextSubpass2KHR
(commandBuffer : VkCommandBuffer;
pSubpassBeginInfo : System.Address;
pSubpassEndInfo : System.Address); -- vulkan_core.h:6586
pragma Import (C, vkCmdNextSubpass2KHR, "vkCmdNextSubpass2KHR");
procedure vkCmdEndRenderPass2KHR (commandBuffer : VkCommandBuffer; pSubpassEndInfo : System.Address); -- vulkan_core.h:6591
pragma Import (C, vkCmdEndRenderPass2KHR, "vkCmdEndRenderPass2KHR");
type VkSharedPresentSurfaceCapabilitiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6601
pNext : System.Address; -- vulkan_core.h:6602
sharedPresentSupportedUsageFlags : aliased VkImageUsageFlags; -- vulkan_core.h:6603
end record;
pragma Convention (C_Pass_By_Copy, VkSharedPresentSurfaceCapabilitiesKHR); -- vulkan_core.h:6600
type PFN_vkGetSwapchainStatusKHR is access function (arg1 : VkDevice; arg2 : VkSwapchainKHR) return VkResult;
pragma Convention (C, PFN_vkGetSwapchainStatusKHR); -- vulkan_core.h:6606
function vkGetSwapchainStatusKHR (device : VkDevice; swapchain : VkSwapchainKHR) return VkResult; -- vulkan_core.h:6609
pragma Import (C, vkGetSwapchainStatusKHR, "vkGetSwapchainStatusKHR");
subtype VkExternalFenceHandleTypeFlagsKHR is VkExternalFenceHandleTypeFlags; -- vulkan_core.h:6618
subtype VkExternalFenceHandleTypeFlagBitsKHR is VkExternalFenceHandleTypeFlagBits;
subtype VkExternalFenceFeatureFlagsKHR is VkExternalFenceFeatureFlags; -- vulkan_core.h:6622
subtype VkExternalFenceFeatureFlagBitsKHR is VkExternalFenceFeatureFlagBits;
subtype VkPhysicalDeviceExternalFenceInfoKHR is VkPhysicalDeviceExternalFenceInfo;
subtype VkExternalFencePropertiesKHR is VkExternalFenceProperties;
type PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkExternalFenceProperties);
pragma Convention (C, PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR); -- vulkan_core.h:6630
procedure vkGetPhysicalDeviceExternalFencePropertiesKHR
(physicalDevice : VkPhysicalDevice;
pExternalFenceInfo : System.Address;
pExternalFenceProperties : access VkExternalFenceProperties); -- vulkan_core.h:6633
pragma Import (C, vkGetPhysicalDeviceExternalFencePropertiesKHR, "vkGetPhysicalDeviceExternalFencePropertiesKHR");
subtype VkFenceImportFlagsKHR is VkFenceImportFlags; -- vulkan_core.h:6643
subtype VkFenceImportFlagBitsKHR is VkFenceImportFlagBits;
subtype VkExportFenceCreateInfoKHR is VkExportFenceCreateInfo;
type VkImportFenceFdInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6655
pNext : System.Address; -- vulkan_core.h:6656
fence : VkFence; -- vulkan_core.h:6657
flags : aliased VkFenceImportFlags; -- vulkan_core.h:6658
handleType : aliased VkExternalFenceHandleTypeFlagBits; -- vulkan_core.h:6659
fd : aliased int; -- vulkan_core.h:6660
end record;
pragma Convention (C_Pass_By_Copy, VkImportFenceFdInfoKHR); -- vulkan_core.h:6654
type VkFenceGetFdInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6664
pNext : System.Address; -- vulkan_core.h:6665
fence : VkFence; -- vulkan_core.h:6666
handleType : aliased VkExternalFenceHandleTypeFlagBits; -- vulkan_core.h:6667
end record;
pragma Convention (C_Pass_By_Copy, VkFenceGetFdInfoKHR); -- vulkan_core.h:6663
type PFN_vkImportFenceFdKHR is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkImportFenceFdKHR); -- vulkan_core.h:6670
type PFN_vkGetFenceFdKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access int) return VkResult;
pragma Convention (C, PFN_vkGetFenceFdKHR); -- vulkan_core.h:6671
function vkImportFenceFdKHR (device : VkDevice; pImportFenceFdInfo : System.Address) return VkResult; -- vulkan_core.h:6674
pragma Import (C, vkImportFenceFdKHR, "vkImportFenceFdKHR");
function vkGetFenceFdKHR
(device : VkDevice;
pGetFdInfo : System.Address;
pFd : access int) return VkResult; -- vulkan_core.h:6678
pragma Import (C, vkGetFenceFdKHR, "vkGetFenceFdKHR");
subtype VkPerformanceCounterUnitKHR is unsigned;
VK_PERFORMANCE_COUNTER_UNIT_GENERIC_KHR : constant VkPerformanceCounterUnitKHR := 0;
VK_PERFORMANCE_COUNTER_UNIT_PERCENTAGE_KHR : constant VkPerformanceCounterUnitKHR := 1;
VK_PERFORMANCE_COUNTER_UNIT_NANOSECONDS_KHR : constant VkPerformanceCounterUnitKHR := 2;
VK_PERFORMANCE_COUNTER_UNIT_BYTES_KHR : constant VkPerformanceCounterUnitKHR := 3;
VK_PERFORMANCE_COUNTER_UNIT_BYTES_PER_SECOND_KHR : constant VkPerformanceCounterUnitKHR := 4;
VK_PERFORMANCE_COUNTER_UNIT_KELVIN_KHR : constant VkPerformanceCounterUnitKHR := 5;
VK_PERFORMANCE_COUNTER_UNIT_WATTS_KHR : constant VkPerformanceCounterUnitKHR := 6;
VK_PERFORMANCE_COUNTER_UNIT_VOLTS_KHR : constant VkPerformanceCounterUnitKHR := 7;
VK_PERFORMANCE_COUNTER_UNIT_AMPS_KHR : constant VkPerformanceCounterUnitKHR := 8;
VK_PERFORMANCE_COUNTER_UNIT_HERTZ_KHR : constant VkPerformanceCounterUnitKHR := 9;
VK_PERFORMANCE_COUNTER_UNIT_CYCLES_KHR : constant VkPerformanceCounterUnitKHR := 10;
VK_PERFORMANCE_COUNTER_UNIT_MAX_ENUM_KHR : constant VkPerformanceCounterUnitKHR := 2147483647; -- vulkan_core.h:6689
subtype VkPerformanceCounterScopeKHR is unsigned;
VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_BUFFER_KHR : constant VkPerformanceCounterScopeKHR := 0;
VK_PERFORMANCE_COUNTER_SCOPE_RENDER_PASS_KHR : constant VkPerformanceCounterScopeKHR := 1;
VK_PERFORMANCE_COUNTER_SCOPE_COMMAND_KHR : constant VkPerformanceCounterScopeKHR := 2;
VK_QUERY_SCOPE_COMMAND_BUFFER_KHR : constant VkPerformanceCounterScopeKHR := 0;
VK_QUERY_SCOPE_RENDER_PASS_KHR : constant VkPerformanceCounterScopeKHR := 1;
VK_QUERY_SCOPE_COMMAND_KHR : constant VkPerformanceCounterScopeKHR := 2;
VK_PERFORMANCE_COUNTER_SCOPE_MAX_ENUM_KHR : constant VkPerformanceCounterScopeKHR := 2147483647; -- vulkan_core.h:6704
subtype VkPerformanceCounterStorageKHR is unsigned;
VK_PERFORMANCE_COUNTER_STORAGE_INT32_KHR : constant VkPerformanceCounterStorageKHR := 0;
VK_PERFORMANCE_COUNTER_STORAGE_INT64_KHR : constant VkPerformanceCounterStorageKHR := 1;
VK_PERFORMANCE_COUNTER_STORAGE_UINT32_KHR : constant VkPerformanceCounterStorageKHR := 2;
VK_PERFORMANCE_COUNTER_STORAGE_UINT64_KHR : constant VkPerformanceCounterStorageKHR := 3;
VK_PERFORMANCE_COUNTER_STORAGE_FLOAT32_KHR : constant VkPerformanceCounterStorageKHR := 4;
VK_PERFORMANCE_COUNTER_STORAGE_FLOAT64_KHR : constant VkPerformanceCounterStorageKHR := 5;
VK_PERFORMANCE_COUNTER_STORAGE_MAX_ENUM_KHR : constant VkPerformanceCounterStorageKHR := 2147483647; -- vulkan_core.h:6714
subtype VkPerformanceCounterDescriptionFlagBitsKHR is unsigned;
VK_PERFORMANCE_COUNTER_DESCRIPTION_PERFORMANCE_IMPACTING_BIT_KHR : constant VkPerformanceCounterDescriptionFlagBitsKHR := 1;
VK_PERFORMANCE_COUNTER_DESCRIPTION_CONCURRENTLY_IMPACTED_BIT_KHR : constant VkPerformanceCounterDescriptionFlagBitsKHR := 2;
VK_PERFORMANCE_COUNTER_DESCRIPTION_PERFORMANCE_IMPACTING_KHR : constant VkPerformanceCounterDescriptionFlagBitsKHR := 1;
VK_PERFORMANCE_COUNTER_DESCRIPTION_CONCURRENTLY_IMPACTED_KHR : constant VkPerformanceCounterDescriptionFlagBitsKHR := 2;
VK_PERFORMANCE_COUNTER_DESCRIPTION_FLAG_BITS_MAX_ENUM_KHR : constant VkPerformanceCounterDescriptionFlagBitsKHR := 2147483647; -- vulkan_core.h:6724
subtype VkPerformanceCounterDescriptionFlagsKHR is VkFlags; -- vulkan_core.h:6731
subtype VkAcquireProfilingLockFlagBitsKHR is unsigned;
VK_ACQUIRE_PROFILING_LOCK_FLAG_BITS_MAX_ENUM_KHR : constant VkAcquireProfilingLockFlagBitsKHR := 2147483647; -- vulkan_core.h:6733
subtype VkAcquireProfilingLockFlagsKHR is VkFlags; -- vulkan_core.h:6736
type VkPhysicalDevicePerformanceQueryFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6738
pNext : System.Address; -- vulkan_core.h:6739
performanceCounterQueryPools : aliased VkBool32; -- vulkan_core.h:6740
performanceCounterMultipleQueryPools : aliased VkBool32; -- vulkan_core.h:6741
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePerformanceQueryFeaturesKHR); -- vulkan_core.h:6737
type VkPhysicalDevicePerformanceQueryPropertiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6745
pNext : System.Address; -- vulkan_core.h:6746
allowCommandBufferQueryCopies : aliased VkBool32; -- vulkan_core.h:6747
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePerformanceQueryPropertiesKHR); -- vulkan_core.h:6744
type VkPerformanceCounterKHR_uuid_array is array (0 .. 15) of aliased stdint_h.uint8_t;
type VkPerformanceCounterKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6751
pNext : System.Address; -- vulkan_core.h:6752
unit : aliased VkPerformanceCounterUnitKHR; -- vulkan_core.h:6753
scope : aliased VkPerformanceCounterScopeKHR; -- vulkan_core.h:6754
storage : aliased VkPerformanceCounterStorageKHR; -- vulkan_core.h:6755
uuid : aliased VkPerformanceCounterKHR_uuid_array; -- vulkan_core.h:6756
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceCounterKHR); -- vulkan_core.h:6750
subtype VkPerformanceCounterDescriptionKHR_name_array is Interfaces.C.char_array (0 .. 255);
subtype VkPerformanceCounterDescriptionKHR_category_array is Interfaces.C.char_array (0 .. 255);
subtype VkPerformanceCounterDescriptionKHR_description_array is Interfaces.C.char_array (0 .. 255);
type VkPerformanceCounterDescriptionKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6760
pNext : System.Address; -- vulkan_core.h:6761
flags : aliased VkPerformanceCounterDescriptionFlagsKHR; -- vulkan_core.h:6762
name : aliased VkPerformanceCounterDescriptionKHR_name_array; -- vulkan_core.h:6763
category : aliased VkPerformanceCounterDescriptionKHR_category_array; -- vulkan_core.h:6764
description : aliased VkPerformanceCounterDescriptionKHR_description_array; -- vulkan_core.h:6765
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceCounterDescriptionKHR); -- vulkan_core.h:6759
type VkQueryPoolPerformanceCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6769
pNext : System.Address; -- vulkan_core.h:6770
queueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:6771
counterIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:6772
pCounterIndices : access stdint_h.uint32_t; -- vulkan_core.h:6773
end record;
pragma Convention (C_Pass_By_Copy, VkQueryPoolPerformanceCreateInfoKHR); -- vulkan_core.h:6768
type VkPerformanceCounterResultKHR (discr : unsigned := 0) is record
case discr is
when 0 =>
int32 : aliased stdint_h.int32_t; -- vulkan_core.h:6777
when 1 =>
int64 : aliased stdint_h.int64_t; -- vulkan_core.h:6778
when 2 =>
uint32 : aliased stdint_h.uint32_t; -- vulkan_core.h:6779
when 3 =>
uint64 : aliased stdint_h.uint64_t; -- vulkan_core.h:6780
when 4 =>
float32 : aliased float; -- vulkan_core.h:6781
when others =>
float64 : aliased double; -- vulkan_core.h:6782
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceCounterResultKHR);
pragma Unchecked_Union (VkPerformanceCounterResultKHR); -- vulkan_core.h:6776
type VkAcquireProfilingLockInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6786
pNext : System.Address; -- vulkan_core.h:6787
flags : aliased VkAcquireProfilingLockFlagsKHR; -- vulkan_core.h:6788
timeout : aliased stdint_h.uint64_t; -- vulkan_core.h:6789
end record;
pragma Convention (C_Pass_By_Copy, VkAcquireProfilingLockInfoKHR); -- vulkan_core.h:6785
type VkPerformanceQuerySubmitInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6793
pNext : System.Address; -- vulkan_core.h:6794
counterPassIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:6795
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceQuerySubmitInfoKHR); -- vulkan_core.h:6792
type PFN_vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : stdint_h.uint32_t;
arg3 : access stdint_h.uint32_t;
arg4 : access VkPerformanceCounterKHR;
arg5 : access VkPerformanceCounterDescriptionKHR) return VkResult;
pragma Convention (C, PFN_vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR); -- vulkan_core.h:6798
type PFN_vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR is access procedure
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t);
pragma Convention (C, PFN_vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR); -- vulkan_core.h:6799
type PFN_vkAcquireProfilingLockKHR is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkAcquireProfilingLockKHR); -- vulkan_core.h:6800
type PFN_vkReleaseProfilingLockKHR is access procedure (arg1 : VkDevice);
pragma Convention (C, PFN_vkReleaseProfilingLockKHR); -- vulkan_core.h:6801
function vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR
(physicalDevice : VkPhysicalDevice;
queueFamilyIndex : stdint_h.uint32_t;
pCounterCount : access stdint_h.uint32_t;
pCounters : access VkPerformanceCounterKHR;
pCounterDescriptions : access VkPerformanceCounterDescriptionKHR) return VkResult; -- vulkan_core.h:6804
pragma Import (C, vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR, "vkEnumeratePhysicalDeviceQueueFamilyPerformanceQueryCountersKHR");
procedure vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR
(physicalDevice : VkPhysicalDevice;
pPerformanceQueryCreateInfo : System.Address;
pNumPasses : access stdint_h.uint32_t); -- vulkan_core.h:6811
pragma Import (C, vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR, "vkGetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR");
function vkAcquireProfilingLockKHR (device : VkDevice; pInfo : System.Address) return VkResult; -- vulkan_core.h:6816
pragma Import (C, vkAcquireProfilingLockKHR, "vkAcquireProfilingLockKHR");
procedure vkReleaseProfilingLockKHR (device : VkDevice); -- vulkan_core.h:6820
pragma Import (C, vkReleaseProfilingLockKHR, "vkReleaseProfilingLockKHR");
subtype VkPointClippingBehaviorKHR is VkPointClippingBehavior;
subtype VkTessellationDomainOriginKHR is VkTessellationDomainOrigin;
subtype VkPhysicalDevicePointClippingPropertiesKHR is VkPhysicalDevicePointClippingProperties;
subtype VkRenderPassInputAttachmentAspectCreateInfoKHR is VkRenderPassInputAttachmentAspectCreateInfo;
subtype VkInputAttachmentAspectReferenceKHR is VkInputAttachmentAspectReference;
subtype VkImageViewUsageCreateInfoKHR is VkImageViewUsageCreateInfo;
subtype VkPipelineTessellationDomainOriginStateCreateInfoKHR is VkPipelineTessellationDomainOriginStateCreateInfo;
type VkPhysicalDeviceSurfaceInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6848
pNext : System.Address; -- vulkan_core.h:6849
surface : VkSurfaceKHR; -- vulkan_core.h:6850
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSurfaceInfo2KHR); -- vulkan_core.h:6847
type VkSurfaceCapabilities2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6854
pNext : System.Address; -- vulkan_core.h:6855
surfaceCapabilities : aliased VkSurfaceCapabilitiesKHR; -- vulkan_core.h:6856
end record;
pragma Convention (C_Pass_By_Copy, VkSurfaceCapabilities2KHR); -- vulkan_core.h:6853
type VkSurfaceFormat2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6860
pNext : System.Address; -- vulkan_core.h:6861
surfaceFormat : aliased VkSurfaceFormatKHR; -- vulkan_core.h:6862
end record;
pragma Convention (C_Pass_By_Copy, VkSurfaceFormat2KHR); -- vulkan_core.h:6859
type PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR is access function
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkSurfaceCapabilities2KHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR); -- vulkan_core.h:6865
type PFN_vkGetPhysicalDeviceSurfaceFormats2KHR is access function
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkSurfaceFormat2KHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSurfaceFormats2KHR); -- vulkan_core.h:6866
function vkGetPhysicalDeviceSurfaceCapabilities2KHR
(physicalDevice : VkPhysicalDevice;
pSurfaceInfo : System.Address;
pSurfaceCapabilities : access VkSurfaceCapabilities2KHR) return VkResult; -- vulkan_core.h:6869
pragma Import (C, vkGetPhysicalDeviceSurfaceCapabilities2KHR, "vkGetPhysicalDeviceSurfaceCapabilities2KHR");
function vkGetPhysicalDeviceSurfaceFormats2KHR
(physicalDevice : VkPhysicalDevice;
pSurfaceInfo : System.Address;
pSurfaceFormatCount : access stdint_h.uint32_t;
pSurfaceFormats : access VkSurfaceFormat2KHR) return VkResult; -- vulkan_core.h:6874
pragma Import (C, vkGetPhysicalDeviceSurfaceFormats2KHR, "vkGetPhysicalDeviceSurfaceFormats2KHR");
subtype VkPhysicalDeviceVariablePointerFeaturesKHR is VkPhysicalDeviceVariablePointersFeatures;
subtype VkPhysicalDeviceVariablePointersFeaturesKHR is VkPhysicalDeviceVariablePointersFeatures;
type VkDisplayProperties2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6895
pNext : System.Address; -- vulkan_core.h:6896
displayProperties : aliased VkDisplayPropertiesKHR; -- vulkan_core.h:6897
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayProperties2KHR); -- vulkan_core.h:6894
type VkDisplayPlaneProperties2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6901
pNext : System.Address; -- vulkan_core.h:6902
displayPlaneProperties : aliased VkDisplayPlanePropertiesKHR; -- vulkan_core.h:6903
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPlaneProperties2KHR); -- vulkan_core.h:6900
type VkDisplayModeProperties2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6907
pNext : System.Address; -- vulkan_core.h:6908
displayModeProperties : aliased VkDisplayModePropertiesKHR; -- vulkan_core.h:6909
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayModeProperties2KHR); -- vulkan_core.h:6906
type VkDisplayPlaneInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6913
pNext : System.Address; -- vulkan_core.h:6914
mode : VkDisplayModeKHR; -- vulkan_core.h:6915
planeIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:6916
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPlaneInfo2KHR); -- vulkan_core.h:6912
type VkDisplayPlaneCapabilities2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:6920
pNext : System.Address; -- vulkan_core.h:6921
capabilities : aliased VkDisplayPlaneCapabilitiesKHR; -- vulkan_core.h:6922
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPlaneCapabilities2KHR); -- vulkan_core.h:6919
type PFN_vkGetPhysicalDeviceDisplayProperties2KHR is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkDisplayProperties2KHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceDisplayProperties2KHR); -- vulkan_core.h:6925
type PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkDisplayPlaneProperties2KHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR); -- vulkan_core.h:6926
type PFN_vkGetDisplayModeProperties2KHR is access function
(arg1 : VkPhysicalDevice;
arg2 : VkDisplayKHR;
arg3 : access stdint_h.uint32_t;
arg4 : access VkDisplayModeProperties2KHR) return VkResult;
pragma Convention (C, PFN_vkGetDisplayModeProperties2KHR); -- vulkan_core.h:6927
type PFN_vkGetDisplayPlaneCapabilities2KHR is access function
(arg1 : VkPhysicalDevice;
arg2 : System.Address;
arg3 : access VkDisplayPlaneCapabilities2KHR) return VkResult;
pragma Convention (C, PFN_vkGetDisplayPlaneCapabilities2KHR); -- vulkan_core.h:6928
function vkGetPhysicalDeviceDisplayProperties2KHR
(physicalDevice : VkPhysicalDevice;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkDisplayProperties2KHR) return VkResult; -- vulkan_core.h:6931
pragma Import (C, vkGetPhysicalDeviceDisplayProperties2KHR, "vkGetPhysicalDeviceDisplayProperties2KHR");
function vkGetPhysicalDeviceDisplayPlaneProperties2KHR
(physicalDevice : VkPhysicalDevice;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkDisplayPlaneProperties2KHR) return VkResult; -- vulkan_core.h:6936
pragma Import (C, vkGetPhysicalDeviceDisplayPlaneProperties2KHR, "vkGetPhysicalDeviceDisplayPlaneProperties2KHR");
function vkGetDisplayModeProperties2KHR
(physicalDevice : VkPhysicalDevice;
display : VkDisplayKHR;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkDisplayModeProperties2KHR) return VkResult; -- vulkan_core.h:6941
pragma Import (C, vkGetDisplayModeProperties2KHR, "vkGetDisplayModeProperties2KHR");
function vkGetDisplayPlaneCapabilities2KHR
(physicalDevice : VkPhysicalDevice;
pDisplayPlaneInfo : System.Address;
pCapabilities : access VkDisplayPlaneCapabilities2KHR) return VkResult; -- vulkan_core.h:6947
pragma Import (C, vkGetDisplayPlaneCapabilities2KHR, "vkGetDisplayPlaneCapabilities2KHR");
subtype VkMemoryDedicatedRequirementsKHR is VkMemoryDedicatedRequirements;
subtype VkMemoryDedicatedAllocateInfoKHR is VkMemoryDedicatedAllocateInfo;
subtype VkBufferMemoryRequirementsInfo2KHR is VkBufferMemoryRequirementsInfo2;
subtype VkImageMemoryRequirementsInfo2KHR is VkImageMemoryRequirementsInfo2;
subtype VkImageSparseMemoryRequirementsInfo2KHR is VkImageSparseMemoryRequirementsInfo2;
subtype VkMemoryRequirements2KHR is VkMemoryRequirements2;
subtype VkSparseImageMemoryRequirements2KHR is VkSparseImageMemoryRequirements2;
type PFN_vkGetImageMemoryRequirements2KHR is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkMemoryRequirements2);
pragma Convention (C, PFN_vkGetImageMemoryRequirements2KHR); -- vulkan_core.h:6986
type PFN_vkGetBufferMemoryRequirements2KHR is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkMemoryRequirements2);
pragma Convention (C, PFN_vkGetBufferMemoryRequirements2KHR); -- vulkan_core.h:6987
type PFN_vkGetImageSparseMemoryRequirements2KHR is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkSparseImageMemoryRequirements2);
pragma Convention (C, PFN_vkGetImageSparseMemoryRequirements2KHR); -- vulkan_core.h:6988
procedure vkGetImageMemoryRequirements2KHR
(device : VkDevice;
pInfo : System.Address;
pMemoryRequirements : access VkMemoryRequirements2); -- vulkan_core.h:6991
pragma Import (C, vkGetImageMemoryRequirements2KHR, "vkGetImageMemoryRequirements2KHR");
procedure vkGetBufferMemoryRequirements2KHR
(device : VkDevice;
pInfo : System.Address;
pMemoryRequirements : access VkMemoryRequirements2); -- vulkan_core.h:6996
pragma Import (C, vkGetBufferMemoryRequirements2KHR, "vkGetBufferMemoryRequirements2KHR");
procedure vkGetImageSparseMemoryRequirements2KHR
(device : VkDevice;
pInfo : System.Address;
pSparseMemoryRequirementCount : access stdint_h.uint32_t;
pSparseMemoryRequirements : access VkSparseImageMemoryRequirements2); -- vulkan_core.h:7001
pragma Import (C, vkGetImageSparseMemoryRequirements2KHR, "vkGetImageSparseMemoryRequirements2KHR");
subtype VkImageFormatListCreateInfoKHR is VkImageFormatListCreateInfo;
subtype VkSamplerYcbcrConversionKHR is VkSamplerYcbcrConversion; -- vulkan_core.h:7017
subtype VkSamplerYcbcrModelConversionKHR is VkSamplerYcbcrModelConversion;
subtype VkSamplerYcbcrRangeKHR is VkSamplerYcbcrRange;
subtype VkChromaLocationKHR is VkChromaLocation;
subtype VkSamplerYcbcrConversionCreateInfoKHR is VkSamplerYcbcrConversionCreateInfo;
subtype VkSamplerYcbcrConversionInfoKHR is VkSamplerYcbcrConversionInfo;
subtype VkBindImagePlaneMemoryInfoKHR is VkBindImagePlaneMemoryInfo;
subtype VkImagePlaneMemoryRequirementsInfoKHR is VkImagePlaneMemoryRequirementsInfo;
subtype VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR is VkPhysicalDeviceSamplerYcbcrConversionFeatures;
subtype VkSamplerYcbcrConversionImageFormatPropertiesKHR is VkSamplerYcbcrConversionImageFormatProperties;
type PFN_vkCreateSamplerYcbcrConversionKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateSamplerYcbcrConversionKHR); -- vulkan_core.h:7039
type PFN_vkDestroySamplerYcbcrConversionKHR is access procedure
(arg1 : VkDevice;
arg2 : VkSamplerYcbcrConversion;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroySamplerYcbcrConversionKHR); -- vulkan_core.h:7040
function vkCreateSamplerYcbcrConversionKHR
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pYcbcrConversion : System.Address) return VkResult; -- vulkan_core.h:7043
pragma Import (C, vkCreateSamplerYcbcrConversionKHR, "vkCreateSamplerYcbcrConversionKHR");
procedure vkDestroySamplerYcbcrConversionKHR
(device : VkDevice;
ycbcrConversion : VkSamplerYcbcrConversion;
pAllocator : System.Address); -- vulkan_core.h:7049
pragma Import (C, vkDestroySamplerYcbcrConversionKHR, "vkDestroySamplerYcbcrConversionKHR");
subtype VkBindBufferMemoryInfoKHR is VkBindBufferMemoryInfo;
subtype VkBindImageMemoryInfoKHR is VkBindImageMemoryInfo;
type PFN_vkBindBufferMemory2KHR is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkBindBufferMemory2KHR); -- vulkan_core.h:7063
type PFN_vkBindImageMemory2KHR is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkBindImageMemory2KHR); -- vulkan_core.h:7064
function vkBindBufferMemory2KHR
(device : VkDevice;
bindInfoCount : stdint_h.uint32_t;
pBindInfos : System.Address) return VkResult; -- vulkan_core.h:7067
pragma Import (C, vkBindBufferMemory2KHR, "vkBindBufferMemory2KHR");
function vkBindImageMemory2KHR
(device : VkDevice;
bindInfoCount : stdint_h.uint32_t;
pBindInfos : System.Address) return VkResult; -- vulkan_core.h:7072
pragma Import (C, vkBindImageMemory2KHR, "vkBindImageMemory2KHR");
subtype VkPhysicalDeviceMaintenance3PropertiesKHR is VkPhysicalDeviceMaintenance3Properties;
subtype VkDescriptorSetLayoutSupportKHR is VkDescriptorSetLayoutSupport;
type PFN_vkGetDescriptorSetLayoutSupportKHR is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkDescriptorSetLayoutSupport);
pragma Convention (C, PFN_vkGetDescriptorSetLayoutSupportKHR); -- vulkan_core.h:7086
procedure vkGetDescriptorSetLayoutSupportKHR
(device : VkDevice;
pCreateInfo : System.Address;
pSupport : access VkDescriptorSetLayoutSupport); -- vulkan_core.h:7089
pragma Import (C, vkGetDescriptorSetLayoutSupportKHR, "vkGetDescriptorSetLayoutSupportKHR");
type PFN_vkCmdDrawIndirectCountKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndirectCountKHR); -- vulkan_core.h:7099
type PFN_vkCmdDrawIndexedIndirectCountKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndexedIndirectCountKHR); -- vulkan_core.h:7100
procedure vkCmdDrawIndirectCountKHR
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
countBuffer : VkBuffer;
countBufferOffset : VkDeviceSize;
maxDrawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:7103
pragma Import (C, vkCmdDrawIndirectCountKHR, "vkCmdDrawIndirectCountKHR");
procedure vkCmdDrawIndexedIndirectCountKHR
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
countBuffer : VkBuffer;
countBufferOffset : VkDeviceSize;
maxDrawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:7112
pragma Import (C, vkCmdDrawIndexedIndirectCountKHR, "vkCmdDrawIndexedIndirectCountKHR");
subtype VkPhysicalDeviceShaderSubgroupExtendedTypesFeaturesKHR is VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures;
subtype VkPhysicalDevice8BitStorageFeaturesKHR is VkPhysicalDevice8BitStorageFeatures;
subtype VkPhysicalDeviceShaderAtomicInt64FeaturesKHR is VkPhysicalDeviceShaderAtomicInt64Features;
type VkPhysicalDeviceShaderClockFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7148
pNext : System.Address; -- vulkan_core.h:7149
shaderSubgroupClock : aliased VkBool32; -- vulkan_core.h:7150
shaderDeviceClock : aliased VkBool32; -- vulkan_core.h:7151
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderClockFeaturesKHR); -- vulkan_core.h:7147
subtype VkDriverIdKHR is VkDriverId;
subtype VkConformanceVersionKHR is VkConformanceVersion;
subtype VkPhysicalDeviceDriverPropertiesKHR is VkPhysicalDeviceDriverProperties;
subtype VkShaderFloatControlsIndependenceKHR is VkShaderFloatControlsIndependence;
subtype VkPhysicalDeviceFloatControlsPropertiesKHR is VkPhysicalDeviceFloatControlsProperties;
subtype VkResolveModeFlagBitsKHR is VkResolveModeFlagBits;
subtype VkResolveModeFlagsKHR is VkResolveModeFlags; -- vulkan_core.h:7183
subtype VkSubpassDescriptionDepthStencilResolveKHR is VkSubpassDescriptionDepthStencilResolve;
subtype VkPhysicalDeviceDepthStencilResolvePropertiesKHR is VkPhysicalDeviceDepthStencilResolveProperties;
subtype VkSemaphoreTypeKHR is VkSemaphoreType;
subtype VkSemaphoreWaitFlagBitsKHR is VkSemaphoreWaitFlagBits;
subtype VkSemaphoreWaitFlagsKHR is VkSemaphoreWaitFlags; -- vulkan_core.h:7203
subtype VkPhysicalDeviceTimelineSemaphoreFeaturesKHR is VkPhysicalDeviceTimelineSemaphoreFeatures;
subtype VkPhysicalDeviceTimelineSemaphorePropertiesKHR is VkPhysicalDeviceTimelineSemaphoreProperties;
subtype VkSemaphoreTypeCreateInfoKHR is VkSemaphoreTypeCreateInfo;
subtype VkTimelineSemaphoreSubmitInfoKHR is VkTimelineSemaphoreSubmitInfo;
subtype VkSemaphoreWaitInfoKHR is VkSemaphoreWaitInfo;
subtype VkSemaphoreSignalInfoKHR is VkSemaphoreSignalInfo;
type PFN_vkGetSemaphoreCounterValueKHR is access function
(arg1 : VkDevice;
arg2 : VkSemaphore;
arg3 : access stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkGetSemaphoreCounterValueKHR); -- vulkan_core.h:7217
type PFN_vkWaitSemaphoresKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkWaitSemaphoresKHR); -- vulkan_core.h:7218
type PFN_vkSignalSemaphoreKHR is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkSignalSemaphoreKHR); -- vulkan_core.h:7219
function vkGetSemaphoreCounterValueKHR
(device : VkDevice;
semaphore : VkSemaphore;
pValue : access stdint_h.uint64_t) return VkResult; -- vulkan_core.h:7222
pragma Import (C, vkGetSemaphoreCounterValueKHR, "vkGetSemaphoreCounterValueKHR");
function vkWaitSemaphoresKHR
(device : VkDevice;
pWaitInfo : System.Address;
timeout : stdint_h.uint64_t) return VkResult; -- vulkan_core.h:7227
pragma Import (C, vkWaitSemaphoresKHR, "vkWaitSemaphoresKHR");
function vkSignalSemaphoreKHR (device : VkDevice; pSignalInfo : System.Address) return VkResult; -- vulkan_core.h:7232
pragma Import (C, vkSignalSemaphoreKHR, "vkSignalSemaphoreKHR");
subtype VkPhysicalDeviceVulkanMemoryModelFeaturesKHR is VkPhysicalDeviceVulkanMemoryModelFeatures;
type VkPhysicalDeviceShaderTerminateInvocationFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7249
pNext : System.Address; -- vulkan_core.h:7250
shaderTerminateInvocation : aliased VkBool32; -- vulkan_core.h:7251
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderTerminateInvocationFeaturesKHR); -- vulkan_core.h:7248
subtype VkFragmentShadingRateCombinerOpKHR is unsigned;
VK_FRAGMENT_SHADING_RATE_COMBINER_OP_KEEP_KHR : constant VkFragmentShadingRateCombinerOpKHR := 0;
VK_FRAGMENT_SHADING_RATE_COMBINER_OP_REPLACE_KHR : constant VkFragmentShadingRateCombinerOpKHR := 1;
VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MIN_KHR : constant VkFragmentShadingRateCombinerOpKHR := 2;
VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_KHR : constant VkFragmentShadingRateCombinerOpKHR := 3;
VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MUL_KHR : constant VkFragmentShadingRateCombinerOpKHR := 4;
VK_FRAGMENT_SHADING_RATE_COMBINER_OP_MAX_ENUM_KHR : constant VkFragmentShadingRateCombinerOpKHR := 2147483647; -- vulkan_core.h:7260
type VkFragmentShadingRateAttachmentInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7269
pNext : System.Address; -- vulkan_core.h:7270
pFragmentShadingRateAttachment : System.Address; -- vulkan_core.h:7271
shadingRateAttachmentTexelSize : aliased VkExtent2D; -- vulkan_core.h:7272
end record;
pragma Convention (C_Pass_By_Copy, VkFragmentShadingRateAttachmentInfoKHR); -- vulkan_core.h:7268
type VkPipelineFragmentShadingRateStateCreateInfoKHR_combinerOps_array is array (0 .. 1) of aliased VkFragmentShadingRateCombinerOpKHR;
type VkPipelineFragmentShadingRateStateCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7276
pNext : System.Address; -- vulkan_core.h:7277
fragmentSize : aliased VkExtent2D; -- vulkan_core.h:7278
combinerOps : aliased VkPipelineFragmentShadingRateStateCreateInfoKHR_combinerOps_array; -- vulkan_core.h:7279
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineFragmentShadingRateStateCreateInfoKHR); -- vulkan_core.h:7275
type VkPhysicalDeviceFragmentShadingRateFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7283
pNext : System.Address; -- vulkan_core.h:7284
pipelineFragmentShadingRate : aliased VkBool32; -- vulkan_core.h:7285
primitiveFragmentShadingRate : aliased VkBool32; -- vulkan_core.h:7286
attachmentFragmentShadingRate : aliased VkBool32; -- vulkan_core.h:7287
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentShadingRateFeaturesKHR); -- vulkan_core.h:7282
type VkPhysicalDeviceFragmentShadingRatePropertiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7291
pNext : System.Address; -- vulkan_core.h:7292
minFragmentShadingRateAttachmentTexelSize : aliased VkExtent2D; -- vulkan_core.h:7293
maxFragmentShadingRateAttachmentTexelSize : aliased VkExtent2D; -- vulkan_core.h:7294
maxFragmentShadingRateAttachmentTexelSizeAspectRatio : aliased stdint_h.uint32_t; -- vulkan_core.h:7295
primitiveFragmentShadingRateWithMultipleViewports : aliased VkBool32; -- vulkan_core.h:7296
layeredShadingRateAttachments : aliased VkBool32; -- vulkan_core.h:7297
fragmentShadingRateNonTrivialCombinerOps : aliased VkBool32; -- vulkan_core.h:7298
maxFragmentSize : aliased VkExtent2D; -- vulkan_core.h:7299
maxFragmentSizeAspectRatio : aliased stdint_h.uint32_t; -- vulkan_core.h:7300
maxFragmentShadingRateCoverageSamples : aliased stdint_h.uint32_t; -- vulkan_core.h:7301
maxFragmentShadingRateRasterizationSamples : aliased VkSampleCountFlagBits; -- vulkan_core.h:7302
fragmentShadingRateWithShaderDepthStencilWrites : aliased VkBool32; -- vulkan_core.h:7303
fragmentShadingRateWithSampleMask : aliased VkBool32; -- vulkan_core.h:7304
fragmentShadingRateWithShaderSampleMask : aliased VkBool32; -- vulkan_core.h:7305
fragmentShadingRateWithConservativeRasterization : aliased VkBool32; -- vulkan_core.h:7306
fragmentShadingRateWithFragmentShaderInterlock : aliased VkBool32; -- vulkan_core.h:7307
fragmentShadingRateWithCustomSampleLocations : aliased VkBool32; -- vulkan_core.h:7308
fragmentShadingRateStrictMultiplyCombiner : aliased VkBool32; -- vulkan_core.h:7309
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentShadingRatePropertiesKHR); -- vulkan_core.h:7290
type VkPhysicalDeviceFragmentShadingRateKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7313
pNext : System.Address; -- vulkan_core.h:7314
sampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:7315
fragmentSize : aliased VkExtent2D; -- vulkan_core.h:7316
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentShadingRateKHR); -- vulkan_core.h:7312
type PFN_vkGetPhysicalDeviceFragmentShadingRatesKHR is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkPhysicalDeviceFragmentShadingRateKHR) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceFragmentShadingRatesKHR); -- vulkan_core.h:7319
type PFN_vkCmdSetFragmentShadingRateKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdSetFragmentShadingRateKHR); -- vulkan_core.h:7320
function vkGetPhysicalDeviceFragmentShadingRatesKHR
(physicalDevice : VkPhysicalDevice;
pFragmentShadingRateCount : access stdint_h.uint32_t;
pFragmentShadingRates : access VkPhysicalDeviceFragmentShadingRateKHR) return VkResult; -- vulkan_core.h:7323
pragma Import (C, vkGetPhysicalDeviceFragmentShadingRatesKHR, "vkGetPhysicalDeviceFragmentShadingRatesKHR");
procedure vkCmdSetFragmentShadingRateKHR
(commandBuffer : VkCommandBuffer;
pFragmentSize : System.Address;
combinerOps : System.Address); -- vulkan_core.h:7328
pragma Import (C, vkCmdSetFragmentShadingRateKHR, "vkCmdSetFragmentShadingRateKHR");
type VkSurfaceProtectedCapabilitiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7344
pNext : System.Address; -- vulkan_core.h:7345
supportsProtected : aliased VkBool32; -- vulkan_core.h:7346
end record;
pragma Convention (C_Pass_By_Copy, VkSurfaceProtectedCapabilitiesKHR); -- vulkan_core.h:7343
subtype VkPhysicalDeviceSeparateDepthStencilLayoutsFeaturesKHR is VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures;
subtype VkAttachmentReferenceStencilLayoutKHR is VkAttachmentReferenceStencilLayout;
subtype VkAttachmentDescriptionStencilLayoutKHR is VkAttachmentDescriptionStencilLayout;
subtype VkPhysicalDeviceUniformBufferStandardLayoutFeaturesKHR is VkPhysicalDeviceUniformBufferStandardLayoutFeatures;
subtype VkPhysicalDeviceBufferDeviceAddressFeaturesKHR is VkPhysicalDeviceBufferDeviceAddressFeatures;
subtype VkBufferDeviceAddressInfoKHR is VkBufferDeviceAddressInfo;
subtype VkBufferOpaqueCaptureAddressCreateInfoKHR is VkBufferOpaqueCaptureAddressCreateInfo;
subtype VkMemoryOpaqueCaptureAddressAllocateInfoKHR is VkMemoryOpaqueCaptureAddressAllocateInfo;
subtype VkDeviceMemoryOpaqueCaptureAddressInfoKHR is VkDeviceMemoryOpaqueCaptureAddressInfo;
type PFN_vkGetBufferDeviceAddressKHR is access function (arg1 : VkDevice; arg2 : System.Address) return VkDeviceAddress;
pragma Convention (C, PFN_vkGetBufferDeviceAddressKHR); -- vulkan_core.h:7382
type PFN_vkGetBufferOpaqueCaptureAddressKHR is access function (arg1 : VkDevice; arg2 : System.Address) return stdint_h.uint64_t;
pragma Convention (C, PFN_vkGetBufferOpaqueCaptureAddressKHR); -- vulkan_core.h:7383
type PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR is access function (arg1 : VkDevice; arg2 : System.Address) return stdint_h.uint64_t;
pragma Convention (C, PFN_vkGetDeviceMemoryOpaqueCaptureAddressKHR); -- vulkan_core.h:7384
function vkGetBufferDeviceAddressKHR (device : VkDevice; pInfo : System.Address) return VkDeviceAddress; -- vulkan_core.h:7387
pragma Import (C, vkGetBufferDeviceAddressKHR, "vkGetBufferDeviceAddressKHR");
function vkGetBufferOpaqueCaptureAddressKHR (device : VkDevice; pInfo : System.Address) return stdint_h.uint64_t; -- vulkan_core.h:7391
pragma Import (C, vkGetBufferOpaqueCaptureAddressKHR, "vkGetBufferOpaqueCaptureAddressKHR");
function vkGetDeviceMemoryOpaqueCaptureAddressKHR (device : VkDevice; pInfo : System.Address) return stdint_h.uint64_t; -- vulkan_core.h:7395
pragma Import (C, vkGetDeviceMemoryOpaqueCaptureAddressKHR, "vkGetDeviceMemoryOpaqueCaptureAddressKHR");
type VkDeferredOperationKHR is new System.Address; -- vulkan_core.h:7402
-- skipped empty struct VkDeferredOperationKHR_T
type PFN_vkCreateDeferredOperationKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDeferredOperationKHR); -- vulkan_core.h:7405
type PFN_vkDestroyDeferredOperationKHR is access procedure
(arg1 : VkDevice;
arg2 : VkDeferredOperationKHR;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyDeferredOperationKHR); -- vulkan_core.h:7406
type PFN_vkGetDeferredOperationMaxConcurrencyKHR is access function (arg1 : VkDevice; arg2 : VkDeferredOperationKHR) return stdint_h.uint32_t;
pragma Convention (C, PFN_vkGetDeferredOperationMaxConcurrencyKHR); -- vulkan_core.h:7407
type PFN_vkGetDeferredOperationResultKHR is access function (arg1 : VkDevice; arg2 : VkDeferredOperationKHR) return VkResult;
pragma Convention (C, PFN_vkGetDeferredOperationResultKHR); -- vulkan_core.h:7408
type PFN_vkDeferredOperationJoinKHR is access function (arg1 : VkDevice; arg2 : VkDeferredOperationKHR) return VkResult;
pragma Convention (C, PFN_vkDeferredOperationJoinKHR); -- vulkan_core.h:7409
function vkCreateDeferredOperationKHR
(device : VkDevice;
pAllocator : System.Address;
pDeferredOperation : System.Address) return VkResult; -- vulkan_core.h:7412
pragma Import (C, vkCreateDeferredOperationKHR, "vkCreateDeferredOperationKHR");
procedure vkDestroyDeferredOperationKHR
(device : VkDevice;
operation : VkDeferredOperationKHR;
pAllocator : System.Address); -- vulkan_core.h:7417
pragma Import (C, vkDestroyDeferredOperationKHR, "vkDestroyDeferredOperationKHR");
function vkGetDeferredOperationMaxConcurrencyKHR (device : VkDevice; operation : VkDeferredOperationKHR) return stdint_h.uint32_t; -- vulkan_core.h:7422
pragma Import (C, vkGetDeferredOperationMaxConcurrencyKHR, "vkGetDeferredOperationMaxConcurrencyKHR");
function vkGetDeferredOperationResultKHR (device : VkDevice; operation : VkDeferredOperationKHR) return VkResult; -- vulkan_core.h:7426
pragma Import (C, vkGetDeferredOperationResultKHR, "vkGetDeferredOperationResultKHR");
function vkDeferredOperationJoinKHR (device : VkDevice; operation : VkDeferredOperationKHR) return VkResult; -- vulkan_core.h:7430
pragma Import (C, vkDeferredOperationJoinKHR, "vkDeferredOperationJoinKHR");
subtype VkPipelineExecutableStatisticFormatKHR is unsigned;
VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_BOOL32_KHR : constant VkPipelineExecutableStatisticFormatKHR := 0;
VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_INT64_KHR : constant VkPipelineExecutableStatisticFormatKHR := 1;
VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_UINT64_KHR : constant VkPipelineExecutableStatisticFormatKHR := 2;
VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_FLOAT64_KHR : constant VkPipelineExecutableStatisticFormatKHR := 3;
VK_PIPELINE_EXECUTABLE_STATISTIC_FORMAT_MAX_ENUM_KHR : constant VkPipelineExecutableStatisticFormatKHR := 2147483647; -- vulkan_core.h:7440
type VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7448
pNext : System.Address; -- vulkan_core.h:7449
pipelineExecutableInfo : aliased VkBool32; -- vulkan_core.h:7450
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePipelineExecutablePropertiesFeaturesKHR); -- vulkan_core.h:7447
type VkPipelineInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7454
pNext : System.Address; -- vulkan_core.h:7455
pipeline : VkPipeline; -- vulkan_core.h:7456
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineInfoKHR); -- vulkan_core.h:7453
subtype VkPipelineExecutablePropertiesKHR_name_array is Interfaces.C.char_array (0 .. 255);
subtype VkPipelineExecutablePropertiesKHR_description_array is Interfaces.C.char_array (0 .. 255);
type VkPipelineExecutablePropertiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7460
pNext : System.Address; -- vulkan_core.h:7461
stages : aliased VkShaderStageFlags; -- vulkan_core.h:7462
name : aliased VkPipelineExecutablePropertiesKHR_name_array; -- vulkan_core.h:7463
description : aliased VkPipelineExecutablePropertiesKHR_description_array; -- vulkan_core.h:7464
subgroupSize : aliased stdint_h.uint32_t; -- vulkan_core.h:7465
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineExecutablePropertiesKHR); -- vulkan_core.h:7459
type VkPipelineExecutableInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7469
pNext : System.Address; -- vulkan_core.h:7470
pipeline : VkPipeline; -- vulkan_core.h:7471
executableIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:7472
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineExecutableInfoKHR); -- vulkan_core.h:7468
type VkPipelineExecutableStatisticValueKHR (discr : unsigned := 0) is record
case discr is
when 0 =>
b32 : aliased VkBool32; -- vulkan_core.h:7476
when 1 =>
i64 : aliased stdint_h.int64_t; -- vulkan_core.h:7477
when 2 =>
u64 : aliased stdint_h.uint64_t; -- vulkan_core.h:7478
when others =>
f64 : aliased double; -- vulkan_core.h:7479
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineExecutableStatisticValueKHR);
pragma Unchecked_Union (VkPipelineExecutableStatisticValueKHR); -- vulkan_core.h:7475
subtype VkPipelineExecutableStatisticKHR_name_array is Interfaces.C.char_array (0 .. 255);
subtype VkPipelineExecutableStatisticKHR_description_array is Interfaces.C.char_array (0 .. 255);
type VkPipelineExecutableStatisticKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7483
pNext : System.Address; -- vulkan_core.h:7484
name : aliased VkPipelineExecutableStatisticKHR_name_array; -- vulkan_core.h:7485
description : aliased VkPipelineExecutableStatisticKHR_description_array; -- vulkan_core.h:7486
format : aliased VkPipelineExecutableStatisticFormatKHR; -- vulkan_core.h:7487
value : VkPipelineExecutableStatisticValueKHR; -- vulkan_core.h:7488
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineExecutableStatisticKHR); -- vulkan_core.h:7482
subtype VkPipelineExecutableInternalRepresentationKHR_name_array is Interfaces.C.char_array (0 .. 255);
subtype VkPipelineExecutableInternalRepresentationKHR_description_array is Interfaces.C.char_array (0 .. 255);
type VkPipelineExecutableInternalRepresentationKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7492
pNext : System.Address; -- vulkan_core.h:7493
name : aliased VkPipelineExecutableInternalRepresentationKHR_name_array; -- vulkan_core.h:7494
description : aliased VkPipelineExecutableInternalRepresentationKHR_description_array; -- vulkan_core.h:7495
isText : aliased VkBool32; -- vulkan_core.h:7496
dataSize : aliased crtdefs_h.size_t; -- vulkan_core.h:7497
pData : System.Address; -- vulkan_core.h:7498
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineExecutableInternalRepresentationKHR); -- vulkan_core.h:7491
type PFN_vkGetPipelineExecutablePropertiesKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkPipelineExecutablePropertiesKHR) return VkResult;
pragma Convention (C, PFN_vkGetPipelineExecutablePropertiesKHR); -- vulkan_core.h:7501
type PFN_vkGetPipelineExecutableStatisticsKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkPipelineExecutableStatisticKHR) return VkResult;
pragma Convention (C, PFN_vkGetPipelineExecutableStatisticsKHR); -- vulkan_core.h:7502
type PFN_vkGetPipelineExecutableInternalRepresentationsKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access stdint_h.uint32_t;
arg4 : access VkPipelineExecutableInternalRepresentationKHR) return VkResult;
pragma Convention (C, PFN_vkGetPipelineExecutableInternalRepresentationsKHR); -- vulkan_core.h:7503
function vkGetPipelineExecutablePropertiesKHR
(device : VkDevice;
pPipelineInfo : System.Address;
pExecutableCount : access stdint_h.uint32_t;
pProperties : access VkPipelineExecutablePropertiesKHR) return VkResult; -- vulkan_core.h:7506
pragma Import (C, vkGetPipelineExecutablePropertiesKHR, "vkGetPipelineExecutablePropertiesKHR");
function vkGetPipelineExecutableStatisticsKHR
(device : VkDevice;
pExecutableInfo : System.Address;
pStatisticCount : access stdint_h.uint32_t;
pStatistics : access VkPipelineExecutableStatisticKHR) return VkResult; -- vulkan_core.h:7512
pragma Import (C, vkGetPipelineExecutableStatisticsKHR, "vkGetPipelineExecutableStatisticsKHR");
function vkGetPipelineExecutableInternalRepresentationsKHR
(device : VkDevice;
pExecutableInfo : System.Address;
pInternalRepresentationCount : access stdint_h.uint32_t;
pInternalRepresentations : access VkPipelineExecutableInternalRepresentationKHR) return VkResult; -- vulkan_core.h:7518
pragma Import (C, vkGetPipelineExecutableInternalRepresentationsKHR, "vkGetPipelineExecutableInternalRepresentationsKHR");
type VkPipelineLibraryCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7530
pNext : System.Address; -- vulkan_core.h:7531
libraryCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7532
pLibraries : System.Address; -- vulkan_core.h:7533
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineLibraryCreateInfoKHR); -- vulkan_core.h:7529
subtype VkFlags64 is stdint_h.uint64_t; -- vulkan_core.h:7544
subtype VkPipelineStageFlags2KHR is VkFlags64; -- vulkan_core.h:7547
-- Flag bits for VkPipelineStageFlags2KHR
VK_PIPELINE_STAGE_2_NONE_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7550
pragma Import (CPP, VK_PIPELINE_STAGE_2_NONE_KHR, "_ZL28VK_PIPELINE_STAGE_2_NONE_KHR");
VK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7551
pragma Import (CPP, VK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT_KHR, "_ZL39VK_PIPELINE_STAGE_2_TOP_OF_PIPE_BIT_KHR");
VK_PIPELINE_STAGE_2_DRAW_INDIRECT_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7552
pragma Import (CPP, VK_PIPELINE_STAGE_2_DRAW_INDIRECT_BIT_KHR, "_ZL41VK_PIPELINE_STAGE_2_DRAW_INDIRECT_BIT_KHR");
VK_PIPELINE_STAGE_2_VERTEX_INPUT_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7553
pragma Import (CPP, VK_PIPELINE_STAGE_2_VERTEX_INPUT_BIT_KHR, "_ZL40VK_PIPELINE_STAGE_2_VERTEX_INPUT_BIT_KHR");
VK_PIPELINE_STAGE_2_VERTEX_SHADER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7554
pragma Import (CPP, VK_PIPELINE_STAGE_2_VERTEX_SHADER_BIT_KHR, "_ZL41VK_PIPELINE_STAGE_2_VERTEX_SHADER_BIT_KHR");
VK_PIPELINE_STAGE_2_TESSELLATION_CONTROL_SHADER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7555
pragma Import (CPP, VK_PIPELINE_STAGE_2_TESSELLATION_CONTROL_SHADER_BIT_KHR, "_ZL55VK_PIPELINE_STAGE_2_TESSELLATION_CONTROL_SHADER_BIT_KHR");
VK_PIPELINE_STAGE_2_TESSELLATION_EVALUATION_SHADER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7556
pragma Import (CPP, VK_PIPELINE_STAGE_2_TESSELLATION_EVALUATION_SHADER_BIT_KHR, "_ZL58VK_PIPELINE_STAGE_2_TESSELLATION_EVALUATION_SHADER_BIT_KHR");
VK_PIPELINE_STAGE_2_GEOMETRY_SHADER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7557
pragma Import (CPP, VK_PIPELINE_STAGE_2_GEOMETRY_SHADER_BIT_KHR, "_ZL43VK_PIPELINE_STAGE_2_GEOMETRY_SHADER_BIT_KHR");
VK_PIPELINE_STAGE_2_FRAGMENT_SHADER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7558
pragma Import (CPP, VK_PIPELINE_STAGE_2_FRAGMENT_SHADER_BIT_KHR, "_ZL43VK_PIPELINE_STAGE_2_FRAGMENT_SHADER_BIT_KHR");
VK_PIPELINE_STAGE_2_EARLY_FRAGMENT_TESTS_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7559
pragma Import (CPP, VK_PIPELINE_STAGE_2_EARLY_FRAGMENT_TESTS_BIT_KHR, "_ZL48VK_PIPELINE_STAGE_2_EARLY_FRAGMENT_TESTS_BIT_KHR");
VK_PIPELINE_STAGE_2_LATE_FRAGMENT_TESTS_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7560
pragma Import (CPP, VK_PIPELINE_STAGE_2_LATE_FRAGMENT_TESTS_BIT_KHR, "_ZL47VK_PIPELINE_STAGE_2_LATE_FRAGMENT_TESTS_BIT_KHR");
VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7561
pragma Import (CPP, VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT_KHR, "_ZL51VK_PIPELINE_STAGE_2_COLOR_ATTACHMENT_OUTPUT_BIT_KHR");
VK_PIPELINE_STAGE_2_COMPUTE_SHADER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7562
pragma Import (CPP, VK_PIPELINE_STAGE_2_COMPUTE_SHADER_BIT_KHR, "_ZL42VK_PIPELINE_STAGE_2_COMPUTE_SHADER_BIT_KHR");
VK_PIPELINE_STAGE_2_ALL_TRANSFER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7563
pragma Import (CPP, VK_PIPELINE_STAGE_2_ALL_TRANSFER_BIT_KHR, "_ZL40VK_PIPELINE_STAGE_2_ALL_TRANSFER_BIT_KHR");
VK_PIPELINE_STAGE_2_TRANSFER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7564
pragma Import (CPP, VK_PIPELINE_STAGE_2_TRANSFER_BIT_KHR, "_ZL36VK_PIPELINE_STAGE_2_TRANSFER_BIT_KHR");
VK_PIPELINE_STAGE_2_BOTTOM_OF_PIPE_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7565
pragma Import (CPP, VK_PIPELINE_STAGE_2_BOTTOM_OF_PIPE_BIT_KHR, "_ZL42VK_PIPELINE_STAGE_2_BOTTOM_OF_PIPE_BIT_KHR");
VK_PIPELINE_STAGE_2_HOST_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7566
pragma Import (CPP, VK_PIPELINE_STAGE_2_HOST_BIT_KHR, "_ZL32VK_PIPELINE_STAGE_2_HOST_BIT_KHR");
VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7567
pragma Import (CPP, VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BIT_KHR, "_ZL40VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BIT_KHR");
VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7568
pragma Import (CPP, VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT_KHR, "_ZL40VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT_KHR");
VK_PIPELINE_STAGE_2_COPY_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7569
pragma Import (CPP, VK_PIPELINE_STAGE_2_COPY_BIT_KHR, "_ZL32VK_PIPELINE_STAGE_2_COPY_BIT_KHR");
VK_PIPELINE_STAGE_2_RESOLVE_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7570
pragma Import (CPP, VK_PIPELINE_STAGE_2_RESOLVE_BIT_KHR, "_ZL35VK_PIPELINE_STAGE_2_RESOLVE_BIT_KHR");
VK_PIPELINE_STAGE_2_BLIT_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7571
pragma Import (CPP, VK_PIPELINE_STAGE_2_BLIT_BIT_KHR, "_ZL32VK_PIPELINE_STAGE_2_BLIT_BIT_KHR");
VK_PIPELINE_STAGE_2_CLEAR_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7572
pragma Import (CPP, VK_PIPELINE_STAGE_2_CLEAR_BIT_KHR, "_ZL33VK_PIPELINE_STAGE_2_CLEAR_BIT_KHR");
VK_PIPELINE_STAGE_2_INDEX_INPUT_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7573
pragma Import (CPP, VK_PIPELINE_STAGE_2_INDEX_INPUT_BIT_KHR, "_ZL39VK_PIPELINE_STAGE_2_INDEX_INPUT_BIT_KHR");
VK_PIPELINE_STAGE_2_VERTEX_ATTRIBUTE_INPUT_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7574
pragma Import (CPP, VK_PIPELINE_STAGE_2_VERTEX_ATTRIBUTE_INPUT_BIT_KHR, "_ZL50VK_PIPELINE_STAGE_2_VERTEX_ATTRIBUTE_INPUT_BIT_KHR");
VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7575
pragma Import (CPP, VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR, "_ZL53VK_PIPELINE_STAGE_2_PRE_RASTERIZATION_SHADERS_BIT_KHR");
VK_PIPELINE_STAGE_2_TRANSFORM_FEEDBACK_BIT_EXT : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7576
pragma Import (CPP, VK_PIPELINE_STAGE_2_TRANSFORM_FEEDBACK_BIT_EXT, "_ZL46VK_PIPELINE_STAGE_2_TRANSFORM_FEEDBACK_BIT_EXT");
VK_PIPELINE_STAGE_2_CONDITIONAL_RENDERING_BIT_EXT : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7577
pragma Import (CPP, VK_PIPELINE_STAGE_2_CONDITIONAL_RENDERING_BIT_EXT, "_ZL49VK_PIPELINE_STAGE_2_CONDITIONAL_RENDERING_BIT_EXT");
VK_PIPELINE_STAGE_2_COMMAND_PREPROCESS_BIT_NV : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7578
pragma Import (CPP, VK_PIPELINE_STAGE_2_COMMAND_PREPROCESS_BIT_NV, "_ZL45VK_PIPELINE_STAGE_2_COMMAND_PREPROCESS_BIT_NV");
VK_PIPELINE_STAGE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7579
pragma Import (CPP, VK_PIPELINE_STAGE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR, "_ZL60VK_PIPELINE_STAGE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR");
VK_PIPELINE_STAGE_2_SHADING_RATE_IMAGE_BIT_NV : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7580
pragma Import (CPP, VK_PIPELINE_STAGE_2_SHADING_RATE_IMAGE_BIT_NV, "_ZL45VK_PIPELINE_STAGE_2_SHADING_RATE_IMAGE_BIT_NV");
VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7581
pragma Import (CPP, VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_KHR, "_ZL56VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_KHR");
VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_KHR : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7582
pragma Import (CPP, VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_KHR, "_ZL46VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_KHR");
VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_NV : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7583
pragma Import (CPP, VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_NV, "_ZL45VK_PIPELINE_STAGE_2_RAY_TRACING_SHADER_BIT_NV");
VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_NV : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7584
pragma Import (CPP, VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_NV, "_ZL55VK_PIPELINE_STAGE_2_ACCELERATION_STRUCTURE_BUILD_BIT_NV");
VK_PIPELINE_STAGE_2_FRAGMENT_DENSITY_PROCESS_BIT_EXT : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7585
pragma Import (CPP, VK_PIPELINE_STAGE_2_FRAGMENT_DENSITY_PROCESS_BIT_EXT, "_ZL52VK_PIPELINE_STAGE_2_FRAGMENT_DENSITY_PROCESS_BIT_EXT");
VK_PIPELINE_STAGE_2_TASK_SHADER_BIT_NV : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7586
pragma Import (CPP, VK_PIPELINE_STAGE_2_TASK_SHADER_BIT_NV, "_ZL38VK_PIPELINE_STAGE_2_TASK_SHADER_BIT_NV");
VK_PIPELINE_STAGE_2_MESH_SHADER_BIT_NV : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7587
pragma Import (CPP, VK_PIPELINE_STAGE_2_MESH_SHADER_BIT_NV, "_ZL38VK_PIPELINE_STAGE_2_MESH_SHADER_BIT_NV");
subtype VkAccessFlags2KHR is VkFlags64; -- vulkan_core.h:7589
-- Flag bits for VkAccessFlags2KHR
VK_ACCESS_2_NONE_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7592
pragma Import (CPP, VK_ACCESS_2_NONE_KHR, "_ZL20VK_ACCESS_2_NONE_KHR");
VK_ACCESS_2_INDIRECT_COMMAND_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7593
pragma Import (CPP, VK_ACCESS_2_INDIRECT_COMMAND_READ_BIT_KHR, "_ZL41VK_ACCESS_2_INDIRECT_COMMAND_READ_BIT_KHR");
VK_ACCESS_2_INDEX_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7594
pragma Import (CPP, VK_ACCESS_2_INDEX_READ_BIT_KHR, "_ZL30VK_ACCESS_2_INDEX_READ_BIT_KHR");
VK_ACCESS_2_VERTEX_ATTRIBUTE_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7595
pragma Import (CPP, VK_ACCESS_2_VERTEX_ATTRIBUTE_READ_BIT_KHR, "_ZL41VK_ACCESS_2_VERTEX_ATTRIBUTE_READ_BIT_KHR");
VK_ACCESS_2_UNIFORM_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7596
pragma Import (CPP, VK_ACCESS_2_UNIFORM_READ_BIT_KHR, "_ZL32VK_ACCESS_2_UNIFORM_READ_BIT_KHR");
VK_ACCESS_2_INPUT_ATTACHMENT_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7597
pragma Import (CPP, VK_ACCESS_2_INPUT_ATTACHMENT_READ_BIT_KHR, "_ZL41VK_ACCESS_2_INPUT_ATTACHMENT_READ_BIT_KHR");
VK_ACCESS_2_SHADER_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7598
pragma Import (CPP, VK_ACCESS_2_SHADER_READ_BIT_KHR, "_ZL31VK_ACCESS_2_SHADER_READ_BIT_KHR");
VK_ACCESS_2_SHADER_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7599
pragma Import (CPP, VK_ACCESS_2_SHADER_WRITE_BIT_KHR, "_ZL32VK_ACCESS_2_SHADER_WRITE_BIT_KHR");
VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7600
pragma Import (CPP, VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT_KHR, "_ZL41VK_ACCESS_2_COLOR_ATTACHMENT_READ_BIT_KHR");
VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7601
pragma Import (CPP, VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT_KHR, "_ZL42VK_ACCESS_2_COLOR_ATTACHMENT_WRITE_BIT_KHR");
VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7602
pragma Import (CPP, VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_READ_BIT_KHR, "_ZL49VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_READ_BIT_KHR");
VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7603
pragma Import (CPP, VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT_KHR, "_ZL50VK_ACCESS_2_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT_KHR");
VK_ACCESS_2_TRANSFER_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7604
pragma Import (CPP, VK_ACCESS_2_TRANSFER_READ_BIT_KHR, "_ZL33VK_ACCESS_2_TRANSFER_READ_BIT_KHR");
VK_ACCESS_2_TRANSFER_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7605
pragma Import (CPP, VK_ACCESS_2_TRANSFER_WRITE_BIT_KHR, "_ZL34VK_ACCESS_2_TRANSFER_WRITE_BIT_KHR");
VK_ACCESS_2_HOST_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7606
pragma Import (CPP, VK_ACCESS_2_HOST_READ_BIT_KHR, "_ZL29VK_ACCESS_2_HOST_READ_BIT_KHR");
VK_ACCESS_2_HOST_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7607
pragma Import (CPP, VK_ACCESS_2_HOST_WRITE_BIT_KHR, "_ZL30VK_ACCESS_2_HOST_WRITE_BIT_KHR");
VK_ACCESS_2_MEMORY_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7608
pragma Import (CPP, VK_ACCESS_2_MEMORY_READ_BIT_KHR, "_ZL31VK_ACCESS_2_MEMORY_READ_BIT_KHR");
VK_ACCESS_2_MEMORY_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7609
pragma Import (CPP, VK_ACCESS_2_MEMORY_WRITE_BIT_KHR, "_ZL32VK_ACCESS_2_MEMORY_WRITE_BIT_KHR");
VK_ACCESS_2_SHADER_SAMPLED_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7610
pragma Import (CPP, VK_ACCESS_2_SHADER_SAMPLED_READ_BIT_KHR, "_ZL39VK_ACCESS_2_SHADER_SAMPLED_READ_BIT_KHR");
VK_ACCESS_2_SHADER_STORAGE_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7611
pragma Import (CPP, VK_ACCESS_2_SHADER_STORAGE_READ_BIT_KHR, "_ZL39VK_ACCESS_2_SHADER_STORAGE_READ_BIT_KHR");
VK_ACCESS_2_SHADER_STORAGE_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7612
pragma Import (CPP, VK_ACCESS_2_SHADER_STORAGE_WRITE_BIT_KHR, "_ZL40VK_ACCESS_2_SHADER_STORAGE_WRITE_BIT_KHR");
VK_ACCESS_2_TRANSFORM_FEEDBACK_WRITE_BIT_EXT : aliased VkAccessFlags2KHR; -- vulkan_core.h:7613
pragma Import (CPP, VK_ACCESS_2_TRANSFORM_FEEDBACK_WRITE_BIT_EXT, "_ZL44VK_ACCESS_2_TRANSFORM_FEEDBACK_WRITE_BIT_EXT");
VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT : aliased VkAccessFlags2KHR; -- vulkan_core.h:7614
pragma Import (CPP, VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT, "_ZL51VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_READ_BIT_EXT");
VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT : aliased VkAccessFlags2KHR; -- vulkan_core.h:7615
pragma Import (CPP, VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT, "_ZL52VK_ACCESS_2_TRANSFORM_FEEDBACK_COUNTER_WRITE_BIT_EXT");
VK_ACCESS_2_CONDITIONAL_RENDERING_READ_BIT_EXT : aliased VkAccessFlags2KHR; -- vulkan_core.h:7616
pragma Import (CPP, VK_ACCESS_2_CONDITIONAL_RENDERING_READ_BIT_EXT, "_ZL46VK_ACCESS_2_CONDITIONAL_RENDERING_READ_BIT_EXT");
VK_ACCESS_2_COMMAND_PREPROCESS_READ_BIT_NV : aliased VkAccessFlags2KHR; -- vulkan_core.h:7617
pragma Import (CPP, VK_ACCESS_2_COMMAND_PREPROCESS_READ_BIT_NV, "_ZL42VK_ACCESS_2_COMMAND_PREPROCESS_READ_BIT_NV");
VK_ACCESS_2_COMMAND_PREPROCESS_WRITE_BIT_NV : aliased VkAccessFlags2KHR; -- vulkan_core.h:7618
pragma Import (CPP, VK_ACCESS_2_COMMAND_PREPROCESS_WRITE_BIT_NV, "_ZL43VK_ACCESS_2_COMMAND_PREPROCESS_WRITE_BIT_NV");
VK_ACCESS_2_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7619
pragma Import (CPP, VK_ACCESS_2_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR, "_ZL57VK_ACCESS_2_FRAGMENT_SHADING_RATE_ATTACHMENT_READ_BIT_KHR");
VK_ACCESS_2_SHADING_RATE_IMAGE_READ_BIT_NV : aliased VkAccessFlags2KHR; -- vulkan_core.h:7620
pragma Import (CPP, VK_ACCESS_2_SHADING_RATE_IMAGE_READ_BIT_NV, "_ZL42VK_ACCESS_2_SHADING_RATE_IMAGE_READ_BIT_NV");
VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7621
pragma Import (CPP, VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_KHR, "_ZL47VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_KHR");
VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_KHR : aliased VkAccessFlags2KHR; -- vulkan_core.h:7622
pragma Import (CPP, VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_KHR, "_ZL48VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_KHR");
VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_NV : aliased VkAccessFlags2KHR; -- vulkan_core.h:7623
pragma Import (CPP, VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_NV, "_ZL46VK_ACCESS_2_ACCELERATION_STRUCTURE_READ_BIT_NV");
VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_NV : aliased VkAccessFlags2KHR; -- vulkan_core.h:7624
pragma Import (CPP, VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_NV, "_ZL47VK_ACCESS_2_ACCELERATION_STRUCTURE_WRITE_BIT_NV");
VK_ACCESS_2_FRAGMENT_DENSITY_MAP_READ_BIT_EXT : aliased VkAccessFlags2KHR; -- vulkan_core.h:7625
pragma Import (CPP, VK_ACCESS_2_FRAGMENT_DENSITY_MAP_READ_BIT_EXT, "_ZL45VK_ACCESS_2_FRAGMENT_DENSITY_MAP_READ_BIT_EXT");
VK_ACCESS_2_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT : aliased VkAccessFlags2KHR; -- vulkan_core.h:7626
pragma Import (CPP, VK_ACCESS_2_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT, "_ZL53VK_ACCESS_2_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT");
subtype VkSubmitFlagBitsKHR is unsigned;
VK_SUBMIT_PROTECTED_BIT_KHR : constant VkSubmitFlagBitsKHR := 1;
VK_SUBMIT_FLAG_BITS_MAX_ENUM_KHR : constant VkSubmitFlagBitsKHR := 2147483647; -- vulkan_core.h:7629
subtype VkSubmitFlagsKHR is VkFlags; -- vulkan_core.h:7633
type VkMemoryBarrier2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7635
pNext : System.Address; -- vulkan_core.h:7636
srcStageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7637
srcAccessMask : aliased VkAccessFlags2KHR; -- vulkan_core.h:7638
dstStageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7639
dstAccessMask : aliased VkAccessFlags2KHR; -- vulkan_core.h:7640
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryBarrier2KHR); -- vulkan_core.h:7634
type VkBufferMemoryBarrier2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7644
pNext : System.Address; -- vulkan_core.h:7645
srcStageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7646
srcAccessMask : aliased VkAccessFlags2KHR; -- vulkan_core.h:7647
dstStageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7648
dstAccessMask : aliased VkAccessFlags2KHR; -- vulkan_core.h:7649
srcQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:7650
dstQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:7651
buffer : VkBuffer; -- vulkan_core.h:7652
offset : aliased VkDeviceSize; -- vulkan_core.h:7653
size : aliased VkDeviceSize; -- vulkan_core.h:7654
end record;
pragma Convention (C_Pass_By_Copy, VkBufferMemoryBarrier2KHR); -- vulkan_core.h:7643
type VkImageMemoryBarrier2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7658
pNext : System.Address; -- vulkan_core.h:7659
srcStageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7660
srcAccessMask : aliased VkAccessFlags2KHR; -- vulkan_core.h:7661
dstStageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7662
dstAccessMask : aliased VkAccessFlags2KHR; -- vulkan_core.h:7663
oldLayout : aliased VkImageLayout; -- vulkan_core.h:7664
newLayout : aliased VkImageLayout; -- vulkan_core.h:7665
srcQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:7666
dstQueueFamilyIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:7667
image : VkImage; -- vulkan_core.h:7668
subresourceRange : aliased VkImageSubresourceRange; -- vulkan_core.h:7669
end record;
pragma Convention (C_Pass_By_Copy, VkImageMemoryBarrier2KHR); -- vulkan_core.h:7657
type VkDependencyInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7673
pNext : System.Address; -- vulkan_core.h:7674
dependencyFlags : aliased VkDependencyFlags; -- vulkan_core.h:7675
memoryBarrierCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7676
pMemoryBarriers : System.Address; -- vulkan_core.h:7677
bufferMemoryBarrierCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7678
pBufferMemoryBarriers : System.Address; -- vulkan_core.h:7679
imageMemoryBarrierCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7680
pImageMemoryBarriers : System.Address; -- vulkan_core.h:7681
end record;
pragma Convention (C_Pass_By_Copy, VkDependencyInfoKHR); -- vulkan_core.h:7672
type VkSemaphoreSubmitInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7685
pNext : System.Address; -- vulkan_core.h:7686
semaphore : VkSemaphore; -- vulkan_core.h:7687
value : aliased stdint_h.uint64_t; -- vulkan_core.h:7688
stageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7689
deviceIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:7690
end record;
pragma Convention (C_Pass_By_Copy, VkSemaphoreSubmitInfoKHR); -- vulkan_core.h:7684
type VkCommandBufferSubmitInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7694
pNext : System.Address; -- vulkan_core.h:7695
commandBuffer : VkCommandBuffer; -- vulkan_core.h:7696
deviceMask : aliased stdint_h.uint32_t; -- vulkan_core.h:7697
end record;
pragma Convention (C_Pass_By_Copy, VkCommandBufferSubmitInfoKHR); -- vulkan_core.h:7693
type VkSubmitInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7701
pNext : System.Address; -- vulkan_core.h:7702
flags : aliased VkSubmitFlagsKHR; -- vulkan_core.h:7703
waitSemaphoreInfoCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7704
pWaitSemaphoreInfos : System.Address; -- vulkan_core.h:7705
commandBufferInfoCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7706
pCommandBufferInfos : System.Address; -- vulkan_core.h:7707
signalSemaphoreInfoCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7708
pSignalSemaphoreInfos : System.Address; -- vulkan_core.h:7709
end record;
pragma Convention (C_Pass_By_Copy, VkSubmitInfo2KHR); -- vulkan_core.h:7700
type VkPhysicalDeviceSynchronization2FeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7713
pNext : System.Address; -- vulkan_core.h:7714
synchronization2 : aliased VkBool32; -- vulkan_core.h:7715
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSynchronization2FeaturesKHR); -- vulkan_core.h:7712
type VkQueueFamilyCheckpointProperties2NV is record
sType : aliased VkStructureType; -- vulkan_core.h:7719
pNext : System.Address; -- vulkan_core.h:7720
checkpointExecutionStageMask : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7721
end record;
pragma Convention (C_Pass_By_Copy, VkQueueFamilyCheckpointProperties2NV); -- vulkan_core.h:7718
type VkCheckpointData2NV is record
sType : aliased VkStructureType; -- vulkan_core.h:7725
pNext : System.Address; -- vulkan_core.h:7726
stage : aliased VkPipelineStageFlags2KHR; -- vulkan_core.h:7727
pCheckpointMarker : System.Address; -- vulkan_core.h:7728
end record;
pragma Convention (C_Pass_By_Copy, VkCheckpointData2NV); -- vulkan_core.h:7724
type PFN_vkCmdSetEvent2KHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkEvent;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdSetEvent2KHR); -- vulkan_core.h:7731
type PFN_vkCmdResetEvent2KHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkEvent;
arg3 : VkPipelineStageFlags2KHR);
pragma Convention (C, PFN_vkCmdResetEvent2KHR); -- vulkan_core.h:7732
type PFN_vkCmdWaitEvents2KHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdWaitEvents2KHR); -- vulkan_core.h:7733
type PFN_vkCmdPipelineBarrier2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdPipelineBarrier2KHR); -- vulkan_core.h:7734
type PFN_vkCmdWriteTimestamp2KHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineStageFlags2KHR;
arg3 : VkQueryPool;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdWriteTimestamp2KHR); -- vulkan_core.h:7735
type PFN_vkQueueSubmit2KHR is access function
(arg1 : VkQueue;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkFence) return VkResult;
pragma Convention (C, PFN_vkQueueSubmit2KHR); -- vulkan_core.h:7736
type PFN_vkCmdWriteBufferMarker2AMD is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineStageFlags2KHR;
arg3 : VkBuffer;
arg4 : VkDeviceSize;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdWriteBufferMarker2AMD); -- vulkan_core.h:7737
type PFN_vkGetQueueCheckpointData2NV is access procedure
(arg1 : VkQueue;
arg2 : access stdint_h.uint32_t;
arg3 : access VkCheckpointData2NV);
pragma Convention (C, PFN_vkGetQueueCheckpointData2NV); -- vulkan_core.h:7738
procedure vkCmdSetEvent2KHR
(commandBuffer : VkCommandBuffer;
event : VkEvent;
pDependencyInfo : System.Address); -- vulkan_core.h:7741
pragma Import (C, vkCmdSetEvent2KHR, "vkCmdSetEvent2KHR");
procedure vkCmdResetEvent2KHR
(commandBuffer : VkCommandBuffer;
event : VkEvent;
stageMask : VkPipelineStageFlags2KHR); -- vulkan_core.h:7746
pragma Import (C, vkCmdResetEvent2KHR, "vkCmdResetEvent2KHR");
procedure vkCmdWaitEvents2KHR
(commandBuffer : VkCommandBuffer;
eventCount : stdint_h.uint32_t;
pEvents : System.Address;
pDependencyInfos : System.Address); -- vulkan_core.h:7751
pragma Import (C, vkCmdWaitEvents2KHR, "vkCmdWaitEvents2KHR");
procedure vkCmdPipelineBarrier2KHR (commandBuffer : VkCommandBuffer; pDependencyInfo : System.Address); -- vulkan_core.h:7757
pragma Import (C, vkCmdPipelineBarrier2KHR, "vkCmdPipelineBarrier2KHR");
procedure vkCmdWriteTimestamp2KHR
(commandBuffer : VkCommandBuffer;
stage : VkPipelineStageFlags2KHR;
queryPool : VkQueryPool;
query : stdint_h.uint32_t); -- vulkan_core.h:7761
pragma Import (C, vkCmdWriteTimestamp2KHR, "vkCmdWriteTimestamp2KHR");
function vkQueueSubmit2KHR
(queue : VkQueue;
submitCount : stdint_h.uint32_t;
pSubmits : System.Address;
fence : VkFence) return VkResult; -- vulkan_core.h:7767
pragma Import (C, vkQueueSubmit2KHR, "vkQueueSubmit2KHR");
procedure vkCmdWriteBufferMarker2AMD
(commandBuffer : VkCommandBuffer;
stage : VkPipelineStageFlags2KHR;
dstBuffer : VkBuffer;
dstOffset : VkDeviceSize;
marker : stdint_h.uint32_t); -- vulkan_core.h:7773
pragma Import (C, vkCmdWriteBufferMarker2AMD, "vkCmdWriteBufferMarker2AMD");
procedure vkGetQueueCheckpointData2NV
(queue : VkQueue;
pCheckpointDataCount : access stdint_h.uint32_t;
pCheckpointData : access VkCheckpointData2NV); -- vulkan_core.h:7780
pragma Import (C, vkGetQueueCheckpointData2NV, "vkGetQueueCheckpointData2NV");
type VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7791
pNext : System.Address; -- vulkan_core.h:7792
shaderZeroInitializeWorkgroupMemory : aliased VkBool32; -- vulkan_core.h:7793
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceZeroInitializeWorkgroupMemoryFeaturesKHR); -- vulkan_core.h:7790
type VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7802
pNext : System.Address; -- vulkan_core.h:7803
workgroupMemoryExplicitLayout : aliased VkBool32; -- vulkan_core.h:7804
workgroupMemoryExplicitLayoutScalarBlockLayout : aliased VkBool32; -- vulkan_core.h:7805
workgroupMemoryExplicitLayout8BitAccess : aliased VkBool32; -- vulkan_core.h:7806
workgroupMemoryExplicitLayout16BitAccess : aliased VkBool32; -- vulkan_core.h:7807
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceWorkgroupMemoryExplicitLayoutFeaturesKHR); -- vulkan_core.h:7801
type VkBufferCopy2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7816
pNext : System.Address; -- vulkan_core.h:7817
srcOffset : aliased VkDeviceSize; -- vulkan_core.h:7818
dstOffset : aliased VkDeviceSize; -- vulkan_core.h:7819
size : aliased VkDeviceSize; -- vulkan_core.h:7820
end record;
pragma Convention (C_Pass_By_Copy, VkBufferCopy2KHR); -- vulkan_core.h:7815
type VkCopyBufferInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7824
pNext : System.Address; -- vulkan_core.h:7825
srcBuffer : VkBuffer; -- vulkan_core.h:7826
dstBuffer : VkBuffer; -- vulkan_core.h:7827
regionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7828
pRegions : System.Address; -- vulkan_core.h:7829
end record;
pragma Convention (C_Pass_By_Copy, VkCopyBufferInfo2KHR); -- vulkan_core.h:7823
type VkImageCopy2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7833
pNext : System.Address; -- vulkan_core.h:7834
srcSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:7835
srcOffset : aliased VkOffset3D; -- vulkan_core.h:7836
dstSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:7837
dstOffset : aliased VkOffset3D; -- vulkan_core.h:7838
extent : aliased VkExtent3D; -- vulkan_core.h:7839
end record;
pragma Convention (C_Pass_By_Copy, VkImageCopy2KHR); -- vulkan_core.h:7832
type VkCopyImageInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7843
pNext : System.Address; -- vulkan_core.h:7844
srcImage : VkImage; -- vulkan_core.h:7845
srcImageLayout : aliased VkImageLayout; -- vulkan_core.h:7846
dstImage : VkImage; -- vulkan_core.h:7847
dstImageLayout : aliased VkImageLayout; -- vulkan_core.h:7848
regionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7849
pRegions : System.Address; -- vulkan_core.h:7850
end record;
pragma Convention (C_Pass_By_Copy, VkCopyImageInfo2KHR); -- vulkan_core.h:7842
type VkBufferImageCopy2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7854
pNext : System.Address; -- vulkan_core.h:7855
bufferOffset : aliased VkDeviceSize; -- vulkan_core.h:7856
bufferRowLength : aliased stdint_h.uint32_t; -- vulkan_core.h:7857
bufferImageHeight : aliased stdint_h.uint32_t; -- vulkan_core.h:7858
imageSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:7859
imageOffset : aliased VkOffset3D; -- vulkan_core.h:7860
imageExtent : aliased VkExtent3D; -- vulkan_core.h:7861
end record;
pragma Convention (C_Pass_By_Copy, VkBufferImageCopy2KHR); -- vulkan_core.h:7853
type VkCopyBufferToImageInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7865
pNext : System.Address; -- vulkan_core.h:7866
srcBuffer : VkBuffer; -- vulkan_core.h:7867
dstImage : VkImage; -- vulkan_core.h:7868
dstImageLayout : aliased VkImageLayout; -- vulkan_core.h:7869
regionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7870
pRegions : System.Address; -- vulkan_core.h:7871
end record;
pragma Convention (C_Pass_By_Copy, VkCopyBufferToImageInfo2KHR); -- vulkan_core.h:7864
type VkCopyImageToBufferInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7875
pNext : System.Address; -- vulkan_core.h:7876
srcImage : VkImage; -- vulkan_core.h:7877
srcImageLayout : aliased VkImageLayout; -- vulkan_core.h:7878
dstBuffer : VkBuffer; -- vulkan_core.h:7879
regionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7880
pRegions : System.Address; -- vulkan_core.h:7881
end record;
pragma Convention (C_Pass_By_Copy, VkCopyImageToBufferInfo2KHR); -- vulkan_core.h:7874
type VkImageBlit2KHR_srcOffsets_array is array (0 .. 1) of aliased VkOffset3D;
type VkImageBlit2KHR_dstOffsets_array is array (0 .. 1) of aliased VkOffset3D;
type VkImageBlit2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7885
pNext : System.Address; -- vulkan_core.h:7886
srcSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:7887
srcOffsets : aliased VkImageBlit2KHR_srcOffsets_array; -- vulkan_core.h:7888
dstSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:7889
dstOffsets : aliased VkImageBlit2KHR_dstOffsets_array; -- vulkan_core.h:7890
end record;
pragma Convention (C_Pass_By_Copy, VkImageBlit2KHR); -- vulkan_core.h:7884
type VkBlitImageInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7894
pNext : System.Address; -- vulkan_core.h:7895
srcImage : VkImage; -- vulkan_core.h:7896
srcImageLayout : aliased VkImageLayout; -- vulkan_core.h:7897
dstImage : VkImage; -- vulkan_core.h:7898
dstImageLayout : aliased VkImageLayout; -- vulkan_core.h:7899
regionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7900
pRegions : System.Address; -- vulkan_core.h:7901
filter : aliased VkFilter; -- vulkan_core.h:7902
end record;
pragma Convention (C_Pass_By_Copy, VkBlitImageInfo2KHR); -- vulkan_core.h:7893
type VkImageResolve2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7906
pNext : System.Address; -- vulkan_core.h:7907
srcSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:7908
srcOffset : aliased VkOffset3D; -- vulkan_core.h:7909
dstSubresource : aliased VkImageSubresourceLayers; -- vulkan_core.h:7910
dstOffset : aliased VkOffset3D; -- vulkan_core.h:7911
extent : aliased VkExtent3D; -- vulkan_core.h:7912
end record;
pragma Convention (C_Pass_By_Copy, VkImageResolve2KHR); -- vulkan_core.h:7905
type VkResolveImageInfo2KHR is record
sType : aliased VkStructureType; -- vulkan_core.h:7916
pNext : System.Address; -- vulkan_core.h:7917
srcImage : VkImage; -- vulkan_core.h:7918
srcImageLayout : aliased VkImageLayout; -- vulkan_core.h:7919
dstImage : VkImage; -- vulkan_core.h:7920
dstImageLayout : aliased VkImageLayout; -- vulkan_core.h:7921
regionCount : aliased stdint_h.uint32_t; -- vulkan_core.h:7922
pRegions : System.Address; -- vulkan_core.h:7923
end record;
pragma Convention (C_Pass_By_Copy, VkResolveImageInfo2KHR); -- vulkan_core.h:7915
type PFN_vkCmdCopyBuffer2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdCopyBuffer2KHR); -- vulkan_core.h:7926
type PFN_vkCmdCopyImage2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdCopyImage2KHR); -- vulkan_core.h:7927
type PFN_vkCmdCopyBufferToImage2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdCopyBufferToImage2KHR); -- vulkan_core.h:7928
type PFN_vkCmdCopyImageToBuffer2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdCopyImageToBuffer2KHR); -- vulkan_core.h:7929
type PFN_vkCmdBlitImage2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdBlitImage2KHR); -- vulkan_core.h:7930
type PFN_vkCmdResolveImage2KHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdResolveImage2KHR); -- vulkan_core.h:7931
procedure vkCmdCopyBuffer2KHR (commandBuffer : VkCommandBuffer; pCopyBufferInfo : System.Address); -- vulkan_core.h:7934
pragma Import (C, vkCmdCopyBuffer2KHR, "vkCmdCopyBuffer2KHR");
procedure vkCmdCopyImage2KHR (commandBuffer : VkCommandBuffer; pCopyImageInfo : System.Address); -- vulkan_core.h:7938
pragma Import (C, vkCmdCopyImage2KHR, "vkCmdCopyImage2KHR");
procedure vkCmdCopyBufferToImage2KHR (commandBuffer : VkCommandBuffer; pCopyBufferToImageInfo : System.Address); -- vulkan_core.h:7942
pragma Import (C, vkCmdCopyBufferToImage2KHR, "vkCmdCopyBufferToImage2KHR");
procedure vkCmdCopyImageToBuffer2KHR (commandBuffer : VkCommandBuffer; pCopyImageToBufferInfo : System.Address); -- vulkan_core.h:7946
pragma Import (C, vkCmdCopyImageToBuffer2KHR, "vkCmdCopyImageToBuffer2KHR");
procedure vkCmdBlitImage2KHR (commandBuffer : VkCommandBuffer; pBlitImageInfo : System.Address); -- vulkan_core.h:7950
pragma Import (C, vkCmdBlitImage2KHR, "vkCmdBlitImage2KHR");
procedure vkCmdResolveImage2KHR (commandBuffer : VkCommandBuffer; pResolveImageInfo : System.Address); -- vulkan_core.h:7954
pragma Import (C, vkCmdResolveImage2KHR, "vkCmdResolveImage2KHR");
type VkDebugReportCallbackEXT is new System.Address; -- vulkan_core.h:7961
-- skipped empty struct VkDebugReportCallbackEXT_T
subtype VkDebugReportObjectTypeEXT is unsigned;
VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT : constant VkDebugReportObjectTypeEXT := 0;
VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT : constant VkDebugReportObjectTypeEXT := 1;
VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT : constant VkDebugReportObjectTypeEXT := 2;
VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT : constant VkDebugReportObjectTypeEXT := 3;
VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT : constant VkDebugReportObjectTypeEXT := 4;
VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT : constant VkDebugReportObjectTypeEXT := 5;
VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT : constant VkDebugReportObjectTypeEXT := 6;
VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT : constant VkDebugReportObjectTypeEXT := 7;
VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT : constant VkDebugReportObjectTypeEXT := 8;
VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT : constant VkDebugReportObjectTypeEXT := 9;
VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT : constant VkDebugReportObjectTypeEXT := 10;
VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT : constant VkDebugReportObjectTypeEXT := 11;
VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT : constant VkDebugReportObjectTypeEXT := 12;
VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT : constant VkDebugReportObjectTypeEXT := 13;
VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT : constant VkDebugReportObjectTypeEXT := 14;
VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT : constant VkDebugReportObjectTypeEXT := 15;
VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT : constant VkDebugReportObjectTypeEXT := 16;
VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT : constant VkDebugReportObjectTypeEXT := 17;
VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT : constant VkDebugReportObjectTypeEXT := 18;
VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT : constant VkDebugReportObjectTypeEXT := 19;
VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT : constant VkDebugReportObjectTypeEXT := 20;
VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT : constant VkDebugReportObjectTypeEXT := 21;
VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT : constant VkDebugReportObjectTypeEXT := 22;
VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT : constant VkDebugReportObjectTypeEXT := 23;
VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT : constant VkDebugReportObjectTypeEXT := 24;
VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT : constant VkDebugReportObjectTypeEXT := 25;
VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT : constant VkDebugReportObjectTypeEXT := 26;
VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT : constant VkDebugReportObjectTypeEXT := 27;
VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT : constant VkDebugReportObjectTypeEXT := 28;
VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT : constant VkDebugReportObjectTypeEXT := 29;
VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT : constant VkDebugReportObjectTypeEXT := 30;
VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT : constant VkDebugReportObjectTypeEXT := 33;
VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT : constant VkDebugReportObjectTypeEXT := 1000156000;
VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT : constant VkDebugReportObjectTypeEXT := 1000085000;
VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT : constant VkDebugReportObjectTypeEXT := 1000150000;
VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_NV_EXT : constant VkDebugReportObjectTypeEXT := 1000165000;
VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT : constant VkDebugReportObjectTypeEXT := 28;
VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT : constant VkDebugReportObjectTypeEXT := 33;
VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR_EXT : constant VkDebugReportObjectTypeEXT := 1000085000;
VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR_EXT : constant VkDebugReportObjectTypeEXT := 1000156000;
VK_DEBUG_REPORT_OBJECT_TYPE_MAX_ENUM_EXT : constant VkDebugReportObjectTypeEXT := 2147483647; -- vulkan_core.h:7965
subtype VkDebugReportFlagBitsEXT is unsigned;
VK_DEBUG_REPORT_INFORMATION_BIT_EXT : constant VkDebugReportFlagBitsEXT := 1;
VK_DEBUG_REPORT_WARNING_BIT_EXT : constant VkDebugReportFlagBitsEXT := 2;
VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT : constant VkDebugReportFlagBitsEXT := 4;
VK_DEBUG_REPORT_ERROR_BIT_EXT : constant VkDebugReportFlagBitsEXT := 8;
VK_DEBUG_REPORT_DEBUG_BIT_EXT : constant VkDebugReportFlagBitsEXT := 16;
VK_DEBUG_REPORT_FLAG_BITS_MAX_ENUM_EXT : constant VkDebugReportFlagBitsEXT := 2147483647; -- vulkan_core.h:8009
subtype VkDebugReportFlagsEXT is VkFlags; -- vulkan_core.h:8017
type PFN_vkDebugReportCallbackEXT is access function
(arg1 : VkDebugReportFlagsEXT;
arg2 : VkDebugReportObjectTypeEXT;
arg3 : stdint_h.uint64_t;
arg4 : crtdefs_h.size_t;
arg5 : stdint_h.int32_t;
arg6 : Interfaces.C.Strings.chars_ptr;
arg7 : Interfaces.C.Strings.chars_ptr;
arg8 : System.Address) return VkBool32;
pragma Convention (C, PFN_vkDebugReportCallbackEXT); -- vulkan_core.h:8018
type VkDebugReportCallbackCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8029
pNext : System.Address; -- vulkan_core.h:8030
flags : aliased VkDebugReportFlagsEXT; -- vulkan_core.h:8031
pfnCallback : PFN_vkDebugReportCallbackEXT; -- vulkan_core.h:8032
pUserData : System.Address; -- vulkan_core.h:8033
end record;
pragma Convention (C_Pass_By_Copy, VkDebugReportCallbackCreateInfoEXT); -- vulkan_core.h:8028
type PFN_vkCreateDebugReportCallbackEXT is access function
(arg1 : VkInstance;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDebugReportCallbackEXT); -- vulkan_core.h:8036
type PFN_vkDestroyDebugReportCallbackEXT is access procedure
(arg1 : VkInstance;
arg2 : VkDebugReportCallbackEXT;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyDebugReportCallbackEXT); -- vulkan_core.h:8037
type PFN_vkDebugReportMessageEXT is access procedure
(arg1 : VkInstance;
arg2 : VkDebugReportFlagsEXT;
arg3 : VkDebugReportObjectTypeEXT;
arg4 : stdint_h.uint64_t;
arg5 : crtdefs_h.size_t;
arg6 : stdint_h.int32_t;
arg7 : Interfaces.C.Strings.chars_ptr;
arg8 : Interfaces.C.Strings.chars_ptr);
pragma Convention (C, PFN_vkDebugReportMessageEXT); -- vulkan_core.h:8038
function vkCreateDebugReportCallbackEXT
(instance : VkInstance;
pCreateInfo : System.Address;
pAllocator : System.Address;
pCallback : System.Address) return VkResult; -- vulkan_core.h:8041
pragma Import (C, vkCreateDebugReportCallbackEXT, "vkCreateDebugReportCallbackEXT");
procedure vkDestroyDebugReportCallbackEXT
(instance : VkInstance;
callback : VkDebugReportCallbackEXT;
pAllocator : System.Address); -- vulkan_core.h:8047
pragma Import (C, vkDestroyDebugReportCallbackEXT, "vkDestroyDebugReportCallbackEXT");
procedure vkDebugReportMessageEXT
(instance : VkInstance;
flags : VkDebugReportFlagsEXT;
objectType : VkDebugReportObjectTypeEXT;
object : stdint_h.uint64_t;
location : crtdefs_h.size_t;
messageCode : stdint_h.int32_t;
pLayerPrefix : Interfaces.C.Strings.chars_ptr;
pMessage : Interfaces.C.Strings.chars_ptr); -- vulkan_core.h:8052
pragma Import (C, vkDebugReportMessageEXT, "vkDebugReportMessageEXT");
subtype VkRasterizationOrderAMD is unsigned;
VK_RASTERIZATION_ORDER_STRICT_AMD : constant VkRasterizationOrderAMD := 0;
VK_RASTERIZATION_ORDER_RELAXED_AMD : constant VkRasterizationOrderAMD := 1;
VK_RASTERIZATION_ORDER_MAX_ENUM_AMD : constant VkRasterizationOrderAMD := 2147483647; -- vulkan_core.h:8083
type VkPipelineRasterizationStateRasterizationOrderAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:8089
pNext : System.Address; -- vulkan_core.h:8090
rasterizationOrder : aliased VkRasterizationOrderAMD; -- vulkan_core.h:8091
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineRasterizationStateRasterizationOrderAMD); -- vulkan_core.h:8088
type VkDebugMarkerObjectNameInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8110
pNext : System.Address; -- vulkan_core.h:8111
objectType : aliased VkDebugReportObjectTypeEXT; -- vulkan_core.h:8112
object : aliased stdint_h.uint64_t; -- vulkan_core.h:8113
pObjectName : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:8114
end record;
pragma Convention (C_Pass_By_Copy, VkDebugMarkerObjectNameInfoEXT); -- vulkan_core.h:8109
type VkDebugMarkerObjectTagInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8118
pNext : System.Address; -- vulkan_core.h:8119
objectType : aliased VkDebugReportObjectTypeEXT; -- vulkan_core.h:8120
object : aliased stdint_h.uint64_t; -- vulkan_core.h:8121
tagName : aliased stdint_h.uint64_t; -- vulkan_core.h:8122
tagSize : aliased crtdefs_h.size_t; -- vulkan_core.h:8123
pTag : System.Address; -- vulkan_core.h:8124
end record;
pragma Convention (C_Pass_By_Copy, VkDebugMarkerObjectTagInfoEXT); -- vulkan_core.h:8117
type VkDebugMarkerMarkerInfoEXT_color_array is array (0 .. 3) of aliased float;
type VkDebugMarkerMarkerInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8128
pNext : System.Address; -- vulkan_core.h:8129
pMarkerName : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:8130
color : aliased VkDebugMarkerMarkerInfoEXT_color_array; -- vulkan_core.h:8131
end record;
pragma Convention (C_Pass_By_Copy, VkDebugMarkerMarkerInfoEXT); -- vulkan_core.h:8127
type PFN_vkDebugMarkerSetObjectTagEXT is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkDebugMarkerSetObjectTagEXT); -- vulkan_core.h:8134
type PFN_vkDebugMarkerSetObjectNameEXT is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkDebugMarkerSetObjectNameEXT); -- vulkan_core.h:8135
type PFN_vkCmdDebugMarkerBeginEXT is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdDebugMarkerBeginEXT); -- vulkan_core.h:8136
type PFN_vkCmdDebugMarkerEndEXT is access procedure (arg1 : VkCommandBuffer);
pragma Convention (C, PFN_vkCmdDebugMarkerEndEXT); -- vulkan_core.h:8137
type PFN_vkCmdDebugMarkerInsertEXT is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdDebugMarkerInsertEXT); -- vulkan_core.h:8138
function vkDebugMarkerSetObjectTagEXT (device : VkDevice; pTagInfo : System.Address) return VkResult; -- vulkan_core.h:8141
pragma Import (C, vkDebugMarkerSetObjectTagEXT, "vkDebugMarkerSetObjectTagEXT");
function vkDebugMarkerSetObjectNameEXT (device : VkDevice; pNameInfo : System.Address) return VkResult; -- vulkan_core.h:8145
pragma Import (C, vkDebugMarkerSetObjectNameEXT, "vkDebugMarkerSetObjectNameEXT");
procedure vkCmdDebugMarkerBeginEXT (commandBuffer : VkCommandBuffer; pMarkerInfo : System.Address); -- vulkan_core.h:8149
pragma Import (C, vkCmdDebugMarkerBeginEXT, "vkCmdDebugMarkerBeginEXT");
procedure vkCmdDebugMarkerEndEXT (commandBuffer : VkCommandBuffer); -- vulkan_core.h:8153
pragma Import (C, vkCmdDebugMarkerEndEXT, "vkCmdDebugMarkerEndEXT");
procedure vkCmdDebugMarkerInsertEXT (commandBuffer : VkCommandBuffer; pMarkerInfo : System.Address); -- vulkan_core.h:8156
pragma Import (C, vkCmdDebugMarkerInsertEXT, "vkCmdDebugMarkerInsertEXT");
type VkDedicatedAllocationImageCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8171
pNext : System.Address; -- vulkan_core.h:8172
dedicatedAllocation : aliased VkBool32; -- vulkan_core.h:8173
end record;
pragma Convention (C_Pass_By_Copy, VkDedicatedAllocationImageCreateInfoNV); -- vulkan_core.h:8170
type VkDedicatedAllocationBufferCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8177
pNext : System.Address; -- vulkan_core.h:8178
dedicatedAllocation : aliased VkBool32; -- vulkan_core.h:8179
end record;
pragma Convention (C_Pass_By_Copy, VkDedicatedAllocationBufferCreateInfoNV); -- vulkan_core.h:8176
type VkDedicatedAllocationMemoryAllocateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8183
pNext : System.Address; -- vulkan_core.h:8184
image : VkImage; -- vulkan_core.h:8185
buffer : VkBuffer; -- vulkan_core.h:8186
end record;
pragma Convention (C_Pass_By_Copy, VkDedicatedAllocationMemoryAllocateInfoNV); -- vulkan_core.h:8182
subtype VkPipelineRasterizationStateStreamCreateFlagsEXT is VkFlags; -- vulkan_core.h:8194
type VkPhysicalDeviceTransformFeedbackFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8196
pNext : System.Address; -- vulkan_core.h:8197
transformFeedback : aliased VkBool32; -- vulkan_core.h:8198
geometryStreams : aliased VkBool32; -- vulkan_core.h:8199
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceTransformFeedbackFeaturesEXT); -- vulkan_core.h:8195
type VkPhysicalDeviceTransformFeedbackPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8203
pNext : System.Address; -- vulkan_core.h:8204
maxTransformFeedbackStreams : aliased stdint_h.uint32_t; -- vulkan_core.h:8205
maxTransformFeedbackBuffers : aliased stdint_h.uint32_t; -- vulkan_core.h:8206
maxTransformFeedbackBufferSize : aliased VkDeviceSize; -- vulkan_core.h:8207
maxTransformFeedbackStreamDataSize : aliased stdint_h.uint32_t; -- vulkan_core.h:8208
maxTransformFeedbackBufferDataSize : aliased stdint_h.uint32_t; -- vulkan_core.h:8209
maxTransformFeedbackBufferDataStride : aliased stdint_h.uint32_t; -- vulkan_core.h:8210
transformFeedbackQueries : aliased VkBool32; -- vulkan_core.h:8211
transformFeedbackStreamsLinesTriangles : aliased VkBool32; -- vulkan_core.h:8212
transformFeedbackRasterizationStreamSelect : aliased VkBool32; -- vulkan_core.h:8213
transformFeedbackDraw : aliased VkBool32; -- vulkan_core.h:8214
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceTransformFeedbackPropertiesEXT); -- vulkan_core.h:8202
type VkPipelineRasterizationStateStreamCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8218
pNext : System.Address; -- vulkan_core.h:8219
flags : aliased VkPipelineRasterizationStateStreamCreateFlagsEXT; -- vulkan_core.h:8220
rasterizationStream : aliased stdint_h.uint32_t; -- vulkan_core.h:8221
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineRasterizationStateStreamCreateInfoEXT); -- vulkan_core.h:8217
type PFN_vkCmdBindTransformFeedbackBuffersEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : access VkDeviceSize;
arg6 : access VkDeviceSize);
pragma Convention (C, PFN_vkCmdBindTransformFeedbackBuffersEXT); -- vulkan_core.h:8224
type PFN_vkCmdBeginTransformFeedbackEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : access VkDeviceSize);
pragma Convention (C, PFN_vkCmdBeginTransformFeedbackEXT); -- vulkan_core.h:8225
type PFN_vkCmdEndTransformFeedbackEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : access VkDeviceSize);
pragma Convention (C, PFN_vkCmdEndTransformFeedbackEXT); -- vulkan_core.h:8226
type PFN_vkCmdBeginQueryIndexedEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : VkQueryControlFlags;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdBeginQueryIndexedEXT); -- vulkan_core.h:8227
type PFN_vkCmdEndQueryIndexedEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdEndQueryIndexedEXT); -- vulkan_core.h:8228
type PFN_vkCmdDrawIndirectByteCountEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndirectByteCountEXT); -- vulkan_core.h:8229
procedure vkCmdBindTransformFeedbackBuffersEXT
(commandBuffer : VkCommandBuffer;
firstBinding : stdint_h.uint32_t;
bindingCount : stdint_h.uint32_t;
pBuffers : System.Address;
pOffsets : access VkDeviceSize;
pSizes : access VkDeviceSize); -- vulkan_core.h:8232
pragma Import (C, vkCmdBindTransformFeedbackBuffersEXT, "vkCmdBindTransformFeedbackBuffersEXT");
procedure vkCmdBeginTransformFeedbackEXT
(commandBuffer : VkCommandBuffer;
firstCounterBuffer : stdint_h.uint32_t;
counterBufferCount : stdint_h.uint32_t;
pCounterBuffers : System.Address;
pCounterBufferOffsets : access VkDeviceSize); -- vulkan_core.h:8240
pragma Import (C, vkCmdBeginTransformFeedbackEXT, "vkCmdBeginTransformFeedbackEXT");
procedure vkCmdEndTransformFeedbackEXT
(commandBuffer : VkCommandBuffer;
firstCounterBuffer : stdint_h.uint32_t;
counterBufferCount : stdint_h.uint32_t;
pCounterBuffers : System.Address;
pCounterBufferOffsets : access VkDeviceSize); -- vulkan_core.h:8247
pragma Import (C, vkCmdEndTransformFeedbackEXT, "vkCmdEndTransformFeedbackEXT");
procedure vkCmdBeginQueryIndexedEXT
(commandBuffer : VkCommandBuffer;
queryPool : VkQueryPool;
query : stdint_h.uint32_t;
flags : VkQueryControlFlags;
index : stdint_h.uint32_t); -- vulkan_core.h:8254
pragma Import (C, vkCmdBeginQueryIndexedEXT, "vkCmdBeginQueryIndexedEXT");
procedure vkCmdEndQueryIndexedEXT
(commandBuffer : VkCommandBuffer;
queryPool : VkQueryPool;
query : stdint_h.uint32_t;
index : stdint_h.uint32_t); -- vulkan_core.h:8261
pragma Import (C, vkCmdEndQueryIndexedEXT, "vkCmdEndQueryIndexedEXT");
procedure vkCmdDrawIndirectByteCountEXT
(commandBuffer : VkCommandBuffer;
instanceCount : stdint_h.uint32_t;
firstInstance : stdint_h.uint32_t;
counterBuffer : VkBuffer;
counterBufferOffset : VkDeviceSize;
counterOffset : stdint_h.uint32_t;
vertexStride : stdint_h.uint32_t); -- vulkan_core.h:8267
pragma Import (C, vkCmdDrawIndirectByteCountEXT, "vkCmdDrawIndirectByteCountEXT");
type VkImageViewHandleInfoNVX is record
sType : aliased VkStructureType; -- vulkan_core.h:8282
pNext : System.Address; -- vulkan_core.h:8283
imageView : VkImageView; -- vulkan_core.h:8284
descriptorType : aliased VkDescriptorType; -- vulkan_core.h:8285
sampler : VkSampler; -- vulkan_core.h:8286
end record;
pragma Convention (C_Pass_By_Copy, VkImageViewHandleInfoNVX); -- vulkan_core.h:8281
type VkImageViewAddressPropertiesNVX is record
sType : aliased VkStructureType; -- vulkan_core.h:8290
pNext : System.Address; -- vulkan_core.h:8291
deviceAddress : aliased VkDeviceAddress; -- vulkan_core.h:8292
size : aliased VkDeviceSize; -- vulkan_core.h:8293
end record;
pragma Convention (C_Pass_By_Copy, VkImageViewAddressPropertiesNVX); -- vulkan_core.h:8289
type PFN_vkGetImageViewHandleNVX is access function (arg1 : VkDevice; arg2 : System.Address) return stdint_h.uint32_t;
pragma Convention (C, PFN_vkGetImageViewHandleNVX); -- vulkan_core.h:8296
type PFN_vkGetImageViewAddressNVX is access function
(arg1 : VkDevice;
arg2 : VkImageView;
arg3 : access VkImageViewAddressPropertiesNVX) return VkResult;
pragma Convention (C, PFN_vkGetImageViewAddressNVX); -- vulkan_core.h:8297
function vkGetImageViewHandleNVX (device : VkDevice; pInfo : System.Address) return stdint_h.uint32_t; -- vulkan_core.h:8300
pragma Import (C, vkGetImageViewHandleNVX, "vkGetImageViewHandleNVX");
function vkGetImageViewAddressNVX
(device : VkDevice;
imageView : VkImageView;
pProperties : access VkImageViewAddressPropertiesNVX) return VkResult; -- vulkan_core.h:8304
pragma Import (C, vkGetImageViewAddressNVX, "vkGetImageViewAddressNVX");
type PFN_vkCmdDrawIndirectCountAMD is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndirectCountAMD); -- vulkan_core.h:8314
type PFN_vkCmdDrawIndexedIndirectCountAMD is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawIndexedIndirectCountAMD); -- vulkan_core.h:8315
procedure vkCmdDrawIndirectCountAMD
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
countBuffer : VkBuffer;
countBufferOffset : VkDeviceSize;
maxDrawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:8318
pragma Import (C, vkCmdDrawIndirectCountAMD, "vkCmdDrawIndirectCountAMD");
procedure vkCmdDrawIndexedIndirectCountAMD
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
countBuffer : VkBuffer;
countBufferOffset : VkDeviceSize;
maxDrawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:8327
pragma Import (C, vkCmdDrawIndexedIndirectCountAMD, "vkCmdDrawIndexedIndirectCountAMD");
type VkTextureLODGatherFormatPropertiesAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:8357
pNext : System.Address; -- vulkan_core.h:8358
supportsTextureGatherLODBiasAMD : aliased VkBool32; -- vulkan_core.h:8359
end record;
pragma Convention (C_Pass_By_Copy, VkTextureLODGatherFormatPropertiesAMD); -- vulkan_core.h:8356
subtype VkShaderInfoTypeAMD is unsigned;
VK_SHADER_INFO_TYPE_STATISTICS_AMD : constant VkShaderInfoTypeAMD := 0;
VK_SHADER_INFO_TYPE_BINARY_AMD : constant VkShaderInfoTypeAMD := 1;
VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD : constant VkShaderInfoTypeAMD := 2;
VK_SHADER_INFO_TYPE_MAX_ENUM_AMD : constant VkShaderInfoTypeAMD := 2147483647; -- vulkan_core.h:8368
type VkShaderResourceUsageAMD is record
numUsedVgprs : aliased stdint_h.uint32_t; -- vulkan_core.h:8375
numUsedSgprs : aliased stdint_h.uint32_t; -- vulkan_core.h:8376
ldsSizePerLocalWorkGroup : aliased stdint_h.uint32_t; -- vulkan_core.h:8377
ldsUsageSizeInBytes : aliased crtdefs_h.size_t; -- vulkan_core.h:8378
scratchMemUsageInBytes : aliased crtdefs_h.size_t; -- vulkan_core.h:8379
end record;
pragma Convention (C_Pass_By_Copy, VkShaderResourceUsageAMD); -- vulkan_core.h:8374
type VkShaderStatisticsInfoAMD_computeWorkGroupSize_array is array (0 .. 2) of aliased stdint_h.uint32_t;
type VkShaderStatisticsInfoAMD is record
shaderStageMask : aliased VkShaderStageFlags; -- vulkan_core.h:8383
resourceUsage : aliased VkShaderResourceUsageAMD; -- vulkan_core.h:8384
numPhysicalVgprs : aliased stdint_h.uint32_t; -- vulkan_core.h:8385
numPhysicalSgprs : aliased stdint_h.uint32_t; -- vulkan_core.h:8386
numAvailableVgprs : aliased stdint_h.uint32_t; -- vulkan_core.h:8387
numAvailableSgprs : aliased stdint_h.uint32_t; -- vulkan_core.h:8388
computeWorkGroupSize : aliased VkShaderStatisticsInfoAMD_computeWorkGroupSize_array; -- vulkan_core.h:8389
end record;
pragma Convention (C_Pass_By_Copy, VkShaderStatisticsInfoAMD); -- vulkan_core.h:8382
type PFN_vkGetShaderInfoAMD is access function
(arg1 : VkDevice;
arg2 : VkPipeline;
arg3 : VkShaderStageFlagBits;
arg4 : VkShaderInfoTypeAMD;
arg5 : access crtdefs_h.size_t;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetShaderInfoAMD); -- vulkan_core.h:8392
function vkGetShaderInfoAMD
(device : VkDevice;
pipeline : VkPipeline;
shaderStage : VkShaderStageFlagBits;
infoType : VkShaderInfoTypeAMD;
pInfoSize : access crtdefs_h.size_t;
pInfo : System.Address) return VkResult; -- vulkan_core.h:8395
pragma Import (C, vkGetShaderInfoAMD, "vkGetShaderInfoAMD");
type VkPhysicalDeviceCornerSampledImageFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8414
pNext : System.Address; -- vulkan_core.h:8415
cornerSampledImage : aliased VkBool32; -- vulkan_core.h:8416
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceCornerSampledImageFeaturesNV); -- vulkan_core.h:8413
subtype VkExternalMemoryHandleTypeFlagBitsNV is unsigned;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV : constant VkExternalMemoryHandleTypeFlagBitsNV := 1;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV : constant VkExternalMemoryHandleTypeFlagBitsNV := 2;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV : constant VkExternalMemoryHandleTypeFlagBitsNV := 4;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV : constant VkExternalMemoryHandleTypeFlagBitsNV := 8;
VK_EXTERNAL_MEMORY_HANDLE_TYPE_FLAG_BITS_MAX_ENUM_NV : constant VkExternalMemoryHandleTypeFlagBitsNV := 2147483647; -- vulkan_core.h:8430
subtype VkExternalMemoryHandleTypeFlagsNV is VkFlags; -- vulkan_core.h:8437
subtype VkExternalMemoryFeatureFlagBitsNV is unsigned;
VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV : constant VkExternalMemoryFeatureFlagBitsNV := 1;
VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV : constant VkExternalMemoryFeatureFlagBitsNV := 2;
VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV : constant VkExternalMemoryFeatureFlagBitsNV := 4;
VK_EXTERNAL_MEMORY_FEATURE_FLAG_BITS_MAX_ENUM_NV : constant VkExternalMemoryFeatureFlagBitsNV := 2147483647; -- vulkan_core.h:8439
subtype VkExternalMemoryFeatureFlagsNV is VkFlags; -- vulkan_core.h:8445
type VkExternalImageFormatPropertiesNV is record
imageFormatProperties : aliased VkImageFormatProperties; -- vulkan_core.h:8447
externalMemoryFeatures : aliased VkExternalMemoryFeatureFlagsNV; -- vulkan_core.h:8448
exportFromImportedHandleTypes : aliased VkExternalMemoryHandleTypeFlagsNV; -- vulkan_core.h:8449
compatibleHandleTypes : aliased VkExternalMemoryHandleTypeFlagsNV; -- vulkan_core.h:8450
end record;
pragma Convention (C_Pass_By_Copy, VkExternalImageFormatPropertiesNV); -- vulkan_core.h:8446
type PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV is access function
(arg1 : VkPhysicalDevice;
arg2 : VkFormat;
arg3 : VkImageType;
arg4 : VkImageTiling;
arg5 : VkImageUsageFlags;
arg6 : VkImageCreateFlags;
arg7 : VkExternalMemoryHandleTypeFlagsNV;
arg8 : access VkExternalImageFormatPropertiesNV) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV); -- vulkan_core.h:8453
function vkGetPhysicalDeviceExternalImageFormatPropertiesNV
(physicalDevice : VkPhysicalDevice;
format : VkFormat;
c_type : VkImageType;
tiling : VkImageTiling;
usage : VkImageUsageFlags;
flags : VkImageCreateFlags;
externalHandleType : VkExternalMemoryHandleTypeFlagsNV;
pExternalImageFormatProperties : access VkExternalImageFormatPropertiesNV) return VkResult; -- vulkan_core.h:8456
pragma Import (C, vkGetPhysicalDeviceExternalImageFormatPropertiesNV, "vkGetPhysicalDeviceExternalImageFormatPropertiesNV");
type VkExternalMemoryImageCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8472
pNext : System.Address; -- vulkan_core.h:8473
handleTypes : aliased VkExternalMemoryHandleTypeFlagsNV; -- vulkan_core.h:8474
end record;
pragma Convention (C_Pass_By_Copy, VkExternalMemoryImageCreateInfoNV); -- vulkan_core.h:8471
type VkExportMemoryAllocateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8478
pNext : System.Address; -- vulkan_core.h:8479
handleTypes : aliased VkExternalMemoryHandleTypeFlagsNV; -- vulkan_core.h:8480
end record;
pragma Convention (C_Pass_By_Copy, VkExportMemoryAllocateInfoNV); -- vulkan_core.h:8477
subtype VkValidationCheckEXT is unsigned;
VK_VALIDATION_CHECK_ALL_EXT : constant VkValidationCheckEXT := 0;
VK_VALIDATION_CHECK_SHADERS_EXT : constant VkValidationCheckEXT := 1;
VK_VALIDATION_CHECK_MAX_ENUM_EXT : constant VkValidationCheckEXT := 2147483647; -- vulkan_core.h:8489
type VkValidationFlagsEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8495
pNext : System.Address; -- vulkan_core.h:8496
disabledValidationCheckCount : aliased stdint_h.uint32_t; -- vulkan_core.h:8497
pDisabledValidationChecks : System.Address; -- vulkan_core.h:8498
end record;
pragma Convention (C_Pass_By_Copy, VkValidationFlagsEXT); -- vulkan_core.h:8494
type VkPhysicalDeviceTextureCompressionASTCHDRFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8517
pNext : System.Address; -- vulkan_core.h:8518
textureCompressionASTC_HDR : aliased VkBool32; -- vulkan_core.h:8519
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceTextureCompressionASTCHDRFeaturesEXT); -- vulkan_core.h:8516
type VkImageViewASTCDecodeModeEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8528
pNext : System.Address; -- vulkan_core.h:8529
decodeMode : aliased VkFormat; -- vulkan_core.h:8530
end record;
pragma Convention (C_Pass_By_Copy, VkImageViewASTCDecodeModeEXT); -- vulkan_core.h:8527
type VkPhysicalDeviceASTCDecodeFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8534
pNext : System.Address; -- vulkan_core.h:8535
decodeModeSharedExponent : aliased VkBool32; -- vulkan_core.h:8536
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceASTCDecodeFeaturesEXT); -- vulkan_core.h:8533
subtype VkConditionalRenderingFlagBitsEXT is unsigned;
VK_CONDITIONAL_RENDERING_INVERTED_BIT_EXT : constant VkConditionalRenderingFlagBitsEXT := 1;
VK_CONDITIONAL_RENDERING_FLAG_BITS_MAX_ENUM_EXT : constant VkConditionalRenderingFlagBitsEXT := 2147483647; -- vulkan_core.h:8545
subtype VkConditionalRenderingFlagsEXT is VkFlags; -- vulkan_core.h:8549
type VkConditionalRenderingBeginInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8551
pNext : System.Address; -- vulkan_core.h:8552
buffer : VkBuffer; -- vulkan_core.h:8553
offset : aliased VkDeviceSize; -- vulkan_core.h:8554
flags : aliased VkConditionalRenderingFlagsEXT; -- vulkan_core.h:8555
end record;
pragma Convention (C_Pass_By_Copy, VkConditionalRenderingBeginInfoEXT); -- vulkan_core.h:8550
type VkPhysicalDeviceConditionalRenderingFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8559
pNext : System.Address; -- vulkan_core.h:8560
conditionalRendering : aliased VkBool32; -- vulkan_core.h:8561
inheritedConditionalRendering : aliased VkBool32; -- vulkan_core.h:8562
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceConditionalRenderingFeaturesEXT); -- vulkan_core.h:8558
type VkCommandBufferInheritanceConditionalRenderingInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8566
pNext : System.Address; -- vulkan_core.h:8567
conditionalRenderingEnable : aliased VkBool32; -- vulkan_core.h:8568
end record;
pragma Convention (C_Pass_By_Copy, VkCommandBufferInheritanceConditionalRenderingInfoEXT); -- vulkan_core.h:8565
type PFN_vkCmdBeginConditionalRenderingEXT is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdBeginConditionalRenderingEXT); -- vulkan_core.h:8571
type PFN_vkCmdEndConditionalRenderingEXT is access procedure (arg1 : VkCommandBuffer);
pragma Convention (C, PFN_vkCmdEndConditionalRenderingEXT); -- vulkan_core.h:8572
procedure vkCmdBeginConditionalRenderingEXT (commandBuffer : VkCommandBuffer; pConditionalRenderingBegin : System.Address); -- vulkan_core.h:8575
pragma Import (C, vkCmdBeginConditionalRenderingEXT, "vkCmdBeginConditionalRenderingEXT");
procedure vkCmdEndConditionalRenderingEXT (commandBuffer : VkCommandBuffer); -- vulkan_core.h:8579
pragma Import (C, vkCmdEndConditionalRenderingEXT, "vkCmdEndConditionalRenderingEXT");
type VkViewportWScalingNV is record
xcoeff : aliased float; -- vulkan_core.h:8588
ycoeff : aliased float; -- vulkan_core.h:8589
end record;
pragma Convention (C_Pass_By_Copy, VkViewportWScalingNV); -- vulkan_core.h:8587
type VkPipelineViewportWScalingStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8593
pNext : System.Address; -- vulkan_core.h:8594
viewportWScalingEnable : aliased VkBool32; -- vulkan_core.h:8595
viewportCount : aliased stdint_h.uint32_t; -- vulkan_core.h:8596
pViewportWScalings : System.Address; -- vulkan_core.h:8597
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineViewportWScalingStateCreateInfoNV); -- vulkan_core.h:8592
type PFN_vkCmdSetViewportWScalingNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdSetViewportWScalingNV); -- vulkan_core.h:8600
procedure vkCmdSetViewportWScalingNV
(commandBuffer : VkCommandBuffer;
firstViewport : stdint_h.uint32_t;
viewportCount : stdint_h.uint32_t;
pViewportWScalings : System.Address); -- vulkan_core.h:8603
pragma Import (C, vkCmdSetViewportWScalingNV, "vkCmdSetViewportWScalingNV");
type PFN_vkReleaseDisplayEXT is access function (arg1 : VkPhysicalDevice; arg2 : VkDisplayKHR) return VkResult;
pragma Convention (C, PFN_vkReleaseDisplayEXT); -- vulkan_core.h:8614
function vkReleaseDisplayEXT (physicalDevice : VkPhysicalDevice; display : VkDisplayKHR) return VkResult; -- vulkan_core.h:8617
pragma Import (C, vkReleaseDisplayEXT, "vkReleaseDisplayEXT");
subtype VkSurfaceCounterFlagBitsEXT is unsigned;
VK_SURFACE_COUNTER_VBLANK_BIT_EXT : constant VkSurfaceCounterFlagBitsEXT := 1;
VK_SURFACE_COUNTER_VBLANK_EXT : constant VkSurfaceCounterFlagBitsEXT := 1;
VK_SURFACE_COUNTER_FLAG_BITS_MAX_ENUM_EXT : constant VkSurfaceCounterFlagBitsEXT := 2147483647; -- vulkan_core.h:8627
subtype VkSurfaceCounterFlagsEXT is VkFlags; -- vulkan_core.h:8632
type VkSurfaceCapabilities2EXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8634
pNext : System.Address; -- vulkan_core.h:8635
minImageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:8636
maxImageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:8637
currentExtent : aliased VkExtent2D; -- vulkan_core.h:8638
minImageExtent : aliased VkExtent2D; -- vulkan_core.h:8639
maxImageExtent : aliased VkExtent2D; -- vulkan_core.h:8640
maxImageArrayLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:8641
supportedTransforms : aliased VkSurfaceTransformFlagsKHR; -- vulkan_core.h:8642
currentTransform : aliased VkSurfaceTransformFlagBitsKHR; -- vulkan_core.h:8643
supportedCompositeAlpha : aliased VkCompositeAlphaFlagsKHR; -- vulkan_core.h:8644
supportedUsageFlags : aliased VkImageUsageFlags; -- vulkan_core.h:8645
supportedSurfaceCounters : aliased VkSurfaceCounterFlagsEXT; -- vulkan_core.h:8646
end record;
pragma Convention (C_Pass_By_Copy, VkSurfaceCapabilities2EXT); -- vulkan_core.h:8633
type PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT is access function
(arg1 : VkPhysicalDevice;
arg2 : VkSurfaceKHR;
arg3 : access VkSurfaceCapabilities2EXT) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT); -- vulkan_core.h:8649
function vkGetPhysicalDeviceSurfaceCapabilities2EXT
(physicalDevice : VkPhysicalDevice;
surface : VkSurfaceKHR;
pSurfaceCapabilities : access VkSurfaceCapabilities2EXT) return VkResult; -- vulkan_core.h:8652
pragma Import (C, vkGetPhysicalDeviceSurfaceCapabilities2EXT, "vkGetPhysicalDeviceSurfaceCapabilities2EXT");
subtype VkDisplayPowerStateEXT is unsigned;
VK_DISPLAY_POWER_STATE_OFF_EXT : constant VkDisplayPowerStateEXT := 0;
VK_DISPLAY_POWER_STATE_SUSPEND_EXT : constant VkDisplayPowerStateEXT := 1;
VK_DISPLAY_POWER_STATE_ON_EXT : constant VkDisplayPowerStateEXT := 2;
VK_DISPLAY_POWER_STATE_MAX_ENUM_EXT : constant VkDisplayPowerStateEXT := 2147483647; -- vulkan_core.h:8663
subtype VkDeviceEventTypeEXT is unsigned;
VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT : constant VkDeviceEventTypeEXT := 0;
VK_DEVICE_EVENT_TYPE_MAX_ENUM_EXT : constant VkDeviceEventTypeEXT := 2147483647; -- vulkan_core.h:8670
subtype VkDisplayEventTypeEXT is unsigned;
VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT : constant VkDisplayEventTypeEXT := 0;
VK_DISPLAY_EVENT_TYPE_MAX_ENUM_EXT : constant VkDisplayEventTypeEXT := 2147483647; -- vulkan_core.h:8675
type VkDisplayPowerInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8680
pNext : System.Address; -- vulkan_core.h:8681
powerState : aliased VkDisplayPowerStateEXT; -- vulkan_core.h:8682
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayPowerInfoEXT); -- vulkan_core.h:8679
type VkDeviceEventInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8686
pNext : System.Address; -- vulkan_core.h:8687
deviceEvent : aliased VkDeviceEventTypeEXT; -- vulkan_core.h:8688
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceEventInfoEXT); -- vulkan_core.h:8685
type VkDisplayEventInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8692
pNext : System.Address; -- vulkan_core.h:8693
displayEvent : aliased VkDisplayEventTypeEXT; -- vulkan_core.h:8694
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayEventInfoEXT); -- vulkan_core.h:8691
type VkSwapchainCounterCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8698
pNext : System.Address; -- vulkan_core.h:8699
surfaceCounters : aliased VkSurfaceCounterFlagsEXT; -- vulkan_core.h:8700
end record;
pragma Convention (C_Pass_By_Copy, VkSwapchainCounterCreateInfoEXT); -- vulkan_core.h:8697
type PFN_vkDisplayPowerControlEXT is access function
(arg1 : VkDevice;
arg2 : VkDisplayKHR;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkDisplayPowerControlEXT); -- vulkan_core.h:8703
type PFN_vkRegisterDeviceEventEXT is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkRegisterDeviceEventEXT); -- vulkan_core.h:8704
type PFN_vkRegisterDisplayEventEXT is access function
(arg1 : VkDevice;
arg2 : VkDisplayKHR;
arg3 : System.Address;
arg4 : System.Address;
arg5 : System.Address) return VkResult;
pragma Convention (C, PFN_vkRegisterDisplayEventEXT); -- vulkan_core.h:8705
type PFN_vkGetSwapchainCounterEXT is access function
(arg1 : VkDevice;
arg2 : VkSwapchainKHR;
arg3 : VkSurfaceCounterFlagBitsEXT;
arg4 : access stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkGetSwapchainCounterEXT); -- vulkan_core.h:8706
function vkDisplayPowerControlEXT
(device : VkDevice;
display : VkDisplayKHR;
pDisplayPowerInfo : System.Address) return VkResult; -- vulkan_core.h:8709
pragma Import (C, vkDisplayPowerControlEXT, "vkDisplayPowerControlEXT");
function vkRegisterDeviceEventEXT
(device : VkDevice;
pDeviceEventInfo : System.Address;
pAllocator : System.Address;
pFence : System.Address) return VkResult; -- vulkan_core.h:8714
pragma Import (C, vkRegisterDeviceEventEXT, "vkRegisterDeviceEventEXT");
function vkRegisterDisplayEventEXT
(device : VkDevice;
display : VkDisplayKHR;
pDisplayEventInfo : System.Address;
pAllocator : System.Address;
pFence : System.Address) return VkResult; -- vulkan_core.h:8720
pragma Import (C, vkRegisterDisplayEventEXT, "vkRegisterDisplayEventEXT");
function vkGetSwapchainCounterEXT
(device : VkDevice;
swapchain : VkSwapchainKHR;
counter : VkSurfaceCounterFlagBitsEXT;
pCounterValue : access stdint_h.uint64_t) return VkResult; -- vulkan_core.h:8727
pragma Import (C, vkGetSwapchainCounterEXT, "vkGetSwapchainCounterEXT");
type VkRefreshCycleDurationGOOGLE is record
refreshDuration : aliased stdint_h.uint64_t; -- vulkan_core.h:8739
end record;
pragma Convention (C_Pass_By_Copy, VkRefreshCycleDurationGOOGLE); -- vulkan_core.h:8738
type VkPastPresentationTimingGOOGLE is record
presentID : aliased stdint_h.uint32_t; -- vulkan_core.h:8743
desiredPresentTime : aliased stdint_h.uint64_t; -- vulkan_core.h:8744
actualPresentTime : aliased stdint_h.uint64_t; -- vulkan_core.h:8745
earliestPresentTime : aliased stdint_h.uint64_t; -- vulkan_core.h:8746
presentMargin : aliased stdint_h.uint64_t; -- vulkan_core.h:8747
end record;
pragma Convention (C_Pass_By_Copy, VkPastPresentationTimingGOOGLE); -- vulkan_core.h:8742
type VkPresentTimeGOOGLE is record
presentID : aliased stdint_h.uint32_t; -- vulkan_core.h:8751
desiredPresentTime : aliased stdint_h.uint64_t; -- vulkan_core.h:8752
end record;
pragma Convention (C_Pass_By_Copy, VkPresentTimeGOOGLE); -- vulkan_core.h:8750
type VkPresentTimesInfoGOOGLE is record
sType : aliased VkStructureType; -- vulkan_core.h:8756
pNext : System.Address; -- vulkan_core.h:8757
swapchainCount : aliased stdint_h.uint32_t; -- vulkan_core.h:8758
pTimes : System.Address; -- vulkan_core.h:8759
end record;
pragma Convention (C_Pass_By_Copy, VkPresentTimesInfoGOOGLE); -- vulkan_core.h:8755
type PFN_vkGetRefreshCycleDurationGOOGLE is access function
(arg1 : VkDevice;
arg2 : VkSwapchainKHR;
arg3 : access VkRefreshCycleDurationGOOGLE) return VkResult;
pragma Convention (C, PFN_vkGetRefreshCycleDurationGOOGLE); -- vulkan_core.h:8762
type PFN_vkGetPastPresentationTimingGOOGLE is access function
(arg1 : VkDevice;
arg2 : VkSwapchainKHR;
arg3 : access stdint_h.uint32_t;
arg4 : access VkPastPresentationTimingGOOGLE) return VkResult;
pragma Convention (C, PFN_vkGetPastPresentationTimingGOOGLE); -- vulkan_core.h:8763
function vkGetRefreshCycleDurationGOOGLE
(device : VkDevice;
swapchain : VkSwapchainKHR;
pDisplayTimingProperties : access VkRefreshCycleDurationGOOGLE) return VkResult; -- vulkan_core.h:8766
pragma Import (C, vkGetRefreshCycleDurationGOOGLE, "vkGetRefreshCycleDurationGOOGLE");
function vkGetPastPresentationTimingGOOGLE
(device : VkDevice;
swapchain : VkSwapchainKHR;
pPresentationTimingCount : access stdint_h.uint32_t;
pPresentationTimings : access VkPastPresentationTimingGOOGLE) return VkResult; -- vulkan_core.h:8771
pragma Import (C, vkGetPastPresentationTimingGOOGLE, "vkGetPastPresentationTimingGOOGLE");
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX is record
sType : aliased VkStructureType; -- vulkan_core.h:8798
pNext : System.Address; -- vulkan_core.h:8799
perViewPositionAllComponents : aliased VkBool32; -- vulkan_core.h:8800
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX); -- vulkan_core.h:8797
subtype VkViewportCoordinateSwizzleNV is unsigned;
VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_X_NV : constant VkViewportCoordinateSwizzleNV := 0;
VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_X_NV : constant VkViewportCoordinateSwizzleNV := 1;
VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Y_NV : constant VkViewportCoordinateSwizzleNV := 2;
VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Y_NV : constant VkViewportCoordinateSwizzleNV := 3;
VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Z_NV : constant VkViewportCoordinateSwizzleNV := 4;
VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Z_NV : constant VkViewportCoordinateSwizzleNV := 5;
VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_W_NV : constant VkViewportCoordinateSwizzleNV := 6;
VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_W_NV : constant VkViewportCoordinateSwizzleNV := 7;
VK_VIEWPORT_COORDINATE_SWIZZLE_MAX_ENUM_NV : constant VkViewportCoordinateSwizzleNV := 2147483647; -- vulkan_core.h:8809
subtype VkPipelineViewportSwizzleStateCreateFlagsNV is VkFlags; -- vulkan_core.h:8820
type VkViewportSwizzleNV is record
x : aliased VkViewportCoordinateSwizzleNV; -- vulkan_core.h:8822
y : aliased VkViewportCoordinateSwizzleNV; -- vulkan_core.h:8823
z : aliased VkViewportCoordinateSwizzleNV; -- vulkan_core.h:8824
w : aliased VkViewportCoordinateSwizzleNV; -- vulkan_core.h:8825
end record;
pragma Convention (C_Pass_By_Copy, VkViewportSwizzleNV); -- vulkan_core.h:8821
type VkPipelineViewportSwizzleStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:8829
pNext : System.Address; -- vulkan_core.h:8830
flags : aliased VkPipelineViewportSwizzleStateCreateFlagsNV; -- vulkan_core.h:8831
viewportCount : aliased stdint_h.uint32_t; -- vulkan_core.h:8832
pViewportSwizzles : System.Address; -- vulkan_core.h:8833
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineViewportSwizzleStateCreateInfoNV); -- vulkan_core.h:8828
subtype VkDiscardRectangleModeEXT is unsigned;
VK_DISCARD_RECTANGLE_MODE_INCLUSIVE_EXT : constant VkDiscardRectangleModeEXT := 0;
VK_DISCARD_RECTANGLE_MODE_EXCLUSIVE_EXT : constant VkDiscardRectangleModeEXT := 1;
VK_DISCARD_RECTANGLE_MODE_MAX_ENUM_EXT : constant VkDiscardRectangleModeEXT := 2147483647; -- vulkan_core.h:8842
subtype VkPipelineDiscardRectangleStateCreateFlagsEXT is VkFlags; -- vulkan_core.h:8847
type VkPhysicalDeviceDiscardRectanglePropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8849
pNext : System.Address; -- vulkan_core.h:8850
maxDiscardRectangles : aliased stdint_h.uint32_t; -- vulkan_core.h:8851
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDiscardRectanglePropertiesEXT); -- vulkan_core.h:8848
type VkPipelineDiscardRectangleStateCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8855
pNext : System.Address; -- vulkan_core.h:8856
flags : aliased VkPipelineDiscardRectangleStateCreateFlagsEXT; -- vulkan_core.h:8857
discardRectangleMode : aliased VkDiscardRectangleModeEXT; -- vulkan_core.h:8858
discardRectangleCount : aliased stdint_h.uint32_t; -- vulkan_core.h:8859
pDiscardRectangles : System.Address; -- vulkan_core.h:8860
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineDiscardRectangleStateCreateInfoEXT); -- vulkan_core.h:8854
type PFN_vkCmdSetDiscardRectangleEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdSetDiscardRectangleEXT); -- vulkan_core.h:8863
procedure vkCmdSetDiscardRectangleEXT
(commandBuffer : VkCommandBuffer;
firstDiscardRectangle : stdint_h.uint32_t;
discardRectangleCount : stdint_h.uint32_t;
pDiscardRectangles : System.Address); -- vulkan_core.h:8866
pragma Import (C, vkCmdSetDiscardRectangleEXT, "vkCmdSetDiscardRectangleEXT");
subtype VkConservativeRasterizationModeEXT is unsigned;
VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT : constant VkConservativeRasterizationModeEXT := 0;
VK_CONSERVATIVE_RASTERIZATION_MODE_OVERESTIMATE_EXT : constant VkConservativeRasterizationModeEXT := 1;
VK_CONSERVATIVE_RASTERIZATION_MODE_UNDERESTIMATE_EXT : constant VkConservativeRasterizationModeEXT := 2;
VK_CONSERVATIVE_RASTERIZATION_MODE_MAX_ENUM_EXT : constant VkConservativeRasterizationModeEXT := 2147483647; -- vulkan_core.h:8878
subtype VkPipelineRasterizationConservativeStateCreateFlagsEXT is VkFlags; -- vulkan_core.h:8884
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8886
pNext : System.Address; -- vulkan_core.h:8887
primitiveOverestimationSize : aliased float; -- vulkan_core.h:8888
maxExtraPrimitiveOverestimationSize : aliased float; -- vulkan_core.h:8889
extraPrimitiveOverestimationSizeGranularity : aliased float; -- vulkan_core.h:8890
primitiveUnderestimation : aliased VkBool32; -- vulkan_core.h:8891
conservativePointAndLineRasterization : aliased VkBool32; -- vulkan_core.h:8892
degenerateTrianglesRasterized : aliased VkBool32; -- vulkan_core.h:8893
degenerateLinesRasterized : aliased VkBool32; -- vulkan_core.h:8894
fullyCoveredFragmentShaderInputVariable : aliased VkBool32; -- vulkan_core.h:8895
conservativeRasterizationPostDepthCoverage : aliased VkBool32; -- vulkan_core.h:8896
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceConservativeRasterizationPropertiesEXT); -- vulkan_core.h:8885
type VkPipelineRasterizationConservativeStateCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8900
pNext : System.Address; -- vulkan_core.h:8901
flags : aliased VkPipelineRasterizationConservativeStateCreateFlagsEXT; -- vulkan_core.h:8902
conservativeRasterizationMode : aliased VkConservativeRasterizationModeEXT; -- vulkan_core.h:8903
extraPrimitiveOverestimationSize : aliased float; -- vulkan_core.h:8904
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineRasterizationConservativeStateCreateInfoEXT); -- vulkan_core.h:8899
subtype VkPipelineRasterizationDepthClipStateCreateFlagsEXT is VkFlags; -- vulkan_core.h:8912
type VkPhysicalDeviceDepthClipEnableFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8914
pNext : System.Address; -- vulkan_core.h:8915
depthClipEnable : aliased VkBool32; -- vulkan_core.h:8916
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDepthClipEnableFeaturesEXT); -- vulkan_core.h:8913
type VkPipelineRasterizationDepthClipStateCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8920
pNext : System.Address; -- vulkan_core.h:8921
flags : aliased VkPipelineRasterizationDepthClipStateCreateFlagsEXT; -- vulkan_core.h:8922
depthClipEnable : aliased VkBool32; -- vulkan_core.h:8923
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineRasterizationDepthClipStateCreateInfoEXT); -- vulkan_core.h:8919
type VkXYColorEXT is record
x : aliased float; -- vulkan_core.h:8937
y : aliased float; -- vulkan_core.h:8938
end record;
pragma Convention (C_Pass_By_Copy, VkXYColorEXT); -- vulkan_core.h:8936
type VkHdrMetadataEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:8942
pNext : System.Address; -- vulkan_core.h:8943
displayPrimaryRed : aliased VkXYColorEXT; -- vulkan_core.h:8944
displayPrimaryGreen : aliased VkXYColorEXT; -- vulkan_core.h:8945
displayPrimaryBlue : aliased VkXYColorEXT; -- vulkan_core.h:8946
whitePoint : aliased VkXYColorEXT; -- vulkan_core.h:8947
maxLuminance : aliased float; -- vulkan_core.h:8948
minLuminance : aliased float; -- vulkan_core.h:8949
maxContentLightLevel : aliased float; -- vulkan_core.h:8950
maxFrameAverageLightLevel : aliased float; -- vulkan_core.h:8951
end record;
pragma Convention (C_Pass_By_Copy, VkHdrMetadataEXT); -- vulkan_core.h:8941
type PFN_vkSetHdrMetadataEXT is access procedure
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : System.Address);
pragma Convention (C, PFN_vkSetHdrMetadataEXT); -- vulkan_core.h:8954
procedure vkSetHdrMetadataEXT
(device : VkDevice;
swapchainCount : stdint_h.uint32_t;
pSwapchains : System.Address;
pMetadata : System.Address); -- vulkan_core.h:8957
pragma Import (C, vkSetHdrMetadataEXT, "vkSetHdrMetadataEXT");
type VkDebugUtilsMessengerEXT is new System.Address; -- vulkan_core.h:8977
-- skipped empty struct VkDebugUtilsMessengerEXT_T
subtype VkDebugUtilsMessengerCallbackDataFlagsEXT is VkFlags; -- vulkan_core.h:8980
subtype VkDebugUtilsMessageSeverityFlagBitsEXT is unsigned;
VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT : constant VkDebugUtilsMessageSeverityFlagBitsEXT := 1;
VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT : constant VkDebugUtilsMessageSeverityFlagBitsEXT := 16;
VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT : constant VkDebugUtilsMessageSeverityFlagBitsEXT := 256;
VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT : constant VkDebugUtilsMessageSeverityFlagBitsEXT := 4096;
VK_DEBUG_UTILS_MESSAGE_SEVERITY_FLAG_BITS_MAX_ENUM_EXT : constant VkDebugUtilsMessageSeverityFlagBitsEXT := 2147483647; -- vulkan_core.h:8982
subtype VkDebugUtilsMessageTypeFlagBitsEXT is unsigned;
VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT : constant VkDebugUtilsMessageTypeFlagBitsEXT := 1;
VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT : constant VkDebugUtilsMessageTypeFlagBitsEXT := 2;
VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT : constant VkDebugUtilsMessageTypeFlagBitsEXT := 4;
VK_DEBUG_UTILS_MESSAGE_TYPE_FLAG_BITS_MAX_ENUM_EXT : constant VkDebugUtilsMessageTypeFlagBitsEXT := 2147483647; -- vulkan_core.h:8990
subtype VkDebugUtilsMessageTypeFlagsEXT is VkFlags; -- vulkan_core.h:8996
subtype VkDebugUtilsMessageSeverityFlagsEXT is VkFlags; -- vulkan_core.h:8997
subtype VkDebugUtilsMessengerCreateFlagsEXT is VkFlags; -- vulkan_core.h:8998
type VkDebugUtilsLabelEXT_color_array is array (0 .. 3) of aliased float;
type VkDebugUtilsLabelEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9000
pNext : System.Address; -- vulkan_core.h:9001
pLabelName : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:9002
color : aliased VkDebugUtilsLabelEXT_color_array; -- vulkan_core.h:9003
end record;
pragma Convention (C_Pass_By_Copy, VkDebugUtilsLabelEXT); -- vulkan_core.h:8999
type VkDebugUtilsObjectNameInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9007
pNext : System.Address; -- vulkan_core.h:9008
objectType : aliased VkObjectType; -- vulkan_core.h:9009
objectHandle : aliased stdint_h.uint64_t; -- vulkan_core.h:9010
pObjectName : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:9011
end record;
pragma Convention (C_Pass_By_Copy, VkDebugUtilsObjectNameInfoEXT); -- vulkan_core.h:9006
type VkDebugUtilsMessengerCallbackDataEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9015
pNext : System.Address; -- vulkan_core.h:9016
flags : aliased VkDebugUtilsMessengerCallbackDataFlagsEXT; -- vulkan_core.h:9017
pMessageIdName : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:9018
messageIdNumber : aliased stdint_h.int32_t; -- vulkan_core.h:9019
pMessage : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:9020
queueLabelCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9021
pQueueLabels : System.Address; -- vulkan_core.h:9022
cmdBufLabelCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9023
pCmdBufLabels : System.Address; -- vulkan_core.h:9024
objectCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9025
pObjects : System.Address; -- vulkan_core.h:9026
end record;
pragma Convention (C_Pass_By_Copy, VkDebugUtilsMessengerCallbackDataEXT); -- vulkan_core.h:9014
type PFN_vkDebugUtilsMessengerCallbackEXT is access function
(arg1 : VkDebugUtilsMessageSeverityFlagBitsEXT;
arg2 : VkDebugUtilsMessageTypeFlagsEXT;
arg3 : System.Address;
arg4 : System.Address) return VkBool32;
pragma Convention (C, PFN_vkDebugUtilsMessengerCallbackEXT); -- vulkan_core.h:9029
type VkDebugUtilsMessengerCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9036
pNext : System.Address; -- vulkan_core.h:9037
flags : aliased VkDebugUtilsMessengerCreateFlagsEXT; -- vulkan_core.h:9038
messageSeverity : aliased VkDebugUtilsMessageSeverityFlagsEXT; -- vulkan_core.h:9039
messageType : aliased VkDebugUtilsMessageTypeFlagsEXT; -- vulkan_core.h:9040
pfnUserCallback : PFN_vkDebugUtilsMessengerCallbackEXT; -- vulkan_core.h:9041
pUserData : System.Address; -- vulkan_core.h:9042
end record;
pragma Convention (C_Pass_By_Copy, VkDebugUtilsMessengerCreateInfoEXT); -- vulkan_core.h:9035
type VkDebugUtilsObjectTagInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9046
pNext : System.Address; -- vulkan_core.h:9047
objectType : aliased VkObjectType; -- vulkan_core.h:9048
objectHandle : aliased stdint_h.uint64_t; -- vulkan_core.h:9049
tagName : aliased stdint_h.uint64_t; -- vulkan_core.h:9050
tagSize : aliased crtdefs_h.size_t; -- vulkan_core.h:9051
pTag : System.Address; -- vulkan_core.h:9052
end record;
pragma Convention (C_Pass_By_Copy, VkDebugUtilsObjectTagInfoEXT); -- vulkan_core.h:9045
type PFN_vkSetDebugUtilsObjectNameEXT is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkSetDebugUtilsObjectNameEXT); -- vulkan_core.h:9055
type PFN_vkSetDebugUtilsObjectTagEXT is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkSetDebugUtilsObjectTagEXT); -- vulkan_core.h:9056
type PFN_vkQueueBeginDebugUtilsLabelEXT is access procedure (arg1 : VkQueue; arg2 : System.Address);
pragma Convention (C, PFN_vkQueueBeginDebugUtilsLabelEXT); -- vulkan_core.h:9057
type PFN_vkQueueEndDebugUtilsLabelEXT is access procedure (arg1 : VkQueue);
pragma Convention (C, PFN_vkQueueEndDebugUtilsLabelEXT); -- vulkan_core.h:9058
type PFN_vkQueueInsertDebugUtilsLabelEXT is access procedure (arg1 : VkQueue; arg2 : System.Address);
pragma Convention (C, PFN_vkQueueInsertDebugUtilsLabelEXT); -- vulkan_core.h:9059
type PFN_vkCmdBeginDebugUtilsLabelEXT is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdBeginDebugUtilsLabelEXT); -- vulkan_core.h:9060
type PFN_vkCmdEndDebugUtilsLabelEXT is access procedure (arg1 : VkCommandBuffer);
pragma Convention (C, PFN_vkCmdEndDebugUtilsLabelEXT); -- vulkan_core.h:9061
type PFN_vkCmdInsertDebugUtilsLabelEXT is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdInsertDebugUtilsLabelEXT); -- vulkan_core.h:9062
type PFN_vkCreateDebugUtilsMessengerEXT is access function
(arg1 : VkInstance;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateDebugUtilsMessengerEXT); -- vulkan_core.h:9063
type PFN_vkDestroyDebugUtilsMessengerEXT is access procedure
(arg1 : VkInstance;
arg2 : VkDebugUtilsMessengerEXT;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyDebugUtilsMessengerEXT); -- vulkan_core.h:9064
type PFN_vkSubmitDebugUtilsMessageEXT is access procedure
(arg1 : VkInstance;
arg2 : VkDebugUtilsMessageSeverityFlagBitsEXT;
arg3 : VkDebugUtilsMessageTypeFlagsEXT;
arg4 : System.Address);
pragma Convention (C, PFN_vkSubmitDebugUtilsMessageEXT); -- vulkan_core.h:9065
function vkSetDebugUtilsObjectNameEXT (device : VkDevice; pNameInfo : System.Address) return VkResult; -- vulkan_core.h:9068
pragma Import (C, vkSetDebugUtilsObjectNameEXT, "vkSetDebugUtilsObjectNameEXT");
function vkSetDebugUtilsObjectTagEXT (device : VkDevice; pTagInfo : System.Address) return VkResult; -- vulkan_core.h:9072
pragma Import (C, vkSetDebugUtilsObjectTagEXT, "vkSetDebugUtilsObjectTagEXT");
procedure vkQueueBeginDebugUtilsLabelEXT (queue : VkQueue; pLabelInfo : System.Address); -- vulkan_core.h:9076
pragma Import (C, vkQueueBeginDebugUtilsLabelEXT, "vkQueueBeginDebugUtilsLabelEXT");
procedure vkQueueEndDebugUtilsLabelEXT (queue : VkQueue); -- vulkan_core.h:9080
pragma Import (C, vkQueueEndDebugUtilsLabelEXT, "vkQueueEndDebugUtilsLabelEXT");
procedure vkQueueInsertDebugUtilsLabelEXT (queue : VkQueue; pLabelInfo : System.Address); -- vulkan_core.h:9083
pragma Import (C, vkQueueInsertDebugUtilsLabelEXT, "vkQueueInsertDebugUtilsLabelEXT");
procedure vkCmdBeginDebugUtilsLabelEXT (commandBuffer : VkCommandBuffer; pLabelInfo : System.Address); -- vulkan_core.h:9087
pragma Import (C, vkCmdBeginDebugUtilsLabelEXT, "vkCmdBeginDebugUtilsLabelEXT");
procedure vkCmdEndDebugUtilsLabelEXT (commandBuffer : VkCommandBuffer); -- vulkan_core.h:9091
pragma Import (C, vkCmdEndDebugUtilsLabelEXT, "vkCmdEndDebugUtilsLabelEXT");
procedure vkCmdInsertDebugUtilsLabelEXT (commandBuffer : VkCommandBuffer; pLabelInfo : System.Address); -- vulkan_core.h:9094
pragma Import (C, vkCmdInsertDebugUtilsLabelEXT, "vkCmdInsertDebugUtilsLabelEXT");
function vkCreateDebugUtilsMessengerEXT
(instance : VkInstance;
pCreateInfo : System.Address;
pAllocator : System.Address;
pMessenger : System.Address) return VkResult; -- vulkan_core.h:9098
pragma Import (C, vkCreateDebugUtilsMessengerEXT, "vkCreateDebugUtilsMessengerEXT");
procedure vkDestroyDebugUtilsMessengerEXT
(instance : VkInstance;
messenger : VkDebugUtilsMessengerEXT;
pAllocator : System.Address); -- vulkan_core.h:9104
pragma Import (C, vkDestroyDebugUtilsMessengerEXT, "vkDestroyDebugUtilsMessengerEXT");
procedure vkSubmitDebugUtilsMessageEXT
(instance : VkInstance;
messageSeverity : VkDebugUtilsMessageSeverityFlagBitsEXT;
messageTypes : VkDebugUtilsMessageTypeFlagsEXT;
pCallbackData : System.Address); -- vulkan_core.h:9109
pragma Import (C, vkSubmitDebugUtilsMessageEXT, "vkSubmitDebugUtilsMessageEXT");
subtype VkSamplerReductionModeEXT is VkSamplerReductionMode;
subtype VkSamplerReductionModeCreateInfoEXT is VkSamplerReductionModeCreateInfo;
subtype VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT is VkPhysicalDeviceSamplerFilterMinmaxProperties;
type VkPhysicalDeviceInlineUniformBlockFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9147
pNext : System.Address; -- vulkan_core.h:9148
inlineUniformBlock : aliased VkBool32; -- vulkan_core.h:9149
descriptorBindingInlineUniformBlockUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:9150
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceInlineUniformBlockFeaturesEXT); -- vulkan_core.h:9146
type VkPhysicalDeviceInlineUniformBlockPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9154
pNext : System.Address; -- vulkan_core.h:9155
maxInlineUniformBlockSize : aliased stdint_h.uint32_t; -- vulkan_core.h:9156
maxPerStageDescriptorInlineUniformBlocks : aliased stdint_h.uint32_t; -- vulkan_core.h:9157
maxPerStageDescriptorUpdateAfterBindInlineUniformBlocks : aliased stdint_h.uint32_t; -- vulkan_core.h:9158
maxDescriptorSetInlineUniformBlocks : aliased stdint_h.uint32_t; -- vulkan_core.h:9159
maxDescriptorSetUpdateAfterBindInlineUniformBlocks : aliased stdint_h.uint32_t; -- vulkan_core.h:9160
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceInlineUniformBlockPropertiesEXT); -- vulkan_core.h:9153
type VkWriteDescriptorSetInlineUniformBlockEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9164
pNext : System.Address; -- vulkan_core.h:9165
dataSize : aliased stdint_h.uint32_t; -- vulkan_core.h:9166
pData : System.Address; -- vulkan_core.h:9167
end record;
pragma Convention (C_Pass_By_Copy, VkWriteDescriptorSetInlineUniformBlockEXT); -- vulkan_core.h:9163
type VkDescriptorPoolInlineUniformBlockCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9171
pNext : System.Address; -- vulkan_core.h:9172
maxInlineUniformBlockBindings : aliased stdint_h.uint32_t; -- vulkan_core.h:9173
end record;
pragma Convention (C_Pass_By_Copy, VkDescriptorPoolInlineUniformBlockCreateInfoEXT); -- vulkan_core.h:9170
type VkSampleLocationEXT is record
x : aliased float; -- vulkan_core.h:9187
y : aliased float; -- vulkan_core.h:9188
end record;
pragma Convention (C_Pass_By_Copy, VkSampleLocationEXT); -- vulkan_core.h:9186
type VkSampleLocationsInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9192
pNext : System.Address; -- vulkan_core.h:9193
sampleLocationsPerPixel : aliased VkSampleCountFlagBits; -- vulkan_core.h:9194
sampleLocationGridSize : aliased VkExtent2D; -- vulkan_core.h:9195
sampleLocationsCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9196
pSampleLocations : System.Address; -- vulkan_core.h:9197
end record;
pragma Convention (C_Pass_By_Copy, VkSampleLocationsInfoEXT); -- vulkan_core.h:9191
type VkAttachmentSampleLocationsEXT is record
attachmentIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:9201
sampleLocationsInfo : aliased VkSampleLocationsInfoEXT; -- vulkan_core.h:9202
end record;
pragma Convention (C_Pass_By_Copy, VkAttachmentSampleLocationsEXT); -- vulkan_core.h:9200
type VkSubpassSampleLocationsEXT is record
subpassIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:9206
sampleLocationsInfo : aliased VkSampleLocationsInfoEXT; -- vulkan_core.h:9207
end record;
pragma Convention (C_Pass_By_Copy, VkSubpassSampleLocationsEXT); -- vulkan_core.h:9205
type VkRenderPassSampleLocationsBeginInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9211
pNext : System.Address; -- vulkan_core.h:9212
attachmentInitialSampleLocationsCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9213
pAttachmentInitialSampleLocations : System.Address; -- vulkan_core.h:9214
postSubpassSampleLocationsCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9215
pPostSubpassSampleLocations : System.Address; -- vulkan_core.h:9216
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassSampleLocationsBeginInfoEXT); -- vulkan_core.h:9210
type VkPipelineSampleLocationsStateCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9220
pNext : System.Address; -- vulkan_core.h:9221
sampleLocationsEnable : aliased VkBool32; -- vulkan_core.h:9222
sampleLocationsInfo : aliased VkSampleLocationsInfoEXT; -- vulkan_core.h:9223
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineSampleLocationsStateCreateInfoEXT); -- vulkan_core.h:9219
type VkPhysicalDeviceSampleLocationsPropertiesEXT_sampleLocationCoordinateRange_array is array (0 .. 1) of aliased float;
type VkPhysicalDeviceSampleLocationsPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9227
pNext : System.Address; -- vulkan_core.h:9228
sampleLocationSampleCounts : aliased VkSampleCountFlags; -- vulkan_core.h:9229
maxSampleLocationGridSize : aliased VkExtent2D; -- vulkan_core.h:9230
sampleLocationCoordinateRange : aliased VkPhysicalDeviceSampleLocationsPropertiesEXT_sampleLocationCoordinateRange_array; -- vulkan_core.h:9231
sampleLocationSubPixelBits : aliased stdint_h.uint32_t; -- vulkan_core.h:9232
variableSampleLocations : aliased VkBool32; -- vulkan_core.h:9233
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSampleLocationsPropertiesEXT); -- vulkan_core.h:9226
type VkMultisamplePropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9237
pNext : System.Address; -- vulkan_core.h:9238
maxSampleLocationGridSize : aliased VkExtent2D; -- vulkan_core.h:9239
end record;
pragma Convention (C_Pass_By_Copy, VkMultisamplePropertiesEXT); -- vulkan_core.h:9236
type PFN_vkCmdSetSampleLocationsEXT is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdSetSampleLocationsEXT); -- vulkan_core.h:9242
type PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT is access procedure
(arg1 : VkPhysicalDevice;
arg2 : VkSampleCountFlagBits;
arg3 : access VkMultisamplePropertiesEXT);
pragma Convention (C, PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT); -- vulkan_core.h:9243
procedure vkCmdSetSampleLocationsEXT (commandBuffer : VkCommandBuffer; pSampleLocationsInfo : System.Address); -- vulkan_core.h:9246
pragma Import (C, vkCmdSetSampleLocationsEXT, "vkCmdSetSampleLocationsEXT");
procedure vkGetPhysicalDeviceMultisamplePropertiesEXT
(physicalDevice : VkPhysicalDevice;
samples : VkSampleCountFlagBits;
pMultisampleProperties : access VkMultisamplePropertiesEXT); -- vulkan_core.h:9250
pragma Import (C, vkGetPhysicalDeviceMultisamplePropertiesEXT, "vkGetPhysicalDeviceMultisamplePropertiesEXT");
subtype VkBlendOverlapEXT is unsigned;
VK_BLEND_OVERLAP_UNCORRELATED_EXT : constant VkBlendOverlapEXT := 0;
VK_BLEND_OVERLAP_DISJOINT_EXT : constant VkBlendOverlapEXT := 1;
VK_BLEND_OVERLAP_CONJOINT_EXT : constant VkBlendOverlapEXT := 2;
VK_BLEND_OVERLAP_MAX_ENUM_EXT : constant VkBlendOverlapEXT := 2147483647; -- vulkan_core.h:9261
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9268
pNext : System.Address; -- vulkan_core.h:9269
advancedBlendCoherentOperations : aliased VkBool32; -- vulkan_core.h:9270
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT); -- vulkan_core.h:9267
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9274
pNext : System.Address; -- vulkan_core.h:9275
advancedBlendMaxColorAttachments : aliased stdint_h.uint32_t; -- vulkan_core.h:9276
advancedBlendIndependentBlend : aliased VkBool32; -- vulkan_core.h:9277
advancedBlendNonPremultipliedSrcColor : aliased VkBool32; -- vulkan_core.h:9278
advancedBlendNonPremultipliedDstColor : aliased VkBool32; -- vulkan_core.h:9279
advancedBlendCorrelatedOverlap : aliased VkBool32; -- vulkan_core.h:9280
advancedBlendAllOperations : aliased VkBool32; -- vulkan_core.h:9281
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT); -- vulkan_core.h:9273
type VkPipelineColorBlendAdvancedStateCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9285
pNext : System.Address; -- vulkan_core.h:9286
srcPremultiplied : aliased VkBool32; -- vulkan_core.h:9287
dstPremultiplied : aliased VkBool32; -- vulkan_core.h:9288
blendOverlap : aliased VkBlendOverlapEXT; -- vulkan_core.h:9289
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineColorBlendAdvancedStateCreateInfoEXT); -- vulkan_core.h:9284
subtype VkPipelineCoverageToColorStateCreateFlagsNV is VkFlags; -- vulkan_core.h:9297
type VkPipelineCoverageToColorStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9299
pNext : System.Address; -- vulkan_core.h:9300
flags : aliased VkPipelineCoverageToColorStateCreateFlagsNV; -- vulkan_core.h:9301
coverageToColorEnable : aliased VkBool32; -- vulkan_core.h:9302
coverageToColorLocation : aliased stdint_h.uint32_t; -- vulkan_core.h:9303
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineCoverageToColorStateCreateInfoNV); -- vulkan_core.h:9298
subtype VkCoverageModulationModeNV is unsigned;
VK_COVERAGE_MODULATION_MODE_NONE_NV : constant VkCoverageModulationModeNV := 0;
VK_COVERAGE_MODULATION_MODE_RGB_NV : constant VkCoverageModulationModeNV := 1;
VK_COVERAGE_MODULATION_MODE_ALPHA_NV : constant VkCoverageModulationModeNV := 2;
VK_COVERAGE_MODULATION_MODE_RGBA_NV : constant VkCoverageModulationModeNV := 3;
VK_COVERAGE_MODULATION_MODE_MAX_ENUM_NV : constant VkCoverageModulationModeNV := 2147483647; -- vulkan_core.h:9312
subtype VkPipelineCoverageModulationStateCreateFlagsNV is VkFlags; -- vulkan_core.h:9319
type VkPipelineCoverageModulationStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9321
pNext : System.Address; -- vulkan_core.h:9322
flags : aliased VkPipelineCoverageModulationStateCreateFlagsNV; -- vulkan_core.h:9323
coverageModulationMode : aliased VkCoverageModulationModeNV; -- vulkan_core.h:9324
coverageModulationTableEnable : aliased VkBool32; -- vulkan_core.h:9325
coverageModulationTableCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9326
pCoverageModulationTable : access float; -- vulkan_core.h:9327
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineCoverageModulationStateCreateInfoNV); -- vulkan_core.h:9320
type VkPhysicalDeviceShaderSMBuiltinsPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9341
pNext : System.Address; -- vulkan_core.h:9342
shaderSMCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9343
shaderWarpsPerSM : aliased stdint_h.uint32_t; -- vulkan_core.h:9344
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderSMBuiltinsPropertiesNV); -- vulkan_core.h:9340
type VkPhysicalDeviceShaderSMBuiltinsFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9348
pNext : System.Address; -- vulkan_core.h:9349
shaderSMBuiltins : aliased VkBool32; -- vulkan_core.h:9350
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderSMBuiltinsFeaturesNV); -- vulkan_core.h:9347
type VkDrmFormatModifierPropertiesEXT is record
drmFormatModifier : aliased stdint_h.uint64_t; -- vulkan_core.h:9364
drmFormatModifierPlaneCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9365
drmFormatModifierTilingFeatures : aliased VkFormatFeatureFlags; -- vulkan_core.h:9366
end record;
pragma Convention (C_Pass_By_Copy, VkDrmFormatModifierPropertiesEXT); -- vulkan_core.h:9363
type VkDrmFormatModifierPropertiesListEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9370
pNext : System.Address; -- vulkan_core.h:9371
drmFormatModifierCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9372
pDrmFormatModifierProperties : access VkDrmFormatModifierPropertiesEXT; -- vulkan_core.h:9373
end record;
pragma Convention (C_Pass_By_Copy, VkDrmFormatModifierPropertiesListEXT); -- vulkan_core.h:9369
type VkPhysicalDeviceImageDrmFormatModifierInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9377
pNext : System.Address; -- vulkan_core.h:9378
drmFormatModifier : aliased stdint_h.uint64_t; -- vulkan_core.h:9379
sharingMode : aliased VkSharingMode; -- vulkan_core.h:9380
queueFamilyIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9381
pQueueFamilyIndices : access stdint_h.uint32_t; -- vulkan_core.h:9382
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceImageDrmFormatModifierInfoEXT); -- vulkan_core.h:9376
type VkImageDrmFormatModifierListCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9386
pNext : System.Address; -- vulkan_core.h:9387
drmFormatModifierCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9388
pDrmFormatModifiers : access stdint_h.uint64_t; -- vulkan_core.h:9389
end record;
pragma Convention (C_Pass_By_Copy, VkImageDrmFormatModifierListCreateInfoEXT); -- vulkan_core.h:9385
type VkImageDrmFormatModifierExplicitCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9393
pNext : System.Address; -- vulkan_core.h:9394
drmFormatModifier : aliased stdint_h.uint64_t; -- vulkan_core.h:9395
drmFormatModifierPlaneCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9396
pPlaneLayouts : System.Address; -- vulkan_core.h:9397
end record;
pragma Convention (C_Pass_By_Copy, VkImageDrmFormatModifierExplicitCreateInfoEXT); -- vulkan_core.h:9392
type VkImageDrmFormatModifierPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9401
pNext : System.Address; -- vulkan_core.h:9402
drmFormatModifier : aliased stdint_h.uint64_t; -- vulkan_core.h:9403
end record;
pragma Convention (C_Pass_By_Copy, VkImageDrmFormatModifierPropertiesEXT); -- vulkan_core.h:9400
type PFN_vkGetImageDrmFormatModifierPropertiesEXT is access function
(arg1 : VkDevice;
arg2 : VkImage;
arg3 : access VkImageDrmFormatModifierPropertiesEXT) return VkResult;
pragma Convention (C, PFN_vkGetImageDrmFormatModifierPropertiesEXT); -- vulkan_core.h:9406
function vkGetImageDrmFormatModifierPropertiesEXT
(device : VkDevice;
image : VkImage;
pProperties : access VkImageDrmFormatModifierPropertiesEXT) return VkResult; -- vulkan_core.h:9409
pragma Import (C, vkGetImageDrmFormatModifierPropertiesEXT, "vkGetImageDrmFormatModifierPropertiesEXT");
type VkValidationCacheEXT is new System.Address; -- vulkan_core.h:9417
-- skipped empty struct VkValidationCacheEXT_T
subtype VkValidationCacheHeaderVersionEXT is unsigned;
VK_VALIDATION_CACHE_HEADER_VERSION_ONE_EXT : constant VkValidationCacheHeaderVersionEXT := 1;
VK_VALIDATION_CACHE_HEADER_VERSION_MAX_ENUM_EXT : constant VkValidationCacheHeaderVersionEXT := 2147483647; -- vulkan_core.h:9421
subtype VkValidationCacheCreateFlagsEXT is VkFlags; -- vulkan_core.h:9425
type VkValidationCacheCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9427
pNext : System.Address; -- vulkan_core.h:9428
flags : aliased VkValidationCacheCreateFlagsEXT; -- vulkan_core.h:9429
initialDataSize : aliased crtdefs_h.size_t; -- vulkan_core.h:9430
pInitialData : System.Address; -- vulkan_core.h:9431
end record;
pragma Convention (C_Pass_By_Copy, VkValidationCacheCreateInfoEXT); -- vulkan_core.h:9426
type VkShaderModuleValidationCacheCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9435
pNext : System.Address; -- vulkan_core.h:9436
validationCache : VkValidationCacheEXT; -- vulkan_core.h:9437
end record;
pragma Convention (C_Pass_By_Copy, VkShaderModuleValidationCacheCreateInfoEXT); -- vulkan_core.h:9434
type PFN_vkCreateValidationCacheEXT is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateValidationCacheEXT); -- vulkan_core.h:9440
type PFN_vkDestroyValidationCacheEXT is access procedure
(arg1 : VkDevice;
arg2 : VkValidationCacheEXT;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyValidationCacheEXT); -- vulkan_core.h:9441
type PFN_vkMergeValidationCachesEXT is access function
(arg1 : VkDevice;
arg2 : VkValidationCacheEXT;
arg3 : stdint_h.uint32_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkMergeValidationCachesEXT); -- vulkan_core.h:9442
type PFN_vkGetValidationCacheDataEXT is access function
(arg1 : VkDevice;
arg2 : VkValidationCacheEXT;
arg3 : access crtdefs_h.size_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetValidationCacheDataEXT); -- vulkan_core.h:9443
function vkCreateValidationCacheEXT
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pValidationCache : System.Address) return VkResult; -- vulkan_core.h:9446
pragma Import (C, vkCreateValidationCacheEXT, "vkCreateValidationCacheEXT");
procedure vkDestroyValidationCacheEXT
(device : VkDevice;
validationCache : VkValidationCacheEXT;
pAllocator : System.Address); -- vulkan_core.h:9452
pragma Import (C, vkDestroyValidationCacheEXT, "vkDestroyValidationCacheEXT");
function vkMergeValidationCachesEXT
(device : VkDevice;
dstCache : VkValidationCacheEXT;
srcCacheCount : stdint_h.uint32_t;
pSrcCaches : System.Address) return VkResult; -- vulkan_core.h:9457
pragma Import (C, vkMergeValidationCachesEXT, "vkMergeValidationCachesEXT");
function vkGetValidationCacheDataEXT
(device : VkDevice;
validationCache : VkValidationCacheEXT;
pDataSize : access crtdefs_h.size_t;
pData : System.Address) return VkResult; -- vulkan_core.h:9463
pragma Import (C, vkGetValidationCacheDataEXT, "vkGetValidationCacheDataEXT");
subtype VkDescriptorBindingFlagBitsEXT is VkDescriptorBindingFlagBits;
subtype VkDescriptorBindingFlagsEXT is VkDescriptorBindingFlags; -- vulkan_core.h:9476
subtype VkDescriptorSetLayoutBindingFlagsCreateInfoEXT is VkDescriptorSetLayoutBindingFlagsCreateInfo;
subtype VkPhysicalDeviceDescriptorIndexingFeaturesEXT is VkPhysicalDeviceDescriptorIndexingFeatures;
subtype VkPhysicalDeviceDescriptorIndexingPropertiesEXT is VkPhysicalDeviceDescriptorIndexingProperties;
subtype VkDescriptorSetVariableDescriptorCountAllocateInfoEXT is VkDescriptorSetVariableDescriptorCountAllocateInfo;
subtype VkDescriptorSetVariableDescriptorCountLayoutSupportEXT is VkDescriptorSetVariableDescriptorCountLayoutSupport;
subtype VkShadingRatePaletteEntryNV is unsigned;
VK_SHADING_RATE_PALETTE_ENTRY_NO_INVOCATIONS_NV : constant VkShadingRatePaletteEntryNV := 0;
VK_SHADING_RATE_PALETTE_ENTRY_16_INVOCATIONS_PER_PIXEL_NV : constant VkShadingRatePaletteEntryNV := 1;
VK_SHADING_RATE_PALETTE_ENTRY_8_INVOCATIONS_PER_PIXEL_NV : constant VkShadingRatePaletteEntryNV := 2;
VK_SHADING_RATE_PALETTE_ENTRY_4_INVOCATIONS_PER_PIXEL_NV : constant VkShadingRatePaletteEntryNV := 3;
VK_SHADING_RATE_PALETTE_ENTRY_2_INVOCATIONS_PER_PIXEL_NV : constant VkShadingRatePaletteEntryNV := 4;
VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_PIXEL_NV : constant VkShadingRatePaletteEntryNV := 5;
VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X1_PIXELS_NV : constant VkShadingRatePaletteEntryNV := 6;
VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_1X2_PIXELS_NV : constant VkShadingRatePaletteEntryNV := 7;
VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X2_PIXELS_NV : constant VkShadingRatePaletteEntryNV := 8;
VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_4X2_PIXELS_NV : constant VkShadingRatePaletteEntryNV := 9;
VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_2X4_PIXELS_NV : constant VkShadingRatePaletteEntryNV := 10;
VK_SHADING_RATE_PALETTE_ENTRY_1_INVOCATION_PER_4X4_PIXELS_NV : constant VkShadingRatePaletteEntryNV := 11;
VK_SHADING_RATE_PALETTE_ENTRY_MAX_ENUM_NV : constant VkShadingRatePaletteEntryNV := 2147483647; -- vulkan_core.h:9499
subtype VkCoarseSampleOrderTypeNV is unsigned;
VK_COARSE_SAMPLE_ORDER_TYPE_DEFAULT_NV : constant VkCoarseSampleOrderTypeNV := 0;
VK_COARSE_SAMPLE_ORDER_TYPE_CUSTOM_NV : constant VkCoarseSampleOrderTypeNV := 1;
VK_COARSE_SAMPLE_ORDER_TYPE_PIXEL_MAJOR_NV : constant VkCoarseSampleOrderTypeNV := 2;
VK_COARSE_SAMPLE_ORDER_TYPE_SAMPLE_MAJOR_NV : constant VkCoarseSampleOrderTypeNV := 3;
VK_COARSE_SAMPLE_ORDER_TYPE_MAX_ENUM_NV : constant VkCoarseSampleOrderTypeNV := 2147483647; -- vulkan_core.h:9515
type VkShadingRatePaletteNV is record
shadingRatePaletteEntryCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9523
pShadingRatePaletteEntries : System.Address; -- vulkan_core.h:9524
end record;
pragma Convention (C_Pass_By_Copy, VkShadingRatePaletteNV); -- vulkan_core.h:9522
type VkPipelineViewportShadingRateImageStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9528
pNext : System.Address; -- vulkan_core.h:9529
shadingRateImageEnable : aliased VkBool32; -- vulkan_core.h:9530
viewportCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9531
pShadingRatePalettes : System.Address; -- vulkan_core.h:9532
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineViewportShadingRateImageStateCreateInfoNV); -- vulkan_core.h:9527
type VkPhysicalDeviceShadingRateImageFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9536
pNext : System.Address; -- vulkan_core.h:9537
shadingRateImage : aliased VkBool32; -- vulkan_core.h:9538
shadingRateCoarseSampleOrder : aliased VkBool32; -- vulkan_core.h:9539
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShadingRateImageFeaturesNV); -- vulkan_core.h:9535
type VkPhysicalDeviceShadingRateImagePropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9543
pNext : System.Address; -- vulkan_core.h:9544
shadingRateTexelSize : aliased VkExtent2D; -- vulkan_core.h:9545
shadingRatePaletteSize : aliased stdint_h.uint32_t; -- vulkan_core.h:9546
shadingRateMaxCoarseSamples : aliased stdint_h.uint32_t; -- vulkan_core.h:9547
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShadingRateImagePropertiesNV); -- vulkan_core.h:9542
type VkCoarseSampleLocationNV is record
pixelX : aliased stdint_h.uint32_t; -- vulkan_core.h:9551
pixelY : aliased stdint_h.uint32_t; -- vulkan_core.h:9552
sample : aliased stdint_h.uint32_t; -- vulkan_core.h:9553
end record;
pragma Convention (C_Pass_By_Copy, VkCoarseSampleLocationNV); -- vulkan_core.h:9550
type VkCoarseSampleOrderCustomNV is record
shadingRate : aliased VkShadingRatePaletteEntryNV; -- vulkan_core.h:9557
sampleCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9558
sampleLocationCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9559
pSampleLocations : System.Address; -- vulkan_core.h:9560
end record;
pragma Convention (C_Pass_By_Copy, VkCoarseSampleOrderCustomNV); -- vulkan_core.h:9556
type VkPipelineViewportCoarseSampleOrderStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9564
pNext : System.Address; -- vulkan_core.h:9565
sampleOrderType : aliased VkCoarseSampleOrderTypeNV; -- vulkan_core.h:9566
customSampleOrderCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9567
pCustomSampleOrders : System.Address; -- vulkan_core.h:9568
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineViewportCoarseSampleOrderStateCreateInfoNV); -- vulkan_core.h:9563
type PFN_vkCmdBindShadingRateImageNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkImageView;
arg3 : VkImageLayout);
pragma Convention (C, PFN_vkCmdBindShadingRateImageNV); -- vulkan_core.h:9571
type PFN_vkCmdSetViewportShadingRatePaletteNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdSetViewportShadingRatePaletteNV); -- vulkan_core.h:9572
type PFN_vkCmdSetCoarseSampleOrderNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkCoarseSampleOrderTypeNV;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdSetCoarseSampleOrderNV); -- vulkan_core.h:9573
procedure vkCmdBindShadingRateImageNV
(commandBuffer : VkCommandBuffer;
imageView : VkImageView;
imageLayout : VkImageLayout); -- vulkan_core.h:9576
pragma Import (C, vkCmdBindShadingRateImageNV, "vkCmdBindShadingRateImageNV");
procedure vkCmdSetViewportShadingRatePaletteNV
(commandBuffer : VkCommandBuffer;
firstViewport : stdint_h.uint32_t;
viewportCount : stdint_h.uint32_t;
pShadingRatePalettes : System.Address); -- vulkan_core.h:9581
pragma Import (C, vkCmdSetViewportShadingRatePaletteNV, "vkCmdSetViewportShadingRatePaletteNV");
procedure vkCmdSetCoarseSampleOrderNV
(commandBuffer : VkCommandBuffer;
sampleOrderType : VkCoarseSampleOrderTypeNV;
customSampleOrderCount : stdint_h.uint32_t;
pCustomSampleOrders : System.Address); -- vulkan_core.h:9587
pragma Import (C, vkCmdSetCoarseSampleOrderNV, "vkCmdSetCoarseSampleOrderNV");
type VkAccelerationStructureNV is new System.Address; -- vulkan_core.h:9596
-- skipped empty struct VkAccelerationStructureNV_T
subtype VkRayTracingShaderGroupTypeKHR is unsigned;
VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_KHR : constant VkRayTracingShaderGroupTypeKHR := 0;
VK_RAY_TRACING_SHADER_GROUP_TYPE_TRIANGLES_HIT_GROUP_KHR : constant VkRayTracingShaderGroupTypeKHR := 1;
VK_RAY_TRACING_SHADER_GROUP_TYPE_PROCEDURAL_HIT_GROUP_KHR : constant VkRayTracingShaderGroupTypeKHR := 2;
VK_RAY_TRACING_SHADER_GROUP_TYPE_GENERAL_NV : constant VkRayTracingShaderGroupTypeKHR := 0;
VK_RAY_TRACING_SHADER_GROUP_TYPE_TRIANGLES_HIT_GROUP_NV : constant VkRayTracingShaderGroupTypeKHR := 1;
VK_RAY_TRACING_SHADER_GROUP_TYPE_PROCEDURAL_HIT_GROUP_NV : constant VkRayTracingShaderGroupTypeKHR := 2;
VK_RAY_TRACING_SHADER_GROUP_TYPE_MAX_ENUM_KHR : constant VkRayTracingShaderGroupTypeKHR := 2147483647; -- vulkan_core.h:9602
subtype VkRayTracingShaderGroupTypeNV is VkRayTracingShaderGroupTypeKHR;
subtype VkGeometryTypeKHR is unsigned;
VK_GEOMETRY_TYPE_TRIANGLES_KHR : constant VkGeometryTypeKHR := 0;
VK_GEOMETRY_TYPE_AABBS_KHR : constant VkGeometryTypeKHR := 1;
VK_GEOMETRY_TYPE_INSTANCES_KHR : constant VkGeometryTypeKHR := 2;
VK_GEOMETRY_TYPE_TRIANGLES_NV : constant VkGeometryTypeKHR := 0;
VK_GEOMETRY_TYPE_AABBS_NV : constant VkGeometryTypeKHR := 1;
VK_GEOMETRY_TYPE_MAX_ENUM_KHR : constant VkGeometryTypeKHR := 2147483647; -- vulkan_core.h:9614
subtype VkGeometryTypeNV is VkGeometryTypeKHR;
subtype VkAccelerationStructureTypeKHR is unsigned;
VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR : constant VkAccelerationStructureTypeKHR := 0;
VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR : constant VkAccelerationStructureTypeKHR := 1;
VK_ACCELERATION_STRUCTURE_TYPE_GENERIC_KHR : constant VkAccelerationStructureTypeKHR := 2;
VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_NV : constant VkAccelerationStructureTypeKHR := 0;
VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_NV : constant VkAccelerationStructureTypeKHR := 1;
VK_ACCELERATION_STRUCTURE_TYPE_MAX_ENUM_KHR : constant VkAccelerationStructureTypeKHR := 2147483647; -- vulkan_core.h:9625
subtype VkAccelerationStructureTypeNV is VkAccelerationStructureTypeKHR;
subtype VkCopyAccelerationStructureModeKHR is unsigned;
VK_COPY_ACCELERATION_STRUCTURE_MODE_CLONE_KHR : constant VkCopyAccelerationStructureModeKHR := 0;
VK_COPY_ACCELERATION_STRUCTURE_MODE_COMPACT_KHR : constant VkCopyAccelerationStructureModeKHR := 1;
VK_COPY_ACCELERATION_STRUCTURE_MODE_SERIALIZE_KHR : constant VkCopyAccelerationStructureModeKHR := 2;
VK_COPY_ACCELERATION_STRUCTURE_MODE_DESERIALIZE_KHR : constant VkCopyAccelerationStructureModeKHR := 3;
VK_COPY_ACCELERATION_STRUCTURE_MODE_CLONE_NV : constant VkCopyAccelerationStructureModeKHR := 0;
VK_COPY_ACCELERATION_STRUCTURE_MODE_COMPACT_NV : constant VkCopyAccelerationStructureModeKHR := 1;
VK_COPY_ACCELERATION_STRUCTURE_MODE_MAX_ENUM_KHR : constant VkCopyAccelerationStructureModeKHR := 2147483647; -- vulkan_core.h:9636
subtype VkCopyAccelerationStructureModeNV is VkCopyAccelerationStructureModeKHR;
subtype VkAccelerationStructureMemoryRequirementsTypeNV is unsigned;
VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_OBJECT_NV : constant VkAccelerationStructureMemoryRequirementsTypeNV := 0;
VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_BUILD_SCRATCH_NV : constant VkAccelerationStructureMemoryRequirementsTypeNV := 1;
VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_UPDATE_SCRATCH_NV : constant VkAccelerationStructureMemoryRequirementsTypeNV := 2;
VK_ACCELERATION_STRUCTURE_MEMORY_REQUIREMENTS_TYPE_MAX_ENUM_NV : constant VkAccelerationStructureMemoryRequirementsTypeNV := 2147483647; -- vulkan_core.h:9648
subtype VkGeometryFlagBitsKHR is unsigned;
VK_GEOMETRY_OPAQUE_BIT_KHR : constant VkGeometryFlagBitsKHR := 1;
VK_GEOMETRY_NO_DUPLICATE_ANY_HIT_INVOCATION_BIT_KHR : constant VkGeometryFlagBitsKHR := 2;
VK_GEOMETRY_OPAQUE_BIT_NV : constant VkGeometryFlagBitsKHR := 1;
VK_GEOMETRY_NO_DUPLICATE_ANY_HIT_INVOCATION_BIT_NV : constant VkGeometryFlagBitsKHR := 2;
VK_GEOMETRY_FLAG_BITS_MAX_ENUM_KHR : constant VkGeometryFlagBitsKHR := 2147483647; -- vulkan_core.h:9655
subtype VkGeometryFlagsKHR is VkFlags; -- vulkan_core.h:9662
subtype VkGeometryFlagsNV is VkGeometryFlagsKHR; -- vulkan_core.h:9663
subtype VkGeometryFlagBitsNV is VkGeometryFlagBitsKHR;
subtype VkGeometryInstanceFlagBitsKHR is unsigned;
VK_GEOMETRY_INSTANCE_TRIANGLE_FACING_CULL_DISABLE_BIT_KHR : constant VkGeometryInstanceFlagBitsKHR := 1;
VK_GEOMETRY_INSTANCE_TRIANGLE_FRONT_COUNTERCLOCKWISE_BIT_KHR : constant VkGeometryInstanceFlagBitsKHR := 2;
VK_GEOMETRY_INSTANCE_FORCE_OPAQUE_BIT_KHR : constant VkGeometryInstanceFlagBitsKHR := 4;
VK_GEOMETRY_INSTANCE_FORCE_NO_OPAQUE_BIT_KHR : constant VkGeometryInstanceFlagBitsKHR := 8;
VK_GEOMETRY_INSTANCE_TRIANGLE_CULL_DISABLE_BIT_NV : constant VkGeometryInstanceFlagBitsKHR := 1;
VK_GEOMETRY_INSTANCE_TRIANGLE_FRONT_COUNTERCLOCKWISE_BIT_NV : constant VkGeometryInstanceFlagBitsKHR := 2;
VK_GEOMETRY_INSTANCE_FORCE_OPAQUE_BIT_NV : constant VkGeometryInstanceFlagBitsKHR := 4;
VK_GEOMETRY_INSTANCE_FORCE_NO_OPAQUE_BIT_NV : constant VkGeometryInstanceFlagBitsKHR := 8;
VK_GEOMETRY_INSTANCE_FLAG_BITS_MAX_ENUM_KHR : constant VkGeometryInstanceFlagBitsKHR := 2147483647; -- vulkan_core.h:9668
subtype VkGeometryInstanceFlagsKHR is VkFlags; -- vulkan_core.h:9679
subtype VkGeometryInstanceFlagsNV is VkGeometryInstanceFlagsKHR; -- vulkan_core.h:9680
subtype VkGeometryInstanceFlagBitsNV is VkGeometryInstanceFlagBitsKHR;
subtype VkBuildAccelerationStructureFlagBitsKHR is unsigned;
VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_UPDATE_BIT_KHR : constant VkBuildAccelerationStructureFlagBitsKHR := 1;
VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_COMPACTION_BIT_KHR : constant VkBuildAccelerationStructureFlagBitsKHR := 2;
VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_KHR : constant VkBuildAccelerationStructureFlagBitsKHR := 4;
VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_BUILD_BIT_KHR : constant VkBuildAccelerationStructureFlagBitsKHR := 8;
VK_BUILD_ACCELERATION_STRUCTURE_LOW_MEMORY_BIT_KHR : constant VkBuildAccelerationStructureFlagBitsKHR := 16;
VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_UPDATE_BIT_NV : constant VkBuildAccelerationStructureFlagBitsKHR := 1;
VK_BUILD_ACCELERATION_STRUCTURE_ALLOW_COMPACTION_BIT_NV : constant VkBuildAccelerationStructureFlagBitsKHR := 2;
VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_TRACE_BIT_NV : constant VkBuildAccelerationStructureFlagBitsKHR := 4;
VK_BUILD_ACCELERATION_STRUCTURE_PREFER_FAST_BUILD_BIT_NV : constant VkBuildAccelerationStructureFlagBitsKHR := 8;
VK_BUILD_ACCELERATION_STRUCTURE_LOW_MEMORY_BIT_NV : constant VkBuildAccelerationStructureFlagBitsKHR := 16;
VK_BUILD_ACCELERATION_STRUCTURE_FLAG_BITS_MAX_ENUM_KHR : constant VkBuildAccelerationStructureFlagBitsKHR := 2147483647; -- vulkan_core.h:9685
subtype VkBuildAccelerationStructureFlagsKHR is VkFlags; -- vulkan_core.h:9698
subtype VkBuildAccelerationStructureFlagsNV is VkBuildAccelerationStructureFlagsKHR; -- vulkan_core.h:9699
subtype VkBuildAccelerationStructureFlagBitsNV is VkBuildAccelerationStructureFlagBitsKHR;
type VkRayTracingShaderGroupCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9704
pNext : System.Address; -- vulkan_core.h:9705
c_type : aliased VkRayTracingShaderGroupTypeKHR; -- vulkan_core.h:9706
generalShader : aliased stdint_h.uint32_t; -- vulkan_core.h:9707
closestHitShader : aliased stdint_h.uint32_t; -- vulkan_core.h:9708
anyHitShader : aliased stdint_h.uint32_t; -- vulkan_core.h:9709
intersectionShader : aliased stdint_h.uint32_t; -- vulkan_core.h:9710
end record;
pragma Convention (C_Pass_By_Copy, VkRayTracingShaderGroupCreateInfoNV); -- vulkan_core.h:9703
type VkRayTracingPipelineCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9714
pNext : System.Address; -- vulkan_core.h:9715
flags : aliased VkPipelineCreateFlags; -- vulkan_core.h:9716
stageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9717
pStages : System.Address; -- vulkan_core.h:9718
groupCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9719
pGroups : System.Address; -- vulkan_core.h:9720
maxRecursionDepth : aliased stdint_h.uint32_t; -- vulkan_core.h:9721
layout : VkPipelineLayout; -- vulkan_core.h:9722
basePipelineHandle : VkPipeline; -- vulkan_core.h:9723
basePipelineIndex : aliased stdint_h.int32_t; -- vulkan_core.h:9724
end record;
pragma Convention (C_Pass_By_Copy, VkRayTracingPipelineCreateInfoNV); -- vulkan_core.h:9713
type VkGeometryTrianglesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9728
pNext : System.Address; -- vulkan_core.h:9729
vertexData : VkBuffer; -- vulkan_core.h:9730
vertexOffset : aliased VkDeviceSize; -- vulkan_core.h:9731
vertexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9732
vertexStride : aliased VkDeviceSize; -- vulkan_core.h:9733
vertexFormat : aliased VkFormat; -- vulkan_core.h:9734
indexData : VkBuffer; -- vulkan_core.h:9735
indexOffset : aliased VkDeviceSize; -- vulkan_core.h:9736
indexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9737
indexType : aliased VkIndexType; -- vulkan_core.h:9738
transformData : VkBuffer; -- vulkan_core.h:9739
transformOffset : aliased VkDeviceSize; -- vulkan_core.h:9740
end record;
pragma Convention (C_Pass_By_Copy, VkGeometryTrianglesNV); -- vulkan_core.h:9727
type VkGeometryAABBNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9744
pNext : System.Address; -- vulkan_core.h:9745
aabbData : VkBuffer; -- vulkan_core.h:9746
numAABBs : aliased stdint_h.uint32_t; -- vulkan_core.h:9747
stride : aliased stdint_h.uint32_t; -- vulkan_core.h:9748
offset : aliased VkDeviceSize; -- vulkan_core.h:9749
end record;
pragma Convention (C_Pass_By_Copy, VkGeometryAABBNV); -- vulkan_core.h:9743
type VkGeometryDataNV is record
triangles : aliased VkGeometryTrianglesNV; -- vulkan_core.h:9753
aabbs : aliased VkGeometryAABBNV; -- vulkan_core.h:9754
end record;
pragma Convention (C_Pass_By_Copy, VkGeometryDataNV); -- vulkan_core.h:9752
type VkGeometryNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9758
pNext : System.Address; -- vulkan_core.h:9759
geometryType : aliased VkGeometryTypeKHR; -- vulkan_core.h:9760
geometry : aliased VkGeometryDataNV; -- vulkan_core.h:9761
flags : aliased VkGeometryFlagsKHR; -- vulkan_core.h:9762
end record;
pragma Convention (C_Pass_By_Copy, VkGeometryNV); -- vulkan_core.h:9757
type VkAccelerationStructureInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9766
pNext : System.Address; -- vulkan_core.h:9767
c_type : aliased VkAccelerationStructureTypeNV; -- vulkan_core.h:9768
flags : aliased VkBuildAccelerationStructureFlagsNV; -- vulkan_core.h:9769
instanceCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9770
geometryCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9771
pGeometries : System.Address; -- vulkan_core.h:9772
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureInfoNV); -- vulkan_core.h:9765
type VkAccelerationStructureCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9776
pNext : System.Address; -- vulkan_core.h:9777
compactedSize : aliased VkDeviceSize; -- vulkan_core.h:9778
info : aliased VkAccelerationStructureInfoNV; -- vulkan_core.h:9779
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureCreateInfoNV); -- vulkan_core.h:9775
type VkBindAccelerationStructureMemoryInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9783
pNext : System.Address; -- vulkan_core.h:9784
accelerationStructure : VkAccelerationStructureNV; -- vulkan_core.h:9785
memory : VkDeviceMemory; -- vulkan_core.h:9786
memoryOffset : aliased VkDeviceSize; -- vulkan_core.h:9787
deviceIndexCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9788
pDeviceIndices : access stdint_h.uint32_t; -- vulkan_core.h:9789
end record;
pragma Convention (C_Pass_By_Copy, VkBindAccelerationStructureMemoryInfoNV); -- vulkan_core.h:9782
type VkWriteDescriptorSetAccelerationStructureNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9793
pNext : System.Address; -- vulkan_core.h:9794
accelerationStructureCount : aliased stdint_h.uint32_t; -- vulkan_core.h:9795
pAccelerationStructures : System.Address; -- vulkan_core.h:9796
end record;
pragma Convention (C_Pass_By_Copy, VkWriteDescriptorSetAccelerationStructureNV); -- vulkan_core.h:9792
type VkAccelerationStructureMemoryRequirementsInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9800
pNext : System.Address; -- vulkan_core.h:9801
c_type : aliased VkAccelerationStructureMemoryRequirementsTypeNV; -- vulkan_core.h:9802
accelerationStructure : VkAccelerationStructureNV; -- vulkan_core.h:9803
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureMemoryRequirementsInfoNV); -- vulkan_core.h:9799
type VkPhysicalDeviceRayTracingPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9807
pNext : System.Address; -- vulkan_core.h:9808
shaderGroupHandleSize : aliased stdint_h.uint32_t; -- vulkan_core.h:9809
maxRecursionDepth : aliased stdint_h.uint32_t; -- vulkan_core.h:9810
maxShaderGroupStride : aliased stdint_h.uint32_t; -- vulkan_core.h:9811
shaderGroupBaseAlignment : aliased stdint_h.uint32_t; -- vulkan_core.h:9812
maxGeometryCount : aliased stdint_h.uint64_t; -- vulkan_core.h:9813
maxInstanceCount : aliased stdint_h.uint64_t; -- vulkan_core.h:9814
maxTriangleCount : aliased stdint_h.uint64_t; -- vulkan_core.h:9815
maxDescriptorSetAccelerationStructures : aliased stdint_h.uint32_t; -- vulkan_core.h:9816
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceRayTracingPropertiesNV); -- vulkan_core.h:9806
type VkTransformMatrixKHR_matrix_array is array (0 .. 2, 0 .. 3) of aliased float;
type VkTransformMatrixKHR is record
matrix : aliased VkTransformMatrixKHR_matrix_array; -- vulkan_core.h:9820
end record;
pragma Convention (C_Pass_By_Copy, VkTransformMatrixKHR); -- vulkan_core.h:9819
subtype VkTransformMatrixNV is VkTransformMatrixKHR;
type VkAabbPositionsKHR is record
minX : aliased float; -- vulkan_core.h:9826
minY : aliased float; -- vulkan_core.h:9827
minZ : aliased float; -- vulkan_core.h:9828
maxX : aliased float; -- vulkan_core.h:9829
maxY : aliased float; -- vulkan_core.h:9830
maxZ : aliased float; -- vulkan_core.h:9831
end record;
pragma Convention (C_Pass_By_Copy, VkAabbPositionsKHR); -- vulkan_core.h:9825
subtype VkAabbPositionsNV is VkAabbPositionsKHR;
type VkAccelerationStructureInstanceKHR is record
transform : aliased VkTransformMatrixKHR; -- vulkan_core.h:9837
instanceCustomIndex : Extensions.Unsigned_24; -- vulkan_core.h:9838
mask : aliased unsigned_char; -- vulkan_core.h:9839
instanceShaderBindingTableRecordOffset : Extensions.Unsigned_24; -- vulkan_core.h:9840
flags : aliased unsigned_char; -- vulkan_core.h:9841
accelerationStructureReference : aliased stdint_h.uint64_t; -- vulkan_core.h:9842
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureInstanceKHR);
pragma Pack (VkAccelerationStructureInstanceKHR); -- vulkan_core.h:9836
subtype VkAccelerationStructureInstanceNV is VkAccelerationStructureInstanceKHR;
type PFN_vkCreateAccelerationStructureNV is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateAccelerationStructureNV); -- vulkan_core.h:9847
type PFN_vkDestroyAccelerationStructureNV is access procedure
(arg1 : VkDevice;
arg2 : VkAccelerationStructureNV;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyAccelerationStructureNV); -- vulkan_core.h:9848
type PFN_vkGetAccelerationStructureMemoryRequirementsNV is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkMemoryRequirements2KHR);
pragma Convention (C, PFN_vkGetAccelerationStructureMemoryRequirementsNV); -- vulkan_core.h:9849
type PFN_vkBindAccelerationStructureMemoryNV is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkBindAccelerationStructureMemoryNV); -- vulkan_core.h:9850
type PFN_vkCmdBuildAccelerationStructureNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : VkBuffer;
arg4 : VkDeviceSize;
arg5 : VkBool32;
arg6 : VkAccelerationStructureNV;
arg7 : VkAccelerationStructureNV;
arg8 : VkBuffer;
arg9 : VkDeviceSize);
pragma Convention (C, PFN_vkCmdBuildAccelerationStructureNV); -- vulkan_core.h:9851
type PFN_vkCmdCopyAccelerationStructureNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkAccelerationStructureNV;
arg3 : VkAccelerationStructureNV;
arg4 : VkCopyAccelerationStructureModeKHR);
pragma Convention (C, PFN_vkCmdCopyAccelerationStructureNV); -- vulkan_core.h:9852
type PFN_vkCmdTraceRaysNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : VkDeviceSize;
arg7 : VkBuffer;
arg8 : VkDeviceSize;
arg9 : VkDeviceSize;
arg10 : VkBuffer;
arg11 : VkDeviceSize;
arg12 : VkDeviceSize;
arg13 : stdint_h.uint32_t;
arg14 : stdint_h.uint32_t;
arg15 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdTraceRaysNV); -- vulkan_core.h:9853
type PFN_vkCreateRayTracingPipelinesNV is access function
(arg1 : VkDevice;
arg2 : VkPipelineCache;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : System.Address;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateRayTracingPipelinesNV); -- vulkan_core.h:9854
type PFN_vkGetRayTracingShaderGroupHandlesKHR is access function
(arg1 : VkDevice;
arg2 : VkPipeline;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : crtdefs_h.size_t;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetRayTracingShaderGroupHandlesKHR); -- vulkan_core.h:9855
type PFN_vkGetRayTracingShaderGroupHandlesNV is access function
(arg1 : VkDevice;
arg2 : VkPipeline;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : crtdefs_h.size_t;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetRayTracingShaderGroupHandlesNV); -- vulkan_core.h:9856
type PFN_vkGetAccelerationStructureHandleNV is access function
(arg1 : VkDevice;
arg2 : VkAccelerationStructureNV;
arg3 : crtdefs_h.size_t;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetAccelerationStructureHandleNV); -- vulkan_core.h:9857
type PFN_vkCmdWriteAccelerationStructuresPropertiesNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkQueryType;
arg5 : VkQueryPool;
arg6 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdWriteAccelerationStructuresPropertiesNV); -- vulkan_core.h:9858
type PFN_vkCompileDeferredNV is access function
(arg1 : VkDevice;
arg2 : VkPipeline;
arg3 : stdint_h.uint32_t) return VkResult;
pragma Convention (C, PFN_vkCompileDeferredNV); -- vulkan_core.h:9859
function vkCreateAccelerationStructureNV
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pAccelerationStructure : System.Address) return VkResult; -- vulkan_core.h:9862
pragma Import (C, vkCreateAccelerationStructureNV, "vkCreateAccelerationStructureNV");
procedure vkDestroyAccelerationStructureNV
(device : VkDevice;
accelerationStructure : VkAccelerationStructureNV;
pAllocator : System.Address); -- vulkan_core.h:9868
pragma Import (C, vkDestroyAccelerationStructureNV, "vkDestroyAccelerationStructureNV");
procedure vkGetAccelerationStructureMemoryRequirementsNV
(device : VkDevice;
pInfo : System.Address;
pMemoryRequirements : access VkMemoryRequirements2KHR); -- vulkan_core.h:9873
pragma Import (C, vkGetAccelerationStructureMemoryRequirementsNV, "vkGetAccelerationStructureMemoryRequirementsNV");
function vkBindAccelerationStructureMemoryNV
(device : VkDevice;
bindInfoCount : stdint_h.uint32_t;
pBindInfos : System.Address) return VkResult; -- vulkan_core.h:9878
pragma Import (C, vkBindAccelerationStructureMemoryNV, "vkBindAccelerationStructureMemoryNV");
procedure vkCmdBuildAccelerationStructureNV
(commandBuffer : VkCommandBuffer;
pInfo : System.Address;
instanceData : VkBuffer;
instanceOffset : VkDeviceSize;
update : VkBool32;
dst : VkAccelerationStructureNV;
src : VkAccelerationStructureNV;
scratch : VkBuffer;
scratchOffset : VkDeviceSize); -- vulkan_core.h:9883
pragma Import (C, vkCmdBuildAccelerationStructureNV, "vkCmdBuildAccelerationStructureNV");
procedure vkCmdCopyAccelerationStructureNV
(commandBuffer : VkCommandBuffer;
dst : VkAccelerationStructureNV;
src : VkAccelerationStructureNV;
mode : VkCopyAccelerationStructureModeKHR); -- vulkan_core.h:9894
pragma Import (C, vkCmdCopyAccelerationStructureNV, "vkCmdCopyAccelerationStructureNV");
procedure vkCmdTraceRaysNV
(commandBuffer : VkCommandBuffer;
raygenShaderBindingTableBuffer : VkBuffer;
raygenShaderBindingOffset : VkDeviceSize;
missShaderBindingTableBuffer : VkBuffer;
missShaderBindingOffset : VkDeviceSize;
missShaderBindingStride : VkDeviceSize;
hitShaderBindingTableBuffer : VkBuffer;
hitShaderBindingOffset : VkDeviceSize;
hitShaderBindingStride : VkDeviceSize;
callableShaderBindingTableBuffer : VkBuffer;
callableShaderBindingOffset : VkDeviceSize;
callableShaderBindingStride : VkDeviceSize;
width : stdint_h.uint32_t;
height : stdint_h.uint32_t;
depth : stdint_h.uint32_t); -- vulkan_core.h:9900
pragma Import (C, vkCmdTraceRaysNV, "vkCmdTraceRaysNV");
function vkCreateRayTracingPipelinesNV
(device : VkDevice;
pipelineCache : VkPipelineCache;
createInfoCount : stdint_h.uint32_t;
pCreateInfos : System.Address;
pAllocator : System.Address;
pPipelines : System.Address) return VkResult; -- vulkan_core.h:9917
pragma Import (C, vkCreateRayTracingPipelinesNV, "vkCreateRayTracingPipelinesNV");
function vkGetRayTracingShaderGroupHandlesKHR
(device : VkDevice;
pipeline : VkPipeline;
firstGroup : stdint_h.uint32_t;
groupCount : stdint_h.uint32_t;
dataSize : crtdefs_h.size_t;
pData : System.Address) return VkResult; -- vulkan_core.h:9925
pragma Import (C, vkGetRayTracingShaderGroupHandlesKHR, "vkGetRayTracingShaderGroupHandlesKHR");
function vkGetRayTracingShaderGroupHandlesNV
(device : VkDevice;
pipeline : VkPipeline;
firstGroup : stdint_h.uint32_t;
groupCount : stdint_h.uint32_t;
dataSize : crtdefs_h.size_t;
pData : System.Address) return VkResult; -- vulkan_core.h:9933
pragma Import (C, vkGetRayTracingShaderGroupHandlesNV, "vkGetRayTracingShaderGroupHandlesNV");
function vkGetAccelerationStructureHandleNV
(device : VkDevice;
accelerationStructure : VkAccelerationStructureNV;
dataSize : crtdefs_h.size_t;
pData : System.Address) return VkResult; -- vulkan_core.h:9941
pragma Import (C, vkGetAccelerationStructureHandleNV, "vkGetAccelerationStructureHandleNV");
procedure vkCmdWriteAccelerationStructuresPropertiesNV
(commandBuffer : VkCommandBuffer;
accelerationStructureCount : stdint_h.uint32_t;
pAccelerationStructures : System.Address;
queryType : VkQueryType;
queryPool : VkQueryPool;
firstQuery : stdint_h.uint32_t); -- vulkan_core.h:9947
pragma Import (C, vkCmdWriteAccelerationStructuresPropertiesNV, "vkCmdWriteAccelerationStructuresPropertiesNV");
function vkCompileDeferredNV
(device : VkDevice;
pipeline : VkPipeline;
shader : stdint_h.uint32_t) return VkResult; -- vulkan_core.h:9955
pragma Import (C, vkCompileDeferredNV, "vkCompileDeferredNV");
type VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9966
pNext : System.Address; -- vulkan_core.h:9967
representativeFragmentTest : aliased VkBool32; -- vulkan_core.h:9968
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceRepresentativeFragmentTestFeaturesNV); -- vulkan_core.h:9965
type VkPipelineRepresentativeFragmentTestStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:9972
pNext : System.Address; -- vulkan_core.h:9973
representativeFragmentTestEnable : aliased VkBool32; -- vulkan_core.h:9974
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineRepresentativeFragmentTestStateCreateInfoNV); -- vulkan_core.h:9971
type VkPhysicalDeviceImageViewImageFormatInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9983
pNext : System.Address; -- vulkan_core.h:9984
imageViewType : aliased VkImageViewType; -- vulkan_core.h:9985
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceImageViewImageFormatInfoEXT); -- vulkan_core.h:9982
type VkFilterCubicImageViewImageFormatPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:9989
pNext : System.Address; -- vulkan_core.h:9990
filterCubic : aliased VkBool32; -- vulkan_core.h:9991
filterCubicMinmax : aliased VkBool32; -- vulkan_core.h:9992
end record;
pragma Convention (C_Pass_By_Copy, VkFilterCubicImageViewImageFormatPropertiesEXT); -- vulkan_core.h:9988
subtype VkQueueGlobalPriorityEXT is unsigned;
VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT : constant VkQueueGlobalPriorityEXT := 128;
VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT : constant VkQueueGlobalPriorityEXT := 256;
VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT : constant VkQueueGlobalPriorityEXT := 512;
VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT : constant VkQueueGlobalPriorityEXT := 1024;
VK_QUEUE_GLOBAL_PRIORITY_MAX_ENUM_EXT : constant VkQueueGlobalPriorityEXT := 2147483647; -- vulkan_core.h:10006
type VkDeviceQueueGlobalPriorityCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10014
pNext : System.Address; -- vulkan_core.h:10015
globalPriority : aliased VkQueueGlobalPriorityEXT; -- vulkan_core.h:10016
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceQueueGlobalPriorityCreateInfoEXT); -- vulkan_core.h:10013
type VkImportMemoryHostPointerInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10025
pNext : System.Address; -- vulkan_core.h:10026
handleType : aliased VkExternalMemoryHandleTypeFlagBits; -- vulkan_core.h:10027
pHostPointer : System.Address; -- vulkan_core.h:10028
end record;
pragma Convention (C_Pass_By_Copy, VkImportMemoryHostPointerInfoEXT); -- vulkan_core.h:10024
type VkMemoryHostPointerPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10032
pNext : System.Address; -- vulkan_core.h:10033
memoryTypeBits : aliased stdint_h.uint32_t; -- vulkan_core.h:10034
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryHostPointerPropertiesEXT); -- vulkan_core.h:10031
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10038
pNext : System.Address; -- vulkan_core.h:10039
minImportedHostPointerAlignment : aliased VkDeviceSize; -- vulkan_core.h:10040
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceExternalMemoryHostPropertiesEXT); -- vulkan_core.h:10037
type PFN_vkGetMemoryHostPointerPropertiesEXT is access function
(arg1 : VkDevice;
arg2 : VkExternalMemoryHandleTypeFlagBits;
arg3 : System.Address;
arg4 : access VkMemoryHostPointerPropertiesEXT) return VkResult;
pragma Convention (C, PFN_vkGetMemoryHostPointerPropertiesEXT); -- vulkan_core.h:10043
function vkGetMemoryHostPointerPropertiesEXT
(device : VkDevice;
handleType : VkExternalMemoryHandleTypeFlagBits;
pHostPointer : System.Address;
pMemoryHostPointerProperties : access VkMemoryHostPointerPropertiesEXT) return VkResult; -- vulkan_core.h:10046
pragma Import (C, vkGetMemoryHostPointerPropertiesEXT, "vkGetMemoryHostPointerPropertiesEXT");
type PFN_vkCmdWriteBufferMarkerAMD is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineStageFlagBits;
arg3 : VkBuffer;
arg4 : VkDeviceSize;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdWriteBufferMarkerAMD); -- vulkan_core.h:10057
procedure vkCmdWriteBufferMarkerAMD
(commandBuffer : VkCommandBuffer;
pipelineStage : VkPipelineStageFlagBits;
dstBuffer : VkBuffer;
dstOffset : VkDeviceSize;
marker : stdint_h.uint32_t); -- vulkan_core.h:10060
pragma Import (C, vkCmdWriteBufferMarkerAMD, "vkCmdWriteBufferMarkerAMD");
subtype VkPipelineCompilerControlFlagBitsAMD is unsigned;
VK_PIPELINE_COMPILER_CONTROL_FLAG_BITS_MAX_ENUM_AMD : constant VkPipelineCompilerControlFlagBitsAMD := 2147483647; -- vulkan_core.h:10073
subtype VkPipelineCompilerControlFlagsAMD is VkFlags; -- vulkan_core.h:10076
type VkPipelineCompilerControlCreateInfoAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:10078
pNext : System.Address; -- vulkan_core.h:10079
compilerControlFlags : aliased VkPipelineCompilerControlFlagsAMD; -- vulkan_core.h:10080
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineCompilerControlCreateInfoAMD); -- vulkan_core.h:10077
subtype VkTimeDomainEXT is unsigned;
VK_TIME_DOMAIN_DEVICE_EXT : constant VkTimeDomainEXT := 0;
VK_TIME_DOMAIN_CLOCK_MONOTONIC_EXT : constant VkTimeDomainEXT := 1;
VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT : constant VkTimeDomainEXT := 2;
VK_TIME_DOMAIN_QUERY_PERFORMANCE_COUNTER_EXT : constant VkTimeDomainEXT := 3;
VK_TIME_DOMAIN_MAX_ENUM_EXT : constant VkTimeDomainEXT := 2147483647; -- vulkan_core.h:10089
type VkCalibratedTimestampInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10097
pNext : System.Address; -- vulkan_core.h:10098
timeDomain : aliased VkTimeDomainEXT; -- vulkan_core.h:10099
end record;
pragma Convention (C_Pass_By_Copy, VkCalibratedTimestampInfoEXT); -- vulkan_core.h:10096
type PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkTimeDomainEXT) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceCalibrateableTimeDomainsEXT); -- vulkan_core.h:10102
type PFN_vkGetCalibratedTimestampsEXT is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : access stdint_h.uint64_t;
arg5 : access stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkGetCalibratedTimestampsEXT); -- vulkan_core.h:10103
function vkGetPhysicalDeviceCalibrateableTimeDomainsEXT
(physicalDevice : VkPhysicalDevice;
pTimeDomainCount : access stdint_h.uint32_t;
pTimeDomains : access VkTimeDomainEXT) return VkResult; -- vulkan_core.h:10106
pragma Import (C, vkGetPhysicalDeviceCalibrateableTimeDomainsEXT, "vkGetPhysicalDeviceCalibrateableTimeDomainsEXT");
function vkGetCalibratedTimestampsEXT
(device : VkDevice;
timestampCount : stdint_h.uint32_t;
pTimestampInfos : System.Address;
pTimestamps : access stdint_h.uint64_t;
pMaxDeviation : access stdint_h.uint64_t) return VkResult; -- vulkan_core.h:10111
pragma Import (C, vkGetCalibratedTimestampsEXT, "vkGetCalibratedTimestampsEXT");
type VkPhysicalDeviceShaderCorePropertiesAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:10124
pNext : System.Address; -- vulkan_core.h:10125
shaderEngineCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10126
shaderArraysPerEngineCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10127
computeUnitsPerShaderArray : aliased stdint_h.uint32_t; -- vulkan_core.h:10128
simdPerComputeUnit : aliased stdint_h.uint32_t; -- vulkan_core.h:10129
wavefrontsPerSimd : aliased stdint_h.uint32_t; -- vulkan_core.h:10130
wavefrontSize : aliased stdint_h.uint32_t; -- vulkan_core.h:10131
sgprsPerSimd : aliased stdint_h.uint32_t; -- vulkan_core.h:10132
minSgprAllocation : aliased stdint_h.uint32_t; -- vulkan_core.h:10133
maxSgprAllocation : aliased stdint_h.uint32_t; -- vulkan_core.h:10134
sgprAllocationGranularity : aliased stdint_h.uint32_t; -- vulkan_core.h:10135
vgprsPerSimd : aliased stdint_h.uint32_t; -- vulkan_core.h:10136
minVgprAllocation : aliased stdint_h.uint32_t; -- vulkan_core.h:10137
maxVgprAllocation : aliased stdint_h.uint32_t; -- vulkan_core.h:10138
vgprAllocationGranularity : aliased stdint_h.uint32_t; -- vulkan_core.h:10139
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderCorePropertiesAMD); -- vulkan_core.h:10123
subtype VkMemoryOverallocationBehaviorAMD is unsigned;
VK_MEMORY_OVERALLOCATION_BEHAVIOR_DEFAULT_AMD : constant VkMemoryOverallocationBehaviorAMD := 0;
VK_MEMORY_OVERALLOCATION_BEHAVIOR_ALLOWED_AMD : constant VkMemoryOverallocationBehaviorAMD := 1;
VK_MEMORY_OVERALLOCATION_BEHAVIOR_DISALLOWED_AMD : constant VkMemoryOverallocationBehaviorAMD := 2;
VK_MEMORY_OVERALLOCATION_BEHAVIOR_MAX_ENUM_AMD : constant VkMemoryOverallocationBehaviorAMD := 2147483647; -- vulkan_core.h:10148
type VkDeviceMemoryOverallocationCreateInfoAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:10155
pNext : System.Address; -- vulkan_core.h:10156
overallocationBehavior : aliased VkMemoryOverallocationBehaviorAMD; -- vulkan_core.h:10157
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceMemoryOverallocationCreateInfoAMD); -- vulkan_core.h:10154
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10166
pNext : System.Address; -- vulkan_core.h:10167
maxVertexAttribDivisor : aliased stdint_h.uint32_t; -- vulkan_core.h:10168
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT); -- vulkan_core.h:10165
type VkVertexInputBindingDivisorDescriptionEXT is record
binding : aliased stdint_h.uint32_t; -- vulkan_core.h:10172
divisor : aliased stdint_h.uint32_t; -- vulkan_core.h:10173
end record;
pragma Convention (C_Pass_By_Copy, VkVertexInputBindingDivisorDescriptionEXT); -- vulkan_core.h:10171
type VkPipelineVertexInputDivisorStateCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10177
pNext : System.Address; -- vulkan_core.h:10178
vertexBindingDivisorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10179
pVertexBindingDivisors : System.Address; -- vulkan_core.h:10180
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineVertexInputDivisorStateCreateInfoEXT); -- vulkan_core.h:10176
type VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10184
pNext : System.Address; -- vulkan_core.h:10185
vertexAttributeInstanceRateDivisor : aliased VkBool32; -- vulkan_core.h:10186
vertexAttributeInstanceRateZeroDivisor : aliased VkBool32; -- vulkan_core.h:10187
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT); -- vulkan_core.h:10183
subtype VkPipelineCreationFeedbackFlagBitsEXT is unsigned;
VK_PIPELINE_CREATION_FEEDBACK_VALID_BIT_EXT : constant VkPipelineCreationFeedbackFlagBitsEXT := 1;
VK_PIPELINE_CREATION_FEEDBACK_APPLICATION_PIPELINE_CACHE_HIT_BIT_EXT : constant VkPipelineCreationFeedbackFlagBitsEXT := 2;
VK_PIPELINE_CREATION_FEEDBACK_BASE_PIPELINE_ACCELERATION_BIT_EXT : constant VkPipelineCreationFeedbackFlagBitsEXT := 4;
VK_PIPELINE_CREATION_FEEDBACK_FLAG_BITS_MAX_ENUM_EXT : constant VkPipelineCreationFeedbackFlagBitsEXT := 2147483647; -- vulkan_core.h:10196
subtype VkPipelineCreationFeedbackFlagsEXT is VkFlags; -- vulkan_core.h:10202
type VkPipelineCreationFeedbackEXT is record
flags : aliased VkPipelineCreationFeedbackFlagsEXT; -- vulkan_core.h:10204
duration : aliased stdint_h.uint64_t; -- vulkan_core.h:10205
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineCreationFeedbackEXT); -- vulkan_core.h:10203
type VkPipelineCreationFeedbackCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10209
pNext : System.Address; -- vulkan_core.h:10210
pPipelineCreationFeedback : access VkPipelineCreationFeedbackEXT; -- vulkan_core.h:10211
pipelineStageCreationFeedbackCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10212
pPipelineStageCreationFeedbacks : access VkPipelineCreationFeedbackEXT; -- vulkan_core.h:10213
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineCreationFeedbackCreateInfoEXT); -- vulkan_core.h:10208
type VkPhysicalDeviceComputeShaderDerivativesFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10227
pNext : System.Address; -- vulkan_core.h:10228
computeDerivativeGroupQuads : aliased VkBool32; -- vulkan_core.h:10229
computeDerivativeGroupLinear : aliased VkBool32; -- vulkan_core.h:10230
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceComputeShaderDerivativesFeaturesNV); -- vulkan_core.h:10226
type VkPhysicalDeviceMeshShaderFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10239
pNext : System.Address; -- vulkan_core.h:10240
taskShader : aliased VkBool32; -- vulkan_core.h:10241
meshShader : aliased VkBool32; -- vulkan_core.h:10242
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMeshShaderFeaturesNV); -- vulkan_core.h:10238
type VkPhysicalDeviceMeshShaderPropertiesNV_maxTaskWorkGroupSize_array is array (0 .. 2) of aliased stdint_h.uint32_t;
type VkPhysicalDeviceMeshShaderPropertiesNV_maxMeshWorkGroupSize_array is array (0 .. 2) of aliased stdint_h.uint32_t;
type VkPhysicalDeviceMeshShaderPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10246
pNext : System.Address; -- vulkan_core.h:10247
maxDrawMeshTasksCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10248
maxTaskWorkGroupInvocations : aliased stdint_h.uint32_t; -- vulkan_core.h:10249
maxTaskWorkGroupSize : aliased VkPhysicalDeviceMeshShaderPropertiesNV_maxTaskWorkGroupSize_array; -- vulkan_core.h:10250
maxTaskTotalMemorySize : aliased stdint_h.uint32_t; -- vulkan_core.h:10251
maxTaskOutputCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10252
maxMeshWorkGroupInvocations : aliased stdint_h.uint32_t; -- vulkan_core.h:10253
maxMeshWorkGroupSize : aliased VkPhysicalDeviceMeshShaderPropertiesNV_maxMeshWorkGroupSize_array; -- vulkan_core.h:10254
maxMeshTotalMemorySize : aliased stdint_h.uint32_t; -- vulkan_core.h:10255
maxMeshOutputVertices : aliased stdint_h.uint32_t; -- vulkan_core.h:10256
maxMeshOutputPrimitives : aliased stdint_h.uint32_t; -- vulkan_core.h:10257
maxMeshMultiviewViewCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10258
meshOutputPerVertexGranularity : aliased stdint_h.uint32_t; -- vulkan_core.h:10259
meshOutputPerPrimitiveGranularity : aliased stdint_h.uint32_t; -- vulkan_core.h:10260
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMeshShaderPropertiesNV); -- vulkan_core.h:10245
type VkDrawMeshTasksIndirectCommandNV is record
taskCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10264
firstTask : aliased stdint_h.uint32_t; -- vulkan_core.h:10265
end record;
pragma Convention (C_Pass_By_Copy, VkDrawMeshTasksIndirectCommandNV); -- vulkan_core.h:10263
type PFN_vkCmdDrawMeshTasksNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawMeshTasksNV); -- vulkan_core.h:10268
type PFN_vkCmdDrawMeshTasksIndirectNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : stdint_h.uint32_t;
arg5 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawMeshTasksIndirectNV); -- vulkan_core.h:10269
type PFN_vkCmdDrawMeshTasksIndirectCountNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBuffer;
arg3 : VkDeviceSize;
arg4 : VkBuffer;
arg5 : VkDeviceSize;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdDrawMeshTasksIndirectCountNV); -- vulkan_core.h:10270
procedure vkCmdDrawMeshTasksNV
(commandBuffer : VkCommandBuffer;
taskCount : stdint_h.uint32_t;
firstTask : stdint_h.uint32_t); -- vulkan_core.h:10273
pragma Import (C, vkCmdDrawMeshTasksNV, "vkCmdDrawMeshTasksNV");
procedure vkCmdDrawMeshTasksIndirectNV
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
drawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:10278
pragma Import (C, vkCmdDrawMeshTasksIndirectNV, "vkCmdDrawMeshTasksIndirectNV");
procedure vkCmdDrawMeshTasksIndirectCountNV
(commandBuffer : VkCommandBuffer;
buffer : VkBuffer;
offset : VkDeviceSize;
countBuffer : VkBuffer;
countBufferOffset : VkDeviceSize;
maxDrawCount : stdint_h.uint32_t;
stride : stdint_h.uint32_t); -- vulkan_core.h:10285
pragma Import (C, vkCmdDrawMeshTasksIndirectCountNV, "vkCmdDrawMeshTasksIndirectCountNV");
type VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10300
pNext : System.Address; -- vulkan_core.h:10301
fragmentShaderBarycentric : aliased VkBool32; -- vulkan_core.h:10302
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentShaderBarycentricFeaturesNV); -- vulkan_core.h:10299
type VkPhysicalDeviceShaderImageFootprintFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10311
pNext : System.Address; -- vulkan_core.h:10312
imageFootprint : aliased VkBool32; -- vulkan_core.h:10313
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderImageFootprintFeaturesNV); -- vulkan_core.h:10310
type VkPipelineViewportExclusiveScissorStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10322
pNext : System.Address; -- vulkan_core.h:10323
exclusiveScissorCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10324
pExclusiveScissors : System.Address; -- vulkan_core.h:10325
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineViewportExclusiveScissorStateCreateInfoNV); -- vulkan_core.h:10321
type VkPhysicalDeviceExclusiveScissorFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10329
pNext : System.Address; -- vulkan_core.h:10330
exclusiveScissor : aliased VkBool32; -- vulkan_core.h:10331
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceExclusiveScissorFeaturesNV); -- vulkan_core.h:10328
type PFN_vkCmdSetExclusiveScissorNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdSetExclusiveScissorNV); -- vulkan_core.h:10334
procedure vkCmdSetExclusiveScissorNV
(commandBuffer : VkCommandBuffer;
firstExclusiveScissor : stdint_h.uint32_t;
exclusiveScissorCount : stdint_h.uint32_t;
pExclusiveScissors : System.Address); -- vulkan_core.h:10337
pragma Import (C, vkCmdSetExclusiveScissorNV, "vkCmdSetExclusiveScissorNV");
type VkQueueFamilyCheckpointPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10349
pNext : System.Address; -- vulkan_core.h:10350
checkpointExecutionStageMask : aliased VkPipelineStageFlags; -- vulkan_core.h:10351
end record;
pragma Convention (C_Pass_By_Copy, VkQueueFamilyCheckpointPropertiesNV); -- vulkan_core.h:10348
type VkCheckpointDataNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10355
pNext : System.Address; -- vulkan_core.h:10356
stage : aliased VkPipelineStageFlagBits; -- vulkan_core.h:10357
pCheckpointMarker : System.Address; -- vulkan_core.h:10358
end record;
pragma Convention (C_Pass_By_Copy, VkCheckpointDataNV); -- vulkan_core.h:10354
type PFN_vkCmdSetCheckpointNV is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdSetCheckpointNV); -- vulkan_core.h:10361
type PFN_vkGetQueueCheckpointDataNV is access procedure
(arg1 : VkQueue;
arg2 : access stdint_h.uint32_t;
arg3 : access VkCheckpointDataNV);
pragma Convention (C, PFN_vkGetQueueCheckpointDataNV); -- vulkan_core.h:10362
procedure vkCmdSetCheckpointNV (commandBuffer : VkCommandBuffer; pCheckpointMarker : System.Address); -- vulkan_core.h:10365
pragma Import (C, vkCmdSetCheckpointNV, "vkCmdSetCheckpointNV");
procedure vkGetQueueCheckpointDataNV
(queue : VkQueue;
pCheckpointDataCount : access stdint_h.uint32_t;
pCheckpointData : access VkCheckpointDataNV); -- vulkan_core.h:10369
pragma Import (C, vkGetQueueCheckpointDataNV, "vkGetQueueCheckpointDataNV");
type VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL is record
sType : aliased VkStructureType; -- vulkan_core.h:10380
pNext : System.Address; -- vulkan_core.h:10381
shaderIntegerFunctions2 : aliased VkBool32; -- vulkan_core.h:10382
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderIntegerFunctions2FeaturesINTEL); -- vulkan_core.h:10379
type VkPerformanceConfigurationINTEL is new System.Address; -- vulkan_core.h:10388
-- skipped empty struct VkPerformanceConfigurationINTEL_T
subtype VkPerformanceConfigurationTypeINTEL is unsigned;
VK_PERFORMANCE_CONFIGURATION_TYPE_COMMAND_QUEUE_METRICS_DISCOVERY_ACTIVATED_INTEL : constant VkPerformanceConfigurationTypeINTEL := 0;
VK_PERFORMANCE_CONFIGURATION_TYPE_MAX_ENUM_INTEL : constant VkPerformanceConfigurationTypeINTEL := 2147483647; -- vulkan_core.h:10392
subtype VkQueryPoolSamplingModeINTEL is unsigned;
VK_QUERY_POOL_SAMPLING_MODE_MANUAL_INTEL : constant VkQueryPoolSamplingModeINTEL := 0;
VK_QUERY_POOL_SAMPLING_MODE_MAX_ENUM_INTEL : constant VkQueryPoolSamplingModeINTEL := 2147483647; -- vulkan_core.h:10397
subtype VkPerformanceOverrideTypeINTEL is unsigned;
VK_PERFORMANCE_OVERRIDE_TYPE_NULL_HARDWARE_INTEL : constant VkPerformanceOverrideTypeINTEL := 0;
VK_PERFORMANCE_OVERRIDE_TYPE_FLUSH_GPU_CACHES_INTEL : constant VkPerformanceOverrideTypeINTEL := 1;
VK_PERFORMANCE_OVERRIDE_TYPE_MAX_ENUM_INTEL : constant VkPerformanceOverrideTypeINTEL := 2147483647; -- vulkan_core.h:10402
subtype VkPerformanceParameterTypeINTEL is unsigned;
VK_PERFORMANCE_PARAMETER_TYPE_HW_COUNTERS_SUPPORTED_INTEL : constant VkPerformanceParameterTypeINTEL := 0;
VK_PERFORMANCE_PARAMETER_TYPE_STREAM_MARKER_VALID_BITS_INTEL : constant VkPerformanceParameterTypeINTEL := 1;
VK_PERFORMANCE_PARAMETER_TYPE_MAX_ENUM_INTEL : constant VkPerformanceParameterTypeINTEL := 2147483647; -- vulkan_core.h:10408
subtype VkPerformanceValueTypeINTEL is unsigned;
VK_PERFORMANCE_VALUE_TYPE_UINT32_INTEL : constant VkPerformanceValueTypeINTEL := 0;
VK_PERFORMANCE_VALUE_TYPE_UINT64_INTEL : constant VkPerformanceValueTypeINTEL := 1;
VK_PERFORMANCE_VALUE_TYPE_FLOAT_INTEL : constant VkPerformanceValueTypeINTEL := 2;
VK_PERFORMANCE_VALUE_TYPE_BOOL_INTEL : constant VkPerformanceValueTypeINTEL := 3;
VK_PERFORMANCE_VALUE_TYPE_STRING_INTEL : constant VkPerformanceValueTypeINTEL := 4;
VK_PERFORMANCE_VALUE_TYPE_MAX_ENUM_INTEL : constant VkPerformanceValueTypeINTEL := 2147483647; -- vulkan_core.h:10414
type VkPerformanceValueDataINTEL (discr : unsigned := 0) is record
case discr is
when 0 =>
value32 : aliased stdint_h.uint32_t; -- vulkan_core.h:10423
when 1 =>
value64 : aliased stdint_h.uint64_t; -- vulkan_core.h:10424
when 2 =>
valueFloat : aliased float; -- vulkan_core.h:10425
when 3 =>
valueBool : aliased VkBool32; -- vulkan_core.h:10426
when others =>
valueString : Interfaces.C.Strings.chars_ptr; -- vulkan_core.h:10427
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceValueDataINTEL);
pragma Unchecked_Union (VkPerformanceValueDataINTEL); -- vulkan_core.h:10422
type VkPerformanceValueINTEL is record
c_type : aliased VkPerformanceValueTypeINTEL; -- vulkan_core.h:10431
data : VkPerformanceValueDataINTEL; -- vulkan_core.h:10432
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceValueINTEL); -- vulkan_core.h:10430
type VkInitializePerformanceApiInfoINTEL is record
sType : aliased VkStructureType; -- vulkan_core.h:10436
pNext : System.Address; -- vulkan_core.h:10437
pUserData : System.Address; -- vulkan_core.h:10438
end record;
pragma Convention (C_Pass_By_Copy, VkInitializePerformanceApiInfoINTEL); -- vulkan_core.h:10435
type VkQueryPoolPerformanceQueryCreateInfoINTEL is record
sType : aliased VkStructureType; -- vulkan_core.h:10442
pNext : System.Address; -- vulkan_core.h:10443
performanceCountersSampling : aliased VkQueryPoolSamplingModeINTEL; -- vulkan_core.h:10444
end record;
pragma Convention (C_Pass_By_Copy, VkQueryPoolPerformanceQueryCreateInfoINTEL); -- vulkan_core.h:10441
subtype VkQueryPoolCreateInfoINTEL is VkQueryPoolPerformanceQueryCreateInfoINTEL;
type VkPerformanceMarkerInfoINTEL is record
sType : aliased VkStructureType; -- vulkan_core.h:10450
pNext : System.Address; -- vulkan_core.h:10451
marker : aliased stdint_h.uint64_t; -- vulkan_core.h:10452
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceMarkerInfoINTEL); -- vulkan_core.h:10449
type VkPerformanceStreamMarkerInfoINTEL is record
sType : aliased VkStructureType; -- vulkan_core.h:10456
pNext : System.Address; -- vulkan_core.h:10457
marker : aliased stdint_h.uint32_t; -- vulkan_core.h:10458
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceStreamMarkerInfoINTEL); -- vulkan_core.h:10455
type VkPerformanceOverrideInfoINTEL is record
sType : aliased VkStructureType; -- vulkan_core.h:10462
pNext : System.Address; -- vulkan_core.h:10463
c_type : aliased VkPerformanceOverrideTypeINTEL; -- vulkan_core.h:10464
enable : aliased VkBool32; -- vulkan_core.h:10465
parameter : aliased stdint_h.uint64_t; -- vulkan_core.h:10466
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceOverrideInfoINTEL); -- vulkan_core.h:10461
type VkPerformanceConfigurationAcquireInfoINTEL is record
sType : aliased VkStructureType; -- vulkan_core.h:10470
pNext : System.Address; -- vulkan_core.h:10471
c_type : aliased VkPerformanceConfigurationTypeINTEL; -- vulkan_core.h:10472
end record;
pragma Convention (C_Pass_By_Copy, VkPerformanceConfigurationAcquireInfoINTEL); -- vulkan_core.h:10469
type PFN_vkInitializePerformanceApiINTEL is access function (arg1 : VkDevice; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkInitializePerformanceApiINTEL); -- vulkan_core.h:10475
type PFN_vkUninitializePerformanceApiINTEL is access procedure (arg1 : VkDevice);
pragma Convention (C, PFN_vkUninitializePerformanceApiINTEL); -- vulkan_core.h:10476
type PFN_vkCmdSetPerformanceMarkerINTEL is access function (arg1 : VkCommandBuffer; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCmdSetPerformanceMarkerINTEL); -- vulkan_core.h:10477
type PFN_vkCmdSetPerformanceStreamMarkerINTEL is access function (arg1 : VkCommandBuffer; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCmdSetPerformanceStreamMarkerINTEL); -- vulkan_core.h:10478
type PFN_vkCmdSetPerformanceOverrideINTEL is access function (arg1 : VkCommandBuffer; arg2 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCmdSetPerformanceOverrideINTEL); -- vulkan_core.h:10479
type PFN_vkAcquirePerformanceConfigurationINTEL is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkAcquirePerformanceConfigurationINTEL); -- vulkan_core.h:10480
type PFN_vkReleasePerformanceConfigurationINTEL is access function (arg1 : VkDevice; arg2 : VkPerformanceConfigurationINTEL) return VkResult;
pragma Convention (C, PFN_vkReleasePerformanceConfigurationINTEL); -- vulkan_core.h:10481
type PFN_vkQueueSetPerformanceConfigurationINTEL is access function (arg1 : VkQueue; arg2 : VkPerformanceConfigurationINTEL) return VkResult;
pragma Convention (C, PFN_vkQueueSetPerformanceConfigurationINTEL); -- vulkan_core.h:10482
type PFN_vkGetPerformanceParameterINTEL is access function
(arg1 : VkDevice;
arg2 : VkPerformanceParameterTypeINTEL;
arg3 : access VkPerformanceValueINTEL) return VkResult;
pragma Convention (C, PFN_vkGetPerformanceParameterINTEL); -- vulkan_core.h:10483
function vkInitializePerformanceApiINTEL (device : VkDevice; pInitializeInfo : System.Address) return VkResult; -- vulkan_core.h:10486
pragma Import (C, vkInitializePerformanceApiINTEL, "vkInitializePerformanceApiINTEL");
procedure vkUninitializePerformanceApiINTEL (device : VkDevice); -- vulkan_core.h:10490
pragma Import (C, vkUninitializePerformanceApiINTEL, "vkUninitializePerformanceApiINTEL");
function vkCmdSetPerformanceMarkerINTEL (commandBuffer : VkCommandBuffer; pMarkerInfo : System.Address) return VkResult; -- vulkan_core.h:10493
pragma Import (C, vkCmdSetPerformanceMarkerINTEL, "vkCmdSetPerformanceMarkerINTEL");
function vkCmdSetPerformanceStreamMarkerINTEL (commandBuffer : VkCommandBuffer; pMarkerInfo : System.Address) return VkResult; -- vulkan_core.h:10497
pragma Import (C, vkCmdSetPerformanceStreamMarkerINTEL, "vkCmdSetPerformanceStreamMarkerINTEL");
function vkCmdSetPerformanceOverrideINTEL (commandBuffer : VkCommandBuffer; pOverrideInfo : System.Address) return VkResult; -- vulkan_core.h:10501
pragma Import (C, vkCmdSetPerformanceOverrideINTEL, "vkCmdSetPerformanceOverrideINTEL");
function vkAcquirePerformanceConfigurationINTEL
(device : VkDevice;
pAcquireInfo : System.Address;
pConfiguration : System.Address) return VkResult; -- vulkan_core.h:10505
pragma Import (C, vkAcquirePerformanceConfigurationINTEL, "vkAcquirePerformanceConfigurationINTEL");
function vkReleasePerformanceConfigurationINTEL (device : VkDevice; configuration : VkPerformanceConfigurationINTEL) return VkResult; -- vulkan_core.h:10510
pragma Import (C, vkReleasePerformanceConfigurationINTEL, "vkReleasePerformanceConfigurationINTEL");
function vkQueueSetPerformanceConfigurationINTEL (queue : VkQueue; configuration : VkPerformanceConfigurationINTEL) return VkResult; -- vulkan_core.h:10514
pragma Import (C, vkQueueSetPerformanceConfigurationINTEL, "vkQueueSetPerformanceConfigurationINTEL");
function vkGetPerformanceParameterINTEL
(device : VkDevice;
parameter : VkPerformanceParameterTypeINTEL;
pValue : access VkPerformanceValueINTEL) return VkResult; -- vulkan_core.h:10518
pragma Import (C, vkGetPerformanceParameterINTEL, "vkGetPerformanceParameterINTEL");
type VkPhysicalDevicePCIBusInfoPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10529
pNext : System.Address; -- vulkan_core.h:10530
pciDomain : aliased stdint_h.uint32_t; -- vulkan_core.h:10531
pciBus : aliased stdint_h.uint32_t; -- vulkan_core.h:10532
pciDevice : aliased stdint_h.uint32_t; -- vulkan_core.h:10533
pciFunction : aliased stdint_h.uint32_t; -- vulkan_core.h:10534
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePCIBusInfoPropertiesEXT); -- vulkan_core.h:10528
type VkDisplayNativeHdrSurfaceCapabilitiesAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:10543
pNext : System.Address; -- vulkan_core.h:10544
localDimmingSupport : aliased VkBool32; -- vulkan_core.h:10545
end record;
pragma Convention (C_Pass_By_Copy, VkDisplayNativeHdrSurfaceCapabilitiesAMD); -- vulkan_core.h:10542
type VkSwapchainDisplayNativeHdrCreateInfoAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:10549
pNext : System.Address; -- vulkan_core.h:10550
localDimmingEnable : aliased VkBool32; -- vulkan_core.h:10551
end record;
pragma Convention (C_Pass_By_Copy, VkSwapchainDisplayNativeHdrCreateInfoAMD); -- vulkan_core.h:10548
type PFN_vkSetLocalDimmingAMD is access procedure
(arg1 : VkDevice;
arg2 : VkSwapchainKHR;
arg3 : VkBool32);
pragma Convention (C, PFN_vkSetLocalDimmingAMD); -- vulkan_core.h:10554
procedure vkSetLocalDimmingAMD
(device : VkDevice;
swapChain : VkSwapchainKHR;
localDimmingEnable : VkBool32); -- vulkan_core.h:10557
pragma Import (C, vkSetLocalDimmingAMD, "vkSetLocalDimmingAMD");
type VkPhysicalDeviceFragmentDensityMapFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10568
pNext : System.Address; -- vulkan_core.h:10569
fragmentDensityMap : aliased VkBool32; -- vulkan_core.h:10570
fragmentDensityMapDynamic : aliased VkBool32; -- vulkan_core.h:10571
fragmentDensityMapNonSubsampledImages : aliased VkBool32; -- vulkan_core.h:10572
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentDensityMapFeaturesEXT); -- vulkan_core.h:10567
type VkPhysicalDeviceFragmentDensityMapPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10576
pNext : System.Address; -- vulkan_core.h:10577
minFragmentDensityTexelSize : aliased VkExtent2D; -- vulkan_core.h:10578
maxFragmentDensityTexelSize : aliased VkExtent2D; -- vulkan_core.h:10579
fragmentDensityInvocations : aliased VkBool32; -- vulkan_core.h:10580
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentDensityMapPropertiesEXT); -- vulkan_core.h:10575
type VkRenderPassFragmentDensityMapCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10584
pNext : System.Address; -- vulkan_core.h:10585
fragmentDensityMapAttachment : aliased VkAttachmentReference; -- vulkan_core.h:10586
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassFragmentDensityMapCreateInfoEXT); -- vulkan_core.h:10583
subtype VkPhysicalDeviceScalarBlockLayoutFeaturesEXT is VkPhysicalDeviceScalarBlockLayoutFeatures;
type VkPhysicalDeviceSubgroupSizeControlFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10612
pNext : System.Address; -- vulkan_core.h:10613
subgroupSizeControl : aliased VkBool32; -- vulkan_core.h:10614
computeFullSubgroups : aliased VkBool32; -- vulkan_core.h:10615
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSubgroupSizeControlFeaturesEXT); -- vulkan_core.h:10611
type VkPhysicalDeviceSubgroupSizeControlPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10619
pNext : System.Address; -- vulkan_core.h:10620
minSubgroupSize : aliased stdint_h.uint32_t; -- vulkan_core.h:10621
maxSubgroupSize : aliased stdint_h.uint32_t; -- vulkan_core.h:10622
maxComputeWorkgroupSubgroups : aliased stdint_h.uint32_t; -- vulkan_core.h:10623
requiredSubgroupSizeStages : aliased VkShaderStageFlags; -- vulkan_core.h:10624
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceSubgroupSizeControlPropertiesEXT); -- vulkan_core.h:10618
type VkPipelineShaderStageRequiredSubgroupSizeCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10628
pNext : System.Address; -- vulkan_core.h:10629
requiredSubgroupSize : aliased stdint_h.uint32_t; -- vulkan_core.h:10630
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineShaderStageRequiredSubgroupSizeCreateInfoEXT); -- vulkan_core.h:10627
subtype VkShaderCorePropertiesFlagBitsAMD is unsigned;
VK_SHADER_CORE_PROPERTIES_FLAG_BITS_MAX_ENUM_AMD : constant VkShaderCorePropertiesFlagBitsAMD := 2147483647; -- vulkan_core.h:10639
subtype VkShaderCorePropertiesFlagsAMD is VkFlags; -- vulkan_core.h:10642
type VkPhysicalDeviceShaderCoreProperties2AMD is record
sType : aliased VkStructureType; -- vulkan_core.h:10644
pNext : System.Address; -- vulkan_core.h:10645
shaderCoreFeatures : aliased VkShaderCorePropertiesFlagsAMD; -- vulkan_core.h:10646
activeComputeUnitCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10647
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderCoreProperties2AMD); -- vulkan_core.h:10643
type VkPhysicalDeviceCoherentMemoryFeaturesAMD is record
sType : aliased VkStructureType; -- vulkan_core.h:10656
pNext : System.Address; -- vulkan_core.h:10657
deviceCoherentMemory : aliased VkBool32; -- vulkan_core.h:10658
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceCoherentMemoryFeaturesAMD); -- vulkan_core.h:10655
type VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10667
pNext : System.Address; -- vulkan_core.h:10668
shaderImageInt64Atomics : aliased VkBool32; -- vulkan_core.h:10669
sparseImageInt64Atomics : aliased VkBool32; -- vulkan_core.h:10670
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT); -- vulkan_core.h:10666
type VkPhysicalDeviceMemoryBudgetPropertiesEXT_heapBudget_array is array (0 .. 15) of aliased VkDeviceSize;
type VkPhysicalDeviceMemoryBudgetPropertiesEXT_heapUsage_array is array (0 .. 15) of aliased VkDeviceSize;
type VkPhysicalDeviceMemoryBudgetPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10679
pNext : System.Address; -- vulkan_core.h:10680
heapBudget : aliased VkPhysicalDeviceMemoryBudgetPropertiesEXT_heapBudget_array; -- vulkan_core.h:10681
heapUsage : aliased VkPhysicalDeviceMemoryBudgetPropertiesEXT_heapUsage_array; -- vulkan_core.h:10682
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMemoryBudgetPropertiesEXT); -- vulkan_core.h:10678
type VkPhysicalDeviceMemoryPriorityFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10691
pNext : System.Address; -- vulkan_core.h:10692
memoryPriority : aliased VkBool32; -- vulkan_core.h:10693
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMemoryPriorityFeaturesEXT); -- vulkan_core.h:10690
type VkMemoryPriorityAllocateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10697
pNext : System.Address; -- vulkan_core.h:10698
priority : aliased float; -- vulkan_core.h:10699
end record;
pragma Convention (C_Pass_By_Copy, VkMemoryPriorityAllocateInfoEXT); -- vulkan_core.h:10696
type VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10708
pNext : System.Address; -- vulkan_core.h:10709
dedicatedAllocationImageAliasing : aliased VkBool32; -- vulkan_core.h:10710
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV); -- vulkan_core.h:10707
type VkPhysicalDeviceBufferDeviceAddressFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10719
pNext : System.Address; -- vulkan_core.h:10720
bufferDeviceAddress : aliased VkBool32; -- vulkan_core.h:10721
bufferDeviceAddressCaptureReplay : aliased VkBool32; -- vulkan_core.h:10722
bufferDeviceAddressMultiDevice : aliased VkBool32; -- vulkan_core.h:10723
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceBufferDeviceAddressFeaturesEXT); -- vulkan_core.h:10718
subtype VkPhysicalDeviceBufferAddressFeaturesEXT is VkPhysicalDeviceBufferDeviceAddressFeaturesEXT;
subtype VkBufferDeviceAddressInfoEXT is VkBufferDeviceAddressInfo;
type VkBufferDeviceAddressCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10731
pNext : System.Address; -- vulkan_core.h:10732
deviceAddress : aliased VkDeviceAddress; -- vulkan_core.h:10733
end record;
pragma Convention (C_Pass_By_Copy, VkBufferDeviceAddressCreateInfoEXT); -- vulkan_core.h:10730
type PFN_vkGetBufferDeviceAddressEXT is access function (arg1 : VkDevice; arg2 : System.Address) return VkDeviceAddress;
pragma Convention (C, PFN_vkGetBufferDeviceAddressEXT); -- vulkan_core.h:10736
function vkGetBufferDeviceAddressEXT (device : VkDevice; pInfo : System.Address) return VkDeviceAddress; -- vulkan_core.h:10739
pragma Import (C, vkGetBufferDeviceAddressEXT, "vkGetBufferDeviceAddressEXT");
subtype VkToolPurposeFlagBitsEXT is unsigned;
VK_TOOL_PURPOSE_VALIDATION_BIT_EXT : constant VkToolPurposeFlagBitsEXT := 1;
VK_TOOL_PURPOSE_PROFILING_BIT_EXT : constant VkToolPurposeFlagBitsEXT := 2;
VK_TOOL_PURPOSE_TRACING_BIT_EXT : constant VkToolPurposeFlagBitsEXT := 4;
VK_TOOL_PURPOSE_ADDITIONAL_FEATURES_BIT_EXT : constant VkToolPurposeFlagBitsEXT := 8;
VK_TOOL_PURPOSE_MODIFYING_FEATURES_BIT_EXT : constant VkToolPurposeFlagBitsEXT := 16;
VK_TOOL_PURPOSE_DEBUG_REPORTING_BIT_EXT : constant VkToolPurposeFlagBitsEXT := 32;
VK_TOOL_PURPOSE_DEBUG_MARKERS_BIT_EXT : constant VkToolPurposeFlagBitsEXT := 64;
VK_TOOL_PURPOSE_FLAG_BITS_MAX_ENUM_EXT : constant VkToolPurposeFlagBitsEXT := 2147483647; -- vulkan_core.h:10749
subtype VkToolPurposeFlagsEXT is VkFlags; -- vulkan_core.h:10759
subtype VkPhysicalDeviceToolPropertiesEXT_name_array is Interfaces.C.char_array (0 .. 255);
subtype VkPhysicalDeviceToolPropertiesEXT_version_array is Interfaces.C.char_array (0 .. 255);
subtype VkPhysicalDeviceToolPropertiesEXT_description_array is Interfaces.C.char_array (0 .. 255);
subtype VkPhysicalDeviceToolPropertiesEXT_layer_array is Interfaces.C.char_array (0 .. 255);
type VkPhysicalDeviceToolPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10761
pNext : System.Address; -- vulkan_core.h:10762
name : aliased VkPhysicalDeviceToolPropertiesEXT_name_array; -- vulkan_core.h:10763
version : aliased VkPhysicalDeviceToolPropertiesEXT_version_array; -- vulkan_core.h:10764
purposes : aliased VkToolPurposeFlagsEXT; -- vulkan_core.h:10765
description : aliased VkPhysicalDeviceToolPropertiesEXT_description_array; -- vulkan_core.h:10766
layer : aliased VkPhysicalDeviceToolPropertiesEXT_layer_array; -- vulkan_core.h:10767
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceToolPropertiesEXT); -- vulkan_core.h:10760
type PFN_vkGetPhysicalDeviceToolPropertiesEXT is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkPhysicalDeviceToolPropertiesEXT) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceToolPropertiesEXT); -- vulkan_core.h:10770
function vkGetPhysicalDeviceToolPropertiesEXT
(physicalDevice : VkPhysicalDevice;
pToolCount : access stdint_h.uint32_t;
pToolProperties : access VkPhysicalDeviceToolPropertiesEXT) return VkResult; -- vulkan_core.h:10773
pragma Import (C, vkGetPhysicalDeviceToolPropertiesEXT, "vkGetPhysicalDeviceToolPropertiesEXT");
subtype VkImageStencilUsageCreateInfoEXT is VkImageStencilUsageCreateInfo;
subtype VkValidationFeatureEnableEXT is unsigned;
VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT : constant VkValidationFeatureEnableEXT := 0;
VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_RESERVE_BINDING_SLOT_EXT : constant VkValidationFeatureEnableEXT := 1;
VK_VALIDATION_FEATURE_ENABLE_BEST_PRACTICES_EXT : constant VkValidationFeatureEnableEXT := 2;
VK_VALIDATION_FEATURE_ENABLE_DEBUG_PRINTF_EXT : constant VkValidationFeatureEnableEXT := 3;
VK_VALIDATION_FEATURE_ENABLE_SYNCHRONIZATION_VALIDATION_EXT : constant VkValidationFeatureEnableEXT := 4;
VK_VALIDATION_FEATURE_ENABLE_MAX_ENUM_EXT : constant VkValidationFeatureEnableEXT := 2147483647; -- vulkan_core.h:10791
subtype VkValidationFeatureDisableEXT is unsigned;
VK_VALIDATION_FEATURE_DISABLE_ALL_EXT : constant VkValidationFeatureDisableEXT := 0;
VK_VALIDATION_FEATURE_DISABLE_SHADERS_EXT : constant VkValidationFeatureDisableEXT := 1;
VK_VALIDATION_FEATURE_DISABLE_THREAD_SAFETY_EXT : constant VkValidationFeatureDisableEXT := 2;
VK_VALIDATION_FEATURE_DISABLE_API_PARAMETERS_EXT : constant VkValidationFeatureDisableEXT := 3;
VK_VALIDATION_FEATURE_DISABLE_OBJECT_LIFETIMES_EXT : constant VkValidationFeatureDisableEXT := 4;
VK_VALIDATION_FEATURE_DISABLE_CORE_CHECKS_EXT : constant VkValidationFeatureDisableEXT := 5;
VK_VALIDATION_FEATURE_DISABLE_UNIQUE_HANDLES_EXT : constant VkValidationFeatureDisableEXT := 6;
VK_VALIDATION_FEATURE_DISABLE_MAX_ENUM_EXT : constant VkValidationFeatureDisableEXT := 2147483647; -- vulkan_core.h:10800
type VkValidationFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10811
pNext : System.Address; -- vulkan_core.h:10812
enabledValidationFeatureCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10813
pEnabledValidationFeatures : System.Address; -- vulkan_core.h:10814
disabledValidationFeatureCount : aliased stdint_h.uint32_t; -- vulkan_core.h:10815
pDisabledValidationFeatures : System.Address; -- vulkan_core.h:10816
end record;
pragma Convention (C_Pass_By_Copy, VkValidationFeaturesEXT); -- vulkan_core.h:10810
subtype VkComponentTypeNV is unsigned;
VK_COMPONENT_TYPE_FLOAT16_NV : constant VkComponentTypeNV := 0;
VK_COMPONENT_TYPE_FLOAT32_NV : constant VkComponentTypeNV := 1;
VK_COMPONENT_TYPE_FLOAT64_NV : constant VkComponentTypeNV := 2;
VK_COMPONENT_TYPE_SINT8_NV : constant VkComponentTypeNV := 3;
VK_COMPONENT_TYPE_SINT16_NV : constant VkComponentTypeNV := 4;
VK_COMPONENT_TYPE_SINT32_NV : constant VkComponentTypeNV := 5;
VK_COMPONENT_TYPE_SINT64_NV : constant VkComponentTypeNV := 6;
VK_COMPONENT_TYPE_UINT8_NV : constant VkComponentTypeNV := 7;
VK_COMPONENT_TYPE_UINT16_NV : constant VkComponentTypeNV := 8;
VK_COMPONENT_TYPE_UINT32_NV : constant VkComponentTypeNV := 9;
VK_COMPONENT_TYPE_UINT64_NV : constant VkComponentTypeNV := 10;
VK_COMPONENT_TYPE_MAX_ENUM_NV : constant VkComponentTypeNV := 2147483647; -- vulkan_core.h:10825
subtype VkScopeNV is unsigned;
VK_SCOPE_DEVICE_NV : constant VkScopeNV := 1;
VK_SCOPE_WORKGROUP_NV : constant VkScopeNV := 2;
VK_SCOPE_SUBGROUP_NV : constant VkScopeNV := 3;
VK_SCOPE_QUEUE_FAMILY_NV : constant VkScopeNV := 5;
VK_SCOPE_MAX_ENUM_NV : constant VkScopeNV := 2147483647; -- vulkan_core.h:10840
type VkCooperativeMatrixPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10848
pNext : System.Address; -- vulkan_core.h:10849
MSize : aliased stdint_h.uint32_t; -- vulkan_core.h:10850
NSize : aliased stdint_h.uint32_t; -- vulkan_core.h:10851
KSize : aliased stdint_h.uint32_t; -- vulkan_core.h:10852
AType : aliased VkComponentTypeNV; -- vulkan_core.h:10853
BType : aliased VkComponentTypeNV; -- vulkan_core.h:10854
CType : aliased VkComponentTypeNV; -- vulkan_core.h:10855
DType : aliased VkComponentTypeNV; -- vulkan_core.h:10856
scope : aliased VkScopeNV; -- vulkan_core.h:10857
end record;
pragma Convention (C_Pass_By_Copy, VkCooperativeMatrixPropertiesNV); -- vulkan_core.h:10847
type VkPhysicalDeviceCooperativeMatrixFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10861
pNext : System.Address; -- vulkan_core.h:10862
cooperativeMatrix : aliased VkBool32; -- vulkan_core.h:10863
cooperativeMatrixRobustBufferAccess : aliased VkBool32; -- vulkan_core.h:10864
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceCooperativeMatrixFeaturesNV); -- vulkan_core.h:10860
type VkPhysicalDeviceCooperativeMatrixPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10868
pNext : System.Address; -- vulkan_core.h:10869
cooperativeMatrixSupportedStages : aliased VkShaderStageFlags; -- vulkan_core.h:10870
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceCooperativeMatrixPropertiesNV); -- vulkan_core.h:10867
type PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkCooperativeMatrixPropertiesNV) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceCooperativeMatrixPropertiesNV); -- vulkan_core.h:10873
function vkGetPhysicalDeviceCooperativeMatrixPropertiesNV
(physicalDevice : VkPhysicalDevice;
pPropertyCount : access stdint_h.uint32_t;
pProperties : access VkCooperativeMatrixPropertiesNV) return VkResult; -- vulkan_core.h:10876
pragma Import (C, vkGetPhysicalDeviceCooperativeMatrixPropertiesNV, "vkGetPhysicalDeviceCooperativeMatrixPropertiesNV");
subtype VkCoverageReductionModeNV is unsigned;
VK_COVERAGE_REDUCTION_MODE_MERGE_NV : constant VkCoverageReductionModeNV := 0;
VK_COVERAGE_REDUCTION_MODE_TRUNCATE_NV : constant VkCoverageReductionModeNV := 1;
VK_COVERAGE_REDUCTION_MODE_MAX_ENUM_NV : constant VkCoverageReductionModeNV := 2147483647; -- vulkan_core.h:10887
subtype VkPipelineCoverageReductionStateCreateFlagsNV is VkFlags; -- vulkan_core.h:10892
type VkPhysicalDeviceCoverageReductionModeFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10894
pNext : System.Address; -- vulkan_core.h:10895
coverageReductionMode : aliased VkBool32; -- vulkan_core.h:10896
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceCoverageReductionModeFeaturesNV); -- vulkan_core.h:10893
type VkPipelineCoverageReductionStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10900
pNext : System.Address; -- vulkan_core.h:10901
flags : aliased VkPipelineCoverageReductionStateCreateFlagsNV; -- vulkan_core.h:10902
coverageReductionMode : aliased VkCoverageReductionModeNV; -- vulkan_core.h:10903
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineCoverageReductionStateCreateInfoNV); -- vulkan_core.h:10899
type VkFramebufferMixedSamplesCombinationNV is record
sType : aliased VkStructureType; -- vulkan_core.h:10907
pNext : System.Address; -- vulkan_core.h:10908
coverageReductionMode : aliased VkCoverageReductionModeNV; -- vulkan_core.h:10909
rasterizationSamples : aliased VkSampleCountFlagBits; -- vulkan_core.h:10910
depthStencilSamples : aliased VkSampleCountFlags; -- vulkan_core.h:10911
colorSamples : aliased VkSampleCountFlags; -- vulkan_core.h:10912
end record;
pragma Convention (C_Pass_By_Copy, VkFramebufferMixedSamplesCombinationNV); -- vulkan_core.h:10906
type PFN_vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV is access function
(arg1 : VkPhysicalDevice;
arg2 : access stdint_h.uint32_t;
arg3 : access VkFramebufferMixedSamplesCombinationNV) return VkResult;
pragma Convention (C, PFN_vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV); -- vulkan_core.h:10915
function vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV
(physicalDevice : VkPhysicalDevice;
pCombinationCount : access stdint_h.uint32_t;
pCombinations : access VkFramebufferMixedSamplesCombinationNV) return VkResult; -- vulkan_core.h:10918
pragma Import (C, vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV, "vkGetPhysicalDeviceSupportedFramebufferMixedSamplesCombinationsNV");
type VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10929
pNext : System.Address; -- vulkan_core.h:10930
fragmentShaderSampleInterlock : aliased VkBool32; -- vulkan_core.h:10931
fragmentShaderPixelInterlock : aliased VkBool32; -- vulkan_core.h:10932
fragmentShaderShadingRateInterlock : aliased VkBool32; -- vulkan_core.h:10933
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT); -- vulkan_core.h:10928
type VkPhysicalDeviceYcbcrImageArraysFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10942
pNext : System.Address; -- vulkan_core.h:10943
ycbcrImageArrays : aliased VkBool32; -- vulkan_core.h:10944
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceYcbcrImageArraysFeaturesEXT); -- vulkan_core.h:10941
subtype VkHeadlessSurfaceCreateFlagsEXT is VkFlags; -- vulkan_core.h:10952
type VkHeadlessSurfaceCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10954
pNext : System.Address; -- vulkan_core.h:10955
flags : aliased VkHeadlessSurfaceCreateFlagsEXT; -- vulkan_core.h:10956
end record;
pragma Convention (C_Pass_By_Copy, VkHeadlessSurfaceCreateInfoEXT); -- vulkan_core.h:10953
type PFN_vkCreateHeadlessSurfaceEXT is access function
(arg1 : VkInstance;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateHeadlessSurfaceEXT); -- vulkan_core.h:10959
function vkCreateHeadlessSurfaceEXT
(instance : VkInstance;
pCreateInfo : System.Address;
pAllocator : System.Address;
pSurface : System.Address) return VkResult; -- vulkan_core.h:10962
pragma Import (C, vkCreateHeadlessSurfaceEXT, "vkCreateHeadlessSurfaceEXT");
subtype VkLineRasterizationModeEXT is unsigned;
VK_LINE_RASTERIZATION_MODE_DEFAULT_EXT : constant VkLineRasterizationModeEXT := 0;
VK_LINE_RASTERIZATION_MODE_RECTANGULAR_EXT : constant VkLineRasterizationModeEXT := 1;
VK_LINE_RASTERIZATION_MODE_BRESENHAM_EXT : constant VkLineRasterizationModeEXT := 2;
VK_LINE_RASTERIZATION_MODE_RECTANGULAR_SMOOTH_EXT : constant VkLineRasterizationModeEXT := 3;
VK_LINE_RASTERIZATION_MODE_MAX_ENUM_EXT : constant VkLineRasterizationModeEXT := 2147483647; -- vulkan_core.h:10974
type VkPhysicalDeviceLineRasterizationFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10982
pNext : System.Address; -- vulkan_core.h:10983
rectangularLines : aliased VkBool32; -- vulkan_core.h:10984
bresenhamLines : aliased VkBool32; -- vulkan_core.h:10985
smoothLines : aliased VkBool32; -- vulkan_core.h:10986
stippledRectangularLines : aliased VkBool32; -- vulkan_core.h:10987
stippledBresenhamLines : aliased VkBool32; -- vulkan_core.h:10988
stippledSmoothLines : aliased VkBool32; -- vulkan_core.h:10989
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceLineRasterizationFeaturesEXT); -- vulkan_core.h:10981
type VkPhysicalDeviceLineRasterizationPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10993
pNext : System.Address; -- vulkan_core.h:10994
lineSubPixelPrecisionBits : aliased stdint_h.uint32_t; -- vulkan_core.h:10995
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceLineRasterizationPropertiesEXT); -- vulkan_core.h:10992
type VkPipelineRasterizationLineStateCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:10999
pNext : System.Address; -- vulkan_core.h:11000
lineRasterizationMode : aliased VkLineRasterizationModeEXT; -- vulkan_core.h:11001
stippledLineEnable : aliased VkBool32; -- vulkan_core.h:11002
lineStippleFactor : aliased stdint_h.uint32_t; -- vulkan_core.h:11003
lineStipplePattern : aliased stdint_h.uint16_t; -- vulkan_core.h:11004
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineRasterizationLineStateCreateInfoEXT); -- vulkan_core.h:10998
type PFN_vkCmdSetLineStippleEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint16_t);
pragma Convention (C, PFN_vkCmdSetLineStippleEXT); -- vulkan_core.h:11007
procedure vkCmdSetLineStippleEXT
(commandBuffer : VkCommandBuffer;
lineStippleFactor : stdint_h.uint32_t;
lineStipplePattern : stdint_h.uint16_t); -- vulkan_core.h:11010
pragma Import (C, vkCmdSetLineStippleEXT, "vkCmdSetLineStippleEXT");
type VkPhysicalDeviceShaderAtomicFloatFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11021
pNext : System.Address; -- vulkan_core.h:11022
shaderBufferFloat32Atomics : aliased VkBool32; -- vulkan_core.h:11023
shaderBufferFloat32AtomicAdd : aliased VkBool32; -- vulkan_core.h:11024
shaderBufferFloat64Atomics : aliased VkBool32; -- vulkan_core.h:11025
shaderBufferFloat64AtomicAdd : aliased VkBool32; -- vulkan_core.h:11026
shaderSharedFloat32Atomics : aliased VkBool32; -- vulkan_core.h:11027
shaderSharedFloat32AtomicAdd : aliased VkBool32; -- vulkan_core.h:11028
shaderSharedFloat64Atomics : aliased VkBool32; -- vulkan_core.h:11029
shaderSharedFloat64AtomicAdd : aliased VkBool32; -- vulkan_core.h:11030
shaderImageFloat32Atomics : aliased VkBool32; -- vulkan_core.h:11031
shaderImageFloat32AtomicAdd : aliased VkBool32; -- vulkan_core.h:11032
sparseImageFloat32Atomics : aliased VkBool32; -- vulkan_core.h:11033
sparseImageFloat32AtomicAdd : aliased VkBool32; -- vulkan_core.h:11034
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderAtomicFloatFeaturesEXT); -- vulkan_core.h:11020
subtype VkPhysicalDeviceHostQueryResetFeaturesEXT is VkPhysicalDeviceHostQueryResetFeatures;
type PFN_vkResetQueryPoolEXT is access procedure
(arg1 : VkDevice;
arg2 : VkQueryPool;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkResetQueryPoolEXT); -- vulkan_core.h:11044
procedure vkResetQueryPoolEXT
(device : VkDevice;
queryPool : VkQueryPool;
firstQuery : stdint_h.uint32_t;
queryCount : stdint_h.uint32_t); -- vulkan_core.h:11047
pragma Import (C, vkResetQueryPoolEXT, "vkResetQueryPoolEXT");
type VkPhysicalDeviceIndexTypeUint8FeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11059
pNext : System.Address; -- vulkan_core.h:11060
indexTypeUint8 : aliased VkBool32; -- vulkan_core.h:11061
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceIndexTypeUint8FeaturesEXT); -- vulkan_core.h:11058
type VkPhysicalDeviceExtendedDynamicStateFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11070
pNext : System.Address; -- vulkan_core.h:11071
extendedDynamicState : aliased VkBool32; -- vulkan_core.h:11072
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceExtendedDynamicStateFeaturesEXT); -- vulkan_core.h:11069
type PFN_vkCmdSetCullModeEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkCullModeFlags);
pragma Convention (C, PFN_vkCmdSetCullModeEXT); -- vulkan_core.h:11075
type PFN_vkCmdSetFrontFaceEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkFrontFace);
pragma Convention (C, PFN_vkCmdSetFrontFaceEXT); -- vulkan_core.h:11076
type PFN_vkCmdSetPrimitiveTopologyEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkPrimitiveTopology);
pragma Convention (C, PFN_vkCmdSetPrimitiveTopologyEXT); -- vulkan_core.h:11077
type PFN_vkCmdSetViewportWithCountEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdSetViewportWithCountEXT); -- vulkan_core.h:11078
type PFN_vkCmdSetScissorWithCountEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdSetScissorWithCountEXT); -- vulkan_core.h:11079
type PFN_vkCmdBindVertexBuffers2EXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : access VkDeviceSize;
arg6 : access VkDeviceSize;
arg7 : access VkDeviceSize);
pragma Convention (C, PFN_vkCmdBindVertexBuffers2EXT); -- vulkan_core.h:11080
type PFN_vkCmdSetDepthTestEnableEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkBool32);
pragma Convention (C, PFN_vkCmdSetDepthTestEnableEXT); -- vulkan_core.h:11081
type PFN_vkCmdSetDepthWriteEnableEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkBool32);
pragma Convention (C, PFN_vkCmdSetDepthWriteEnableEXT); -- vulkan_core.h:11082
type PFN_vkCmdSetDepthCompareOpEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkCompareOp);
pragma Convention (C, PFN_vkCmdSetDepthCompareOpEXT); -- vulkan_core.h:11083
type PFN_vkCmdSetDepthBoundsTestEnableEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkBool32);
pragma Convention (C, PFN_vkCmdSetDepthBoundsTestEnableEXT); -- vulkan_core.h:11084
type PFN_vkCmdSetStencilTestEnableEXT is access procedure (arg1 : VkCommandBuffer; arg2 : VkBool32);
pragma Convention (C, PFN_vkCmdSetStencilTestEnableEXT); -- vulkan_core.h:11085
type PFN_vkCmdSetStencilOpEXT is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkStencilFaceFlags;
arg3 : VkStencilOp;
arg4 : VkStencilOp;
arg5 : VkStencilOp;
arg6 : VkCompareOp);
pragma Convention (C, PFN_vkCmdSetStencilOpEXT); -- vulkan_core.h:11086
procedure vkCmdSetCullModeEXT (commandBuffer : VkCommandBuffer; cullMode : VkCullModeFlags); -- vulkan_core.h:11089
pragma Import (C, vkCmdSetCullModeEXT, "vkCmdSetCullModeEXT");
procedure vkCmdSetFrontFaceEXT (commandBuffer : VkCommandBuffer; frontFace : VkFrontFace); -- vulkan_core.h:11093
pragma Import (C, vkCmdSetFrontFaceEXT, "vkCmdSetFrontFaceEXT");
procedure vkCmdSetPrimitiveTopologyEXT (commandBuffer : VkCommandBuffer; primitiveTopology : VkPrimitiveTopology); -- vulkan_core.h:11097
pragma Import (C, vkCmdSetPrimitiveTopologyEXT, "vkCmdSetPrimitiveTopologyEXT");
procedure vkCmdSetViewportWithCountEXT
(commandBuffer : VkCommandBuffer;
viewportCount : stdint_h.uint32_t;
pViewports : System.Address); -- vulkan_core.h:11101
pragma Import (C, vkCmdSetViewportWithCountEXT, "vkCmdSetViewportWithCountEXT");
procedure vkCmdSetScissorWithCountEXT
(commandBuffer : VkCommandBuffer;
scissorCount : stdint_h.uint32_t;
pScissors : System.Address); -- vulkan_core.h:11106
pragma Import (C, vkCmdSetScissorWithCountEXT, "vkCmdSetScissorWithCountEXT");
procedure vkCmdBindVertexBuffers2EXT
(commandBuffer : VkCommandBuffer;
firstBinding : stdint_h.uint32_t;
bindingCount : stdint_h.uint32_t;
pBuffers : System.Address;
pOffsets : access VkDeviceSize;
pSizes : access VkDeviceSize;
pStrides : access VkDeviceSize); -- vulkan_core.h:11111
pragma Import (C, vkCmdBindVertexBuffers2EXT, "vkCmdBindVertexBuffers2EXT");
procedure vkCmdSetDepthTestEnableEXT (commandBuffer : VkCommandBuffer; depthTestEnable : VkBool32); -- vulkan_core.h:11120
pragma Import (C, vkCmdSetDepthTestEnableEXT, "vkCmdSetDepthTestEnableEXT");
procedure vkCmdSetDepthWriteEnableEXT (commandBuffer : VkCommandBuffer; depthWriteEnable : VkBool32); -- vulkan_core.h:11124
pragma Import (C, vkCmdSetDepthWriteEnableEXT, "vkCmdSetDepthWriteEnableEXT");
procedure vkCmdSetDepthCompareOpEXT (commandBuffer : VkCommandBuffer; depthCompareOp : VkCompareOp); -- vulkan_core.h:11128
pragma Import (C, vkCmdSetDepthCompareOpEXT, "vkCmdSetDepthCompareOpEXT");
procedure vkCmdSetDepthBoundsTestEnableEXT (commandBuffer : VkCommandBuffer; depthBoundsTestEnable : VkBool32); -- vulkan_core.h:11132
pragma Import (C, vkCmdSetDepthBoundsTestEnableEXT, "vkCmdSetDepthBoundsTestEnableEXT");
procedure vkCmdSetStencilTestEnableEXT (commandBuffer : VkCommandBuffer; stencilTestEnable : VkBool32); -- vulkan_core.h:11136
pragma Import (C, vkCmdSetStencilTestEnableEXT, "vkCmdSetStencilTestEnableEXT");
procedure vkCmdSetStencilOpEXT
(commandBuffer : VkCommandBuffer;
faceMask : VkStencilFaceFlags;
failOp : VkStencilOp;
passOp : VkStencilOp;
depthFailOp : VkStencilOp;
compareOp : VkCompareOp); -- vulkan_core.h:11140
pragma Import (C, vkCmdSetStencilOpEXT, "vkCmdSetStencilOpEXT");
type VkPhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11154
pNext : System.Address; -- vulkan_core.h:11155
shaderDemoteToHelperInvocation : aliased VkBool32; -- vulkan_core.h:11156
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT); -- vulkan_core.h:11153
type VkIndirectCommandsLayoutNV is new System.Address; -- vulkan_core.h:11162
-- skipped empty struct VkIndirectCommandsLayoutNV_T
subtype VkIndirectCommandsTokenTypeNV is unsigned;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_SHADER_GROUP_NV : constant VkIndirectCommandsTokenTypeNV := 0;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_STATE_FLAGS_NV : constant VkIndirectCommandsTokenTypeNV := 1;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_INDEX_BUFFER_NV : constant VkIndirectCommandsTokenTypeNV := 2;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_VERTEX_BUFFER_NV : constant VkIndirectCommandsTokenTypeNV := 3;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_PUSH_CONSTANT_NV : constant VkIndirectCommandsTokenTypeNV := 4;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_INDEXED_NV : constant VkIndirectCommandsTokenTypeNV := 5;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_NV : constant VkIndirectCommandsTokenTypeNV := 6;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_TASKS_NV : constant VkIndirectCommandsTokenTypeNV := 7;
VK_INDIRECT_COMMANDS_TOKEN_TYPE_MAX_ENUM_NV : constant VkIndirectCommandsTokenTypeNV := 2147483647; -- vulkan_core.h:11166
subtype VkIndirectStateFlagBitsNV is unsigned;
VK_INDIRECT_STATE_FLAG_FRONTFACE_BIT_NV : constant VkIndirectStateFlagBitsNV := 1;
VK_INDIRECT_STATE_FLAG_BITS_MAX_ENUM_NV : constant VkIndirectStateFlagBitsNV := 2147483647; -- vulkan_core.h:11178
subtype VkIndirectStateFlagsNV is VkFlags; -- vulkan_core.h:11182
subtype VkIndirectCommandsLayoutUsageFlagBitsNV is unsigned;
VK_INDIRECT_COMMANDS_LAYOUT_USAGE_EXPLICIT_PREPROCESS_BIT_NV : constant VkIndirectCommandsLayoutUsageFlagBitsNV := 1;
VK_INDIRECT_COMMANDS_LAYOUT_USAGE_INDEXED_SEQUENCES_BIT_NV : constant VkIndirectCommandsLayoutUsageFlagBitsNV := 2;
VK_INDIRECT_COMMANDS_LAYOUT_USAGE_UNORDERED_SEQUENCES_BIT_NV : constant VkIndirectCommandsLayoutUsageFlagBitsNV := 4;
VK_INDIRECT_COMMANDS_LAYOUT_USAGE_FLAG_BITS_MAX_ENUM_NV : constant VkIndirectCommandsLayoutUsageFlagBitsNV := 2147483647; -- vulkan_core.h:11184
subtype VkIndirectCommandsLayoutUsageFlagsNV is VkFlags; -- vulkan_core.h:11190
type VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11192
pNext : System.Address; -- vulkan_core.h:11193
maxGraphicsShaderGroupCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11194
maxIndirectSequenceCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11195
maxIndirectCommandsTokenCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11196
maxIndirectCommandsStreamCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11197
maxIndirectCommandsTokenOffset : aliased stdint_h.uint32_t; -- vulkan_core.h:11198
maxIndirectCommandsStreamStride : aliased stdint_h.uint32_t; -- vulkan_core.h:11199
minSequencesCountBufferOffsetAlignment : aliased stdint_h.uint32_t; -- vulkan_core.h:11200
minSequencesIndexBufferOffsetAlignment : aliased stdint_h.uint32_t; -- vulkan_core.h:11201
minIndirectCommandsBufferOffsetAlignment : aliased stdint_h.uint32_t; -- vulkan_core.h:11202
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDeviceGeneratedCommandsPropertiesNV); -- vulkan_core.h:11191
type VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11206
pNext : System.Address; -- vulkan_core.h:11207
deviceGeneratedCommands : aliased VkBool32; -- vulkan_core.h:11208
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDeviceGeneratedCommandsFeaturesNV); -- vulkan_core.h:11205
type VkGraphicsShaderGroupCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11212
pNext : System.Address; -- vulkan_core.h:11213
stageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11214
pStages : System.Address; -- vulkan_core.h:11215
pVertexInputState : System.Address; -- vulkan_core.h:11216
pTessellationState : System.Address; -- vulkan_core.h:11217
end record;
pragma Convention (C_Pass_By_Copy, VkGraphicsShaderGroupCreateInfoNV); -- vulkan_core.h:11211
type VkGraphicsPipelineShaderGroupsCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11221
pNext : System.Address; -- vulkan_core.h:11222
groupCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11223
pGroups : System.Address; -- vulkan_core.h:11224
pipelineCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11225
pPipelines : System.Address; -- vulkan_core.h:11226
end record;
pragma Convention (C_Pass_By_Copy, VkGraphicsPipelineShaderGroupsCreateInfoNV); -- vulkan_core.h:11220
type VkBindShaderGroupIndirectCommandNV is record
groupIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:11230
end record;
pragma Convention (C_Pass_By_Copy, VkBindShaderGroupIndirectCommandNV); -- vulkan_core.h:11229
type VkBindIndexBufferIndirectCommandNV is record
bufferAddress : aliased VkDeviceAddress; -- vulkan_core.h:11234
size : aliased stdint_h.uint32_t; -- vulkan_core.h:11235
indexType : aliased VkIndexType; -- vulkan_core.h:11236
end record;
pragma Convention (C_Pass_By_Copy, VkBindIndexBufferIndirectCommandNV); -- vulkan_core.h:11233
type VkBindVertexBufferIndirectCommandNV is record
bufferAddress : aliased VkDeviceAddress; -- vulkan_core.h:11240
size : aliased stdint_h.uint32_t; -- vulkan_core.h:11241
stride : aliased stdint_h.uint32_t; -- vulkan_core.h:11242
end record;
pragma Convention (C_Pass_By_Copy, VkBindVertexBufferIndirectCommandNV); -- vulkan_core.h:11239
type VkSetStateFlagsIndirectCommandNV is record
data : aliased stdint_h.uint32_t; -- vulkan_core.h:11246
end record;
pragma Convention (C_Pass_By_Copy, VkSetStateFlagsIndirectCommandNV); -- vulkan_core.h:11245
type VkIndirectCommandsStreamNV is record
buffer : VkBuffer; -- vulkan_core.h:11250
offset : aliased VkDeviceSize; -- vulkan_core.h:11251
end record;
pragma Convention (C_Pass_By_Copy, VkIndirectCommandsStreamNV); -- vulkan_core.h:11249
type VkIndirectCommandsLayoutTokenNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11255
pNext : System.Address; -- vulkan_core.h:11256
tokenType : aliased VkIndirectCommandsTokenTypeNV; -- vulkan_core.h:11257
stream : aliased stdint_h.uint32_t; -- vulkan_core.h:11258
offset : aliased stdint_h.uint32_t; -- vulkan_core.h:11259
vertexBindingUnit : aliased stdint_h.uint32_t; -- vulkan_core.h:11260
vertexDynamicStride : aliased VkBool32; -- vulkan_core.h:11261
pushconstantPipelineLayout : VkPipelineLayout; -- vulkan_core.h:11262
pushconstantShaderStageFlags : aliased VkShaderStageFlags; -- vulkan_core.h:11263
pushconstantOffset : aliased stdint_h.uint32_t; -- vulkan_core.h:11264
pushconstantSize : aliased stdint_h.uint32_t; -- vulkan_core.h:11265
indirectStateFlags : aliased VkIndirectStateFlagsNV; -- vulkan_core.h:11266
indexTypeCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11267
pIndexTypes : System.Address; -- vulkan_core.h:11268
pIndexTypeValues : access stdint_h.uint32_t; -- vulkan_core.h:11269
end record;
pragma Convention (C_Pass_By_Copy, VkIndirectCommandsLayoutTokenNV); -- vulkan_core.h:11254
type VkIndirectCommandsLayoutCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11273
pNext : System.Address; -- vulkan_core.h:11274
flags : aliased VkIndirectCommandsLayoutUsageFlagsNV; -- vulkan_core.h:11275
pipelineBindPoint : aliased VkPipelineBindPoint; -- vulkan_core.h:11276
tokenCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11277
pTokens : System.Address; -- vulkan_core.h:11278
streamCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11279
pStreamStrides : access stdint_h.uint32_t; -- vulkan_core.h:11280
end record;
pragma Convention (C_Pass_By_Copy, VkIndirectCommandsLayoutCreateInfoNV); -- vulkan_core.h:11272
type VkGeneratedCommandsInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11284
pNext : System.Address; -- vulkan_core.h:11285
pipelineBindPoint : aliased VkPipelineBindPoint; -- vulkan_core.h:11286
pipeline : VkPipeline; -- vulkan_core.h:11287
indirectCommandsLayout : VkIndirectCommandsLayoutNV; -- vulkan_core.h:11288
streamCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11289
pStreams : System.Address; -- vulkan_core.h:11290
sequencesCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11291
preprocessBuffer : VkBuffer; -- vulkan_core.h:11292
preprocessOffset : aliased VkDeviceSize; -- vulkan_core.h:11293
preprocessSize : aliased VkDeviceSize; -- vulkan_core.h:11294
sequencesCountBuffer : VkBuffer; -- vulkan_core.h:11295
sequencesCountOffset : aliased VkDeviceSize; -- vulkan_core.h:11296
sequencesIndexBuffer : VkBuffer; -- vulkan_core.h:11297
sequencesIndexOffset : aliased VkDeviceSize; -- vulkan_core.h:11298
end record;
pragma Convention (C_Pass_By_Copy, VkGeneratedCommandsInfoNV); -- vulkan_core.h:11283
type VkGeneratedCommandsMemoryRequirementsInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11302
pNext : System.Address; -- vulkan_core.h:11303
pipelineBindPoint : aliased VkPipelineBindPoint; -- vulkan_core.h:11304
pipeline : VkPipeline; -- vulkan_core.h:11305
indirectCommandsLayout : VkIndirectCommandsLayoutNV; -- vulkan_core.h:11306
maxSequencesCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11307
end record;
pragma Convention (C_Pass_By_Copy, VkGeneratedCommandsMemoryRequirementsInfoNV); -- vulkan_core.h:11301
type PFN_vkGetGeneratedCommandsMemoryRequirementsNV is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkMemoryRequirements2);
pragma Convention (C, PFN_vkGetGeneratedCommandsMemoryRequirementsNV); -- vulkan_core.h:11310
type PFN_vkCmdPreprocessGeneratedCommandsNV is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdPreprocessGeneratedCommandsNV); -- vulkan_core.h:11311
type PFN_vkCmdExecuteGeneratedCommandsNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkBool32;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdExecuteGeneratedCommandsNV); -- vulkan_core.h:11312
type PFN_vkCmdBindPipelineShaderGroupNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkPipelineBindPoint;
arg3 : VkPipeline;
arg4 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdBindPipelineShaderGroupNV); -- vulkan_core.h:11313
type PFN_vkCreateIndirectCommandsLayoutNV is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateIndirectCommandsLayoutNV); -- vulkan_core.h:11314
type PFN_vkDestroyIndirectCommandsLayoutNV is access procedure
(arg1 : VkDevice;
arg2 : VkIndirectCommandsLayoutNV;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyIndirectCommandsLayoutNV); -- vulkan_core.h:11315
procedure vkGetGeneratedCommandsMemoryRequirementsNV
(device : VkDevice;
pInfo : System.Address;
pMemoryRequirements : access VkMemoryRequirements2); -- vulkan_core.h:11318
pragma Import (C, vkGetGeneratedCommandsMemoryRequirementsNV, "vkGetGeneratedCommandsMemoryRequirementsNV");
procedure vkCmdPreprocessGeneratedCommandsNV (commandBuffer : VkCommandBuffer; pGeneratedCommandsInfo : System.Address); -- vulkan_core.h:11323
pragma Import (C, vkCmdPreprocessGeneratedCommandsNV, "vkCmdPreprocessGeneratedCommandsNV");
procedure vkCmdExecuteGeneratedCommandsNV
(commandBuffer : VkCommandBuffer;
isPreprocessed : VkBool32;
pGeneratedCommandsInfo : System.Address); -- vulkan_core.h:11327
pragma Import (C, vkCmdExecuteGeneratedCommandsNV, "vkCmdExecuteGeneratedCommandsNV");
procedure vkCmdBindPipelineShaderGroupNV
(commandBuffer : VkCommandBuffer;
pipelineBindPoint : VkPipelineBindPoint;
pipeline : VkPipeline;
groupIndex : stdint_h.uint32_t); -- vulkan_core.h:11332
pragma Import (C, vkCmdBindPipelineShaderGroupNV, "vkCmdBindPipelineShaderGroupNV");
function vkCreateIndirectCommandsLayoutNV
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pIndirectCommandsLayout : System.Address) return VkResult; -- vulkan_core.h:11338
pragma Import (C, vkCreateIndirectCommandsLayoutNV, "vkCreateIndirectCommandsLayoutNV");
procedure vkDestroyIndirectCommandsLayoutNV
(device : VkDevice;
indirectCommandsLayout : VkIndirectCommandsLayoutNV;
pAllocator : System.Address); -- vulkan_core.h:11344
pragma Import (C, vkDestroyIndirectCommandsLayoutNV, "vkDestroyIndirectCommandsLayoutNV");
type VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11355
pNext : System.Address; -- vulkan_core.h:11356
texelBufferAlignment : aliased VkBool32; -- vulkan_core.h:11357
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT); -- vulkan_core.h:11354
type VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11361
pNext : System.Address; -- vulkan_core.h:11362
storageTexelBufferOffsetAlignmentBytes : aliased VkDeviceSize; -- vulkan_core.h:11363
storageTexelBufferOffsetSingleTexelAlignment : aliased VkBool32; -- vulkan_core.h:11364
uniformTexelBufferOffsetAlignmentBytes : aliased VkDeviceSize; -- vulkan_core.h:11365
uniformTexelBufferOffsetSingleTexelAlignment : aliased VkBool32; -- vulkan_core.h:11366
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT); -- vulkan_core.h:11360
type VkRenderPassTransformBeginInfoQCOM is record
sType : aliased VkStructureType; -- vulkan_core.h:11375
pNext : System.Address; -- vulkan_core.h:11376
transform : aliased VkSurfaceTransformFlagBitsKHR; -- vulkan_core.h:11377
end record;
pragma Convention (C_Pass_By_Copy, VkRenderPassTransformBeginInfoQCOM); -- vulkan_core.h:11374
type VkCommandBufferInheritanceRenderPassTransformInfoQCOM is record
sType : aliased VkStructureType; -- vulkan_core.h:11381
pNext : System.Address; -- vulkan_core.h:11382
transform : aliased VkSurfaceTransformFlagBitsKHR; -- vulkan_core.h:11383
renderArea : aliased VkRect2D; -- vulkan_core.h:11384
end record;
pragma Convention (C_Pass_By_Copy, VkCommandBufferInheritanceRenderPassTransformInfoQCOM); -- vulkan_core.h:11380
subtype VkDeviceMemoryReportEventTypeEXT is unsigned;
VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_ALLOCATE_EXT : constant VkDeviceMemoryReportEventTypeEXT := 0;
VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_FREE_EXT : constant VkDeviceMemoryReportEventTypeEXT := 1;
VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_IMPORT_EXT : constant VkDeviceMemoryReportEventTypeEXT := 2;
VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_UNIMPORT_EXT : constant VkDeviceMemoryReportEventTypeEXT := 3;
VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_ALLOCATION_FAILED_EXT : constant VkDeviceMemoryReportEventTypeEXT := 4;
VK_DEVICE_MEMORY_REPORT_EVENT_TYPE_MAX_ENUM_EXT : constant VkDeviceMemoryReportEventTypeEXT := 2147483647; -- vulkan_core.h:11393
subtype VkDeviceMemoryReportFlagsEXT is VkFlags; -- vulkan_core.h:11401
type VkPhysicalDeviceDeviceMemoryReportFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11403
pNext : System.Address; -- vulkan_core.h:11404
deviceMemoryReport : aliased VkBool32; -- vulkan_core.h:11405
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDeviceMemoryReportFeaturesEXT); -- vulkan_core.h:11402
type VkDeviceMemoryReportCallbackDataEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11409
pNext : System.Address; -- vulkan_core.h:11410
flags : aliased VkDeviceMemoryReportFlagsEXT; -- vulkan_core.h:11411
c_type : aliased VkDeviceMemoryReportEventTypeEXT; -- vulkan_core.h:11412
memoryObjectId : aliased stdint_h.uint64_t; -- vulkan_core.h:11413
size : aliased VkDeviceSize; -- vulkan_core.h:11414
objectType : aliased VkObjectType; -- vulkan_core.h:11415
objectHandle : aliased stdint_h.uint64_t; -- vulkan_core.h:11416
heapIndex : aliased stdint_h.uint32_t; -- vulkan_core.h:11417
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceMemoryReportCallbackDataEXT); -- vulkan_core.h:11408
type PFN_vkDeviceMemoryReportCallbackEXT is access procedure (arg1 : System.Address; arg2 : System.Address);
pragma Convention (C, PFN_vkDeviceMemoryReportCallbackEXT); -- vulkan_core.h:11420
type VkDeviceDeviceMemoryReportCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11425
pNext : System.Address; -- vulkan_core.h:11426
flags : aliased VkDeviceMemoryReportFlagsEXT; -- vulkan_core.h:11427
pfnUserCallback : PFN_vkDeviceMemoryReportCallbackEXT; -- vulkan_core.h:11428
pUserData : System.Address; -- vulkan_core.h:11429
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceDeviceMemoryReportCreateInfoEXT); -- vulkan_core.h:11424
type VkPhysicalDeviceRobustness2FeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11438
pNext : System.Address; -- vulkan_core.h:11439
robustBufferAccess2 : aliased VkBool32; -- vulkan_core.h:11440
robustImageAccess2 : aliased VkBool32; -- vulkan_core.h:11441
nullDescriptor : aliased VkBool32; -- vulkan_core.h:11442
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceRobustness2FeaturesEXT); -- vulkan_core.h:11437
type VkPhysicalDeviceRobustness2PropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11446
pNext : System.Address; -- vulkan_core.h:11447
robustStorageBufferAccessSizeAlignment : aliased VkDeviceSize; -- vulkan_core.h:11448
robustUniformBufferAccessSizeAlignment : aliased VkDeviceSize; -- vulkan_core.h:11449
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceRobustness2PropertiesEXT); -- vulkan_core.h:11445
type VkSamplerCustomBorderColorCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11458
pNext : System.Address; -- vulkan_core.h:11459
customBorderColor : VkClearColorValue; -- vulkan_core.h:11460
format : aliased VkFormat; -- vulkan_core.h:11461
end record;
pragma Convention (C_Pass_By_Copy, VkSamplerCustomBorderColorCreateInfoEXT); -- vulkan_core.h:11457
type VkPhysicalDeviceCustomBorderColorPropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11465
pNext : System.Address; -- vulkan_core.h:11466
maxCustomBorderColorSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:11467
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceCustomBorderColorPropertiesEXT); -- vulkan_core.h:11464
type VkPhysicalDeviceCustomBorderColorFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11471
pNext : System.Address; -- vulkan_core.h:11472
customBorderColors : aliased VkBool32; -- vulkan_core.h:11473
customBorderColorWithoutFormat : aliased VkBool32; -- vulkan_core.h:11474
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceCustomBorderColorFeaturesEXT); -- vulkan_core.h:11470
type VkPrivateDataSlotEXT is new System.Address; -- vulkan_core.h:11485
-- skipped empty struct VkPrivateDataSlotEXT_T
subtype VkPrivateDataSlotCreateFlagBitsEXT is unsigned;
VK_PRIVATE_DATA_SLOT_CREATE_FLAG_BITS_MAX_ENUM_EXT : constant VkPrivateDataSlotCreateFlagBitsEXT := 2147483647; -- vulkan_core.h:11489
subtype VkPrivateDataSlotCreateFlagsEXT is VkFlags; -- vulkan_core.h:11492
type VkPhysicalDevicePrivateDataFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11494
pNext : System.Address; -- vulkan_core.h:11495
privateData : aliased VkBool32; -- vulkan_core.h:11496
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePrivateDataFeaturesEXT); -- vulkan_core.h:11493
type VkDevicePrivateDataCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11500
pNext : System.Address; -- vulkan_core.h:11501
privateDataSlotRequestCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11502
end record;
pragma Convention (C_Pass_By_Copy, VkDevicePrivateDataCreateInfoEXT); -- vulkan_core.h:11499
type VkPrivateDataSlotCreateInfoEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11506
pNext : System.Address; -- vulkan_core.h:11507
flags : aliased VkPrivateDataSlotCreateFlagsEXT; -- vulkan_core.h:11508
end record;
pragma Convention (C_Pass_By_Copy, VkPrivateDataSlotCreateInfoEXT); -- vulkan_core.h:11505
type PFN_vkCreatePrivateDataSlotEXT is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreatePrivateDataSlotEXT); -- vulkan_core.h:11511
type PFN_vkDestroyPrivateDataSlotEXT is access procedure
(arg1 : VkDevice;
arg2 : VkPrivateDataSlotEXT;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyPrivateDataSlotEXT); -- vulkan_core.h:11512
type PFN_vkSetPrivateDataEXT is access function
(arg1 : VkDevice;
arg2 : VkObjectType;
arg3 : stdint_h.uint64_t;
arg4 : VkPrivateDataSlotEXT;
arg5 : stdint_h.uint64_t) return VkResult;
pragma Convention (C, PFN_vkSetPrivateDataEXT); -- vulkan_core.h:11513
type PFN_vkGetPrivateDataEXT is access procedure
(arg1 : VkDevice;
arg2 : VkObjectType;
arg3 : stdint_h.uint64_t;
arg4 : VkPrivateDataSlotEXT;
arg5 : access stdint_h.uint64_t);
pragma Convention (C, PFN_vkGetPrivateDataEXT); -- vulkan_core.h:11514
function vkCreatePrivateDataSlotEXT
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pPrivateDataSlot : System.Address) return VkResult; -- vulkan_core.h:11517
pragma Import (C, vkCreatePrivateDataSlotEXT, "vkCreatePrivateDataSlotEXT");
procedure vkDestroyPrivateDataSlotEXT
(device : VkDevice;
privateDataSlot : VkPrivateDataSlotEXT;
pAllocator : System.Address); -- vulkan_core.h:11523
pragma Import (C, vkDestroyPrivateDataSlotEXT, "vkDestroyPrivateDataSlotEXT");
function vkSetPrivateDataEXT
(device : VkDevice;
objectType : VkObjectType;
objectHandle : stdint_h.uint64_t;
privateDataSlot : VkPrivateDataSlotEXT;
data : stdint_h.uint64_t) return VkResult; -- vulkan_core.h:11528
pragma Import (C, vkSetPrivateDataEXT, "vkSetPrivateDataEXT");
procedure vkGetPrivateDataEXT
(device : VkDevice;
objectType : VkObjectType;
objectHandle : stdint_h.uint64_t;
privateDataSlot : VkPrivateDataSlotEXT;
pData : access stdint_h.uint64_t); -- vulkan_core.h:11535
pragma Import (C, vkGetPrivateDataEXT, "vkGetPrivateDataEXT");
type VkPhysicalDevicePipelineCreationCacheControlFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11548
pNext : System.Address; -- vulkan_core.h:11549
pipelineCreationCacheControl : aliased VkBool32; -- vulkan_core.h:11550
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevicePipelineCreationCacheControlFeaturesEXT); -- vulkan_core.h:11547
subtype VkDeviceDiagnosticsConfigFlagBitsNV is unsigned;
VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_SHADER_DEBUG_INFO_BIT_NV : constant VkDeviceDiagnosticsConfigFlagBitsNV := 1;
VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_RESOURCE_TRACKING_BIT_NV : constant VkDeviceDiagnosticsConfigFlagBitsNV := 2;
VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_AUTOMATIC_CHECKPOINTS_BIT_NV : constant VkDeviceDiagnosticsConfigFlagBitsNV := 4;
VK_DEVICE_DIAGNOSTICS_CONFIG_FLAG_BITS_MAX_ENUM_NV : constant VkDeviceDiagnosticsConfigFlagBitsNV := 2147483647; -- vulkan_core.h:11559
subtype VkDeviceDiagnosticsConfigFlagsNV is VkFlags; -- vulkan_core.h:11565
type VkPhysicalDeviceDiagnosticsConfigFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11567
pNext : System.Address; -- vulkan_core.h:11568
diagnosticsConfig : aliased VkBool32; -- vulkan_core.h:11569
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceDiagnosticsConfigFeaturesNV); -- vulkan_core.h:11566
type VkDeviceDiagnosticsConfigCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11573
pNext : System.Address; -- vulkan_core.h:11574
flags : aliased VkDeviceDiagnosticsConfigFlagsNV; -- vulkan_core.h:11575
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceDiagnosticsConfigCreateInfoNV); -- vulkan_core.h:11572
subtype VkFragmentShadingRateTypeNV is unsigned;
VK_FRAGMENT_SHADING_RATE_TYPE_FRAGMENT_SIZE_NV : constant VkFragmentShadingRateTypeNV := 0;
VK_FRAGMENT_SHADING_RATE_TYPE_ENUMS_NV : constant VkFragmentShadingRateTypeNV := 1;
VK_FRAGMENT_SHADING_RATE_TYPE_MAX_ENUM_NV : constant VkFragmentShadingRateTypeNV := 2147483647; -- vulkan_core.h:11589
subtype VkFragmentShadingRateNV is unsigned;
VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_PIXEL_NV : constant VkFragmentShadingRateNV := 0;
VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_1X2_PIXELS_NV : constant VkFragmentShadingRateNV := 1;
VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X1_PIXELS_NV : constant VkFragmentShadingRateNV := 4;
VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X2_PIXELS_NV : constant VkFragmentShadingRateNV := 5;
VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_2X4_PIXELS_NV : constant VkFragmentShadingRateNV := 6;
VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_4X2_PIXELS_NV : constant VkFragmentShadingRateNV := 9;
VK_FRAGMENT_SHADING_RATE_1_INVOCATION_PER_4X4_PIXELS_NV : constant VkFragmentShadingRateNV := 10;
VK_FRAGMENT_SHADING_RATE_2_INVOCATIONS_PER_PIXEL_NV : constant VkFragmentShadingRateNV := 11;
VK_FRAGMENT_SHADING_RATE_4_INVOCATIONS_PER_PIXEL_NV : constant VkFragmentShadingRateNV := 12;
VK_FRAGMENT_SHADING_RATE_8_INVOCATIONS_PER_PIXEL_NV : constant VkFragmentShadingRateNV := 13;
VK_FRAGMENT_SHADING_RATE_16_INVOCATIONS_PER_PIXEL_NV : constant VkFragmentShadingRateNV := 14;
VK_FRAGMENT_SHADING_RATE_NO_INVOCATIONS_NV : constant VkFragmentShadingRateNV := 15;
VK_FRAGMENT_SHADING_RATE_MAX_ENUM_NV : constant VkFragmentShadingRateNV := 2147483647; -- vulkan_core.h:11595
type VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11611
pNext : System.Address; -- vulkan_core.h:11612
fragmentShadingRateEnums : aliased VkBool32; -- vulkan_core.h:11613
supersampleFragmentShadingRates : aliased VkBool32; -- vulkan_core.h:11614
noInvocationFragmentShadingRates : aliased VkBool32; -- vulkan_core.h:11615
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentShadingRateEnumsFeaturesNV); -- vulkan_core.h:11610
type VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11619
pNext : System.Address; -- vulkan_core.h:11620
maxFragmentShadingRateInvocationCount : aliased VkSampleCountFlagBits; -- vulkan_core.h:11621
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentShadingRateEnumsPropertiesNV); -- vulkan_core.h:11618
type VkPipelineFragmentShadingRateEnumStateCreateInfoNV_combinerOps_array is array (0 .. 1) of aliased VkFragmentShadingRateCombinerOpKHR;
type VkPipelineFragmentShadingRateEnumStateCreateInfoNV is record
sType : aliased VkStructureType; -- vulkan_core.h:11625
pNext : System.Address; -- vulkan_core.h:11626
shadingRateType : aliased VkFragmentShadingRateTypeNV; -- vulkan_core.h:11627
shadingRate : aliased VkFragmentShadingRateNV; -- vulkan_core.h:11628
combinerOps : aliased VkPipelineFragmentShadingRateEnumStateCreateInfoNV_combinerOps_array; -- vulkan_core.h:11629
end record;
pragma Convention (C_Pass_By_Copy, VkPipelineFragmentShadingRateEnumStateCreateInfoNV); -- vulkan_core.h:11624
type PFN_vkCmdSetFragmentShadingRateEnumNV is access procedure
(arg1 : VkCommandBuffer;
arg2 : VkFragmentShadingRateNV;
arg3 : System.Address);
pragma Convention (C, PFN_vkCmdSetFragmentShadingRateEnumNV); -- vulkan_core.h:11632
procedure vkCmdSetFragmentShadingRateEnumNV
(commandBuffer : VkCommandBuffer;
shadingRate : VkFragmentShadingRateNV;
combinerOps : System.Address); -- vulkan_core.h:11635
pragma Import (C, vkCmdSetFragmentShadingRateEnumNV, "vkCmdSetFragmentShadingRateEnumNV");
type VkPhysicalDeviceFragmentDensityMap2FeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11646
pNext : System.Address; -- vulkan_core.h:11647
fragmentDensityMapDeferred : aliased VkBool32; -- vulkan_core.h:11648
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentDensityMap2FeaturesEXT); -- vulkan_core.h:11645
type VkPhysicalDeviceFragmentDensityMap2PropertiesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11652
pNext : System.Address; -- vulkan_core.h:11653
subsampledLoads : aliased VkBool32; -- vulkan_core.h:11654
subsampledCoarseReconstructionEarlyAccess : aliased VkBool32; -- vulkan_core.h:11655
maxSubsampledArrayLayers : aliased stdint_h.uint32_t; -- vulkan_core.h:11656
maxDescriptorSetSubsampledSamplers : aliased stdint_h.uint32_t; -- vulkan_core.h:11657
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceFragmentDensityMap2PropertiesEXT); -- vulkan_core.h:11651
type VkCopyCommandTransformInfoQCOM is record
sType : aliased VkStructureType; -- vulkan_core.h:11666
pNext : System.Address; -- vulkan_core.h:11667
transform : aliased VkSurfaceTransformFlagBitsKHR; -- vulkan_core.h:11668
end record;
pragma Convention (C_Pass_By_Copy, VkCopyCommandTransformInfoQCOM); -- vulkan_core.h:11665
type VkPhysicalDeviceImageRobustnessFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11677
pNext : System.Address; -- vulkan_core.h:11678
robustImageAccess : aliased VkBool32; -- vulkan_core.h:11679
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceImageRobustnessFeaturesEXT); -- vulkan_core.h:11676
type VkPhysicalDevice4444FormatsFeaturesEXT is record
sType : aliased VkStructureType; -- vulkan_core.h:11688
pNext : System.Address; -- vulkan_core.h:11689
formatA4R4G4B4 : aliased VkBool32; -- vulkan_core.h:11690
formatA4B4G4R4 : aliased VkBool32; -- vulkan_core.h:11691
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDevice4444FormatsFeaturesEXT); -- vulkan_core.h:11687
type PFN_vkAcquireWinrtDisplayNV is access function (arg1 : VkPhysicalDevice; arg2 : VkDisplayKHR) return VkResult;
pragma Convention (C, PFN_vkAcquireWinrtDisplayNV); -- vulkan_core.h:11699
type PFN_vkGetWinrtDisplayNV is access function
(arg1 : VkPhysicalDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetWinrtDisplayNV); -- vulkan_core.h:11700
function vkAcquireWinrtDisplayNV (physicalDevice : VkPhysicalDevice; display : VkDisplayKHR) return VkResult; -- vulkan_core.h:11703
pragma Import (C, vkAcquireWinrtDisplayNV, "vkAcquireWinrtDisplayNV");
function vkGetWinrtDisplayNV
(physicalDevice : VkPhysicalDevice;
deviceRelativeId : stdint_h.uint32_t;
pDisplay : System.Address) return VkResult; -- vulkan_core.h:11707
pragma Import (C, vkGetWinrtDisplayNV, "vkGetWinrtDisplayNV");
type VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE is record
sType : aliased VkStructureType; -- vulkan_core.h:11718
pNext : System.Address; -- vulkan_core.h:11719
mutableDescriptorType : aliased VkBool32; -- vulkan_core.h:11720
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceMutableDescriptorTypeFeaturesVALVE); -- vulkan_core.h:11717
type VkMutableDescriptorTypeListVALVE is record
descriptorTypeCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11724
pDescriptorTypes : System.Address; -- vulkan_core.h:11725
end record;
pragma Convention (C_Pass_By_Copy, VkMutableDescriptorTypeListVALVE); -- vulkan_core.h:11723
type VkMutableDescriptorTypeCreateInfoVALVE is record
sType : aliased VkStructureType; -- vulkan_core.h:11729
pNext : System.Address; -- vulkan_core.h:11730
mutableDescriptorTypeListCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11731
pMutableDescriptorTypeLists : System.Address; -- vulkan_core.h:11732
end record;
pragma Convention (C_Pass_By_Copy, VkMutableDescriptorTypeCreateInfoVALVE); -- vulkan_core.h:11728
-- skipped empty struct VkAccelerationStructureKHR_T
type VkAccelerationStructureKHR is new System.Address; -- vulkan_core.h:11738
subtype VkBuildAccelerationStructureModeKHR is unsigned;
VK_BUILD_ACCELERATION_STRUCTURE_MODE_BUILD_KHR : constant VkBuildAccelerationStructureModeKHR := 0;
VK_BUILD_ACCELERATION_STRUCTURE_MODE_UPDATE_KHR : constant VkBuildAccelerationStructureModeKHR := 1;
VK_BUILD_ACCELERATION_STRUCTURE_MODE_MAX_ENUM_KHR : constant VkBuildAccelerationStructureModeKHR := 2147483647; -- vulkan_core.h:11742
subtype VkAccelerationStructureBuildTypeKHR is unsigned;
VK_ACCELERATION_STRUCTURE_BUILD_TYPE_HOST_KHR : constant VkAccelerationStructureBuildTypeKHR := 0;
VK_ACCELERATION_STRUCTURE_BUILD_TYPE_DEVICE_KHR : constant VkAccelerationStructureBuildTypeKHR := 1;
VK_ACCELERATION_STRUCTURE_BUILD_TYPE_HOST_OR_DEVICE_KHR : constant VkAccelerationStructureBuildTypeKHR := 2;
VK_ACCELERATION_STRUCTURE_BUILD_TYPE_MAX_ENUM_KHR : constant VkAccelerationStructureBuildTypeKHR := 2147483647; -- vulkan_core.h:11748
subtype VkAccelerationStructureCompatibilityKHR is unsigned;
VK_ACCELERATION_STRUCTURE_COMPATIBILITY_COMPATIBLE_KHR : constant VkAccelerationStructureCompatibilityKHR := 0;
VK_ACCELERATION_STRUCTURE_COMPATIBILITY_INCOMPATIBLE_KHR : constant VkAccelerationStructureCompatibilityKHR := 1;
VK_ACCELERATION_STRUCTURE_COMPATIBILITY_MAX_ENUM_KHR : constant VkAccelerationStructureCompatibilityKHR := 2147483647; -- vulkan_core.h:11755
subtype VkAccelerationStructureCreateFlagBitsKHR is unsigned;
VK_ACCELERATION_STRUCTURE_CREATE_DEVICE_ADDRESS_CAPTURE_REPLAY_BIT_KHR : constant VkAccelerationStructureCreateFlagBitsKHR := 1;
VK_ACCELERATION_STRUCTURE_CREATE_FLAG_BITS_MAX_ENUM_KHR : constant VkAccelerationStructureCreateFlagBitsKHR := 2147483647; -- vulkan_core.h:11761
subtype VkAccelerationStructureCreateFlagsKHR is VkFlags; -- vulkan_core.h:11765
type VkDeviceOrHostAddressKHR (discr : unsigned := 0) is record
case discr is
when 0 =>
deviceAddress : aliased VkDeviceAddress; -- vulkan_core.h:11767
when others =>
hostAddress : System.Address; -- vulkan_core.h:11768
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceOrHostAddressKHR);
pragma Unchecked_Union (VkDeviceOrHostAddressKHR); -- vulkan_core.h:11766
type VkDeviceOrHostAddressConstKHR (discr : unsigned := 0) is record
case discr is
when 0 =>
deviceAddress : aliased VkDeviceAddress; -- vulkan_core.h:11772
when others =>
hostAddress : System.Address; -- vulkan_core.h:11773
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkDeviceOrHostAddressConstKHR);
pragma Unchecked_Union (VkDeviceOrHostAddressConstKHR); -- vulkan_core.h:11771
type VkAccelerationStructureBuildRangeInfoKHR is record
primitiveCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11777
primitiveOffset : aliased stdint_h.uint32_t; -- vulkan_core.h:11778
firstVertex : aliased stdint_h.uint32_t; -- vulkan_core.h:11779
transformOffset : aliased stdint_h.uint32_t; -- vulkan_core.h:11780
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureBuildRangeInfoKHR); -- vulkan_core.h:11776
type VkAccelerationStructureGeometryTrianglesDataKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11784
pNext : System.Address; -- vulkan_core.h:11785
vertexFormat : aliased VkFormat; -- vulkan_core.h:11786
vertexData : VkDeviceOrHostAddressConstKHR; -- vulkan_core.h:11787
vertexStride : aliased VkDeviceSize; -- vulkan_core.h:11788
maxVertex : aliased stdint_h.uint32_t; -- vulkan_core.h:11789
indexType : aliased VkIndexType; -- vulkan_core.h:11790
indexData : VkDeviceOrHostAddressConstKHR; -- vulkan_core.h:11791
transformData : VkDeviceOrHostAddressConstKHR; -- vulkan_core.h:11792
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureGeometryTrianglesDataKHR); -- vulkan_core.h:11783
type VkAccelerationStructureGeometryAabbsDataKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11796
pNext : System.Address; -- vulkan_core.h:11797
data : VkDeviceOrHostAddressConstKHR; -- vulkan_core.h:11798
stride : aliased VkDeviceSize; -- vulkan_core.h:11799
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureGeometryAabbsDataKHR); -- vulkan_core.h:11795
type VkAccelerationStructureGeometryInstancesDataKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11803
pNext : System.Address; -- vulkan_core.h:11804
arrayOfPointers : aliased VkBool32; -- vulkan_core.h:11805
data : VkDeviceOrHostAddressConstKHR; -- vulkan_core.h:11806
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureGeometryInstancesDataKHR); -- vulkan_core.h:11802
type VkAccelerationStructureGeometryDataKHR (discr : unsigned := 0) is record
case discr is
when 0 =>
triangles : aliased VkAccelerationStructureGeometryTrianglesDataKHR; -- vulkan_core.h:11810
when 1 =>
aabbs : aliased VkAccelerationStructureGeometryAabbsDataKHR; -- vulkan_core.h:11811
when others =>
instances : aliased VkAccelerationStructureGeometryInstancesDataKHR; -- vulkan_core.h:11812
end case;
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureGeometryDataKHR);
pragma Unchecked_Union (VkAccelerationStructureGeometryDataKHR); -- vulkan_core.h:11809
type VkAccelerationStructureGeometryKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11816
pNext : System.Address; -- vulkan_core.h:11817
geometryType : aliased VkGeometryTypeKHR; -- vulkan_core.h:11818
geometry : VkAccelerationStructureGeometryDataKHR; -- vulkan_core.h:11819
flags : aliased VkGeometryFlagsKHR; -- vulkan_core.h:11820
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureGeometryKHR); -- vulkan_core.h:11815
type VkAccelerationStructureBuildGeometryInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11824
pNext : System.Address; -- vulkan_core.h:11825
c_type : aliased VkAccelerationStructureTypeKHR; -- vulkan_core.h:11826
flags : aliased VkBuildAccelerationStructureFlagsKHR; -- vulkan_core.h:11827
mode : aliased VkBuildAccelerationStructureModeKHR; -- vulkan_core.h:11828
srcAccelerationStructure : VkAccelerationStructureKHR; -- vulkan_core.h:11829
dstAccelerationStructure : VkAccelerationStructureKHR; -- vulkan_core.h:11830
geometryCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11831
pGeometries : System.Address; -- vulkan_core.h:11832
ppGeometries : System.Address; -- vulkan_core.h:11833
scratchData : VkDeviceOrHostAddressKHR; -- vulkan_core.h:11834
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureBuildGeometryInfoKHR); -- vulkan_core.h:11823
type VkAccelerationStructureCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11838
pNext : System.Address; -- vulkan_core.h:11839
createFlags : aliased VkAccelerationStructureCreateFlagsKHR; -- vulkan_core.h:11840
buffer : VkBuffer; -- vulkan_core.h:11841
offset : aliased VkDeviceSize; -- vulkan_core.h:11842
size : aliased VkDeviceSize; -- vulkan_core.h:11843
c_type : aliased VkAccelerationStructureTypeKHR; -- vulkan_core.h:11844
deviceAddress : aliased VkDeviceAddress; -- vulkan_core.h:11845
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureCreateInfoKHR); -- vulkan_core.h:11837
type VkWriteDescriptorSetAccelerationStructureKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11849
pNext : System.Address; -- vulkan_core.h:11850
accelerationStructureCount : aliased stdint_h.uint32_t; -- vulkan_core.h:11851
pAccelerationStructures : System.Address; -- vulkan_core.h:11852
end record;
pragma Convention (C_Pass_By_Copy, VkWriteDescriptorSetAccelerationStructureKHR); -- vulkan_core.h:11848
type VkPhysicalDeviceAccelerationStructureFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11856
pNext : System.Address; -- vulkan_core.h:11857
accelerationStructure : aliased VkBool32; -- vulkan_core.h:11858
accelerationStructureCaptureReplay : aliased VkBool32; -- vulkan_core.h:11859
accelerationStructureIndirectBuild : aliased VkBool32; -- vulkan_core.h:11860
accelerationStructureHostCommands : aliased VkBool32; -- vulkan_core.h:11861
descriptorBindingAccelerationStructureUpdateAfterBind : aliased VkBool32; -- vulkan_core.h:11862
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceAccelerationStructureFeaturesKHR); -- vulkan_core.h:11855
type VkPhysicalDeviceAccelerationStructurePropertiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11866
pNext : System.Address; -- vulkan_core.h:11867
maxGeometryCount : aliased stdint_h.uint64_t; -- vulkan_core.h:11868
maxInstanceCount : aliased stdint_h.uint64_t; -- vulkan_core.h:11869
maxPrimitiveCount : aliased stdint_h.uint64_t; -- vulkan_core.h:11870
maxPerStageDescriptorAccelerationStructures : aliased stdint_h.uint32_t; -- vulkan_core.h:11871
maxPerStageDescriptorUpdateAfterBindAccelerationStructures : aliased stdint_h.uint32_t; -- vulkan_core.h:11872
maxDescriptorSetAccelerationStructures : aliased stdint_h.uint32_t; -- vulkan_core.h:11873
maxDescriptorSetUpdateAfterBindAccelerationStructures : aliased stdint_h.uint32_t; -- vulkan_core.h:11874
minAccelerationStructureScratchOffsetAlignment : aliased stdint_h.uint32_t; -- vulkan_core.h:11875
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceAccelerationStructurePropertiesKHR); -- vulkan_core.h:11865
type VkAccelerationStructureDeviceAddressInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11879
pNext : System.Address; -- vulkan_core.h:11880
accelerationStructure : VkAccelerationStructureKHR; -- vulkan_core.h:11881
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureDeviceAddressInfoKHR); -- vulkan_core.h:11878
type VkAccelerationStructureVersionInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11885
pNext : System.Address; -- vulkan_core.h:11886
pVersionData : access stdint_h.uint8_t; -- vulkan_core.h:11887
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureVersionInfoKHR); -- vulkan_core.h:11884
type VkCopyAccelerationStructureToMemoryInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11891
pNext : System.Address; -- vulkan_core.h:11892
src : VkAccelerationStructureKHR; -- vulkan_core.h:11893
dst : VkDeviceOrHostAddressKHR; -- vulkan_core.h:11894
mode : aliased VkCopyAccelerationStructureModeKHR; -- vulkan_core.h:11895
end record;
pragma Convention (C_Pass_By_Copy, VkCopyAccelerationStructureToMemoryInfoKHR); -- vulkan_core.h:11890
type VkCopyMemoryToAccelerationStructureInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11899
pNext : System.Address; -- vulkan_core.h:11900
src : VkDeviceOrHostAddressConstKHR; -- vulkan_core.h:11901
dst : VkAccelerationStructureKHR; -- vulkan_core.h:11902
mode : aliased VkCopyAccelerationStructureModeKHR; -- vulkan_core.h:11903
end record;
pragma Convention (C_Pass_By_Copy, VkCopyMemoryToAccelerationStructureInfoKHR); -- vulkan_core.h:11898
type VkCopyAccelerationStructureInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11907
pNext : System.Address; -- vulkan_core.h:11908
src : VkAccelerationStructureKHR; -- vulkan_core.h:11909
dst : VkAccelerationStructureKHR; -- vulkan_core.h:11910
mode : aliased VkCopyAccelerationStructureModeKHR; -- vulkan_core.h:11911
end record;
pragma Convention (C_Pass_By_Copy, VkCopyAccelerationStructureInfoKHR); -- vulkan_core.h:11906
type VkAccelerationStructureBuildSizesInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:11915
pNext : System.Address; -- vulkan_core.h:11916
accelerationStructureSize : aliased VkDeviceSize; -- vulkan_core.h:11917
updateScratchSize : aliased VkDeviceSize; -- vulkan_core.h:11918
buildScratchSize : aliased VkDeviceSize; -- vulkan_core.h:11919
end record;
pragma Convention (C_Pass_By_Copy, VkAccelerationStructureBuildSizesInfoKHR); -- vulkan_core.h:11914
type PFN_vkCreateAccelerationStructureKHR is access function
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateAccelerationStructureKHR); -- vulkan_core.h:11922
type PFN_vkDestroyAccelerationStructureKHR is access procedure
(arg1 : VkDevice;
arg2 : VkAccelerationStructureKHR;
arg3 : System.Address);
pragma Convention (C, PFN_vkDestroyAccelerationStructureKHR); -- vulkan_core.h:11923
type PFN_vkCmdBuildAccelerationStructuresKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : System.Address);
pragma Convention (C, PFN_vkCmdBuildAccelerationStructuresKHR); -- vulkan_core.h:11924
type PFN_vkCmdBuildAccelerationStructuresIndirectKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : access VkDeviceAddress;
arg5 : access stdint_h.uint32_t;
arg6 : System.Address);
pragma Convention (C, PFN_vkCmdBuildAccelerationStructuresIndirectKHR); -- vulkan_core.h:11925
type PFN_vkBuildAccelerationStructuresKHR is access function
(arg1 : VkDevice;
arg2 : VkDeferredOperationKHR;
arg3 : stdint_h.uint32_t;
arg4 : System.Address;
arg5 : System.Address) return VkResult;
pragma Convention (C, PFN_vkBuildAccelerationStructuresKHR); -- vulkan_core.h:11926
type PFN_vkCopyAccelerationStructureKHR is access function
(arg1 : VkDevice;
arg2 : VkDeferredOperationKHR;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCopyAccelerationStructureKHR); -- vulkan_core.h:11927
type PFN_vkCopyAccelerationStructureToMemoryKHR is access function
(arg1 : VkDevice;
arg2 : VkDeferredOperationKHR;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCopyAccelerationStructureToMemoryKHR); -- vulkan_core.h:11928
type PFN_vkCopyMemoryToAccelerationStructureKHR is access function
(arg1 : VkDevice;
arg2 : VkDeferredOperationKHR;
arg3 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCopyMemoryToAccelerationStructureKHR); -- vulkan_core.h:11929
type PFN_vkWriteAccelerationStructuresPropertiesKHR is access function
(arg1 : VkDevice;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkQueryType;
arg5 : crtdefs_h.size_t;
arg6 : System.Address;
arg7 : crtdefs_h.size_t) return VkResult;
pragma Convention (C, PFN_vkWriteAccelerationStructuresPropertiesKHR); -- vulkan_core.h:11930
type PFN_vkCmdCopyAccelerationStructureKHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdCopyAccelerationStructureKHR); -- vulkan_core.h:11931
type PFN_vkCmdCopyAccelerationStructureToMemoryKHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdCopyAccelerationStructureToMemoryKHR); -- vulkan_core.h:11932
type PFN_vkCmdCopyMemoryToAccelerationStructureKHR is access procedure (arg1 : VkCommandBuffer; arg2 : System.Address);
pragma Convention (C, PFN_vkCmdCopyMemoryToAccelerationStructureKHR); -- vulkan_core.h:11933
type PFN_vkGetAccelerationStructureDeviceAddressKHR is access function (arg1 : VkDevice; arg2 : System.Address) return VkDeviceAddress;
pragma Convention (C, PFN_vkGetAccelerationStructureDeviceAddressKHR); -- vulkan_core.h:11934
type PFN_vkCmdWriteAccelerationStructuresPropertiesKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : stdint_h.uint32_t;
arg3 : System.Address;
arg4 : VkQueryType;
arg5 : VkQueryPool;
arg6 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdWriteAccelerationStructuresPropertiesKHR); -- vulkan_core.h:11935
type PFN_vkGetDeviceAccelerationStructureCompatibilityKHR is access procedure
(arg1 : VkDevice;
arg2 : System.Address;
arg3 : access VkAccelerationStructureCompatibilityKHR);
pragma Convention (C, PFN_vkGetDeviceAccelerationStructureCompatibilityKHR); -- vulkan_core.h:11936
type PFN_vkGetAccelerationStructureBuildSizesKHR is access procedure
(arg1 : VkDevice;
arg2 : VkAccelerationStructureBuildTypeKHR;
arg3 : System.Address;
arg4 : access stdint_h.uint32_t;
arg5 : access VkAccelerationStructureBuildSizesInfoKHR);
pragma Convention (C, PFN_vkGetAccelerationStructureBuildSizesKHR); -- vulkan_core.h:11937
function vkCreateAccelerationStructureKHR
(device : VkDevice;
pCreateInfo : System.Address;
pAllocator : System.Address;
pAccelerationStructure : System.Address) return VkResult; -- vulkan_core.h:11940
pragma Import (C, vkCreateAccelerationStructureKHR, "vkCreateAccelerationStructureKHR");
procedure vkDestroyAccelerationStructureKHR
(device : VkDevice;
accelerationStructure : VkAccelerationStructureKHR;
pAllocator : System.Address); -- vulkan_core.h:11946
pragma Import (C, vkDestroyAccelerationStructureKHR, "vkDestroyAccelerationStructureKHR");
procedure vkCmdBuildAccelerationStructuresKHR
(commandBuffer : VkCommandBuffer;
infoCount : stdint_h.uint32_t;
pInfos : System.Address;
ppBuildRangeInfos : System.Address); -- vulkan_core.h:11951
pragma Import (C, vkCmdBuildAccelerationStructuresKHR, "vkCmdBuildAccelerationStructuresKHR");
procedure vkCmdBuildAccelerationStructuresIndirectKHR
(commandBuffer : VkCommandBuffer;
infoCount : stdint_h.uint32_t;
pInfos : System.Address;
pIndirectDeviceAddresses : access VkDeviceAddress;
pIndirectStrides : access stdint_h.uint32_t;
ppMaxPrimitiveCounts : System.Address); -- vulkan_core.h:11957
pragma Import (C, vkCmdBuildAccelerationStructuresIndirectKHR, "vkCmdBuildAccelerationStructuresIndirectKHR");
function vkBuildAccelerationStructuresKHR
(device : VkDevice;
deferredOperation : VkDeferredOperationKHR;
infoCount : stdint_h.uint32_t;
pInfos : System.Address;
ppBuildRangeInfos : System.Address) return VkResult; -- vulkan_core.h:11965
pragma Import (C, vkBuildAccelerationStructuresKHR, "vkBuildAccelerationStructuresKHR");
function vkCopyAccelerationStructureKHR
(device : VkDevice;
deferredOperation : VkDeferredOperationKHR;
pInfo : System.Address) return VkResult; -- vulkan_core.h:11972
pragma Import (C, vkCopyAccelerationStructureKHR, "vkCopyAccelerationStructureKHR");
function vkCopyAccelerationStructureToMemoryKHR
(device : VkDevice;
deferredOperation : VkDeferredOperationKHR;
pInfo : System.Address) return VkResult; -- vulkan_core.h:11977
pragma Import (C, vkCopyAccelerationStructureToMemoryKHR, "vkCopyAccelerationStructureToMemoryKHR");
function vkCopyMemoryToAccelerationStructureKHR
(device : VkDevice;
deferredOperation : VkDeferredOperationKHR;
pInfo : System.Address) return VkResult; -- vulkan_core.h:11982
pragma Import (C, vkCopyMemoryToAccelerationStructureKHR, "vkCopyMemoryToAccelerationStructureKHR");
function vkWriteAccelerationStructuresPropertiesKHR
(device : VkDevice;
accelerationStructureCount : stdint_h.uint32_t;
pAccelerationStructures : System.Address;
queryType : VkQueryType;
dataSize : crtdefs_h.size_t;
pData : System.Address;
stride : crtdefs_h.size_t) return VkResult; -- vulkan_core.h:11987
pragma Import (C, vkWriteAccelerationStructuresPropertiesKHR, "vkWriteAccelerationStructuresPropertiesKHR");
procedure vkCmdCopyAccelerationStructureKHR (commandBuffer : VkCommandBuffer; pInfo : System.Address); -- vulkan_core.h:11996
pragma Import (C, vkCmdCopyAccelerationStructureKHR, "vkCmdCopyAccelerationStructureKHR");
procedure vkCmdCopyAccelerationStructureToMemoryKHR (commandBuffer : VkCommandBuffer; pInfo : System.Address); -- vulkan_core.h:12000
pragma Import (C, vkCmdCopyAccelerationStructureToMemoryKHR, "vkCmdCopyAccelerationStructureToMemoryKHR");
procedure vkCmdCopyMemoryToAccelerationStructureKHR (commandBuffer : VkCommandBuffer; pInfo : System.Address); -- vulkan_core.h:12004
pragma Import (C, vkCmdCopyMemoryToAccelerationStructureKHR, "vkCmdCopyMemoryToAccelerationStructureKHR");
function vkGetAccelerationStructureDeviceAddressKHR (device : VkDevice; pInfo : System.Address) return VkDeviceAddress; -- vulkan_core.h:12008
pragma Import (C, vkGetAccelerationStructureDeviceAddressKHR, "vkGetAccelerationStructureDeviceAddressKHR");
procedure vkCmdWriteAccelerationStructuresPropertiesKHR
(commandBuffer : VkCommandBuffer;
accelerationStructureCount : stdint_h.uint32_t;
pAccelerationStructures : System.Address;
queryType : VkQueryType;
queryPool : VkQueryPool;
firstQuery : stdint_h.uint32_t); -- vulkan_core.h:12012
pragma Import (C, vkCmdWriteAccelerationStructuresPropertiesKHR, "vkCmdWriteAccelerationStructuresPropertiesKHR");
procedure vkGetDeviceAccelerationStructureCompatibilityKHR
(device : VkDevice;
pVersionInfo : System.Address;
pCompatibility : access VkAccelerationStructureCompatibilityKHR); -- vulkan_core.h:12020
pragma Import (C, vkGetDeviceAccelerationStructureCompatibilityKHR, "vkGetDeviceAccelerationStructureCompatibilityKHR");
procedure vkGetAccelerationStructureBuildSizesKHR
(device : VkDevice;
buildType : VkAccelerationStructureBuildTypeKHR;
pBuildInfo : System.Address;
pMaxPrimitiveCounts : access stdint_h.uint32_t;
pSizeInfo : access VkAccelerationStructureBuildSizesInfoKHR); -- vulkan_core.h:12025
pragma Import (C, vkGetAccelerationStructureBuildSizesKHR, "vkGetAccelerationStructureBuildSizesKHR");
subtype VkShaderGroupShaderKHR is unsigned;
VK_SHADER_GROUP_SHADER_GENERAL_KHR : constant VkShaderGroupShaderKHR := 0;
VK_SHADER_GROUP_SHADER_CLOSEST_HIT_KHR : constant VkShaderGroupShaderKHR := 1;
VK_SHADER_GROUP_SHADER_ANY_HIT_KHR : constant VkShaderGroupShaderKHR := 2;
VK_SHADER_GROUP_SHADER_INTERSECTION_KHR : constant VkShaderGroupShaderKHR := 3;
VK_SHADER_GROUP_SHADER_MAX_ENUM_KHR : constant VkShaderGroupShaderKHR := 2147483647; -- vulkan_core.h:12038
type VkRayTracingShaderGroupCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:12046
pNext : System.Address; -- vulkan_core.h:12047
c_type : aliased VkRayTracingShaderGroupTypeKHR; -- vulkan_core.h:12048
generalShader : aliased stdint_h.uint32_t; -- vulkan_core.h:12049
closestHitShader : aliased stdint_h.uint32_t; -- vulkan_core.h:12050
anyHitShader : aliased stdint_h.uint32_t; -- vulkan_core.h:12051
intersectionShader : aliased stdint_h.uint32_t; -- vulkan_core.h:12052
pShaderGroupCaptureReplayHandle : System.Address; -- vulkan_core.h:12053
end record;
pragma Convention (C_Pass_By_Copy, VkRayTracingShaderGroupCreateInfoKHR); -- vulkan_core.h:12045
type VkRayTracingPipelineInterfaceCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:12057
pNext : System.Address; -- vulkan_core.h:12058
maxPipelineRayPayloadSize : aliased stdint_h.uint32_t; -- vulkan_core.h:12059
maxPipelineRayHitAttributeSize : aliased stdint_h.uint32_t; -- vulkan_core.h:12060
end record;
pragma Convention (C_Pass_By_Copy, VkRayTracingPipelineInterfaceCreateInfoKHR); -- vulkan_core.h:12056
type VkRayTracingPipelineCreateInfoKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:12064
pNext : System.Address; -- vulkan_core.h:12065
flags : aliased VkPipelineCreateFlags; -- vulkan_core.h:12066
stageCount : aliased stdint_h.uint32_t; -- vulkan_core.h:12067
pStages : System.Address; -- vulkan_core.h:12068
groupCount : aliased stdint_h.uint32_t; -- vulkan_core.h:12069
pGroups : System.Address; -- vulkan_core.h:12070
maxPipelineRayRecursionDepth : aliased stdint_h.uint32_t; -- vulkan_core.h:12071
pLibraryInfo : System.Address; -- vulkan_core.h:12072
pLibraryInterface : System.Address; -- vulkan_core.h:12073
pDynamicState : System.Address; -- vulkan_core.h:12074
layout : VkPipelineLayout; -- vulkan_core.h:12075
basePipelineHandle : VkPipeline; -- vulkan_core.h:12076
basePipelineIndex : aliased stdint_h.int32_t; -- vulkan_core.h:12077
end record;
pragma Convention (C_Pass_By_Copy, VkRayTracingPipelineCreateInfoKHR); -- vulkan_core.h:12063
type VkPhysicalDeviceRayTracingPipelineFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:12081
pNext : System.Address; -- vulkan_core.h:12082
rayTracingPipeline : aliased VkBool32; -- vulkan_core.h:12083
rayTracingPipelineShaderGroupHandleCaptureReplay : aliased VkBool32; -- vulkan_core.h:12084
rayTracingPipelineShaderGroupHandleCaptureReplayMixed : aliased VkBool32; -- vulkan_core.h:12085
rayTracingPipelineTraceRaysIndirect : aliased VkBool32; -- vulkan_core.h:12086
rayTraversalPrimitiveCulling : aliased VkBool32; -- vulkan_core.h:12087
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceRayTracingPipelineFeaturesKHR); -- vulkan_core.h:12080
type VkPhysicalDeviceRayTracingPipelinePropertiesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:12091
pNext : System.Address; -- vulkan_core.h:12092
shaderGroupHandleSize : aliased stdint_h.uint32_t; -- vulkan_core.h:12093
maxRayRecursionDepth : aliased stdint_h.uint32_t; -- vulkan_core.h:12094
maxShaderGroupStride : aliased stdint_h.uint32_t; -- vulkan_core.h:12095
shaderGroupBaseAlignment : aliased stdint_h.uint32_t; -- vulkan_core.h:12096
shaderGroupHandleCaptureReplaySize : aliased stdint_h.uint32_t; -- vulkan_core.h:12097
maxRayDispatchInvocationCount : aliased stdint_h.uint32_t; -- vulkan_core.h:12098
shaderGroupHandleAlignment : aliased stdint_h.uint32_t; -- vulkan_core.h:12099
maxRayHitAttributeSize : aliased stdint_h.uint32_t; -- vulkan_core.h:12100
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceRayTracingPipelinePropertiesKHR); -- vulkan_core.h:12090
type VkStridedDeviceAddressRegionKHR is record
deviceAddress : aliased VkDeviceAddress; -- vulkan_core.h:12104
stride : aliased VkDeviceSize; -- vulkan_core.h:12105
size : aliased VkDeviceSize; -- vulkan_core.h:12106
end record;
pragma Convention (C_Pass_By_Copy, VkStridedDeviceAddressRegionKHR); -- vulkan_core.h:12103
type VkTraceRaysIndirectCommandKHR is record
width : aliased stdint_h.uint32_t; -- vulkan_core.h:12110
height : aliased stdint_h.uint32_t; -- vulkan_core.h:12111
depth : aliased stdint_h.uint32_t; -- vulkan_core.h:12112
end record;
pragma Convention (C_Pass_By_Copy, VkTraceRaysIndirectCommandKHR); -- vulkan_core.h:12109
type PFN_vkCmdTraceRaysKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address;
arg5 : System.Address;
arg6 : stdint_h.uint32_t;
arg7 : stdint_h.uint32_t;
arg8 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdTraceRaysKHR); -- vulkan_core.h:12115
type PFN_vkCreateRayTracingPipelinesKHR is access function
(arg1 : VkDevice;
arg2 : VkDeferredOperationKHR;
arg3 : VkPipelineCache;
arg4 : stdint_h.uint32_t;
arg5 : System.Address;
arg6 : System.Address;
arg7 : System.Address) return VkResult;
pragma Convention (C, PFN_vkCreateRayTracingPipelinesKHR); -- vulkan_core.h:12116
type PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR is access function
(arg1 : VkDevice;
arg2 : VkPipeline;
arg3 : stdint_h.uint32_t;
arg4 : stdint_h.uint32_t;
arg5 : crtdefs_h.size_t;
arg6 : System.Address) return VkResult;
pragma Convention (C, PFN_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR); -- vulkan_core.h:12117
type PFN_vkCmdTraceRaysIndirectKHR is access procedure
(arg1 : VkCommandBuffer;
arg2 : System.Address;
arg3 : System.Address;
arg4 : System.Address;
arg5 : System.Address;
arg6 : VkDeviceAddress);
pragma Convention (C, PFN_vkCmdTraceRaysIndirectKHR); -- vulkan_core.h:12118
type PFN_vkGetRayTracingShaderGroupStackSizeKHR is access function
(arg1 : VkDevice;
arg2 : VkPipeline;
arg3 : stdint_h.uint32_t;
arg4 : VkShaderGroupShaderKHR) return VkDeviceSize;
pragma Convention (C, PFN_vkGetRayTracingShaderGroupStackSizeKHR); -- vulkan_core.h:12119
type PFN_vkCmdSetRayTracingPipelineStackSizeKHR is access procedure (arg1 : VkCommandBuffer; arg2 : stdint_h.uint32_t);
pragma Convention (C, PFN_vkCmdSetRayTracingPipelineStackSizeKHR); -- vulkan_core.h:12120
procedure vkCmdTraceRaysKHR
(commandBuffer : VkCommandBuffer;
pRaygenShaderBindingTable : System.Address;
pMissShaderBindingTable : System.Address;
pHitShaderBindingTable : System.Address;
pCallableShaderBindingTable : System.Address;
width : stdint_h.uint32_t;
height : stdint_h.uint32_t;
depth : stdint_h.uint32_t); -- vulkan_core.h:12123
pragma Import (C, vkCmdTraceRaysKHR, "vkCmdTraceRaysKHR");
function vkCreateRayTracingPipelinesKHR
(device : VkDevice;
deferredOperation : VkDeferredOperationKHR;
pipelineCache : VkPipelineCache;
createInfoCount : stdint_h.uint32_t;
pCreateInfos : System.Address;
pAllocator : System.Address;
pPipelines : System.Address) return VkResult; -- vulkan_core.h:12133
pragma Import (C, vkCreateRayTracingPipelinesKHR, "vkCreateRayTracingPipelinesKHR");
function vkGetRayTracingCaptureReplayShaderGroupHandlesKHR
(device : VkDevice;
pipeline : VkPipeline;
firstGroup : stdint_h.uint32_t;
groupCount : stdint_h.uint32_t;
dataSize : crtdefs_h.size_t;
pData : System.Address) return VkResult; -- vulkan_core.h:12142
pragma Import (C, vkGetRayTracingCaptureReplayShaderGroupHandlesKHR, "vkGetRayTracingCaptureReplayShaderGroupHandlesKHR");
procedure vkCmdTraceRaysIndirectKHR
(commandBuffer : VkCommandBuffer;
pRaygenShaderBindingTable : System.Address;
pMissShaderBindingTable : System.Address;
pHitShaderBindingTable : System.Address;
pCallableShaderBindingTable : System.Address;
indirectDeviceAddress : VkDeviceAddress); -- vulkan_core.h:12150
pragma Import (C, vkCmdTraceRaysIndirectKHR, "vkCmdTraceRaysIndirectKHR");
function vkGetRayTracingShaderGroupStackSizeKHR
(device : VkDevice;
pipeline : VkPipeline;
group : stdint_h.uint32_t;
groupShader : VkShaderGroupShaderKHR) return VkDeviceSize; -- vulkan_core.h:12158
pragma Import (C, vkGetRayTracingShaderGroupStackSizeKHR, "vkGetRayTracingShaderGroupStackSizeKHR");
procedure vkCmdSetRayTracingPipelineStackSizeKHR (commandBuffer : VkCommandBuffer; pipelineStackSize : stdint_h.uint32_t); -- vulkan_core.h:12164
pragma Import (C, vkCmdSetRayTracingPipelineStackSizeKHR, "vkCmdSetRayTracingPipelineStackSizeKHR");
type VkPhysicalDeviceRayQueryFeaturesKHR is record
sType : aliased VkStructureType; -- vulkan_core.h:12174
pNext : System.Address; -- vulkan_core.h:12175
rayQuery : aliased VkBool32; -- vulkan_core.h:12176
end record;
pragma Convention (C_Pass_By_Copy, VkPhysicalDeviceRayQueryFeaturesKHR); -- vulkan_core.h:12173
end Vulkan.Core.vulkan_core_h;
|
charlie5/cBound | Ada | 1,593 | ads | -- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_glx_gen_lists_request_t is
-- Item
--
type Item is record
major_opcode : aliased Interfaces.Unsigned_8;
minor_opcode : aliased Interfaces.Unsigned_8;
length : aliased Interfaces.Unsigned_16;
context_tag : aliased xcb.xcb_glx_context_tag_t;
the_range : aliased Interfaces.Integer_32;
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_glx_gen_lists_request_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_gen_lists_request_t.Item,
Element_Array => xcb.xcb_glx_gen_lists_request_t.Item_Array,
Default_Terminator => (others => <>));
subtype Pointer is C_Pointers.Pointer;
-- Pointer_Array
--
type Pointer_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_glx_gen_lists_request_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_glx_gen_lists_request_t.Pointer,
Element_Array => xcb.xcb_glx_gen_lists_request_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_glx_gen_lists_request_t;
|
optikos/oasis | Ada | 1,936 | ads | -- Copyright (c) 2019 Maxim Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-- License-Filename: LICENSE
-------------------------------------------------------------
with Program.Elements.Expressions;
with Program.Lexical_Elements;
with Program.Elements.Identifiers;
package Program.Elements.Attribute_References is
pragma Pure (Program.Elements.Attribute_References);
type Attribute_Reference is
limited interface and Program.Elements.Expressions.Expression;
type Attribute_Reference_Access is access all Attribute_Reference'Class
with Storage_Size => 0;
not overriding function Prefix
(Self : Attribute_Reference)
return not null Program.Elements.Expressions.Expression_Access
is abstract;
not overriding function Attribute_Designator
(Self : Attribute_Reference)
return not null Program.Elements.Identifiers.Identifier_Access
is abstract;
not overriding function Expressions
(Self : Attribute_Reference)
return Program.Elements.Expressions.Expression_Access is abstract;
type Attribute_Reference_Text is limited interface;
type Attribute_Reference_Text_Access is
access all Attribute_Reference_Text'Class with Storage_Size => 0;
not overriding function To_Attribute_Reference_Text
(Self : aliased in out Attribute_Reference)
return Attribute_Reference_Text_Access is abstract;
not overriding function Apostrophe_Token
(Self : Attribute_Reference_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Left_Bracket_Token
(Self : Attribute_Reference_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Right_Bracket_Token
(Self : Attribute_Reference_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
end Program.Elements.Attribute_References;
|
AdaCore/gpr | Ada | 6,408 | ads | --
-- Copyright (C) 2019-2023, AdaCore
--
-- SPDX-License-Identifier: Apache-2.0 WITH LLVM-Exception
--
with Ada.Strings.Unbounded;
with GPR2.Containers;
with GPR2.Context;
with GPR2.Log;
with GPR2.Path_Name;
with GPR2.Path_Name.Set;
with GPR2.Project.Import.Set;
with GPR2.Project.Typ.Set;
with GPR2.Project.View;
limited with GPR2.Project.Tree;
with Gpr_Parser.Analysis;
with Gpr_Parser_Support.File_Readers;
package GPR2.Project.Parser is
use Gpr_Parser.Analysis;
type Object is tagged private;
Undefined : constant Object;
-- This constant is equal to any object declared without an explicit
-- initializer.
function Is_Defined (Self : Object) return Boolean;
-- Returns true if Self is defined
function Parse
(Filename : GPR2.Path_Name.Object;
Implicit_With : GPR2.Path_Name.Set.Object;
Messages : in out Log.Object;
File_Reader : Gpr_Parser_Support.File_Readers.File_Reader_Reference :=
Gpr_Parser_Support.File_Readers.
No_File_Reader_Reference)
return Object;
-- Phase-1: syntax parsing of the given project name. If an error occurs
-- during the parsing the return object is Undefined.
-- File_Reader provides an interface to abstract away the action of reading
-- a source file to parse. Depending on use cases, it allows to override
-- bytes-to-text decoding and preprocess sources (before actual
-- lexing/parsing) or reading a source file from memory instead of disk.
function Parse
(Contents : Ada.Strings.Unbounded.Unbounded_String;
Messages : in out Log.Object;
Pseudo_Filename : GPR2.Path_Name.Object := GPR2.Path_Name.Undefined)
return Object;
-- Performs phase-1 on Contents. Project parsed this way is not registered
-- in the Registry. Pseudo_Filename is used for reporting possible errors,
-- when not specified the default /string_input/default.gpr is used.
-- This is mostly intended to load configuration projects created in memory
-- to be used during auto-configuration step.
procedure Clear_Cache;
-- Clears the parsed objects cache
procedure Process
(Self : in out Object;
Tree : in out GPR2.Project.Tree.Object;
Context : GPR2.Context.Object;
View : GPR2.Project.View.Object;
Pre_Conf_Mode : Boolean := False;
Ext_Conf_Mode : Boolean := False)
with Pre => Self.Is_Defined;
-- Phase-2: semantic analysis, parse tree using a specific context. This
-- step is to be done every time a context is changed.
-- Pre_Conf_Mode indicates that processing errors related to missing
-- projects should be treated as warnings.
-- Ext_Conf_Mode indicates that undefined externals should be ignored,
-- this mode should only be used when processing configuration project.
function Qualifier (Self : Object) return Project_Kind
with Pre => Self.Is_Defined;
-- Returns the project qualifier if present when parsing. Returns
-- Q_Standard if no qualifier is present. Note that the actual project
-- kind may be different as computed based on the attributes present on
-- the project.
function Explicit_Qualifier (Self : Object) return Boolean
with Pre => Self.Is_Defined;
-- Returns True if project qualifier defined explicitly
function Has_Extended (Self : Object) return Boolean
with Pre => Self.Is_Defined;
-- Returns True if an extended project is defined
function Is_Extending_All (Self : Object) return Boolean
with Pre => Self.Is_Defined;
-- Returns True if the project is an extends all
function Extended (Self : Object) return GPR2.Project.Import.Object
with Pre => Self.Has_Extended;
-- Returns the extended project
function Name (Self : Object) return Name_Type
with Pre => Self.Is_Defined;
-- The name of the project file
function Path_Name (Self : Object) return Path_Name.Object
with Pre => Self.Is_Defined;
-- The full path name of the project file
function Has_Imports (Self : Object) return Boolean
with Pre => Self.Is_Defined;
-- Returns True if Project has some imported projects
function Imports (Self : Object) return GPR2.Project.Import.Set.Object
with Pre => Self.Is_Defined,
Post => (if Self.Has_Imports
then not Imports'Result.Is_Empty
else Imports'Result.Is_Empty);
-- Returns the list of path name for all imported projects
function Has_Externals (Self : Object) return Boolean
with Pre => Self.Is_Defined;
-- Returns True if the project has some external variable reference
function Externals (Self : Object) return Containers.Name_List
with Pre => Self.Is_Defined,
Post => (if Self.Has_Externals
then not Externals'Result.Is_Empty
else Externals'Result.Is_Empty);
-- Returns the list of all external variables
function Unit (Self : Object) return Analysis_Unit
with Pre => Self.Is_Defined;
-- Returns the Gpr_Parser analysis unit
function Skip_Sources
(Self : Object) return Containers.Filename_Source_Reference;
-- Source filenames to skip due to inactive case items
private
type Object is tagged record
Name : Unbounded_String;
File : GPR2.Path_Name.Object;
Qualifier : Project_Kind := K_Standard;
Expl_Qual : Boolean := False; -- Explicit qualifier
Externals : Containers.Name_List;
Imports : GPR2.Project.Import.Set.Object;
Extended : GPR2.Project.Import.Object;
Is_All : Boolean := False;
Unit : Analysis_Unit := No_Analysis_Unit;
Types : GPR2.Project.Typ.Set.Object;
Context : Analysis_Context := No_Analysis_Context;
Skip_Src : Containers.Filename_Source_Reference;
-- Naming exception source files to be ignored due to inactive case
-- alternatives.
end record;
Undefined : constant Object := (others => <>);
function Is_Defined (Self : Object) return Boolean is
(Self /= Undefined);
function Skip_Sources
(Self : Object) return Containers.Filename_Source_Reference
is
(Self.Skip_Src);
function Explicit_Qualifier (Self : Object) return Boolean is
(Self.Expl_Qual);
end GPR2.Project.Parser;
|
reznikmm/matreshka | Ada | 5,956 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2015, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with System;
with League.Strings;
package Matreshka.Unbounded_Naturals is
pragma Preelaborate;
pragma Remote_Types;
type Double is mod System.Max_Binary_Modulus;
-- This type is twice wider then Digit
type Digit is mod 2 ** (Double'Size / 2);
-- One digit in internal representation of Number
type Number is array (Positive range <>) of Digit;
-- Representation of unbounded natural
procedure Value
(Text : League.Strings.Universal_String;
Result : out Number;
Last : out Natural;
Base : Digit := 10);
-- Convert Text into Result. Accept text as number with given Base.
-- Result should have enough space.
-- Last set to last used index in Result.
procedure Append_Image
(Result : in out League.Strings.Universal_String;
Left : in out Number;
Base : Digit := 10);
-- Convert Left to string using given Base and append to Result
function Less (Left, Right : Number) return Boolean;
-- Compare two numbers
procedure Add
(Left : Number;
Right : Number;
Result : out Number;
Last : out Natural);
-- Result = Left + Right. Result should have enough space.
-- Last set to last used index in Result.
procedure Subtract
(Left : Number;
Right : Number;
Result : out Number;
Last : out Natural);
-- Result = Left - Right. Result should have enough space.
-- Last set to last used index in Result.
procedure Multiply
(Left : Number;
Right : Number;
Result : in out Number;
Last : out Natural);
-- Result = Left * Right. Result should have enough space.
-- Last set to last used index in Result.
procedure Fast_Devide
(Left : Number;
Right : Digit;
Result : out Number;
Last : out Natural;
Rest : out Digit);
-- Result = Left / Right and Rest = Left mod Right.
-- Result should have enough space.
-- Last set to last used index in Result.
procedure Devide
(Left : in out Number;
Right : Number;
Result : out Digit);
-- Result = Left / Right.
-- Left'Length should be Right'Length + 1
procedure Normalize_For_Devide
(Left : in out Number;
Right : in out Number;
Mult : out Digit);
function Fit_Integer
(Left : Number;
Negative : Boolean) return Boolean;
-- Check if Left in Integer'Range
function To_Integer
(Left : Number;
Negative : Boolean) return Integer;
-- Convert Left to integer if Fit_Integer
end Matreshka.Unbounded_Naturals;
|
apple-oss-distributions/old_ncurses | Ada | 5,334 | adb | ------------------------------------------------------------------------------
-- --
-- GNAT ncurses Binding --
-- --
-- Terminal_Interface.Curses.Forms.Field_Types.User.Choice --
-- --
-- B O D Y --
-- --
------------------------------------------------------------------------------
-- Copyright (c) 1998 Free Software Foundation, Inc. --
-- --
-- Permission is hereby granted, free of charge, to any person obtaining a --
-- copy of this software and associated documentation files (the --
-- "Software"), to deal in the Software without restriction, including --
-- without limitation the rights to use, copy, modify, merge, publish, --
-- distribute, distribute with modifications, sublicense, and/or sell --
-- copies of the Software, and to permit persons to whom the Software is --
-- furnished to do so, subject to the following conditions: --
-- --
-- The above copyright notice and this permission notice shall be included --
-- in all copies or substantial portions of the Software. --
-- --
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS --
-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF --
-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. --
-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, --
-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR --
-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR --
-- THE USE OR OTHER DEALINGS IN THE SOFTWARE. --
-- --
-- Except as contained in this notice, the name(s) of the above copyright --
-- holders shall not be used in advertising or otherwise to promote the --
-- sale, use or other dealings in this Software without prior written --
-- authorization. --
------------------------------------------------------------------------------
-- Author: Juergen Pfeifer <[email protected]> 1996
-- Version Control:
-- $Revision: 1.1.1.1 $
-- Binding Version 01.00
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
with Interfaces.C;
with Terminal_Interface.Curses.Aux; use Terminal_Interface.Curses.Aux;
package body Terminal_Interface.Curses.Forms.Field_Types.User.Choice is
use type Interfaces.C.int;
function To_Argument_Access is new Ada.Unchecked_Conversion
(System.Address, Argument_Access);
function Generic_Next (Fld : Field;
Usr : System.Address) return C_Int
is
Result : Boolean;
Udf : User_Defined_Field_Type_With_Choice_Access :=
User_Defined_Field_Type_With_Choice_Access
(To_Argument_Access (Usr).Typ);
begin
Result := Next (Fld, Udf.all);
return C_Int (Boolean'Pos (Result));
end Generic_Next;
function Generic_Prev (Fld : Field;
Usr : System.Address) return C_Int
is
Result : Boolean;
Udf : User_Defined_Field_Type_With_Choice_Access :=
User_Defined_Field_Type_With_Choice_Access
(To_Argument_Access (Usr).Typ);
begin
Result := Previous (Fld, Udf.all);
return C_Int (Boolean'Pos (Result));
end Generic_Prev;
-- -----------------------------------------------------------------------
--
function C_Generic_Choice return C_Field_Type
is
Res : Eti_Error;
T : C_Field_Type;
begin
if M_Generic_Choice = Null_Field_Type then
T := New_Fieldtype (Generic_Field_Check'Access,
Generic_Char_Check'Access);
if T = Null_Field_Type then
raise Form_Exception;
else
Res := Set_Fieldtype_Arg (T,
Make_Arg'Access,
Copy_Arg'Access,
Free_Arg'Access);
if Res /= E_Ok then
Eti_Exception (Res);
end if;
Res := Set_Fieldtype_Choice (T,
Generic_Next'Access,
Generic_Prev'Access);
if Res /= E_Ok then
Eti_Exception (Res);
end if;
end if;
M_Generic_Choice := T;
end if;
pragma Assert (M_Generic_Choice /= Null_Field_Type);
return M_Generic_Choice;
end C_Generic_Choice;
end Terminal_Interface.Curses.Forms.Field_Types.User.Choice;
|
KissmyAsthma99/opp | Ada | 1,112 | ads | generic
N: Integer;
package data is
type Vector is private;
type Matrix is private;
function Func1(A,B,C: in Vector; MA,ME: in Matrix) return Integer;
function Func2(MH,MK,ML: in Matrix) return Integer;
function Func3(P: out Vector; MR,MT: in Matrix) return Vector;
function Matrix_Multiplication(A,B: in Matrix) return Matrix;
function Sum_Vector(A,B: in Vector) return Vector;
function Vector_Matrix_Multiplication(A: in Vector; B: in Matrix) return Vector;
function Max_of_Vector(A: in Vector) return Integer;
function Max_of_Matrix(A: in Matrix) return Integer;
function Matrix_Sub(A,B: in Matrix) return Matrix;
procedure Vector_Sort(A: in out Vector);
procedure Vector_Fill_Ones(A: out Vector);
procedure Matrix_Fill_Ones(A: out Matrix);
procedure Vector_Input (A: out Vector); -- fills values of
procedure Vector_Output (A: in Vector); -- shows values of
procedure Matrix_Input (A: out Matrix);
procedure Matrix_Output (A: in Matrix);
private
type Vector is array(1..N) of Integer;
type Matrix is array(1..N) of Vector;
end data;
|
reznikmm/matreshka | Ada | 4,647 | adb | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.DOM_Documents;
with Matreshka.ODF_String_Constants;
with ODF.DOM.Iterators;
with ODF.DOM.Visitors;
package body Matreshka.ODF_Draw.Mirror_Vertical_Attributes is
------------
-- Create --
------------
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Draw_Mirror_Vertical_Attribute_Node is
begin
return Self : Draw_Mirror_Vertical_Attribute_Node do
Matreshka.ODF_Draw.Constructors.Initialize
(Self'Unchecked_Access,
Parameters.Document,
Matreshka.ODF_String_Constants.Draw_Prefix);
end return;
end Create;
--------------------
-- Get_Local_Name --
--------------------
overriding function Get_Local_Name
(Self : not null access constant Draw_Mirror_Vertical_Attribute_Node)
return League.Strings.Universal_String
is
pragma Unreferenced (Self);
begin
return Matreshka.ODF_String_Constants.Mirror_Vertical_Attribute;
end Get_Local_Name;
begin
Matreshka.DOM_Documents.Register_Attribute
(Matreshka.ODF_String_Constants.Draw_URI,
Matreshka.ODF_String_Constants.Mirror_Vertical_Attribute,
Draw_Mirror_Vertical_Attribute_Node'Tag);
end Matreshka.ODF_Draw.Mirror_Vertical_Attributes;
|
stcarrez/ada-asf | Ada | 2,750 | ads | -----------------------------------------------------------------------
-- asf-views -- Views
-- Copyright (C) 2009, 2010, 2011, 2012, 2013 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
-- The <b>ASF.Views</b> package defines the abstractions to represent
-- an XHTML view that can be instantiated to create the JSF component
-- tree. The <b>ASF.Views</b> are read only once and they are shared
-- by the JSF component trees that are instantiated from it.
--
-- The XHTML view is read using a SAX parser which creates nodes
-- and attributes to represent the view.
--
-- The <b>ASF.Views</b> is composed of nodes represented by <b>Tag_Node</b>
-- and attributes represented by <b>Tag_Attribute</b>. In a sense, this
-- is very close to an XML DOM tree.
package ASF.Views is
pragma Preelaborate;
-- ------------------------------
-- Source line information
-- ------------------------------
type File_Info (<>) is limited private;
type File_Info_Access is access all File_Info;
-- Create a <b>File_Info</b> record to identify the file whose path is <b>Path</b>
-- and whose relative path portion starts at <b>Relative_Position</b>.
function Create_File_Info (Path : in String;
Relative_Position : in Natural) return File_Info_Access;
-- Get the relative path name
function Relative_Path (File : in File_Info) return String;
type Line_Info is private;
-- Get the line number
function Line (Info : in Line_Info) return Natural;
pragma Inline (Line);
-- Get the source file
function File (Info : in Line_Info) return String;
pragma Inline (File);
private
type File_Info (Length : Natural) is limited record
Relative_Pos : Natural;
Path : String (1 .. Length);
end record;
NO_FILE : aliased File_Info := File_Info '(Length => 0, Path => "", Relative_Pos => 0);
type Line_Info is record
Line : Natural := 0;
Column : Natural := 0;
File : File_Info_Access := NO_FILE'Access;
end record;
end ASF.Views;
|
pvrego/adaino | Ada | 4,343 | ads | -- =============================================================================
-- Package AVR.ADC
--
-- Handles the Analog Comparator and the Analog-To-Digital Converter.
-- =============================================================================
package AVR.ADC is
type Analog_Comparator_Control_And_Status_Register_Type is
record
ACIS0 : Boolean; -- Analog Comparator Interrupt Mode Select Bit 0
ACIS1 : Boolean; -- Analog Comparator Interrupt Mode Select Bit 1
ACIC : Boolean; -- Analog Comparator Input Capture Enable
ACIE : Boolean; -- Analog Comparator Interrupt Enable
ACI : Boolean; -- Analog Comparator Interrupt Flag
ACO : Boolean; -- Analog Comparator Output
ACBG : Boolean; -- Analog Comparator Bandgap Select
ACD : Boolean; -- Analog Comparator Disable
end record;
pragma Pack (Analog_Comparator_Control_And_Status_Register_Type);
for Analog_Comparator_Control_And_Status_Register_Type'Size use BYTE_SIZE;
Reg_ACSR : Analog_Comparator_Control_And_Status_Register_Type;
for Reg_ACSR'Address use System'To_Address (16#50#);
type ADC_Multiplexer_Selection_Register_Type is
record
#if MCU="ATMEGA2560" then
MUX : Bit_Array_Type (0 .. 4); -- Analog Channel and Gain Selection Bits
#elsif MCU="ATMEGA328P" then
MUX : Bit_Array_Type (0 .. 3); -- Analog Channel and Gain Selection Bits
Spare : Spare_Type (0 .. 0);
#end if;
ADLAR : Boolean; -- ADC Left Adjust Result
REFS : Bit_Array_Type (0 .. 1); -- Reference Selection Bits
end record;
pragma Pack (ADC_Multiplexer_Selection_Register_Type);
for ADC_Multiplexer_Selection_Register_Type'Size use BYTE_SIZE;
Reg_ADMUX : ADC_Multiplexer_Selection_Register_Type;
for Reg_ADMUX'Address use System'To_Address (16#7C#);
type ADC_Control_And_Status_Register_B_Type is
record
ADTS : Bit_Array_Type (0 .. 2); -- ADC Auto Trigger Source
#if MCU="ATMEGA2560" then
MUX5 : Boolean; -- Analog Channel and Gain Selection Bit
Spare_45 : Spare_Type (0 .. 1);
#elsif MCU="ATMEGA328P" then
Spare_345 : Spare_Type (0 .. 2);
#end if;
ACME : Boolean; -- Analog Comparator Multiplexer Enable
Spare_7 : Spare_Type (0 .. 0);
end record;
pragma Pack (ADC_Control_And_Status_Register_B_Type);
for ADC_Control_And_Status_Register_B_Type'Size use BYTE_SIZE;
Reg_ADCSRB : ADC_Control_And_Status_Register_B_Type;
for Reg_ADCSRB'Address use System'To_Address (16#7B#);
type ADC_Control_And_Status_Register_A_Type is
record
ADPS : Bit_Array_Type (0 .. 2); -- ADC Prescaler Select Bits
ADIE : Boolean; -- ADC Interrupt Enable
ADIF : Boolean; -- ADC Interrupt Flag
ADATE : Boolean; -- ADC Auto Trigger Enable
ADSC : Boolean; -- ADC Start Conversion
ADEN : Boolean; -- ADC Enable
end record;
pragma Pack (ADC_Control_And_Status_Register_A_Type);
for ADC_Control_And_Status_Register_A_Type'Size use BYTE_SIZE;
Reg_ADCSRA : ADC_Control_And_Status_Register_A_Type;
for Reg_ADCSRA'Address use System'To_Address (16#7A#);
type ADC_Data_Type is new Byte_Array_Type (0 .. 1);
Reg_ADC_Data : ADC_Data_Type;
for Reg_ADC_Data'Address use System'To_Address (16#78#);
type ADC_Digital_Input_Disable_Register_0_7_Type is new
Bit_Array_Type (0 .. 7);
for ADC_Digital_Input_Disable_Register_0_7_Type'Size use BYTE_SIZE;
Reg_DIDR0 : ADC_Digital_Input_Disable_Register_0_7_Type;
for Reg_DIDR0'Address use System'To_Address (16#7E#);
#if MCU="ATMEGA2560" then
type ADC_Digital_Input_Disable_Register_8_15_Type is new
Bit_Array_Type (8 .. 15);
for ADC_Digital_Input_Disable_Register_8_15_Type'Size use BYTE_SIZE;
#end if;
Reg_DIDR2 : ADC_Digital_Input_Disable_Register_8_15_Type;
for Reg_DIDR2'Address use System'To_Address (16#7D#);
type AIN_Digital_Input_Disable_Type is
record
AIND : Bit_Array_Type (0 .. 1);
Spare : Spare_Type (0 .. 5);
end record;
pragma Pack (AIN_Digital_Input_Disable_Type);
for AIN_Digital_Input_Disable_Type'Size use BYTE_SIZE;
Reg_DIDR1 : AIN_Digital_Input_Disable_Type;
for Reg_DIDR1'Address use System'To_Address (16#7F#);
end AVR.ADC;
|
ohenley/ada-util | Ada | 10,315 | adb | -----------------------------------------------------------------------
-- util-xunit - Unit tests on top of AHven
-- Copyright (C) 2011, 2016, 2017 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Directories;
with Ada.IO_Exceptions;
with Ada.Text_IO;
with Ada.Calendar;
with Ahven.Listeners.Basic;
with Ahven.XML_Runner;
with Ahven.Text_Runner;
with Ahven.AStrings;
with Util.Tests;
with Util.Strings;
package body Util.XUnit is
function Image (Time : in Duration) return String;
procedure Report_XML_Summary (Path : in String;
Result : in Ahven.Results.Result_Collection;
Time : in Duration);
-- ------------------------------
-- Build a message from a string (Adaptation for AUnit API).
-- ------------------------------
function Format (S : in String) return Message_String is
begin
return S;
end Format;
-- ------------------------------
-- Build a message with the source and line number.
-- ------------------------------
function Build_Message (Message : in String;
Source : in String;
Line : in Natural) return String is
L : constant String := Natural'Image (Line);
begin
return Source & ":" & L (2 .. L'Last) & ": " & Message;
end Build_Message;
procedure Run_Test_Case (T : in out Ahven.Framework.Test_Case'Class);
procedure Run_Test_Case (T : in out Ahven.Framework.Test_Case'Class) is
begin
Test_Case'Class (T).Run_Test;
end Run_Test_Case;
overriding
procedure Initialize (T : in out Test_Case) is
begin
Ahven.Framework.Add_Test_Routine (T, Run_Test_Case'Access, "Test case");
end Initialize;
-- ------------------------------
-- Return the name of the test case.
-- ------------------------------
overriding
function Get_Name (T : Test_Case) return String is
begin
return Test_Case'Class (T).Name;
end Get_Name;
-- maybe_overriding
procedure Assert (T : in Test_Case;
Condition : in Boolean;
Message : in String := "Test failed";
Source : in String := GNAT.Source_Info.File;
Line : in Natural := GNAT.Source_Info.Line) is
pragma Unreferenced (T);
begin
Ahven.Assert (Condition => Condition,
Message => Build_Message (Message => Message,
Source => Source,
Line => Line));
end Assert;
-- ------------------------------
-- Check that the value matches what we expect.
-- ------------------------------
procedure Assert (T : in Test;
Condition : in Boolean;
Message : in String := "Test failed";
Source : String := GNAT.Source_Info.File;
Line : Natural := GNAT.Source_Info.Line) is
pragma Unreferenced (T);
begin
Ahven.Assert (Condition => Condition,
Message => Build_Message (Message => Message,
Source => Source,
Line => Line));
end Assert;
First_Test : Test_Object_Access := null;
-- ------------------------------
-- Register a test object in the test suite.
-- ------------------------------
procedure Register (T : in Test_Object_Access) is
begin
T.Next := First_Test;
First_Test := T;
end Register;
-- ------------------------------
-- Report passes, skips, failures, and errors from the result collection.
-- ------------------------------
procedure Report_Results (Result : in Ahven.Results.Result_Collection;
Time : in Duration) is
T_Count : constant Integer := Ahven.Results.Test_Count (Result);
F_Count : constant Integer := Ahven.Results.Failure_Count (Result);
S_Count : constant Integer := Ahven.Results.Skipped_Count (Result);
E_Count : constant Integer := Ahven.Results.Error_Count (Result);
begin
if F_Count > 0 then
Ahven.Text_Runner.Print_Failures (Result, 0);
end if;
if E_Count > 0 then
Ahven.Text_Runner.Print_Errors (Result, 0);
end if;
Ada.Text_IO.Put_Line ("Tests run:" & Integer'Image (T_Count - S_Count)
& ", Failures:" & Integer'Image (F_Count)
& ", Errors:" & Integer'Image (E_Count)
& ", Skipped:" & Integer'Image (S_Count)
& ", Time elapsed:" & Duration'Image (Time));
end Report_Results;
function Image (Time : in Duration) return String is
Result : constant String := Duration'Image (Time);
begin
if Result (Result'First) = ' ' then
return Result (Result'First + 1 .. Result'Last);
else
return Result;
end if;
end Image;
-- ------------------------------
-- Write a XML summary report in the JUnit format so that the result file
-- can be used by Jenkins performance plugin.
-- ------------------------------
procedure Report_XML_Summary (Path : in String;
Result : in Ahven.Results.Result_Collection;
Time : in Duration) is
use Ahven.Results;
File : Ada.Text_IO.File_Type;
Group : Result_Collection_Cursor;
Iter : Result_Collection_Cursor;
Test : Result_Collection_Access;
begin
Ada.Text_IO.Create (File => File,
Mode => Ada.Text_IO.Out_File,
Name => Path);
Ada.Text_IO.Put_Line (File, "<?xml version='1.0'?>");
Ada.Text_IO.Put (File, "<testsuite ");
Ada.Text_IO.Put (File, "errors='"
& Util.Strings.Image (Error_Count (Result)) & "' ");
Ada.Text_IO.Put (File, "failures='"
& Util.Strings.Image (Failure_Count (Result)) & "' ");
Ada.Text_IO.Put (File, "tests='"
& Util.Strings.Image (Test_Count (Result)) & "' ");
Ada.Text_IO.Put (File, "time='" & Image (Time) & "' ");
Ada.Text_IO.Put (File, "name='");
Ada.Text_IO.Put (File, Ahven.AStrings.To_String (Get_Test_Name (Result)));
Ada.Text_IO.Put_Line (File, "'>");
Group := First_Child (Result);
while Is_Valid (Group) loop
Iter := First_Child (Data (Group).all);
while Is_Valid (Iter) loop
Test := Data (Iter);
Ada.Text_IO.Put (File, "<testcase name='");
Ada.Text_IO.Put (File, Ahven.AStrings.To_String (Get_Test_Name (Test.all)));
Ada.Text_IO.Put (File, "' errors='");
Ada.Text_IO.Put (File, Util.Strings.Image (Error_Count (Test.all)));
Ada.Text_IO.Put (File, "' failures='");
Ada.Text_IO.Put (File, Util.Strings.Image (Failure_Count (Test.all)));
Ada.Text_IO.Put (File, "' tests='");
Ada.Text_IO.Put (File, Util.Strings.Image (Test_Count (Test.all)));
Ada.Text_IO.Put (File, "' time='");
Ada.Text_IO.Put (File, Image (Get_Execution_Time (Test.all)));
Ada.Text_IO.Put_Line (File, "'/>");
Iter := Next (Iter);
end loop;
Group := Next (Group);
end loop;
Ada.Text_IO.Put_Line (File, "</testsuite>");
Ada.Text_IO.Close (File);
end Report_XML_Summary;
-- ------------------------------
-- The main testsuite program. This launches the tests, collects the
-- results, create performance logs and set the program exit status
-- according to the testsuite execution status.
-- ------------------------------
procedure Harness (Output : in Ada.Strings.Unbounded.Unbounded_String;
XML : in Boolean;
Result : out Status) is
use Ahven.Listeners.Basic;
use Ahven.Framework;
use Ahven.Results;
use type Ada.Calendar.Time;
Tests : constant Access_Test_Suite := Suite;
T : Test_Object_Access := First_Test;
Listener : Ahven.Listeners.Basic.Basic_Listener;
Timeout : constant Test_Duration := Test_Duration (Util.Tests.Get_Test_Timeout ("all"));
Out_Dir : constant String := Util.Tests.Get_Test_Path ("regtests/result");
Start : Ada.Calendar.Time;
Dt : Duration;
begin
while T /= null loop
Ahven.Framework.Add_Static_Test (Tests.all, T.Test.all);
T := T.Next;
end loop;
Set_Output_Capture (Listener, True);
if not Ada.Directories.Exists (Out_Dir) then
Ada.Directories.Create_Path (Out_Dir);
end if;
Start := Ada.Calendar.Clock;
Ahven.Framework.Execute (Tests.all, Listener, Timeout);
Dt := Ada.Calendar.Clock - Start;
Report_Results (Listener.Main_Result, Dt);
Ahven.XML_Runner.Report_Results (Listener.Main_Result, Out_Dir);
if (Error_Count (Listener.Main_Result) > 0) or
(Failure_Count (Listener.Main_Result) > 0)
then
Result := Failure;
else
Result := Success;
end if;
if XML then
Report_XML_Summary (Ada.Strings.Unbounded.To_String (Output),
Listener.Main_Result, Dt);
end if;
exception
when Ada.IO_Exceptions.Name_Error =>
Ada.Text_IO.Put_Line ("Cannot create file");
Result := Failure;
end Harness;
end Util.XUnit;
|
reznikmm/matreshka | Ada | 3,779 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with XML.DOM.Attributes;
package ODF.DOM.Draw_Frame_Margin_Horizontal_Attributes is
pragma Preelaborate;
type ODF_Draw_Frame_Margin_Horizontal_Attribute is limited interface
and XML.DOM.Attributes.DOM_Attribute;
type ODF_Draw_Frame_Margin_Horizontal_Attribute_Access is
access all ODF_Draw_Frame_Margin_Horizontal_Attribute'Class
with Storage_Size => 0;
end ODF.DOM.Draw_Frame_Margin_Horizontal_Attributes;
|
LiberatorUSA/GUCEF | Ada | 4,772 | ads | with agar.core.slist;
with agar.core.types;
with agar.gui.text;
package agar.gui.widget.label is
use type c.unsigned;
type flag_t is limited private;
type flag_access_t is access all flag_t;
pragma convention (c, flag_access_t);
type label_t is limited private;
type label_access_t is access all label_t;
pragma convention (c, label_access_t);
type format_spec_t is limited private;
type format_spec_access_t is access all format_spec_t;
pragma convention (c, format_spec_access_t);
package flag_slist is new agar.core.slist
(entry_type => flag_access_t);
subtype mask_t is c.unsigned;
type type_t is (
LABEL_STATIC,
LABEL_POLLED,
LABEL_POLLED_MT
);
for type_t use (
LABEL_STATIC => 0,
LABEL_POLLED => 1,
LABEL_POLLED_MT => 2
);
for type_t'size use c.unsigned'size;
pragma convention (c, type_t);
type format_func_t is access procedure
(label : label_access_t;
str : cs.chars_ptr;
size : c.size_t;
num : c.int);
pragma convention (c, format_func_t);
type flags_t is new c.unsigned;
LABEL_HFILL : constant flags_t := 16#01#;
LABEL_VFILL : constant flags_t := 16#02#;
LABEL_NOMINSIZE : constant flags_t := 16#04#;
LABEL_PARTIAL : constant flags_t := 16#10#;
LABEL_REGEN : constant flags_t := 16#20#;
LABEL_FRAME : constant flags_t := 16#80#;
LABEL_EXPAND : constant flags_t := LABEL_HFILL or LABEL_VFILL;
max : constant := 1024;
max_pollptrs : constant := 32;
-- API
function allocate
(parent : widget_access_t;
flags : flags_t;
text : string) return label_access_t;
pragma import (c, allocate, "AG_LabelNewS");
function allocate_polled
(parent : widget_access_t;
flags : flags_t;
text : string) return label_access_t;
pragma inline (allocate_polled);
function allocate_polled_mutex
(parent : widget_access_t;
flags : flags_t;
mutex : agar.core.threads.mutex_t;
text : string) return label_access_t;
pragma inline (allocate_polled_mutex);
procedure set_padding
(label : label_access_t;
left : natural;
right : natural;
top : natural;
bottom : natural);
pragma inline (set_padding);
procedure justify
(label : label_access_t;
justify : agar.gui.text.justify_t);
pragma import (c, justify, "AG_LabelJustify");
procedure size_hint
(label : label_access_t;
num_lines : natural;
text : string);
pragma inline (size_hint);
-- static labels
procedure text
(label : label_access_t;
text : string);
pragma inline (text);
-- flag descriptions
procedure flag
(label : label_access_t;
index : natural;
desc : string;
mask : mask_t);
pragma inline (flag);
procedure flag8
(label : label_access_t;
index : natural;
desc : string;
mask : agar.core.types.uint8_t);
pragma inline (flag8);
procedure flag16
(label : label_access_t;
index : natural;
desc : string;
mask : agar.core.types.uint16_t);
pragma inline (flag16);
procedure flag32
(label : label_access_t;
index : natural;
desc : string;
mask : agar.core.types.uint32_t);
pragma inline (flag32);
function widget (label : label_access_t) return widget_access_t;
pragma inline (widget);
private
type flag_t is record
index : c.unsigned;
text : cs.chars_ptr;
v : agar.core.types.uint32_t;
bind_type : binding_type_t;
lflags : flag_slist.entry_t;
end record;
pragma convention (c, flag_t);
type format_spec_t is record
fmt : cs.chars_ptr;
fmt_length : c.size_t;
func : format_func_t;
end record;
pragma convention (c, format_spec_t);
type poll_ptrs_t is array (1 .. max_pollptrs) of aliased agar.core.types.void_ptr_t;
pragma convention (c, poll_ptrs_t);
type poll_t is record
lock : agar.core.threads.mutex_t;
ptrs : poll_ptrs_t;
nptrs : c.int;
end record;
pragma convention (c, poll_t);
type label_t is record
widget : aliased widget_t;
label_type : type_t;
flags : flags_t;
text : cs.chars_ptr;
surface : c.int;
surface_cont : c.int;
width_pre : c.int;
height_pre : c.int;
pad_left : c.int;
pad_right : c.int;
pad_top : c.int;
pad_bottom : c.int;
justify : agar.gui.text.justify_t;
valign : agar.gui.text.valign_t;
poll : poll_t;
lflags : flag_slist.head_t;
cache : agar.core.types.void_ptr_t; -- XXX: ag_text_cache *
r_clip : agar.gui.rect.rect_t;
end record;
pragma convention (c, label_t);
end agar.gui.widget.label;
|
io7m/coreland-sqlite3-ada | Ada | 97 | ads | package SQLite3.Utils is
function Escape (Source : String) return String;
end SQLite3.Utils;
|
gusthoff/fixed_types | Ada | 29,884 | adb | -------------------------------------------------------------------------------
--
-- FIXED TYPES
--
-- Test application
--
-- The MIT License (MIT)
--
-- Copyright (c) 2015 Gustavo A. Hoffmann
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to
-- deal in the Software without restriction, including without limitation the
-- rights to use, copy, modify, merge, publish, distribute, sublicense, and /
-- or sell copies of the Software, and to permit persons to whom the Software
-- is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-- IN THE SOFTWARE.
-------------------------------------------------------------------------------
with Ada.Text_IO; use Ada.Text_IO;
with Fixed_Types.Long; use Fixed_Types.Long;
with Fixed_Types.Short; use Fixed_Types.Short;
with Ada.Exceptions;
procedure Fixed_Types_Test is
procedure Fixed_Test_Long;
procedure Fixed_Test_Sat_Long;
procedure Fixed_Test_Short;
procedure Fixed_Test_Sat_Short;
procedure Fixed_Test_Long is
package MIO is new Ada.Text_IO.Modular_IO (Modular_Long);
package FIO is new Ada.Text_IO.Fixed_IO (Fixed_Long);
package IIO is new Ada.Text_IO.Integer_IO (Integer);
FL1 : Fixed_Long;
FL2 : Fixed_Long;
Res : Fixed_Long;
procedure Print_Operation (A, B, Res : Fixed_Long;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A : Fixed_Long;
B : Integer;
Res : Fixed_Long;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A, B, Res : Fixed_Long;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
FIO.Put (Item => B, Fore => 3, Aft => 3, Exp => 0);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Long_To_Mod_Long (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
MIO.Put (Item => Fixed_Long_To_Mod_Long (B),
Width => 12, Base => 16);
Put (" = ");
MIO.Put (Item => Fixed_Long_To_Mod_Long (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
procedure Print_Operation (A : Fixed_Long;
B : Integer;
Res : Fixed_Long;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 7);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Long_To_Mod_Long (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 12);
Put (" = ");
MIO.Put (Item => Fixed_Long_To_Mod_Long (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
begin
Put_Line ("TEST: Fixed_Test_Long");
FL1 := 0.5 / 2**3;
FL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FL1 + FL2;
Print_Operation (FL1, FL2, Res, False, " + ");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := 0.25 / 2**3;
FL2 := 0.5 / 2**3;
for I in 0 .. 4 loop
begin
Res := FL1 - FL2;
Print_Operation (FL1, FL2, Res, False, " - ");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := -0.5 / 2**3;
FL2 := 0.25 / 2**3;
for I in 0 .. 4 loop
begin
Res := FL1 - FL2;
Print_Operation (FL1, FL2, Res, False, " - ");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := 0.0;
FL2 := 0.25 / 2**3;
for I in 0 .. 4 loop
begin
Res := -FL2;
Print_Operation (FL1, FL2, Res, True, " - ");
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := 0.0;
FL2 := -0.25 / 2**3;
for I in 0 .. 4 loop
begin
Res := abs FL2;
Print_Operation (FL1, FL2, Res, True, "abs");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := -0.5 / 2**3;
FL2 := -0.5 / 2**3;
for I in 0 .. 4 loop
begin
Res := FL1 * FL2;
Print_Operation (FL1, FL2, Res, False, " * ");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := 0.5 / 2**3;
FL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FL1 * FL2;
Print_Operation (FL1, FL2, Res, False, " * ");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := Fixed_Long'Last;
FL2 := Fixed_Long'Last;
Res := FL1 * FL2;
Print_Operation (FL1, FL2, Res, False, " * ");
declare
I1 : Integer := 1;
begin
FL1 := 0.25;
for I in 1 .. 5 loop
begin
Res := FL1 * I1;
Print_Operation (FL1, I1, Res, False, " * ");
I1 := I1 + 1;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
end;
declare
I1 : Integer := -1;
begin
FL1 := 0.25;
for I in 1 .. 5 loop
begin
Res := FL1 * I1;
Print_Operation (FL1, I1, Res, False, " * ");
I1 := I1 - 1;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
end;
FL1 := 0.25 / 2**3;
FL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FL1 / FL2;
Print_Operation (FL1, FL2, Res, False, " / ");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FL1 := -0.25 / 2**3;
FL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FL1 / FL2;
Print_Operation (FL1, FL2, Res, False, " / ");
FL1 := FL1 * 2;
FL2 := FL2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
Put_Line ("--------------------------------------------------------");
end Fixed_Test_Long;
procedure Fixed_Test_Sat_Long is
package MIO is new Ada.Text_IO.Modular_IO (Modular_Long);
package FIO is new Ada.Text_IO.Fixed_IO (Fixed_Sat_Long);
package IIO is new Ada.Text_IO.Integer_IO (Integer);
SFL1 : Fixed_Sat_Long;
SFL2 : Fixed_Sat_Long;
SRes : Fixed_Sat_Long;
procedure Print_Operation (A, B, Res : Fixed_Sat_Long;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A : Fixed_Sat_Long;
B : Integer;
Res : Fixed_Sat_Long;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A, B, Res : Fixed_Sat_Long;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
FIO.Put (Item => B, Fore => 3, Aft => 3, Exp => 0);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Sat_Long_To_Mod_Long (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
MIO.Put (Item => Fixed_Sat_Long_To_Mod_Long (B),
Width => 12, Base => 16);
Put (" = ");
MIO.Put (Item => Fixed_Sat_Long_To_Mod_Long (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
procedure Print_Operation (A : Fixed_Sat_Long;
B : Integer;
Res : Fixed_Sat_Long;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 7);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Sat_Long_To_Mod_Long (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 12);
Put (" = ");
MIO.Put (Item => Fixed_Sat_Long_To_Mod_Long (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
begin
Put_Line ("TEST: Fixed_Test_Sat_Long");
SFL1 := 0.5 / 2**3;
SFL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFL1 + SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " + ");
SFL1 := SFL1 * 2;
SFL2 := SFL2 * 2;
end loop;
SFL1 := 0.25 / 2**3;
SFL2 := 0.5 / 2**3;
for I in 0 .. 4 loop
SRes := SFL1 - SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " - ");
SFL1 := SFL1 * 2;
SFL2 := SFL2 * 2;
end loop;
SFL1 := -0.5 / 2**3;
SFL2 := 0.25 / 2**3;
for I in 0 .. 4 loop
SRes := SFL1 - SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " - ");
SFL1 := SFL1 * 2;
SFL2 := SFL2 * 2;
end loop;
SFL1 := 0.0;
SFL2 := 0.25 / 2**3;
for I in 0 .. 4 loop
SRes := -SFL2;
Print_Operation (SFL1, SFL2, SRes, True, " - ");
SFL2 := SFL2 * 2;
end loop;
SFL1 := 0.0;
SFL2 := -0.25 / 2**3;
for I in 0 .. 4 loop
SRes := abs SFL2;
Print_Operation (SFL1, SFL2, SRes, True, "abs");
SFL2 := SFL2 * 2;
end loop;
SFL1 := -0.5 / 2**3;
SFL2 := -0.5 / 2**3;
for I in 0 .. 4 loop
SRes := SFL1 * SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " * ");
SFL1 := SFL1 * 2;
SFL2 := SFL2 * 2;
end loop;
SFL1 := 0.5 / 2**3;
SFL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFL1 * SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " * ");
SFL1 := SFL1 * 2;
SFL2 := SFL2 * 2;
end loop;
SFL1 := Fixed_Sat_Long'Last;
SFL2 := Fixed_Sat_Long'Last;
SRes := SFL1 * SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " * ");
declare
I1 : Integer := 1;
begin
SFL1 := 0.25;
for I in 1 .. 5 loop
SRes := SFL1 * I1;
Print_Operation (SFL1, I1, SRes, False, " * ");
I1 := I1 + 1;
end loop;
end;
declare
I1 : Integer := -1;
begin
SFL1 := 0.25;
for I in 1 .. 5 loop
SRes := SFL1 * I1;
Print_Operation (SFL1, I1, SRes, False, " * ");
I1 := I1 - 1;
end loop;
end;
SFL1 := 0.25 / 2**3;
SFL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFL1 / SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " / ");
SFL1 := SFL1 * 2;
SFL2 := SFL2 * 2;
end loop;
SFL1 := -0.25 / 2**3;
SFL2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFL1 / SFL2;
Print_Operation (SFL1, SFL2, SRes, False, " / ");
SFL1 := SFL1 * 2;
SFL2 := SFL2 * 2;
end loop;
Put_Line ("--------------------------------------------------------");
end Fixed_Test_Sat_Long;
procedure Fixed_Test_Short is
package MIO is new Ada.Text_IO.Modular_IO (Modular_Short);
package FIO is new Ada.Text_IO.Fixed_IO (Fixed_Short);
package IIO is new Ada.Text_IO.Integer_IO (Integer);
FS1 : Fixed_Short;
FS2 : Fixed_Short;
Res : Fixed_Short;
procedure Print_Operation (A, B, Res : Fixed_Short;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A : Fixed_Short;
B : Integer;
Res : Fixed_Short;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A, B, Res : Fixed_Short;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
FIO.Put (Item => B, Fore => 3, Aft => 3, Exp => 0);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Short_To_Mod_Short (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
MIO.Put (Item => Fixed_Short_To_Mod_Short (B),
Width => 12, Base => 16);
Put (" = ");
MIO.Put (Item => Fixed_Short_To_Mod_Short (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
procedure Print_Operation (A : Fixed_Short;
B : Integer;
Res : Fixed_Short;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 7);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Short_To_Mod_Short (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 12);
Put (" = ");
MIO.Put (Item => Fixed_Short_To_Mod_Short (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
begin
Put_Line ("TEST: Fixed_Test_Short");
FS1 := 0.5 / 2**3;
FS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FS1 + FS2;
Print_Operation (FS1, FS2, Res, False, " + ");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := 0.25 / 2**3;
FS2 := 0.5 / 2**3;
for I in 0 .. 4 loop
begin
Res := FS1 - FS2;
Print_Operation (FS1, FS2, Res, False, " - ");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := -0.5 / 2**3;
FS2 := 0.25 / 2**3;
for I in 0 .. 4 loop
begin
Res := FS1 - FS2;
Print_Operation (FS1, FS2, Res, False, " - ");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := 0.0;
FS2 := 0.25 / 2**3;
for I in 0 .. 4 loop
begin
Res := -FS2;
Print_Operation (FS1, FS2, Res, True, " - ");
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := 0.0;
FS2 := -0.25 / 2**3;
for I in 0 .. 4 loop
begin
Res := abs FS2;
Print_Operation (FS1, FS2, Res, True, "abs");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := -0.5 / 2**3;
FS2 := -0.5 / 2**3;
for I in 0 .. 4 loop
begin
Res := FS1 * FS2;
Print_Operation (FS1, FS2, Res, False, " * ");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := 0.5 / 2**3;
FS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FS1 * FS2;
Print_Operation (FS1, FS2, Res, False, " * ");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := Fixed_Short'Last;
FS2 := Fixed_Short'Last;
Res := FS1 * FS2;
Print_Operation (FS1, FS2, Res, False, " * ");
declare
I1 : Integer := 1;
begin
FS1 := 0.25;
for I in 1 .. 5 loop
begin
Res := FS1 * I1;
Print_Operation (FS1, I1, Res, False, " * ");
I1 := I1 + 1;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
end;
declare
I1 : Integer := -1;
begin
FS1 := 0.25;
for I in 1 .. 5 loop
begin
Res := FS1 * I1;
Print_Operation (FS1, I1, Res, False, " * ");
I1 := I1 - 1;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
end;
FS1 := 0.25 / 2**3;
FS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FS1 / FS2;
Print_Operation (FS1, FS2, Res, False, " / ");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
FS1 := -0.25 / 2**3;
FS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
begin
Res := FS1 / FS2;
Print_Operation (FS1, FS2, Res, False, " / ");
FS1 := FS1 * 2;
FS2 := FS2 * 2;
exception
when E : others =>
Put_Line ("-- Exception triggered --");
Put (Ada.Exceptions.Exception_Information (E));
end;
end loop;
Put_Line ("--------------------------------------------------------");
end Fixed_Test_Short;
procedure Fixed_Test_Sat_Short is
package MIO is new Ada.Text_IO.Modular_IO (Modular_Short);
package FIO is new Ada.Text_IO.Fixed_IO (Fixed_Sat_Short);
package IIO is new Ada.Text_IO.Integer_IO (Integer);
SFS1 : Fixed_Sat_Short;
SFS2 : Fixed_Sat_Short;
SRes : Fixed_Sat_Short;
procedure Print_Operation (A, B, Res : Fixed_Sat_Short;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A : Fixed_Sat_Short;
B : Integer;
Res : Fixed_Sat_Short;
Unary_Op : Boolean;
Op : String);
procedure Print_Operation (A, B, Res : Fixed_Sat_Short;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
FIO.Put (Item => B, Fore => 3, Aft => 3, Exp => 0);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Sat_Short_To_Mod_Short (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
MIO.Put (Item => Fixed_Sat_Short_To_Mod_Short (B),
Width => 12, Base => 16);
Put (" = ");
MIO.Put (Item => Fixed_Sat_Short_To_Mod_Short (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
procedure Print_Operation (A : Fixed_Sat_Short;
B : Integer;
Res : Fixed_Sat_Short;
Unary_Op : Boolean;
Op : String) is
begin
if Unary_Op then
Put (" ");
else
FIO.Put (Item => A, Fore => 3, Aft => 3, Exp => 0);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 7);
Put (" = ");
FIO.Put (Item => Res, Fore => 3, Aft => 3, Exp => 0);
Put (" (");
if Unary_Op then
Put (" ");
else
MIO.Put (Item => Fixed_Sat_Short_To_Mod_Short (A),
Width => 12, Base => 16);
end if;
Put (" " & Op & " ");
IIO.Put (Item => B, Width => 12);
Put (" = ");
MIO.Put (Item => Fixed_Sat_Short_To_Mod_Short (Res),
Width => 12, Base => 16);
Put (")");
New_Line;
end Print_Operation;
begin
Put_Line ("TEST: Fixed_Test_Sat_Short");
SFS1 := 0.5 / 2**3;
SFS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFS1 + SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " + ");
SFS1 := SFS1 * 2;
SFS2 := SFS2 * 2;
end loop;
SFS1 := 0.25 / 2**3;
SFS2 := 0.5 / 2**3;
for I in 0 .. 4 loop
SRes := SFS1 - SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " - ");
SFS1 := SFS1 * 2;
SFS2 := SFS2 * 2;
end loop;
SFS1 := -0.5 / 2**3;
SFS2 := 0.25 / 2**3;
for I in 0 .. 4 loop
SRes := SFS1 - SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " - ");
SFS1 := SFS1 * 2;
SFS2 := SFS2 * 2;
end loop;
SFS1 := 0.0;
SFS2 := 0.25 / 2**3;
for I in 0 .. 4 loop
SRes := -SFS2;
Print_Operation (SFS1, SFS2, SRes, True, " - ");
SFS2 := SFS2 * 2;
end loop;
SFS1 := 0.0;
SFS2 := -0.25 / 2**3;
for I in 0 .. 4 loop
SRes := abs SFS2;
Print_Operation (SFS1, SFS2, SRes, True, "abs");
SFS2 := SFS2 * 2;
end loop;
SFS1 := -0.5 / 2**3;
SFS2 := -0.5 / 2**3;
for I in 0 .. 4 loop
SRes := SFS1 * SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " * ");
SFS1 := SFS1 * 2;
SFS2 := SFS2 * 2;
end loop;
SFS1 := 0.5 / 2**3;
SFS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFS1 * SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " * ");
SFS1 := SFS1 * 2;
SFS2 := SFS2 * 2;
end loop;
SFS1 := Fixed_Sat_Short'Last;
SFS2 := Fixed_Sat_Short'Last;
SRes := SFS1 * SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " * ");
declare
I1 : Integer := 1;
begin
SFS1 := 0.25;
for I in 1 .. 5 loop
SRes := SFS1 * I1;
Print_Operation (SFS1, I1, SRes, False, " * ");
I1 := I1 + 1;
end loop;
end;
declare
I1 : Integer := -1;
begin
SFS1 := 0.25;
for I in 1 .. 5 loop
SRes := SFS1 * I1;
Print_Operation (SFS1, I1, SRes, False, " * ");
I1 := I1 - 1;
end loop;
end;
SFS1 := 0.25 / 2**3;
SFS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFS1 / SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " / ");
SFS1 := SFS1 * 2;
SFS2 := SFS2 * 2;
end loop;
SFS1 := -0.25 / 2**3;
SFS2 := 0.5 / 2**3;
for I in 0 .. 3 loop
SRes := SFS1 / SFS2;
Print_Operation (SFS1, SFS2, SRes, False, " / ");
SFS1 := SFS1 * 2;
SFS2 := SFS2 * 2;
end loop;
Put_Line ("--------------------------------------------------------");
end Fixed_Test_Sat_Short;
begin
Fixed_Test_Sat_Long;
Fixed_Test_Long;
Fixed_Test_Sat_Short;
Fixed_Test_Short;
end Fixed_Types_Test;
|
NCommander/dnscatcher | Ada | 4,267 | ads | -- Copyright 2019 Michael Casadevall <[email protected]>
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to
-- deal in the Software without restriction, including without limitation the
-- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
-- sell copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-- THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded;
with Interfaces.C.Extensions; use Interfaces.C.Extensions;
limited with DNSCatcher.DNS.Processor.Packet;
with DNSCatcher.DNS; use DNSCatcher.DNS;
with DNSCatcher.Types; use DNSCatcher.Types;
-- @summary
-- The RData Processor abstract class, used to implement all RData processors.
-- This package is used to convert rdata to/from wire form.
--
-- @description
-- DNS RRtypes have differing binary encoding depending on the resource record
-- type so this package acts as an abstraction layer for varying RData types
-- which are implemented as subclasses of this. In certain cases however, it
-- is necessary to get the derieved class and cast back to that. For example,
-- retrieving the OPT record like that is essentially required.
--
package DNSCatcher.DNS.Processor.RData is
-- Abstract Parsed_Data object
--
-- These values are part of the common header of all RRtypes
--
-- @value RName
-- Resource recode name
--
-- @value RType
-- Resource record type
--
-- @value TTL
-- Time to Live of a given record
type Parsed_RData is abstract tagged record
RName : Unbounded_String;
RType : RR_Types;
TTL : Unsigned_32;
end record;
type Parsed_RData_Access is access all Parsed_RData'Class;
-- Constructor for RData subclasses
--
-- To_Parsed_RData creates a Parsed_RData object from the correct derieved
-- class and returns the common Parsed_RData class in response.
--
-- @value DNS_Header
-- DNS Packet Header used for some RType information
--
-- @value Parsed_RR
-- The initial logicial representation created by Packet Parser
--
function To_Parsed_RData
(DNS_Header : DNS_Packet_Header;
Parsed_RR : DNSCatcher.DNS.Processor.Packet.Parsed_DNS_Resource_Record)
return Parsed_RData_Access;
-- Abstract class constructor
--
-- @value This
-- RData object being constructed
--
-- @value DNS_Header
-- DNS Packet Header
--
-- @value Parsed_RR
-- Parsed resource record from the packet parsing step
--
procedure From_Parsed_RR
(This : in out Parsed_RData;
DNS_Header : DNS_Packet_Header;
Parsed_RR : DNSCatcher.DNS.Processor.Packet
.Parsed_DNS_Resource_Record) is abstract;
-- Abstract conversion of RData to String
--
-- @value This
-- RData object
--
-- @returns
-- A string representation of RData
--
function RData_To_String
(This : in Parsed_RData)
return String is abstract;
-- Abstract pretty printer
--
-- @value This
-- RData object
--
-- @returns
-- String representation of nicely formatted RData information
--
function Print_Packet
(This : in Parsed_RData)
return String is abstract;
-- Deconstructor abstract method
--
-- Releases all resources allocated by the RData object
--
-- @value This
-- Object to be deconstructed
--
procedure Delete (This : in out Parsed_RData) is abstract;
end DNSCatcher.DNS.Processor.RData;
|
reznikmm/matreshka | Ada | 3,927 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Open Document Toolkit --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2014, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with ODF.DOM.Xml_Id_Attributes;
package Matreshka.ODF_Xml.Id_Attributes is
type Xml_Id_Attribute_Node is
new Matreshka.ODF_Xml.Abstract_Xml_Attribute_Node
and ODF.DOM.Xml_Id_Attributes.ODF_Xml_Id_Attribute
with null record;
overriding function Create
(Parameters : not null access Matreshka.DOM_Attributes.Attribute_L2_Parameters)
return Xml_Id_Attribute_Node;
overriding function Get_Local_Name
(Self : not null access constant Xml_Id_Attribute_Node)
return League.Strings.Universal_String;
end Matreshka.ODF_Xml.Id_Attributes;
|
reznikmm/matreshka | Ada | 3,549 | ads | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
package Generator.Tables is
procedure Generate_Types_Package;
-- Generates types package.
procedure Generate_Element_Table_Package;
-- Generates element table package.
end Generator.Tables;
|
python36/vibecrypt | Ada | 433 | ads | with byte_package; use byte_package;
package raiden is
subtype key_s is String(1..16);
procedure init_key(key_init : key_s);
procedure raiden_encrypt(m : in byte_array_8; c : out byte_array_8);
procedure raiden_decrypt(c : in byte_array_8; m : out byte_array_8);
private
type key_t is array(integer range 0..3) of dword;
key : key_t := (16#9cab2f30#, 16#ecbb1044#, 16#143b0000#, 16#00ff145a#);
t_k : key_t;
end raiden; |
twdroeger/ada-awa | Ada | 8,658 | adb | -----------------------------------------------------------------------
-- awa-services -- Services
-- Copyright (C) 2011, 2012, 2013, 2014, 2016, 2017 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Task_Attributes;
with Security.Contexts;
package body AWA.Services.Contexts is
use type ADO.Sessions.Connection_Status;
use type AWA.Users.Principals.Principal_Access;
package Task_Context is new Ada.Task_Attributes
(Service_Context_Access, null);
-- ------------------------------
-- Get the application associated with the current service operation.
-- ------------------------------
function Get_Application (Ctx : in Service_Context)
return AWA.Applications.Application_Access is
begin
return Ctx.Application;
end Get_Application;
-- ------------------------------
-- Get the current database connection for reading.
-- ------------------------------
function Get_Session (Ctx : in Service_Context_Access) return ADO.Sessions.Session is
begin
-- If a master database session was created, use it.
if Ctx.Master.Get_Status = ADO.Sessions.OPEN then
return ADO.Sessions.Session (Ctx.Master);
elsif Ctx.Slave.Get_Status /= ADO.Sessions.OPEN then
Ctx.Slave := Ctx.Application.Get_Session;
end if;
return Ctx.Slave;
end Get_Session;
-- ------------------------------
-- Get the current database connection for reading and writing.
-- ------------------------------
function Get_Master_Session (Ctx : in Service_Context_Access)
return ADO.Sessions.Master_Session is
begin
if Ctx.Master.Get_Status /= ADO.Sessions.OPEN then
Ctx.Master := Ctx.Application.Get_Master_Session;
end if;
return Ctx.Master;
end Get_Master_Session;
-- ------------------------------
-- Get the current user invoking the service operation.
-- Returns a null user if there is none.
-- ------------------------------
function Get_User (Ctx : in Service_Context) return AWA.Users.Models.User_Ref is
begin
if Ctx.Principal = null then
return AWA.Users.Models.Null_User;
else
return Ctx.Principal.Get_User;
end if;
end Get_User;
-- ------------------------------
-- Get the current user identifier invoking the service operation.
-- Returns NO_IDENTIFIER if there is none.
-- ------------------------------
function Get_User_Identifier (Ctx : in Service_Context) return ADO.Identifier is
begin
if Ctx.Principal = null then
return ADO.NO_IDENTIFIER;
else
return Ctx.Principal.Get_User_Identifier;
end if;
end Get_User_Identifier;
-- ------------------------------
-- Get the current user session from the user invoking the service operation.
-- Returns a null session if there is none.
-- ------------------------------
function Get_User_Session (Ctx : in Service_Context) return AWA.Users.Models.Session_Ref is
begin
if Ctx.Principal = null then
return AWA.Users.Models.Null_Session;
else
return Ctx.Principal.Get_Session;
end if;
end Get_User_Session;
-- ------------------------------
-- Starts a transaction.
-- ------------------------------
procedure Start (Ctx : in out Service_Context) is
begin
if Ctx.Transaction = 0 and then not Ctx.Active_Transaction then
Ctx.Master.Begin_Transaction;
Ctx.Active_Transaction := True;
end if;
Ctx.Transaction := Ctx.Transaction + 1;
end Start;
-- ------------------------------
-- Commits the current transaction. The database transaction is really committed by the
-- last <b>Commit</b> called.
-- ------------------------------
procedure Commit (Ctx : in out Service_Context) is
begin
Ctx.Transaction := Ctx.Transaction - 1;
if Ctx.Transaction = 0 and then Ctx.Active_Transaction then
Ctx.Master.Commit;
Ctx.Active_Transaction := False;
end if;
end Commit;
-- ------------------------------
-- Rollback the current transaction. The database transaction is rollback at the first
-- call to <b>Rollback</b>.
-- ------------------------------
procedure Rollback (Ctx : in out Service_Context) is
begin
null;
end Rollback;
-- ------------------------------
-- Get the attribute registered under the given name in the HTTP session.
-- ------------------------------
function Get_Session_Attribute (Ctx : in Service_Context;
Name : in String) return Util.Beans.Objects.Object is
pragma Unreferenced (Ctx, Name);
begin
return Util.Beans.Objects.Null_Object;
end Get_Session_Attribute;
-- ------------------------------
-- Set the attribute registered under the given name in the HTTP session.
-- ------------------------------
procedure Set_Session_Attribute (Ctx : in out Service_Context;
Name : in String;
Value : in Util.Beans.Objects.Object) is
begin
null;
end Set_Session_Attribute;
-- ------------------------------
-- Set the current application and user context.
-- ------------------------------
procedure Set_Context (Ctx : in out Service_Context;
Application : in AWA.Applications.Application_Access;
Principal : in AWA.Users.Principals.Principal_Access) is
begin
Ctx.Application := Application;
Ctx.Principal := Principal;
end Set_Context;
-- ------------------------------
-- Initializes the service context.
-- ------------------------------
overriding
procedure Initialize (Ctx : in out Service_Context) is
use type AWA.Applications.Application_Access;
begin
Ctx.Previous := Task_Context.Value;
Task_Context.Set_Value (Ctx'Unchecked_Access);
if Ctx.Previous /= null and then Ctx.Application = null then
Ctx.Application := Ctx.Previous.Application;
end if;
end Initialize;
-- ------------------------------
-- Finalize the service context, rollback non-committed transaction, releases any object.
-- ------------------------------
overriding
procedure Finalize (Ctx : in out Service_Context) is
begin
-- When the service context is released, we must not have any active transaction.
-- This means we are leaving the service in an abnormal way such as when an
-- exception is raised. If this is the case, rollback the transaction.
if Ctx.Active_Transaction then
Ctx.Master.Rollback;
end if;
Task_Context.Set_Value (Ctx.Previous);
end Finalize;
-- ------------------------------
-- Get the current service context.
-- Returns null if the current thread is not associated with any service context.
-- ------------------------------
function Current return Service_Context_Access is
begin
return Task_Context.Value;
end Current;
-- ------------------------------
-- Run the process procedure on behalf of the specific user and session.
-- This operation changes temporarily the identity of the current user principal and
-- executes the <tt>Process</tt> procedure.
-- ------------------------------
procedure Run_As (User : in AWA.Users.Models.User_Ref;
Session : in AWA.Users.Models.Session_Ref) is
Ctx : Service_Context;
Sec : Security.Contexts.Security_Context;
Principal : aliased AWA.Users.Principals.Principal
:= AWA.Users.Principals.Create (User, Session);
begin
Ctx.Principal := Principal'Unchecked_Access;
Sec.Set_Context (Ctx.Application.Get_Security_Manager, Principal'Unchecked_Access);
Process;
end Run_As;
end AWA.Services.Contexts;
|
BrickBot/Bound-T-H8-300 | Ada | 3,895 | ads | -- Bounds.Timing (decl)
--
-- Bounding the execution time.
--
-- This package provides operations specific to bounds on the
-- execution time of parts of the target program.
--
-- A component of the Bound-T Worst-Case Execution Time Tool.
--
-------------------------------------------------------------------------------
-- Copyright (c) 1999 .. 2015 Tidorum Ltd
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- 1. Redistributions of source code must retain the above copyright notice, this
-- list of conditions and the following disclaimer.
-- 2. Redistributions in binary form must reproduce the above copyright notice,
-- this list of conditions and the following disclaimer in the documentation
-- and/or other materials provided with the distribution.
--
-- This software is provided by the copyright holders and contributors "as is" and
-- any express or implied warranties, including, but not limited to, the implied
-- warranties of merchantability and fitness for a particular purpose are
-- disclaimed. In no event shall the copyright owner or contributors be liable for
-- any direct, indirect, incidental, special, exemplary, or consequential damages
-- (including, but not limited to, procurement of substitute goods or services;
-- loss of use, data, or profits; or business interruption) however caused and
-- on any theory of liability, whether in contract, strict liability, or tort
-- (including negligence or otherwise) arising in any way out of the use of this
-- software, even if advised of the possibility of such damage.
--
-- Other modules (files) of this software composition should contain their
-- own copyright statements, which may have different copyright and usage
-- conditions. The above conditions apply to this file.
-------------------------------------------------------------------------------
--
-- $Revision: 1.2 $
-- $Date: 2015/10/24 19:36:47 $
--
-- $Log: bounds-timing.ads,v $
-- Revision 1.2 2015/10/24 19:36:47 niklas
-- Moved to free licence.
--
-- Revision 1.1 2007-12-17 13:54:35 niklas
-- BT-CH-0098: Assertions on stack usage and final stack height, etc.
--
with Assertions;
with Programs.Execution;
package Bounds.Timing is
procedure Apply_Assertions (
Asserts : in Assertions.Assertion_Set_T;
Exec_Bounds : in Programs.Execution.Bounds_Ref);
--
-- Enters asserted bounds from on the execution time from the
-- given set of Asserts into the given Execution Bounds.
procedure Evaluate_Time_State (Within : in Programs.Execution.Bounds_Ref);
--
-- Evaluates the state of bounding of the maximum execution time
-- Within the given bounds, making use of all the available bounds
-- on loops, callees, and other features of the subprogram Within
-- these bounds, assuming all such bounds to be already represented
-- Within the given execution bounds on the subprogram.
--
-- Various cases:
--
-- > If time-bounds are asserted, does nothing.
--
-- > If there is no feasible execution path in the subprogram under
-- this computation model, sets the time-state to Infeasible.
--
-- > If there are feasible calls with Vague time-state, sets the
-- time-state to Vague here (for the caller), too.
--
-- > If the flow-graph is irreducible and there are not "enough"
-- other assertions on execution counts to bound the execution
-- paths, sets the time-state to Vague.
--
-- > If there are unbounded loops or calls with unbounded
-- context-dependent execution time, sets the time-state
-- to Depends.
--
-- > Otherwise sets the time-state to Computable. But note that
-- the worst-case path and upper time bound are not yet
-- computed here.
end Bounds.Timing;
|
sebsgit/textproc | Ada | 1,796 | adb | with AUnit.Assertions; use AUnit.Assertions;
with Ada.Containers.Vectors;
with Ada.Text_IO;
with NNClassifier;
with NeuralNet;
with DataBatch;
with MathUtils;
use MathUtils.Float_Vec;
use Ada.Containers;
package body NNClassifierTests is
procedure Register_Tests (T: in out TestCase) is
use AUnit.Test_Cases.Registration;
begin
Register_Routine (T, testLogisticRegression'Access, "logistic regression");
end Register_Tests;
function Name(T: TestCase) return Test_String is
begin
return Format("NN Classifier Tests");
end Name;
procedure testLogisticRegression(T : in out Test_Cases.Test_Case'Class) is
config: NeuralNet.Config(1);
dnn: NNClassifier.DNN(config.size + 1);
batch: DataBatch.Batch;
labels: NNClassifier.LabelVector;
trainSetSize: constant Positive := 1000;
input: MathUtils.Vector;
prediction: MathUtils.Vector;
begin
config.inputSize := 4;
config.act := NeuralNet.LOGISTIC;
config.lr := 0.9;
config.sizes := (1 => 16);
dnn := NNClassifier.create(config => config,
numberOfClasses => 2);
for i in 1 .. trainSetSize loop
batch.append((MathUtils.rand01 + 0.5) & 0.0 & 0.0 & (MathUtils.rand01 + 0.5));
labels.Append(0);
batch.append((MathUtils.rand01 + 0.5) & (MathUtils.rand01 + 0.5) & 0.0 & 0.0);
labels.Append(1);
end loop;
dnn.train(batch, labels);
input := 0.5 & 0.0 & 0.0 & 0.5;
prediction := dnn.classify(input);
Assert(prediction(1) > prediction(2), "");
input := 0.5 & 0.5 & 0.0 & 0.0;
prediction := dnn.classify(input);
Assert(prediction(2) > prediction(1), "");
end testLogisticRegression;
end NNClassifierTests;
|
ytomino/gnat4drake | Ada | 259 | adb | package body System.File_Control_Block is
function Stream (File : AFCB_Ptr) return Interfaces.C_Streams.FILEs is
begin
raise Program_Error; -- FILE * is not used in drake
return Stream (File);
end Stream;
end System.File_Control_Block;
|
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.