hexsha
stringlengths
40
40
size
int64
3
1.05M
ext
stringclasses
163 values
lang
stringclasses
53 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
112
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
113
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
float64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
113
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.05M
avg_line_length
float64
1
966k
max_line_length
int64
1
977k
alphanum_fraction
float64
0
1
500e51e5ef68c2982e31affd5c20c7fdf5380ab8
3,172
ads
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/g-sha512.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/g-sha512.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/g-sha512.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . S H A 5 1 2 -- -- -- -- S p e c -- -- -- -- Copyright (C) 2009-2021, 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. -- -- -- -- -- -- -- -- -- -- -- -- 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 implements the SHA-512 secure hash function as described in -- FIPS PUB 180-3. The complete text of FIPS PUB 180-3 can be found at: -- http://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf -- See the declaration of GNAT.Secure_Hashes.H in g-sechas.ads for complete -- documentation. with GNAT.Secure_Hashes.SHA2_Common; with GNAT.Secure_Hashes.SHA2_64; with System; package GNAT.SHA512 is new GNAT.Secure_Hashes.H (Block_Words => GNAT.Secure_Hashes.SHA2_Common.Block_Words, State_Words => 8, Hash_Words => 8, Hash_Bit_Order => System.High_Order_First, Hash_State => GNAT.Secure_Hashes.SHA2_64.Hash_State, Initial_State => GNAT.Secure_Hashes.SHA2_64.SHA512_Init_State, Transform => GNAT.Secure_Hashes.SHA2_64.Transform);
62.196078
78
0.40826
39efa4b6a7bd95e3f98f4062697feee8443f6d74
2,841
ads
Ada
orka_simd/src/x86/gnat/orka-simd-sse2-integers-shift.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
52
2016-07-30T23:00:28.000Z
2022-02-05T11:54:55.000Z
orka_simd/src/x86/gnat/orka-simd-sse2-integers-shift.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
79
2016-08-01T18:36:48.000Z
2022-02-27T12:14:20.000Z
orka_simd/src/x86/gnat/orka-simd-sse2-integers-shift.ads
onox/orka
9edf99559a16ffa96dfdb208322f4d18efbcbac6
[ "Apache-2.0" ]
4
2018-04-28T22:36:26.000Z
2020-11-14T23:00:29.000Z
-- SPDX-License-Identifier: Apache-2.0 -- -- Copyright (c) 2021 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. package Orka.SIMD.SSE2.Integers.Shift is pragma Pure; function Shift_Bits_Left_Zeros (Elements, Bits : m128i) return m128i with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_pslld128"; -- Shift each element to the left by the given amount of bits from the -- first Double of the Count register function Shift_Bits_Right_Zeros (Elements, Bits : m128i) return m128i with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_psrld128"; -- Shift each element to the right by the given amount of bits from the -- first Double of the Count register, shifting in zeros function Shift_Bits_Right_Signs (Elements, Bits : m128i) return m128i with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_psrad128"; -- Shift each element to the right by the given amount of bits from the -- first Double of the Count register, shifting in sign bits -- -- If the value of the Double is > 31, then the elements will be either 16#FFFF_FFFF# or 0. ---------------------------------------------------------------------------- type Bits_Count is new Integer range 1 .. 32; function Shift_Bits_Left_Zeros (Elements : m128i; Bits : Bits_Count) return m128i with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_pslldi128"; -- Shift each element to the left by the given amount of bits from the -- first Double of the Count register, shifting in zeros function Shift_Bits_Right_Zeros (Elements : m128i; Bits : Bits_Count) return m128i with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_psrldi128"; -- Shift each element to the right by the given amount of bits from the -- first Double of the Count register, shifting in zeros function Shift_Bits_Right_Signs (Elements : m128i; Bits : Bits_Count) return m128i with Import, Convention => Intrinsic, External_Name => "__builtin_ia32_psradi128"; -- Shift each element to the right by the given amount of bits, shifting in -- sign bits -- -- If Bits is > 31, then the elements will be either 16#FFFF_FFFF# or 0. end Orka.SIMD.SSE2.Integers.Shift;
48.152542
95
0.710665
103863be35295a2f2199e1c3b4e2a90f63dfd86f
1,094
adb
Ada
generated/natools-static_hash_maps-s_expressions-command_maps.adb
faelys/natools
947c004e6f69ca144942c6af40e102d089223cf8
[ "0BSD" ]
null
null
null
generated/natools-static_hash_maps-s_expressions-command_maps.adb
faelys/natools
947c004e6f69ca144942c6af40e102d089223cf8
[ "0BSD" ]
null
null
null
generated/natools-static_hash_maps-s_expressions-command_maps.adb
faelys/natools
947c004e6f69ca144942c6af40e102d089223cf8
[ "0BSD" ]
null
null
null
-- Generated at 2014-11-09 20:46:38 +0000 by Natools.Static_Hash_Maps -- from src/natools-static_hash_maps-s_expressions-hash_maps.sx with Natools.Static_Hash_Maps.S_Expressions.Command_Pkg; with Natools.Static_Hash_Maps.S_Expressions.Command_Map; package body Natools.Static_Hash_Maps.S_Expressions.Command_Maps is function To_Package_Command (Key : String) return Package_Command is N : constant Natural := Natools.Static_Hash_Maps.S_Expressions.Command_Pkg.Hash (Key); begin if Map_1_Keys (N).all = Key then return Map_1_Elements (N); else return Extra_Declarations; end if; end To_Package_Command; function To_Map_Command (Key : String) return Map_Command is N : constant Natural := Natools.Static_Hash_Maps.S_Expressions.Command_Map.Hash (Key); begin if Map_2_Keys (N).all = Key then return Map_2_Elements (N); else raise Constraint_Error with "Key """ & Key & """ not in map"; end if; end To_Map_Command; end Natools.Static_Hash_Maps.S_Expressions.Command_Maps;
33.151515
73
0.719378
0b6253dc4bd90b63d9ddc81c09220b7abddd566a
5,294
ads
Ada
source/amf/uml/amf-uml-call_behavior_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-call_behavior_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-call_behavior_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- 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.Call_Behavior_Actions.Collections is pragma Preelaborate; package UML_Call_Behavior_Action_Collections is new AMF.Generic_Collections (UML_Call_Behavior_Action, UML_Call_Behavior_Action_Access); type Set_Of_UML_Call_Behavior_Action is new UML_Call_Behavior_Action_Collections.Set with null record; Empty_Set_Of_UML_Call_Behavior_Action : constant Set_Of_UML_Call_Behavior_Action; type Ordered_Set_Of_UML_Call_Behavior_Action is new UML_Call_Behavior_Action_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Call_Behavior_Action : constant Ordered_Set_Of_UML_Call_Behavior_Action; type Bag_Of_UML_Call_Behavior_Action is new UML_Call_Behavior_Action_Collections.Bag with null record; Empty_Bag_Of_UML_Call_Behavior_Action : constant Bag_Of_UML_Call_Behavior_Action; type Sequence_Of_UML_Call_Behavior_Action is new UML_Call_Behavior_Action_Collections.Sequence with null record; Empty_Sequence_Of_UML_Call_Behavior_Action : constant Sequence_Of_UML_Call_Behavior_Action; private Empty_Set_Of_UML_Call_Behavior_Action : constant Set_Of_UML_Call_Behavior_Action := (UML_Call_Behavior_Action_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Call_Behavior_Action : constant Ordered_Set_Of_UML_Call_Behavior_Action := (UML_Call_Behavior_Action_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Call_Behavior_Action : constant Bag_Of_UML_Call_Behavior_Action := (UML_Call_Behavior_Action_Collections.Bag with null record); Empty_Sequence_Of_UML_Call_Behavior_Action : constant Sequence_Of_UML_Call_Behavior_Action := (UML_Call_Behavior_Action_Collections.Sequence with null record); end AMF.UML.Call_Behavior_Actions.Collections;
57.543478
100
0.543068
39fcd80eb7cdd838bb10948d39a2c5563828199e
5,794
ads
Ada
source/amf/uml/amf-uml-conditional_nodes.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-conditional_nodes.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-conditional_nodes.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- 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. ------------------------------------------------------------------------------ -- A conditional node is a structured activity node that represents an -- exclusive choice among some number of alternatives. ------------------------------------------------------------------------------ limited with AMF.UML.Clauses.Collections; limited with AMF.UML.Output_Pins.Collections; with AMF.UML.Structured_Activity_Nodes; package AMF.UML.Conditional_Nodes is pragma Preelaborate; type UML_Conditional_Node is limited interface and AMF.UML.Structured_Activity_Nodes.UML_Structured_Activity_Node; type UML_Conditional_Node_Access is access all UML_Conditional_Node'Class; for UML_Conditional_Node_Access'Storage_Size use 0; not overriding function Get_Clause (Self : not null access constant UML_Conditional_Node) return AMF.UML.Clauses.Collections.Set_Of_UML_Clause is abstract; -- Getter of ConditionalNode::clause. -- -- Set of clauses composing the conditional. not overriding function Get_Is_Assured (Self : not null access constant UML_Conditional_Node) return Boolean is abstract; -- Getter of ConditionalNode::isAssured. -- -- If true, the modeler asserts that at least one test will succeed. not overriding procedure Set_Is_Assured (Self : not null access UML_Conditional_Node; To : Boolean) is abstract; -- Setter of ConditionalNode::isAssured. -- -- If true, the modeler asserts that at least one test will succeed. not overriding function Get_Is_Determinate (Self : not null access constant UML_Conditional_Node) return Boolean is abstract; -- Getter of ConditionalNode::isDeterminate. -- -- If true, the modeler asserts that at most one test will succeed. not overriding procedure Set_Is_Determinate (Self : not null access UML_Conditional_Node; To : Boolean) is abstract; -- Setter of ConditionalNode::isDeterminate. -- -- If true, the modeler asserts that at most one test will succeed. not overriding function Get_Result (Self : not null access constant UML_Conditional_Node) return AMF.UML.Output_Pins.Collections.Ordered_Set_Of_UML_Output_Pin is abstract; -- Getter of ConditionalNode::result. -- -- A list of output pins that constitute the data flow outputs of the -- conditional. end AMF.UML.Conditional_Nodes;
53.648148
88
0.519676
394d44fd3fa7ab81b0286e5bdb2e62a0699d698d
288
adb
Ada
tests/variant-record/src/mylog.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
12
2017-06-08T14:19:57.000Z
2022-03-09T02:48:59.000Z
tests/variant-record/src/mylog.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
6
2017-06-08T13:13:50.000Z
2020-05-15T09:32:43.000Z
tests/variant-record/src/mylog.adb
TUM-EI-RCS/StratoX
5fdd04e01a25efef6052376f43ce85b5bc973392
[ "BSD-3-Clause" ]
3
2017-06-30T14:05:06.000Z
2022-02-17T12:20:45.000Z
with Ada.Text_IO; use Ada.Text_IO; package body mylog with SPARK_Mode is procedure Print (m : logmsg) is begin case m.typ is when NONE => Put ("NONE"); when GPS => Put ("GPS: "); when TEXT => Put ("TXT: "); end case; end Print; end mylog;
22.153846
37
0.5625
c5229ec907e5219487558fc6a801b7a70613716b
871
adb
Ada
Des_Ada/src/p_stephandler.adb
VMika/Des_Ada
fcadb38aa9118e668329c3443d3b6e4c83456acc
[ "MIT" ]
null
null
null
Des_Ada/src/p_stephandler.adb
VMika/Des_Ada
fcadb38aa9118e668329c3443d3b6e4c83456acc
[ "MIT" ]
null
null
null
Des_Ada/src/p_stephandler.adb
VMika/Des_Ada
fcadb38aa9118e668329c3443d3b6e4c83456acc
[ "MIT" ]
null
null
null
with Ada.Text_IO; use Ada.Text_IO; with P_StructuralTypes; use P_StructuralTypes; package body P_stephandler is function Get_NextHandler (Self : in out T_StepHandler) return Ptr_Handler is begin return Self.NextHandler; end; procedure Set_NextHandler (Self : in out T_StepHandler; Ptr_StepHandler : Ptr_Handler) is begin Self.NextHandler := Ptr_StepHandler; end; procedure Set_BinaryContainer (Self : in out T_StepHandler; Ptr_BinaryContainer : BinaryContainer_Access) is begin Self.Ptr_BinaryContainer := Ptr_BinaryContainer; end; function Get_BinaryContainer (Self : in out T_StepHandler) return BinaryContainer_Access is begin return Self.Ptr_BinaryContainer; end; end P_stephandler;
27.21875
79
0.659013
10c8bc17c941e7dfd10aa7cc3d1c5bb37ae24eae
821
adb
Ada
gdb/testsuite/gdb.ada/formatted_ref/formatted_ref.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
1
2020-10-14T03:24:35.000Z
2020-10-14T03:24:35.000Z
gdb/testsuite/gdb.ada/formatted_ref/formatted_ref.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
gdb/testsuite/gdb.ada/formatted_ref/formatted_ref.adb
greyblue9/binutils-gdb
05377632b124fe7600eea7f4ee0e9a35d1b0cbdc
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2007-2021 Free Software Foundation, Inc. -- -- This program 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 3 of the License, or -- (at your option) any later version. -- -- This program 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 program. If not, see <http://www.gnu.org/licenses/>. with Defs; procedure Formatted_Ref is X : Integer; begin X := Defs.F1 (Defs.S1); end Formatted_Ref;
37.318182
73
0.733252
100ef0a6a9efc8ae1b045654116c8c01a560859b
1,237
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-liztio.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-liztio.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-liztio.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . L O N G _ I N T E G E R _ W I D E _ W I D E _ T E X T _ I O -- -- -- -- S p e c -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ with Ada.Wide_Wide_Text_IO; package Ada.Long_Integer_Wide_Wide_Text_IO is new Ada.Wide_Wide_Text_IO.Integer_IO (Long_Integer);
61.85
78
0.329022
1039cc2f456aa83674a32dd5a6786d98e20840de
857
ads
Ada
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/access_tagged_param/pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
3
2021-05-04T17:09:06.000Z
2021-10-04T07:19:26.000Z
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/access_tagged_param/pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/access_tagged_param/pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2017-2020 Free Software Foundation, Inc. -- -- This program 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 3 of the License, or -- (at your option) any later version. -- -- This program 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 program. If not, see <http://www.gnu.org/licenses/>. package Pck is type Top_T is tagged record N : Integer := 1; end record; procedure Inspect (Obj: access Top_T'Class); end Pck;
38.954545
73
0.725788
39a1120e07f30c2bbf8162291a7394a5b429b7a1
3,677
adb
Ada
llvm-gcc-4.2-2.9/gcc/ada/s-tpopsp-posix.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/s-tpopsp-posix.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/s-tpopsp-posix.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K _ P R I M I T I V E S . O P E R A T I O N S . -- -- S P E C I F I C -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, Free Software Fundation, Inc. -- -- -- -- GNARL 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 2, or (at your option) any later ver- -- -- sion. GNARL 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 GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, 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. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a POSIX-like version of this package. separate (System.Task_Primitives.Operations) package body Specific is ---------------- -- Initialize -- ---------------- procedure Initialize (Environment_Task : Task_Id) is pragma Warnings (Off, Environment_Task); Result : Interfaces.C.int; begin Result := pthread_key_create (ATCB_Key'Access, null); pragma Assert (Result = 0); end Initialize; ------------------- -- Is_Valid_Task -- ------------------- function Is_Valid_Task return Boolean is begin return pthread_getspecific (ATCB_Key) /= System.Null_Address; end Is_Valid_Task; --------- -- Set -- --------- procedure Set (Self_Id : Task_Id) is Result : Interfaces.C.int; begin Result := pthread_setspecific (ATCB_Key, To_Address (Self_Id)); pragma Assert (Result = 0); end Set; ---------- -- Self -- ---------- function Self return Task_Id is begin return To_Task_Id (pthread_getspecific (ATCB_Key)); end Self; end Specific;
44.841463
78
0.462061
393a255087d4dcb00f37e71c336acf1dd24ab51d
9,171
ads
Ada
arch/ARM/STM32/svd/stm32f7x9/stm32_svd-pwr.ads
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
arch/ARM/STM32/svd/stm32f7x9/stm32_svd-pwr.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
arch/ARM/STM32/svd/stm32f7x9/stm32_svd-pwr.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
-- This spec has been automatically generated from STM32F7x9.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.PWR is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR1_PLS_Field is HAL.UInt3; subtype CR1_VOS_Field is HAL.UInt2; subtype CR1_UDEN_Field is HAL.UInt2; -- power control register type CR1_Register is record -- Low-power deep sleep LPDS : Boolean := False; -- Power down deepsleep PDDS : Boolean := False; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- Clear standby flag CSBF : Boolean := False; -- Power voltage detector enable PVDE : Boolean := False; -- PVD level selection PLS : CR1_PLS_Field := 16#0#; -- Disable backup domain write protection DBP : Boolean := False; -- Flash power down in Stop mode FPDS : Boolean := False; -- Low-power regulator in deepsleep under-drive mode LPUDS : Boolean := False; -- Main regulator in deepsleep under-drive mode MRUDS : Boolean := False; -- unspecified Reserved_12_12 : HAL.Bit := 16#0#; -- ADCDC1 ADCDC1 : Boolean := False; -- Regulator voltage scaling output selection VOS : CR1_VOS_Field := 16#3#; -- Over-drive enable ODEN : Boolean := False; -- Over-drive switching enabled ODSWEN : Boolean := False; -- Under-drive enable in stop mode UDEN : CR1_UDEN_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 CR1_Register use record LPDS at 0 range 0 .. 0; PDDS at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; CSBF at 0 range 3 .. 3; PVDE at 0 range 4 .. 4; PLS at 0 range 5 .. 7; DBP at 0 range 8 .. 8; FPDS at 0 range 9 .. 9; LPUDS at 0 range 10 .. 10; MRUDS at 0 range 11 .. 11; Reserved_12_12 at 0 range 12 .. 12; ADCDC1 at 0 range 13 .. 13; VOS at 0 range 14 .. 15; ODEN at 0 range 16 .. 16; ODSWEN at 0 range 17 .. 17; UDEN at 0 range 18 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; subtype CSR1_UDRDY_Field is HAL.UInt2; -- power control/status register type CSR1_Register is record -- Read-only. Wakeup internal flag WUIF : Boolean := False; -- Read-only. Standby flag SBF : Boolean := False; -- Read-only. PVD output PVDO : Boolean := False; -- Read-only. Backup regulator ready BRR : Boolean := False; -- unspecified Reserved_4_8 : HAL.UInt5 := 16#0#; -- Backup regulator enable BRE : Boolean := False; -- unspecified Reserved_10_13 : HAL.UInt4 := 16#0#; -- Regulator voltage scaling output selection ready bit VOSRDY : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Over-drive mode ready ODRDY : Boolean := False; -- Over-drive mode switching ready ODSWRDY : Boolean := False; -- Under-drive ready flag UDRDY : CSR1_UDRDY_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 CSR1_Register use record WUIF at 0 range 0 .. 0; SBF at 0 range 1 .. 1; PVDO at 0 range 2 .. 2; BRR at 0 range 3 .. 3; Reserved_4_8 at 0 range 4 .. 8; BRE at 0 range 9 .. 9; Reserved_10_13 at 0 range 10 .. 13; VOSRDY at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; ODRDY at 0 range 16 .. 16; ODSWRDY at 0 range 17 .. 17; UDRDY at 0 range 18 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- CR2_CWUPF array type CR2_CWUPF_Field_Array is array (1 .. 6) of Boolean with Component_Size => 1, Size => 6; -- Type definition for CR2_CWUPF type CR2_CWUPF_Field (As_Array : Boolean := False) is record case As_Array is when False => -- CWUPF as a value Val : HAL.UInt6; when True => -- CWUPF as an array Arr : CR2_CWUPF_Field_Array; end case; end record with Unchecked_Union, Size => 6; for CR2_CWUPF_Field use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; -- CR2_WUPP array type CR2_WUPP_Field_Array is array (1 .. 6) of Boolean with Component_Size => 1, Size => 6; -- Type definition for CR2_WUPP type CR2_WUPP_Field (As_Array : Boolean := False) is record case As_Array is when False => -- WUPP as a value Val : HAL.UInt6; when True => -- WUPP as an array Arr : CR2_WUPP_Field_Array; end case; end record with Unchecked_Union, Size => 6; for CR2_WUPP_Field use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; -- power control register type CR2_Register is record -- Read-only. Clear Wakeup Pin flag for PA0 CWUPF : CR2_CWUPF_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- Wakeup pin polarity bit for PA0 WUPP : CR2_WUPP_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR2_Register use record CWUPF at 0 range 0 .. 5; Reserved_6_7 at 0 range 6 .. 7; WUPP at 0 range 8 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; -- CSR2_WUPF array type CSR2_WUPF_Field_Array is array (1 .. 6) of Boolean with Component_Size => 1, Size => 6; -- Type definition for CSR2_WUPF type CSR2_WUPF_Field (As_Array : Boolean := False) is record case As_Array is when False => -- WUPF as a value Val : HAL.UInt6; when True => -- WUPF as an array Arr : CSR2_WUPF_Field_Array; end case; end record with Unchecked_Union, Size => 6; for CSR2_WUPF_Field use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; -- CSR2_EWUP array type CSR2_EWUP_Field_Array is array (1 .. 6) of Boolean with Component_Size => 1, Size => 6; -- Type definition for CSR2_EWUP type CSR2_EWUP_Field (As_Array : Boolean := False) is record case As_Array is when False => -- EWUP as a value Val : HAL.UInt6; when True => -- EWUP as an array Arr : CSR2_EWUP_Field_Array; end case; end record with Unchecked_Union, Size => 6; for CSR2_EWUP_Field use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; -- power control/status register type CSR2_Register is record -- Read-only. Wakeup Pin flag for PA0 WUPF : CSR2_WUPF_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- Enable Wakeup pin for PA0 EWUP : CSR2_EWUP_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CSR2_Register use record WUPF at 0 range 0 .. 5; Reserved_6_7 at 0 range 6 .. 7; EWUP at 0 range 8 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Power control type PWR_Peripheral is record -- power control register CR1 : aliased CR1_Register; -- power control/status register CSR1 : aliased CSR1_Register; -- power control register CR2 : aliased CR2_Register; -- power control/status register CSR2 : aliased CSR2_Register; end record with Volatile; for PWR_Peripheral use record CR1 at 16#0# range 0 .. 31; CSR1 at 16#4# range 0 .. 31; CR2 at 16#8# range 0 .. 31; CSR2 at 16#C# range 0 .. 31; end record; -- Power control PWR_Periph : aliased PWR_Peripheral with Import, Address => System'To_Address (16#40007000#); end STM32_SVD.PWR;
30.775168
76
0.549122
0bd2d9c656451f747b7ba84749fca93944aa5b9a
5,074
ads
Ada
src/bb-adc.ads
jorge-real/Ball-On-Beam
68362a677190a2ee2b6ccbc10ef073147b23d331
[ "CC0-1.0" ]
4
2021-02-12T19:52:11.000Z
2021-08-04T22:43:26.000Z
src/bb-adc.ads
jorge-real/Ball-On-Beam
68362a677190a2ee2b6ccbc10ef073147b23d331
[ "CC0-1.0" ]
null
null
null
src/bb-adc.ads
jorge-real/Ball-On-Beam
68362a677190a2ee2b6ccbc10ef073147b23d331
[ "CC0-1.0" ]
null
null
null
---------------------------------------------------------------------------- -- -- -- B A L L _ O N _ B E A M _ A D C -- -- -- -- Spec -- -- -- -- -- -- Author: Jorge Real -- -- Universitat Politecnica de Valencia -- -- December, 2020 - Version 1 -- -- February, 2021 - Version 2 -- -- -- -- -- -- This package implements an A/D converter interface with the position -- -- sensor of package Ball_On_Beam_Simulator, instead of the "ideal" results -- -- produced by function Ball_Position of that package. -- -- The ADC converter transforms the result of Ball_Position into a 12-bit -- -- conversion. The conversion has some random noise added, with gaussian -- -- distribution to better emulate reality and to motivate the need for using -- -- some form of filtering. -- -- -- -- This is free software in the ample sense: -- -- you can use it freely, provided you preserve -- -- this comment at the header of source files -- -- and you clearly indicate the changes made to -- -- the original file, if any. -- -- -- -------------------------------------------------------------------------------- package BB.ADC is procedure Set_Beam_Angle (Inclination : Angle); -- Set the beam inclination angle, in degrees. ---------------------------------------------------------------------------- -- Analog to Digital Converter section -- ---------------------------------------------------------------------------- -- -- -- An analog position sensor is connected to this 12-bit ADC. The range -- -- of conversion is such that 0 corresponds to Min_Position and 4095 to -- -- Max_Position (both declared in Ball_On_Beam_Simulator - spec). -- -- -- -- There are two registers in the ADC adapter: Control Register (CR) and -- -- Data Register (DR). Both are 16-bit wide. CR is read-only, DR is R/W. -- -- -- -- The simulated CR is a 16-bit word with two useful bits: -- -- bit 2 (IE): Interrupt Enable bit. When set, the end of an ADC -- -- conversion causes a simulated End_Of_Conversion interrupt for -- -- which a user program may attach a library-level, parameterless -- -- handling procedure. -- -- bit 0 (TRG): "trigger conversion" bit. When set, it triggers a new -- -- A/D conversion. The end of conversion is reflected in bit EOC of -- -- the ADC, besides causing the simulated interrupt when IE is set. -- -- -- -- The simulated DR uses: -- -- bits 0..11 (ADC_Count): to store 12-bit conversions. -- -- bit 15 (EOC): to signal end of conversions. This bit is set upon -- -- completion of an A/D conversion. EOC is reset every time the TRG -- -- bit in the CR is set. -- -- -- ---------------------------------------------------------------------------- -- Type of values written to the CR or read from the DR type ADC_Register is mod 2 ** 16 with Size => 16; -- Write a value to the Control Register procedure Write_CR (Value : ADC_Register); -- Read the Data Register function Read_DR return ADC_Register; -- A user handler is a parameterless procedure type ADC_Handler_Access is access procedure; -- Attach a user handler for ADC end-of-conversion interrupts procedure Attach_ADC_Handler (Handler : ADC_Handler_Access); end BB.ADC;
63.425
80
0.379385
0b4983cb48140efbef63b8f456505ca156693806
2,756
adb
Ada
tools/uaflex/uaflex-driver.adb
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
tools/uaflex/uaflex-driver.adb
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
tools/uaflex/uaflex-driver.adb
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Ada.Command_Line; use Ada.Command_Line; procedure UAFlex.Driver is begin if Argument_Count /= 3 then Error ("Usage: uaflex input_file package_name output_dir"); return; end if; UAFlex.Run (Input_File => Argument (1), Pkg_Name => Argument (2), Output_Dir => Argument (3)); end UAFlex.Driver; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- 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 Maxim Reznik, 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 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. ------------------------------------------------------------------------------
49.214286
79
0.5791
fb002509f6c818b501e43fabc77b838ad0efc2e7
2,306
ads
Ada
src/open_weather_map-api-service-utilities.ads
Jellix/open_weather_map_api
fa3484b361411b9362500a25e36d63d4bb6dbca3
[ "WTFPL" ]
1
2020-09-04T18:31:05.000Z
2020-09-04T18:31:05.000Z
src/open_weather_map-api-service-utilities.ads
Jellix/open_weather_map_api
fa3484b361411b9362500a25e36d63d4bb6dbca3
[ "WTFPL" ]
2
2020-03-22T16:28:32.000Z
2020-03-22T16:31:51.000Z
src/open_weather_map-api-service-utilities.ads
HeisenbugLtd/open_weather_map_api
fa3484b361411b9362500a25e36d63d4bb6dbca3
[ "WTFPL" ]
null
null
null
-------------------------------------------------------------------------------- -- Copyright (C) 2020 by Heisenbug Ltd. ([email protected]) -- -- This work is free. You can redistribute it and/or modify it under the -- terms of the Do What The Fuck You Want To Public License, Version 2, -- as published by Sam Hocevar. See the LICENSE file for more details. -------------------------------------------------------------------------------- pragma License (Unrestricted); -------------------------------------------------------------------------------- --% @summary --% Open_Weather_Map.API.Service.Utilities -- --% @description --% Provides several utility functions. -------------------------------------------------------------------------------- private package Open_Weather_Map.API.Service.Utilities is ----------------------------------------------------------------------------- -- Has_Coord_Fields ----------------------------------------------------------------------------- function Has_Coord_Fields (Coordinates : in GNATCOLL.JSON.JSON_Value) return Boolean; --% Checks if the given JSON value object has the field names expected for --% geographical coordinates. -- --% @param Coordinates --% The JSON object to be checked for expected coordinate fields. -- --% @return --% True if the given JSON value object has the field names expected for --% geographical coordinates. ----------------------------------------------------------------------------- -- Decode_Coordinates ----------------------------------------------------------------------------- function Decode_Coordinates (Coordinates : in GNATCOLL.JSON.JSON_Value) return Geo_Coordinates with Global => null, Pre => Has_Coord_Fields (Coordinates); --% Retrieves geographical coordinates from the JSON value given in --% Coordinates. -- Before calling this subprogram it should be checked that the expected -- fields actually exist, hence making this requirement more prominent in -- the precondition. -- --% @param Coordinates --% The JSON object where the coordinates shall be extracted from. -- --% @return --% The geographical coordinates extracted from Coordinates. end Open_Weather_Map.API.Service.Utilities;
42.703704
80
0.517346
df0f2f950271d7f7fa0fe45d570348275174ff4b
176,578
adb
Ada
Vivado_HLS_Tutorial/Interface_Synthesis/lab4/axi_interfaces_prj/solution1/.autopilot/db/axi_interfaces.bind.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
Vivado_HLS_Tutorial/Interface_Synthesis/lab4/axi_interfaces_prj/solution1/.autopilot/db/axi_interfaces.bind.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
Vivado_HLS_Tutorial/Interface_Synthesis/lab4/axi_interfaces_prj/solution1/.autopilot/db/axi_interfaces.bind.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>axi_interfaces</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>d_o_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>d_o_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>d_o_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>d_o_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>d_o_4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[4]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>d_o_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[5]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>d_o_6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[6]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>d_o_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_o[7]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>d_i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[0]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>d_i_1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[1]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>d_i_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[2]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>d_i_3</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[3]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_13"> <Value> <Obj> <type>1</type> <id>13</id> <name>d_i_4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[4]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_14"> <Value> <Obj> <type>1</type> <id>14</id> <name>d_i_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[5]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_15"> <Value> <Obj> <type>1</type> <id>15</id> <name>d_i_6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[6]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_16"> <Value> <Obj> <type>1</type> <id>16</id> <name>d_i_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>d_i[7]</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>68</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_17"> <Value> <Obj> <type>0</type> <id>41</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>136</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>43</id> <name>do_init</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>251</item> <item>252</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>44</id> <name>i1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>45</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>265</item> <item>266</item> <item>267</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>64</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>249</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>66</id> <name>i1_cast</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>137</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>71</id> <name>acc_0_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>138</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>72</id> <name>d_i_0_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>140</item> <item>141</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>73</id> <name>tmp_2</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>142</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_3</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>143</item> <item>144</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>75</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>145</item> <item>146</item> <item>508</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>147</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>77</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>149</item> <item>150</item> <item>151</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>79</id> <name>acc_1_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>152</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>80</id> <name>d_i_1_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>153</item> <item>154</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>81</id> <name>tmp_2_1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>155</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_3_1</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>156</item> <item>157</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>83</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>158</item> <item>159</item> <item>507</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>84</id> <name>tmp_4</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>160</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>85</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>86</id> <name>acc_2_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>164</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>87</id> <name>d_i_2_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>165</item> <item>166</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>88</id> <name>tmp_2_2</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>167</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>89</id> <name>tmp_3_2</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>168</item> <item>169</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>90</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>170</item> <item>171</item> <item>506</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_5</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>172</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>92</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>173</item> <item>174</item> <item>175</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>93</id> <name>acc_3_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>176</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>94</id> <name>d_i_3_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>177</item> <item>178</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>95</id> <name>tmp_2_3</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>179</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp_3_3</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>180</item> <item>181</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>97</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>182</item> <item>183</item> <item>505</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp_6</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>184</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>99</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>185</item> <item>186</item> <item>187</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>100</id> <name>acc_4_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>188</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>101</id> <name>d_i_4_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>189</item> <item>190</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>102</id> <name>tmp_2_4</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>191</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>103</id> <name>tmp_3_4</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>192</item> <item>193</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>104</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>194</item> <item>195</item> <item>504</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>105</id> <name>tmp_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>196</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>106</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>197</item> <item>198</item> <item>199</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>107</id> <name>acc_5_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>200</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>108</id> <name>d_i_5_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>201</item> <item>202</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>109</id> <name>tmp_2_5</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>203</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_3_5</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>204</item> <item>205</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>111</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>206</item> <item>207</item> <item>503</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp_8</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>208</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>113</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>211</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>114</id> <name>acc_6_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>212</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>115</id> <name>d_i_6_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>213</item> <item>214</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>116</id> <name>tmp_2_6</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>215</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp_3_6</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>216</item> <item>217</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>118</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>218</item> <item>219</item> <item>502</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>119</id> <name>tmp_9</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>220</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>120</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>221</item> <item>222</item> <item>223</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>121</id> <name>acc_7_load</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>224</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>122</id> <name>d_i_7_read</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>225</item> <item>226</item> </oprand_edges> <opcode>read</opcode> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>123</id> <name>tmp_2_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>227</item> </oprand_edges> <opcode>sext</opcode> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>124</id> <name>tmp_3_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>228</item> <item>229</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>125</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>230</item> <item>231</item> <item>501</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>126</id> <name>tmp_10</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>232</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>127</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>67</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>67</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>233</item> <item>234</item> <item>235</item> </oprand_edges> <opcode>write</opcode> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>128</id> <name>i_1_7</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>237</item> <item>238</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>129</id> <name>tmp_11</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>239</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>130</id> <name>exitcond</name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>240</item> <item>242</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>131</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>64</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>64</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>243</item> <item>244</item> <item>245</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>133</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>247</item> </oprand_edges> <opcode>return</opcode> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>134</id> <name></name> <fileName>axi_interfaces.c</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</fileDirectory> <lineNumber>69</lineNumber> <contextFuncName>axi_interfaces</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Interface_Synthesis/lab4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>axi_interfaces.c</first> <second>axi_interfaces</second> </first> <second>69</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>248</item> </oprand_edges> <opcode>br</opcode> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_85"> <Value> <Obj> <type>2</type> <id>236</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_86"> <Value> <Obj> <type>2</type> <id>241</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_87"> <Value> <Obj> <type>2</type> <id>250</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_88"> <Value> <Obj> <type>2</type> <id>253</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_89"> <Value> <Obj> <type>2</type> <id>258</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_90"> <Obj> <type>3</type> <id>42</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_91"> <Obj> <type>3</type> <id>46</id> <name>rewind_header</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_92"> <Obj> <type>3</type> <id>65</id> <name>rewind_init</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>64</item> </node_objs> </item> <item class_id_reference="18" object_id="_93"> <Obj> <type>3</type> <id>132</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>61</count> <item_version>0</item_version> <item>66</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> </node_objs> </item> <item class_id_reference="18" object_id="_94"> <Obj> <type>3</type> <id>135</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>133</item> <item>134</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>122</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_95"> <id>136</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>137</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>138</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>141</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>142</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>143</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>144</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>145</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>146</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>147</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>150</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>151</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>152</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>154</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>155</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>156</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>157</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>158</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>159</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>160</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>162</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>163</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>164</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>166</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>167</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>168</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>169</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>170</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>171</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>172</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>174</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>175</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>176</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>178</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>179</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>180</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>181</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>182</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>183</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>184</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>186</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>187</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>188</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>190</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>191</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>192</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>193</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>194</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>195</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>196</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>198</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>199</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>200</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>202</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>203</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>204</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>205</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>206</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>207</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>208</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>210</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>211</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>212</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>214</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>215</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>216</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>217</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>218</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>219</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>220</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>222</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>223</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>224</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>121</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>226</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>227</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>228</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>229</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>230</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>231</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>232</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>234</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>235</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>237</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>238</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>239</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>240</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>242</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>243</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>244</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>245</id> <edge_type>2</edge_type> <source_obj>135</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>248</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>134</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>249</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>251</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>252</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>254</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>255</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>256</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>257</id> <edge_type>2</edge_type> <source_obj>135</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>259</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>260</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>261</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>262</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>263</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>264</id> <edge_type>2</edge_type> <source_obj>135</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>265</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>266</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>267</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>494</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>495</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_204"> <id>496</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_205"> <id>497</id> <edge_type>2</edge_type> <source_obj>65</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_206"> <id>498</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_207"> <id>499</id> <edge_type>2</edge_type> <source_obj>132</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_208"> <id>500</id> <edge_type>2</edge_type> <source_obj>135</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_209"> <id>501</id> <edge_type>4</edge_type> <source_obj>121</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_210"> <id>502</id> <edge_type>4</edge_type> <source_obj>114</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_211"> <id>503</id> <edge_type>4</edge_type> <source_obj>107</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_212"> <id>504</id> <edge_type>4</edge_type> <source_obj>100</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_213"> <id>505</id> <edge_type>4</edge_type> <source_obj>93</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_214"> <id>506</id> <edge_type>4</edge_type> <source_obj>86</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_215"> <id>507</id> <edge_type>4</edge_type> <source_obj>79</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_216"> <id>508</id> <edge_type>4</edge_type> <source_obj>71</source_obj> <sink_obj>75</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_217"> <mId>1</mId> <mTag>axi_interfaces</mTag> <mType>0</mType> <sub_regions> <count>2</count> <item_version>0</item_version> <item>2</item> <item>3</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>4</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_218"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>42</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_219"> <mId>3</mId> <mTag>For_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>4</count> <item_version>0</item_version> <item>46</item> <item>65</item> <item>132</item> <item>135</item> </basic_blocks> <mII>1</mII> <mDepth>1</mDepth> <mMinTripCount>4</mMinTripCount> <mMaxTripCount>4</mMaxTripCount> <mMinLatency>3</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_220"> <states class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_221"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_222"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_223"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_224"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_225"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_226"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_227"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_228"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_229"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_230"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_231"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_232"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_233"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_234"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_235"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_236"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_237"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_238"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_239"> <id>2</id> <operations> <count>89</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_240"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_242"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_243"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_244"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_245"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_246"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_247"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_248"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_249"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_250"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_251"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_252"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_253"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_254"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_255"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_256"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_257"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_258"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_259"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_260"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_261"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_275"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_276"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_278"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_279"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>85</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_281"> <id>86</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_282"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>90</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_286"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_288"> <id>93</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_290"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_293"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_294"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_295"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_296"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_297"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_298"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_299"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_300"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_301"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_302"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_303"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_304"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_305"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_306"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_307"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_308"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_309"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_310"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_311"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_312"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_313"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_314"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_315"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_316"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_317"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_318"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_319"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_320"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_321"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_322"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_323"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_324"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_325"> <id>130</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_326"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>133</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_329"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>36</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_330"> <inState>2</inState> <outState>2</outState> <condition> <id>41</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="34" tracking_level="1" version="0" object_id="_331"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>0</count> <item_version>0</item_version> </dp_multiplexer_resource> <dp_register_resource> <count>0</count> <item_version>0</item_version> </dp_register_resource> <dp_component_map class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>68</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>41</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>42</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>65</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>132</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>135</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_332"> <region_name>For_Loop</region_name> <basic_blocks> <count>4</count> <item_version>0</item_version> <item>46</item> <item>65</item> <item>132</item> <item>135</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>1</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>63</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>92</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>105</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>111</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>124</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>131</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>137</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>150</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>163</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>170</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>183</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>189</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>215</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>225</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>229</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>233</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>237</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>243</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>249</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>254</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>258</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>262</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>274</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>279</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>283</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>287</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>293</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>299</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>304</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>308</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>312</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>318</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>324</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>329</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>333</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>337</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>343</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>349</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>354</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>362</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>368</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>374</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>379</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>383</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>387</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>393</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>399</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>408</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>412</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>418</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>424</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>429</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>435</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>439</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>445</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>31</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>do_init_phi_fu_200</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>exitcond_fu_439</first> <second> <count>1</count> <item_version>0</item_version> <item>130</item> </second> </item> <item> <first>i1_cast_fu_225</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>i1_phi_fu_215</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>i_1_7_fu_429</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>stg_107_fu_445</first> <second> <count>1</count> <item_version>0</item_version> <item>133</item> </second> </item> <item> <first>tmp_10_fu_424</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>tmp_11_fu_435</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> <item> <first>tmp_1_fu_249</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>tmp_2_1_fu_258</first> <second> <count>1</count> <item_version>0</item_version> <item>81</item> </second> </item> <item> <first>tmp_2_2_fu_283</first> <second> <count>1</count> <item_version>0</item_version> <item>88</item> </second> </item> <item> <first>tmp_2_3_fu_308</first> <second> <count>1</count> <item_version>0</item_version> <item>95</item> </second> </item> <item> <first>tmp_2_4_fu_333</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>tmp_2_5_fu_358</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>tmp_2_6_fu_383</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>tmp_2_7_fu_408</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>tmp_2_fu_233</first> <second> <count>1</count> <item_version>0</item_version> <item>73</item> </second> </item> <item> <first>tmp_3_1_fu_262</first> <second> <count>1</count> <item_version>0</item_version> <item>82</item> </second> </item> <item> <first>tmp_3_2_fu_287</first> <second> <count>1</count> <item_version>0</item_version> <item>89</item> </second> </item> <item> <first>tmp_3_3_fu_312</first> <second> <count>1</count> <item_version>0</item_version> <item>96</item> </second> </item> <item> <first>tmp_3_4_fu_337</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>tmp_3_5_fu_362</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>tmp_3_6_fu_387</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>tmp_3_7_fu_412</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>tmp_3_fu_237</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_4_fu_274</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>tmp_5_fu_299</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>tmp_6_fu_324</first> <second> <count>1</count> <item_version>0</item_version> <item>98</item> </second> </item> <item> <first>tmp_7_fu_349</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>tmp_8_fu_374</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_9_fu_399</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>32</count> <item_version>0</item_version> <item> <first>acc_0_load_load_fu_229</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>acc_1_load_load_fu_254</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>acc_2_load_load_fu_279</first> <second> <count>1</count> <item_version>0</item_version> <item>86</item> </second> </item> <item> <first>acc_3_load_load_fu_304</first> <second> <count>1</count> <item_version>0</item_version> <item>93</item> </second> </item> <item> <first>acc_4_load_load_fu_329</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>acc_5_load_load_fu_354</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>acc_6_load_load_fu_379</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>acc_7_load_load_fu_404</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>d_i_0_read_read_fu_92</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>d_i_1_read_read_fu_105</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> <item> <first>d_i_2_read_read_fu_118</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> <item> <first>d_i_3_read_read_fu_131</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> <item> <first>d_i_4_read_read_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>d_i_5_read_read_fu_157</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>d_i_6_read_read_fu_170</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>d_i_7_read_read_fu_183</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>stg_100_store_fu_418</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>stg_102_write_fu_189</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>stg_50_store_fu_243</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>stg_52_write_fu_98</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>stg_58_store_fu_268</first> <second> <count>1</count> <item_version>0</item_version> <item>83</item> </second> </item> <item> <first>stg_60_write_fu_111</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> <item> <first>stg_65_store_fu_293</first> <second> <count>1</count> <item_version>0</item_version> <item>90</item> </second> </item> <item> <first>stg_67_write_fu_124</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> <item> <first>stg_72_store_fu_318</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>stg_74_write_fu_137</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>stg_79_store_fu_343</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>stg_81_write_fu_150</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>stg_86_store_fu_368</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>stg_88_write_fu_163</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>stg_93_store_fu_393</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>stg_95_write_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>3</count> <item_version>0</item_version> <item> <first>196</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>211</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>447</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>3</count> <item_version>0</item_version> <item> <first>do_init_reg_196</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>i1_reg_211</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>tmp_11_reg_447</first> <second> <count>1</count> <item_version>0</item_version> <item>129</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>196</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>211</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>do_init_reg_196</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>i1_reg_211</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="51" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>d_i_0</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> </second> </item> <item> <first>d_i_1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>80</item> </second> </item> </second> </item> <item> <first>d_i_2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>87</item> </second> </item> </second> </item> <item> <first>d_i_3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>94</item> </second> </item> </second> </item> <item> <first>d_i_4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> </second> </item> <item> <first>d_i_5</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> </second> </item> <item> <first>d_i_6</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> </second> </item> <item> <first>d_i_7</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> </second> </item> <item> <first>d_o_0</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> </second> </item> <item> <first>d_o_1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>85</item> </second> </item> </second> </item> <item> <first>d_o_2</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>92</item> </second> </item> </second> </item> <item> <first>d_o_3</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> </second> </item> <item> <first>d_o_4</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> </second> </item> <item> <first>d_o_5</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> </second> </item> <item> <first>d_o_6</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> </second> </item> <item> <first>d_o_7</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="53" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
25.395944
102
0.586443
df096a1a4b0eb60bec1f55aa86e9a833aa1054dd
23,513
ads
Ada
examples/utils/sdl/stdlib_h.ads
Fabien-Chouteau/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
13
2018-07-31T12:11:46.000Z
2021-11-19T14:16:46.000Z
examples/utils/sdl/stdlib_h.ads
gregkrsak/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
1
2018-10-22T21:41:59.000Z
2018-10-22T21:41:59.000Z
examples/utils/sdl/stdlib_h.ads
gregkrsak/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
4
2020-07-03T10:03:13.000Z
2022-02-10T03:35:07.000Z
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with umingw_h; with Interfaces.C.Strings; with System; with Interfaces.C.Extensions; package stdlib_h is EXIT_SUCCESS : constant := 0; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:30 EXIT_FAILURE : constant := 1; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:31 -- unsupported macro: onexit_t _onexit_t RAND_MAX : constant := 16#7fff#; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:92 -- unsupported macro: MB_CUR_MAX ___mb_cur_max_func() -- unsupported macro: errno (*_errno()) -- unsupported macro: strtod __strtod -- unsupported macro: sys_errlist _sys_errlist -- unsupported macro: sys_nerr _sys_nerr -- unsupported macro: environ _environ type u_onexit_t is access function return int; pragma Convention (C, u_onexit_t); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:36 type u_div_t is record quot : aliased int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:47 c_rem : aliased int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:48 end record; pragma Convention (C_Pass_By_Copy, u_div_t); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:46 subtype div_t is u_div_t; type u_ldiv_t is record quot : aliased long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:52 c_rem : aliased long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:53 end record; pragma Convention (C_Pass_By_Copy, u_ldiv_t); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:51 subtype ldiv_t is u_ldiv_t; type u_LDOUBLE_ld_array is array (0 .. 9) of aliased unsigned_char; type u_LDOUBLE is record ld : aliased u_LDOUBLE_ld_array; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:62 end record; pragma Convention (C_Pass_By_Copy, u_LDOUBLE); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:63 -- skipped anonymous struct anon_1 type u_CRT_DOUBLE is record x : aliased double; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:69 end record; pragma Convention (C_Pass_By_Copy, u_CRT_DOUBLE); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:70 -- skipped anonymous struct anon_2 type u_CRT_FLOAT is record f : aliased float; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:73 end record; pragma Convention (C_Pass_By_Copy, u_CRT_FLOAT); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:74 -- skipped anonymous struct anon_3 type u_LONGDOUBLE is record x : aliased long_double; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:80 end record; pragma Convention (C_Pass_By_Copy, u_LONGDOUBLE); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:81 -- skipped anonymous struct anon_4 -- skipped anonymous struct anon_5 type u_LDBL12_ld12_array is array (0 .. 11) of aliased unsigned_char; type u_LDBL12 is record ld12 : aliased u_LDBL12_ld12_array; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:87 end record; pragma Convention (C_Pass_By_Copy, u_LDBL12); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:88 type u_purecall_handler is access procedure; pragma Convention (C, u_purecall_handler); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:127 -- skipped func _set_purecall_handler -- skipped func _get_purecall_handler type u_invalid_parameter_handler is access procedure (arg1 : access wchar_t; arg2 : access wchar_t; arg3 : access wchar_t; arg4 : unsigned; arg5 : umingw_h.uintptr_t); pragma Convention (C, u_invalid_parameter_handler); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:132 -- skipped func _set_invalid_parameter_handler -- skipped func _get_invalid_parameter_handler -- skipped func _errno -- skipped func _set_errno -- skipped func _get_errno -- skipped func _set_doserrno -- skipped func _get_doserrno -- skipped func _get_pgmptr -- skipped func _get_wpgmptr -- skipped func _set_fmode -- skipped func _get_fmode -- skipped func _get_osplatform -- skipped func _get_osver -- skipped func _get_winver -- skipped func _get_winmajor -- skipped func _get_winminor procedure c_exit (u_Code : int); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:302 pragma Import (C, c_exit, "exit"); -- skipped func _exit -- skipped func _Exit procedure c_abort; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:316 pragma Import (C, c_abort, "abort"); -- skipped func _set_abort_behavior function c_abs (u_X : int) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:325 pragma Import (C, c_abs, "abs"); function labs (u_X : long) return long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:326 pragma Import (C, labs, "labs"); -- skipped func _abs64 function atexit (arg1 : access procedure) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:330 pragma Import (C, atexit, "atexit"); function atof (u_String : Interfaces.C.Strings.chars_ptr) return double; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:333 pragma Import (C, atof, "atof"); -- skipped func _atof_l function atoi (u_Str : Interfaces.C.Strings.chars_ptr) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:336 pragma Import (C, atoi, "atoi"); -- skipped func _atoi_l function atol (u_Str : Interfaces.C.Strings.chars_ptr) return long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:338 pragma Import (C, atol, "atol"); -- skipped func _atol_l function bsearch (u_Key : System.Address; u_Base : System.Address; u_NumOfElements : umingw_h.size_t; u_SizeOfElements : umingw_h.size_t; u_PtFuncCompare : access function (arg1 : System.Address; arg2 : System.Address) return int) return System.Address; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:342 pragma Import (C, bsearch, "bsearch"); procedure qsort (u_Base : System.Address; u_NumOfElements : umingw_h.size_t; u_SizeOfElements : umingw_h.size_t; u_PtFuncCompare : access function (arg1 : System.Address; arg2 : System.Address) return int); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:343 pragma Import (C, qsort, "qsort"); -- skipped func _byteswap_ushort -- skipped func _byteswap_uint64 function div (u_Numerator : int; u_Denominator : int) return div_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:348 pragma Import (C, div, "div"); function getenv (u_VarName : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:349 pragma Import (C, getenv, "getenv"); -- skipped func _itoa -- skipped func _i64toa -- skipped func _ui64toa -- skipped func _atoi64 -- skipped func _atoi64_l -- skipped func _strtoi64 -- skipped func _strtoi64_l -- skipped func _strtoui64 -- skipped func _strtoui64_l function ldiv (u_Numerator : long; u_Denominator : long) return ldiv_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:359 pragma Import (C, ldiv, "ldiv"); -- skipped func _ltoa function mblen (u_Ch : Interfaces.C.Strings.chars_ptr; u_MaxCount : umingw_h.size_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:361 pragma Import (C, mblen, "mblen"); -- skipped func _mblen_l -- skipped func _mbstrlen -- skipped func _mbstrlen_l -- skipped func _mbstrnlen -- skipped func _mbstrnlen_l function mbtowc (u_DstCh : access wchar_t; u_SrcCh : Interfaces.C.Strings.chars_ptr; u_SrcSizeInBytes : umingw_h.size_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:367 pragma Import (C, mbtowc, "mbtowc"); -- skipped func _mbtowc_l function mbstowcs (u_Dest : access wchar_t; u_Source : Interfaces.C.Strings.chars_ptr; u_MaxCount : umingw_h.size_t) return umingw_h.size_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:369 pragma Import (C, mbstowcs, "mbstowcs"); -- skipped func _mbstowcs_l function rand return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:371 pragma Import (C, rand, "rand"); -- skipped func _set_error_mode procedure srand (u_Seed : unsigned); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:373 pragma Import (C, srand, "srand"); function strtof (nptr : Interfaces.C.Strings.chars_ptr; endptr : System.Address) return float; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:378 pragma Import (C, strtof, "strtof"); function strtold (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : System.Address) return long_double; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:379 pragma Import (C, strtold, "strtold"); function strtod (uu_nptr : Interfaces.C.Strings.chars_ptr; uu_endptr : System.Address) return double; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:386 pragma Import (C, strtod, "strtod"); -- skipped func _strtod_l function strtol (u_Str : Interfaces.C.Strings.chars_ptr; u_EndPtr : System.Address; u_Radix : int) return long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:399 pragma Import (C, strtol, "strtol"); -- skipped func _strtol_l function strtoul (u_Str : Interfaces.C.Strings.chars_ptr; u_EndPtr : System.Address; u_Radix : int) return unsigned_long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:401 pragma Import (C, strtoul, "strtoul"); -- skipped func _strtoul_l function c_system (u_Command : Interfaces.C.Strings.chars_ptr) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:405 pragma Import (C, c_system, "system"); -- skipped func _ultoa function wctomb (u_MbCh : Interfaces.C.Strings.chars_ptr; u_WCh : wchar_t) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:408 pragma Import (C, wctomb, "wctomb"); -- skipped func _wctomb_l function wcstombs (u_Dest : Interfaces.C.Strings.chars_ptr; u_Source : access wchar_t; u_MaxCount : umingw_h.size_t) return umingw_h.size_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:410 pragma Import (C, wcstombs, "wcstombs"); -- skipped func _wcstombs_l function calloc (u_NumOfElements : umingw_h.size_t; u_SizeOfElements : umingw_h.size_t) return System.Address; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:415 pragma Import (C, calloc, "calloc"); procedure free (u_Memory : System.Address); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:416 pragma Import (C, free, "free"); function malloc (u_Size : umingw_h.size_t) return System.Address; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:417 pragma Import (C, malloc, "malloc"); function realloc (u_Memory : System.Address; u_NewSize : umingw_h.size_t) return System.Address; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:418 pragma Import (C, realloc, "realloc"); -- skipped func _recalloc -- skipped func _aligned_free -- skipped func _aligned_malloc -- skipped func _aligned_offset_malloc -- skipped func _aligned_realloc -- skipped func _aligned_recalloc -- skipped func _aligned_offset_realloc -- skipped func _aligned_offset_recalloc -- skipped func _itow -- skipped func _ltow -- skipped func _ultow function wcstod (u_Str : access wchar_t; u_EndPtr : System.Address) return double; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:444 pragma Import (C, wcstod, "wcstod"); function wcstof (nptr : access wchar_t; endptr : System.Address) return float; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:452 pragma Import (C, wcstof, "wcstof"); function wcstold (arg1 : access wchar_t; arg2 : System.Address) return long_double; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:453 pragma Import (C, wcstold, "wcstold"); -- skipped func _wcstod_l function wcstol (u_Str : access wchar_t; u_EndPtr : System.Address; u_Radix : int) return long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:456 pragma Import (C, wcstol, "wcstol"); -- skipped func _wcstol_l function wcstoul (u_Str : access wchar_t; u_EndPtr : System.Address; u_Radix : int) return unsigned_long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:458 pragma Import (C, wcstoul, "wcstoul"); -- skipped func _wcstoul_l -- skipped func _wgetenv -- skipped func _wsystem -- skipped func _wtof -- skipped func _wtof_l -- skipped func _wtoi -- skipped func _wtoi_l -- skipped func _wtol -- skipped func _wtol_l -- skipped func _i64tow -- skipped func _ui64tow -- skipped func _wtoi64 -- skipped func _wtoi64_l -- skipped func _wcstoi64 -- skipped func _wcstoi64_l -- skipped func _wcstoui64 -- skipped func _wcstoui64_l -- skipped func _fullpath -- skipped func _ecvt -- skipped func _fcvt -- skipped func _gcvt -- skipped func _atodbl -- skipped func _atoldbl -- skipped func _atoflt -- skipped func _atodbl_l -- skipped func _atoldbl_l -- skipped func _atoflt_l -- skipped func _lrotl -- skipped func _lrotr -- skipped func _makepath -- skipped func _onexit -- skipped func _putenv -- skipped func _rotl64 -- skipped func _rotr -- skipped func _rotl -- skipped func _rotr64 -- skipped func _searchenv -- skipped func _splitpath -- skipped func _swab -- skipped func _wfullpath -- skipped func _wmakepath -- skipped func _wputenv -- skipped func _wsearchenv -- skipped func _wsplitpath -- skipped func _beep -- skipped func _seterrormode -- skipped func _sleep function ecvt (u_Val : double; u_NumOfDigits : int; u_PtDec : access int; u_PtSign : access int) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:574 pragma Import (C, ecvt, "ecvt"); function fcvt (u_Val : double; u_NumOfDec : int; u_PtDec : access int; u_PtSign : access int) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:575 pragma Import (C, fcvt, "fcvt"); function gcvt (u_Val : double; u_NumOfDigits : int; u_DstBuf : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:576 pragma Import (C, gcvt, "gcvt"); function itoa (u_Val : int; u_DstBuf : Interfaces.C.Strings.chars_ptr; u_Radix : int) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:577 pragma Import (C, itoa, "itoa"); function ltoa (u_Val : long; u_DstBuf : Interfaces.C.Strings.chars_ptr; u_Radix : int) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:578 pragma Import (C, ltoa, "ltoa"); function putenv (u_EnvString : Interfaces.C.Strings.chars_ptr) return int; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:579 pragma Import (C, putenv, "putenv"); procedure swab (u_Buf1 : Interfaces.C.Strings.chars_ptr; u_Buf2 : Interfaces.C.Strings.chars_ptr; u_SizeInBytes : int); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:583 pragma Import (C, swab, "swab"); function ultoa (u_Val : unsigned_long; u_Dstbuf : Interfaces.C.Strings.chars_ptr; u_Radix : int) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:586 pragma Import (C, ultoa, "ultoa"); function onexit (u_Func : u_onexit_t) return u_onexit_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:587 pragma Import (C, onexit, "onexit"); -- skipped anonymous struct anon_6 type lldiv_t is record quot : aliased Long_Long_Integer; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:593 c_rem : aliased Long_Long_Integer; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:593 end record; pragma Convention (C_Pass_By_Copy, lldiv_t); -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:593 function lldiv (arg1 : Long_Long_Integer; arg2 : Long_Long_Integer) return lldiv_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:595 pragma Import (C, lldiv, "lldiv"); function llabs (arg1 : Long_Long_Integer) return Long_Long_Integer; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:597 pragma Import (C, llabs, "llabs"); function strtoll (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : System.Address; arg3 : int) return Long_Long_Integer; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:602 pragma Import (C, strtoll, "strtoll"); function strtoull (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : System.Address; arg3 : int) return Extensions.unsigned_long_long; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:603 pragma Import (C, strtoull, "strtoull"); function atoll (arg1 : Interfaces.C.Strings.chars_ptr) return Long_Long_Integer; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:606 pragma Import (C, atoll, "atoll"); function wtoll (arg1 : access wchar_t) return Long_Long_Integer; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:609 pragma Import (C, wtoll, "wtoll"); function lltoa (arg1 : Long_Long_Integer; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:610 pragma Import (C, lltoa, "lltoa"); function ulltoa (arg1 : Extensions.unsigned_long_long; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return Interfaces.C.Strings.chars_ptr; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:611 pragma Import (C, ulltoa, "ulltoa"); function lltow (arg1 : Long_Long_Integer; arg2 : access wchar_t; arg3 : int) return access wchar_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:612 pragma Import (C, lltow, "lltow"); function ulltow (arg1 : Extensions.unsigned_long_long; arg2 : access wchar_t; arg3 : int) return access wchar_t; -- c:\home\ochem\install\bin\../lib/gcc/i686-pc-mingw32/4.7.3/../../../../i686-pc-mingw32/include/stdlib.h:613 pragma Import (C, ulltow, "ulltow"); end stdlib_h;
42.289568
234
0.650576
50e66c403d5c0269094c66bd60da6d444f2df04a
6,391
adb
Ada
tests/kat/duplex_runner.adb
damaki/libkeccak
d06217e525f7927380690d6c37b485bdbe8aa96e
[ "BSD-3-Clause" ]
26
2015-09-20T17:52:38.000Z
2021-07-29T21:47:04.000Z
tests/kat/duplex_runner.adb
damaki/libkeccak
d06217e525f7927380690d6c37b485bdbe8aa96e
[ "BSD-3-Clause" ]
3
2019-03-12T16:01:36.000Z
2020-05-23T13:06:43.000Z
tests/kat/duplex_runner.adb
damaki/libkeccak
d06217e525f7927380690d6c37b485bdbe8aa96e
[ "BSD-3-Clause" ]
2
2019-04-15T18:02:19.000Z
2020-11-22T11:22:18.000Z
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- 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. -- * The name of the copyright holder may not 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 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 Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Text_IO; with Ada.Unchecked_Deallocation; with Interfaces; use Interfaces; with Keccak.Types; with Test_Vectors; use Test_Vectors; package body Duplex_Runner is procedure Free is new Ada.Unchecked_Deallocation (Object => Keccak.Types.Byte_Array, Name => Byte_Array_Access); procedure Run_Tests (File_Name : in String; Capacity : in Positive; Num_Passed : out Natural; Num_Failed : out Natural) is use type Keccak.Types.Byte_Array; package Integer_IO is new Ada.Text_IO.Integer_IO(Integer); InLen_Key : constant Unbounded_String := To_Unbounded_String("InLen"); In_Key : constant Unbounded_String := To_Unbounded_String("In"); OutLen_Key : constant Unbounded_String := To_Unbounded_String("OutLen"); Out_Key : constant Unbounded_String := To_Unbounded_String("Out"); Schema : Test_Vectors.Schema_Maps.Map; Tests : Test_Vectors.Lists.List; Ctx : Duplex.Context; Output : Byte_Array_Access; OutLen : Natural; begin Num_Passed := 0; Num_Failed := 0; -- Setup schema Schema.Insert (Key => InLen_Key, New_Item => Schema_Entry'(VType => Integer_Type, Required => True, Is_List => False)); Schema.Insert (Key => In_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => True, Is_List => False)); Schema.Insert (Key => OutLen_Key, New_Item => Schema_Entry'(VType => Integer_Type, Required => True, Is_List => False)); Schema.Insert (Key => Out_Key, New_Item => Schema_Entry'(VType => Hex_Array_Type, Required => True, Is_List => False)); -- Load the test file using the file name given on the command line Ada.Text_IO.Put_Line("Loading file: " & File_Name); Test_Vectors.Load (File_Name => File_Name, Schema => Schema, Vectors_List => Tests); Ada.Text_IO.Put ("Running "); Integer_IO.Put (Integer (Tests.Length), Width => 0); Ada.Text_IO.Put_Line (" tests ..."); Duplex.Init (Ctx => Ctx, Capacity => Capacity); -- Run each test. -- -- Note: The tests must be executed in the correct order, since each -- KAT test continues from the state of the previous test. -- This is why the context is only initialized once before the -- tests start (see above). for C of Tests loop Output := new Keccak.Types.Byte_Array (C.Element (Out_Key).First_Element.Hex.all'Range); Duplex.Duplex (Ctx => Ctx, In_Data => C.Element (In_Key).First_Element.Hex.all, In_Data_Bit_Length => C.Element (InLen_Key).First_Element.Int, Out_Data => Output.all, Out_Data_Bit_Length => C.Element (OutLen_Key).First_Element.Int); -- Mask any unused bits from the output. OutLen := C.Element (OutLen_Key).First_Element.Int; if OutLen mod 8 /= 0 then Output.all(Output.all'Last) := Output.all(Output.all'Last) and Keccak.Types.Byte((2**(OutLen mod 8)) - 1); end if; -- Check output if Output.all = C.Element(Out_Key).First_Element.Hex.all then Num_Passed := Num_Passed + 1; else Num_Failed := Num_Failed + 1; -- Display a message on failure to help with debugging. Ada.Text_IO.Put("FAILURE (Input bit-len: "); Integer_IO.Put(C.Element (InLen_Key).First_Element.Int, Width => 0); Ada.Text_IO.Put_Line(")"); Ada.Text_IO.Put(" Expected MD: "); Ada.Text_IO.Put(Byte_Array_To_String (C.Element(Out_Key).First_Element.Hex.all)); Ada.Text_IO.New_Line; Ada.Text_IO.Put(" Actual MD: "); Ada.Text_IO.Put(Byte_Array_To_String(Output.all)); Ada.Text_IO.New_Line; end if; Free (Output); end loop; end Run_Tests; end Duplex_Runner;
42.892617
118
0.575497
1c0846e6c2b755a6100a2b8f805aef25303f6a46
4,117
adb
Ada
src/sdl-video.adb
rveenker/sdlada
2ef55d2100b248db44c89cb3a9f20038e453f330
[ "Zlib" ]
1
2021-10-30T14:41:56.000Z
2021-10-30T14:41:56.000Z
src/sdl-video.adb
rveenker/sdlada
2ef55d2100b248db44c89cb3a9f20038e453f330
[ "Zlib" ]
null
null
null
src/sdl-video.adb
rveenker/sdlada
2ef55d2100b248db44c89cb3a9f20038e453f330
[ "Zlib" ]
null
null
null
-------------------------------------------------------------------------------------------------------------------- -- Copyright (c) 2013-2020, Luke A. Guest -- -- This software is provided 'as-is', without any express or implied -- warranty. In no event will the authors be held liable for any damages -- arising from the use of this software. -- -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it -- freely, subject to the following restrictions: -- -- 1. The origin of this software must not be misrepresented; you must not -- claim that you wrote the original software. If you use this software -- in a product, an acknowledgment in the product documentation would be -- appreciated but is not required. -- -- 2. Altered source versions must be plainly marked as such, and must not be -- misrepresented as being the original software. -- -- 3. This notice may not be removed or altered from any source -- distribution. -------------------------------------------------------------------------------------------------------------------- with Interfaces.C; with Interfaces.C.Strings; with SDL.Error; package body SDL.Video is use type C.int; function Is_Screen_Saver_Enabled return Boolean is function SDL_Is_Screen_Saver_Enabled return C.int with Import => True, Convention => C, External_Name => "SDL_IsScreenSaverEnabled"; begin return (if SDL_Is_Screen_Saver_Enabled = 1 then True else False); end Is_Screen_Saver_Enabled; function Initialise (Name : in String) return Boolean is function SDL_Video_Init (C_Name : in C.Strings.chars_ptr) return C.int with Import => True, Convention => C, External_Name => "SDL_VideoInit"; C_Str : C.Strings.chars_ptr := C.Strings.Null_Ptr; Result : C.int; begin if Name /= "" then C_Str := C.Strings.New_String (Name); Result := SDL_Video_Init (C_Name => C_Str); C.Strings.Free (C_Str); else Result := SDL_Video_Init (C_Name => C.Strings.Null_Ptr); end if; return (Result = Success); end Initialise; function Total_Drivers return Positive is function SDL_Get_Num_Video_Drivers return C.int with Import => True, Convention => C, External_Name => "SDL_GetNumVideoDrivers"; Num : constant C.int := SDL_Get_Num_Video_Drivers; begin if Num < 0 then raise Video_Error with SDL.Error.Get; end if; return Positive (Num); end Total_Drivers; function Driver_Name (Index : in Positive) return String is function SDL_Get_Video_Driver (I : in C.int) return C.Strings.chars_ptr with Import => True, Convention => C, External_Name => "SDL_GetVideoDriver"; -- Index is zero based, so need to subtract 1 to correct it. C_Str : C.Strings.chars_ptr := SDL_Get_Video_Driver (C.int (Index) - 1); begin return C.Strings.Value (C_Str); end Driver_Name; function Current_Driver_Name return String is function SDL_Get_Current_Video_Driver return C.Strings.chars_ptr with Import => True, Convention => C, External_Name => "SDL_GetCurrentVideoDriver"; C_Str : constant C.Strings.chars_ptr := SDL_Get_Current_Video_Driver; use type C.Strings.chars_ptr; begin if C_Str = C.Strings.Null_Ptr then raise Video_Error with SDL.Error.Get; end if; return C.Strings.Value (C_Str); end Current_Driver_Name; function Total_Displays return Positive is function SDL_Get_Num_Video_Displays return C.int with Import => True, Convention => C, External_Name => "SDL_GetNumVideoDisplays"; Num : constant C.int := SDL_Get_Num_Video_Displays; begin if Num <= 0 then raise Video_Error with SDL.Error.Get; end if; return Positive (Num); end Total_Displays; end SDL.Video;
34.308333
116
0.625698
507145f98e760a2714ab7fa7451937faa025422e
5,343
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-wtinio.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-wtinio.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-wtinio.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . I N T E G E R _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2009, 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.Wide_Text_IO.Integer_Aux; with System.WCh_Con; use System.WCh_Con; with System.WCh_WtS; use System.WCh_WtS; package body Ada.Wide_Text_IO.Integer_IO is Need_LLI : constant Boolean := Num'Base'Size > Integer'Size; -- Throughout this generic body, we distinguish between the case where type -- Integer is acceptable, and where a Long_Long_Integer is needed. This -- Boolean is used to test for these cases and since it is a constant, only -- code for the relevant case will be included in the instance. subtype TFT is Ada.Wide_Text_IO.File_Type; -- File type required for calls to routines in Aux package Aux renames Ada.Wide_Text_IO.Integer_Aux; --------- -- Get -- --------- procedure Get (File : File_Type; Item : out Num; Width : Field := 0) is begin if Need_LLI then Aux.Get_LLI (TFT (File), Long_Long_Integer (Item), Width); else Aux.Get_Int (TFT (File), Integer (Item), Width); end if; exception when Constraint_Error => raise Data_Error; end Get; procedure Get (Item : out Num; Width : Field := 0) is begin Get (Current_Input, Item, Width); end Get; procedure Get (From : Wide_String; Item : out Num; Last : out Positive) is S : constant String := Wide_String_To_String (From, WCEM_Upper); -- String on which we do the actual conversion. Note that the method -- used for wide character encoding is irrelevant, since if there is -- a character outside the Standard.Character range then the call to -- Aux.Gets will raise Data_Error in any case. begin if Need_LLI then Aux.Gets_LLI (S, Long_Long_Integer (Item), Last); else Aux.Gets_Int (S, Integer (Item), Last); end if; exception when Constraint_Error => raise Data_Error; end Get; --------- -- Put -- --------- procedure Put (File : File_Type; Item : Num; Width : Field := Default_Width; Base : Number_Base := Default_Base) is begin if Need_LLI then Aux.Put_LLI (TFT (File), Long_Long_Integer (Item), Width, Base); else Aux.Put_Int (TFT (File), Integer (Item), Width, Base); end if; end Put; procedure Put (Item : Num; Width : Field := Default_Width; Base : Number_Base := Default_Base) is begin Put (Current_Output, Item, Width, Base); end Put; procedure Put (To : out Wide_String; Item : Num; Base : Number_Base := Default_Base) is S : String (To'First .. To'Last); begin if Need_LLI then Aux.Puts_LLI (S, Long_Long_Integer (Item), Base); else Aux.Puts_Int (S, Integer (Item), Base); end if; for J in S'Range loop To (J) := Wide_Character'Val (Character'Pos (S (J))); end loop; end Put; end Ada.Wide_Text_IO.Integer_IO;
36.59589
79
0.505334
0ba76698884f7c52f685412c3960fc59d8230253
4,965
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/exp_sel.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/exp_sel.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/exp_sel.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ S E L -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2016, 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. -- -- -- ------------------------------------------------------------------------------ -- Routines used in Chapter 9 for the expansion of dispatching triggers in -- select statements (Ada 2005: AI-345) with Types; use Types; package Exp_Sel is function Build_Abort_Block (Loc : Source_Ptr; Abr_Blk_Ent : Entity_Id; Cln_Blk_Ent : Entity_Id; Blk : Node_Id) return Node_Id; -- Generate: -- begin -- Blk -- exception -- when Abort_Signal => Abort_Undefer / null; -- end; -- Abr_Blk_Ent is the name of the generated block, Cln_Blk_Ent is the name -- of the encapsulated cleanup block, Blk is the actual block name. -- The exception handler code is built by Build_Abort_Block_Handler. function Build_Abort_Block_Handler (Loc : Source_Ptr) return Node_Id; -- Generate if front-end exception: -- when others => -- Abort_Undefer; -- or if back-end exception: -- when others => -- null; -- This is an exception handler to stop propagation of aborts, without -- modifying the deferal level. function Build_B (Loc : Source_Ptr; Decls : List_Id) return Entity_Id; -- Generate: -- B : Boolean := False; -- Append the object declaration to the list and return its defining -- identifier. function Build_C (Loc : Source_Ptr; Decls : List_Id) return Entity_Id; -- Generate: -- C : Ada.Tags.Prim_Op_Kind; -- Append the object declaration to the list and return its defining -- identifier. function Build_Cleanup_Block (Loc : Source_Ptr; Blk_Ent : Entity_Id; Stmts : List_Id; Clean_Ent : Entity_Id) return Node_Id; -- Generate: -- declare -- procedure _clean is -- begin -- ... -- end _clean; -- begin -- Stmts -- at end -- _clean; -- end; -- Blk_Ent is the name of the generated block, Stmts is the list of -- encapsulated statements and Clean_Ent is the parameter to the -- _clean procedure. function Build_K (Loc : Source_Ptr; Decls : List_Id; Obj : Entity_Id) return Entity_Id; -- Generate -- K : Ada.Tags.Tagged_Kind := -- Ada.Tags.Get_Tagged_Kind (Ada.Tags.Tag (Obj)); -- where Obj is the pointer to a secondary table. Append the object -- declaration to the list and return its defining identifier. function Build_S (Loc : Source_Ptr; Decls : List_Id) return Entity_Id; -- Generate: -- S : Integer; -- Append the object declaration to the list and return its defining -- identifier. function Build_S_Assignment (Loc : Source_Ptr; S : Entity_Id; Obj : Entity_Id; Call_Ent : Entity_Id) return Node_Id; -- Generate: -- S := Ada.Tags.Get_Offset_Index ( -- Ada.Tags.Tag (Obj), DT_Position (Call_Ent)); -- where Obj is the pointer to a secondary table, Call_Ent is the entity -- of the dispatching call name. Return the generated assignment. end Exp_Sel;
40.040323
78
0.520242
1cd7ec68a97c2c1ec45c5515b496f1384364bf75
2,496
adb
Ada
test/unit/src/test_streams.adb
Statkus/json-ada
5f0d6a62e1f8adcc534fa90b763f033c5421b493
[ "Apache-2.0" ]
null
null
null
test/unit/src/test_streams.adb
Statkus/json-ada
5f0d6a62e1f8adcc534fa90b763f033c5421b493
[ "Apache-2.0" ]
null
null
null
test/unit/src/test_streams.adb
Statkus/json-ada
5f0d6a62e1f8adcc534fa90b763f033c5421b493
[ "Apache-2.0" ]
null
null
null
-- 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 Ada.Streams.Stream_IO; with Ada.Unchecked_Deallocation; with Ahven; use Ahven; with JSON.Parsers; with JSON.Streams; with JSON.Types; package body Test_Streams is package Types is new JSON.Types (Long_Integer, Long_Float); package Parsers is new JSON.Parsers (Types); overriding procedure Initialize (T : in out Test) is begin T.Set_Name ("Streams"); T.Add_Test_Routine (Test_Stream_IO'Access, "Parse float_number.txt"); end Initialize; use Types; use Ada.Streams; type Stream_Element_Array_Access is access Stream_Element_Array; procedure Free is new Ada.Unchecked_Deallocation (Object => Stream_Element_Array, Name => Stream_Element_Array_Access); procedure Test_Stream_IO is File : Stream_IO.File_Type; File_Name : constant String := "float_number.txt"; Bytes : Stream_Element_Array_Access; begin Stream_IO.Open (File, Stream_IO.In_File, File_Name); declare File_Size : constant Stream_Element_Offset := Stream_Element_Offset (Stream_IO.Size (File)); subtype Byte_Array is Stream_Element_Array (1 .. File_Size); begin Bytes := new Byte_Array; Byte_Array'Read (Stream_IO.Stream (File), Bytes.all); declare Stream : JSON.Streams.Stream'Class := JSON.Streams.Create_Stream (Bytes); Allocator : Types.Memory_Allocator; Value : constant JSON_Value := Parsers.Parse (Stream, Allocator); begin Assert (Value.Kind = Float_Kind, "Not a float"); Assert (Value.Value = 3.14, "Expected float value to be equal to 3.14"); end; end; Stream_IO.Close (File); Free (Bytes); exception when others => Stream_IO.Close (File); Free (Bytes); raise; end Test_Stream_IO; end Test_Streams;
30.439024
88
0.678285
1cc21811fc2e81b30860489c6ee43864d62463dc
3,741
adb
Ada
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-expint.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-expint.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-expint.adb
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . E X P I N T -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2019, 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. -- -- -- ------------------------------------------------------------------------------ package body System.Exp_Int is ----------------- -- Exp_Integer -- ----------------- -- Note that negative exponents get a constraint error because the -- subtype of the Right argument (the exponent) is Natural. function Exp_Integer (Left : Integer; Right : Natural) return Integer is Result : Integer := 1; Factor : Integer := Left; Exp : Natural := Right; begin -- We use the standard logarithmic approach, Exp gets shifted right -- testing successive low order bits and Factor is the value of the -- base raised to the next power of 2. -- Note: it is not worth special casing base values -1, 0, +1 since -- the expander does this when the base is a literal, and other cases -- will be extremely rare. if Exp /= 0 then loop if Exp rem 2 /= 0 then declare pragma Unsuppress (All_Checks); begin Result := Result * Factor; end; end if; Exp := Exp / 2; exit when Exp = 0; declare pragma Unsuppress (All_Checks); begin Factor := Factor * Factor; end; end loop; end if; return Result; end Exp_Integer; end System.Exp_Int;
44.535714
78
0.423416
1cc19c75e170dad7cb9e916653cdbc058f9cb661
829
adb
Ada
Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/exec_changed/first.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/exec_changed/first.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/exec_changed/first.adb
samyvic/OS-Project
1622bc1641876584964effd91d65ef02e92728e1
[ "Apache-2.0" ]
null
null
null
-- Copyright 2005-2017 Free Software Foundation, Inc. -- -- This program 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 3 of the License, or -- (at your option) any later version. -- -- This program 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 program. If not, see <http://www.gnu.org/licenses/>. procedure First is procedure Break_Me is begin null; end Break_Me; begin Break_Me; end First;
31.884615
73
0.728589
1cb32a64eabb93aec7c6ab6b590b2e45655e923f
892
adb
Ada
gnu/src/gdb/gdb/testsuite/gdb.ada/char_enum/foo.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/char_enum/foo.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/char_enum/foo.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
-- Copyright 2011-2015 Free Software Foundation, Inc. -- -- This program 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 3 of the License, or -- (at your option) any later version. -- -- This program 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 program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo is type Char_Enum_Type is ('A', 'B', 'C', 'D', 'E'); Char : Char_Enum_Type := 'D'; begin Do_Nothing (Char'Address); -- STOP end Foo;
37.166667
73
0.711883
dca0c422d10e03257f09a5db11a118d8403936e8
2,095
ads
Ada
src/sys/os-windows/util-systems-dlls.ads
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
60
2015-01-18T23:05:34.000Z
2022-03-20T18:56:30.000Z
src/sys/os-windows/util-systems-dlls.ads
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
20
2016-09-15T16:41:30.000Z
2022-03-29T22:02:32.000Z
src/sys/os-windows/util-systems-dlls.ads
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
10
2015-02-13T04:00:45.000Z
2022-03-20T18:57:54.000Z
----------------------------------------------------------------------- -- util-systems-dlls -- Windows shared library support -- Copyright (C) 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. ----------------------------------------------------------------------- with System; with Interfaces.C; package Util.Systems.DLLs is -- The shared library handle. type Handle is private; Null_Handle : constant Handle; -- Exception raised when there is a problem loading a shared library. Load_Error : exception; -- Exception raised when a symbol cannot be found in a shared library. Not_Found : exception; Extension : constant String := ".dll"; subtype Flags is Interfaces.C.int; -- Load the shared library with the given name or path and return a library handle. -- Raises the <tt>Load_Error</tt> exception if the library cannot be loaded. function Load (Path : in String; Mode : in Flags := 0) return Handle; -- Unload the shared library. procedure Unload (Lib : in Handle); -- Get a global symbol with the given name in the library. -- Raises the <tt>Not_Found</tt> exception if the symbol does not exist. function Get_Symbol (Lib : in Handle; Name : in String) return System.Address; private type Handle is new System.Address; Null_Handle : constant Handle := Handle (System.Null_Address); end Util.Systems.DLLs;
34.916667
88
0.632936
fb9e5c58a2e77abd47916641908a3cc6e2d74637
2,961
ads
Ada
boards/stm32_common/stm32f746disco/framebuffer_rk043fn48h.ads
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
boards/stm32f746_discovery/src/framebuffer_rk043fn48h.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
boards/stm32f746_discovery/src/framebuffer_rk043fn48h.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, 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 HAL.Framebuffer; use HAL.Framebuffer; with Framebuffer_LTDC; package Framebuffer_RK043FN48H is LCD_Natural_Width : constant := 480; LCD_Natural_Height : constant := 272; type Frame_Buffer is limited new Framebuffer_LTDC.Frame_Buffer with private; procedure Initialize (Display : in out Frame_Buffer; Orientation : HAL.Framebuffer.Display_Orientation := Default; Mode : HAL.Framebuffer.Wait_Mode := Interrupt); private type Frame_Buffer is limited new Framebuffer_LTDC.Frame_Buffer with null record; end Framebuffer_RK043FN48H;
54.833333
79
0.552854
d09c211c3232e58e6b832ade9f2647efdc3e8e5b
9,618
adb
Ada
src/el-contexts-default.adb
Letractively/ada-el
43b155ed10b48e1cbba619fb8fd0d170da138653
[ "Apache-2.0" ]
null
null
null
src/el-contexts-default.adb
Letractively/ada-el
43b155ed10b48e1cbba619fb8fd0d170da138653
[ "Apache-2.0" ]
null
null
null
src/el-contexts-default.adb
Letractively/ada-el
43b155ed10b48e1cbba619fb8fd0d170da138653
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- EL.Contexts -- Default contexts for evaluating an expression -- Copyright (C) 2009, 2010, 2011, 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. ----------------------------------------------------------------------- with Ada.Unchecked_Deallocation; with EL.Variables.Default; package body EL.Contexts.Default is procedure Free is new Ada.Unchecked_Deallocation (Object => EL.Variables.Variable_Mapper'Class, Name => EL.Variables.Variable_Mapper_Access); -- ------------------------------ -- Retrieves the ELResolver associated with this ELcontext. -- ------------------------------ overriding function Get_Resolver (Context : Default_Context) return ELResolver_Access is begin return Context.Resolver; end Get_Resolver; -- ------------------------------ -- Set the ELResolver associated with this ELcontext. -- ------------------------------ procedure Set_Resolver (Context : in out Default_Context; Resolver : in ELResolver_Access) is begin Context.Resolver := Resolver; end Set_Resolver; -- ------------------------------ -- Retrieves the Variable_Mapper associated with this ELContext. -- ------------------------------ overriding function Get_Variable_Mapper (Context : Default_Context) return access EL.Variables.Variable_Mapper'Class is begin return Context.Var_Mapper; end Get_Variable_Mapper; -- ------------------------------ -- Retrieves the Function_Mapper associated with this ELContext. -- The Function_Mapper is only used when parsing an expression. -- ------------------------------ overriding function Get_Function_Mapper (Context : Default_Context) return EL.Functions.Function_Mapper_Access is begin return Context.Function_Mapper; end Get_Function_Mapper; -- ------------------------------ -- Set the function mapper to be used when parsing an expression. -- ------------------------------ overriding procedure Set_Function_Mapper (Context : in out Default_Context; Mapper : access EL.Functions.Function_Mapper'Class) is begin if Mapper = null then Context.Function_Mapper := null; else Context.Function_Mapper := Mapper.all'Unchecked_Access; end if; end Set_Function_Mapper; -- ------------------------------ -- Set the Variable_Mapper associated with this ELContext. -- ------------------------------ overriding procedure Set_Variable_Mapper (Context : in out Default_Context; Mapper : access EL.Variables.Variable_Mapper'Class) is use EL.Variables; begin if Context.Var_Mapper_Created then Free (Context.Var_Mapper); end if; if Mapper = null then Context.Var_Mapper := null; else Context.Var_Mapper := Mapper.all'Unchecked_Access; end if; end Set_Variable_Mapper; procedure Set_Variable (Context : in out Default_Context; Name : in String; Value : access Util.Beans.Basic.Readonly_Bean'Class) is use EL.Variables; begin if Context.Var_Mapper = null then Context.Var_Mapper := new EL.Variables.Default.Default_Variable_Mapper; Context.Var_Mapper_Created := True; end if; Context.Var_Mapper.Bind (Name, EL.Objects.To_Object (Value, EL.Objects.STATIC)); end Set_Variable; -- Handle the exception during expression evaluation. overriding procedure Handle_Exception (Context : in Default_Context; Ex : in Ada.Exceptions.Exception_Occurrence) is begin null; end Handle_Exception; -- ------------------------------ -- Guarded Context -- ------------------------------ -- ------------------------------ -- Retrieves the ELResolver associated with this ELcontext. -- ------------------------------ overriding function Get_Resolver (Context : in Guarded_Context) return ELResolver_Access is begin return Context.Context.Get_Resolver; end Get_Resolver; -- ------------------------------ -- Retrieves the Variable_Mapper associated with this ELContext. -- ------------------------------ overriding function Get_Variable_Mapper (Context : in Guarded_Context) return access EL.Variables.Variable_Mapper'Class is begin return Context.Context.Get_Variable_Mapper; end Get_Variable_Mapper; -- ------------------------------ -- Retrieves the Function_Mapper associated with this ELContext. -- The Function_Mapper is only used when parsing an expression. -- ------------------------------ overriding function Get_Function_Mapper (Context : in Guarded_Context) return EL.Functions.Function_Mapper_Access is begin return Context.Context.Get_Function_Mapper; end Get_Function_Mapper; -- ------------------------------ -- Set the function mapper to be used when parsing an expression. -- ------------------------------ overriding procedure Set_Function_Mapper (Context : in out Guarded_Context; Mapper : access EL.Functions.Function_Mapper'Class) is begin Context.Context.Set_Function_Mapper (Mapper); end Set_Function_Mapper; -- ------------------------------ -- Set the Variable_Mapper associated with this ELContext. -- ------------------------------ overriding procedure Set_Variable_Mapper (Context : in out Guarded_Context; Mapper : access EL.Variables.Variable_Mapper'Class) is begin Context.Context.Set_Variable_Mapper (Mapper); end Set_Variable_Mapper; -- ------------------------------ -- Handle the exception during expression evaluation. -- ------------------------------ overriding procedure Handle_Exception (Context : in Guarded_Context; Ex : in Ada.Exceptions.Exception_Occurrence) is begin Context.Handler.all (Ex); end Handle_Exception; -- ------------------------------ -- Get the value associated with a base object and a given property. -- ------------------------------ overriding function Get_Value (Resolver : Default_ELResolver; Context : ELContext'Class; Base : access Util.Beans.Basic.Readonly_Bean'Class; Name : Unbounded_String) return Object is pragma Unreferenced (Context); Key : constant String := To_String (Name); begin if Base /= null then return Base.Get_Value (Key); end if; declare Pos : constant Objects.Maps.Cursor := Resolver.Map.Find (Key); begin if Objects.Maps.Has_Element (Pos) then return Objects.Maps.Element (Pos); end if; end; return Util.Beans.Objects.Null_Object; end Get_Value; -- ------------------------------ -- Set the value associated with a base object and a given property. -- ------------------------------ overriding procedure Set_Value (Resolver : in out Default_ELResolver; Context : in ELContext'Class; Base : access Util.Beans.Basic.Bean'Class; Name : in Unbounded_String; Value : in Object) is begin null; end Set_Value; -- ------------------------------ -- Register the value under the given name. -- ------------------------------ procedure Register (Resolver : in out Default_ELResolver; Name : in Unbounded_String; Value : in Util.Beans.Basic.Readonly_Bean_Access) is begin Resolver.Register (Name, To_Object (Value)); end Register; -- ------------------------------ -- Register the value under the given name. -- ------------------------------ procedure Register (Resolver : in out Default_ELResolver; Name : in Unbounded_String; Value : in EL.Objects.Object) is Key : constant String := To_String (Name); begin Objects.Maps.Include (Resolver.Map, Key, Value); end Register; overriding procedure Finalize (Obj : in out Default_Context) is begin if Obj.Var_Mapper_Created then Free (Obj.Var_Mapper); end if; end Finalize; end EL.Contexts.Default;
38.318725
90
0.54502
20bf5f43f490860680fce8e584d1ca6e4650d17e
115,612
adb
Ada
vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls/prj/sol/.autopilot/db/cceip_kernel.sched.adb
Wolf-Tungsten/Project-Zipline-FPGA
514e547622d0618fd02c1c7894218204a37d4acd
[ "MIT" ]
null
null
null
vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls/prj/sol/.autopilot/db/cceip_kernel.sched.adb
Wolf-Tungsten/Project-Zipline-FPGA
514e547622d0618fd02c1c7894218204a37d4acd
[ "MIT" ]
1
2022-02-07T11:14:38.000Z
2022-02-07T12:01:44.000Z
vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls/prj/sol/.autopilot/db/cceip_kernel.sched.adb
Wolf-Tungsten/Project-Zipline-Alveo-U280
df845d1f6ec5a1e7dcfaabc8b78803a9a4b3a7ed
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>cceip_kernel</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>m00_axi</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>4</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>input_size</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input_size</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>input_addr</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input_addr</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>output_size_addr</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>output_size_addr</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>output_addr</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>output_addr</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>42</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_6"> <Value> <Obj> <type>0</type> <id>6</id> <name>input_addr_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input_addr</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>81</item> <item>82</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>input_addr1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>62</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>84</item> <item>85</item> <item>87</item> <item>89</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>90</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>m00_axi_addr</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>91</item> <item>92</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>13</id> <name>m00_axi_input_buffer</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>46</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>46</second> </item> </second> </item> </inlineStackInfo> <originalName>m00_axi_input_buffer</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>94</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>14</id> <name>m00_axi_output_buffer</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName>m00_axi_output_buffer</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>95</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>22</id> <name>m00_axi_addr_rd_req</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>97</item> <item>98</item> <item>100</item> </oprand_edges> <opcode>readreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>23</id> <name>_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>101</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>25</id> <name>phi_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>103</item> <item>104</item> <item>105</item> <item>106</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>26</id> <name>icmp_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>107</item> <item>109</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.64</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>28</id> <name>add_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>110</item> <item>112</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.75</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>29</id> <name>_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>34</id> <name>zext_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>117</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>35</id> <name>m00_axi_addr_read</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>119</item> <item>120</item> <item>404</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>36</id> <name>m00_axi_input_buffer_addr</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>121</item> <item>123</item> <item>124</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>37</id> <name>m00_axi_input_buffer_addr_write_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>125</item> <item>126</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>39</id> <name>_ln55</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>55</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>55</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>127</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>41</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>43</id> <name>i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>128</item> <item>129</item> <item>130</item> <item>131</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>45</id> <name>icmp_ln58</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>132</item> <item>133</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.64</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>47</id> <name>i</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>134</item> <item>135</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.75</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>48</id> <name>_ln58</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>136</item> <item>137</item> <item>138</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>50</id> <name>zext_ln59</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>144</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>51</id> <name>m00_axi_input_buffer_addr_1</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>145</item> <item>146</item> <item>147</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>52</id> <name>m00_axi_input_buffer_load</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>148</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>53</id> <name>add_ln59</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>149</item> <item>151</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.88</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>54</id> <name>m00_axi_output_buffer_addr</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>152</item> <item>153</item> <item>154</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>55</id> <name>m00_axi_output_buffer_addr_write_ln59</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>59</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>59</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>155</item> <item>156</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>56</id> <name>_ln58</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>58</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>58</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>157</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>58</id> <name>m00_axi_addr_wr_req</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>142</item> <item>405</item> </oprand_edges> <opcode>writereq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>59</id> <name>_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>143</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>61</id> <name>phi_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>158</item> <item>159</item> <item>160</item> <item>161</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>62</id> <name>icmp_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>162</item> <item>163</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.64</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>64</id> <name>add_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>164</item> <item>165</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.75</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>65</id> <name>_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>166</item> <item>167</item> <item>168</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>70</id> <name>zext_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>71</id> <name>m00_axi_output_buffer_addr_1</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>170</item> <item>171</item> <item>172</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>72</id> <name>m00_axi_output_buffer_load</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>173</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>73</id> <name>m00_axi_addr_write_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>6</count> <item_version>0</item_version> <item>175</item> <item>176</item> <item>177</item> <item>179</item> <item>407</item> <item>408</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>75</id> <name>_ln63</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>180</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>77</id> <name>m00_axi_addr_wr_resp</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>63</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>63</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>182</item> <item>183</item> <item>406</item> </oprand_edges> <opcode>writeresp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>8.75</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>78</id> <name>_ln66</name> <fileName>../cceip_kernel_cmodel.cpp</fileName> <fileDirectory>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</fileDirectory> <lineNumber>66</lineNumber> <contextFuncName>cceip_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/nvme0n1/gaoruihao/zipline/Project-Zipline-FPGA/vitis-wrapper/cceip_wrapper/vivado_rtl_kernel/cceip_kernel_ex/imports/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../cceip_kernel_cmodel.cpp</first> <second>cceip_kernel</second> </first> <second>66</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_48"> <Value> <Obj> <type>2</type> <id>86</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_49"> <Value> <Obj> <type>2</type> <id>88</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_50"> <Value> <Obj> <type>2</type> <id>93</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_51"> <Value> <Obj> <type>2</type> <id>99</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4096</content> </item> <item class_id_reference="16" object_id="_52"> <Value> <Obj> <type>2</type> <id>102</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_53"> <Value> <Obj> <type>2</type> <id>108</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>4096</content> </item> <item class_id_reference="16" object_id="_54"> <Value> <Obj> <type>2</type> <id>111</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>13</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_55"> <Value> <Obj> <type>2</type> <id>122</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_56"> <Value> <Obj> <type>2</type> <id>150</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_57"> <Value> <Obj> <type>2</type> <id>178</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_58"> <Obj> <type>3</type> <id>24</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>13</item> <item>14</item> <item>22</item> <item>23</item> </node_objs> </item> <item class_id_reference="18" object_id="_59"> <Obj> <type>3</type> <id>30</id> <name>burst.rd.header</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>25</item> <item>26</item> <item>28</item> <item>29</item> </node_objs> </item> <item class_id_reference="18" object_id="_60"> <Obj> <type>3</type> <id>40</id> <name>burstread.region</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>39</item> </node_objs> </item> <item class_id_reference="18" object_id="_61"> <Obj> <type>3</type> <id>42</id> <name>burst.rd.end.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_62"> <Obj> <type>3</type> <id>49</id> <name>burst.rd.end</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>43</item> <item>45</item> <item>47</item> <item>48</item> </node_objs> </item> <item class_id_reference="18" object_id="_63"> <Obj> <type>3</type> <id>57</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> </node_objs> </item> <item class_id_reference="18" object_id="_64"> <Obj> <type>3</type> <id>60</id> <name>burst.wr.header.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>58</item> <item>59</item> </node_objs> </item> <item class_id_reference="18" object_id="_65"> <Obj> <type>3</type> <id>66</id> <name>burst.wr.header</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>61</item> <item>62</item> <item>64</item> <item>65</item> </node_objs> </item> <item class_id_reference="18" object_id="_66"> <Obj> <type>3</type> <id>76</id> <name>burstwrite.region</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>75</item> </node_objs> </item> <item class_id_reference="18" object_id="_67"> <Obj> <type>3</type> <id>79</id> <name>memcpy.tail</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>77</item> <item>78</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>97</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_68"> <id>82</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>6</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_69"> <id>85</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_70"> <id>87</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_71"> <id>89</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_72"> <id>90</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>91</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_74"> <id>92</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_75"> <id>94</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_76"> <id>95</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_77"> <id>98</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>100</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>101</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>103</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>104</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>105</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>25</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>106</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>25</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>107</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>109</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>110</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>112</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>113</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>114</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>115</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>116</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>117</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>120</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>121</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>123</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>124</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>125</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>126</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>127</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>128</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>129</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>130</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>131</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>132</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>133</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>134</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>135</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>136</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>137</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>138</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>141</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>142</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>143</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>144</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>145</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>146</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>147</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>148</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>149</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>151</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>152</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>153</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>154</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>155</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>156</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>157</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>158</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>61</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>159</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>61</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>160</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>161</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>162</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>163</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>164</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>165</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>166</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>167</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>168</id> <edge_type>2</edge_type> <source_obj>79</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>169</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>170</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>171</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>172</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>173</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>176</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>177</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>179</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>180</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>183</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>392</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>393</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>394</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>395</id> <edge_type>2</edge_type> <source_obj>40</source_obj> <sink_obj>30</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>396</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>397</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>398</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>399</id> <edge_type>2</edge_type> <source_obj>57</source_obj> <sink_obj>49</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>400</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>401</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>402</id> <edge_type>2</edge_type> <source_obj>66</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>403</id> <edge_type>2</edge_type> <source_obj>76</source_obj> <sink_obj>66</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>404</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>405</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>406</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>407</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>408</id> <edge_type>4</edge_type> <source_obj>58</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_165"> <mId>1</mId> <mTag>cceip_kernel</mTag> <mType>0</mType> <sub_regions> <count>7</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>12307</mMinLatency> <mMaxLatency>12307</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_166"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>24</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>7</mMinLatency> <mMaxLatency>7</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_167"> <mId>3</mId> <mTag>memcpy.m00_axi_input_buffer.input_addr</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>30</item> <item>40</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>4096</mMinTripCount> <mMaxTripCount>4096</mMaxTripCount> <mMinLatency>4097</mMinLatency> <mMaxLatency>4097</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_168"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>42</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_169"> <mId>5</mId> <mTag>Loop 2</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>49</item> <item>57</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>4096</mMinTripCount> <mMaxTripCount>4096</mMaxTripCount> <mMinLatency>4096</mMinLatency> <mMaxLatency>4096</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_170"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>60</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_171"> <mId>7</mId> <mTag>memcpy.input_addr.m00_axi_output_buffer.gep</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>66</item> <item>76</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>4096</mMinTripCount> <mMaxTripCount>4096</mMaxTripCount> <mMinLatency>4097</mMinLatency> <mMaxLatency>4097</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_172"> <mId>8</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>79</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>4</mMinLatency> <mMaxLatency>4</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>42</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>6</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>6</second> </second> </item> <item> <first>23</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>11</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>12</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>12</first> <second>1</second> </second> </item> <item> <first>53</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>13</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>14</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>15</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>15</first> <second>1</second> </second> </item> <item> <first>73</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>17</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>18</first> <second>4</second> </second> </item> <item> <first>78</first> <second> <first>22</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>24</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>7</second> </second> </item> <item> <first>30</first> <second> <first>8</first> <second>8</second> </second> </item> <item> <first>40</first> <second> <first>9</first> <second>10</second> </second> </item> <item> <first>42</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>49</first> <second> <first>10</first> <second>10</second> </second> </item> <item> <first>57</first> <second> <first>10</first> <second>11</second> </second> </item> <item> <first>60</first> <second> <first>11</first> <second>11</second> </second> </item> <item> <first>66</first> <second> <first>12</first> <second>12</second> </second> </item> <item> <first>76</first> <second> <first>12</first> <second>14</second> </second> </item> <item> <first>79</first> <second> <first>13</first> <second>17</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_173"> <region_name>memcpy.m00_axi_input_buffer.input_addr</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>30</item> <item>40</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> <item class_id_reference="33" object_id="_174"> <region_name>Loop 2</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>49</item> <item>57</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="33" object_id="_175"> <region_name>memcpy.input_addr.m00_axi_output_buffer.gep</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>66</item> <item>76</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> </regions> <dp_fu_nodes class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
28.924694
158
0.625722
fb760eddc8b598d1538f0b0a45612887ff81aec4
2,782
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c84008a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c84008a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c84008a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C84008A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT THE NAMES MADE VISIBLE BY A USE CLAUSE IN THE VISIBLE -- PART OF A PACKAGE ARE VISIBLE IN THE PRIVATE PART AND BODY OF -- THE PACKAGE. -- HISTORY: -- JET 03/10/88 CREATED ORIGINAL TEST. WITH REPORT; USE REPORT; PROCEDURE C84008A IS PACKAGE PACK1 IS TYPE A IS RANGE 0..100; TYPE B IS RANGE -100..0; END PACK1; PACKAGE PACK2 IS USE PACK1; TYPE C IS PRIVATE; PROCEDURE PROC (X : OUT A; Y : OUT B); PRIVATE TYPE C IS NEW A RANGE 0..9; END PACK2; VAR1 : PACK1.A; VAR2 : PACK1.B; PACKAGE BODY PACK2 IS PROCEDURE PROC (X : OUT A; Y : OUT B) IS SUBTYPE D IS B RANGE -9..0; BEGIN IF EQUAL(3,3) THEN X := A'(2); Y := D'(-2); ELSE X := A'(0); Y := D'(0); END IF; END PROC; END PACK2; BEGIN TEST ("C84008A", "CHECK THAT THE NAMES MADE VISIBLE BY A USE " & "CLAUSE IN THE VISIBLE PART OF A PACKAGE ARE " & "VISIBLE IN THE PRIVATE PART AND BODY OF " & "THE PACKAGE"); PACK2.PROC (VAR1,VAR2); IF PACK1."/=" (VAR1, 2) THEN FAILED("INCORRECT RETURN VALUE FOR VAR1"); END IF; IF PACK1."/=" (VAR2, PACK1."-"(2)) THEN FAILED("INCORRECT RETURN VALUE FOR VAR2"); END IF; RESULT; END C84008A;
33.119048
79
0.574766
df91654c5122f70c1f325c068587837c4f4453b8
9,638
adb
Ada
bb-runtimes/src/s-bbbosu__leon.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/src/s-bbbosu__leon.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/src/s-bbbosu__leon.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . B B . B O A R D _ S U P P O R T -- -- -- -- B o d y -- -- -- -- Copyright (C) 1999-2002 Universidad Politecnica de Madrid -- -- Copyright (C) 2003-2006 The European Space Agency -- -- Copyright (C) 2003-2017, AdaCore -- -- -- -- GNARL 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. GNARL 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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- -- The port of GNARL to bare board targets was initially developed by the -- -- Real-Time Systems Group at the Technical University of Madrid. -- -- -- ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); with System.BB.Board_Support.LEON; use System.BB.Board_Support.LEON; with System.BB.Board_Parameters; with System.BB.CPU_Primitives; package body System.BB.Board_Support is use BB.CPU_Primitives; use BB.Interrupts; ----------------------- -- Local Definitions -- ----------------------- Periodic_Count : constant := 2**24 - 2; -- Value to be loaded in the clock counter to accomplish the -- Clock_Interrupt_Period. -- -- One is subtracted from Timers_Counter'Last (2**24 -1) because the -- timeout period will count an extra cycle for reloading the counter. -- Constants defining the external interrupts General_Purpose_Timer : constant := 8; ---------------------- -- Initialize_Board -- ---------------------- procedure Initialize_Board is Prescaler : constant Prescaler_Register := (Value => Board_Parameters.Prescaler_Min, Reserved => (others => False)); -- Minimum prescaler to be used to achieve best granularity Real_Time_Clock_Reload : constant Timer_Register := (Timer_Value => Periodic_Count, Reserved => (others => False)); -- Periodic count to be used for the clock Real_Time_Clock_Control : constant Timer_Control_Register := (Enable => True, Reload_Counter => True, Load_Counter => True, Reserved => (others => False)); -- Program the timer in periodic mode to serve as a clock begin -- Set the prescaler value to achieve the required granularity Prescaler_Reload := Prescaler; -- Load the counter for the real-time clock Timer_2_Reload := Real_Time_Clock_Reload; -- Enable Timer 2 Timer_2_Control := Real_Time_Clock_Control; end Initialize_Board; package body Time is Alarm_Interrupt_ID : constant Interrupt_ID := General_Purpose_Timer; --------------------------- -- Install_Alarm_Handler -- --------------------------- procedure Install_Alarm_Handler (Handler : BB.Interrupts.Interrupt_Handler) is begin BB.Interrupts.Attach_Handler (Handler, Alarm_Interrupt_ID, Interrupts.Priority_Of_Interrupt (Alarm_Interrupt_ID)); end Install_Alarm_Handler; --------------------------- -- Clear_Alarm_Interrupt -- --------------------------- procedure Clear_Alarm_Interrupt is begin -- Interrupts are cleared automatically when they are acknowledged null; end Clear_Alarm_Interrupt; ------------------------ -- Max_Timer_Interval -- ------------------------ function Max_Timer_Interval return Timer_Interval is begin return Periodic_Count; end Max_Timer_Interval; ---------------- -- Read_Clock -- ---------------- function Read_Clock return BB.Time.Time is Timer_Counter : constant Timer_Register := Timer_2_Counter; -- Make copy of atomic variable to avoid warning on partial access begin return BB.Time.Time (Periodic_Count - Timer_Counter.Timer_Value); end Read_Clock; --------------- -- Set_Alarm -- --------------- procedure Set_Alarm (Ticks : Timer_Interval) is Timer_Reload_Aux : constant Timer_Register := (Timer_Value => Timers_Counter (Ticks), Reserved => (others => False)); -- Load the required ticks Timer_Control_Aux : constant Timer_Control_Register := (Enable => True, Reload_Counter => False, Load_Counter => True, Reserved => (others => False)); -- Program the timer in one-shot mode Interrupt_Mask_Aux : Interrupt_Mask_and_Priority_Register; begin -- Alarm Clock downcount will reach 0 in Ticks. The granularity of -- time intervals is equal to Clock Period. -- Set the prescaler: already done in Initialize_Clock -- Load the counter Timer_1_Reload := Timer_Reload_Aux; -- Write Timer Control Register Timer_1_Control := Timer_Control_Aux; -- Enable Timer 1 Interrupts Interrupt_Mask_Aux := Interrupt_Mask_and_Priority; Interrupt_Mask_Aux.Timer_1 := True; Interrupt_Mask_and_Priority := Interrupt_Mask_Aux; end Set_Alarm; end Time; package body Interrupts is procedure Interrupt_Handler (Vector : CPU_Primitives.Vector_Id); -- Low level interrupt handler ---------------- -- Power_Down -- ---------------- procedure Power_Down is begin null; end Power_Down; --------------------------- -- Priority_Of_Interrupt -- --------------------------- function Priority_Of_Interrupt (Interrupt : System.BB.Interrupts.Interrupt_ID) return System.Any_Priority is begin -- Assert that it is a real interrupt pragma Assert (Interrupt /= System.BB.Interrupts.No_Interrupt); return (Any_Priority (Interrupt) + Interrupt_Priority'First - 1); end Priority_Of_Interrupt; -------------------------- -- Set_Current_Priority -- -------------------------- procedure Set_Current_Priority (Priority : Integer) is begin null; -- No board-specific actions necessary end Set_Current_Priority; ----------------------- -- Interrupt_Handler -- ----------------------- procedure Interrupt_Handler (Vector : CPU_Primitives.Vector_Id) is Id : Interrupt_ID; begin -- The range corresponding to asynchronous traps is 16#11# .. 16#1F# pragma Assert (Vector in 16#11# .. 16#1F#); Id := System.BB.Interrupts.Interrupt_ID (Vector - 16#10#); Interrupt_Wrapper (Id); end Interrupt_Handler; ------------------------------- -- Install_Interrupt_Handler -- ------------------------------- procedure Install_Interrupt_Handler (Interrupt : Interrupt_ID; Prio : Interrupt_Priority) is pragma Unreferenced (Prio); begin CPU_Primitives.Install_Trap_Handler (Interrupt_Handler'Address, CPU_Primitives.Vector_Id (Interrupt + 16#10#)); end Install_Interrupt_Handler; end Interrupts; package body Multiprocessors is separate; end System.BB.Board_Support;
37.212355
78
0.50747
0e013b716597204f3d7e116b3891e4c422f749d6
3,227
ads
Ada
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-pack61.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-pack61.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/s-pack61.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 6 1 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2019, 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. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 61 package System.Pack_61 is pragma Preelaborate; Bits : constant := 61; type Bits_61 is mod 2 ** Bits; for Bits_61'Size use Bits; -- In all subprograms below, Rev_SSO is set True if the array has the -- non-default scalar storage order. function Get_61 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_61 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_61 (Arr : System.Address; N : Natural; E : Bits_61; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_61;
52.901639
78
0.439727
39ac576b9709f467881364f2371c0f7c4aa01661
3,345
ads
Ada
src/gen/gstreamer-gst_low_level-gstreamer_0_10_gst_app_gstappbuffer_h.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
1
2018-01-18T00:51:00.000Z
2018-01-18T00:51:00.000Z
src/gen/gstreamer-gst_low_level-gstreamer_0_10_gst_app_gstappbuffer_h.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
null
null
null
src/gen/gstreamer-gst_low_level-gstreamer_0_10_gst_app_gstappbuffer_h.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
null
null
null
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with System; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h; with glib; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_app_gstappbuffer_h is -- unsupported macro: GST_TYPE_APP_BUFFER (gst_app_buffer_get_type()) -- arg-macro: function GST_APP_BUFFER (obj) -- return G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_APP_BUFFER,GstAppBuffer); -- arg-macro: function GST_APP_BUFFER_CLASS (klass) -- return G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_APP_BUFFER,GstAppBufferClass); -- arg-macro: function GST_IS_APP_BUFFER (obj) -- return G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_APP_BUFFER); -- arg-macro: function GST_IS_APP_BUFFER_CLASS (klass) -- return G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_APP_BUFFER); -- GStreamer -- * Copyright (C) 2007 David Schleef <[email protected]> -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Library 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 -- * Library General Public License for more details. -- * -- * You should have received a copy of the GNU Library 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. -- type GstAppBuffer; --subtype GstAppBuffer is u_GstAppBuffer; -- gst/app/gstappbuffer.h:38 type GstAppBufferClass; --subtype GstAppBufferClass is u_GstAppBufferClass; -- gst/app/gstappbuffer.h:39 type GstAppBufferFinalizeFunc is access procedure (arg1 : System.Address); pragma Convention (C, GstAppBufferFinalizeFunc); -- gst/app/gstappbuffer.h:40 type GstAppBuffer is record buffer : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBuffer; -- gst/app/gstappbuffer.h:44 finalize : GstAppBufferFinalizeFunc; -- gst/app/gstappbuffer.h:47 priv : System.Address; -- gst/app/gstappbuffer.h:48 end record; pragma Convention (C_Pass_By_Copy, GstAppBuffer); -- gst/app/gstappbuffer.h:42 --< private > type GstAppBufferClass is record buffer_class : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBufferClass; -- gst/app/gstappbuffer.h:53 end record; pragma Convention (C_Pass_By_Copy, GstAppBufferClass); -- gst/app/gstappbuffer.h:51 function gst_app_buffer_get_type return GLIB.GType; -- gst/app/gstappbuffer.h:56 pragma Import (C, gst_app_buffer_get_type, "gst_app_buffer_get_type"); function gst_app_buffer_new (data : System.Address; length : int; finalize : GstAppBufferFinalizeFunc; priv : System.Address) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBuffer; -- gst/app/gstappbuffer.h:58 pragma Import (C, gst_app_buffer_new, "gst_app_buffer_new"); end GStreamer.GST_Low_Level.gstreamer_0_10_gst_app_gstappbuffer_h;
45.821918
138
0.747384
c5d195f82cb687ae146ede92a65d96d5fdb5bece
4,332
ads
Ada
source/web/wsse/web_services-soap-security-password_digest_utilities.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/web/wsse/web_services-soap-security-password_digest_utilities.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/web/wsse/web_services-soap-security-password_digest_utilities.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library 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$ ------------------------------------------------------------------------------ -- Utilities package for WS-Security UsernameToken digest password. ------------------------------------------------------------------------------ with League.Stream_Element_Vectors; with League.Strings; package Web_Services.SOAP.Security.Password_Digest_Utilities is function Generate_Nonce return League.Stream_Element_Vectors.Stream_Element_Vector; -- Generate Nonce. function Generate_Created return League.Strings.Universal_String; -- Generate image of timestamp for wsu:Created element. function Compute_Digest (Password : League.Strings.Universal_String; Nonce : League.Stream_Element_Vectors.Stream_Element_Vector; Created : League.Strings.Universal_String) return League.Stream_Element_Vectors.Stream_Element_Vector; -- Computes password digest using specified password, nonce and created. procedure Initialize; -- Initialize internal random number generator. end Web_Services.SOAP.Security.Password_Digest_Utilities;
62.782609
78
0.465374
50a06b9e9e1fe53649db06dbd8f439964095d07e
3,362
ads
Ada
llvm-gcc-4.2-2.9/gcc/ada/s-fvagfl.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/s-fvagfl.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/s-fvagfl.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . F A T _ V A X _ G _ F L O A T -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005 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 2, 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 COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, 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. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains an instantiation of the floating-point attribute -- runtime routines for VAX F-float for use on VMS targets. with System.Fat_Gen; package System.Fat_VAX_G_Float is pragma Pure; pragma Warnings (Off); -- This unit is normally used only for VMS, but we compile it for other -- targest for the convenience of testing vms code using -gnatdm. type Fat_VAX_G is digits 15; pragma Float_Representation (VAX_Float, Fat_VAX_G); -- Note the only entity from this package that is acccessed by Rtsfind -- is the name of the package instantiation. Entities within this package -- (i.e. the individual floating-point attribute routines) are accessed -- by name using selected notation. package Attr_VAX_G_Float is new System.Fat_Gen (Fat_VAX_G); end System.Fat_VAX_G_Float;
58.982456
78
0.494943
4a18d1c08077fade84b9c1497385b4caaac8fe1e
97,735
adb
Ada
boards/ip_colordetect/colordetect/colordetect/.autopilot/db/axis2xfMat_24_9_2160_3840_1_s.bind.adb
Kgfu/PYNQ_HelloWorld
a5197130e7d4a5e7f382c3963349c1c0bd213213
[ "BSD-3-Clause" ]
null
null
null
boards/ip_colordetect/colordetect/colordetect/.autopilot/db/axis2xfMat_24_9_2160_3840_1_s.bind.adb
Kgfu/PYNQ_HelloWorld
a5197130e7d4a5e7f382c3963349c1c0bd213213
[ "BSD-3-Clause" ]
null
null
null
boards/ip_colordetect/colordetect/colordetect/.autopilot/db/axis2xfMat_24_9_2160_3840_1_s.bind.adb
Kgfu/PYNQ_HelloWorld
a5197130e7d4a5e7f382c3963349c1c0bd213213
[ "BSD-3-Clause" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>axis2xfMat_24_9_2160_3840_1_s</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>imgInput_499</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName>FIFO_SRL</coreName> <coreId>4294967294</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>AXI_video_strm_V_data_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>AXI_video_strm_V_keep_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1769566319</coreId> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>AXI_video_strm_V_strb_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>3</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>AXI_video_strm_V_user_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1735289188</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>AXI_video_strm_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>433</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>AXI_video_strm_V_id_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1702127986</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>AXI_video_strm_V_dest_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>img_rows</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName>FIFO_SRL</coreName> <coreId>132</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>img_cols</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName>FIFO_SRL</coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>img_rows_out</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName>FIFO_SRL</coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>img_cols_out</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName>FIFO_SRL</coreName> <coreId>132</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_13"> <Value> <Obj> <type>0</type> <id>23</id> <name>rows</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName>rows</originalName> <rtlName></rtlName> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>62</item> <item>63</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>cols</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName>cols</originalName> <rtlName></rtlName> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>64</item> <item>65</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>26</id> <name>img_rows_out_write_ln73</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>73</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>73</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>67</item> <item>68</item> <item>69</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>28</id> <name>img_cols_out_write_ln74</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>74</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>74</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>70</item> <item>71</item> <item>72</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>31</id> <name>br_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>73</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>33</id> <name>i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>74</item> <item>75</item> <item>77</item> <item>78</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>34</id> <name>i_2</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <coreId>1</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>79</item> <item>81</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.54</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>35</id> <name>zext_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>132</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>82</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>36</id> <name>icmp_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType>icmp</opType> <implIndex></implIndex> <coreName></coreName> <coreId>3578049392</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>83</item> <item>84</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.96</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>38</id> <name>br_ln80</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>80</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>80</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>85</item> <item>86</item> <item>87</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>41</id> <name>br_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>88</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>43</id> <name>j</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1825</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>89</item> <item>90</item> <item>91</item> <item>92</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>44</id> <name>j_2</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <control>auto</control> <opType>add</opType> <implIndex>fabric</implIndex> <coreName>Adder</coreName> <coreId>1</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>93</item> <item>94</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.54</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>45</id> <name>zext_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3576988648</coreId> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>95</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>46</id> <name>icmp_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType>icmp</opType> <implIndex></implIndex> <coreName></coreName> <coreId>1825</coreId> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>96</item> <item>97</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.96</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>48</id> <name>br_ln82</name> <fileName>src/xf_colordetect_accel_stream.cpp</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>82</lineNumber> <contextFuncName>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</contextFuncName> <contextNormFuncName>axis2xfMat_24_9_2160_3840_1_s</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/xf_colordetect_accel_stream.cpp</first> <second>axis2xfMat&amp;lt;24, 9, 2160, 3840, 1&amp;gt;</second> </first> <second>82</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>4227858560</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>98</item> <item>99</item> <item>100</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>52</id> <name>empty</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control>auto</control> <opType>adapter</opType> <implIndex>axi4stream</implIndex> <coreName>axis</coreName> <coreId>115</coreId> </Obj> <bitwidth>34</bitwidth> </Value> <oprand_edges> <count>8</count> <item_version>0</item_version> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>53</id> <name>axi_data_V</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>read</contextFuncName> <contextNormFuncName>read</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first> <second>read</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName>axi.data.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>24</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>110</item> </oprand_edges> <opcode>extractvalue</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>54</id> <name>imgInput_499_write_ln174</name> <fileName>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</fileName> <fileDirectory>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</fileDirectory> <lineNumber>174</lineNumber> <contextFuncName>write</contextFuncName> <contextNormFuncName>write</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/tools/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/hls_stream_39.h</first> <second>write</second> </first> <second>174</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control>auto</control> <opType>fifo</opType> <implIndex>srl</implIndex> <coreName>FIFO_SRL</coreName> <coreId>81</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>112</item> <item>113</item> <item>114</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>3.40</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>55</id> <name>br_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>115</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>57</id> <name>br_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1825</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>59</id> <name>_ln0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>3576286872</coreId> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_35"> <Value> <Obj> <type>2</type> <id>76</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_36"> <Value> <Obj> <type>2</type> <id>80</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>49</coreId> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_37"> <Obj> <type>3</type> <id>32</id> <name>entry</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1768189039</coreId> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>26</item> <item>28</item> <item>31</item> </node_objs> </item> <item class_id_reference="18" object_id="_38"> <Obj> <type>3</type> <id>39</id> <name>.lr.ph6.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1768189039</coreId> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>38</item> </node_objs> </item> <item class_id_reference="18" object_id="_39"> <Obj> <type>3</type> <id>42</id> <name>.split2.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1768189039</coreId> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>41</item> </node_objs> </item> <item class_id_reference="18" object_id="_40"> <Obj> <type>3</type> <id>49</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>48</item> </node_objs> </item> <item class_id_reference="18" object_id="_41"> <Obj> <type>3</type> <id>56</id> <name>.split.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1825</coreId> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>52</item> <item>53</item> <item>54</item> <item>55</item> </node_objs> </item> <item class_id_reference="18" object_id="_42"> <Obj> <type>3</type> <id>58</id> <name>._crit_edge.loopexit.i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>0</coreId> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>57</item> </node_objs> </item> <item class_id_reference="18" object_id="_43"> <Obj> <type>3</type> <id>60</id> <name>.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <coreId>1869898593</coreId> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>59</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>52</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_44"> <id>63</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_45"> <id>65</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_46"> <id>68</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_47"> <id>69</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_48"> <id>71</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_49"> <id>72</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_50"> <id>73</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_51"> <id>74</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_52"> <id>75</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_53"> <id>77</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_54"> <id>78</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_55"> <id>79</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_56"> <id>81</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_57"> <id>82</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_58"> <id>83</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_59"> <id>84</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_60"> <id>85</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_61"> <id>86</id> <edge_type>2</edge_type> <source_obj>60</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_62"> <id>87</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_63"> <id>88</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_64"> <id>89</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_65"> <id>90</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_66"> <id>91</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_67"> <id>92</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>43</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_68"> <id>93</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_69"> <id>94</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_70"> <id>95</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_71"> <id>96</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_72"> <id>97</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_73"> <id>98</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_74"> <id>99</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_75"> <id>100</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_76"> <id>103</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_77"> <id>104</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_78"> <id>105</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_79"> <id>106</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>107</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>108</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>109</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>110</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>113</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>114</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>115</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>116</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>448</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>449</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>450</id> <edge_type>2</edge_type> <source_obj>39</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>451</id> <edge_type>2</edge_type> <source_obj>42</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>452</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>453</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>454</id> <edge_type>2</edge_type> <source_obj>56</source_obj> <sink_obj>49</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>455</id> <edge_type>2</edge_type> <source_obj>58</source_obj> <sink_obj>39</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_96"> <mId>1</mId> <mTag>axis2xfMat&lt;24, 9, 2160, 3840, 1&gt;</mTag> <mNormTag>axis2xfMat_24_9_2160_3840_1_s</mNormTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1</mMinLatency> <mMaxLatency>8300881</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_97"> <mId>2</mId> <mTag>Entry</mTag> <mNormTag>Entry</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>32</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_98"> <mId>3</mId> <mTag>loop_row_axi2mat</mTag> <mNormTag>loop_row_axi2mat</mNormTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>0</mMinTripCount> <mMaxTripCount>2160</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>8300880</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_99"> <mId>4</mId> <mTag>Region 1</mTag> <mNormTag>Region 1</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>39</item> <item>42</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_100"> <mId>5</mId> <mTag>loop_col_zxi2mat</mTag> <mNormTag>loop_col_zxi2mat</mNormTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>49</item> <item>56</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>0</mMinTripCount> <mMaxTripCount>3840</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>3840</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_101"> <mId>6</mId> <mTag>Region 2</mTag> <mNormTag>Region 2</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>58</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_102"> <mId>7</mId> <mTag>Return</mTag> <mNormTag>Return</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>60</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_103"> <states class_id="25" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_104"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>19</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_105"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_106"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_107"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_108"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_109"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_110"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_111"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_112"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_113"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_114"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_115"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_116"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_117"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_118"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_119"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_120"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_121"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_122"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_123"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_124"> <id>2</id> <operations> <count>9</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_125"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_126"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_127"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_128"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_129"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_130"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_131"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_132"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_133"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_134"> <id>3</id> <operations> <count>8</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_135"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_136"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_137"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_138"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_139"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_140"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_141"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_142"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_143"> <id>4</id> <operations> <count>4</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_144"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_145"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_146"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_147"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_148"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_149"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_150"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>-1</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_151"> <inState>2</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>36</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_152"> <inState>5</inState> <outState>2</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_153"> <inState>4</inState> <outState>3</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_154"> <inState>3</inState> <outState>5</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>46</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_155"> <inState>3</inState> <outState>4</outState> <condition> <id>-1</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>46</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="-1"></res> <node_label_latency class_id="37" tracking_level="0" version="0"> <count>22</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>23</first> <second class_id="39" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="40" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="41" tracking_level="0" version="0"> <first>32</first> <second class_id="42" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>42</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>60</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="43" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="44" tracking_level="1" version="0" object_id="_156"> <region_name>loop_col_zxi2mat</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>49</item> <item>56</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="45" tracking_level="0" version="0"> <count>15</count> <item_version>0</item_version> <item class_id="46" tracking_level="0" version="0"> <first>76</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>96</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>151</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>157</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>161</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>176</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>181</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="48" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="49" tracking_level="0" version="0"> <first>axi_data_V_fu_181</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>i_2_fu_151</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>i_phi_fu_133</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>icmp_ln80_fu_161</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>icmp_ln82_fu_176</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>j_2_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>j_phi_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>zext_ln80_fu_157</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>zext_ln82_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>6</count> <item_version>0</item_version> <item> <first>cols_read_fu_82</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>empty_read_fu_104</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>rows_read_fu_76</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>write_ln174_write_fu_122</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>write_ln73_write_fu_88</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>write_ln74_write_fu_96</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="50" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>9</count> <item_version>0</item_version> <item> <first>129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>185</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>190</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>200</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>209</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>9</count> <item_version>0</item_version> <item> <first>axi_data_V_reg_213</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>cols_reg_190</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>i_2_reg_195</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>i_reg_129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>icmp_ln80_reg_200</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>icmp_ln82_reg_209</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>j_2_reg_204</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>j_reg_140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>rows_reg_185</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>i_reg_129</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>j_reg_140</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="51" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>AXI_video_strm_V_data_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_dest_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_id_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_keep_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_last_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_strb_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>AXI_video_strm_V_user_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> </second> </item> <item> <first>imgInput_499</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> </second> </item> <item> <first>img_cols</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> </second> </item> <item> <first>img_cols_out</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>28</item> </second> </item> </second> </item> <item> <first>img_rows</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </second> </item> <item> <first>img_rows_out</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core> <count>5</count> <item_version>0</item_version> <item> <first>1</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>9</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>10</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>11</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>12</first> <second> <first>1151</first> <second>10</second> </second> </item> </port2core> <node2core> <count>10</count> <item_version>0</item_version> <item> <first>23</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>24</first> <second> <first>1150</first> <second>10</second> </second> </item> <item> <first>26</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>28</first> <second> <first>1151</first> <second>10</second> </second> </item> <item> <first>34</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>36</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>8</first> <second>4</second> </second> </item> <item> <first>46</first> <second> <first>45</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>888</first> <second>111</second> </second> </item> <item> <first>54</first> <second> <first>1151</first> <second>10</second> </second> </item> </node2core> </syndb> </boost_serialization>
26.393465
101
0.605945
238806aab20a77220471683f3589c99cff80044c
4,766
adb
Ada
enemy_bst.adb
Spohn/LegendOfZelba
f0bf1310647156ad5eab4977eaa3aea58c7f21cb
[ "MIT" ]
2
2016-06-10T05:49:59.000Z
2017-10-07T05:38:09.000Z
enemy_bst.adb
Spohn/LegendOfZelba
f0bf1310647156ad5eab4977eaa3aea58c7f21cb
[ "MIT" ]
null
null
null
enemy_bst.adb
Spohn/LegendOfZelba
f0bf1310647156ad5eab4977eaa3aea58c7f21cb
[ "MIT" ]
null
null
null
with NPC_PC; use NPC_PC; package body Enemy_BST is ------------------------------- -- Name: Jon Spohn -- David Rogina -- Enemy Package ------------------------------- --Make Enemy FUNCTION MakeNode (E : EnemyClass) RETURN EnemyTree IS Result : EnemyTree; BEGIN Result := NEW BinaryTreeNode; Result.Enemy := E; RETURN Result; END MakeNode; --------------------------------------------------------------------------------- --Connect Enemy node to left of tree PROCEDURE ConnectLeft (T : IN OUT EnemyTree; E : EnemyClass) IS BEGIN T.Left := MakeNode (E); END ConnectLeft; -------------------------------------------------------------------------------- --Connect Enemy node to right of tree PROCEDURE ConnectRight (T : IN OUT EnemyTree; E : EnemyClass) IS BEGIN T.Right := MakeNode (E); END ConnectRight; ---------------------------------------------------------------------------------- PROCEDURE Initialize (T: IN OUT EnemyTree) IS BEGIN T := NULL; END Initialize; ------------------------------------------------------------------------------------ --Insert Enemy Node into Tree PROCEDURE Insert (T : IN OUT EnemyTree; E : IN EnemyClass) IS BEGIN IF T = NULL THEN T := MakeNode (E); ELSIF (GetEnemyY(E)) < (GetEnemyY(T.Enemy)) THEN IF T.Left = NULL THEN ConnectLeft (T, E); ELSE Insert (T.Left, E); END IF; ELSIF (GetEnemyY(E)) > (GetEnemyY(T.Enemy)) THEN IF T.Right = NULL THEN ConnectRight (T, E); ELSE Insert (T.Right, E); END IF; ELSE Insert(T.Right , E); END IF; END Insert; ---------------------------------------------------------------------------------------- --Search through tree for enemy node with specific map coordinates FUNCTION Search (T: EnemyTree; X : integer; Y: integer) RETURN EnemyClass IS BEGIN IF Y < GetEnemyY(T.Enemy) THEN RETURN Search(T.Left,X,Y); ELSIF GetEnemyY(T.enemy) < Y THEN RETURN Search(T.Right,X,Y); ELSE if x = GetEnemyX(T.enemy) then RETURN T.Enemy; else Return Search(T.Right,X,Y); end if; END IF; END Search; ----------------------------------------------------------------------------------------- function GetLeft(ET: EnemyTree) Return EnemyTree is begin return ET.Left; end GetLeft; ----------------------------------------------------------------------------------------- function GetRight(ET : EnemyTree) return EnemyTree is begin return ET.Right; end GetRight; ----------------------------------------------------------------------------------------- function GetEnemy(ET : EnemyTree) return EnemyClass is begin return ET.Enemy; end GetEnemy; -------------------------------------------------------------------------------------------- --Determine if all enemies are killed or not, if so game ends function IsNull(ET : EnemyTree) return integer is begin if (ET = NULL) then return 0; else return 1; end if; end IsNull; --------------------------------------------------------------------------------------- --Find the smallest leaf of a parent node FUNCTION FindSmallest (T : EnemyTree) RETURN EnemyTree IS BEGIN -- FindSmallest IF T = NULL THEN RETURN NULL; ELSIF T.Left = NULL THEN RETURN T; ELSE RETURN FindSmallest(T.Left); END IF; END FindSmallest; ------------------------------------------------------------------------------------- --Delete an enemy node from the tree PROCEDURE Delete (T : IN OUT EnemyTree; K : IN EnemyClass) IS Temp: EnemyTree; BEGIN -- Delete IF GetEnemyY(K) < GetEnemyY(T.Enemy) THEN -- check left subtree Delete (T.Left, K); ELSIF GetEnemyY(T.Enemy) < GetEnemyY(K) THEN -- check right subtree Delete (T.Right, K); ELSE if GetEnemyX(K) = GetEnemyX(T.enemy) then IF T.Left = NULL AND T.Right = NULL THEN T := NULL; -- T is a leaf; delete it ELSIF T.Right = NULL THEN -- replace T by its predecessor T:= T.Left; ELSIF T.Left = NULL THEN -- replace T by its successor T := T.Right; else Temp := FindSmallest(T.Right); T.Enemy := Temp.Enemy; Delete(T.Right, (T.Enemy)); END IF; else Delete(T.Right,K); end if; END IF; END Delete; ---------------------------------------------------------------------------------------- end Enemy_BST;
31.355263
95
0.445027
50d99d803511fb676486b4d178cf641aa0371291
2,913
adb
Ada
src/siphash-discrete.adb
jhumphry/SPARK_SipHash
9e9490e23ae722f8392b5f9cbdbc6bc8c6104fa5
[ "CC0-1.0" ]
5
2018-10-10T21:19:01.000Z
2020-10-14T08:42:58.000Z
src/siphash-discrete.adb
jhumphry/SPARK_SipHash
9e9490e23ae722f8392b5f9cbdbc6bc8c6104fa5
[ "CC0-1.0" ]
null
null
null
src/siphash-discrete.adb
jhumphry/SPARK_SipHash
9e9490e23ae722f8392b5f9cbdbc6bc8c6104fa5
[ "CC0-1.0" ]
null
null
null
-- SipHash.Discrete -- Implementing SipHash over a generic (relatively small) discrete type -- Copyright (c) 2015, James Humphry - see LICENSE file for details with Interfaces; use all type Interfaces.Unsigned_64; function SipHash.Discrete (m : T_Array) return Hash_Type is subtype T_Array_8 is T_Array(T_Index'First..T_Index'First+7); T_Offset : constant Integer := T'Pos(T'First); function T_Array_8_to_U64_LE (S : in T_Array_8) return U64 with Inline; function T_Array_Tail_to_U64_LE (S : in T_Array) return U64 with Inline, Pre => (S'Length <= 7 and then S'Length > 0); function T_Array_8_to_U64_LE (S : in T_Array_8) return U64 is (U64(T'Pos(S(S'First)) - T_Offset) or Shift_Left(U64(T'Pos(S(S'First+1)) - T_Offset), 8) or Shift_Left(U64(T'Pos(S(S'First+2)) - T_Offset), 16) or Shift_Left(U64(T'Pos(S(S'First+3)) - T_Offset), 24) or Shift_Left(U64(T'Pos(S(S'First+4)) - T_Offset), 32) or Shift_Left(U64(T'Pos(S(S'First+5)) - T_Offset), 40) or Shift_Left(U64(T'Pos(S(S'First+6)) - T_Offset), 48) or Shift_Left(U64(T'Pos(S(S'First+7)) - T_Offset), 56)); function T_Array_Tail_to_U64_LE (S : in T_Array) return U64 is R : U64 := 0; Shift : Natural := 0; T_I : T; begin for I in 0..S'Length-1 loop pragma Loop_Invariant (Shift = I * 8); T_I := S(S'First + T_Index'Base(I)); R := R or Shift_Left(U64(T'Pos(T_I) - T_Offset), Shift); Shift := Shift + 8; end loop; return R; end T_Array_Tail_to_U64_LE; m_pos : T_Index'Base := 0; m_i : U64; v : SipHash_State := Get_Initial_State; w : constant Natural := (m'Length / 8) + 1; begin -- This compile-time check is useful for GNAT but in GNATprove it currently -- just generates a warning that it can not yet prove them correct. pragma Warnings (GNATprove, Off, "Compile_Time_Error"); pragma Compile_Time_Error ((T'Size > 8), "SipHash.Discrete only works for discrete " & "types which fit into one byte."); pragma Warnings (GNATprove, On, "Compile_Time_Error"); for I in 1..w-1 loop pragma Loop_Invariant (m_pos = T_Index'Base(I - 1) * 8); m_i := T_Array_8_to_U64_LE(m(m'First + m_pos..m'First + m_pos + 7)); v(3) := v(3) xor m_i; for J in 1..c_rounds loop Sip_Round(v); end loop; v(0) := v(0) xor m_i; m_pos := m_pos + 8; end loop; if m_pos < m'Length then m_i := T_Array_Tail_to_U64_LE(m(m'First + m_pos .. m'Last)); else m_i := 0; end if; m_i := m_i or Shift_Left(U64(m'Length mod 256), 56); v(3) := v(3) xor m_i; for J in 1..c_rounds loop Sip_Round(v); end loop; v(0) := v(0) xor m_i; return Hash_Type'Mod(Sip_Finalization(v)); end SipHash.Discrete;
33.872093
78
0.606591
109cd5b7ae61870b102b428f3d58611de17c9c09
6,001
ads
Ada
middleware/src/filesystems/virtual_file_system.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
2
2018-05-16T03:56:39.000Z
2019-07-31T13:53:56.000Z
middleware/src/filesystems/virtual_file_system.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
middleware/src/filesystems/virtual_file_system.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, 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 HAL.Filesystem; use HAL.Filesystem; package Virtual_File_System is type VFS is new HAL.Filesystem.FS_Driver with private; type Any_VFS is access all VFS'Class; function Mount (This : in out VFS; Path : Pathname; Filesystem : not null Any_FS_Driver) return Status_Kind; function Umount (This : in out VFS; Path : Pathname) return Status_Kind; ------------------------------- -- FS_Driver implementation -- ------------------------------- overriding function Create_Node (This : in out VFS; Path : Pathname; Kind : File_Kind) return Status_Kind; overriding function Create_Directory (This : in out VFS; Path : Pathname) return Status_Kind; overriding function Unlink (This : in out VFS; Path : Pathname) return Status_Kind; overriding function Remove_Directory (This : in out VFS; Path : Pathname) return Status_Kind; overriding function Rename (This : in out VFS; Old_Path : Pathname; New_Path : Pathname) return Status_Kind; overriding function Truncate_File (This : in out VFS; Path : Pathname; Length : IO_Count) return Status_Kind; overriding function Open (This : in out VFS; Path : Pathname; Mode : File_Mode; Handler : out Any_File_Handle) return Status_Kind; overriding function Open_Directory (This : in out VFS; Path : Pathname; Handle : out Any_Directory_Handle) return Status_Kind; private type VFS_Directory_Handle is new HAL.Filesystem.Directory_Handle with record FS : access VFS; end record; overriding function Read_Entry (This : in out VFS_Directory_Handle; Entry_Number : Positive; Dir_Entry : out Directory_Entry) return Status_Kind; overriding function Entry_Name (This : in out VFS_Directory_Handle; Entry_Number : Positive) return Pathname; overriding function Close (This : in out VFS_Directory_Handle) return Status_Kind; type VFS_Directory_Handle_Access is access all VFS_Directory_Handle; type Mount_Point; type Mount_Point_Access is access all Mount_Point; type Mount_Point is record Directory : not null access String; FS : not null Any_FS_Driver; Next : Mount_Point_Access := null; end record; type VFS is new HAL.Filesystem.FS_Driver with record Mount_points : Mount_Point_Access; Dir_Handle : aliased VFS_Directory_Handle; end record; function Find_FS (This : in out VFS; Path : Pathname; Path_Reminder_Start : out Integer) return Any_FS_Driver; -- Find the mount point for a given path and return the index of the first -- character of the remaining path. Path_Reminder_Start will be out of -- Path'Range is there is no remaining characters. end Virtual_File_System;
41.386207
79
0.525246
1cd3c218e842b2ebbc700f56141c3238fb6740e2
2,623
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5012m.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5012m.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/cd/cd5012m.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- CD5012M.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- OBJECTIVE: -- CHECK THAT AN ADDRESS CLAUSE CAN BE GIVEN FOR A VARIABLE OF A -- LIMITED PRIVATE TYPE IN THE DECLARATIVE PART OF A GENERIC -- SUBPROGRAM. -- HISTORY: -- DHH 09/15/87 CREATED ORIGINAL TEST. -- PWB 05/11/89 CHANGED EXTENSION FROM '.DEP' TO '.ADA'. WITH SYSTEM; USE SYSTEM; WITH REPORT; USE REPORT; WITH SPPRT13; PROCEDURE CD5012M IS BEGIN TEST ("CD5012M", "AN ADDRESS CLAUSE CAN BE " & "GIVEN FOR A VARIABLE OF A LIMITED " & "PRIVATE TYPE IN THE DECLARATIVE " & "PART OF A GENERIC SUBPROGRAM"); DECLARE PACKAGE P IS TYPE FIXED IS LIMITED PRIVATE; PRIVATE TYPE FIXED IS DELTA 2.0**(-4) RANGE -10.0..10.0; END P; USE P; GENERIC PROCEDURE GENPROC; PROCEDURE GENPROC IS TESTFIX : FIXED; FOR TESTFIX USE AT SPPRT13.VARIABLE_ADDRESS; BEGIN IF TESTFIX'ADDRESS /= SPPRT13.VARIABLE_ADDRESS THEN FAILED ("WRONG ADDRESS FOR LIMITED PRIVATE " & "TYPE VARIABLE IN GENERIC PROCEDURE"); END IF; END GENPROC; PROCEDURE PROC IS NEW GENPROC; BEGIN PROC; END; RESULT; END CD5012M;
33.202532
79
0.602745
0b712a4758c3009ff9e7a83184bcce58798b0557
5,667
ads
Ada
src/shared/generic/lsc-internal-sha256.ads
Componolit/libsparkcrypto
8531a07b6e9f5eb33eae0fa32759b4cbd3509d95
[ "OpenSSL", "Unlicense" ]
30
2018-05-18T09:11:50.000Z
2021-05-18T16:29:14.000Z
src/shared/generic/lsc-internal-sha256.ads
Componolit/libsparkcrypto
8531a07b6e9f5eb33eae0fa32759b4cbd3509d95
[ "OpenSSL", "Unlicense" ]
15
2018-12-13T07:53:36.000Z
2019-09-24T19:43:35.000Z
src/shared/generic/lsc-internal-sha256.ads
Componolit/libsparkcrypto
8531a07b6e9f5eb33eae0fa32759b4cbd3509d95
[ "OpenSSL", "Unlicense" ]
3
2019-04-04T17:41:29.000Z
2021-05-07T22:28:46.000Z
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- Copyright (C) 2010, Alexander Senier -- Copyright (C) 2010, secunet Security Networks AG -- 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 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 LSC.Internal.Types; use type LSC.Internal.Types.Index; use type LSC.Internal.Types.Word32; use type LSC.Internal.Types.Word64; ------------------------------------------------------------------------------- -- The SHA-256 hash algorithm -- -- <ul> -- <li> -- <a href="http://csrc.nist.gov/publications/fips/fips180-3/fips180-3_final.pdf"> -- FIPS PUB 180-3, Secure Hash Standard (SHS), National Institute of Standards -- and Technology, U.S. Department of Commerce, October 2008. </a> -- </li> -- </ul> ------------------------------------------------------------------------------- package LSC.Internal.SHA256 is pragma Pure; -- SHA-256 context type Context_Type is private; -- Index for SHA-256 block subtype Block_Index is Types.Index range 0 .. 15; -- SHA-256 block subtype Block_Type is Types.Word32_Array_Type (Block_Index); -- SHA-256 block size Block_Size : constant := 512; -- Index for SHA-256 hash subtype SHA256_Hash_Index is Types.Index range 0 .. 7; -- SHA-256 hash subtype SHA256_Hash_Type is Types.Word32_Array_Type (SHA256_Hash_Index); -- SHA-256 block length subtype Block_Length_Type is Types.Word32 range 0 .. Block_Size - 1; -- Index for SHA-256 message -- -- A SHA-256 message can be at most 2^64 bit long. As one block has 512 bit, -- this makes 2^55 blocks. type Message_Index is range 0 .. 2 ** 55 - 1; -- SHA-256 message type Message_Type is array (Message_Index range <>) of Block_Type; -- Initialize SHA-256 context. function SHA256_Context_Init return Context_Type; -- Update SHA-256 @Context@ with message block @Block@. procedure Context_Update (Context : in out Context_Type; Block : in Block_Type) with Depends => (Context =>+ Block); pragma Inline (Context_Update); -- Finalize SHA-256 @Context@ using @Length@ bits of final message block -- @Block@. procedure Context_Finalize (Context : in out Context_Type; Block : in Block_Type; Length : in Block_Length_Type) with Depends => (Context =>+ (Block, Length)); -- Return SHA-256 hash from @Context@. function SHA256_Get_Hash (Context : Context_Type) return SHA256_Hash_Type; procedure Hash_Context (Message : in Message_Type; Length : in LSC.Internal.SHA256.Message_Index; Ctx : in out Context_Type) with Depends => (Ctx =>+ (Message, Length)), Pre => Message'First <= Message'Last and Length / Block_Size + (if Length mod Block_Size = 0 then 0 else 1) <= Message'Length; -- Compute hash value of @Length@ bits of @Message@. function Hash (Message : Message_Type; Length : LSC.Internal.SHA256.Message_Index) return SHA256_Hash_Type with Pre => Message'First <= Message'Last and Length / Block_Size + (if Length mod Block_Size = 0 then 0 else 1) <= Message'Length; -- Empty block Null_Block : constant Block_Type; -- Empty Hash SHA256_Null_Hash : constant SHA256_Hash_Type; private type Data_Length is record LSW : Types.Word32; MSW : Types.Word32; end record; subtype Schedule_Index is Types.Index range 0 .. 63; subtype Schedule_Type is Types.Word32_Array_Type (Schedule_Index); Null_Schedule : constant Schedule_Type := Schedule_Type'(Schedule_Index => 0); type Context_Type is record Length : Data_Length; H : SHA256_Hash_Type; W : Schedule_Type; end record; Null_Block : constant Block_Type := Block_Type'(Block_Index => 0); SHA256_Null_Hash : constant SHA256_Hash_Type := SHA256_Hash_Type'(SHA256_Hash_Index => 0); end LSC.Internal.SHA256;
35.41875
83
0.64655
0b9c478ddb15ce586442084b064d9e179965e92f
1,410
ads
Ada
tier-1/xcb/source/thin/xcb-xcb_glx_get_materialiv_cookie_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
2
2015-11-12T11:16:20.000Z
2021-08-24T22:32:04.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_get_materialiv_cookie_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
1
2018-06-05T05:19:35.000Z
2021-11-20T01:13:23.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_get_materialiv_cookie_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
null
null
null
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_materialiv_cookie_t is -- Item -- type Item is record sequence : aliased Interfaces.C.unsigned; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_materialiv_cookie_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_materialiv_cookie_t.Item, Element_Array => xcb.xcb_glx_get_materialiv_cookie_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_get_materialiv_cookie_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_materialiv_cookie_t.Pointer, Element_Array => xcb.xcb_glx_get_materialiv_cookie_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_get_materialiv_cookie_t;
26.603774
78
0.671631
399f7a6593dd0c82f91df21d3ccb706dbddb09f1
5,195
ads
Ada
source/amf/uml/amf-uml-write_link_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-write_link_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-write_link_actions-collections.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- 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.Write_Link_Actions.Collections is pragma Preelaborate; package UML_Write_Link_Action_Collections is new AMF.Generic_Collections (UML_Write_Link_Action, UML_Write_Link_Action_Access); type Set_Of_UML_Write_Link_Action is new UML_Write_Link_Action_Collections.Set with null record; Empty_Set_Of_UML_Write_Link_Action : constant Set_Of_UML_Write_Link_Action; type Ordered_Set_Of_UML_Write_Link_Action is new UML_Write_Link_Action_Collections.Ordered_Set with null record; Empty_Ordered_Set_Of_UML_Write_Link_Action : constant Ordered_Set_Of_UML_Write_Link_Action; type Bag_Of_UML_Write_Link_Action is new UML_Write_Link_Action_Collections.Bag with null record; Empty_Bag_Of_UML_Write_Link_Action : constant Bag_Of_UML_Write_Link_Action; type Sequence_Of_UML_Write_Link_Action is new UML_Write_Link_Action_Collections.Sequence with null record; Empty_Sequence_Of_UML_Write_Link_Action : constant Sequence_Of_UML_Write_Link_Action; private Empty_Set_Of_UML_Write_Link_Action : constant Set_Of_UML_Write_Link_Action := (UML_Write_Link_Action_Collections.Set with null record); Empty_Ordered_Set_Of_UML_Write_Link_Action : constant Ordered_Set_Of_UML_Write_Link_Action := (UML_Write_Link_Action_Collections.Ordered_Set with null record); Empty_Bag_Of_UML_Write_Link_Action : constant Bag_Of_UML_Write_Link_Action := (UML_Write_Link_Action_Collections.Bag with null record); Empty_Sequence_Of_UML_Write_Link_Action : constant Sequence_Of_UML_Write_Link_Action := (UML_Write_Link_Action_Collections.Sequence with null record); end AMF.UML.Write_Link_Actions.Collections;
56.467391
94
0.53436
0bd4d6bb7274ebeb4a3f1b4fdf8d34ad420a869a
411
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt44.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt44.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt44.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { dg-do compile } -- { dg-options "-O" } package body Opt44 is procedure Addsub (X, Y : Sarray; R : out Sarray; N : Integer) is begin for I in Sarray'Range loop pragma Loop_Optimize (Ivdep); pragma Loop_Optimize (Vector); if N > 0 then R(I) := X(I) + Y(I); else R(I) := X(I) - Y(I); end if; end loop; end; end Opt44;
20.55
67
0.49635
50a4e4461baa433d2d6a4955079190a2c64bcbce
5,396
adb
Ada
Ada95/src/terminal_interface-curses-text_io-aux.adb
Ancient-Rom/android_external_libncurses
cfb80399910df8d55602d879d5cf0bc5ceaa2f89
[ "X11" ]
1,167
2017-08-21T21:21:24.000Z
2022-03-31T15:42:10.000Z
Ada95/src/terminal_interface-curses-text_io-aux.adb
thabongshot/ncurses-5.9-mac
8475dcacfcad55dda5e69f3c8d89de0264fc4429
[ "DOC", "Unlicense" ]
374
2015-11-03T12:37:22.000Z
2021-12-17T14:18:08.000Z
Ada95/src/terminal_interface-curses-text_io-aux.adb
thabongshot/ncurses-5.9-mac
8475dcacfcad55dda5e69f3c8d89de0264fc4429
[ "DOC", "Unlicense" ]
96
2015-11-22T07:47:26.000Z
2022-01-20T19:52:19.000Z
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Text_IO.Aux -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2006,2009 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, 1996 -- Version Control: -- $Revision: 1.13 $ -- $Date: 2009/12/26 17:38:58 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ package body Terminal_Interface.Curses.Text_IO.Aux is procedure Put_Buf (Win : Window; Buf : String; Width : Field; Signal : Boolean := True; Ljust : Boolean := False) is L : Field; Len : Field; W : Field := Width; LC : Line_Count; CC : Column_Count; Y : Line_Position; X : Column_Position; procedure Output (From, To : Field); procedure Output (From, To : Field) is begin if Len > 0 then if W = 0 then W := Len; end if; if Len > W then -- LRM A10.6 (7) says this W := Len; end if; pragma Assert (Len <= W); Get_Size (Win, LC, CC); if Column_Count (Len) > CC then if Signal then raise Layout_Error; else return; end if; else if Len < W and then not Ljust then declare Filler : constant String (1 .. (W - Len)) := (others => ' '); begin Put (Win, Filler); end; end if; Get_Cursor_Position (Win, Y, X); if (X + Column_Position (Len)) > CC then New_Line (Win); end if; Put (Win, Buf (From .. To)); if Len < W and then Ljust then declare Filler : constant String (1 .. (W - Len)) := (others => ' '); begin Put (Win, Filler); end; end if; end if; end if; end Output; begin pragma Assert (Win /= Null_Window); if Ljust then L := 1; for I in 1 .. Buf'Length loop exit when Buf (L) = ' '; L := L + 1; end loop; Len := L - 1; Output (1, Len); else -- input buffer is not left justified L := Buf'Length; for I in 1 .. Buf'Length loop exit when Buf (L) = ' '; L := L - 1; end loop; Len := Buf'Length - L; Output (L + 1, Buf'Length); end if; end Put_Buf; end Terminal_Interface.Curses.Text_IO.Aux;
41.829457
78
0.406042
4d00d95865844b65b8beab77920e4277be5c27a3
913
adb
Ada
src/tcl-info.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
2
2020-12-09T07:27:07.000Z
2021-10-19T13:31:54.000Z
src/tcl-info.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
src/tcl-info.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
-- Copyright (c) 2021 Bartek thindil Jasicki <[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 Tcl.Info is function Get_Commands_Count (Interpreter: Tcl_Interpreter := Get_Interpreter) return Natural is begin return Tcl_Eval(Tcl_Script => "info cmdcount", Interpreter => Interpreter) .Result; end Get_Commands_Count; end Tcl.Info;
35.115385
75
0.730559
1cf11c9aa22436fad44d9bacff12f54c7960b876
3,491
ads
Ada
source/asis/asis-gela-implicit.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
source/asis/asis-gela-implicit.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
source/asis/asis-gela-implicit.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ -- Purpose: -- Create and declare implicit declaration with Asis.Gela.Classes; with Asis.Gela.Visibility; package Asis.Gela.Implicit is procedure Process_Unit (Unit : Asis.Compilation_Unit); -- Recognize predefined units and mark implementation defined -- expressions as implicit, collect some type declarations. procedure Make_Operations (Decl : in Asis.Declaration; Point : in out Visibility.Point); -- Create implicit operations for type declaration and declare them -- in declaration region pointed by Point. procedure Make_Operations (Tipe : in Classes.Type_Info; Was : in Classes.Type_Info; Point : in out Visibility.Point); -- Create implicit operations when type change it's properties and -- declare them in declaration region pointed by Point. procedure Make_Not_Equal_Operator (Equal : Asis.Declaration; Point : in out Visibility.Point); -- Create implicit "/=" operation for given "=" and declare it -- in declaration region pointed by Point. end Asis.Gela.Implicit; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- 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 Maxim Reznik, 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 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. ------------------------------------------------------------------------------
49.169014
79
0.614724
18b58fbac433a095266831857d7cba0250c0347b
2,552
ads
Ada
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/big_packed_array/pck.ads
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
31
2018-08-01T21:25:24.000Z
2022-02-14T07:52:34.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/big_packed_array/pck.ads
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/big_packed_array/pck.ads
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
20
2018-11-16T21:19:22.000Z
2021-10-18T23:08:24.000Z
-- Copyright 2019 Free Software Foundation, Inc. -- -- This program 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 3 of the License, or -- (at your option) any later version. -- -- This program 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 program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is type Enum_Idx is (e_000, e_001, e_002, e_003, e_004, e_005, e_006, e_007, e_008, e_009, e_010, e_011, e_012, e_013, e_014, e_015, e_016, e_017, e_018, e_019, e_020, e_021, e_022, e_023, e_024, e_025, e_026, e_027, e_028, e_029, e_030, e_031, e_032, e_033, e_034, e_035, e_036, e_037, e_038, e_039, e_040, e_041, e_042, e_043, e_044, e_045, e_046, e_047, e_048, e_049, e_050, e_051, e_052, e_053, e_054, e_055, e_056, e_057, e_058, e_059, e_060, e_061, e_062, e_063, e_064, e_065, e_066, e_067, e_068, e_069, e_070, e_071, e_072, e_073, e_074, e_075, e_076, e_077, e_078, e_079, e_080, e_081, e_082, e_083, e_084, e_085, e_086, e_087, e_088, e_089, e_090, e_091, e_092, e_093, e_094, e_095, e_096, e_097, e_098, e_099, e_100, e_101, e_102, e_103, e_104, e_105, e_106, e_107, e_108, e_109, e_110, e_111, e_112, e_113, e_114, e_115, e_116, e_117, e_118, e_119, e_120, e_121, e_122, e_123, e_124, e_125, e_126, e_127, e_128, e_129, e_130, e_131, e_132, e_133, e_134, e_135, e_136, e_137, e_138, e_139, e_140, e_141, e_142, e_143, e_144, e_145, e_146, e_147, e_148, e_149, e_150, e_151, e_152, e_153, e_154, e_155, e_156, e_157, e_158, e_159, e_160, e_161, e_162, e_163, e_164, e_165, e_166, e_167, e_168, e_169, e_170, e_171, e_172, e_173, e_174, e_175, e_176, e_177, e_178, e_179, e_180, e_181, e_182, e_183, e_184, e_185, e_186, e_187, e_188, e_189, e_190, e_191, e_192, e_193, e_194, e_195); type PA is array (Enum_Idx) of Boolean; pragma Pack (PA); type T is array (Enum_Idx) of Boolean; pragma Pack (T); T_Empty : constant T := (others => False); type Bad_Packed_Table is new T; Procedure Do_Nothing (A : System.Address); end Pck;
47.259259
73
0.67163
0b60f915d0c0dc2c33927a04c7515364a49c7e71
495,258
ads
Ada
src/sqlite/sqlite3_h.ads
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
src/sqlite/sqlite3_h.ads
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
src/sqlite/sqlite3_h.ads
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; -- with Interfaces.C.Extensions; with System; package Sqlite3_H is pragma Preelaborate; -- unsupported macro: SQLITE_EXTERN extern SQLITE_VERSION : aliased constant String := "3.11.0" & ASCII.NUL; -- /usr/include/sqlite3.h:114 SQLITE_VERSION_NUMBER : constant := 3011000; -- /usr/include/sqlite3.h:115 SQLITE_SOURCE_ID : aliased constant String := "2016-02-15 17:29:24 3d862f207e3adc00f78066799ac5a8c282430a5f" & ASCII.NUL; -- /usr/include/sqlite3.h:116 SQLITE_OK : constant := 0; -- /usr/include/sqlite3.h:404 SQLITE_ERROR : constant := 1; -- /usr/include/sqlite3.h:406 SQLITE_INTERNAL : constant := 2; -- /usr/include/sqlite3.h:407 SQLITE_PERM : constant := 3; -- /usr/include/sqlite3.h:408 SQLITE_ABORT : constant := 4; -- /usr/include/sqlite3.h:409 SQLITE_BUSY : constant := 5; -- /usr/include/sqlite3.h:410 SQLITE_LOCKED : constant := 6; -- /usr/include/sqlite3.h:411 SQLITE_NOMEM : constant := 7; -- /usr/include/sqlite3.h:412 SQLITE_READONLY : constant := 8; -- /usr/include/sqlite3.h:413 SQLITE_INTERRUPT : constant := 9; -- /usr/include/sqlite3.h:414 SQLITE_IOERR : constant := 10; -- /usr/include/sqlite3.h:415 SQLITE_CORRUPT : constant := 11; -- /usr/include/sqlite3.h:416 SQLITE_NOTFOUND : constant := 12; -- /usr/include/sqlite3.h:417 SQLITE_FULL : constant := 13; -- /usr/include/sqlite3.h:418 SQLITE_CANTOPEN : constant := 14; -- /usr/include/sqlite3.h:419 SQLITE_PROTOCOL : constant := 15; -- /usr/include/sqlite3.h:420 SQLITE_EMPTY : constant := 16; -- /usr/include/sqlite3.h:421 SQLITE_SCHEMA : constant := 17; -- /usr/include/sqlite3.h:422 SQLITE_TOOBIG : constant := 18; -- /usr/include/sqlite3.h:423 SQLITE_CONSTRAINT : constant := 19; -- /usr/include/sqlite3.h:424 SQLITE_MISMATCH : constant := 20; -- /usr/include/sqlite3.h:425 SQLITE_MISUSE : constant := 21; -- /usr/include/sqlite3.h:426 SQLITE_NOLFS : constant := 22; -- /usr/include/sqlite3.h:427 SQLITE_AUTH : constant := 23; -- /usr/include/sqlite3.h:428 SQLITE_FORMAT : constant := 24; -- /usr/include/sqlite3.h:429 SQLITE_RANGE : constant := 25; -- /usr/include/sqlite3.h:430 SQLITE_NOTADB : constant := 26; -- /usr/include/sqlite3.h:431 SQLITE_NOTICE : constant := 27; -- /usr/include/sqlite3.h:432 SQLITE_WARNING : constant := 28; -- /usr/include/sqlite3.h:433 SQLITE_ROW : constant := 100; -- /usr/include/sqlite3.h:434 SQLITE_DONE : constant := 101; -- /usr/include/sqlite3.h:435 -- unsupported macro: SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) -- unsupported macro: SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) -- unsupported macro: SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) -- unsupported macro: SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) -- unsupported macro: SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) -- unsupported macro: SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) -- unsupported macro: SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) -- unsupported macro: SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) -- unsupported macro: SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) -- unsupported macro: SQLITE_IOERR_DELETE (SQLITE_IOERR | (10<<8)) -- unsupported macro: SQLITE_IOERR_BLOCKED (SQLITE_IOERR | (11<<8)) -- unsupported macro: SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8)) -- unsupported macro: SQLITE_IOERR_ACCESS (SQLITE_IOERR | (13<<8)) -- unsupported macro: SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8)) -- unsupported macro: SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8)) -- unsupported macro: SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8)) -- unsupported macro: SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8)) -- unsupported macro: SQLITE_IOERR_SHMOPEN (SQLITE_IOERR | (18<<8)) -- unsupported macro: SQLITE_IOERR_SHMSIZE (SQLITE_IOERR | (19<<8)) -- unsupported macro: SQLITE_IOERR_SHMLOCK (SQLITE_IOERR | (20<<8)) -- unsupported macro: SQLITE_IOERR_SHMMAP (SQLITE_IOERR | (21<<8)) -- unsupported macro: SQLITE_IOERR_SEEK (SQLITE_IOERR | (22<<8)) -- unsupported macro: SQLITE_IOERR_DELETE_NOENT (SQLITE_IOERR | (23<<8)) -- unsupported macro: SQLITE_IOERR_MMAP (SQLITE_IOERR | (24<<8)) -- unsupported macro: SQLITE_IOERR_GETTEMPPATH (SQLITE_IOERR | (25<<8)) -- unsupported macro: SQLITE_IOERR_CONVPATH (SQLITE_IOERR | (26<<8)) -- unsupported macro: SQLITE_IOERR_VNODE (SQLITE_IOERR | (27<<8)) -- unsupported macro: SQLITE_IOERR_AUTH (SQLITE_IOERR | (28<<8)) -- unsupported macro: SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8)) -- unsupported macro: SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8)) -- unsupported macro: SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8)) -- unsupported macro: SQLITE_CANTOPEN_NOTEMPDIR (SQLITE_CANTOPEN | (1<<8)) -- unsupported macro: SQLITE_CANTOPEN_ISDIR (SQLITE_CANTOPEN | (2<<8)) -- unsupported macro: SQLITE_CANTOPEN_FULLPATH (SQLITE_CANTOPEN | (3<<8)) -- unsupported macro: SQLITE_CANTOPEN_CONVPATH (SQLITE_CANTOPEN | (4<<8)) -- unsupported macro: SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8)) -- unsupported macro: SQLITE_READONLY_RECOVERY (SQLITE_READONLY | (1<<8)) -- unsupported macro: SQLITE_READONLY_CANTLOCK (SQLITE_READONLY | (2<<8)) -- unsupported macro: SQLITE_READONLY_ROLLBACK (SQLITE_READONLY | (3<<8)) -- unsupported macro: SQLITE_READONLY_DBMOVED (SQLITE_READONLY | (4<<8)) -- unsupported macro: SQLITE_ABORT_ROLLBACK (SQLITE_ABORT | (2<<8)) -- unsupported macro: SQLITE_CONSTRAINT_CHECK (SQLITE_CONSTRAINT | (1<<8)) -- unsupported macro: SQLITE_CONSTRAINT_COMMITHOOK (SQLITE_CONSTRAINT | (2<<8)) -- unsupported macro: SQLITE_CONSTRAINT_FOREIGNKEY (SQLITE_CONSTRAINT | (3<<8)) -- unsupported macro: SQLITE_CONSTRAINT_FUNCTION (SQLITE_CONSTRAINT | (4<<8)) -- unsupported macro: SQLITE_CONSTRAINT_NOTNULL (SQLITE_CONSTRAINT | (5<<8)) -- unsupported macro: SQLITE_CONSTRAINT_PRIMARYKEY (SQLITE_CONSTRAINT | (6<<8)) -- unsupported macro: SQLITE_CONSTRAINT_TRIGGER (SQLITE_CONSTRAINT | (7<<8)) -- unsupported macro: SQLITE_CONSTRAINT_UNIQUE (SQLITE_CONSTRAINT | (8<<8)) -- unsupported macro: SQLITE_CONSTRAINT_VTAB (SQLITE_CONSTRAINT | (9<<8)) -- unsupported macro: SQLITE_CONSTRAINT_ROWID (SQLITE_CONSTRAINT |(10<<8)) -- unsupported macro: SQLITE_NOTICE_RECOVER_WAL (SQLITE_NOTICE | (1<<8)) -- unsupported macro: SQLITE_NOTICE_RECOVER_ROLLBACK (SQLITE_NOTICE | (2<<8)) -- unsupported macro: SQLITE_WARNING_AUTOINDEX (SQLITE_WARNING | (1<<8)) -- unsupported macro: SQLITE_AUTH_USER (SQLITE_AUTH | (1<<8)) SQLITE_OPEN_READONLY : constant := 16#00000001#; -- /usr/include/sqlite3.h:517 SQLITE_OPEN_READWRITE : constant := 16#00000002#; -- /usr/include/sqlite3.h:518 SQLITE_OPEN_CREATE : constant := 16#00000004#; -- /usr/include/sqlite3.h:519 SQLITE_OPEN_DELETEONCLOSE : constant := 16#00000008#; -- /usr/include/sqlite3.h:520 SQLITE_OPEN_EXCLUSIVE : constant := 16#00000010#; -- /usr/include/sqlite3.h:521 SQLITE_OPEN_AUTOPROXY : constant := 16#00000020#; -- /usr/include/sqlite3.h:522 SQLITE_OPEN_URI : constant := 16#00000040#; -- /usr/include/sqlite3.h:523 SQLITE_OPEN_MEMORY : constant := 16#00000080#; -- /usr/include/sqlite3.h:524 SQLITE_OPEN_MAIN_DB : constant := 16#00000100#; -- /usr/include/sqlite3.h:525 SQLITE_OPEN_TEMP_DB : constant := 16#00000200#; -- /usr/include/sqlite3.h:526 SQLITE_OPEN_TRANSIENT_DB : constant := 16#00000400#; -- /usr/include/sqlite3.h:527 SQLITE_OPEN_MAIN_JOURNAL : constant := 16#00000800#; -- /usr/include/sqlite3.h:528 SQLITE_OPEN_TEMP_JOURNAL : constant := 16#00001000#; -- /usr/include/sqlite3.h:529 SQLITE_OPEN_SUBJOURNAL : constant := 16#00002000#; -- /usr/include/sqlite3.h:530 SQLITE_OPEN_MASTER_JOURNAL : constant := 16#00004000#; -- /usr/include/sqlite3.h:531 SQLITE_OPEN_NOMUTEX : constant := 16#00008000#; -- /usr/include/sqlite3.h:532 SQLITE_OPEN_FULLMUTEX : constant := 16#00010000#; -- /usr/include/sqlite3.h:533 SQLITE_OPEN_SHAREDCACHE : constant := 16#00020000#; -- /usr/include/sqlite3.h:534 SQLITE_OPEN_PRIVATECACHE : constant := 16#00040000#; -- /usr/include/sqlite3.h:535 SQLITE_OPEN_WAL : constant := 16#00080000#; -- /usr/include/sqlite3.h:536 SQLITE_IOCAP_ATOMIC : constant := 16#00000001#; -- /usr/include/sqlite3.h:568 SQLITE_IOCAP_ATOMIC512 : constant := 16#00000002#; -- /usr/include/sqlite3.h:569 SQLITE_IOCAP_ATOMIC1K : constant := 16#00000004#; -- /usr/include/sqlite3.h:570 SQLITE_IOCAP_ATOMIC2K : constant := 16#00000008#; -- /usr/include/sqlite3.h:571 SQLITE_IOCAP_ATOMIC4K : constant := 16#00000010#; -- /usr/include/sqlite3.h:572 SQLITE_IOCAP_ATOMIC8K : constant := 16#00000020#; -- /usr/include/sqlite3.h:573 SQLITE_IOCAP_ATOMIC16K : constant := 16#00000040#; -- /usr/include/sqlite3.h:574 SQLITE_IOCAP_ATOMIC32K : constant := 16#00000080#; -- /usr/include/sqlite3.h:575 SQLITE_IOCAP_ATOMIC64K : constant := 16#00000100#; -- /usr/include/sqlite3.h:576 SQLITE_IOCAP_SAFE_APPEND : constant := 16#00000200#; -- /usr/include/sqlite3.h:577 SQLITE_IOCAP_SEQUENTIAL : constant := 16#00000400#; -- /usr/include/sqlite3.h:578 SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN : constant := 16#00000800#; -- /usr/include/sqlite3.h:579 SQLITE_IOCAP_POWERSAFE_OVERWRITE : constant := 16#00001000#; -- /usr/include/sqlite3.h:580 SQLITE_IOCAP_IMMUTABLE : constant := 16#00002000#; -- /usr/include/sqlite3.h:581 SQLITE_LOCK_NONE : constant := 0; -- /usr/include/sqlite3.h:590 SQLITE_LOCK_SHARED : constant := 1; -- /usr/include/sqlite3.h:591 SQLITE_LOCK_RESERVED : constant := 2; -- /usr/include/sqlite3.h:592 SQLITE_LOCK_PENDING : constant := 3; -- /usr/include/sqlite3.h:593 SQLITE_LOCK_EXCLUSIVE : constant := 4; -- /usr/include/sqlite3.h:594 SQLITE_SYNC_NORMAL : constant := 16#00002#; -- /usr/include/sqlite3.h:622 SQLITE_SYNC_FULL : constant := 16#00003#; -- /usr/include/sqlite3.h:623 SQLITE_SYNC_DATAONLY : constant := 16#00010#; -- /usr/include/sqlite3.h:624 SQLITE_FCNTL_LOCKSTATE : constant := 1; -- /usr/include/sqlite3.h:992 SQLITE_FCNTL_GET_LOCKPROXYFILE : constant := 2; -- /usr/include/sqlite3.h:993 SQLITE_FCNTL_SET_LOCKPROXYFILE : constant := 3; -- /usr/include/sqlite3.h:994 SQLITE_FCNTL_LAST_ERRNO : constant := 4; -- /usr/include/sqlite3.h:995 SQLITE_FCNTL_SIZE_HINT : constant := 5; -- /usr/include/sqlite3.h:996 SQLITE_FCNTL_CHUNK_SIZE : constant := 6; -- /usr/include/sqlite3.h:997 SQLITE_FCNTL_FILE_POINTER : constant := 7; -- /usr/include/sqlite3.h:998 SQLITE_FCNTL_SYNC_OMITTED : constant := 8; -- /usr/include/sqlite3.h:999 SQLITE_FCNTL_WIN32_AV_RETRY : constant := 9; -- /usr/include/sqlite3.h:1000 SQLITE_FCNTL_PERSIST_WAL : constant := 10; -- /usr/include/sqlite3.h:1001 SQLITE_FCNTL_OVERWRITE : constant := 11; -- /usr/include/sqlite3.h:1002 SQLITE_FCNTL_VFSNAME : constant := 12; -- /usr/include/sqlite3.h:1003 SQLITE_FCNTL_POWERSAFE_OVERWRITE : constant := 13; -- /usr/include/sqlite3.h:1004 SQLITE_FCNTL_PRAGMA : constant := 14; -- /usr/include/sqlite3.h:1005 SQLITE_FCNTL_BUSYHANDLER : constant := 15; -- /usr/include/sqlite3.h:1006 SQLITE_FCNTL_TEMPFILENAME : constant := 16; -- /usr/include/sqlite3.h:1007 SQLITE_FCNTL_MMAP_SIZE : constant := 18; -- /usr/include/sqlite3.h:1008 SQLITE_FCNTL_TRACE : constant := 19; -- /usr/include/sqlite3.h:1009 SQLITE_FCNTL_HAS_MOVED : constant := 20; -- /usr/include/sqlite3.h:1010 SQLITE_FCNTL_SYNC : constant := 21; -- /usr/include/sqlite3.h:1011 SQLITE_FCNTL_COMMIT_PHASETWO : constant := 22; -- /usr/include/sqlite3.h:1012 SQLITE_FCNTL_WIN32_SET_HANDLE : constant := 23; -- /usr/include/sqlite3.h:1013 SQLITE_FCNTL_WAL_BLOCK : constant := 24; -- /usr/include/sqlite3.h:1014 SQLITE_FCNTL_ZIPVFS : constant := 25; -- /usr/include/sqlite3.h:1015 SQLITE_FCNTL_RBU : constant := 26; -- /usr/include/sqlite3.h:1016 SQLITE_FCNTL_VFS_POINTER : constant := 27; -- /usr/include/sqlite3.h:1017 SQLITE_FCNTL_JOURNAL_POINTER : constant := 28; -- /usr/include/sqlite3.h:1018 -- unsupported macro: SQLITE_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE -- unsupported macro: SQLITE_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE -- unsupported macro: SQLITE_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO SQLITE_ACCESS_EXISTS : constant := 0; -- /usr/include/sqlite3.h:1256 SQLITE_ACCESS_READWRITE : constant := 1; -- /usr/include/sqlite3.h:1257 SQLITE_ACCESS_READ : constant := 2; -- /usr/include/sqlite3.h:1258 SQLITE_SHM_UNLOCK : constant := 1; -- /usr/include/sqlite3.h:1282 SQLITE_SHM_LOCK : constant := 2; -- /usr/include/sqlite3.h:1283 SQLITE_SHM_SHARED : constant := 4; -- /usr/include/sqlite3.h:1284 SQLITE_SHM_EXCLUSIVE : constant := 8; -- /usr/include/sqlite3.h:1285 SQLITE_SHM_NLOCK : constant := 8; -- /usr/include/sqlite3.h:1295 SQLITE_CONFIG_SINGLETHREAD : constant := 1; -- /usr/include/sqlite3.h:1825 SQLITE_CONFIG_MULTITHREAD : constant := 2; -- /usr/include/sqlite3.h:1826 SQLITE_CONFIG_SERIALIZED : constant := 3; -- /usr/include/sqlite3.h:1827 SQLITE_CONFIG_MALLOC : constant := 4; -- /usr/include/sqlite3.h:1828 SQLITE_CONFIG_GETMALLOC : constant := 5; -- /usr/include/sqlite3.h:1829 SQLITE_CONFIG_SCRATCH : constant := 6; -- /usr/include/sqlite3.h:1830 SQLITE_CONFIG_PAGECACHE : constant := 7; -- /usr/include/sqlite3.h:1831 SQLITE_CONFIG_HEAP : constant := 8; -- /usr/include/sqlite3.h:1832 SQLITE_CONFIG_MEMSTATUS : constant := 9; -- /usr/include/sqlite3.h:1833 SQLITE_CONFIG_MUTEX : constant := 10; -- /usr/include/sqlite3.h:1834 SQLITE_CONFIG_GETMUTEX : constant := 11; -- /usr/include/sqlite3.h:1835 SQLITE_CONFIG_LOOKASIDE : constant := 13; -- /usr/include/sqlite3.h:1837 SQLITE_CONFIG_PCACHE : constant := 14; -- /usr/include/sqlite3.h:1838 SQLITE_CONFIG_GETPCACHE : constant := 15; -- /usr/include/sqlite3.h:1839 SQLITE_CONFIG_LOG : constant := 16; -- /usr/include/sqlite3.h:1840 SQLITE_CONFIG_URI : constant := 17; -- /usr/include/sqlite3.h:1841 SQLITE_CONFIG_PCACHE2 : constant := 18; -- /usr/include/sqlite3.h:1842 SQLITE_CONFIG_GETPCACHE2 : constant := 19; -- /usr/include/sqlite3.h:1843 SQLITE_CONFIG_COVERING_INDEX_SCAN : constant := 20; -- /usr/include/sqlite3.h:1844 SQLITE_CONFIG_SQLLOG : constant := 21; -- /usr/include/sqlite3.h:1845 SQLITE_CONFIG_MMAP_SIZE : constant := 22; -- /usr/include/sqlite3.h:1846 SQLITE_CONFIG_WIN32_HEAPSIZE : constant := 23; -- /usr/include/sqlite3.h:1847 SQLITE_CONFIG_PCACHE_HDRSZ : constant := 24; -- /usr/include/sqlite3.h:1848 SQLITE_CONFIG_PMASZ : constant := 25; -- /usr/include/sqlite3.h:1849 SQLITE_DBCONFIG_LOOKASIDE : constant := 1001; -- /usr/include/sqlite3.h:1909 SQLITE_DBCONFIG_ENABLE_FKEY : constant := 1002; -- /usr/include/sqlite3.h:1910 SQLITE_DBCONFIG_ENABLE_TRIGGER : constant := 1003; -- /usr/include/sqlite3.h:1911 SQLITE_DENY : constant := 1; -- /usr/include/sqlite3.h:2648 SQLITE_IGNORE : constant := 2; -- /usr/include/sqlite3.h:2649 SQLITE_CREATE_INDEX : constant := 1; -- /usr/include/sqlite3.h:2671 SQLITE_CREATE_TABLE : constant := 2; -- /usr/include/sqlite3.h:2672 SQLITE_CREATE_TEMP_INDEX : constant := 3; -- /usr/include/sqlite3.h:2673 SQLITE_CREATE_TEMP_TABLE : constant := 4; -- /usr/include/sqlite3.h:2674 SQLITE_CREATE_TEMP_TRIGGER : constant := 5; -- /usr/include/sqlite3.h:2675 SQLITE_CREATE_TEMP_VIEW : constant := 6; -- /usr/include/sqlite3.h:2676 SQLITE_CREATE_TRIGGER : constant := 7; -- /usr/include/sqlite3.h:2677 SQLITE_CREATE_VIEW : constant := 8; -- /usr/include/sqlite3.h:2678 SQLITE_DELETE : constant := 9; -- /usr/include/sqlite3.h:2679 SQLITE_DROP_INDEX : constant := 10; -- /usr/include/sqlite3.h:2680 SQLITE_DROP_TABLE : constant := 11; -- /usr/include/sqlite3.h:2681 SQLITE_DROP_TEMP_INDEX : constant := 12; -- /usr/include/sqlite3.h:2682 SQLITE_DROP_TEMP_TABLE : constant := 13; -- /usr/include/sqlite3.h:2683 SQLITE_DROP_TEMP_TRIGGER : constant := 14; -- /usr/include/sqlite3.h:2684 SQLITE_DROP_TEMP_VIEW : constant := 15; -- /usr/include/sqlite3.h:2685 SQLITE_DROP_TRIGGER : constant := 16; -- /usr/include/sqlite3.h:2686 SQLITE_DROP_VIEW : constant := 17; -- /usr/include/sqlite3.h:2687 SQLITE_INSERT : constant := 18; -- /usr/include/sqlite3.h:2688 SQLITE_PRAGMA : constant := 19; -- /usr/include/sqlite3.h:2689 SQLITE_READ : constant := 20; -- /usr/include/sqlite3.h:2690 SQLITE_SELECT : constant := 21; -- /usr/include/sqlite3.h:2691 SQLITE_TRANSACTION : constant := 22; -- /usr/include/sqlite3.h:2692 SQLITE_UPDATE : constant := 23; -- /usr/include/sqlite3.h:2693 SQLITE_ATTACH : constant := 24; -- /usr/include/sqlite3.h:2694 SQLITE_DETACH : constant := 25; -- /usr/include/sqlite3.h:2695 SQLITE_ALTER_TABLE : constant := 26; -- /usr/include/sqlite3.h:2696 SQLITE_REINDEX : constant := 27; -- /usr/include/sqlite3.h:2697 SQLITE_ANALYZE : constant := 28; -- /usr/include/sqlite3.h:2698 SQLITE_CREATE_VTABLE : constant := 29; -- /usr/include/sqlite3.h:2699 SQLITE_DROP_VTABLE : constant := 30; -- /usr/include/sqlite3.h:2700 SQLITE_FUNCTION : constant := 31; -- /usr/include/sqlite3.h:2701 SQLITE_SAVEPOINT : constant := 32; -- /usr/include/sqlite3.h:2702 SQLITE_COPY : constant := 0; -- /usr/include/sqlite3.h:2703 SQLITE_RECURSIVE : constant := 33; -- /usr/include/sqlite3.h:2704 SQLITE_LIMIT_LENGTH : constant := 0; -- /usr/include/sqlite3.h:3230 SQLITE_LIMIT_SQL_LENGTH : constant := 1; -- /usr/include/sqlite3.h:3231 SQLITE_LIMIT_COLUMN : constant := 2; -- /usr/include/sqlite3.h:3232 SQLITE_LIMIT_EXPR_DEPTH : constant := 3; -- /usr/include/sqlite3.h:3233 SQLITE_LIMIT_COMPOUND_SELECT : constant := 4; -- /usr/include/sqlite3.h:3234 SQLITE_LIMIT_VDBE_OP : constant := 5; -- /usr/include/sqlite3.h:3235 SQLITE_LIMIT_FUNCTION_ARG : constant := 6; -- /usr/include/sqlite3.h:3236 SQLITE_LIMIT_ATTACHED : constant := 7; -- /usr/include/sqlite3.h:3237 SQLITE_LIMIT_LIKE_PATTERN_LENGTH : constant := 8; -- /usr/include/sqlite3.h:3238 SQLITE_LIMIT_VARIABLE_NUMBER : constant := 9; -- /usr/include/sqlite3.h:3239 SQLITE_LIMIT_TRIGGER_DEPTH : constant := 10; -- /usr/include/sqlite3.h:3240 SQLITE_LIMIT_WORKER_THREADS : constant := 11; -- /usr/include/sqlite3.h:3241 SQLITE_INTEGER : constant := 1; -- /usr/include/sqlite3.h:3919 SQLITE_FLOAT : constant := 2; -- /usr/include/sqlite3.h:3920 SQLITE_BLOB : constant := 4; -- /usr/include/sqlite3.h:3921 SQLITE_NULL : constant := 5; -- /usr/include/sqlite3.h:3922 SQLITE_TEXT : constant := 3; -- /usr/include/sqlite3.h:3926 SQLITE3_TEXT : constant := 3; -- /usr/include/sqlite3.h:3928 SQLITE_UTF8 : constant := 1; -- /usr/include/sqlite3.h:4288 SQLITE_UTF16LE : constant := 2; -- /usr/include/sqlite3.h:4289 SQLITE_UTF16BE : constant := 3; -- /usr/include/sqlite3.h:4290 SQLITE_UTF16 : constant := 4; -- /usr/include/sqlite3.h:4291 SQLITE_ANY : constant := 5; -- /usr/include/sqlite3.h:4292 SQLITE_UTF16_ALIGNED : constant := 8; -- /usr/include/sqlite3.h:4293 SQLITE_DETERMINISTIC : constant := 16#800#; -- /usr/include/sqlite3.h:4303 -- unsupported macro: SQLITE_STATIC ((sqlite3_destructor_type)0) -- unsupported macro: SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) SQLITE_INDEX_SCAN_UNIQUE : constant := 1; -- /usr/include/sqlite3.h:5731 SQLITE_INDEX_CONSTRAINT_EQ : constant := 2; -- /usr/include/sqlite3.h:5741 SQLITE_INDEX_CONSTRAINT_GT : constant := 4; -- /usr/include/sqlite3.h:5742 SQLITE_INDEX_CONSTRAINT_LE : constant := 8; -- /usr/include/sqlite3.h:5743 SQLITE_INDEX_CONSTRAINT_LT : constant := 16; -- /usr/include/sqlite3.h:5744 SQLITE_INDEX_CONSTRAINT_GE : constant := 32; -- /usr/include/sqlite3.h:5745 SQLITE_INDEX_CONSTRAINT_MATCH : constant := 64; -- /usr/include/sqlite3.h:5746 SQLITE_INDEX_CONSTRAINT_LIKE : constant := 65; -- /usr/include/sqlite3.h:5747 SQLITE_INDEX_CONSTRAINT_GLOB : constant := 66; -- /usr/include/sqlite3.h:5748 SQLITE_INDEX_CONSTRAINT_REGEXP : constant := 67; -- /usr/include/sqlite3.h:5749 SQLITE_MUTEX_FAST : constant := 0; -- /usr/include/sqlite3.h:6384 SQLITE_MUTEX_RECURSIVE : constant := 1; -- /usr/include/sqlite3.h:6385 SQLITE_MUTEX_STATIC_MASTER : constant := 2; -- /usr/include/sqlite3.h:6386 SQLITE_MUTEX_STATIC_MEM : constant := 3; -- /usr/include/sqlite3.h:6387 SQLITE_MUTEX_STATIC_MEM2 : constant := 4; -- /usr/include/sqlite3.h:6388 SQLITE_MUTEX_STATIC_OPEN : constant := 4; -- /usr/include/sqlite3.h:6389 SQLITE_MUTEX_STATIC_PRNG : constant := 5; -- /usr/include/sqlite3.h:6390 SQLITE_MUTEX_STATIC_LRU : constant := 6; -- /usr/include/sqlite3.h:6391 SQLITE_MUTEX_STATIC_LRU2 : constant := 7; -- /usr/include/sqlite3.h:6392 SQLITE_MUTEX_STATIC_PMEM : constant := 7; -- /usr/include/sqlite3.h:6393 SQLITE_MUTEX_STATIC_APP1 : constant := 8; -- /usr/include/sqlite3.h:6394 SQLITE_MUTEX_STATIC_APP2 : constant := 9; -- /usr/include/sqlite3.h:6395 SQLITE_MUTEX_STATIC_APP3 : constant := 10; -- /usr/include/sqlite3.h:6396 SQLITE_MUTEX_STATIC_VFS1 : constant := 11; -- /usr/include/sqlite3.h:6397 SQLITE_MUTEX_STATIC_VFS2 : constant := 12; -- /usr/include/sqlite3.h:6398 SQLITE_MUTEX_STATIC_VFS3 : constant := 13; -- /usr/include/sqlite3.h:6399 SQLITE_TESTCTRL_FIRST : constant := 5; -- /usr/include/sqlite3.h:6478 SQLITE_TESTCTRL_PRNG_SAVE : constant := 5; -- /usr/include/sqlite3.h:6479 SQLITE_TESTCTRL_PRNG_RESTORE : constant := 6; -- /usr/include/sqlite3.h:6480 SQLITE_TESTCTRL_PRNG_RESET : constant := 7; -- /usr/include/sqlite3.h:6481 SQLITE_TESTCTRL_BITVEC_TEST : constant := 8; -- /usr/include/sqlite3.h:6482 SQLITE_TESTCTRL_FAULT_INSTALL : constant := 9; -- /usr/include/sqlite3.h:6483 SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS : constant := 10; -- /usr/include/sqlite3.h:6484 SQLITE_TESTCTRL_PENDING_BYTE : constant := 11; -- /usr/include/sqlite3.h:6485 SQLITE_TESTCTRL_ASSERT : constant := 12; -- /usr/include/sqlite3.h:6486 SQLITE_TESTCTRL_ALWAYS : constant := 13; -- /usr/include/sqlite3.h:6487 SQLITE_TESTCTRL_RESERVE : constant := 14; -- /usr/include/sqlite3.h:6488 SQLITE_TESTCTRL_OPTIMIZATIONS : constant := 15; -- /usr/include/sqlite3.h:6489 SQLITE_TESTCTRL_ISKEYWORD : constant := 16; -- /usr/include/sqlite3.h:6490 SQLITE_TESTCTRL_SCRATCHMALLOC : constant := 17; -- /usr/include/sqlite3.h:6491 SQLITE_TESTCTRL_LOCALTIME_FAULT : constant := 18; -- /usr/include/sqlite3.h:6492 SQLITE_TESTCTRL_EXPLAIN_STMT : constant := 19; -- /usr/include/sqlite3.h:6493 SQLITE_TESTCTRL_NEVER_CORRUPT : constant := 20; -- /usr/include/sqlite3.h:6494 SQLITE_TESTCTRL_VDBE_COVERAGE : constant := 21; -- /usr/include/sqlite3.h:6495 SQLITE_TESTCTRL_BYTEORDER : constant := 22; -- /usr/include/sqlite3.h:6496 SQLITE_TESTCTRL_ISINIT : constant := 23; -- /usr/include/sqlite3.h:6497 SQLITE_TESTCTRL_SORTER_MMAP : constant := 24; -- /usr/include/sqlite3.h:6498 SQLITE_TESTCTRL_IMPOSTER : constant := 25; -- /usr/include/sqlite3.h:6499 SQLITE_TESTCTRL_LAST : constant := 25; -- /usr/include/sqlite3.h:6500 SQLITE_STATUS_MEMORY_USED : constant := 0; -- /usr/include/sqlite3.h:6620 SQLITE_STATUS_PAGECACHE_USED : constant := 1; -- /usr/include/sqlite3.h:6621 SQLITE_STATUS_PAGECACHE_OVERFLOW : constant := 2; -- /usr/include/sqlite3.h:6622 SQLITE_STATUS_SCRATCH_USED : constant := 3; -- /usr/include/sqlite3.h:6623 SQLITE_STATUS_SCRATCH_OVERFLOW : constant := 4; -- /usr/include/sqlite3.h:6624 SQLITE_STATUS_MALLOC_SIZE : constant := 5; -- /usr/include/sqlite3.h:6625 SQLITE_STATUS_PARSER_STACK : constant := 6; -- /usr/include/sqlite3.h:6626 SQLITE_STATUS_PAGECACHE_SIZE : constant := 7; -- /usr/include/sqlite3.h:6627 SQLITE_STATUS_SCRATCH_SIZE : constant := 8; -- /usr/include/sqlite3.h:6628 SQLITE_STATUS_MALLOC_COUNT : constant := 9; -- /usr/include/sqlite3.h:6629 SQLITE_DBSTATUS_LOOKASIDE_USED : constant := 0; -- /usr/include/sqlite3.h:6746 SQLITE_DBSTATUS_CACHE_USED : constant := 1; -- /usr/include/sqlite3.h:6747 SQLITE_DBSTATUS_SCHEMA_USED : constant := 2; -- /usr/include/sqlite3.h:6748 SQLITE_DBSTATUS_STMT_USED : constant := 3; -- /usr/include/sqlite3.h:6749 SQLITE_DBSTATUS_LOOKASIDE_HIT : constant := 4; -- /usr/include/sqlite3.h:6750 SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE : constant := 5; -- /usr/include/sqlite3.h:6751 SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL : constant := 6; -- /usr/include/sqlite3.h:6752 SQLITE_DBSTATUS_CACHE_HIT : constant := 7; -- /usr/include/sqlite3.h:6753 SQLITE_DBSTATUS_CACHE_MISS : constant := 8; -- /usr/include/sqlite3.h:6754 SQLITE_DBSTATUS_CACHE_WRITE : constant := 9; -- /usr/include/sqlite3.h:6755 SQLITE_DBSTATUS_DEFERRED_FKS : constant := 10; -- /usr/include/sqlite3.h:6756 SQLITE_DBSTATUS_MAX : constant := 10; -- /usr/include/sqlite3.h:6757 SQLITE_STMTSTATUS_FULLSCAN_STEP : constant := 1; -- /usr/include/sqlite3.h:6823 SQLITE_STMTSTATUS_SORT : constant := 2; -- /usr/include/sqlite3.h:6824 SQLITE_STMTSTATUS_AUTOINDEX : constant := 3; -- /usr/include/sqlite3.h:6825 SQLITE_STMTSTATUS_VM_STEP : constant := 4; -- /usr/include/sqlite3.h:6826 SQLITE_CHECKPOINT_PASSIVE : constant := 0; -- /usr/include/sqlite3.h:7662 SQLITE_CHECKPOINT_FULL : constant := 1; -- /usr/include/sqlite3.h:7663 SQLITE_CHECKPOINT_RESTART : constant := 2; -- /usr/include/sqlite3.h:7664 SQLITE_CHECKPOINT_TRUNCATE : constant := 3; -- /usr/include/sqlite3.h:7665 SQLITE_VTAB_CONSTRAINT_SUPPORT : constant := 1; -- /usr/include/sqlite3.h:7722 SQLITE_ROLLBACK : constant := 1; -- /usr/include/sqlite3.h:7748 SQLITE_FAIL : constant := 3; -- /usr/include/sqlite3.h:7750 SQLITE_REPLACE : constant := 5; -- /usr/include/sqlite3.h:7752 SQLITE_SCANSTAT_NLOOP : constant := 0; -- /usr/include/sqlite3.h:7801 SQLITE_SCANSTAT_NVISIT : constant := 1; -- /usr/include/sqlite3.h:7802 SQLITE_SCANSTAT_EST : constant := 2; -- /usr/include/sqlite3.h:7803 SQLITE_SCANSTAT_NAME : constant := 3; -- /usr/include/sqlite3.h:7804 SQLITE_SCANSTAT_EXPLAIN : constant := 4; -- /usr/include/sqlite3.h:7805 SQLITE_SCANSTAT_SELECTID : constant := 5; -- /usr/include/sqlite3.h:7806 NOT_WITHIN : constant := 0; -- /usr/include/sqlite3.h:8100 PARTLY_WITHIN : constant := 1; -- /usr/include/sqlite3.h:8101 FULLY_WITHIN : constant := 2; -- /usr/include/sqlite3.h:8102 FTS5_TOKENIZE_QUERY : constant := 16#0001#; -- /usr/include/sqlite3.h:8631 FTS5_TOKENIZE_PREFIX : constant := 16#0002#; -- /usr/include/sqlite3.h:8632 FTS5_TOKENIZE_DOCUMENT : constant := 16#0004#; -- /usr/include/sqlite3.h:8633 FTS5_TOKENIZE_AUX : constant := 16#0008#; -- /usr/include/sqlite3.h:8634 FTS5_TOKEN_COLOCATED : constant := 16#0001#; -- /usr/include/sqlite3.h:8638 --** 2001 September 15 --** --** The author disclaims copyright to this source code. In place of --** a legal notice, here is a blessing: --** --** May you do good and not evil. --** May you find forgiveness for yourself and forgive others. --** May you share freely, never taking more than you give. --** --************************************************************************* --** This header file defines the interface that the SQLite library --** presents to client programs. If a C-function, structure, datatype, --** or constant definition does not appear in this file, then it is --** not a published API of SQLite, is subject to change without --** notice, and should not be referenced by programs that use SQLite. --** --** Some of the definitions that are in this file are marked as --** "experimental". Experimental interfaces are normally new --** features recently added to SQLite. We do not anticipate changes --** to experimental interfaces but reserve the right to make minor changes --** if experience from use "in the wild" suggest such changes are prudent. --** --** The official C-language API documentation for SQLite is derived --** from comments in this file. This file is the authoritative source --** on how SQLite interfaces are supposed to operate. --** --** The name of this file under configuration management is "sqlite.h.in". --** The makefile makes some minor changes to this file (such as inserting --** the version number) and changes its name to "sqlite3.h" as --** part of the build process. -- -- Needed for the definition of va_list --** Make sure we can call this stuff from C++. -- --** Provide the ability to override linkage features of the interface. -- --** These no-op macros are used in front of interfaces to mark those --** interfaces as either deprecated or experimental. New applications --** should not use deprecated interfaces - they are supported for backwards --** compatibility only. Application writers should be aware that --** experimental interfaces are subject to change in point releases. --** --** These macros used to resolve to various kinds of compiler magic that --** would generate warning messages when they were used. But that --** compiler magic ended up generating such a flurry of bug reports --** that we have taken it all out and gone back to using simple --** noop macros. -- --** Ensure these symbols were not defined by some previous header file. -- --** CAPI3REF: Compile-Time Library Version Numbers --** --** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header --** evaluates to a string literal that is the SQLite version in the --** format "X.Y.Z" where X is the major version number (always 3 for --** SQLite3) and Y is the minor version number and Z is the release number.)^ --** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves to an integer --** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same --** numbers used in [SQLITE_VERSION].)^ --** The SQLITE_VERSION_NUMBER for any given release of SQLite will also --** be larger than the release from which it is derived. Either Y will --** be held constant and Z will be incremented or else Y will be incremented --** and Z will be reset to zero. --** --** Since version 3.6.18, SQLite source code has been stored in the --** <a href="http://www.fossil-scm.org/">Fossil configuration management --** system</a>. ^The SQLITE_SOURCE_ID macro evaluates to --** a string which identifies a particular check-in of SQLite --** within its configuration management system. ^The SQLITE_SOURCE_ID --** string contains the date and time of the check-in (UTC) and an SHA1 --** hash of the entire source tree. --** --** See also: [sqlite3_libversion()], --** [sqlite3_libversion_number()], [sqlite3_sourceid()], --** [sqlite_version()] and [sqlite_source_id()]. -- --** CAPI3REF: Run-Time Library Version Numbers --** KEYWORDS: sqlite3_version, sqlite3_sourceid --** --** These interfaces provide the same information as the [SQLITE_VERSION], --** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros --** but are associated with the library instead of the header file. ^(Cautious --** programmers might include assert() statements in their application to --** verify that values returned by these interfaces match the macros in --** the header, and thus ensure that the application is --** compiled with matching library and header files. --** --** <blockquote><pre> --** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER ); --** assert( strcmp(sqlite3_sourceid(),SQLITE_SOURCE_ID)==0 ); --** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 ); --** </pre></blockquote>)^ --** --** ^The sqlite3_version[] string constant contains the text of [SQLITE_VERSION] --** macro. ^The sqlite3_libversion() function returns a pointer to the --** to the sqlite3_version[] string constant. The sqlite3_libversion() --** function is provided for use in DLLs since DLL users usually do not have --** direct access to string constants within the DLL. ^The --** sqlite3_libversion_number() function returns an integer equal to --** [SQLITE_VERSION_NUMBER]. ^The sqlite3_sourceid() function returns --** a pointer to a string constant whose value is the same as the --** [SQLITE_SOURCE_ID] C preprocessor macro. --** --** See also: [sqlite_version()] and [sqlite_source_id()]. -- -- sqlite3_version : aliased Interfaces.C.char_array (size_t); -- /usr/include/sqlite3.h:148 -- pragma Import (C, sqlite3_version, "sqlite3_version"); function sqlite3_libversion return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:149 pragma Import (C, sqlite3_libversion, "sqlite3_libversion"); function sqlite3_sourceid return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:150 pragma Import (C, sqlite3_sourceid, "sqlite3_sourceid"); function sqlite3_libversion_number return int; -- /usr/include/sqlite3.h:151 pragma Import (C, sqlite3_libversion_number, "sqlite3_libversion_number"); --** CAPI3REF: Run-Time Library Compilation Options Diagnostics --** --** ^The sqlite3_compileoption_used() function returns 0 or 1 --** indicating whether the specified option was defined at --** compile time. ^The SQLITE_ prefix may be omitted from the --** option name passed to sqlite3_compileoption_used(). --** --** ^The sqlite3_compileoption_get() function allows iterating --** over the list of options that were defined at compile time by --** returning the N-th compile time option string. ^If N is out of range, --** sqlite3_compileoption_get() returns a NULL pointer. ^The SQLITE_ --** prefix is omitted from any strings returned by --** sqlite3_compileoption_get(). --** --** ^Support for the diagnostic functions sqlite3_compileoption_used() --** and sqlite3_compileoption_get() may be omitted by specifying the --** [SQLITE_OMIT_COMPILEOPTION_DIAGS] option at compile time. --** --** See also: SQL functions [sqlite_compileoption_used()] and --** [sqlite_compileoption_get()] and the [compile_options pragma]. -- function sqlite3_compileoption_used (zOptName : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:176 pragma Import (C, sqlite3_compileoption_used, "sqlite3_compileoption_used"); function sqlite3_compileoption_get (N : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:177 pragma Import (C, sqlite3_compileoption_get, "sqlite3_compileoption_get"); --** CAPI3REF: Test To See If The Library Is Threadsafe --** --** ^The sqlite3_threadsafe() function returns zero if and only if --** SQLite was compiled with mutexing code omitted due to the --** [SQLITE_THREADSAFE] compile-time option being set to 0. --** --** SQLite can be compiled with or without mutexes. When --** the [SQLITE_THREADSAFE] C preprocessor macro is 1 or 2, mutexes --** are enabled and SQLite is threadsafe. When the --** [SQLITE_THREADSAFE] macro is 0, --** the mutexes are omitted. Without the mutexes, it is not safe --** to use SQLite concurrently from more than one thread. --** --** Enabling mutexes incurs a measurable performance penalty. --** So if speed is of utmost importance, it makes sense to disable --** the mutexes. But for maximum safety, mutexes should be enabled. --** ^The default behavior is for mutexes to be enabled. --** --** This interface can be used by an application to make sure that the --** version of SQLite that it is linking against was compiled with --** the desired setting of the [SQLITE_THREADSAFE] macro. --** --** This interface only reports on the compile-time mutex setting --** of the [SQLITE_THREADSAFE] flag. If SQLite is compiled with --** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but --** can be fully or partially disabled using a call to [sqlite3_config()] --** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD], --** or [SQLITE_CONFIG_SERIALIZED]. ^(The return value of the --** sqlite3_threadsafe() function shows only the compile-time setting of --** thread safety, not any run-time changes to that setting made by --** sqlite3_config(). In other words, the return value from sqlite3_threadsafe() --** is unchanged by calls to sqlite3_config().)^ --** --** See the [threading mode] documentation for additional information. -- function sqlite3_threadsafe return int; -- /usr/include/sqlite3.h:216 pragma Import (C, sqlite3_threadsafe, "sqlite3_threadsafe"); --** CAPI3REF: Database Connection Handle --** KEYWORDS: {database connection} {database connections} --** --** Each open SQLite database is represented by a pointer to an instance of --** the opaque structure named "sqlite3". It is useful to think of an sqlite3 --** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and --** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] --** and [sqlite3_close_v2()] are its destructors. There are many other --** interfaces (such as --** [sqlite3_prepare_v2()], [sqlite3_create_function()], and --** [sqlite3_busy_timeout()] to name but three) that are methods on an --** sqlite3 object. -- type sqlite3 is null record; -- incomplete struct --** CAPI3REF: 64-Bit Integer Types --** KEYWORDS: sqlite_int64 sqlite_uint64 --** --** Because there is no cross-platform way to specify 64-bit integer types --** SQLite includes typedefs for 64-bit signed and unsigned integers. --** --** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions. --** The sqlite_int64 and sqlite_uint64 types are supported for backwards --** compatibility only. --** --** ^The sqlite3_int64 and sqlite_int64 types can store integer values --** between -9223372036854775808 and +9223372036854775807 inclusive. ^The --** sqlite3_uint64 and sqlite_uint64 types can store integer values --** between 0 and +18446744073709551615 inclusive. -- subtype sqlite_int64 is Long_Long_Integer; -- /usr/include/sqlite3.h:257 type sqlite_uint64 is mod 2 ** sqlite_int64'Size; -- /usr/include/sqlite3.h:258 subtype sqlite3_int64 is sqlite_int64; -- /usr/include/sqlite3.h:260 subtype sqlite3_uint64 is sqlite_uint64; -- /usr/include/sqlite3.h:261 --** If compiling for a processor that lacks floating point support, --** substitute integer for floating-point. -- --** CAPI3REF: Closing A Database Connection --** DESTRUCTOR: sqlite3 --** --** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors --** for the [sqlite3] object. --** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if --** the [sqlite3] object is successfully destroyed and all associated --** resources are deallocated. --** --** ^If the database connection is associated with unfinalized prepared --** statements or unfinished sqlite3_backup objects then sqlite3_close() --** will leave the database connection open and return [SQLITE_BUSY]. --** ^If sqlite3_close_v2() is called with unfinalized prepared statements --** and/or unfinished sqlite3_backups, then the database connection becomes --** an unusable "zombie" which will automatically be deallocated when the --** last prepared statement is finalized or the last sqlite3_backup is --** finished. The sqlite3_close_v2() interface is intended for use with --** host languages that are garbage collected, and where the order in which --** destructors are called is arbitrary. --** --** Applications should [sqlite3_finalize | finalize] all [prepared statements], --** [sqlite3_blob_close | close] all [BLOB handles], and --** [sqlite3_backup_finish | finish] all [sqlite3_backup] objects associated --** with the [sqlite3] object prior to attempting to close the object. ^If --** sqlite3_close_v2() is called on a [database connection] that still has --** outstanding [prepared statements], [BLOB handles], and/or --** [sqlite3_backup] objects then it returns [SQLITE_OK] and the deallocation --** of resources is deferred until all [prepared statements], [BLOB handles], --** and [sqlite3_backup] objects are also destroyed. --** --** ^If an [sqlite3] object is destroyed while a transaction is open, --** the transaction is automatically rolled back. --** --** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)] --** must be either a NULL --** pointer or an [sqlite3] object pointer obtained --** from [sqlite3_open()], [sqlite3_open16()], or --** [sqlite3_open_v2()], and not previously closed. --** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer --** argument is a harmless no-op. -- function sqlite3_close (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:313 pragma Import (C, sqlite3_close, "sqlite3_close"); function sqlite3_close_v2 (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:314 pragma Import (C, sqlite3_close_v2, "sqlite3_close_v2"); --** The type for a callback function. --** This is legacy and deprecated. It is included for historical --** compatibility and is not documented. -- type sqlite3_callback is access function (arg1 : System.Address; arg2 : int; arg3 : System.Address; arg4 : System.Address) return int; pragma Convention (C, sqlite3_callback); -- /usr/include/sqlite3.h:321 --** CAPI3REF: One-Step Query Execution Interface --** METHOD: sqlite3 --** --** The sqlite3_exec() interface is a convenience wrapper around --** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()], --** that allows an application to run multiple statements of SQL --** without having to use a lot of C code. --** --** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded, --** semicolon-separate SQL statements passed into its 2nd argument, --** in the context of the [database connection] passed in as its 1st --** argument. ^If the callback function of the 3rd argument to --** sqlite3_exec() is not NULL, then it is invoked for each result row --** coming out of the evaluated SQL statements. ^The 4th argument to --** sqlite3_exec() is relayed through to the 1st argument of each --** callback invocation. ^If the callback pointer to sqlite3_exec() --** is NULL, then no callback is ever invoked and result rows are --** ignored. --** --** ^If an error occurs while evaluating the SQL statements passed into --** sqlite3_exec(), then execution of the current statement stops and --** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec() --** is not NULL then any error message is written into memory obtained --** from [sqlite3_malloc()] and passed back through the 5th parameter. --** To avoid memory leaks, the application should invoke [sqlite3_free()] --** on error message strings returned through the 5th parameter of --** sqlite3_exec() after the error message string is no longer needed. --** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors --** occur, then sqlite3_exec() sets the pointer in its 5th parameter to --** NULL before returning. --** --** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec() --** routine returns SQLITE_ABORT without invoking the callback again and --** without running any subsequent SQL statements. --** --** ^The 2nd argument to the sqlite3_exec() callback function is the --** number of columns in the result. ^The 3rd argument to the sqlite3_exec() --** callback is an array of pointers to strings obtained as if from --** [sqlite3_column_text()], one for each column. ^If an element of a --** result row is NULL then the corresponding string pointer for the --** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the --** sqlite3_exec() callback is an array of pointers to strings where each --** entry represents the name of corresponding result column as obtained --** from [sqlite3_column_name()]. --** --** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer --** to an empty string, or a pointer that contains only whitespace and/or --** SQL comments, then no SQL statements are evaluated and the database --** is not changed. --** --** Restrictions: --** --** <ul> --** <li> The application must ensure that the 1st parameter to sqlite3_exec() --** is a valid and open [database connection]. --** <li> The application must not close the [database connection] specified by --** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running. --** <li> The application must not modify the SQL statement text passed into --** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running. --** </ul> -- function sqlite3_exec (arg1 : access sqlite3; sql : Interfaces.C.Strings.chars_ptr; callback : access function (arg1 : System.Address; arg2 : int; arg3 : System.Address; arg4 : System.Address) return int; arg4 : System.Address; errmsg : System.Address) return int; -- /usr/include/sqlite3.h:385 pragma Import (C, sqlite3_exec, "sqlite3_exec"); -- An open database -- SQL to be evaluated -- Callback function -- 1st argument to callback -- Error msg written here --** CAPI3REF: Result Codes --** KEYWORDS: {result code definitions} --** --** Many SQLite functions return an integer result code from the set shown --** here in order to indicate success or failure. --** --** New error codes may be added in future versions of SQLite. --** --** See also: [extended result code definitions] -- -- beginning-of-error-codes -- end-of-error-codes --** CAPI3REF: Extended Result Codes --** KEYWORDS: {extended result code definitions} --** --** In its default configuration, SQLite API routines return one of 30 integer --** [result codes]. However, experience has shown that many of --** these result codes are too coarse-grained. They do not provide as --** much information about problems as programmers might like. In an effort to --** address this, newer versions of SQLite (version 3.3.8 and later) include --** support for additional result codes that provide more detailed information --** about errors. These [extended result codes] are enabled or disabled --** on a per database connection basis using the --** [sqlite3_extended_result_codes()] API. Or, the extended code for --** the most recent error can be obtained using --** [sqlite3_extended_errcode()]. -- --** CAPI3REF: Flags For File Open Operations --** --** These bit values are intended for use in the --** 3rd parameter to the [sqlite3_open_v2()] interface and --** in the 4th parameter to the [sqlite3_vfs.xOpen] method. -- -- Reserved: 0x00F00000 --** CAPI3REF: Device Characteristics --** --** The xDeviceCharacteristics method of the [sqlite3_io_methods] --** object returns an integer which is a vector of these --** bit values expressing I/O characteristics of the mass storage --** device that holds the file that the [sqlite3_io_methods] --** refers to. --** --** The SQLITE_IOCAP_ATOMIC property means that all writes of --** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values --** mean that writes of blocks that are nnn bytes in size and --** are aligned to an address which is an integer multiple of --** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means --** that when data is appended to a file, the data is appended --** first then the size of the file is extended, never the other --** way around. The SQLITE_IOCAP_SEQUENTIAL property means that --** information is written to disk in the same order as calls --** to xWrite(). The SQLITE_IOCAP_POWERSAFE_OVERWRITE property means that --** after reboot following a crash or power loss, the only bytes in a --** file that were written at the application level might have changed --** and that adjacent bytes, even bytes within the same sector are --** guaranteed to be unchanged. The SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN --** flag indicate that a file cannot be deleted when open. The --** SQLITE_IOCAP_IMMUTABLE flag indicates that the file is on --** read-only media and cannot be changed even by processes with --** elevated privileges. -- --** CAPI3REF: File Locking Levels --** --** SQLite uses one of these integer values as the second --** argument to calls it makes to the xLock() and xUnlock() methods --** of an [sqlite3_io_methods] object. -- --** CAPI3REF: Synchronization Type Flags --** --** When SQLite invokes the xSync() method of an --** [sqlite3_io_methods] object it uses a combination of --** these integer values as the second argument. --** --** When the SQLITE_SYNC_DATAONLY flag is used, it means that the --** sync operation only needs to flush data to mass storage. Inode --** information need not be flushed. If the lower four bits of the flag --** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics. --** If the lower four bits equal SQLITE_SYNC_FULL, that means --** to use Mac OS X style fullsync instead of fsync(). --** --** Do not confuse the SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags --** with the [PRAGMA synchronous]=NORMAL and [PRAGMA synchronous]=FULL --** settings. The [synchronous pragma] determines when calls to the --** xSync VFS method occur and applies uniformly across all platforms. --** The SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags determine how --** energetic or rigorous or forceful the sync operations are and --** only make a difference on Mac OSX for the default SQLite code. --** (Third-party VFS implementations might also make the distinction --** between SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL, but among the --** operating systems natively supported by SQLite, only Mac OSX --** cares about the difference.) -- --** CAPI3REF: OS Interface Open File Handle --** --** An [sqlite3_file] object represents an open file in the --** [sqlite3_vfs | OS interface layer]. Individual OS interface --** implementations will --** want to subclass this object by appending additional fields --** for their own use. The pMethods entry is a pointer to an --** [sqlite3_io_methods] object that defines methods for performing --** I/O operations on the open file. -- -- Methods for an open file type sqlite3_io_methods; type sqlite3_file is record pMethods : access constant sqlite3_io_methods; -- /usr/include/sqlite3.h:639 end record; pragma Convention (C_Pass_By_Copy, sqlite3_file); -- /usr/include/sqlite3.h:638 --** CAPI3REF: OS Interface File Virtual Methods Object --** --** Every file opened by the [sqlite3_vfs.xOpen] method populates an --** [sqlite3_file] object (or, more commonly, a subclass of the --** [sqlite3_file] object) with a pointer to an instance of this object. --** This object defines the methods used to perform various operations --** against the open file represented by the [sqlite3_file] object. --** --** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element --** to a non-NULL pointer, then the sqlite3_io_methods.xClose method --** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The --** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen] --** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element --** to NULL. --** --** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or --** [SQLITE_SYNC_FULL]. The first choice is the normal fsync(). --** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY] --** flag may be ORed in to indicate that only the data of the file --** and not its inode needs to be synced. --** --** The integer values to xLock() and xUnlock() are one of --** <ul> --** <li> [SQLITE_LOCK_NONE], --** <li> [SQLITE_LOCK_SHARED], --** <li> [SQLITE_LOCK_RESERVED], --** <li> [SQLITE_LOCK_PENDING], or --** <li> [SQLITE_LOCK_EXCLUSIVE]. --** </ul> --** xLock() increases the lock. xUnlock() decreases the lock. --** The xCheckReservedLock() method checks whether any database connection, --** either in this process or in some other process, is holding a RESERVED, --** PENDING, or EXCLUSIVE lock on the file. It returns true --** if such a lock exists and false otherwise. --** --** The xFileControl() method is a generic interface that allows custom --** VFS implementations to directly control an open file using the --** [sqlite3_file_control()] interface. The second "op" argument is an --** integer opcode. The third argument is a generic pointer intended to --** point to a structure that may contain arguments or space in which to --** write return values. Potential uses for xFileControl() might be --** functions to enable blocking locks with timeouts, to change the --** locking strategy (for example to use dot-file locks), to inquire --** about the status of a lock, or to break stale locks. The SQLite --** core reserves all opcodes less than 100 for its own use. --** A [file control opcodes | list of opcodes] less than 100 is available. --** Applications that define a custom xFileControl method should use opcodes --** greater than 100 to avoid conflicts. VFS implementations should --** return [SQLITE_NOTFOUND] for file control opcodes that they do not --** recognize. --** --** The xSectorSize() method returns the sector size of the --** device that underlies the file. The sector size is the --** minimum write that can be performed without disturbing --** other bytes in the file. The xDeviceCharacteristics() --** method returns a bit vector describing behaviors of the --** underlying device: --** --** <ul> --** <li> [SQLITE_IOCAP_ATOMIC] --** <li> [SQLITE_IOCAP_ATOMIC512] --** <li> [SQLITE_IOCAP_ATOMIC1K] --** <li> [SQLITE_IOCAP_ATOMIC2K] --** <li> [SQLITE_IOCAP_ATOMIC4K] --** <li> [SQLITE_IOCAP_ATOMIC8K] --** <li> [SQLITE_IOCAP_ATOMIC16K] --** <li> [SQLITE_IOCAP_ATOMIC32K] --** <li> [SQLITE_IOCAP_ATOMIC64K] --** <li> [SQLITE_IOCAP_SAFE_APPEND] --** <li> [SQLITE_IOCAP_SEQUENTIAL] --** </ul> --** --** The SQLITE_IOCAP_ATOMIC property means that all writes of --** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values --** mean that writes of blocks that are nnn bytes in size and --** are aligned to an address which is an integer multiple of --** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means --** that when data is appended to a file, the data is appended --** first then the size of the file is extended, never the other --** way around. The SQLITE_IOCAP_SEQUENTIAL property means that --** information is written to disk in the same order as calls --** to xWrite(). --** --** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill --** in the unread portions of the buffer with zeros. A VFS that --** fails to zero-fill short reads might seem to work. However, --** failure to zero-fill short reads will eventually lead to --** database corruption. -- type sqlite3_io_methods is record iVersion : aliased int; -- /usr/include/sqlite3.h:734 xClose : access function (arg1 : access sqlite3_file) return int; -- /usr/include/sqlite3.h:735 xRead : access function (arg1 : access sqlite3_file; arg2 : System.Address; arg3 : int; arg4 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:736 xWrite : access function (arg1 : access sqlite3_file; arg2 : System.Address; arg3 : int; arg4 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:737 xTruncate : access function (arg1 : access sqlite3_file; arg2 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:738 xSync : access function (arg1 : access sqlite3_file; arg2 : int) return int; -- /usr/include/sqlite3.h:739 xFileSize : access function (arg1 : access sqlite3_file; arg2 : access sqlite3_int64) return int; -- /usr/include/sqlite3.h:740 xLock : access function (arg1 : access sqlite3_file; arg2 : int) return int; -- /usr/include/sqlite3.h:741 xUnlock : access function (arg1 : access sqlite3_file; arg2 : int) return int; -- /usr/include/sqlite3.h:742 xCheckReservedLock : access function (arg1 : access sqlite3_file; arg2 : access int) return int; -- /usr/include/sqlite3.h:743 xFileControl : access function (arg1 : access sqlite3_file; arg2 : int; arg3 : System.Address) return int; -- /usr/include/sqlite3.h:744 xSectorSize : access function (arg1 : access sqlite3_file) return int; -- /usr/include/sqlite3.h:745 xDeviceCharacteristics : access function (arg1 : access sqlite3_file) return int; -- /usr/include/sqlite3.h:746 xShmMap : access function (arg1 : access sqlite3_file; arg2 : int; arg3 : int; arg4 : int; arg5 : System.Address) return int; -- /usr/include/sqlite3.h:748 xShmLock : access function (arg1 : access sqlite3_file; arg2 : int; arg3 : int; arg4 : int) return int; -- /usr/include/sqlite3.h:749 xShmBarrier : access procedure (arg1 : access sqlite3_file); -- /usr/include/sqlite3.h:750 xShmUnmap : access function (arg1 : access sqlite3_file; arg2 : int) return int; -- /usr/include/sqlite3.h:751 xFetch : access function (arg1 : access sqlite3_file; arg2 : sqlite3_int64; arg3 : int; arg4 : System.Address) return int; -- /usr/include/sqlite3.h:753 xUnfetch : access function (arg1 : access sqlite3_file; arg2 : sqlite3_int64; arg3 : System.Address) return int; -- /usr/include/sqlite3.h:754 end record; pragma Convention (C_Pass_By_Copy, sqlite3_io_methods); -- /usr/include/sqlite3.h:733 -- Methods above are valid for version 1 -- Methods above are valid for version 2 -- Methods above are valid for version 3 -- Additional methods may be added in future releases --** CAPI3REF: Standard File Control Opcodes --** KEYWORDS: {file control opcodes} {file control opcode} --** --** These integer constants are opcodes for the xFileControl method --** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] --** interface. --** --** <ul> --** <li>[[SQLITE_FCNTL_LOCKSTATE]] --** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This --** opcode causes the xFileControl method to write the current state of --** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED], --** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE]) --** into an integer that the pArg argument points to. This capability --** is used during testing and is only available when the SQLITE_TEST --** compile-time option is used. --** --** <li>[[SQLITE_FCNTL_SIZE_HINT]] --** The [SQLITE_FCNTL_SIZE_HINT] opcode is used by SQLite to give the VFS --** layer a hint of how large the database file will grow to be during the --** current transaction. This hint is not guaranteed to be accurate but it --** is often close. The underlying VFS might choose to preallocate database --** file space based on this hint in order to help writes to the database --** file run faster. --** --** <li>[[SQLITE_FCNTL_CHUNK_SIZE]] --** The [SQLITE_FCNTL_CHUNK_SIZE] opcode is used to request that the VFS --** extends and truncates the database file in chunks of a size specified --** by the user. The fourth argument to [sqlite3_file_control()] should --** point to an integer (type int) containing the new chunk-size to use --** for the nominated database. Allocating database file space in large --** chunks (say 1MB at a time), may reduce file-system fragmentation and --** improve performance on some systems. --** --** <li>[[SQLITE_FCNTL_FILE_POINTER]] --** The [SQLITE_FCNTL_FILE_POINTER] opcode is used to obtain a pointer --** to the [sqlite3_file] object associated with a particular database --** connection. See also [SQLITE_FCNTL_JOURNAL_POINTER]. --** --** <li>[[SQLITE_FCNTL_JOURNAL_POINTER]] --** The [SQLITE_FCNTL_JOURNAL_POINTER] opcode is used to obtain a pointer --** to the [sqlite3_file] object associated with the journal file (either --** the [rollback journal] or the [write-ahead log]) for a particular database --** connection. See also [SQLITE_FCNTL_FILE_POINTER]. --** --** <li>[[SQLITE_FCNTL_SYNC_OMITTED]] --** No longer in use. --** --** <li>[[SQLITE_FCNTL_SYNC]] --** The [SQLITE_FCNTL_SYNC] opcode is generated internally by SQLite and --** sent to the VFS immediately before the xSync method is invoked on a --** database file descriptor. Or, if the xSync method is not invoked --** because the user has configured SQLite with --** [PRAGMA synchronous | PRAGMA synchronous=OFF] it is invoked in place --** of the xSync method. In most cases, the pointer argument passed with --** this file-control is NULL. However, if the database file is being synced --** as part of a multi-database commit, the argument points to a nul-terminated --** string containing the transactions master-journal file name. VFSes that --** do not need this signal should silently ignore this opcode. Applications --** should not call [sqlite3_file_control()] with this opcode as doing so may --** disrupt the operation of the specialized VFSes that do require it. --** --** <li>[[SQLITE_FCNTL_COMMIT_PHASETWO]] --** The [SQLITE_FCNTL_COMMIT_PHASETWO] opcode is generated internally by SQLite --** and sent to the VFS after a transaction has been committed immediately --** but before the database is unlocked. VFSes that do not need this signal --** should silently ignore this opcode. Applications should not call --** [sqlite3_file_control()] with this opcode as doing so may disrupt the --** operation of the specialized VFSes that do require it. --** --** <li>[[SQLITE_FCNTL_WIN32_AV_RETRY]] --** ^The [SQLITE_FCNTL_WIN32_AV_RETRY] opcode is used to configure automatic --** retry counts and intervals for certain disk I/O operations for the --** windows [VFS] in order to provide robustness in the presence of --** anti-virus programs. By default, the windows VFS will retry file read, --** file write, and file delete operations up to 10 times, with a delay --** of 25 milliseconds before the first retry and with the delay increasing --** by an additional 25 milliseconds with each subsequent retry. This --** opcode allows these two values (10 retries and 25 milliseconds of delay) --** to be adjusted. The values are changed for all database connections --** within the same process. The argument is a pointer to an array of two --** integers where the first integer i the new retry count and the second --** integer is the delay. If either integer is negative, then the setting --** is not changed but instead the prior value of that setting is written --** into the array entry, allowing the current retry settings to be --** interrogated. The zDbName parameter is ignored. --** --** <li>[[SQLITE_FCNTL_PERSIST_WAL]] --** ^The [SQLITE_FCNTL_PERSIST_WAL] opcode is used to set or query the --** persistent [WAL | Write Ahead Log] setting. By default, the auxiliary --** write ahead log and shared memory files used for transaction control --** are automatically deleted when the latest connection to the database --** closes. Setting persistent WAL mode causes those files to persist after --** close. Persisting the files is useful when other processes that do not --** have write permission on the directory containing the database file want --** to read the database file, as the WAL and shared memory files must exist --** in order for the database to be readable. The fourth parameter to --** [sqlite3_file_control()] for this opcode should be a pointer to an integer. --** That integer is 0 to disable persistent WAL mode or 1 to enable persistent --** WAL mode. If the integer is -1, then it is overwritten with the current --** WAL persistence setting. --** --** <li>[[SQLITE_FCNTL_POWERSAFE_OVERWRITE]] --** ^The [SQLITE_FCNTL_POWERSAFE_OVERWRITE] opcode is used to set or query the --** persistent "powersafe-overwrite" or "PSOW" setting. The PSOW setting --** determines the [SQLITE_IOCAP_POWERSAFE_OVERWRITE] bit of the --** xDeviceCharacteristics methods. The fourth parameter to --** [sqlite3_file_control()] for this opcode should be a pointer to an integer. --** That integer is 0 to disable zero-damage mode or 1 to enable zero-damage --** mode. If the integer is -1, then it is overwritten with the current --** zero-damage mode setting. --** --** <li>[[SQLITE_FCNTL_OVERWRITE]] --** ^The [SQLITE_FCNTL_OVERWRITE] opcode is invoked by SQLite after opening --** a write transaction to indicate that, unless it is rolled back for some --** reason, the entire database file will be overwritten by the current --** transaction. This is used by VACUUM operations. --** --** <li>[[SQLITE_FCNTL_VFSNAME]] --** ^The [SQLITE_FCNTL_VFSNAME] opcode can be used to obtain the names of --** all [VFSes] in the VFS stack. The names are of all VFS shims and the --** final bottom-level VFS are written into memory obtained from --** [sqlite3_malloc()] and the result is stored in the char* variable --** that the fourth parameter of [sqlite3_file_control()] points to. --** The caller is responsible for freeing the memory when done. As with --** all file-control actions, there is no guarantee that this will actually --** do anything. Callers should initialize the char* variable to a NULL --** pointer in case this file-control is not implemented. This file-control --** is intended for diagnostic use only. --** --** <li>[[SQLITE_FCNTL_VFS_POINTER]] --** ^The [SQLITE_FCNTL_VFS_POINTER] opcode finds a pointer to the top-level --** [VFSes] currently in use. ^(The argument X in --** sqlite3_file_control(db,SQLITE_FCNTL_VFS_POINTER,X) must be --** of type "[sqlite3_vfs] **". This opcodes will set *X --** to a pointer to the top-level VFS.)^ --** ^When there are multiple VFS shims in the stack, this opcode finds the --** upper-most shim only. --** --** <li>[[SQLITE_FCNTL_PRAGMA]] --** ^Whenever a [PRAGMA] statement is parsed, an [SQLITE_FCNTL_PRAGMA] --** file control is sent to the open [sqlite3_file] object corresponding --** to the database file to which the pragma statement refers. ^The argument --** to the [SQLITE_FCNTL_PRAGMA] file control is an array of --** pointers to strings (char**) in which the second element of the array --** is the name of the pragma and the third element is the argument to the --** pragma or NULL if the pragma has no argument. ^The handler for an --** [SQLITE_FCNTL_PRAGMA] file control can optionally make the first element --** of the char** argument point to a string obtained from [sqlite3_mprintf()] --** or the equivalent and that string will become the result of the pragma or --** the error message if the pragma fails. ^If the --** [SQLITE_FCNTL_PRAGMA] file control returns [SQLITE_NOTFOUND], then normal --** [PRAGMA] processing continues. ^If the [SQLITE_FCNTL_PRAGMA] --** file control returns [SQLITE_OK], then the parser assumes that the --** VFS has handled the PRAGMA itself and the parser generates a no-op --** prepared statement if result string is NULL, or that returns a copy --** of the result string if the string is non-NULL. --** ^If the [SQLITE_FCNTL_PRAGMA] file control returns --** any result code other than [SQLITE_OK] or [SQLITE_NOTFOUND], that means --** that the VFS encountered an error while handling the [PRAGMA] and the --** compilation of the PRAGMA fails with an error. ^The [SQLITE_FCNTL_PRAGMA] --** file control occurs at the beginning of pragma statement analysis and so --** it is able to override built-in [PRAGMA] statements. --** --** <li>[[SQLITE_FCNTL_BUSYHANDLER]] --** ^The [SQLITE_FCNTL_BUSYHANDLER] --** file-control may be invoked by SQLite on the database file handle --** shortly after it is opened in order to provide a custom VFS with access --** to the connections busy-handler callback. The argument is of type (void **) --** - an array of two (void *) values. The first (void *) actually points --** to a function of type (int (*)(void *)). In order to invoke the connections --** busy-handler, this function should be invoked with the second (void *) in --** the array as the only argument. If it returns non-zero, then the operation --** should be retried. If it returns zero, the custom VFS should abandon the --** current operation. --** --** <li>[[SQLITE_FCNTL_TEMPFILENAME]] --** ^Application can invoke the [SQLITE_FCNTL_TEMPFILENAME] file-control --** to have SQLite generate a --** temporary filename using the same algorithm that is followed to generate --** temporary filenames for TEMP tables and other internal uses. The --** argument should be a char** which will be filled with the filename --** written into memory obtained from [sqlite3_malloc()]. The caller should --** invoke [sqlite3_free()] on the result to avoid a memory leak. --** --** <li>[[SQLITE_FCNTL_MMAP_SIZE]] --** The [SQLITE_FCNTL_MMAP_SIZE] file control is used to query or set the --** maximum number of bytes that will be used for memory-mapped I/O. --** The argument is a pointer to a value of type sqlite3_int64 that --** is an advisory maximum number of bytes in the file to memory map. The --** pointer is overwritten with the old value. The limit is not changed if --** the value originally pointed to is negative, and so the current limit --** can be queried by passing in a pointer to a negative number. This --** file-control is used internally to implement [PRAGMA mmap_size]. --** --** <li>[[SQLITE_FCNTL_TRACE]] --** The [SQLITE_FCNTL_TRACE] file control provides advisory information --** to the VFS about what the higher layers of the SQLite stack are doing. --** This file control is used by some VFS activity tracing [shims]. --** The argument is a zero-terminated string. Higher layers in the --** SQLite stack may generate instances of this file control if --** the [SQLITE_USE_FCNTL_TRACE] compile-time option is enabled. --** --** <li>[[SQLITE_FCNTL_HAS_MOVED]] --** The [SQLITE_FCNTL_HAS_MOVED] file control interprets its argument as a --** pointer to an integer and it writes a boolean into that integer depending --** on whether or not the file has been renamed, moved, or deleted since it --** was first opened. --** --** <li>[[SQLITE_FCNTL_WIN32_SET_HANDLE]] --** The [SQLITE_FCNTL_WIN32_SET_HANDLE] opcode is used for debugging. This --** opcode causes the xFileControl method to swap the file handle with the one --** pointed to by the pArg argument. This capability is used during testing --** and only needs to be supported when SQLITE_TEST is defined. --** --** <li>[[SQLITE_FCNTL_WAL_BLOCK]] --** The [SQLITE_FCNTL_WAL_BLOCK] is a signal to the VFS layer that it might --** be advantageous to block on the next WAL lock if the lock is not immediately --** available. The WAL subsystem issues this signal during rare --** circumstances in order to fix a problem with priority inversion. --** Applications should <em>not</em> use this file-control. --** --** <li>[[SQLITE_FCNTL_ZIPVFS]] --** The [SQLITE_FCNTL_ZIPVFS] opcode is implemented by zipvfs only. All other --** VFS should return SQLITE_NOTFOUND for this opcode. --** --** <li>[[SQLITE_FCNTL_RBU]] --** The [SQLITE_FCNTL_RBU] opcode is implemented by the special VFS used by --** the RBU extension only. All other VFS should return SQLITE_NOTFOUND for --** this opcode. --** </ul> -- -- deprecated names --** CAPI3REF: Mutex Handle --** --** The mutex module within SQLite defines [sqlite3_mutex] to be an --** abstract type for a mutex object. The SQLite core never looks --** at the internal representation of an [sqlite3_mutex]. It only --** deals with pointers to the [sqlite3_mutex] object. --** --** Mutexes are created using [sqlite3_mutex_alloc()]. -- type sqlite3_mutex is null record; -- incomplete struct --** CAPI3REF: OS Interface Object --** --** An instance of the sqlite3_vfs object defines the interface between --** the SQLite core and the underlying operating system. The "vfs" --** in the name of the object stands for "virtual file system". See --** the [VFS | VFS documentation] for further information. --** --** The value of the iVersion field is initially 1 but may be larger in --** future versions of SQLite. Additional fields may be appended to this --** object when the iVersion value is increased. Note that the structure --** of the sqlite3_vfs object changes in the transaction between --** SQLite version 3.5.9 and 3.6.0 and yet the iVersion field was not --** modified. --** --** The szOsFile field is the size of the subclassed [sqlite3_file] --** structure used by this VFS. mxPathname is the maximum length of --** a pathname in this VFS. --** --** Registered sqlite3_vfs objects are kept on a linked list formed by --** the pNext pointer. The [sqlite3_vfs_register()] --** and [sqlite3_vfs_unregister()] interfaces manage this list --** in a thread-safe way. The [sqlite3_vfs_find()] interface --** searches the list. Neither the application code nor the VFS --** implementation should use the pNext pointer. --** --** The pNext field is the only field in the sqlite3_vfs --** structure that SQLite will ever modify. SQLite will only access --** or modify this field while holding a particular static mutex. --** The application should never modify anything within the sqlite3_vfs --** object once the object has been registered. --** --** The zName field holds the name of the VFS module. The name must --** be unique across all VFS modules. --** --** [[sqlite3_vfs.xOpen]] --** ^SQLite guarantees that the zFilename parameter to xOpen --** is either a NULL pointer or string obtained --** from xFullPathname() with an optional suffix added. --** ^If a suffix is added to the zFilename parameter, it will --** consist of a single "-" character followed by no more than --** 11 alphanumeric and/or "-" characters. --** ^SQLite further guarantees that --** the string will be valid and unchanged until xClose() is --** called. Because of the previous sentence, --** the [sqlite3_file] can safely store a pointer to the --** filename if it needs to remember the filename for some reason. --** If the zFilename parameter to xOpen is a NULL pointer then xOpen --** must invent its own temporary name for the file. ^Whenever the --** xFilename parameter is NULL it will also be the case that the --** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE]. --** --** The flags argument to xOpen() includes all bits set in --** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()] --** or [sqlite3_open16()] is used, then flags includes at least --** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]. --** If xOpen() opens a file read-only then it sets *pOutFlags to --** include [SQLITE_OPEN_READONLY]. Other bits in *pOutFlags may be set. --** --** ^(SQLite will also add one of the following flags to the xOpen() --** call, depending on the object being opened: --** --** <ul> --** <li> [SQLITE_OPEN_MAIN_DB] --** <li> [SQLITE_OPEN_MAIN_JOURNAL] --** <li> [SQLITE_OPEN_TEMP_DB] --** <li> [SQLITE_OPEN_TEMP_JOURNAL] --** <li> [SQLITE_OPEN_TRANSIENT_DB] --** <li> [SQLITE_OPEN_SUBJOURNAL] --** <li> [SQLITE_OPEN_MASTER_JOURNAL] --** <li> [SQLITE_OPEN_WAL] --** </ul>)^ --** --** The file I/O implementation can use the object type flags to --** change the way it deals with files. For example, an application --** that does not care about crash recovery or rollback might make --** the open of a journal file a no-op. Writes to this journal would --** also be no-ops, and any attempt to read the journal would return --** SQLITE_IOERR. Or the implementation might recognize that a database --** file will be doing page-aligned sector reads and writes in a random --** order and set up its I/O subsystem accordingly. --** --** SQLite might also add one of the following flags to the xOpen method: --** --** <ul> --** <li> [SQLITE_OPEN_DELETEONCLOSE] --** <li> [SQLITE_OPEN_EXCLUSIVE] --** </ul> --** --** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be --** deleted when it is closed. ^The [SQLITE_OPEN_DELETEONCLOSE] --** will be set for TEMP databases and their journals, transient --** databases, and subjournals. --** --** ^The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction --** with the [SQLITE_OPEN_CREATE] flag, which are both directly --** analogous to the O_EXCL and O_CREAT flags of the POSIX open() --** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the --** SQLITE_OPEN_CREATE, is used to indicate that file should always --** be created, and that it is an error if it already exists. --** It is <i>not</i> used to indicate the file should be opened --** for exclusive access. --** --** ^At least szOsFile bytes of memory are allocated by SQLite --** to hold the [sqlite3_file] structure passed as the third --** argument to xOpen. The xOpen method does not have to --** allocate the structure; it should just fill it in. Note that --** the xOpen method must set the sqlite3_file.pMethods to either --** a valid [sqlite3_io_methods] object or to NULL. xOpen must do --** this even if the open fails. SQLite expects that the sqlite3_file.pMethods --** element will be valid after xOpen returns regardless of the success --** or failure of the xOpen call. --** --** [[sqlite3_vfs.xAccess]] --** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS] --** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to --** test whether a file is readable and writable, or [SQLITE_ACCESS_READ] --** to test whether a file is at least readable. The file can be a --** directory. --** --** ^SQLite will always allocate at least mxPathname+1 bytes for the --** output buffer xFullPathname. The exact size of the output buffer --** is also passed as a parameter to both methods. If the output buffer --** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is --** handled as a fatal error by SQLite, vfs implementations should endeavor --** to prevent this by setting mxPathname to a sufficiently large value. --** --** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64() --** interfaces are not strictly a part of the filesystem, but they are --** included in the VFS structure for completeness. --** The xRandomness() function attempts to return nBytes bytes --** of good-quality randomness into zOut. The return value is --** the actual number of bytes of randomness obtained. --** The xSleep() method causes the calling thread to sleep for at --** least the number of microseconds given. ^The xCurrentTime() --** method returns a Julian Day Number for the current date and time as --** a floating point value. --** ^The xCurrentTimeInt64() method returns, as an integer, the Julian --** Day Number multiplied by 86400000 (the number of milliseconds in --** a 24-hour day). --** ^SQLite will use the xCurrentTimeInt64() method to get the current --** date and time if that method is available (if iVersion is 2 or --** greater and the function pointer is not NULL) and will fall back --** to xCurrentTime() if xCurrentTimeInt64() is unavailable. --** --** ^The xSetSystemCall(), xGetSystemCall(), and xNestSystemCall() interfaces --** are not used by the SQLite core. These optional interfaces are provided --** by some VFSes to facilitate testing of the VFS code. By overriding --** system calls with functions under its control, a test program can --** simulate faults and error conditions that would otherwise be difficult --** or impossible to induce. The set of system calls that can be overridden --** varies from one VFS to another, and from one version of the same VFS to the --** next. Applications that use these interfaces must be prepared for any --** or all of these interfaces to be NULL or for their behavior to change --** from one release to the next. Applications must not attempt to access --** any of these methods if the iVersion of the VFS is less than 3. -- type sqlite3_syscall_ptr is access procedure; pragma Convention (C, sqlite3_syscall_ptr); -- /usr/include/sqlite3.h:1196 -- Structure version number (currently 3) type sqlite3_vfs; type sqlite3_vfs is record iVersion : aliased int; -- /usr/include/sqlite3.h:1198 szOsFile : aliased int; -- /usr/include/sqlite3.h:1199 mxPathname : aliased int; -- /usr/include/sqlite3.h:1200 pNext : access sqlite3_vfs; -- /usr/include/sqlite3.h:1201 zName : Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:1202 pAppData : System.Address; -- /usr/include/sqlite3.h:1203 xOpen : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : access sqlite3_file; arg4 : int; arg5 : access int) return int; -- /usr/include/sqlite3.h:1205 xDelete : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return int; -- /usr/include/sqlite3.h:1206 xAccess : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access int) return int; -- /usr/include/sqlite3.h:1207 xFullPathname : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:1208 xDlOpen : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr) return System.Address; -- /usr/include/sqlite3.h:1209 xDlError : access procedure (arg1 : access sqlite3_vfs; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr); -- /usr/include/sqlite3.h:1210 xDlSym : access function (arg1 : access sqlite3_vfs; arg2 : System.Address; arg3 : Interfaces.C.Strings.chars_ptr) return access procedure; -- /usr/include/sqlite3.h:1211 xDlClose : access procedure (arg1 : access sqlite3_vfs; arg2 : System.Address); -- /usr/include/sqlite3.h:1212 xRandomness : access function (arg1 : access sqlite3_vfs; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:1213 xSleep : access function (arg1 : access sqlite3_vfs; arg2 : int) return int; -- /usr/include/sqlite3.h:1214 xCurrentTime : access function (arg1 : access sqlite3_vfs; arg2 : access double) return int; -- /usr/include/sqlite3.h:1215 xGetLastError : access function (arg1 : access sqlite3_vfs; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:1216 xCurrentTimeInt64 : access function (arg1 : access sqlite3_vfs; arg2 : access sqlite3_int64) return int; -- /usr/include/sqlite3.h:1221 xSetSystemCall : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : sqlite3_syscall_ptr) return int; -- /usr/include/sqlite3.h:1226 xGetSystemCall : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr) return sqlite3_syscall_ptr; -- /usr/include/sqlite3.h:1227 xNextSystemCall : access function (arg1 : access sqlite3_vfs; arg2 : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:1228 end record; pragma Convention (C_Pass_By_Copy, sqlite3_vfs); -- /usr/include/sqlite3.h:1197 -- Size of subclassed sqlite3_file -- Maximum file pathname length -- Next registered VFS -- Name of this virtual file system -- Pointer to application-specific data -- ** The methods above are in version 1 of the sqlite_vfs object -- ** definition. Those that follow are added in version 2 or later -- -- ** The methods above are in versions 1 and 2 of the sqlite_vfs object. -- ** Those below are for version 3 and greater. -- -- ** The methods above are in versions 1 through 3 of the sqlite_vfs object. -- ** New fields may be appended in figure versions. The iVersion -- ** value will increment whenever this happens. -- --** CAPI3REF: Flags for the xAccess VFS method --** --** These integer constants can be used as the third parameter to --** the xAccess method of an [sqlite3_vfs] object. They determine --** what kind of permissions the xAccess method is looking for. --** With SQLITE_ACCESS_EXISTS, the xAccess method --** simply checks whether the file exists. --** With SQLITE_ACCESS_READWRITE, the xAccess method --** checks whether the named directory is both readable and writable --** (in other words, if files can be added, removed, and renamed within --** the directory). --** The SQLITE_ACCESS_READWRITE constant is currently used only by the --** [temp_store_directory pragma], though this could change in a future --** release of SQLite. --** With SQLITE_ACCESS_READ, the xAccess method --** checks whether the file is readable. The SQLITE_ACCESS_READ constant is --** currently unused, though it might be used in a future release of --** SQLite. -- --** CAPI3REF: Flags for the xShmLock VFS method --** --** These integer constants define the various locking operations --** allowed by the xShmLock method of [sqlite3_io_methods]. The --** following are the only legal combinations of flags to the --** xShmLock method: --** --** <ul> --** <li> SQLITE_SHM_LOCK | SQLITE_SHM_SHARED --** <li> SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE --** <li> SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED --** <li> SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE --** </ul> --** --** When unlocking, the same SHARED or EXCLUSIVE flag must be supplied as --** was given on the corresponding lock. --** --** The xShmLock method can transition between unlocked and SHARED or --** between unlocked and EXCLUSIVE. It cannot transition between SHARED --** and EXCLUSIVE. -- --** CAPI3REF: Maximum xShmLock index --** --** The xShmLock method on [sqlite3_io_methods] may use values --** between 0 and this upper bound as its "offset" argument. --** The SQLite core will never attempt to acquire or release a --** lock outside of this range -- --** CAPI3REF: Initialize The SQLite Library --** --** ^The sqlite3_initialize() routine initializes the --** SQLite library. ^The sqlite3_shutdown() routine --** deallocates any resources that were allocated by sqlite3_initialize(). --** These routines are designed to aid in process initialization and --** shutdown on embedded systems. Workstation applications using --** SQLite normally do not need to invoke either of these routines. --** --** A call to sqlite3_initialize() is an "effective" call if it is --** the first time sqlite3_initialize() is invoked during the lifetime of --** the process, or if it is the first time sqlite3_initialize() is invoked --** following a call to sqlite3_shutdown(). ^(Only an effective call --** of sqlite3_initialize() does any initialization. All other calls --** are harmless no-ops.)^ --** --** A call to sqlite3_shutdown() is an "effective" call if it is the first --** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only --** an effective call to sqlite3_shutdown() does any deinitialization. --** All other valid calls to sqlite3_shutdown() are harmless no-ops.)^ --** --** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown() --** is not. The sqlite3_shutdown() interface must only be called from a --** single thread. All open [database connections] must be closed and all --** other SQLite resources must be deallocated prior to invoking --** sqlite3_shutdown(). --** --** Among other things, ^sqlite3_initialize() will invoke --** sqlite3_os_init(). Similarly, ^sqlite3_shutdown() --** will invoke sqlite3_os_end(). --** --** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success. --** ^If for some reason, sqlite3_initialize() is unable to initialize --** the library (perhaps it is unable to allocate a needed resource such --** as a mutex) it returns an [error code] other than [SQLITE_OK]. --** --** ^The sqlite3_initialize() routine is called internally by many other --** SQLite interfaces so that an application usually does not need to --** invoke sqlite3_initialize() directly. For example, [sqlite3_open()] --** calls sqlite3_initialize() so the SQLite library will be automatically --** initialized when [sqlite3_open()] is called if it has not be initialized --** already. ^However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT] --** compile-time option, then the automatic calls to sqlite3_initialize() --** are omitted and the application must call sqlite3_initialize() directly --** prior to using any other SQLite interface. For maximum portability, --** it is recommended that applications always invoke sqlite3_initialize() --** directly prior to using any other SQLite interface. Future releases --** of SQLite may require this. In other words, the behavior exhibited --** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the --** default behavior in some future release of SQLite. --** --** The sqlite3_os_init() routine does operating-system specific --** initialization of the SQLite library. The sqlite3_os_end() --** routine undoes the effect of sqlite3_os_init(). Typical tasks --** performed by these routines include allocation or deallocation --** of static resources, initialization of global variables, --** setting up a default [sqlite3_vfs] module, or setting up --** a default configuration using [sqlite3_config()]. --** --** The application should never invoke either sqlite3_os_init() --** or sqlite3_os_end() directly. The application should only invoke --** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init() --** interface is called automatically by sqlite3_initialize() and --** sqlite3_os_end() is called by sqlite3_shutdown(). Appropriate --** implementations for sqlite3_os_init() and sqlite3_os_end() --** are built into SQLite when it is compiled for Unix, Windows, or OS/2. --** When [custom builds | built for other platforms] --** (using the [SQLITE_OS_OTHER=1] compile-time --** option) the application must supply a suitable implementation for --** sqlite3_os_init() and sqlite3_os_end(). An application-supplied --** implementation of sqlite3_os_init() or sqlite3_os_end() --** must return [SQLITE_OK] on success and some other [error code] upon --** failure. -- function sqlite3_initialize return int; -- /usr/include/sqlite3.h:1373 pragma Import (C, sqlite3_initialize, "sqlite3_initialize"); function sqlite3_shutdown return int; -- /usr/include/sqlite3.h:1374 pragma Import (C, sqlite3_shutdown, "sqlite3_shutdown"); function sqlite3_os_init return int; -- /usr/include/sqlite3.h:1375 pragma Import (C, sqlite3_os_init, "sqlite3_os_init"); function sqlite3_os_end return int; -- /usr/include/sqlite3.h:1376 pragma Import (C, sqlite3_os_end, "sqlite3_os_end"); --** CAPI3REF: Configuring The SQLite Library --** --** The sqlite3_config() interface is used to make global configuration --** changes to SQLite in order to tune SQLite to the specific needs of --** the application. The default configuration is recommended for most --** applications and so this routine is usually not necessary. It is --** provided to support rare applications with unusual needs. --** --** <b>The sqlite3_config() interface is not threadsafe. The application --** must ensure that no other SQLite interfaces are invoked by other --** threads while sqlite3_config() is running.</b> --** --** The sqlite3_config() interface --** may only be invoked prior to library initialization using --** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()]. --** ^If sqlite3_config() is called after [sqlite3_initialize()] and before --** [sqlite3_shutdown()] then it will return SQLITE_MISUSE. --** Note, however, that ^sqlite3_config() can be called as part of the --** implementation of an application-defined [sqlite3_os_init()]. --** --** The first argument to sqlite3_config() is an integer --** [configuration option] that determines --** what property of SQLite is to be configured. Subsequent arguments --** vary depending on the [configuration option] --** in the first argument. --** --** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK]. --** ^If the option is unknown or SQLite is unable to set the option --** then this routine returns a non-zero [error code]. -- function sqlite3_config (arg1 : int -- , ... ) return int; -- /usr/include/sqlite3.h:1409 pragma Import (C, sqlite3_config, "sqlite3_config"); --** CAPI3REF: Configure database connections --** METHOD: sqlite3 --** --** The sqlite3_db_config() interface is used to make configuration --** changes to a [database connection]. The interface is similar to --** [sqlite3_config()] except that the changes apply to a single --** [database connection] (specified in the first argument). --** --** The second argument to sqlite3_db_config(D,V,...) is the --** [SQLITE_DBCONFIG_LOOKASIDE | configuration verb] - an integer code --** that indicates what aspect of the [database connection] is being configured. --** Subsequent arguments vary depending on the configuration verb. --** --** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if --** the call is considered successful. -- function sqlite3_db_config (arg1 : access sqlite3; op : int -- , ... ) return int; -- /usr/include/sqlite3.h:1428 pragma Import (C, sqlite3_db_config, "sqlite3_db_config"); --** CAPI3REF: Memory Allocation Routines --** --** An instance of this object defines the interface between SQLite --** and low-level memory allocation routines. --** --** This object is used in only one place in the SQLite interface. --** A pointer to an instance of this object is the argument to --** [sqlite3_config()] when the configuration option is --** [SQLITE_CONFIG_MALLOC] or [SQLITE_CONFIG_GETMALLOC]. --** By creating an instance of this object --** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC]) --** during configuration, an application can specify an alternative --** memory allocation subsystem for SQLite to use for all of its --** dynamic memory needs. --** --** Note that SQLite comes with several [built-in memory allocators] --** that are perfectly adequate for the overwhelming majority of applications --** and that this object is only useful to a tiny minority of applications --** with specialized memory allocation requirements. This object is --** also used during testing of SQLite in order to specify an alternative --** memory allocator that simulates memory out-of-memory conditions in --** order to verify that SQLite recovers gracefully from such --** conditions. --** --** The xMalloc, xRealloc, and xFree methods must work like the --** malloc(), realloc() and free() functions from the standard C library. --** ^SQLite guarantees that the second argument to --** xRealloc is always a value returned by a prior call to xRoundup. --** --** xSize should return the allocated size of a memory allocation --** previously obtained from xMalloc or xRealloc. The allocated size --** is always at least as big as the requested size but may be larger. --** --** The xRoundup method returns what would be the allocated size of --** a memory allocation given a particular requested size. Most memory --** allocators round up memory allocations at least to the next multiple --** of 8. Some allocators round up to a larger multiple or to a power of 2. --** Every memory allocation request coming in through [sqlite3_malloc()] --** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, --** that causes the corresponding memory allocation to fail. --** --** The xInit method initializes the memory allocator. For example, --** it might allocate any require mutexes or initialize internal data --** structures. The xShutdown method is invoked (indirectly) by --** [sqlite3_shutdown()] and should deallocate any resources acquired --** by xInit. The pAppData pointer is used as the only parameter to --** xInit and xShutdown. --** --** SQLite holds the [SQLITE_MUTEX_STATIC_MASTER] mutex when it invokes --** the xInit method, so the xInit method need not be threadsafe. The --** xShutdown method is only called from [sqlite3_shutdown()] so it does --** not need to be threadsafe either. For all other methods, SQLite --** holds the [SQLITE_MUTEX_STATIC_MEM] mutex as long as the --** [SQLITE_CONFIG_MEMSTATUS] configuration option is turned on (which --** it is by default) and so the methods are automatically serialized. --** However, if [SQLITE_CONFIG_MEMSTATUS] is disabled, then the other --** methods must be threadsafe or else make their own arrangements for --** serialization. --** --** SQLite will never invoke xInit() more than once without an intervening --** call to xShutdown(). -- -- Memory allocation function type sqlite3_mem_methods is record xMalloc : access function (arg1 : int) return System.Address; -- /usr/include/sqlite3.h:1495 xFree : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:1496 xRealloc : access function (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:1497 xSize : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:1498 xRoundup : access function (arg1 : int) return int; -- /usr/include/sqlite3.h:1499 xInit : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:1500 xShutdown : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:1501 pAppData : System.Address; -- /usr/include/sqlite3.h:1502 end record; pragma Convention (C_Pass_By_Copy, sqlite3_mem_methods); -- /usr/include/sqlite3.h:1494 -- Free a prior allocation -- Resize an allocation -- Return the size of an allocation -- Round up request size to allocation size -- Initialize the memory allocator -- Deinitialize the memory allocator -- Argument to xInit() and xShutdown() --** CAPI3REF: Configuration Options --** KEYWORDS: {configuration option} --** --** These constants are the available integer configuration options that --** can be passed as the first argument to the [sqlite3_config()] interface. --** --** New configuration options may be added in future releases of SQLite. --** Existing configuration options might be discontinued. Applications --** should check the return code from [sqlite3_config()] to make sure that --** the call worked. The [sqlite3_config()] interface will return a --** non-zero [error code] if a discontinued or unsupported configuration option --** is invoked. --** --** <dl> --** [[SQLITE_CONFIG_SINGLETHREAD]] <dt>SQLITE_CONFIG_SINGLETHREAD</dt> --** <dd>There are no arguments to this option. ^This option sets the --** [threading mode] to Single-thread. In other words, it disables --** all mutexing and puts SQLite into a mode where it can only be used --** by a single thread. ^If SQLite is compiled with --** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then --** it is not possible to change the [threading mode] from its default --** value of Single-thread and so [sqlite3_config()] will return --** [SQLITE_ERROR] if called with the SQLITE_CONFIG_SINGLETHREAD --** configuration option.</dd> --** --** [[SQLITE_CONFIG_MULTITHREAD]] <dt>SQLITE_CONFIG_MULTITHREAD</dt> --** <dd>There are no arguments to this option. ^This option sets the --** [threading mode] to Multi-thread. In other words, it disables --** mutexing on [database connection] and [prepared statement] objects. --** The application is responsible for serializing access to --** [database connections] and [prepared statements]. But other mutexes --** are enabled so that SQLite will be safe to use in a multi-threaded --** environment as long as no two threads attempt to use the same --** [database connection] at the same time. ^If SQLite is compiled with --** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then --** it is not possible to set the Multi-thread [threading mode] and --** [sqlite3_config()] will return [SQLITE_ERROR] if called with the --** SQLITE_CONFIG_MULTITHREAD configuration option.</dd> --** --** [[SQLITE_CONFIG_SERIALIZED]] <dt>SQLITE_CONFIG_SERIALIZED</dt> --** <dd>There are no arguments to this option. ^This option sets the --** [threading mode] to Serialized. In other words, this option enables --** all mutexes including the recursive --** mutexes on [database connection] and [prepared statement] objects. --** In this mode (which is the default when SQLite is compiled with --** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access --** to [database connections] and [prepared statements] so that the --** application is free to use the same [database connection] or the --** same [prepared statement] in different threads at the same time. --** ^If SQLite is compiled with --** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then --** it is not possible to set the Serialized [threading mode] and --** [sqlite3_config()] will return [SQLITE_ERROR] if called with the --** SQLITE_CONFIG_SERIALIZED configuration option.</dd> --** --** [[SQLITE_CONFIG_MALLOC]] <dt>SQLITE_CONFIG_MALLOC</dt> --** <dd> ^(The SQLITE_CONFIG_MALLOC option takes a single argument which is --** a pointer to an instance of the [sqlite3_mem_methods] structure. --** The argument specifies --** alternative low-level memory allocation routines to be used in place of --** the memory allocation routines built into SQLite.)^ ^SQLite makes --** its own private copy of the content of the [sqlite3_mem_methods] structure --** before the [sqlite3_config()] call returns.</dd> --** --** [[SQLITE_CONFIG_GETMALLOC]] <dt>SQLITE_CONFIG_GETMALLOC</dt> --** <dd> ^(The SQLITE_CONFIG_GETMALLOC option takes a single argument which --** is a pointer to an instance of the [sqlite3_mem_methods] structure. --** The [sqlite3_mem_methods] --** structure is filled with the currently defined memory allocation routines.)^ --** This option can be used to overload the default memory allocation --** routines with a wrapper that simulations memory allocation failure or --** tracks memory usage, for example. </dd> --** --** [[SQLITE_CONFIG_MEMSTATUS]] <dt>SQLITE_CONFIG_MEMSTATUS</dt> --** <dd> ^The SQLITE_CONFIG_MEMSTATUS option takes single argument of type int, --** interpreted as a boolean, which enables or disables the collection of --** memory allocation statistics. ^(When memory allocation statistics are --** disabled, the following SQLite interfaces become non-operational: --** <ul> --** <li> [sqlite3_memory_used()] --** <li> [sqlite3_memory_highwater()] --** <li> [sqlite3_soft_heap_limit64()] --** <li> [sqlite3_status64()] --** </ul>)^ --** ^Memory allocation statistics are enabled by default unless SQLite is --** compiled with [SQLITE_DEFAULT_MEMSTATUS]=0 in which case memory --** allocation statistics are disabled by default. --** </dd> --** --** [[SQLITE_CONFIG_SCRATCH]] <dt>SQLITE_CONFIG_SCRATCH</dt> --** <dd> ^The SQLITE_CONFIG_SCRATCH option specifies a static memory buffer --** that SQLite can use for scratch memory. ^(There are three arguments --** to SQLITE_CONFIG_SCRATCH: A pointer an 8-byte --** aligned memory buffer from which the scratch allocations will be --** drawn, the size of each scratch allocation (sz), --** and the maximum number of scratch allocations (N).)^ --** The first argument must be a pointer to an 8-byte aligned buffer --** of at least sz*N bytes of memory. --** ^SQLite will not use more than one scratch buffers per thread. --** ^SQLite will never request a scratch buffer that is more than 6 --** times the database page size. --** ^If SQLite needs needs additional --** scratch memory beyond what is provided by this configuration option, then --** [sqlite3_malloc()] will be used to obtain the memory needed.<p> --** ^When the application provides any amount of scratch memory using --** SQLITE_CONFIG_SCRATCH, SQLite avoids unnecessary large --** [sqlite3_malloc|heap allocations]. --** This can help [Robson proof|prevent memory allocation failures] due to heap --** fragmentation in low-memory embedded systems. --** </dd> --** --** [[SQLITE_CONFIG_PAGECACHE]] <dt>SQLITE_CONFIG_PAGECACHE</dt> --** <dd> ^The SQLITE_CONFIG_PAGECACHE option specifies a memory pool --** that SQLite can use for the database page cache with the default page --** cache implementation. --** This configuration option is a no-op if an application-define page --** cache implementation is loaded using the [SQLITE_CONFIG_PCACHE2]. --** ^There are three arguments to SQLITE_CONFIG_PAGECACHE: A pointer to --** 8-byte aligned memory (pMem), the size of each page cache line (sz), --** and the number of cache lines (N). --** The sz argument should be the size of the largest database page --** (a power of two between 512 and 65536) plus some extra bytes for each --** page header. ^The number of extra bytes needed by the page header --** can be determined using [SQLITE_CONFIG_PCACHE_HDRSZ]. --** ^It is harmless, apart from the wasted memory, --** for the sz parameter to be larger than necessary. The pMem --** argument must be either a NULL pointer or a pointer to an 8-byte --** aligned block of memory of at least sz*N bytes, otherwise --** subsequent behavior is undefined. --** ^When pMem is not NULL, SQLite will strive to use the memory provided --** to satisfy page cache needs, falling back to [sqlite3_malloc()] if --** a page cache line is larger than sz bytes or if all of the pMem buffer --** is exhausted. --** ^If pMem is NULL and N is non-zero, then each database connection --** does an initial bulk allocation for page cache memory --** from [sqlite3_malloc()] sufficient for N cache lines if N is positive or --** of -1024*N bytes if N is negative, . ^If additional --** page cache memory is needed beyond what is provided by the initial --** allocation, then SQLite goes to [sqlite3_malloc()] separately for each --** additional cache line. </dd> --** --** [[SQLITE_CONFIG_HEAP]] <dt>SQLITE_CONFIG_HEAP</dt> --** <dd> ^The SQLITE_CONFIG_HEAP option specifies a static memory buffer --** that SQLite will use for all of its dynamic memory allocation needs --** beyond those provided for by [SQLITE_CONFIG_SCRATCH] and --** [SQLITE_CONFIG_PAGECACHE]. --** ^The SQLITE_CONFIG_HEAP option is only available if SQLite is compiled --** with either [SQLITE_ENABLE_MEMSYS3] or [SQLITE_ENABLE_MEMSYS5] and returns --** [SQLITE_ERROR] if invoked otherwise. --** ^There are three arguments to SQLITE_CONFIG_HEAP: --** An 8-byte aligned pointer to the memory, --** the number of bytes in the memory buffer, and the minimum allocation size. --** ^If the first pointer (the memory pointer) is NULL, then SQLite reverts --** to using its default memory allocator (the system malloc() implementation), --** undoing any prior invocation of [SQLITE_CONFIG_MALLOC]. ^If the --** memory pointer is not NULL then the alternative memory --** allocator is engaged to handle all of SQLites memory allocation needs. --** The first pointer (the memory pointer) must be aligned to an 8-byte --** boundary or subsequent behavior of SQLite will be undefined. --** The minimum allocation size is capped at 2**12. Reasonable values --** for the minimum allocation size are 2**5 through 2**8.</dd> --** --** [[SQLITE_CONFIG_MUTEX]] <dt>SQLITE_CONFIG_MUTEX</dt> --** <dd> ^(The SQLITE_CONFIG_MUTEX option takes a single argument which is a --** pointer to an instance of the [sqlite3_mutex_methods] structure. --** The argument specifies alternative low-level mutex routines to be used --** in place the mutex routines built into SQLite.)^ ^SQLite makes a copy of --** the content of the [sqlite3_mutex_methods] structure before the call to --** [sqlite3_config()] returns. ^If SQLite is compiled with --** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then --** the entire mutexing subsystem is omitted from the build and hence calls to --** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will --** return [SQLITE_ERROR].</dd> --** --** [[SQLITE_CONFIG_GETMUTEX]] <dt>SQLITE_CONFIG_GETMUTEX</dt> --** <dd> ^(The SQLITE_CONFIG_GETMUTEX option takes a single argument which --** is a pointer to an instance of the [sqlite3_mutex_methods] structure. The --** [sqlite3_mutex_methods] --** structure is filled with the currently defined mutex routines.)^ --** This option can be used to overload the default mutex allocation --** routines with a wrapper used to track mutex usage for performance --** profiling or testing, for example. ^If SQLite is compiled with --** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then --** the entire mutexing subsystem is omitted from the build and hence calls to --** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will --** return [SQLITE_ERROR].</dd> --** --** [[SQLITE_CONFIG_LOOKASIDE]] <dt>SQLITE_CONFIG_LOOKASIDE</dt> --** <dd> ^(The SQLITE_CONFIG_LOOKASIDE option takes two arguments that determine --** the default size of lookaside memory on each [database connection]. --** The first argument is the --** size of each lookaside buffer slot and the second is the number of --** slots allocated to each database connection.)^ ^(SQLITE_CONFIG_LOOKASIDE --** sets the <i>default</i> lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE] --** option to [sqlite3_db_config()] can be used to change the lookaside --** configuration on individual connections.)^ </dd> --** --** [[SQLITE_CONFIG_PCACHE2]] <dt>SQLITE_CONFIG_PCACHE2</dt> --** <dd> ^(The SQLITE_CONFIG_PCACHE2 option takes a single argument which is --** a pointer to an [sqlite3_pcache_methods2] object. This object specifies --** the interface to a custom page cache implementation.)^ --** ^SQLite makes a copy of the [sqlite3_pcache_methods2] object.</dd> --** --** [[SQLITE_CONFIG_GETPCACHE2]] <dt>SQLITE_CONFIG_GETPCACHE2</dt> --** <dd> ^(The SQLITE_CONFIG_GETPCACHE2 option takes a single argument which --** is a pointer to an [sqlite3_pcache_methods2] object. SQLite copies of --** the current page cache implementation into that object.)^ </dd> --** --** [[SQLITE_CONFIG_LOG]] <dt>SQLITE_CONFIG_LOG</dt> --** <dd> The SQLITE_CONFIG_LOG option is used to configure the SQLite --** global [error log]. --** (^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a --** function with a call signature of void(*)(void*,int,const char*), --** and a pointer to void. ^If the function pointer is not NULL, it is --** invoked by [sqlite3_log()] to process each logging event. ^If the --** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op. --** ^The void pointer that is the second argument to SQLITE_CONFIG_LOG is --** passed through as the first parameter to the application-defined logger --** function whenever that function is invoked. ^The second parameter to --** the logger function is a copy of the first parameter to the corresponding --** [sqlite3_log()] call and is intended to be a [result code] or an --** [extended result code]. ^The third parameter passed to the logger is --** log message after formatting via [sqlite3_snprintf()]. --** The SQLite logging interface is not reentrant; the logger function --** supplied by the application must not invoke any SQLite interface. --** In a multi-threaded application, the application-defined logger --** function must be threadsafe. </dd> --** --** [[SQLITE_CONFIG_URI]] <dt>SQLITE_CONFIG_URI --** <dd>^(The SQLITE_CONFIG_URI option takes a single argument of type int. --** If non-zero, then URI handling is globally enabled. If the parameter is zero, --** then URI handling is globally disabled.)^ ^If URI handling is globally --** enabled, all filenames passed to [sqlite3_open()], [sqlite3_open_v2()], --** [sqlite3_open16()] or --** specified as part of [ATTACH] commands are interpreted as URIs, regardless --** of whether or not the [SQLITE_OPEN_URI] flag is set when the database --** connection is opened. ^If it is globally disabled, filenames are --** only interpreted as URIs if the SQLITE_OPEN_URI flag is set when the --** database connection is opened. ^(By default, URI handling is globally --** disabled. The default value may be changed by compiling with the --** [SQLITE_USE_URI] symbol defined.)^ --** --** [[SQLITE_CONFIG_COVERING_INDEX_SCAN]] <dt>SQLITE_CONFIG_COVERING_INDEX_SCAN --** <dd>^The SQLITE_CONFIG_COVERING_INDEX_SCAN option takes a single integer --** argument which is interpreted as a boolean in order to enable or disable --** the use of covering indices for full table scans in the query optimizer. --** ^The default setting is determined --** by the [SQLITE_ALLOW_COVERING_INDEX_SCAN] compile-time option, or is "on" --** if that compile-time option is omitted. --** The ability to disable the use of covering indices for full table scans --** is because some incorrectly coded legacy applications might malfunction --** when the optimization is enabled. Providing the ability to --** disable the optimization allows the older, buggy application code to work --** without change even with newer versions of SQLite. --** --** [[SQLITE_CONFIG_PCACHE]] [[SQLITE_CONFIG_GETPCACHE]] --** <dt>SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE --** <dd> These options are obsolete and should not be used by new code. --** They are retained for backwards compatibility but are now no-ops. --** </dd> --** --** [[SQLITE_CONFIG_SQLLOG]] --** <dt>SQLITE_CONFIG_SQLLOG --** <dd>This option is only available if sqlite is compiled with the --** [SQLITE_ENABLE_SQLLOG] pre-processor macro defined. The first argument should --** be a pointer to a function of type void(*)(void*,sqlite3*,const char*, int). --** The second should be of type (void*). The callback is invoked by the library --** in three separate circumstances, identified by the value passed as the --** fourth parameter. If the fourth parameter is 0, then the database connection --** passed as the second argument has just been opened. The third argument --** points to a buffer containing the name of the main database file. If the --** fourth parameter is 1, then the SQL statement that the third parameter --** points to has just been executed. Or, if the fourth parameter is 2, then --** the connection being passed as the second parameter is being closed. The --** third parameter is passed NULL In this case. An example of using this --** configuration option can be seen in the "test_sqllog.c" source file in --** the canonical SQLite source tree.</dd> --** --** [[SQLITE_CONFIG_MMAP_SIZE]] --** <dt>SQLITE_CONFIG_MMAP_SIZE --** <dd>^SQLITE_CONFIG_MMAP_SIZE takes two 64-bit integer (sqlite3_int64) values --** that are the default mmap size limit (the default setting for --** [PRAGMA mmap_size]) and the maximum allowed mmap size limit. --** ^The default setting can be overridden by each database connection using --** either the [PRAGMA mmap_size] command, or by using the --** [SQLITE_FCNTL_MMAP_SIZE] file control. ^(The maximum allowed mmap size --** will be silently truncated if necessary so that it does not exceed the --** compile-time maximum mmap size set by the --** [SQLITE_MAX_MMAP_SIZE] compile-time option.)^ --** ^If either argument to this option is negative, then that argument is --** changed to its compile-time default. --** --** [[SQLITE_CONFIG_WIN32_HEAPSIZE]] --** <dt>SQLITE_CONFIG_WIN32_HEAPSIZE --** <dd>^The SQLITE_CONFIG_WIN32_HEAPSIZE option is only available if SQLite is --** compiled for Windows with the [SQLITE_WIN32_MALLOC] pre-processor macro --** defined. ^SQLITE_CONFIG_WIN32_HEAPSIZE takes a 32-bit unsigned integer value --** that specifies the maximum size of the created heap. --** --** [[SQLITE_CONFIG_PCACHE_HDRSZ]] --** <dt>SQLITE_CONFIG_PCACHE_HDRSZ --** <dd>^The SQLITE_CONFIG_PCACHE_HDRSZ option takes a single parameter which --** is a pointer to an integer and writes into that integer the number of extra --** bytes per page required for each page in [SQLITE_CONFIG_PAGECACHE]. --** The amount of extra space required can change depending on the compiler, --** target platform, and SQLite version. --** --** [[SQLITE_CONFIG_PMASZ]] --** <dt>SQLITE_CONFIG_PMASZ --** <dd>^The SQLITE_CONFIG_PMASZ option takes a single parameter which --** is an unsigned integer and sets the "Minimum PMA Size" for the multithreaded --** sorter to that integer. The default minimum PMA Size is set by the --** [SQLITE_SORTER_PMASZ] compile-time option. New threads are launched --** to help with sort operations when multithreaded sorting --** is enabled (using the [PRAGMA threads] command) and the amount of content --** to be sorted exceeds the page size times the minimum of the --** [PRAGMA cache_size] setting and this value. --** </dl> -- -- previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused. --** CAPI3REF: Database Connection Configuration Options --** --** These constants are the available integer configuration options that --** can be passed as the second argument to the [sqlite3_db_config()] interface. --** --** New configuration options may be added in future releases of SQLite. --** Existing configuration options might be discontinued. Applications --** should check the return code from [sqlite3_db_config()] to make sure that --** the call worked. ^The [sqlite3_db_config()] interface will return a --** non-zero [error code] if a discontinued or unsupported configuration option --** is invoked. --** --** <dl> --** <dt>SQLITE_DBCONFIG_LOOKASIDE</dt> --** <dd> ^This option takes three additional arguments that determine the --** [lookaside memory allocator] configuration for the [database connection]. --** ^The first argument (the third parameter to [sqlite3_db_config()] is a --** pointer to a memory buffer to use for lookaside memory. --** ^The first argument after the SQLITE_DBCONFIG_LOOKASIDE verb --** may be NULL in which case SQLite will allocate the --** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the --** size of each lookaside buffer slot. ^The third argument is the number of --** slots. The size of the buffer in the first argument must be greater than --** or equal to the product of the second and third arguments. The buffer --** must be aligned to an 8-byte boundary. ^If the second argument to --** SQLITE_DBCONFIG_LOOKASIDE is not a multiple of 8, it is internally --** rounded down to the next smaller multiple of 8. ^(The lookaside memory --** configuration for a database connection can only be changed when that --** connection is not currently using lookaside memory, or in other words --** when the "current value" returned by --** [sqlite3_db_status](D,[SQLITE_CONFIG_LOOKASIDE],...) is zero. --** Any attempt to change the lookaside memory configuration when lookaside --** memory is in use leaves the configuration unchanged and returns --** [SQLITE_BUSY].)^</dd> --** --** <dt>SQLITE_DBCONFIG_ENABLE_FKEY</dt> --** <dd> ^This option is used to enable or disable the enforcement of --** [foreign key constraints]. There should be two additional arguments. --** The first argument is an integer which is 0 to disable FK enforcement, --** positive to enable FK enforcement or negative to leave FK enforcement --** unchanged. The second parameter is a pointer to an integer into which --** is written 0 or 1 to indicate whether FK enforcement is off or on --** following this call. The second parameter may be a NULL pointer, in --** which case the FK enforcement setting is not reported back. </dd> --** --** <dt>SQLITE_DBCONFIG_ENABLE_TRIGGER</dt> --** <dd> ^This option is used to enable or disable [CREATE TRIGGER | triggers]. --** There should be two additional arguments. --** The first argument is an integer which is 0 to disable triggers, --** positive to enable triggers or negative to leave the setting unchanged. --** The second parameter is a pointer to an integer into which --** is written 0 or 1 to indicate whether triggers are disabled or enabled --** following this call. The second parameter may be a NULL pointer, in --** which case the trigger setting is not reported back. </dd> --** --** </dl> -- --** CAPI3REF: Enable Or Disable Extended Result Codes --** METHOD: sqlite3 --** --** ^The sqlite3_extended_result_codes() routine enables or disables the --** [extended result codes] feature of SQLite. ^The extended result --** codes are disabled by default for historical compatibility. -- function sqlite3_extended_result_codes (arg1 : access sqlite3; onoff : int) return int; -- /usr/include/sqlite3.h:1922 pragma Import (C, sqlite3_extended_result_codes, "sqlite3_extended_result_codes"); --** CAPI3REF: Last Insert Rowid --** METHOD: sqlite3 --** --** ^Each entry in most SQLite tables (except for [WITHOUT ROWID] tables) --** has a unique 64-bit signed --** integer key called the [ROWID | "rowid"]. ^The rowid is always available --** as an undeclared column named ROWID, OID, or _ROWID_ as long as those --** names are not also used by explicitly declared columns. ^If --** the table has a column of type [INTEGER PRIMARY KEY] then that column --** is another alias for the rowid. --** --** ^The sqlite3_last_insert_rowid(D) interface returns the [rowid] of the --** most recent successful [INSERT] into a rowid table or [virtual table] --** on database connection D. --** ^Inserts into [WITHOUT ROWID] tables are not recorded. --** ^If no successful [INSERT]s into rowid tables --** have ever occurred on the database connection D, --** then sqlite3_last_insert_rowid(D) returns zero. --** --** ^(If an [INSERT] occurs within a trigger or within a [virtual table] --** method, then this routine will return the [rowid] of the inserted --** row as long as the trigger or virtual table method is running. --** But once the trigger or virtual table method ends, the value returned --** by this routine reverts to what it was before the trigger or virtual --** table method began.)^ --** --** ^An [INSERT] that fails due to a constraint violation is not a --** successful [INSERT] and does not change the value returned by this --** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK, --** and INSERT OR ABORT make no changes to the return value of this --** routine when their insertion fails. ^(When INSERT OR REPLACE --** encounters a constraint violation, it does not fail. The --** INSERT continues to completion after deleting rows that caused --** the constraint problem so INSERT OR REPLACE will always change --** the return value of this interface.)^ --** --** ^For the purposes of this routine, an [INSERT] is considered to --** be successful even if it is subsequently rolled back. --** --** This function is accessible to SQL statements via the --** [last_insert_rowid() SQL function]. --** --** If a separate thread performs a new [INSERT] on the same --** database connection while the [sqlite3_last_insert_rowid()] --** function is running and thus changes the last insert [rowid], --** then the value returned by [sqlite3_last_insert_rowid()] is --** unpredictable and might not equal either the old or the new --** last insert [rowid]. -- function sqlite3_last_insert_rowid (arg1 : access sqlite3) return sqlite3_int64; -- /usr/include/sqlite3.h:1974 pragma Import (C, sqlite3_last_insert_rowid, "sqlite3_last_insert_rowid"); --** CAPI3REF: Count The Number Of Rows Modified --** METHOD: sqlite3 --** --** ^This function returns the number of rows modified, inserted or --** deleted by the most recently completed INSERT, UPDATE or DELETE --** statement on the database connection specified by the only parameter. --** ^Executing any other type of SQL statement does not modify the value --** returned by this function. --** --** ^Only changes made directly by the INSERT, UPDATE or DELETE statement are --** considered - auxiliary changes caused by [CREATE TRIGGER | triggers], --** [foreign key actions] or [REPLACE] constraint resolution are not counted. --** --** Changes to a view that are intercepted by --** [INSTEAD OF trigger | INSTEAD OF triggers] are not counted. ^The value --** returned by sqlite3_changes() immediately after an INSERT, UPDATE or --** DELETE statement run on a view is always zero. Only changes made to real --** tables are counted. --** --** Things are more complicated if the sqlite3_changes() function is --** executed while a trigger program is running. This may happen if the --** program uses the [changes() SQL function], or if some other callback --** function invokes sqlite3_changes() directly. Essentially: --** --** <ul> --** <li> ^(Before entering a trigger program the value returned by --** sqlite3_changes() function is saved. After the trigger program --** has finished, the original value is restored.)^ --** --** <li> ^(Within a trigger program each INSERT, UPDATE and DELETE --** statement sets the value returned by sqlite3_changes() --** upon completion as normal. Of course, this value will not include --** any changes performed by sub-triggers, as the sqlite3_changes() --** value will be saved and restored after each sub-trigger has run.)^ --** </ul> --** --** ^This means that if the changes() SQL function (or similar) is used --** by the first INSERT, UPDATE or DELETE statement within a trigger, it --** returns the value as set when the calling statement began executing. --** ^If it is used by the second or subsequent such statement within a trigger --** program, the value returned reflects the number of rows modified by the --** previous INSERT, UPDATE or DELETE statement within the same trigger. --** --** See also the [sqlite3_total_changes()] interface, the --** [count_changes pragma], and the [changes() SQL function]. --** --** If a separate thread makes changes on the same database connection --** while [sqlite3_changes()] is running then the value returned --** is unpredictable and not meaningful. -- function sqlite3_changes (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:2027 pragma Import (C, sqlite3_changes, "sqlite3_changes"); --** CAPI3REF: Total Number Of Rows Modified --** METHOD: sqlite3 --** --** ^This function returns the total number of rows inserted, modified or --** deleted by all [INSERT], [UPDATE] or [DELETE] statements completed --** since the database connection was opened, including those executed as --** part of trigger programs. ^Executing any other type of SQL statement --** does not affect the value returned by sqlite3_total_changes(). --** --** ^Changes made as part of [foreign key actions] are included in the --** count, but those made as part of REPLACE constraint resolution are --** not. ^Changes to a view that are intercepted by INSTEAD OF triggers --** are not counted. --** --** See also the [sqlite3_changes()] interface, the --** [count_changes pragma], and the [total_changes() SQL function]. --** --** If a separate thread makes changes on the same database connection --** while [sqlite3_total_changes()] is running then the value --** returned is unpredictable and not meaningful. -- function sqlite3_total_changes (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:2051 pragma Import (C, sqlite3_total_changes, "sqlite3_total_changes"); --** CAPI3REF: Interrupt A Long-Running Query --** METHOD: sqlite3 --** --** ^This function causes any pending database operation to abort and --** return at its earliest opportunity. This routine is typically --** called in response to a user action such as pressing "Cancel" --** or Ctrl-C where the user wants a long query operation to halt --** immediately. --** --** ^It is safe to call this routine from a thread different from the --** thread that is currently running the database operation. But it --** is not safe to call this routine with a [database connection] that --** is closed or might close before sqlite3_interrupt() returns. --** --** ^If an SQL operation is very nearly finished at the time when --** sqlite3_interrupt() is called, then it might not have an opportunity --** to be interrupted and might continue to completion. --** --** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT]. --** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE --** that is inside an explicit transaction, then the entire transaction --** will be rolled back automatically. --** --** ^The sqlite3_interrupt(D) call is in effect until all currently running --** SQL statements on [database connection] D complete. ^Any new SQL statements --** that are started after the sqlite3_interrupt() call and before the --** running statements reaches zero are interrupted as if they had been --** running prior to the sqlite3_interrupt() call. ^New SQL statements --** that are started after the running statement count reaches zero are --** not effected by the sqlite3_interrupt(). --** ^A call to sqlite3_interrupt(D) that occurs when there are no running --** SQL statements is a no-op and has no effect on SQL statements --** that are started after the sqlite3_interrupt() call returns. --** --** If the database connection closes while [sqlite3_interrupt()] --** is running then bad things will likely happen. -- procedure sqlite3_interrupt (arg1 : access sqlite3); -- /usr/include/sqlite3.h:2091 pragma Import (C, sqlite3_interrupt, "sqlite3_interrupt"); --** CAPI3REF: Determine If An SQL Statement Is Complete --** --** These routines are useful during command-line input to determine if the --** currently entered text seems to form a complete SQL statement or --** if additional input is needed before sending the text into --** SQLite for parsing. ^These routines return 1 if the input string --** appears to be a complete SQL statement. ^A statement is judged to be --** complete if it ends with a semicolon token and is not a prefix of a --** well-formed CREATE TRIGGER statement. ^Semicolons that are embedded within --** string literals or quoted identifier names or comments are not --** independent tokens (they are part of the token in which they are --** embedded) and thus do not count as a statement terminator. ^Whitespace --** and comments that follow the final semicolon are ignored. --** --** ^These routines return 0 if the statement is incomplete. ^If a --** memory allocation fails, then SQLITE_NOMEM is returned. --** --** ^These routines do not parse the SQL statements thus --** will not detect syntactically incorrect SQL. --** --** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior --** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked --** automatically by sqlite3_complete16(). If that initialization fails, --** then the return value from sqlite3_complete16() will be non-zero --** regardless of whether or not the input SQL is complete.)^ --** --** The input to [sqlite3_complete()] must be a zero-terminated --** UTF-8 string. --** --** The input to [sqlite3_complete16()] must be a zero-terminated --** UTF-16 string in native byte order. -- function sqlite3_complete (sql : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:2126 pragma Import (C, sqlite3_complete, "sqlite3_complete"); function sqlite3_complete16 (sql : System.Address) return int; -- /usr/include/sqlite3.h:2127 pragma Import (C, sqlite3_complete16, "sqlite3_complete16"); --** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors --** KEYWORDS: {busy-handler callback} {busy handler} --** METHOD: sqlite3 --** --** ^The sqlite3_busy_handler(D,X,P) routine sets a callback function X --** that might be invoked with argument P whenever --** an attempt is made to access a database table associated with --** [database connection] D when another thread --** or process has the table locked. --** The sqlite3_busy_handler() interface is used to implement --** [sqlite3_busy_timeout()] and [PRAGMA busy_timeout]. --** --** ^If the busy callback is NULL, then [SQLITE_BUSY] --** is returned immediately upon encountering the lock. ^If the busy callback --** is not NULL, then the callback might be invoked with two arguments. --** --** ^The first argument to the busy handler is a copy of the void* pointer which --** is the third argument to sqlite3_busy_handler(). ^The second argument to --** the busy handler callback is the number of times that the busy handler has --** been invoked previously for the same locking event. ^If the --** busy callback returns 0, then no additional attempts are made to --** access the database and [SQLITE_BUSY] is returned --** to the application. --** ^If the callback returns non-zero, then another attempt --** is made to access the database and the cycle repeats. --** --** The presence of a busy handler does not guarantee that it will be invoked --** when there is lock contention. ^If SQLite determines that invoking the busy --** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY] --** to the application instead of invoking the --** busy handler. --** Consider a scenario where one process is holding a read lock that --** it is trying to promote to a reserved lock and --** a second process is holding a reserved lock that it is trying --** to promote to an exclusive lock. The first process cannot proceed --** because it is blocked by the second and the second process cannot --** proceed because it is blocked by the first. If both processes --** invoke the busy handlers, neither will make any progress. Therefore, --** SQLite returns [SQLITE_BUSY] for the first process, hoping that this --** will induce the first process to release its read lock and allow --** the second process to proceed. --** --** ^The default busy callback is NULL. --** --** ^(There can only be a single busy handler defined for each --** [database connection]. Setting a new busy handler clears any --** previously set handler.)^ ^Note that calling [sqlite3_busy_timeout()] --** or evaluating [PRAGMA busy_timeout=N] will change the --** busy handler and thus clear any previously set busy handler. --** --** The busy callback should not take any actions which modify the --** database connection that invoked the busy handler. In other words, --** the busy handler is not reentrant. Any such actions --** result in undefined behavior. --** --** A busy handler must not close the database connection --** or [prepared statement] that invoked the busy handler. -- function sqlite3_busy_handler (arg1 : access sqlite3; arg2 : access function (arg1 : System.Address; arg2 : int) return int; arg3 : System.Address) return int; -- /usr/include/sqlite3.h:2188 pragma Import (C, sqlite3_busy_handler, "sqlite3_busy_handler"); --** CAPI3REF: Set A Busy Timeout --** METHOD: sqlite3 --** --** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps --** for a specified amount of time when a table is locked. ^The handler --** will sleep multiple times until at least "ms" milliseconds of sleeping --** have accumulated. ^After at least "ms" milliseconds of sleeping, --** the handler returns 0 which causes [sqlite3_step()] to return --** [SQLITE_BUSY]. --** --** ^Calling this routine with an argument less than or equal to zero --** turns off all busy handlers. --** --** ^(There can only be a single busy handler for a particular --** [database connection] at any given moment. If another busy handler --** was defined (using [sqlite3_busy_handler()]) prior to calling --** this routine, that other busy handler is cleared.)^ --** --** See also: [PRAGMA busy_timeout] -- function sqlite3_busy_timeout (arg1 : access sqlite3; ms : int) return int; -- /usr/include/sqlite3.h:2211 pragma Import (C, sqlite3_busy_timeout, "sqlite3_busy_timeout"); --** CAPI3REF: Convenience Routines For Running Queries --** METHOD: sqlite3 --** --** This is a legacy interface that is preserved for backwards compatibility. --** Use of this interface is not recommended. --** --** Definition: A <b>result table</b> is memory data structure created by the --** [sqlite3_get_table()] interface. A result table records the --** complete query results from one or more queries. --** --** The table conceptually has a number of rows and columns. But --** these numbers are not part of the result table itself. These --** numbers are obtained separately. Let N be the number of rows --** and M be the number of columns. --** --** A result table is an array of pointers to zero-terminated UTF-8 strings. --** There are (N+1)*M elements in the array. The first M pointers point --** to zero-terminated strings that contain the names of the columns. --** The remaining entries all point to query results. NULL values result --** in NULL pointers. All other values are in their UTF-8 zero-terminated --** string representation as returned by [sqlite3_column_text()]. --** --** A result table might consist of one or more memory allocations. --** It is not safe to pass a result table directly to [sqlite3_free()]. --** A result table should be deallocated using [sqlite3_free_table()]. --** --** ^(As an example of the result table format, suppose a query result --** is as follows: --** --** <blockquote><pre> --** Name | Age --** ----------------------- --** Alice | 43 --** Bob | 28 --** Cindy | 21 --** </pre></blockquote> --** --** There are two column (M==2) and three rows (N==3). Thus the --** result table has 8 entries. Suppose the result table is stored --** in an array names azResult. Then azResult holds this content: --** --** <blockquote><pre> --** azResult&#91;0] = "Name"; --** azResult&#91;1] = "Age"; --** azResult&#91;2] = "Alice"; --** azResult&#91;3] = "43"; --** azResult&#91;4] = "Bob"; --** azResult&#91;5] = "28"; --** azResult&#91;6] = "Cindy"; --** azResult&#91;7] = "21"; --** </pre></blockquote>)^ --** --** ^The sqlite3_get_table() function evaluates one or more --** semicolon-separated SQL statements in the zero-terminated UTF-8 --** string of its 2nd parameter and returns a result table to the --** pointer given in its 3rd parameter. --** --** After the application has finished with the result from sqlite3_get_table(), --** it must pass the result table pointer to sqlite3_free_table() in order to --** release the memory that was malloced. Because of the way the --** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling --** function must not try to call [sqlite3_free()] directly. Only --** [sqlite3_free_table()] is able to release the memory properly and safely. --** --** The sqlite3_get_table() interface is implemented as a wrapper around --** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access --** to any internal data structures of SQLite. It uses only the public --** interface defined here. As a consequence, errors that occur in the --** wrapper layer outside of the internal [sqlite3_exec()] call are not --** reflected in subsequent calls to [sqlite3_errcode()] or --** [sqlite3_errmsg()]. -- function sqlite3_get_table (db : access sqlite3; zSql : Interfaces.C.Strings.chars_ptr; pazResult : System.Address; pnRow : access int; pnColumn : access int; pzErrmsg : System.Address) return int; -- /usr/include/sqlite3.h:2286 pragma Import (C, sqlite3_get_table, "sqlite3_get_table"); -- An open database -- SQL to be evaluated -- Results of the query -- Number of result rows written here -- Number of result columns written here -- Error msg written here procedure sqlite3_free_table (result : System.Address); -- /usr/include/sqlite3.h:2294 pragma Import (C, sqlite3_free_table, "sqlite3_free_table"); --** CAPI3REF: Formatted String Printing Functions --** --** These routines are work-alikes of the "printf()" family of functions --** from the standard C library. --** These routines understand most of the common K&R formatting options, --** plus some additional non-standard formats, detailed below. --** Note that some of the more obscure formatting options from recent --** C-library standards are omitted from this implementation. --** --** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their --** results into memory obtained from [sqlite3_malloc()]. --** The strings returned by these two routines should be --** released by [sqlite3_free()]. ^Both routines return a --** NULL pointer if [sqlite3_malloc()] is unable to allocate enough --** memory to hold the resulting string. --** --** ^(The sqlite3_snprintf() routine is similar to "snprintf()" from --** the standard C library. The result is written into the --** buffer supplied as the second parameter whose size is given by --** the first parameter. Note that the order of the --** first two parameters is reversed from snprintf().)^ This is an --** historical accident that cannot be fixed without breaking --** backwards compatibility. ^(Note also that sqlite3_snprintf() --** returns a pointer to its buffer instead of the number of --** characters actually written into the buffer.)^ We admit that --** the number of characters written would be a more useful return --** value but we cannot change the implementation of sqlite3_snprintf() --** now without breaking compatibility. --** --** ^As long as the buffer size is greater than zero, sqlite3_snprintf() --** guarantees that the buffer is always zero-terminated. ^The first --** parameter "n" is the total size of the buffer, including space for --** the zero terminator. So the longest string that can be completely --** written will be n-1 characters. --** --** ^The sqlite3_vsnprintf() routine is a varargs version of sqlite3_snprintf(). --** --** These routines all implement some additional formatting --** options that are useful for constructing SQL statements. --** All of the usual printf() formatting options apply. In addition, there --** is are "%q", "%Q", "%w" and "%z" options. --** --** ^(The %q option works like %s in that it substitutes a nul-terminated --** string from the argument list. But %q also doubles every '\'' character. --** %q is designed for use inside a string literal.)^ By doubling each '\'' --** character it escapes that character and allows it to be inserted into --** the string. --** --** For example, assume the string variable zText contains text as follows: --** --** <blockquote><pre> --** char *zText = "It's a happy day!"; --** </pre></blockquote> --** --** One can use this text in an SQL statement as follows: --** --** <blockquote><pre> --** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText); --** sqlite3_exec(db, zSQL, 0, 0, 0); --** sqlite3_free(zSQL); --** </pre></blockquote> --** --** Because the %q format string is used, the '\'' character in zText --** is escaped and the SQL generated is as follows: --** --** <blockquote><pre> --** INSERT INTO table1 VALUES('It''s a happy day!') --** </pre></blockquote> --** --** This is correct. Had we used %s instead of %q, the generated SQL --** would have looked like this: --** --** <blockquote><pre> --** INSERT INTO table1 VALUES('It's a happy day!'); --** </pre></blockquote> --** --** This second example is an SQL syntax error. As a general rule you should --** always use %q instead of %s when inserting text into a string literal. --** --** ^(The %Q option works like %q except it also adds single quotes around --** the outside of the total string. Additionally, if the parameter in the --** argument list is a NULL pointer, %Q substitutes the text "NULL" (without --** single quotes).)^ So, for example, one could say: --** --** <blockquote><pre> --** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText); --** sqlite3_exec(db, zSQL, 0, 0, 0); --** sqlite3_free(zSQL); --** </pre></blockquote> --** --** The code above will render a correct SQL statement in the zSQL --** variable even if the zText variable is a NULL pointer. --** --** ^(The "%w" formatting option is like "%q" except that it expects to --** be contained within double-quotes instead of single quotes, and it --** escapes the double-quote character instead of the single-quote --** character.)^ The "%w" formatting option is intended for safely inserting --** table and column names into a constructed SQL statement. --** --** ^(The "%z" formatting option works like "%s" but with the --** addition that after the string has been read and copied into --** the result, [sqlite3_free()] is called on the input string.)^ -- function sqlite3_mprintf (arg1 : Interfaces.C.Strings.chars_ptr -- , ... ) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2400 pragma Import (C, sqlite3_mprintf, "sqlite3_mprintf"); function sqlite3_vmprintf (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : access System.Address) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2401 pragma Import (C, sqlite3_vmprintf, "sqlite3_vmprintf"); function sqlite3_snprintf (arg1 : int; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : Interfaces.C.Strings.chars_ptr -- , ... ) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2402 pragma Import (C, sqlite3_snprintf, "sqlite3_snprintf"); function sqlite3_vsnprintf (arg1 : int; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : access System.Address) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:2403 pragma Import (C, sqlite3_vsnprintf, "sqlite3_vsnprintf"); --** CAPI3REF: Memory Allocation Subsystem --** --** The SQLite core uses these three routines for all of its own --** internal memory allocation needs. "Core" in the previous sentence --** does not include operating-system specific VFS implementation. The --** Windows VFS uses native malloc() and free() for some operations. --** --** ^The sqlite3_malloc() routine returns a pointer to a block --** of memory at least N bytes in length, where N is the parameter. --** ^If sqlite3_malloc() is unable to obtain sufficient free --** memory, it returns a NULL pointer. ^If the parameter N to --** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns --** a NULL pointer. --** --** ^The sqlite3_malloc64(N) routine works just like --** sqlite3_malloc(N) except that N is an unsigned 64-bit integer instead --** of a signed 32-bit integer. --** --** ^Calling sqlite3_free() with a pointer previously returned --** by sqlite3_malloc() or sqlite3_realloc() releases that memory so --** that it might be reused. ^The sqlite3_free() routine is --** a no-op if is called with a NULL pointer. Passing a NULL pointer --** to sqlite3_free() is harmless. After being freed, memory --** should neither be read nor written. Even reading previously freed --** memory might result in a segmentation fault or other severe error. --** Memory corruption, a segmentation fault, or other severe error --** might result if sqlite3_free() is called with a non-NULL pointer that --** was not obtained from sqlite3_malloc() or sqlite3_realloc(). --** --** ^The sqlite3_realloc(X,N) interface attempts to resize a --** prior memory allocation X to be at least N bytes. --** ^If the X parameter to sqlite3_realloc(X,N) --** is a NULL pointer then its behavior is identical to calling --** sqlite3_malloc(N). --** ^If the N parameter to sqlite3_realloc(X,N) is zero or --** negative then the behavior is exactly the same as calling --** sqlite3_free(X). --** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation --** of at least N bytes in size or NULL if insufficient memory is available. --** ^If M is the size of the prior allocation, then min(N,M) bytes --** of the prior allocation are copied into the beginning of buffer returned --** by sqlite3_realloc(X,N) and the prior allocation is freed. --** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the --** prior allocation is not freed. --** --** ^The sqlite3_realloc64(X,N) interfaces works the same as --** sqlite3_realloc(X,N) except that N is a 64-bit unsigned integer instead --** of a 32-bit signed integer. --** --** ^If X is a memory allocation previously obtained from sqlite3_malloc(), --** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then --** sqlite3_msize(X) returns the size of that memory allocation in bytes. --** ^The value returned by sqlite3_msize(X) might be larger than the number --** of bytes requested when X was allocated. ^If X is a NULL pointer then --** sqlite3_msize(X) returns zero. If X points to something that is not --** the beginning of memory allocation, or if it points to a formerly --** valid memory allocation that has now been freed, then the behavior --** of sqlite3_msize(X) is undefined and possibly harmful. --** --** ^The memory returned by sqlite3_malloc(), sqlite3_realloc(), --** sqlite3_malloc64(), and sqlite3_realloc64() --** is always aligned to at least an 8 byte boundary, or to a --** 4 byte boundary if the [SQLITE_4_BYTE_ALIGNED_MALLOC] compile-time --** option is used. --** --** In SQLite version 3.5.0 and 3.5.1, it was possible to define --** the SQLITE_OMIT_MEMORY_ALLOCATION which would cause the built-in --** implementation of these routines to be omitted. That capability --** is no longer provided. Only built-in memory allocators can be used. --** --** Prior to SQLite version 3.7.10, the Windows OS interface layer called --** the system malloc() and free() directly when converting --** filenames between the UTF-8 encoding used by SQLite --** and whatever filename encoding is used by the particular Windows --** installation. Memory allocation errors were detected, but --** they were reported back as [SQLITE_CANTOPEN] or --** [SQLITE_IOERR] rather than [SQLITE_NOMEM]. --** --** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()] --** must be either NULL or else pointers obtained from a prior --** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have --** not yet been released. --** --** The application must not read or write any part of --** a block of memory after it has been released using --** [sqlite3_free()] or [sqlite3_realloc()]. -- function sqlite3_malloc (arg1 : int) return System.Address; -- /usr/include/sqlite3.h:2493 pragma Import (C, sqlite3_malloc, "sqlite3_malloc"); function sqlite3_malloc64 (arg1 : sqlite3_uint64) return System.Address; -- /usr/include/sqlite3.h:2494 pragma Import (C, sqlite3_malloc64, "sqlite3_malloc64"); function sqlite3_realloc (arg1 : System.Address; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:2495 pragma Import (C, sqlite3_realloc, "sqlite3_realloc"); function sqlite3_realloc64 (arg1 : System.Address; arg2 : sqlite3_uint64) return System.Address; -- /usr/include/sqlite3.h:2496 pragma Import (C, sqlite3_realloc64, "sqlite3_realloc64"); procedure sqlite3_free (arg1 : System.Address); -- /usr/include/sqlite3.h:2497 pragma Import (C, sqlite3_free, "sqlite3_free"); function sqlite3_msize (arg1 : System.Address) return sqlite3_uint64; -- /usr/include/sqlite3.h:2498 pragma Import (C, sqlite3_msize, "sqlite3_msize"); --** CAPI3REF: Memory Allocator Statistics --** --** SQLite provides these two interfaces for reporting on the status --** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()] --** routines, which form the built-in memory allocation subsystem. --** --** ^The [sqlite3_memory_used()] routine returns the number of bytes --** of memory currently outstanding (malloced but not freed). --** ^The [sqlite3_memory_highwater()] routine returns the maximum --** value of [sqlite3_memory_used()] since the high-water mark --** was last reset. ^The values returned by [sqlite3_memory_used()] and --** [sqlite3_memory_highwater()] include any overhead --** added by SQLite in its implementation of [sqlite3_malloc()], --** but not overhead added by the any underlying system library --** routines that [sqlite3_malloc()] may call. --** --** ^The memory high-water mark is reset to the current value of --** [sqlite3_memory_used()] if and only if the parameter to --** [sqlite3_memory_highwater()] is true. ^The value returned --** by [sqlite3_memory_highwater(1)] is the high-water mark --** prior to the reset. -- function sqlite3_memory_used return sqlite3_int64; -- /usr/include/sqlite3.h:2523 pragma Import (C, sqlite3_memory_used, "sqlite3_memory_used"); function sqlite3_memory_highwater (resetFlag : int) return sqlite3_int64; -- /usr/include/sqlite3.h:2524 pragma Import (C, sqlite3_memory_highwater, "sqlite3_memory_highwater"); --** CAPI3REF: Pseudo-Random Number Generator --** --** SQLite contains a high-quality pseudo-random number generator (PRNG) used to --** select random [ROWID | ROWIDs] when inserting new records into a table that --** already uses the largest possible [ROWID]. The PRNG is also used for --** the build-in random() and randomblob() SQL functions. This interface allows --** applications to access the same PRNG for other purposes. --** --** ^A call to this routine stores N bytes of randomness into buffer P. --** ^The P parameter can be a NULL pointer. --** --** ^If this routine has not been previously called or if the previous --** call had N less than one or a NULL pointer for P, then the PRNG is --** seeded using randomness obtained from the xRandomness method of --** the default [sqlite3_vfs] object. --** ^If the previous call to this routine had an N of 1 or more and a --** non-NULL P then the pseudo-randomness is generated --** internally and without recourse to the [sqlite3_vfs] xRandomness --** method. -- procedure sqlite3_randomness (N : int; P : System.Address); -- /usr/include/sqlite3.h:2547 pragma Import (C, sqlite3_randomness, "sqlite3_randomness"); --** CAPI3REF: Compile-Time Authorization Callbacks --** METHOD: sqlite3 --** --** ^This routine registers an authorizer callback with a particular --** [database connection], supplied in the first argument. --** ^The authorizer callback is invoked as SQL statements are being compiled --** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()], --** [sqlite3_prepare16()] and [sqlite3_prepare16_v2()]. ^At various --** points during the compilation process, as logic is being created --** to perform various actions, the authorizer callback is invoked to --** see if those actions are allowed. ^The authorizer callback should --** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the --** specific action but allow the SQL statement to continue to be --** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be --** rejected with an error. ^If the authorizer callback returns --** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY] --** then the [sqlite3_prepare_v2()] or equivalent call that triggered --** the authorizer will fail with an error message. --** --** When the callback returns [SQLITE_OK], that means the operation --** requested is ok. ^When the callback returns [SQLITE_DENY], the --** [sqlite3_prepare_v2()] or equivalent call that triggered the --** authorizer will fail with an error message explaining that --** access is denied. --** --** ^The first parameter to the authorizer callback is a copy of the third --** parameter to the sqlite3_set_authorizer() interface. ^The second parameter --** to the callback is an integer [SQLITE_COPY | action code] that specifies --** the particular action to be authorized. ^The third through sixth parameters --** to the callback are zero-terminated strings that contain additional --** details about the action to be authorized. --** --** ^If the action code is [SQLITE_READ] --** and the callback returns [SQLITE_IGNORE] then the --** [prepared statement] statement is constructed to substitute --** a NULL value in place of the table column that would have --** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE] --** return can be used to deny an untrusted user access to individual --** columns of a table. --** ^If the action code is [SQLITE_DELETE] and the callback returns --** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the --** [truncate optimization] is disabled and all rows are deleted individually. --** --** An authorizer is used when [sqlite3_prepare | preparing] --** SQL statements from an untrusted source, to ensure that the SQL statements --** do not try to access data they are not allowed to see, or that they do not --** try to execute malicious statements that damage the database. For --** example, an application may allow a user to enter arbitrary --** SQL queries for evaluation by a database. But the application does --** not want the user to be able to make arbitrary changes to the --** database. An authorizer could then be put in place while the --** user-entered SQL is being [sqlite3_prepare | prepared] that --** disallows everything except [SELECT] statements. --** --** Applications that need to process SQL from untrusted sources --** might also consider lowering resource limits using [sqlite3_limit()] --** and limiting database size using the [max_page_count] [PRAGMA] --** in addition to using an authorizer. --** --** ^(Only a single authorizer can be in place on a database connection --** at a time. Each call to sqlite3_set_authorizer overrides the --** previous call.)^ ^Disable the authorizer by installing a NULL callback. --** The authorizer is disabled by default. --** --** The authorizer callback must not do anything that will modify --** the database connection that invoked the authorizer callback. --** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their --** database connections for the meaning of "modify" in this paragraph. --** --** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the --** statement might be re-prepared during [sqlite3_step()] due to a --** schema change. Hence, the application should ensure that the --** correct authorizer callback remains in place during the [sqlite3_step()]. --** --** ^Note that the authorizer callback is invoked only during --** [sqlite3_prepare()] or its variants. Authorization is not --** performed during statement evaluation in [sqlite3_step()], unless --** as stated in the previous paragraph, sqlite3_step() invokes --** sqlite3_prepare_v2() to reprepare a statement after a schema change. -- function sqlite3_set_authorizer (arg1 : access sqlite3; xAuth : access function (arg1 : System.Address; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : Interfaces.C.Strings.chars_ptr; arg6 : Interfaces.C.Strings.chars_ptr) return int; pUserData : System.Address) return int; -- /usr/include/sqlite3.h:2630 pragma Import (C, sqlite3_set_authorizer, "sqlite3_set_authorizer"); --** CAPI3REF: Authorizer Return Codes --** --** The [sqlite3_set_authorizer | authorizer callback function] must --** return either [SQLITE_OK] or one of these two constants in order --** to signal SQLite whether or not the action is permitted. See the --** [sqlite3_set_authorizer | authorizer documentation] for additional --** information. --** --** Note that SQLITE_IGNORE is also used as a [conflict resolution mode] --** returned from the [sqlite3_vtab_on_conflict()] interface. -- --** CAPI3REF: Authorizer Action Codes --** --** The [sqlite3_set_authorizer()] interface registers a callback function --** that is invoked to authorize certain SQL statement actions. The --** second parameter to the callback is an integer code that specifies --** what action is being authorized. These are the integer action codes that --** the authorizer callback may be passed. --** --** These action code values signify what kind of operation is to be --** authorized. The 3rd and 4th parameters to the authorization --** callback function will be parameters or NULL depending on which of these --** codes is used as the second parameter. ^(The 5th parameter to the --** authorizer callback is the name of the database ("main", "temp", --** etc.) if applicable.)^ ^The 6th parameter to the authorizer callback --** is the name of the inner-most trigger or view that is responsible for --** the access attempt or NULL if this access attempt is directly from --** top-level SQL code. -- --****************************************** 3rd ************ 4th ********** --** CAPI3REF: Tracing And Profiling Functions --** METHOD: sqlite3 --** --** These routines register callback functions that can be used for --** tracing and profiling the execution of SQL statements. --** --** ^The callback function registered by sqlite3_trace() is invoked at --** various times when an SQL statement is being run by [sqlite3_step()]. --** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the --** SQL statement text as the statement first begins executing. --** ^(Additional sqlite3_trace() callbacks might occur --** as each triggered subprogram is entered. The callbacks for triggers --** contain a UTF-8 SQL comment that identifies the trigger.)^ --** --** The [SQLITE_TRACE_SIZE_LIMIT] compile-time option can be used to limit --** the length of [bound parameter] expansion in the output of sqlite3_trace(). --** --** ^The callback function registered by sqlite3_profile() is invoked --** as each SQL statement finishes. ^The profile callback contains --** the original statement text and an estimate of wall-clock time --** of how long that statement took to run. ^The profile callback --** time is in units of nanoseconds, however the current implementation --** is only capable of millisecond resolution so the six least significant --** digits in the time are meaningless. Future versions of SQLite --** might provide greater resolution on the profiler callback. The --** sqlite3_profile() function is considered experimental and is --** subject to change in future versions of SQLite. -- function sqlite3_trace (arg1 : access sqlite3; xTrace : access procedure (arg1 : System.Address; arg2 : Interfaces.C.Strings.chars_ptr); arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:2735 pragma Import (C, sqlite3_trace, "sqlite3_trace"); function sqlite3_profile (arg1 : access sqlite3; xProfile : access procedure (arg1 : System.Address; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : sqlite3_uint64); arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:2736 pragma Import (C, sqlite3_profile, "sqlite3_profile"); --** CAPI3REF: Query Progress Callbacks --** METHOD: sqlite3 --** --** ^The sqlite3_progress_handler(D,N,X,P) interface causes the callback --** function X to be invoked periodically during long running calls to --** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for --** database connection D. An example use for this --** interface is to keep a GUI updated during a large query. --** --** ^The parameter P is passed through as the only parameter to the --** callback function X. ^The parameter N is the approximate number of --** [virtual machine instructions] that are evaluated between successive --** invocations of the callback X. ^If N is less than one then the progress --** handler is disabled. --** --** ^Only a single progress handler may be defined at one time per --** [database connection]; setting a new progress handler cancels the --** old one. ^Setting parameter X to NULL disables the progress handler. --** ^The progress handler is also disabled by setting N to a value less --** than 1. --** --** ^If the progress callback returns non-zero, the operation is --** interrupted. This feature can be used to implement a --** "Cancel" button on a GUI progress dialog box. --** --** The progress handler callback must not do anything that will modify --** the database connection that invoked the progress handler. --** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their --** database connections for the meaning of "modify" in this paragraph. --** -- procedure sqlite3_progress_handler (arg1 : access sqlite3; arg2 : int; arg3 : access function (arg1 : System.Address) return int; arg4 : System.Address); -- /usr/include/sqlite3.h:2771 pragma Import (C, sqlite3_progress_handler, "sqlite3_progress_handler"); --** CAPI3REF: Opening A New Database Connection --** CONSTRUCTOR: sqlite3 --** --** ^These routines open an SQLite database file as specified by the --** filename argument. ^The filename argument is interpreted as UTF-8 for --** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte --** order for sqlite3_open16(). ^(A [database connection] handle is usually --** returned in *ppDb, even if an error occurs. The only exception is that --** if SQLite is unable to allocate memory to hold the [sqlite3] object, --** a NULL will be written into *ppDb instead of a pointer to the [sqlite3] --** object.)^ ^(If the database is opened (and/or created) successfully, then --** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The --** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain --** an English language description of the error following a failure of any --** of the sqlite3_open() routines. --** --** ^The default encoding will be UTF-8 for databases created using --** sqlite3_open() or sqlite3_open_v2(). ^The default encoding for databases --** created using sqlite3_open16() will be UTF-16 in the native byte order. --** --** Whether or not an error occurs when it is opened, resources --** associated with the [database connection] handle should be released by --** passing it to [sqlite3_close()] when it is no longer required. --** --** The sqlite3_open_v2() interface works like sqlite3_open() --** except that it accepts two additional parameters for additional control --** over the new database connection. ^(The flags parameter to --** sqlite3_open_v2() can take one of --** the following three values, optionally combined with the --** [SQLITE_OPEN_NOMUTEX], [SQLITE_OPEN_FULLMUTEX], [SQLITE_OPEN_SHAREDCACHE], --** [SQLITE_OPEN_PRIVATECACHE], and/or [SQLITE_OPEN_URI] flags:)^ --** --** <dl> --** ^(<dt>[SQLITE_OPEN_READONLY]</dt> --** <dd>The database is opened in read-only mode. If the database does not --** already exist, an error is returned.</dd>)^ --** --** ^(<dt>[SQLITE_OPEN_READWRITE]</dt> --** <dd>The database is opened for reading and writing if possible, or reading --** only if the file is write protected by the operating system. In either --** case the database must already exist, otherwise an error is returned.</dd>)^ --** --** ^(<dt>[SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]</dt> --** <dd>The database is opened for reading and writing, and is created if --** it does not already exist. This is the behavior that is always used for --** sqlite3_open() and sqlite3_open16().</dd>)^ --** </dl> --** --** If the 3rd parameter to sqlite3_open_v2() is not one of the --** combinations shown above optionally combined with other --** [SQLITE_OPEN_READONLY | SQLITE_OPEN_* bits] --** then the behavior is undefined. --** --** ^If the [SQLITE_OPEN_NOMUTEX] flag is set, then the database connection --** opens in the multi-thread [threading mode] as long as the single-thread --** mode has not been set at compile-time or start-time. ^If the --** [SQLITE_OPEN_FULLMUTEX] flag is set then the database connection opens --** in the serialized [threading mode] unless single-thread was --** previously selected at compile-time or start-time. --** ^The [SQLITE_OPEN_SHAREDCACHE] flag causes the database connection to be --** eligible to use [shared cache mode], regardless of whether or not shared --** cache is enabled using [sqlite3_enable_shared_cache()]. ^The --** [SQLITE_OPEN_PRIVATECACHE] flag causes the database connection to not --** participate in [shared cache mode] even if it is enabled. --** --** ^The fourth parameter to sqlite3_open_v2() is the name of the --** [sqlite3_vfs] object that defines the operating system interface that --** the new database connection should use. ^If the fourth parameter is --** a NULL pointer then the default [sqlite3_vfs] object is used. --** --** ^If the filename is ":memory:", then a private, temporary in-memory database --** is created for the connection. ^This in-memory database will vanish when --** the database connection is closed. Future versions of SQLite might --** make use of additional special filenames that begin with the ":" character. --** It is recommended that when a database filename actually does begin with --** a ":" character you should prefix the filename with a pathname such as --** "./" to avoid ambiguity. --** --** ^If the filename is an empty string, then a private, temporary --** on-disk database will be created. ^This private database will be --** automatically deleted as soon as the database connection is closed. --** --** [[URI filenames in sqlite3_open()]] <h3>URI Filenames</h3> --** --** ^If [URI filename] interpretation is enabled, and the filename argument --** begins with "file:", then the filename is interpreted as a URI. ^URI --** filename interpretation is enabled if the [SQLITE_OPEN_URI] flag is --** set in the fourth argument to sqlite3_open_v2(), or if it has --** been enabled globally using the [SQLITE_CONFIG_URI] option with the --** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option. --** As of SQLite version 3.7.7, URI filename interpretation is turned off --** by default, but future releases of SQLite might enable URI filename --** interpretation by default. See "[URI filenames]" for additional --** information. --** --** URI filenames are parsed according to RFC 3986. ^If the URI contains an --** authority, then it must be either an empty string or the string --** "localhost". ^If the authority is not an empty string or "localhost", an --** error is returned to the caller. ^The fragment component of a URI, if --** present, is ignored. --** --** ^SQLite uses the path component of the URI as the name of the disk file --** which contains the database. ^If the path begins with a '/' character, --** then it is interpreted as an absolute path. ^If the path does not begin --** with a '/' (meaning that the authority section is omitted from the URI) --** then the path is interpreted as a relative path. --** ^(On windows, the first component of an absolute path --** is a drive specification (e.g. "C:").)^ --** --** [[core URI query parameters]] --** The query component of a URI may contain parameters that are interpreted --** either by SQLite itself, or by a [VFS | custom VFS implementation]. --** SQLite and its built-in [VFSes] interpret the --** following query parameters: --** --** <ul> --** <li> <b>vfs</b>: ^The "vfs" parameter may be used to specify the name of --** a VFS object that provides the operating system interface that should --** be used to access the database file on disk. ^If this option is set to --** an empty string the default VFS object is used. ^Specifying an unknown --** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is --** present, then the VFS specified by the option takes precedence over --** the value passed as the fourth parameter to sqlite3_open_v2(). --** --** <li> <b>mode</b>: ^(The mode parameter may be set to either "ro", "rw", --** "rwc", or "memory". Attempting to set it to any other value is --** an error)^. --** ^If "ro" is specified, then the database is opened for read-only --** access, just as if the [SQLITE_OPEN_READONLY] flag had been set in the --** third argument to sqlite3_open_v2(). ^If the mode option is set to --** "rw", then the database is opened for read-write (but not create) --** access, as if SQLITE_OPEN_READWRITE (but not SQLITE_OPEN_CREATE) had --** been set. ^Value "rwc" is equivalent to setting both --** SQLITE_OPEN_READWRITE and SQLITE_OPEN_CREATE. ^If the mode option is --** set to "memory" then a pure [in-memory database] that never reads --** or writes from disk is used. ^It is an error to specify a value for --** the mode parameter that is less restrictive than that specified by --** the flags passed in the third parameter to sqlite3_open_v2(). --** --** <li> <b>cache</b>: ^The cache parameter may be set to either "shared" or --** "private". ^Setting it to "shared" is equivalent to setting the --** SQLITE_OPEN_SHAREDCACHE bit in the flags argument passed to --** sqlite3_open_v2(). ^Setting the cache parameter to "private" is --** equivalent to setting the SQLITE_OPEN_PRIVATECACHE bit. --** ^If sqlite3_open_v2() is used and the "cache" parameter is present in --** a URI filename, its value overrides any behavior requested by setting --** SQLITE_OPEN_PRIVATECACHE or SQLITE_OPEN_SHAREDCACHE flag. --** --** <li> <b>psow</b>: ^The psow parameter indicates whether or not the --** [powersafe overwrite] property does or does not apply to the --** storage media on which the database file resides. --** --** <li> <b>nolock</b>: ^The nolock parameter is a boolean query parameter --** which if set disables file locking in rollback journal modes. This --** is useful for accessing a database on a filesystem that does not --** support locking. Caution: Database corruption might result if two --** or more processes write to the same database and any one of those --** processes uses nolock=1. --** --** <li> <b>immutable</b>: ^The immutable parameter is a boolean query --** parameter that indicates that the database file is stored on --** read-only media. ^When immutable is set, SQLite assumes that the --** database file cannot be changed, even by a process with higher --** privilege, and so the database is opened read-only and all locking --** and change detection is disabled. Caution: Setting the immutable --** property on a database file that does in fact change can result --** in incorrect query results and/or [SQLITE_CORRUPT] errors. --** See also: [SQLITE_IOCAP_IMMUTABLE]. --** --** </ul> --** --** ^Specifying an unknown parameter in the query component of a URI is not an --** error. Future versions of SQLite might understand additional query --** parameters. See "[query parameters with special meaning to SQLite]" for --** additional information. --** --** [[URI filename examples]] <h3>URI filename examples</h3> --** --** <table border="1" align=center cellpadding=5> --** <tr><th> URI filenames <th> Results --** <tr><td> file:data.db <td> --** Open the file "data.db" in the current directory. --** <tr><td> file:/home/fred/data.db<br> --** file:///home/fred/data.db <br> --** file://localhost/home/fred/data.db <br> <td> --** Open the database file "/home/fred/data.db". --** <tr><td> file://darkstar/home/fred/data.db <td> --** An error. "darkstar" is not a recognized authority. --** <tr><td style="white-space:nowrap"> --** file:///C:/Documents%20and%20Settings/fred/Desktop/data.db --** <td> Windows only: Open the file "data.db" on fred's desktop on drive --** C:. Note that the %20 escaping in this example is not strictly --** necessary - space characters can be used literally --** in URI filenames. --** <tr><td> file:data.db?mode=ro&cache=private <td> --** Open file "data.db" in the current directory for read-only access. --** Regardless of whether or not shared-cache mode is enabled by --** default, use a private cache. --** <tr><td> file:/home/fred/data.db?vfs=unix-dotfile <td> --** Open file "/home/fred/data.db". Use the special VFS "unix-dotfile" --** that uses dot-files in place of posix advisory locking. --** <tr><td> file:data.db?mode=readonly <td> --** An error. "readonly" is not a valid option for the "mode" parameter. --** </table> --** --** ^URI hexadecimal escape sequences (%HH) are supported within the path and --** query components of a URI. A hexadecimal escape sequence consists of a --** percent sign - "%" - followed by exactly two hexadecimal digits --** specifying an octet value. ^Before the path or query components of a --** URI filename are interpreted, they are encoded using UTF-8 and all --** hexadecimal escape sequences replaced by a single byte containing the --** corresponding octet. If this process generates an invalid UTF-8 encoding, --** the results are undefined. --** --** <b>Note to Windows users:</b> The encoding used for the filename argument --** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever --** codepage is currently defined. Filenames containing international --** characters must be converted to UTF-8 prior to passing them into --** sqlite3_open() or sqlite3_open_v2(). --** --** <b>Note to Windows Runtime users:</b> The temporary directory must be set --** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various --** features that require the use of temporary files may fail. --** --** See also: [sqlite3_temp_directory] -- function sqlite3_open (filename : Interfaces.C.Strings.chars_ptr; ppDb : System.Address) return int; -- /usr/include/sqlite3.h:3000 pragma Import (C, sqlite3_open, "sqlite3_open"); -- Database filename (UTF-8) -- OUT: SQLite db handle function sqlite3_open16 (filename : System.Address; ppDb : System.Address) return int; -- /usr/include/sqlite3.h:3004 pragma Import (C, sqlite3_open16, "sqlite3_open16"); -- Database filename (UTF-16) -- OUT: SQLite db handle function sqlite3_open_v2 (filename : Interfaces.C.Strings.chars_ptr; ppDb : System.Address; flags : int; zVfs : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:3008 pragma Import (C, sqlite3_open_v2, "sqlite3_open_v2"); -- Database filename (UTF-8) -- OUT: SQLite db handle -- Flags -- Name of VFS module to use --** CAPI3REF: Obtain Values For URI Parameters --** --** These are utility routines, useful to VFS implementations, that check --** to see if a database file was a URI that contained a specific query --** parameter, and if so obtains the value of that query parameter. --** --** If F is the database filename pointer passed into the xOpen() method of --** a VFS implementation when the flags parameter to xOpen() has one or --** more of the [SQLITE_OPEN_URI] or [SQLITE_OPEN_MAIN_DB] bits set and --** P is the name of the query parameter, then --** sqlite3_uri_parameter(F,P) returns the value of the P --** parameter if it exists or a NULL pointer if P does not appear as a --** query parameter on F. If P is a query parameter of F --** has no explicit value, then sqlite3_uri_parameter(F,P) returns --** a pointer to an empty string. --** --** The sqlite3_uri_boolean(F,P,B) routine assumes that P is a boolean --** parameter and returns true (1) or false (0) according to the value --** of P. The sqlite3_uri_boolean(F,P,B) routine returns true (1) if the --** value of query parameter P is one of "yes", "true", or "on" in any --** case or if the value begins with a non-zero number. The --** sqlite3_uri_boolean(F,P,B) routines returns false (0) if the value of --** query parameter P is one of "no", "false", or "off" in any case or --** if the value begins with a numeric zero. If P is not a query --** parameter on F or if the value of P is does not match any of the --** above, then sqlite3_uri_boolean(F,P,B) returns (B!=0). --** --** The sqlite3_uri_int64(F,P,D) routine converts the value of P into a --** 64-bit signed integer and returns that integer, or D if P does not --** exist. If the value of P is something other than an integer, then --** zero is returned. --** --** If F is a NULL pointer, then sqlite3_uri_parameter(F,P) returns NULL and --** sqlite3_uri_boolean(F,P,B) returns B. If F is not a NULL pointer and --** is not a database file pathname pointer that SQLite passed into the xOpen --** VFS method, then the behavior of this routine is undefined and probably --** undesirable. -- function sqlite3_uri_parameter (zFilename : Interfaces.C.Strings.chars_ptr; zParam : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3054 pragma Import (C, sqlite3_uri_parameter, "sqlite3_uri_parameter"); function sqlite3_uri_boolean (zFile : Interfaces.C.Strings.chars_ptr; zParam : Interfaces.C.Strings.chars_ptr; bDefault : int) return int; -- /usr/include/sqlite3.h:3055 pragma Import (C, sqlite3_uri_boolean, "sqlite3_uri_boolean"); function sqlite3_uri_int64 (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : sqlite3_int64) return sqlite3_int64; -- /usr/include/sqlite3.h:3056 pragma Import (C, sqlite3_uri_int64, "sqlite3_uri_int64"); --** CAPI3REF: Error Codes And Messages --** METHOD: sqlite3 --** --** ^If the most recent sqlite3_* API call associated with --** [database connection] D failed, then the sqlite3_errcode(D) interface --** returns the numeric [result code] or [extended result code] for that --** API call. --** If the most recent API call was successful, --** then the return value from sqlite3_errcode() is undefined. --** ^The sqlite3_extended_errcode() --** interface is the same except that it always returns the --** [extended result code] even when extended result codes are --** disabled. --** --** ^The sqlite3_errmsg() and sqlite3_errmsg16() return English-language --** text that describes the error, as either UTF-8 or UTF-16 respectively. --** ^(Memory to hold the error message string is managed internally. --** The application does not need to worry about freeing the result. --** However, the error string might be overwritten or deallocated by --** subsequent calls to other SQLite interface functions.)^ --** --** ^The sqlite3_errstr() interface returns the English-language text --** that describes the [result code], as UTF-8. --** ^(Memory to hold the error message string is managed internally --** and must not be freed by the application)^. --** --** When the serialized [threading mode] is in use, it might be the --** case that a second error occurs on a separate thread in between --** the time of the first error and the call to these interfaces. --** When that happens, the second error will be reported since these --** interfaces always report the most recent result. To avoid --** this, each thread can obtain exclusive use of the [database connection] D --** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning --** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after --** all calls to the interfaces listed here are completed. --** --** If an interface fails with SQLITE_MISUSE, that means the interface --** was invoked incorrectly by the application. In that case, the --** error code and message may or may not be set. -- function sqlite3_errcode (db : access sqlite3) return int; -- /usr/include/sqlite3.h:3100 pragma Import (C, sqlite3_errcode, "sqlite3_errcode"); function sqlite3_extended_errcode (db : access sqlite3) return int; -- /usr/include/sqlite3.h:3101 pragma Import (C, sqlite3_extended_errcode, "sqlite3_extended_errcode"); function sqlite3_errmsg (arg1 : access sqlite3) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3102 pragma Import (C, sqlite3_errmsg, "sqlite3_errmsg"); function sqlite3_errmsg16 (arg1 : access sqlite3) return System.Address; -- /usr/include/sqlite3.h:3103 pragma Import (C, sqlite3_errmsg16, "sqlite3_errmsg16"); function sqlite3_errstr (arg1 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3104 pragma Import (C, sqlite3_errstr, "sqlite3_errstr"); --** CAPI3REF: Prepared Statement Object --** KEYWORDS: {prepared statement} {prepared statements} --** --** An instance of this object represents a single SQL statement that --** has been compiled into binary form and is ready to be evaluated. --** --** Think of each SQL statement as a separate computer program. The --** original SQL text is source code. A prepared statement object --** is the compiled object code. All SQL must be converted into a --** prepared statement before it can be run. --** --** The life-cycle of a prepared statement object usually goes like this: --** --** <ol> --** <li> Create the prepared statement object using [sqlite3_prepare_v2()]. --** <li> Bind values to [parameters] using the sqlite3_bind_*() --** interfaces. --** <li> Run the SQL by calling [sqlite3_step()] one or more times. --** <li> Reset the prepared statement using [sqlite3_reset()] then go back --** to step 2. Do this zero or more times. --** <li> Destroy the object using [sqlite3_finalize()]. --** </ol> -- type sqlite3_stmt is null record; -- incomplete struct --** CAPI3REF: Run-time Limits --** METHOD: sqlite3 --** --** ^(This interface allows the size of various constructs to be limited --** on a connection by connection basis. The first parameter is the --** [database connection] whose limit is to be set or queried. The --** second parameter is one of the [limit categories] that define a --** class of constructs to be size limited. The third parameter is the --** new limit for that construct.)^ --** --** ^If the new limit is a negative number, the limit is unchanged. --** ^(For each limit category SQLITE_LIMIT_<i>NAME</i> there is a --** [limits | hard upper bound] --** set at compile-time by a C preprocessor macro called --** [limits | SQLITE_MAX_<i>NAME</i>]. --** (The "_LIMIT_" in the name is changed to "_MAX_".))^ --** ^Attempts to increase a limit above its hard upper bound are --** silently truncated to the hard upper bound. --** --** ^Regardless of whether or not the limit was changed, the --** [sqlite3_limit()] interface returns the prior value of the limit. --** ^Hence, to find the current value of a limit without changing it, --** simply invoke this interface with the third parameter set to -1. --** --** Run-time limits are intended for use in applications that manage --** both their own internal database and also databases that are controlled --** by untrusted external sources. An example application might be a --** web browser that has its own databases for storing history and --** separate databases controlled by JavaScript applications downloaded --** off the Internet. The internal databases can be given the --** large, default limits. Databases managed by external sources can --** be given much smaller limits designed to prevent a denial of service --** attack. Developers might also want to use the [sqlite3_set_authorizer()] --** interface to further control untrusted SQL. The size of the database --** created by an untrusted script can be contained using the --** [max_page_count] [PRAGMA]. --** --** New run-time limit categories may be added in future releases. -- function sqlite3_limit (arg1 : access sqlite3; id : int; newVal : int) return int; -- /usr/include/sqlite3.h:3172 pragma Import (C, sqlite3_limit, "sqlite3_limit"); --** CAPI3REF: Run-Time Limit Categories --** KEYWORDS: {limit category} {*limit categories} --** --** These constants define various performance limits --** that can be lowered at run-time using [sqlite3_limit()]. --** The synopsis of the meanings of the various limits is shown below. --** Additional information is available at [limits | Limits in SQLite]. --** --** <dl> --** [[SQLITE_LIMIT_LENGTH]] ^(<dt>SQLITE_LIMIT_LENGTH</dt> --** <dd>The maximum size of any string or BLOB or table row, in bytes.<dd>)^ --** --** [[SQLITE_LIMIT_SQL_LENGTH]] ^(<dt>SQLITE_LIMIT_SQL_LENGTH</dt> --** <dd>The maximum length of an SQL statement, in bytes.</dd>)^ --** --** [[SQLITE_LIMIT_COLUMN]] ^(<dt>SQLITE_LIMIT_COLUMN</dt> --** <dd>The maximum number of columns in a table definition or in the --** result set of a [SELECT] or the maximum number of columns in an index --** or in an ORDER BY or GROUP BY clause.</dd>)^ --** --** [[SQLITE_LIMIT_EXPR_DEPTH]] ^(<dt>SQLITE_LIMIT_EXPR_DEPTH</dt> --** <dd>The maximum depth of the parse tree on any expression.</dd>)^ --** --** [[SQLITE_LIMIT_COMPOUND_SELECT]] ^(<dt>SQLITE_LIMIT_COMPOUND_SELECT</dt> --** <dd>The maximum number of terms in a compound SELECT statement.</dd>)^ --** --** [[SQLITE_LIMIT_VDBE_OP]] ^(<dt>SQLITE_LIMIT_VDBE_OP</dt> --** <dd>The maximum number of instructions in a virtual machine program --** used to implement an SQL statement. This limit is not currently --** enforced, though that might be added in some future release of --** SQLite.</dd>)^ --** --** [[SQLITE_LIMIT_FUNCTION_ARG]] ^(<dt>SQLITE_LIMIT_FUNCTION_ARG</dt> --** <dd>The maximum number of arguments on a function.</dd>)^ --** --** [[SQLITE_LIMIT_ATTACHED]] ^(<dt>SQLITE_LIMIT_ATTACHED</dt> --** <dd>The maximum number of [ATTACH | attached databases].)^</dd> --** --** [[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]] --** ^(<dt>SQLITE_LIMIT_LIKE_PATTERN_LENGTH</dt> --** <dd>The maximum length of the pattern argument to the [LIKE] or --** [GLOB] operators.</dd>)^ --** --** [[SQLITE_LIMIT_VARIABLE_NUMBER]] --** ^(<dt>SQLITE_LIMIT_VARIABLE_NUMBER</dt> --** <dd>The maximum index number of any [parameter] in an SQL statement.)^ --** --** [[SQLITE_LIMIT_TRIGGER_DEPTH]] ^(<dt>SQLITE_LIMIT_TRIGGER_DEPTH</dt> --** <dd>The maximum depth of recursion for triggers.</dd>)^ --** --** [[SQLITE_LIMIT_WORKER_THREADS]] ^(<dt>SQLITE_LIMIT_WORKER_THREADS</dt> --** <dd>The maximum number of auxiliary worker threads that a single --** [prepared statement] may start.</dd>)^ --** </dl> -- --** CAPI3REF: Compiling An SQL Statement --** KEYWORDS: {SQL statement compiler} --** METHOD: sqlite3 --** CONSTRUCTOR: sqlite3_stmt --** --** To execute an SQL query, it must first be compiled into a byte-code --** program using one of these routines. --** --** The first argument, "db", is a [database connection] obtained from a --** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or --** [sqlite3_open16()]. The database connection must not have been closed. --** --** The second argument, "zSql", is the statement to be compiled, encoded --** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2() --** interfaces use UTF-8, and sqlite3_prepare16() and sqlite3_prepare16_v2() --** use UTF-16. --** --** ^If the nByte argument is negative, then zSql is read up to the --** first zero terminator. ^If nByte is positive, then it is the --** number of bytes read from zSql. ^If nByte is zero, then no prepared --** statement is generated. --** If the caller knows that the supplied string is nul-terminated, then --** there is a small performance advantage to passing an nByte parameter that --** is the number of bytes in the input string <i>including</i> --** the nul-terminator. --** --** ^If pzTail is not NULL then *pzTail is made to point to the first byte --** past the end of the first SQL statement in zSql. These routines only --** compile the first statement in zSql, so *pzTail is left pointing to --** what remains uncompiled. --** --** ^*ppStmt is left pointing to a compiled [prepared statement] that can be --** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set --** to NULL. ^If the input text contains no SQL (if the input is an empty --** string or a comment) then *ppStmt is set to NULL. --** The calling procedure is responsible for deleting the compiled --** SQL statement using [sqlite3_finalize()] after it has finished with it. --** ppStmt may not be NULL. --** --** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK]; --** otherwise an [error code] is returned. --** --** The sqlite3_prepare_v2() and sqlite3_prepare16_v2() interfaces are --** recommended for all new programs. The two older interfaces are retained --** for backwards compatibility, but their use is discouraged. --** ^In the "v2" interfaces, the prepared statement --** that is returned (the [sqlite3_stmt] object) contains a copy of the --** original SQL text. This causes the [sqlite3_step()] interface to --** behave differently in three ways: --** --** <ol> --** <li> --** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it --** always used to do, [sqlite3_step()] will automatically recompile the SQL --** statement and try to run it again. As many as [SQLITE_MAX_SCHEMA_RETRY] --** retries will occur before sqlite3_step() gives up and returns an error. --** </li> --** --** <li> --** ^When an error occurs, [sqlite3_step()] will return one of the detailed --** [error codes] or [extended error codes]. ^The legacy behavior was that --** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code --** and the application would have to make a second call to [sqlite3_reset()] --** in order to find the underlying cause of the problem. With the "v2" prepare --** interfaces, the underlying reason for the error is returned immediately. --** </li> --** --** <li> --** ^If the specific value bound to [parameter | host parameter] in the --** WHERE clause might influence the choice of query plan for a statement, --** then the statement will be automatically recompiled, as if there had been --** a schema change, on the first [sqlite3_step()] call following any change --** to the [sqlite3_bind_text | bindings] of that [parameter]. --** ^The specific value of WHERE-clause [parameter] might influence the --** choice of query plan if the parameter is the left-hand side of a [LIKE] --** or [GLOB] operator or if the parameter is compared to an indexed column --** and the [SQLITE_ENABLE_STAT3] compile-time option is enabled. --** </li> --** </ol> -- function sqlite3_prepare (db : access sqlite3; zSql : Interfaces.C.Strings.chars_ptr; nByte : int; ppStmt : System.Address; pzTail : System.Address) return int; -- /usr/include/sqlite3.h:3324 pragma Import (C, sqlite3_prepare, "sqlite3_prepare"); -- Database handle -- SQL statement, UTF-8 encoded -- Maximum length of zSql in bytes. -- OUT: Statement handle -- OUT: Pointer to unused portion of zSql function sqlite3_prepare_v2 (db : access sqlite3; zSql : Interfaces.C.Strings.chars_ptr; nByte : int; ppStmt : System.Address; pzTail : System.Address) return int; -- /usr/include/sqlite3.h:3331 pragma Import (C, sqlite3_prepare_v2, "sqlite3_prepare_v2"); -- Database handle -- SQL statement, UTF-8 encoded -- Maximum length of zSql in bytes. -- OUT: Statement handle -- OUT: Pointer to unused portion of zSql function sqlite3_prepare16 (db : access sqlite3; zSql : System.Address; nByte : int; ppStmt : System.Address; pzTail : System.Address) return int; -- /usr/include/sqlite3.h:3338 pragma Import (C, sqlite3_prepare16, "sqlite3_prepare16"); -- Database handle -- SQL statement, UTF-16 encoded -- Maximum length of zSql in bytes. -- OUT: Statement handle -- OUT: Pointer to unused portion of zSql function sqlite3_prepare16_v2 (db : access sqlite3; zSql : System.Address; nByte : int; ppStmt : System.Address; pzTail : System.Address) return int; -- /usr/include/sqlite3.h:3345 pragma Import (C, sqlite3_prepare16_v2, "sqlite3_prepare16_v2"); -- Database handle -- SQL statement, UTF-16 encoded -- Maximum length of zSql in bytes. -- OUT: Statement handle -- OUT: Pointer to unused portion of zSql --** CAPI3REF: Retrieving Statement SQL --** METHOD: sqlite3_stmt --** --** ^This interface can be used to retrieve a saved copy of the original --** SQL text used to create a [prepared statement] if that statement was --** compiled using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()]. -- function sqlite3_sql (pStmt : access sqlite3_stmt) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3361 pragma Import (C, sqlite3_sql, "sqlite3_sql"); --** CAPI3REF: Determine If An SQL Statement Writes The Database --** METHOD: sqlite3_stmt --** --** ^The sqlite3_stmt_readonly(X) interface returns true (non-zero) if --** and only if the [prepared statement] X makes no direct changes to --** the content of the database file. --** --** Note that [application-defined SQL functions] or --** [virtual tables] might change the database indirectly as a side effect. --** ^(For example, if an application defines a function "eval()" that --** calls [sqlite3_exec()], then the following SQL statement would --** change the database file through side-effects: --** --** <blockquote><pre> --** SELECT eval('DELETE FROM t1') FROM t2; --** </pre></blockquote> --** --** But because the [SELECT] statement does not change the database file --** directly, sqlite3_stmt_readonly() would still return true.)^ --** --** ^Transaction control statements such as [BEGIN], [COMMIT], [ROLLBACK], --** [SAVEPOINT], and [RELEASE] cause sqlite3_stmt_readonly() to return true, --** since the statements themselves do not actually modify the database but --** rather they control the timing of when other statements modify the --** database. ^The [ATTACH] and [DETACH] statements also cause --** sqlite3_stmt_readonly() to return true since, while those statements --** change the configuration of a database connection, they do not make --** changes to the content of the database files on disk. -- function sqlite3_stmt_readonly (pStmt : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:3393 pragma Import (C, sqlite3_stmt_readonly, "sqlite3_stmt_readonly"); --** CAPI3REF: Determine If A Prepared Statement Has Been Reset --** METHOD: sqlite3_stmt --** --** ^The sqlite3_stmt_busy(S) interface returns true (non-zero) if the --** [prepared statement] S has been stepped at least once using --** [sqlite3_step(S)] but has neither run to completion (returned --** [SQLITE_DONE] from [sqlite3_step(S)]) nor --** been reset using [sqlite3_reset(S)]. ^The sqlite3_stmt_busy(S) --** interface returns false if S is a NULL pointer. If S is not a --** NULL pointer and is not a pointer to a valid [prepared statement] --** object, then the behavior is undefined and probably undesirable. --** --** This interface can be used in combination [sqlite3_next_stmt()] --** to locate all prepared statements associated with a database --** connection that are in need of being reset. This can be used, --** for example, in diagnostic routines to search for prepared --** statements that are holding a transaction open. -- function sqlite3_stmt_busy (arg1 : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:3414 pragma Import (C, sqlite3_stmt_busy, "sqlite3_stmt_busy"); --** CAPI3REF: Dynamically Typed Value Object --** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value} --** --** SQLite uses the sqlite3_value object to represent all values --** that can be stored in a database table. SQLite uses dynamic typing --** for the values it stores. ^Values stored in sqlite3_value objects --** can be integers, floating point values, strings, BLOBs, or NULL. --** --** An sqlite3_value object may be either "protected" or "unprotected". --** Some interfaces require a protected sqlite3_value. Other interfaces --** will accept either a protected or an unprotected sqlite3_value. --** Every interface that accepts sqlite3_value arguments specifies --** whether or not it requires a protected sqlite3_value. The --** [sqlite3_value_dup()] interface can be used to construct a new --** protected sqlite3_value from an unprotected sqlite3_value. --** --** The terms "protected" and "unprotected" refer to whether or not --** a mutex is held. An internal mutex is held for a protected --** sqlite3_value object but no mutex is held for an unprotected --** sqlite3_value object. If SQLite is compiled to be single-threaded --** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0) --** or if SQLite is run in one of reduced mutex modes --** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD] --** then there is no distinction between protected and unprotected --** sqlite3_value objects and they can be used interchangeably. However, --** for maximum code portability it is recommended that applications --** still make the distinction between protected and unprotected --** sqlite3_value objects even when not strictly required. --** --** ^The sqlite3_value objects that are passed as parameters into the --** implementation of [application-defined SQL functions] are protected. --** ^The sqlite3_value object returned by --** [sqlite3_column_value()] is unprotected. --** Unprotected sqlite3_value objects may only be used with --** [sqlite3_result_value()] and [sqlite3_bind_value()]. --** The [sqlite3_value_blob | sqlite3_value_type()] family of --** interfaces require protected sqlite3_value objects. -- type Mem is null record; -- incomplete struct subtype sqlite3_value is Mem; -- /usr/include/sqlite3.h:3455 --** CAPI3REF: SQL Function Context Object --** --** The context in which an SQL function executes is stored in an --** sqlite3_context object. ^A pointer to an sqlite3_context object --** is always first parameter to [application-defined SQL functions]. --** The application-defined SQL function implementation will pass this --** pointer through into calls to [sqlite3_result_int | sqlite3_result()], --** [sqlite3_aggregate_context()], [sqlite3_user_data()], --** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()], --** and/or [sqlite3_set_auxdata()]. -- type sqlite3_context is null record; -- incomplete struct --** CAPI3REF: Binding Values To Prepared Statements --** KEYWORDS: {host parameter} {host parameters} {host parameter name} --** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding} --** METHOD: sqlite3_stmt --** --** ^(In the SQL statement text input to [sqlite3_prepare_v2()] and its variants, --** literals may be replaced by a [parameter] that matches one of following --** templates: --** --** <ul> --** <li> ? --** <li> ?NNN --** <li> :VVV --** <li> @VVV --** <li> $VVV --** </ul> --** --** In the templates above, NNN represents an integer literal, --** and VVV represents an alphanumeric identifier.)^ ^The values of these --** parameters (also called "host parameter names" or "SQL parameters") --** can be set using the sqlite3_bind_*() routines defined here. --** --** ^The first argument to the sqlite3_bind_*() routines is always --** a pointer to the [sqlite3_stmt] object returned from --** [sqlite3_prepare_v2()] or its variants. --** --** ^The second argument is the index of the SQL parameter to be set. --** ^The leftmost SQL parameter has an index of 1. ^When the same named --** SQL parameter is used more than once, second and subsequent --** occurrences have the same index as the first occurrence. --** ^The index for named parameters can be looked up using the --** [sqlite3_bind_parameter_index()] API if desired. ^The index --** for "?NNN" parameters is the value of NNN. --** ^The NNN value must be between 1 and the [sqlite3_limit()] --** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999). --** --** ^The third argument is the value to bind to the parameter. --** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16() --** or sqlite3_bind_blob() is a NULL pointer then the fourth parameter --** is ignored and the end result is the same as sqlite3_bind_null(). --** --** ^(In those routines that have a fourth argument, its value is the --** number of bytes in the parameter. To be clear: the value is the --** number of <u>bytes</u> in the value, not the number of characters.)^ --** ^If the fourth parameter to sqlite3_bind_text() or sqlite3_bind_text16() --** is negative, then the length of the string is --** the number of bytes up to the first zero terminator. --** If the fourth parameter to sqlite3_bind_blob() is negative, then --** the behavior is undefined. --** If a non-negative fourth parameter is provided to sqlite3_bind_text() --** or sqlite3_bind_text16() or sqlite3_bind_text64() then --** that parameter must be the byte offset --** where the NUL terminator would occur assuming the string were NUL --** terminated. If any NUL characters occur at byte offsets less than --** the value of the fourth parameter then the resulting string value will --** contain embedded NULs. The result of expressions involving strings --** with embedded NULs is undefined. --** --** ^The fifth argument to the BLOB and string binding interfaces --** is a destructor used to dispose of the BLOB or --** string after SQLite has finished with it. ^The destructor is called --** to dispose of the BLOB or string even if the call to bind API fails. --** ^If the fifth argument is --** the special value [SQLITE_STATIC], then SQLite assumes that the --** information is in static, unmanaged space and does not need to be freed. --** ^If the fifth argument has the value [SQLITE_TRANSIENT], then --** SQLite makes its own private copy of the data immediately, before --** the sqlite3_bind_*() routine returns. --** --** ^The sixth argument to sqlite3_bind_text64() must be one of --** [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE] --** to specify the encoding of the text in the third parameter. If --** the sixth argument to sqlite3_bind_text64() is not one of the --** allowed values shown above, or if the text encoding is different --** from the encoding specified by the sixth parameter, then the behavior --** is undefined. --** --** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N that --** is filled with zeroes. ^A zeroblob uses a fixed amount of memory --** (just an integer to hold its size) while it is being processed. --** Zeroblobs are intended to serve as placeholders for BLOBs whose --** content is later written using --** [sqlite3_blob_open | incremental BLOB I/O] routines. --** ^A negative value for the zeroblob results in a zero-length BLOB. --** --** ^If any of the sqlite3_bind_*() routines are called with a NULL pointer --** for the [prepared statement] or with a prepared statement for which --** [sqlite3_step()] has been called more recently than [sqlite3_reset()], --** then the call will return [SQLITE_MISUSE]. If any sqlite3_bind_() --** routine is passed a [prepared statement] that has been finalized, the --** result is undefined and probably harmful. --** --** ^Bindings are not cleared by the [sqlite3_reset()] routine. --** ^Unbound parameters are interpreted as NULL. --** --** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an --** [error code] if anything goes wrong. --** ^[SQLITE_TOOBIG] might be returned if the size of a string or BLOB --** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or --** [SQLITE_MAX_LENGTH]. --** ^[SQLITE_RANGE] is returned if the parameter --** index is out of range. ^[SQLITE_NOMEM] is returned if malloc() fails. --** --** See also: [sqlite3_bind_parameter_count()], --** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()]. -- function sqlite3_bind_blob (arg1 : access sqlite3_stmt; arg2 : int; arg3 : System.Address; n : int; arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:3578 pragma Import (C, sqlite3_bind_blob, "sqlite3_bind_blob"); function sqlite3_bind_blob64 (arg1 : access sqlite3_stmt; arg2 : int; arg3 : System.Address; arg4 : sqlite3_uint64; arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:3579 pragma Import (C, sqlite3_bind_blob64, "sqlite3_bind_blob64"); function sqlite3_bind_double (arg1 : access sqlite3_stmt; arg2 : int; arg3 : double) return int; -- /usr/include/sqlite3.h:3581 pragma Import (C, sqlite3_bind_double, "sqlite3_bind_double"); function sqlite3_bind_int (arg1 : access sqlite3_stmt; arg2 : int; arg3 : int) return int; -- /usr/include/sqlite3.h:3582 pragma Import (C, sqlite3_bind_int, "sqlite3_bind_int"); function sqlite3_bind_int64 (arg1 : access sqlite3_stmt; arg2 : int; arg3 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:3583 pragma Import (C, sqlite3_bind_int64, "sqlite3_bind_int64"); function sqlite3_bind_null (arg1 : access sqlite3_stmt; arg2 : int) return int; -- /usr/include/sqlite3.h:3584 pragma Import (C, sqlite3_bind_null, "sqlite3_bind_null"); function sqlite3_bind_text (arg1 : access sqlite3_stmt; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int; arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:3585 pragma Import (C, sqlite3_bind_text, "sqlite3_bind_text"); function sqlite3_bind_text16 (arg1 : access sqlite3_stmt; arg2 : int; arg3 : System.Address; arg4 : int; arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:3586 pragma Import (C, sqlite3_bind_text16, "sqlite3_bind_text16"); function sqlite3_bind_text64 (arg1 : access sqlite3_stmt; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : sqlite3_uint64; arg5 : access procedure (arg1 : System.Address); encoding : unsigned_char) return int; -- /usr/include/sqlite3.h:3587 pragma Import (C, sqlite3_bind_text64, "sqlite3_bind_text64"); function sqlite3_bind_value (arg1 : access sqlite3_stmt; arg2 : int; arg3 : access constant sqlite3_value) return int; -- /usr/include/sqlite3.h:3589 pragma Import (C, sqlite3_bind_value, "sqlite3_bind_value"); function sqlite3_bind_zeroblob (arg1 : access sqlite3_stmt; arg2 : int; n : int) return int; -- /usr/include/sqlite3.h:3590 pragma Import (C, sqlite3_bind_zeroblob, "sqlite3_bind_zeroblob"); function sqlite3_bind_zeroblob64 (arg1 : access sqlite3_stmt; arg2 : int; arg3 : sqlite3_uint64) return int; -- /usr/include/sqlite3.h:3591 pragma Import (C, sqlite3_bind_zeroblob64, "sqlite3_bind_zeroblob64"); --** CAPI3REF: Number Of SQL Parameters --** METHOD: sqlite3_stmt --** --** ^This routine can be used to find the number of [SQL parameters] --** in a [prepared statement]. SQL parameters are tokens of the --** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as --** placeholders for values that are [sqlite3_bind_blob | bound] --** to the parameters at a later time. --** --** ^(This routine actually returns the index of the largest (rightmost) --** parameter. For all forms except ?NNN, this will correspond to the --** number of unique parameters. If parameters of the ?NNN form are used, --** there may be gaps in the list.)^ --** --** See also: [sqlite3_bind_blob|sqlite3_bind()], --** [sqlite3_bind_parameter_name()], and --** [sqlite3_bind_parameter_index()]. -- function sqlite3_bind_parameter_count (arg1 : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:3612 pragma Import (C, sqlite3_bind_parameter_count, "sqlite3_bind_parameter_count"); --** CAPI3REF: Name Of A Host Parameter --** METHOD: sqlite3_stmt --** --** ^The sqlite3_bind_parameter_name(P,N) interface returns --** the name of the N-th [SQL parameter] in the [prepared statement] P. --** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA" --** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA" --** respectively. --** In other words, the initial ":" or "$" or "@" or "?" --** is included as part of the name.)^ --** ^Parameters of the form "?" without a following integer have no name --** and are referred to as "nameless" or "anonymous parameters". --** --** ^The first host parameter has an index of 1, not 0. --** --** ^If the value N is out of range or if the N-th parameter is --** nameless, then NULL is returned. ^The returned string is --** always in UTF-8 encoding even if the named parameter was --** originally specified as UTF-16 in [sqlite3_prepare16()] or --** [sqlite3_prepare16_v2()]. --** --** See also: [sqlite3_bind_blob|sqlite3_bind()], --** [sqlite3_bind_parameter_count()], and --** [sqlite3_bind_parameter_index()]. -- function sqlite3_bind_parameter_name (arg1 : access sqlite3_stmt; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3640 pragma Import (C, sqlite3_bind_parameter_name, "sqlite3_bind_parameter_name"); --** CAPI3REF: Index Of A Parameter With A Given Name --** METHOD: sqlite3_stmt --** --** ^Return the index of an SQL parameter given its name. ^The --** index value returned is suitable for use as the second --** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero --** is returned if no matching parameter is found. ^The parameter --** name must be given in UTF-8 even if the original statement --** was prepared from UTF-16 text using [sqlite3_prepare16_v2()]. --** --** See also: [sqlite3_bind_blob|sqlite3_bind()], --** [sqlite3_bind_parameter_count()], and --** [sqlite3_bind_parameter_name()]. -- function sqlite3_bind_parameter_index (arg1 : access sqlite3_stmt; zName : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:3657 pragma Import (C, sqlite3_bind_parameter_index, "sqlite3_bind_parameter_index"); --** CAPI3REF: Reset All Bindings On A Prepared Statement --** METHOD: sqlite3_stmt --** --** ^Contrary to the intuition of many, [sqlite3_reset()] does not reset --** the [sqlite3_bind_blob | bindings] on a [prepared statement]. --** ^Use this routine to reset all host parameters to NULL. -- function sqlite3_clear_bindings (arg1 : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:3667 pragma Import (C, sqlite3_clear_bindings, "sqlite3_clear_bindings"); --** CAPI3REF: Number Of Columns In A Result Set --** METHOD: sqlite3_stmt --** --** ^Return the number of columns in the result set returned by the --** [prepared statement]. ^This routine returns 0 if pStmt is an SQL --** statement that does not return data (for example an [UPDATE]). --** --** See also: [sqlite3_data_count()] -- function sqlite3_column_count (pStmt : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:3679 pragma Import (C, sqlite3_column_count, "sqlite3_column_count"); --** CAPI3REF: Column Names In A Result Set --** METHOD: sqlite3_stmt --** --** ^These routines return the name assigned to a particular column --** in the result set of a [SELECT] statement. ^The sqlite3_column_name() --** interface returns a pointer to a zero-terminated UTF-8 string --** and sqlite3_column_name16() returns a pointer to a zero-terminated --** UTF-16 string. ^The first parameter is the [prepared statement] --** that implements the [SELECT] statement. ^The second parameter is the --** column number. ^The leftmost column is number 0. --** --** ^The returned string pointer is valid until either the [prepared statement] --** is destroyed by [sqlite3_finalize()] or until the statement is automatically --** reprepared by the first call to [sqlite3_step()] for a particular run --** or until the next call to --** sqlite3_column_name() or sqlite3_column_name16() on the same column. --** --** ^If sqlite3_malloc() fails during the processing of either routine --** (for example during a conversion from UTF-8 to UTF-16) then a --** NULL pointer is returned. --** --** ^The name of a result column is the value of the "AS" clause for --** that column, if there is an AS clause. If there is no AS clause --** then the name of the column is unspecified and may change from --** one release of SQLite to the next. -- function sqlite3_column_name (arg1 : access sqlite3_stmt; N : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3708 pragma Import (C, sqlite3_column_name, "sqlite3_column_name"); function sqlite3_column_name16 (arg1 : access sqlite3_stmt; N : int) return System.Address; -- /usr/include/sqlite3.h:3709 pragma Import (C, sqlite3_column_name16, "sqlite3_column_name16"); --** CAPI3REF: Source Of Data In A Query Result --** METHOD: sqlite3_stmt --** --** ^These routines provide a means to determine the database, table, and --** table column that is the origin of a particular result column in --** [SELECT] statement. --** ^The name of the database or table or column can be returned as --** either a UTF-8 or UTF-16 string. ^The _database_ routines return --** the database name, the _table_ routines return the table name, and --** the origin_ routines return the column name. --** ^The returned string is valid until the [prepared statement] is destroyed --** using [sqlite3_finalize()] or until the statement is automatically --** reprepared by the first call to [sqlite3_step()] for a particular run --** or until the same information is requested --** again in a different encoding. --** --** ^The names returned are the original un-aliased names of the --** database, table, and column. --** --** ^The first argument to these interfaces is a [prepared statement]. --** ^These functions return information about the Nth result column returned by --** the statement, where N is the second function argument. --** ^The left-most column is column 0 for these routines. --** --** ^If the Nth column returned by the statement is an expression or --** subquery and is not a column value, then all of these functions return --** NULL. ^These routine might also return NULL if a memory allocation error --** occurs. ^Otherwise, they return the name of the attached database, table, --** or column that query result column was extracted from. --** --** ^As with all other SQLite APIs, those whose names end with "16" return --** UTF-16 encoded strings and the other functions return UTF-8. --** --** ^These APIs are only available if the library was compiled with the --** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol. --** --** If two or more threads call one or more of these routines against the same --** prepared statement and column at the same time then the results are --** undefined. --** --** If two or more threads call one or more --** [sqlite3_column_database_name | column metadata interfaces] --** for the same [prepared statement] and result column --** at the same time then the results are undefined. -- function sqlite3_column_database_name (arg1 : access sqlite3_stmt; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3757 pragma Import (C, sqlite3_column_database_name, "sqlite3_column_database_name"); function sqlite3_column_database_name16 (arg1 : access sqlite3_stmt; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3758 pragma Import (C, sqlite3_column_database_name16, "sqlite3_column_database_name16"); function sqlite3_column_table_name (arg1 : access sqlite3_stmt; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3759 pragma Import (C, sqlite3_column_table_name, "sqlite3_column_table_name"); function sqlite3_column_table_name16 (arg1 : access sqlite3_stmt; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3760 pragma Import (C, sqlite3_column_table_name16, "sqlite3_column_table_name16"); function sqlite3_column_origin_name (arg1 : access sqlite3_stmt; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3761 pragma Import (C, sqlite3_column_origin_name, "sqlite3_column_origin_name"); function sqlite3_column_origin_name16 (arg1 : access sqlite3_stmt; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3762 pragma Import (C, sqlite3_column_origin_name16, "sqlite3_column_origin_name16"); --** CAPI3REF: Declared Datatype Of A Query Result --** METHOD: sqlite3_stmt --** --** ^(The first parameter is a [prepared statement]. --** If this statement is a [SELECT] statement and the Nth column of the --** returned result set of that [SELECT] is a table column (not an --** expression or subquery) then the declared type of the table --** column is returned.)^ ^If the Nth column of the result set is an --** expression or subquery, then a NULL pointer is returned. --** ^The returned string is always UTF-8 encoded. --** --** ^(For example, given the database schema: --** --** CREATE TABLE t1(c1 VARIANT); --** --** and the following statement to be compiled: --** --** SELECT c1 + 1, c1 FROM t1; --** --** this routine would return the string "VARIANT" for the second result --** column (i==1), and a NULL pointer for the first result column (i==0).)^ --** --** ^SQLite uses dynamic run-time typing. ^So just because a column --** is declared to contain a particular type does not mean that the --** data stored in that column is of the declared type. SQLite is --** strongly typed, but the typing is dynamic not static. ^Type --** is associated with individual values, not with the containers --** used to hold those values. -- function sqlite3_column_decltype (arg1 : access sqlite3_stmt; arg2 : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:3794 pragma Import (C, sqlite3_column_decltype, "sqlite3_column_decltype"); function sqlite3_column_decltype16 (arg1 : access sqlite3_stmt; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:3795 pragma Import (C, sqlite3_column_decltype16, "sqlite3_column_decltype16"); --** CAPI3REF: Evaluate An SQL Statement --** METHOD: sqlite3_stmt --** --** After a [prepared statement] has been prepared using either --** [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] or one of the legacy --** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function --** must be called one or more times to evaluate the statement. --** --** The details of the behavior of the sqlite3_step() interface depend --** on whether the statement was prepared using the newer "v2" interface --** [sqlite3_prepare_v2()] and [sqlite3_prepare16_v2()] or the older legacy --** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the --** new "v2" interface is recommended for new applications but the legacy --** interface will continue to be supported. --** --** ^In the legacy interface, the return value will be either [SQLITE_BUSY], --** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE]. --** ^With the "v2" interface, any of the other [result codes] or --** [extended result codes] might be returned as well. --** --** ^[SQLITE_BUSY] means that the database engine was unable to acquire the --** database locks it needs to do its job. ^If the statement is a [COMMIT] --** or occurs outside of an explicit transaction, then you can retry the --** statement. If the statement is not a [COMMIT] and occurs within an --** explicit transaction then you should rollback the transaction before --** continuing. --** --** ^[SQLITE_DONE] means that the statement has finished executing --** successfully. sqlite3_step() should not be called again on this virtual --** machine without first calling [sqlite3_reset()] to reset the virtual --** machine back to its initial state. --** --** ^If the SQL statement being executed returns any data, then [SQLITE_ROW] --** is returned each time a new row of data is ready for processing by the --** caller. The values may be accessed using the [column access functions]. --** sqlite3_step() is called again to retrieve the next row of data. --** --** ^[SQLITE_ERROR] means that a run-time error (such as a constraint --** violation) has occurred. sqlite3_step() should not be called again on --** the VM. More information may be found by calling [sqlite3_errmsg()]. --** ^With the legacy interface, a more specific error code (for example, --** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth) --** can be obtained by calling [sqlite3_reset()] on the --** [prepared statement]. ^In the "v2" interface, --** the more specific error code is returned directly by sqlite3_step(). --** --** [SQLITE_MISUSE] means that the this routine was called inappropriately. --** Perhaps it was called on a [prepared statement] that has --** already been [sqlite3_finalize | finalized] or on one that had --** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could --** be the case that the same database connection is being used by two or --** more threads at the same moment in time. --** --** For all versions of SQLite up to and including 3.6.23.1, a call to --** [sqlite3_reset()] was required after sqlite3_step() returned anything --** other than [SQLITE_ROW] before any subsequent invocation of --** sqlite3_step(). Failure to reset the prepared statement using --** [sqlite3_reset()] would result in an [SQLITE_MISUSE] return from --** sqlite3_step(). But after version 3.6.23.1, sqlite3_step() began --** calling [sqlite3_reset()] automatically in this circumstance rather --** than returning [SQLITE_MISUSE]. This is not considered a compatibility --** break because any application that ever receives an SQLITE_MISUSE error --** is broken by definition. The [SQLITE_OMIT_AUTORESET] compile-time option --** can be used to restore the legacy behavior. --** --** <b>Goofy Interface Alert:</b> In the legacy interface, the sqlite3_step() --** API always returns a generic error code, [SQLITE_ERROR], following any --** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call --** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the --** specific [error codes] that better describes the error. --** We admit that this is a goofy design. The problem has been fixed --** with the "v2" interface. If you prepare all of your SQL statements --** using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] instead --** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces, --** then the more specific [error codes] are returned directly --** by sqlite3_step(). The use of the "v2" interface is recommended. -- function sqlite3_step (arg1 : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:3875 pragma Import (C, sqlite3_step, "sqlite3_step"); --** CAPI3REF: Number of columns in a result set --** METHOD: sqlite3_stmt --** --** ^The sqlite3_data_count(P) interface returns the number of columns in the --** current row of the result set of [prepared statement] P. --** ^If prepared statement P does not have results ready to return --** (via calls to the [sqlite3_column_int | sqlite3_column_*()] of --** interfaces) then sqlite3_data_count(P) returns 0. --** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer. --** ^The sqlite3_data_count(P) routine returns 0 if the previous call to --** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P) --** will return non-zero if previous call to [sqlite3_step](P) returned --** [SQLITE_ROW], except in the case of the [PRAGMA incremental_vacuum] --** where it always returns zero since each step of that multi-step --** pragma returns 0 columns of data. --** --** See also: [sqlite3_column_count()] -- function sqlite3_data_count (pStmt : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:3896 pragma Import (C, sqlite3_data_count, "sqlite3_data_count"); --** CAPI3REF: Fundamental Datatypes --** KEYWORDS: SQLITE_TEXT --** --** ^(Every value in SQLite has one of five fundamental datatypes: --** --** <ul> --** <li> 64-bit signed integer --** <li> 64-bit IEEE floating point number --** <li> string --** <li> BLOB --** <li> NULL --** </ul>)^ --** --** These constants are codes for each of those types. --** --** Note that the SQLITE_TEXT constant was also used in SQLite version 2 --** for a completely different meaning. Software that links against both --** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not --** SQLITE_TEXT. -- --** CAPI3REF: Result Values From A Query --** KEYWORDS: {column access functions} --** METHOD: sqlite3_stmt --** --** ^These routines return information about a single column of the current --** result row of a query. ^In every case the first argument is a pointer --** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*] --** that was returned from [sqlite3_prepare_v2()] or one of its variants) --** and the second argument is the index of the column for which information --** should be returned. ^The leftmost column of the result set has the index 0. --** ^The number of columns in the result can be determined using --** [sqlite3_column_count()]. --** --** If the SQL statement does not currently point to a valid row, or if the --** column index is out of range, the result is undefined. --** These routines may only be called when the most recent call to --** [sqlite3_step()] has returned [SQLITE_ROW] and neither --** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently. --** If any of these routines are called after [sqlite3_reset()] or --** [sqlite3_finalize()] or after [sqlite3_step()] has returned --** something other than [SQLITE_ROW], the results are undefined. --** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()] --** are called from a different thread while any of these routines --** are pending, then the results are undefined. --** --** ^The sqlite3_column_type() routine returns the --** [SQLITE_INTEGER | datatype code] for the initial data type --** of the result column. ^The returned value is one of [SQLITE_INTEGER], --** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL]. The value --** returned by sqlite3_column_type() is only meaningful if no type --** conversions have occurred as described below. After a type conversion, --** the value returned by sqlite3_column_type() is undefined. Future --** versions of SQLite may change the behavior of sqlite3_column_type() --** following a type conversion. --** --** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes() --** routine returns the number of bytes in that BLOB or string. --** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts --** the string to UTF-8 and then returns the number of bytes. --** ^If the result is a numeric value then sqlite3_column_bytes() uses --** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns --** the number of bytes in that string. --** ^If the result is NULL, then sqlite3_column_bytes() returns zero. --** --** ^If the result is a BLOB or UTF-16 string then the sqlite3_column_bytes16() --** routine returns the number of bytes in that BLOB or string. --** ^If the result is a UTF-8 string, then sqlite3_column_bytes16() converts --** the string to UTF-16 and then returns the number of bytes. --** ^If the result is a numeric value then sqlite3_column_bytes16() uses --** [sqlite3_snprintf()] to convert that value to a UTF-16 string and returns --** the number of bytes in that string. --** ^If the result is NULL, then sqlite3_column_bytes16() returns zero. --** --** ^The values returned by [sqlite3_column_bytes()] and --** [sqlite3_column_bytes16()] do not include the zero terminators at the end --** of the string. ^For clarity: the values returned by --** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of --** bytes in the string, not the number of characters. --** --** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(), --** even empty strings, are always zero-terminated. ^The return --** value from sqlite3_column_blob() for a zero-length BLOB is a NULL pointer. --** --** <b>Warning:</b> ^The object returned by [sqlite3_column_value()] is an --** [unprotected sqlite3_value] object. In a multithreaded environment, --** an unprotected sqlite3_value object may only be used safely with --** [sqlite3_bind_value()] and [sqlite3_result_value()]. --** If the [unprotected sqlite3_value] object returned by --** [sqlite3_column_value()] is used in any other way, including calls --** to routines like [sqlite3_value_int()], [sqlite3_value_text()], --** or [sqlite3_value_bytes()], the behavior is not threadsafe. --** --** These routines attempt to convert the value where appropriate. ^For --** example, if the internal representation is FLOAT and a text result --** is requested, [sqlite3_snprintf()] is used internally to perform the --** conversion automatically. ^(The following table details the conversions --** that are applied: --** --** <blockquote> --** <table border="1"> --** <tr><th> Internal<br>Type <th> Requested<br>Type <th> Conversion --** --** <tr><td> NULL <td> INTEGER <td> Result is 0 --** <tr><td> NULL <td> FLOAT <td> Result is 0.0 --** <tr><td> NULL <td> TEXT <td> Result is a NULL pointer --** <tr><td> NULL <td> BLOB <td> Result is a NULL pointer --** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float --** <tr><td> INTEGER <td> TEXT <td> ASCII rendering of the integer --** <tr><td> INTEGER <td> BLOB <td> Same as INTEGER->TEXT --** <tr><td> FLOAT <td> INTEGER <td> [CAST] to INTEGER --** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float --** <tr><td> FLOAT <td> BLOB <td> [CAST] to BLOB --** <tr><td> TEXT <td> INTEGER <td> [CAST] to INTEGER --** <tr><td> TEXT <td> FLOAT <td> [CAST] to REAL --** <tr><td> TEXT <td> BLOB <td> No change --** <tr><td> BLOB <td> INTEGER <td> [CAST] to INTEGER --** <tr><td> BLOB <td> FLOAT <td> [CAST] to REAL --** <tr><td> BLOB <td> TEXT <td> Add a zero terminator if needed --** </table> --** </blockquote>)^ --** --** Note that when type conversions occur, pointers returned by prior --** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or --** sqlite3_column_text16() may be invalidated. --** Type conversions and pointer invalidations might occur --** in the following cases: --** --** <ul> --** <li> The initial content is a BLOB and sqlite3_column_text() or --** sqlite3_column_text16() is called. A zero-terminator might --** need to be added to the string.</li> --** <li> The initial content is UTF-8 text and sqlite3_column_bytes16() or --** sqlite3_column_text16() is called. The content must be converted --** to UTF-16.</li> --** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or --** sqlite3_column_text() is called. The content must be converted --** to UTF-8.</li> --** </ul> --** --** ^Conversions between UTF-16be and UTF-16le are always done in place and do --** not invalidate a prior pointer, though of course the content of the buffer --** that the prior pointer references will have been modified. Other kinds --** of conversion are done in place when it is possible, but sometimes they --** are not possible and in those cases prior pointers are invalidated. --** --** The safest policy is to invoke these routines --** in one of the following ways: --** --** <ul> --** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li> --** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li> --** <li>sqlite3_column_text16() followed by sqlite3_column_bytes16()</li> --** </ul> --** --** In other words, you should call sqlite3_column_text(), --** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result --** into the desired format, then invoke sqlite3_column_bytes() or --** sqlite3_column_bytes16() to find the size of the result. Do not mix calls --** to sqlite3_column_text() or sqlite3_column_blob() with calls to --** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16() --** with calls to sqlite3_column_bytes(). --** --** ^The pointers returned are valid until a type conversion occurs as --** described above, or until [sqlite3_step()] or [sqlite3_reset()] or --** [sqlite3_finalize()] is called. ^The memory space used to hold strings --** and BLOBs is freed automatically. Do <em>not</em> pass the pointers returned --** from [sqlite3_column_blob()], [sqlite3_column_text()], etc. into --** [sqlite3_free()]. --** --** ^(If a memory allocation error occurs during the evaluation of any --** of these routines, a default value is returned. The default value --** is either the integer 0, the floating point number 0.0, or a NULL --** pointer. Subsequent calls to [sqlite3_errcode()] will return --** [SQLITE_NOMEM].)^ -- function sqlite3_column_blob (arg1 : access sqlite3_stmt; iCol : int) return System.Address; -- /usr/include/sqlite3.h:4086 pragma Import (C, sqlite3_column_blob, "sqlite3_column_blob"); function sqlite3_column_bytes (arg1 : access sqlite3_stmt; iCol : int) return int; -- /usr/include/sqlite3.h:4087 pragma Import (C, sqlite3_column_bytes, "sqlite3_column_bytes"); function sqlite3_column_bytes16 (arg1 : access sqlite3_stmt; iCol : int) return int; -- /usr/include/sqlite3.h:4088 pragma Import (C, sqlite3_column_bytes16, "sqlite3_column_bytes16"); function sqlite3_column_double (arg1 : access sqlite3_stmt; iCol : int) return double; -- /usr/include/sqlite3.h:4089 pragma Import (C, sqlite3_column_double, "sqlite3_column_double"); function sqlite3_column_int (arg1 : access sqlite3_stmt; iCol : int) return int; -- /usr/include/sqlite3.h:4090 pragma Import (C, sqlite3_column_int, "sqlite3_column_int"); function sqlite3_column_int64 (arg1 : access sqlite3_stmt; iCol : int) return sqlite3_int64; -- /usr/include/sqlite3.h:4091 pragma Import (C, sqlite3_column_int64, "sqlite3_column_int64"); function sqlite3_column_text (arg1 : access sqlite3_stmt; iCol : int) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:4092 pragma Import (C, sqlite3_column_text, "sqlite3_column_text"); function sqlite3_column_text16 (arg1 : access sqlite3_stmt; iCol : int) return System.Address; -- /usr/include/sqlite3.h:4093 pragma Import (C, sqlite3_column_text16, "sqlite3_column_text16"); function sqlite3_column_type (arg1 : access sqlite3_stmt; iCol : int) return int; -- /usr/include/sqlite3.h:4094 pragma Import (C, sqlite3_column_type, "sqlite3_column_type"); function sqlite3_column_value (arg1 : access sqlite3_stmt; iCol : int) return access sqlite3_value; -- /usr/include/sqlite3.h:4095 pragma Import (C, sqlite3_column_value, "sqlite3_column_value"); --** CAPI3REF: Destroy A Prepared Statement Object --** DESTRUCTOR: sqlite3_stmt --** --** ^The sqlite3_finalize() function is called to delete a [prepared statement]. --** ^If the most recent evaluation of the statement encountered no errors --** or if the statement is never been evaluated, then sqlite3_finalize() returns --** SQLITE_OK. ^If the most recent evaluation of statement S failed, then --** sqlite3_finalize(S) returns the appropriate [error code] or --** [extended error code]. --** --** ^The sqlite3_finalize(S) routine can be called at any point during --** the life cycle of [prepared statement] S: --** before statement S is ever evaluated, after --** one or more calls to [sqlite3_reset()], or after any call --** to [sqlite3_step()] regardless of whether or not the statement has --** completed execution. --** --** ^Invoking sqlite3_finalize() on a NULL pointer is a harmless no-op. --** --** The application must finalize every [prepared statement] in order to avoid --** resource leaks. It is a grievous error for the application to try to use --** a prepared statement after it has been finalized. Any use of a prepared --** statement after it has been finalized can result in undefined and --** undesirable behavior such as segfaults and heap corruption. -- function sqlite3_finalize (pStmt : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:4123 pragma Import (C, sqlite3_finalize, "sqlite3_finalize"); --** CAPI3REF: Reset A Prepared Statement Object --** METHOD: sqlite3_stmt --** --** The sqlite3_reset() function is called to reset a [prepared statement] --** object back to its initial state, ready to be re-executed. --** ^Any SQL statement variables that had values bound to them using --** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values. --** Use [sqlite3_clear_bindings()] to reset the bindings. --** --** ^The [sqlite3_reset(S)] interface resets the [prepared statement] S --** back to the beginning of its program. --** --** ^If the most recent call to [sqlite3_step(S)] for the --** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE], --** or if [sqlite3_step(S)] has never before been called on S, --** then [sqlite3_reset(S)] returns [SQLITE_OK]. --** --** ^If the most recent call to [sqlite3_step(S)] for the --** [prepared statement] S indicated an error, then --** [sqlite3_reset(S)] returns an appropriate [error code]. --** --** ^The [sqlite3_reset(S)] interface does not change the values --** of any [sqlite3_bind_blob|bindings] on the [prepared statement] S. -- function sqlite3_reset (pStmt : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:4150 pragma Import (C, sqlite3_reset, "sqlite3_reset"); --** CAPI3REF: Create Or Redefine SQL Functions --** KEYWORDS: {function creation routines} --** KEYWORDS: {application-defined SQL function} --** KEYWORDS: {application-defined SQL functions} --** METHOD: sqlite3 --** --** ^These functions (collectively known as "function creation routines") --** are used to add SQL functions or aggregates or to redefine the behavior --** of existing SQL functions or aggregates. The only differences between --** these routines are the text encoding expected for --** the second parameter (the name of the function being created) --** and the presence or absence of a destructor callback for --** the application data pointer. --** --** ^The first parameter is the [database connection] to which the SQL --** function is to be added. ^If an application uses more than one database --** connection then application-defined SQL functions must be added --** to each database connection separately. --** --** ^The second parameter is the name of the SQL function to be created or --** redefined. ^The length of the name is limited to 255 bytes in a UTF-8 --** representation, exclusive of the zero-terminator. ^Note that the name --** length limit is in UTF-8 bytes, not characters nor UTF-16 bytes. --** ^Any attempt to create a function with a longer name --** will result in [SQLITE_MISUSE] being returned. --** --** ^The third parameter (nArg) --** is the number of arguments that the SQL function or --** aggregate takes. ^If this parameter is -1, then the SQL function or --** aggregate may take any number of arguments between 0 and the limit --** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third --** parameter is less than -1 or greater than 127 then the behavior is --** undefined. --** --** ^The fourth parameter, eTextRep, specifies what --** [SQLITE_UTF8 | text encoding] this SQL function prefers for --** its parameters. The application should set this parameter to --** [SQLITE_UTF16LE] if the function implementation invokes --** [sqlite3_value_text16le()] on an input, or [SQLITE_UTF16BE] if the --** implementation invokes [sqlite3_value_text16be()] on an input, or --** [SQLITE_UTF16] if [sqlite3_value_text16()] is used, or [SQLITE_UTF8] --** otherwise. ^The same SQL function may be registered multiple times using --** different preferred text encodings, with different implementations for --** each encoding. --** ^When multiple implementations of the same function are available, SQLite --** will pick the one that involves the least amount of data conversion. --** --** ^The fourth parameter may optionally be ORed with [SQLITE_DETERMINISTIC] --** to signal that the function will always return the same result given --** the same inputs within a single SQL statement. Most SQL functions are --** deterministic. The built-in [random()] SQL function is an example of a --** function that is not deterministic. The SQLite query planner is able to --** perform additional optimizations on deterministic functions, so use --** of the [SQLITE_DETERMINISTIC] flag is recommended where possible. --** --** ^(The fifth parameter is an arbitrary pointer. The implementation of the --** function can gain access to this pointer using [sqlite3_user_data()].)^ --** --** ^The sixth, seventh and eighth parameters, xFunc, xStep and xFinal, are --** pointers to C-language functions that implement the SQL function or --** aggregate. ^A scalar SQL function requires an implementation of the xFunc --** callback only; NULL pointers must be passed as the xStep and xFinal --** parameters. ^An aggregate SQL function requires an implementation of xStep --** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing --** SQL function or aggregate, pass NULL pointers for all three function --** callbacks. --** --** ^(If the ninth parameter to sqlite3_create_function_v2() is not NULL, --** then it is destructor for the application data pointer. --** The destructor is invoked when the function is deleted, either by being --** overloaded or when the database connection closes.)^ --** ^The destructor is also invoked if the call to --** sqlite3_create_function_v2() fails. --** ^When the destructor callback of the tenth parameter is invoked, it --** is passed a single argument which is a copy of the application data --** pointer which was the fifth parameter to sqlite3_create_function_v2(). --** --** ^It is permitted to register multiple implementations of the same --** functions with the same name but with either differing numbers of --** arguments or differing preferred text encodings. ^SQLite will use --** the implementation that most closely matches the way in which the --** SQL function is used. ^A function implementation with a non-negative --** nArg parameter is a better match than a function implementation with --** a negative nArg. ^A function where the preferred text encoding --** matches the database encoding is a better --** match than a function where the encoding is different. --** ^A function where the encoding difference is between UTF16le and UTF16be --** is a closer match than a function where the encoding difference is --** between UTF8 and UTF16. --** --** ^Built-in functions may be overloaded by new application-defined functions. --** --** ^An application-defined function is permitted to call other --** SQLite interfaces. However, such calls must not --** close the database connection nor finalize or reset the prepared --** statement in which the function is running. -- function sqlite3_create_function (db : access sqlite3; zFunctionName : Interfaces.C.Strings.chars_ptr; nArg : int; eTextRep : int; pApp : System.Address; xFunc : access procedure (arg1 : access sqlite3_context; arg2 : int; arg3 : System.Address); xStep : access procedure (arg1 : access sqlite3_context; arg2 : int; arg3 : System.Address); xFinal : access procedure (arg1 : access sqlite3_context)) return int; -- /usr/include/sqlite3.h:4250 pragma Import (C, sqlite3_create_function, "sqlite3_create_function"); function sqlite3_create_function16 (db : access sqlite3; zFunctionName : System.Address; nArg : int; eTextRep : int; pApp : System.Address; xFunc : access procedure (arg1 : access sqlite3_context; arg2 : int; arg3 : System.Address); xStep : access procedure (arg1 : access sqlite3_context; arg2 : int; arg3 : System.Address); xFinal : access procedure (arg1 : access sqlite3_context)) return int; -- /usr/include/sqlite3.h:4260 pragma Import (C, sqlite3_create_function16, "sqlite3_create_function16"); function sqlite3_create_function_v2 (db : access sqlite3; zFunctionName : Interfaces.C.Strings.chars_ptr; nArg : int; eTextRep : int; pApp : System.Address; xFunc : access procedure (arg1 : access sqlite3_context; arg2 : int; arg3 : System.Address); xStep : access procedure (arg1 : access sqlite3_context; arg2 : int; arg3 : System.Address); xFinal : access procedure (arg1 : access sqlite3_context); xDestroy : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:4270 pragma Import (C, sqlite3_create_function_v2, "sqlite3_create_function_v2"); --** CAPI3REF: Text Encodings --** --** These constant define integer codes that represent the various --** text encodings supported by SQLite. -- --** CAPI3REF: Function Flags --** --** These constants may be ORed together with the --** [SQLITE_UTF8 | preferred text encoding] as the fourth argument --** to [sqlite3_create_function()], [sqlite3_create_function16()], or --** [sqlite3_create_function_v2()]. -- --** CAPI3REF: Deprecated Functions --** DEPRECATED --** --** These functions are [deprecated]. In order to maintain --** backwards compatibility with older code, these functions continue --** to be supported. However, new applications should avoid --** the use of these functions. To encourage programmers to avoid --** these functions, we will not explain what they do. -- function sqlite3_aggregate_count (arg1 : access sqlite3_context) return int; -- /usr/include/sqlite3.h:4316 pragma Import (C, sqlite3_aggregate_count, "sqlite3_aggregate_count"); function sqlite3_expired (arg1 : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:4317 pragma Import (C, sqlite3_expired, "sqlite3_expired"); function sqlite3_transfer_bindings (arg1 : access sqlite3_stmt; arg2 : access sqlite3_stmt) return int; -- /usr/include/sqlite3.h:4318 pragma Import (C, sqlite3_transfer_bindings, "sqlite3_transfer_bindings"); function sqlite3_global_recover return int; -- /usr/include/sqlite3.h:4319 pragma Import (C, sqlite3_global_recover, "sqlite3_global_recover"); procedure sqlite3_thread_cleanup; -- /usr/include/sqlite3.h:4320 pragma Import (C, sqlite3_thread_cleanup, "sqlite3_thread_cleanup"); function sqlite3_memory_alarm (arg1 : access procedure (arg1 : System.Address; arg2 : sqlite3_int64; arg3 : int); arg2 : System.Address; arg3 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:4321 pragma Import (C, sqlite3_memory_alarm, "sqlite3_memory_alarm"); --** CAPI3REF: Obtaining SQL Values --** METHOD: sqlite3_value --** --** The C-language implementation of SQL functions and aggregates uses --** this set of interface routines to access the parameter values on --** the function or aggregate. --** --** The xFunc (for scalar functions) or xStep (for aggregates) parameters --** to [sqlite3_create_function()] and [sqlite3_create_function16()] --** define callbacks that implement the SQL functions and aggregates. --** The 3rd parameter to these callbacks is an array of pointers to --** [protected sqlite3_value] objects. There is one [sqlite3_value] object for --** each parameter to the SQL function. These routines are used to --** extract values from the [sqlite3_value] objects. --** --** These routines work only with [protected sqlite3_value] objects. --** Any attempt to use these routines on an [unprotected sqlite3_value] --** object results in undefined behavior. --** --** ^These routines work just like the corresponding [column access functions] --** except that these routines take a single [protected sqlite3_value] object --** pointer instead of a [sqlite3_stmt*] pointer and an integer column number. --** --** ^The sqlite3_value_text16() interface extracts a UTF-16 string --** in the native byte-order of the host machine. ^The --** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces --** extract UTF-16 strings as big-endian and little-endian respectively. --** --** ^(The sqlite3_value_numeric_type() interface attempts to apply --** numeric affinity to the value. This means that an attempt is --** made to convert the value to an integer or floating point. If --** such a conversion is possible without loss of information (in other --** words, if the value is a string that looks like a number) --** then the conversion is performed. Otherwise no conversion occurs. --** The [SQLITE_INTEGER | datatype] after conversion is returned.)^ --** --** Please pay particular attention to the fact that the pointer returned --** from [sqlite3_value_blob()], [sqlite3_value_text()], or --** [sqlite3_value_text16()] can be invalidated by a subsequent call to --** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()], --** or [sqlite3_value_text16()]. --** --** These routines must be called from the same thread as --** the SQL function that supplied the [sqlite3_value*] parameters. -- function sqlite3_value_blob (arg1 : access sqlite3_value) return System.Address; -- /usr/include/sqlite3.h:4371 pragma Import (C, sqlite3_value_blob, "sqlite3_value_blob"); function sqlite3_value_bytes (arg1 : access sqlite3_value) return int; -- /usr/include/sqlite3.h:4372 pragma Import (C, sqlite3_value_bytes, "sqlite3_value_bytes"); function sqlite3_value_bytes16 (arg1 : access sqlite3_value) return int; -- /usr/include/sqlite3.h:4373 pragma Import (C, sqlite3_value_bytes16, "sqlite3_value_bytes16"); function sqlite3_value_double (arg1 : access sqlite3_value) return double; -- /usr/include/sqlite3.h:4374 pragma Import (C, sqlite3_value_double, "sqlite3_value_double"); function sqlite3_value_int (arg1 : access sqlite3_value) return int; -- /usr/include/sqlite3.h:4375 pragma Import (C, sqlite3_value_int, "sqlite3_value_int"); function sqlite3_value_int64 (arg1 : access sqlite3_value) return sqlite3_int64; -- /usr/include/sqlite3.h:4376 pragma Import (C, sqlite3_value_int64, "sqlite3_value_int64"); function sqlite3_value_text (arg1 : access sqlite3_value) return access unsigned_char; -- /usr/include/sqlite3.h:4377 pragma Import (C, sqlite3_value_text, "sqlite3_value_text"); function sqlite3_value_text16 (arg1 : access sqlite3_value) return System.Address; -- /usr/include/sqlite3.h:4378 pragma Import (C, sqlite3_value_text16, "sqlite3_value_text16"); function sqlite3_value_text16le (arg1 : access sqlite3_value) return System.Address; -- /usr/include/sqlite3.h:4379 pragma Import (C, sqlite3_value_text16le, "sqlite3_value_text16le"); function sqlite3_value_text16be (arg1 : access sqlite3_value) return System.Address; -- /usr/include/sqlite3.h:4380 pragma Import (C, sqlite3_value_text16be, "sqlite3_value_text16be"); function sqlite3_value_type (arg1 : access sqlite3_value) return int; -- /usr/include/sqlite3.h:4381 pragma Import (C, sqlite3_value_type, "sqlite3_value_type"); function sqlite3_value_numeric_type (arg1 : access sqlite3_value) return int; -- /usr/include/sqlite3.h:4382 pragma Import (C, sqlite3_value_numeric_type, "sqlite3_value_numeric_type"); --** CAPI3REF: Finding The Subtype Of SQL Values --** METHOD: sqlite3_value --** --** The sqlite3_value_subtype(V) function returns the subtype for --** an [application-defined SQL function] argument V. The subtype --** information can be used to pass a limited amount of context from --** one SQL function to another. Use the [sqlite3_result_subtype()] --** routine to set the subtype for the return value of an SQL function. --** --** SQLite makes no use of subtype itself. It merely passes the subtype --** from the result of one [application-defined SQL function] into the --** input of another. -- function sqlite3_value_subtype (arg1 : access sqlite3_value) return unsigned; -- /usr/include/sqlite3.h:4398 pragma Import (C, sqlite3_value_subtype, "sqlite3_value_subtype"); --** CAPI3REF: Copy And Free SQL Values --** METHOD: sqlite3_value --** --** ^The sqlite3_value_dup(V) interface makes a copy of the [sqlite3_value] --** object D and returns a pointer to that copy. ^The [sqlite3_value] returned --** is a [protected sqlite3_value] object even if the input is not. --** ^The sqlite3_value_dup(V) interface returns NULL if V is NULL or if a --** memory allocation fails. --** --** ^The sqlite3_value_free(V) interface frees an [sqlite3_value] object --** previously obtained from [sqlite3_value_dup()]. ^If V is a NULL pointer --** then sqlite3_value_free(V) is a harmless no-op. -- function sqlite3_value_dup (arg1 : access constant sqlite3_value) return access sqlite3_value; -- /usr/include/sqlite3.h:4414 pragma Import (C, sqlite3_value_dup, "sqlite3_value_dup"); procedure sqlite3_value_free (arg1 : access sqlite3_value); -- /usr/include/sqlite3.h:4415 pragma Import (C, sqlite3_value_free, "sqlite3_value_free"); --** CAPI3REF: Obtain Aggregate Function Context --** METHOD: sqlite3_context --** --** Implementations of aggregate SQL functions use this --** routine to allocate memory for storing their state. --** --** ^The first time the sqlite3_aggregate_context(C,N) routine is called --** for a particular aggregate function, SQLite --** allocates N of memory, zeroes out that memory, and returns a pointer --** to the new memory. ^On second and subsequent calls to --** sqlite3_aggregate_context() for the same aggregate function instance, --** the same buffer is returned. Sqlite3_aggregate_context() is normally --** called once for each invocation of the xStep callback and then one --** last time when the xFinal callback is invoked. ^(When no rows match --** an aggregate query, the xStep() callback of the aggregate function --** implementation is never called and xFinal() is called exactly once. --** In those cases, sqlite3_aggregate_context() might be called for the --** first time from within xFinal().)^ --** --** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer --** when first called if N is less than or equal to zero or if a memory --** allocate error occurs. --** --** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is --** determined by the N parameter on first successful call. Changing the --** value of N in subsequent call to sqlite3_aggregate_context() within --** the same aggregate function instance will not resize the memory --** allocation.)^ Within the xFinal callback, it is customary to set --** N=0 in calls to sqlite3_aggregate_context(C,N) so that no --** pointless memory allocations occur. --** --** ^SQLite automatically frees the memory allocated by --** sqlite3_aggregate_context() when the aggregate query concludes. --** --** The first parameter must be a copy of the --** [sqlite3_context | SQL function context] that is the first parameter --** to the xStep or xFinal callback routine that implements the aggregate --** function. --** --** This routine must be called from the same thread in which --** the aggregate SQL function is running. -- function sqlite3_aggregate_context (arg1 : access sqlite3_context; nBytes : int) return System.Address; -- /usr/include/sqlite3.h:4460 pragma Import (C, sqlite3_aggregate_context, "sqlite3_aggregate_context"); --** CAPI3REF: User Data For Functions --** METHOD: sqlite3_context --** --** ^The sqlite3_user_data() interface returns a copy of --** the pointer that was the pUserData parameter (the 5th parameter) --** of the [sqlite3_create_function()] --** and [sqlite3_create_function16()] routines that originally --** registered the application defined function. --** --** This routine must be called from the same thread in which --** the application-defined function is running. -- function sqlite3_user_data (arg1 : access sqlite3_context) return System.Address; -- /usr/include/sqlite3.h:4475 pragma Import (C, sqlite3_user_data, "sqlite3_user_data"); --** CAPI3REF: Database Connection For Functions --** METHOD: sqlite3_context --** --** ^The sqlite3_context_db_handle() interface returns a copy of --** the pointer to the [database connection] (the 1st parameter) --** of the [sqlite3_create_function()] --** and [sqlite3_create_function16()] routines that originally --** registered the application defined function. -- function sqlite3_context_db_handle (arg1 : access sqlite3_context) return access sqlite3; -- /usr/include/sqlite3.h:4487 pragma Import (C, sqlite3_context_db_handle, "sqlite3_context_db_handle"); --** CAPI3REF: Function Auxiliary Data --** METHOD: sqlite3_context --** --** These functions may be used by (non-aggregate) SQL functions to --** associate metadata with argument values. If the same value is passed to --** multiple invocations of the same SQL function during query execution, under --** some circumstances the associated metadata may be preserved. An example --** of where this might be useful is in a regular-expression matching --** function. The compiled version of the regular expression can be stored as --** metadata associated with the pattern string. --** Then as long as the pattern string remains the same, --** the compiled regular expression can be reused on multiple --** invocations of the same function. --** --** ^The sqlite3_get_auxdata() interface returns a pointer to the metadata --** associated by the sqlite3_set_auxdata() function with the Nth argument --** value to the application-defined function. ^If there is no metadata --** associated with the function argument, this sqlite3_get_auxdata() interface --** returns a NULL pointer. --** --** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as metadata for the N-th --** argument of the application-defined function. ^Subsequent --** calls to sqlite3_get_auxdata(C,N) return P from the most recent --** sqlite3_set_auxdata(C,N,P,X) call if the metadata is still valid or --** NULL if the metadata has been discarded. --** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL, --** SQLite will invoke the destructor function X with parameter P exactly --** once, when the metadata is discarded. --** SQLite is free to discard the metadata at any time, including: <ul> --** <li> when the corresponding function parameter changes, or --** <li> when [sqlite3_reset()] or [sqlite3_finalize()] is called for the --** SQL statement, or --** <li> when sqlite3_set_auxdata() is invoked again on the same parameter, or --** <li> during the original sqlite3_set_auxdata() call when a memory --** allocation error occurs. </ul>)^ --** --** Note the last bullet in particular. The destructor X in --** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the --** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata() --** should be called near the end of the function implementation and the --** function implementation should not make any use of P after --** sqlite3_set_auxdata() has been called. --** --** ^(In practice, metadata is preserved between function calls for --** function parameters that are compile-time constants, including literal --** values and [parameters] and expressions composed from the same.)^ --** --** These routines must be called from the same thread in which --** the SQL function is running. -- function sqlite3_get_auxdata (arg1 : access sqlite3_context; N : int) return System.Address; -- /usr/include/sqlite3.h:4540 pragma Import (C, sqlite3_get_auxdata, "sqlite3_get_auxdata"); procedure sqlite3_set_auxdata (arg1 : access sqlite3_context; N : int; arg3 : System.Address; arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:4541 pragma Import (C, sqlite3_set_auxdata, "sqlite3_set_auxdata"); --** CAPI3REF: Constants Defining Special Destructor Behavior --** --** These are special values for the destructor that is passed in as the --** final argument to routines like [sqlite3_result_blob()]. ^If the destructor --** argument is SQLITE_STATIC, it means that the content pointer is constant --** and will never change. It does not need to be destroyed. ^The --** SQLITE_TRANSIENT value means that the content will likely change in --** the near future and that SQLite should make its own private copy of --** the content before returning. --** --** The typedef is necessary to work around problems in certain --** C++ compilers. -- type sqlite3_destructor_type is access procedure (arg1 : System.Address); pragma Convention (C, sqlite3_destructor_type); -- /usr/include/sqlite3.h:4558 --** CAPI3REF: Setting The Result Of An SQL Function --** METHOD: sqlite3_context --** --** These routines are used by the xFunc or xFinal callbacks that --** implement SQL functions and aggregates. See --** [sqlite3_create_function()] and [sqlite3_create_function16()] --** for additional information. --** --** These functions work very much like the [parameter binding] family of --** functions used to bind values to host parameters in prepared statements. --** Refer to the [SQL parameter] documentation for additional information. --** --** ^The sqlite3_result_blob() interface sets the result from --** an application-defined function to be the BLOB whose content is pointed --** to by the second parameter and which is N bytes long where N is the --** third parameter. --** --** ^The sqlite3_result_zeroblob(C,N) and sqlite3_result_zeroblob64(C,N) --** interfaces set the result of the application-defined function to be --** a BLOB containing all zero bytes and N bytes in size. --** --** ^The sqlite3_result_double() interface sets the result from --** an application-defined function to be a floating point value specified --** by its 2nd argument. --** --** ^The sqlite3_result_error() and sqlite3_result_error16() functions --** cause the implemented SQL function to throw an exception. --** ^SQLite uses the string pointed to by the --** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16() --** as the text of an error message. ^SQLite interprets the error --** message string from sqlite3_result_error() as UTF-8. ^SQLite --** interprets the string from sqlite3_result_error16() as UTF-16 in native --** byte order. ^If the third parameter to sqlite3_result_error() --** or sqlite3_result_error16() is negative then SQLite takes as the error --** message all text up through the first zero character. --** ^If the third parameter to sqlite3_result_error() or --** sqlite3_result_error16() is non-negative then SQLite takes that many --** bytes (not characters) from the 2nd parameter as the error message. --** ^The sqlite3_result_error() and sqlite3_result_error16() --** routines make a private copy of the error message text before --** they return. Hence, the calling function can deallocate or --** modify the text after they return without harm. --** ^The sqlite3_result_error_code() function changes the error code --** returned by SQLite as a result of an error in a function. ^By default, --** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error() --** or sqlite3_result_error16() resets the error code to SQLITE_ERROR. --** --** ^The sqlite3_result_error_toobig() interface causes SQLite to throw an --** error indicating that a string or BLOB is too long to represent. --** --** ^The sqlite3_result_error_nomem() interface causes SQLite to throw an --** error indicating that a memory allocation failed. --** --** ^The sqlite3_result_int() interface sets the return value --** of the application-defined function to be the 32-bit signed integer --** value given in the 2nd argument. --** ^The sqlite3_result_int64() interface sets the return value --** of the application-defined function to be the 64-bit signed integer --** value given in the 2nd argument. --** --** ^The sqlite3_result_null() interface sets the return value --** of the application-defined function to be NULL. --** --** ^The sqlite3_result_text(), sqlite3_result_text16(), --** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces --** set the return value of the application-defined function to be --** a text string which is represented as UTF-8, UTF-16 native byte order, --** UTF-16 little endian, or UTF-16 big endian, respectively. --** ^The sqlite3_result_text64() interface sets the return value of an --** application-defined function to be a text string in an encoding --** specified by the fifth (and last) parameter, which must be one --** of [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE]. --** ^SQLite takes the text result from the application from --** the 2nd parameter of the sqlite3_result_text* interfaces. --** ^If the 3rd parameter to the sqlite3_result_text* interfaces --** is negative, then SQLite takes result text from the 2nd parameter --** through the first zero character. --** ^If the 3rd parameter to the sqlite3_result_text* interfaces --** is non-negative, then as many bytes (not characters) of the text --** pointed to by the 2nd parameter are taken as the application-defined --** function result. If the 3rd parameter is non-negative, then it --** must be the byte offset into the string where the NUL terminator would --** appear if the string where NUL terminated. If any NUL characters occur --** in the string at a byte offset that is less than the value of the 3rd --** parameter, then the resulting string will contain embedded NULs and the --** result of expressions operating on strings with embedded NULs is undefined. --** ^If the 4th parameter to the sqlite3_result_text* interfaces --** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that --** function as the destructor on the text or BLOB result when it has --** finished using that result. --** ^If the 4th parameter to the sqlite3_result_text* interfaces or to --** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite --** assumes that the text or BLOB result is in constant space and does not --** copy the content of the parameter nor call a destructor on the content --** when it has finished using that result. --** ^If the 4th parameter to the sqlite3_result_text* interfaces --** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT --** then SQLite makes a copy of the result into space obtained from --** from [sqlite3_malloc()] before it returns. --** --** ^The sqlite3_result_value() interface sets the result of --** the application-defined function to be a copy of the --** [unprotected sqlite3_value] object specified by the 2nd parameter. ^The --** sqlite3_result_value() interface makes a copy of the [sqlite3_value] --** so that the [sqlite3_value] specified in the parameter may change or --** be deallocated after sqlite3_result_value() returns without harm. --** ^A [protected sqlite3_value] object may always be used where an --** [unprotected sqlite3_value] object is required, so either --** kind of [sqlite3_value] object can be used with this interface. --** --** If these routines are called from within the different thread --** than the one containing the application-defined function that received --** the [sqlite3_context] pointer, the results are undefined. -- procedure sqlite3_result_blob (arg1 : access sqlite3_context; arg2 : System.Address; arg3 : int; arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:4677 pragma Import (C, sqlite3_result_blob, "sqlite3_result_blob"); procedure sqlite3_result_blob64 (arg1 : access sqlite3_context; arg2 : System.Address; arg3 : sqlite3_uint64; arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:4678 pragma Import (C, sqlite3_result_blob64, "sqlite3_result_blob64"); procedure sqlite3_result_double (arg1 : access sqlite3_context; arg2 : double); -- /usr/include/sqlite3.h:4680 pragma Import (C, sqlite3_result_double, "sqlite3_result_double"); procedure sqlite3_result_error (arg1 : access sqlite3_context; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int); -- /usr/include/sqlite3.h:4681 pragma Import (C, sqlite3_result_error, "sqlite3_result_error"); procedure sqlite3_result_error16 (arg1 : access sqlite3_context; arg2 : System.Address; arg3 : int); -- /usr/include/sqlite3.h:4682 pragma Import (C, sqlite3_result_error16, "sqlite3_result_error16"); procedure sqlite3_result_error_toobig (arg1 : access sqlite3_context); -- /usr/include/sqlite3.h:4683 pragma Import (C, sqlite3_result_error_toobig, "sqlite3_result_error_toobig"); procedure sqlite3_result_error_nomem (arg1 : access sqlite3_context); -- /usr/include/sqlite3.h:4684 pragma Import (C, sqlite3_result_error_nomem, "sqlite3_result_error_nomem"); procedure sqlite3_result_error_code (arg1 : access sqlite3_context; arg2 : int); -- /usr/include/sqlite3.h:4685 pragma Import (C, sqlite3_result_error_code, "sqlite3_result_error_code"); procedure sqlite3_result_int (arg1 : access sqlite3_context; arg2 : int); -- /usr/include/sqlite3.h:4686 pragma Import (C, sqlite3_result_int, "sqlite3_result_int"); procedure sqlite3_result_int64 (arg1 : access sqlite3_context; arg2 : sqlite3_int64); -- /usr/include/sqlite3.h:4687 pragma Import (C, sqlite3_result_int64, "sqlite3_result_int64"); procedure sqlite3_result_null (arg1 : access sqlite3_context); -- /usr/include/sqlite3.h:4688 pragma Import (C, sqlite3_result_null, "sqlite3_result_null"); procedure sqlite3_result_text (arg1 : access sqlite3_context; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:4689 pragma Import (C, sqlite3_result_text, "sqlite3_result_text"); procedure sqlite3_result_text64 (arg1 : access sqlite3_context; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : sqlite3_uint64; arg4 : access procedure (arg1 : System.Address); encoding : unsigned_char); -- /usr/include/sqlite3.h:4690 pragma Import (C, sqlite3_result_text64, "sqlite3_result_text64"); procedure sqlite3_result_text16 (arg1 : access sqlite3_context; arg2 : System.Address; arg3 : int; arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:4692 pragma Import (C, sqlite3_result_text16, "sqlite3_result_text16"); procedure sqlite3_result_text16le (arg1 : access sqlite3_context; arg2 : System.Address; arg3 : int; arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:4693 pragma Import (C, sqlite3_result_text16le, "sqlite3_result_text16le"); procedure sqlite3_result_text16be (arg1 : access sqlite3_context; arg2 : System.Address; arg3 : int; arg4 : access procedure (arg1 : System.Address)); -- /usr/include/sqlite3.h:4694 pragma Import (C, sqlite3_result_text16be, "sqlite3_result_text16be"); procedure sqlite3_result_value (arg1 : access sqlite3_context; arg2 : access sqlite3_value); -- /usr/include/sqlite3.h:4695 pragma Import (C, sqlite3_result_value, "sqlite3_result_value"); procedure sqlite3_result_zeroblob (arg1 : access sqlite3_context; n : int); -- /usr/include/sqlite3.h:4696 pragma Import (C, sqlite3_result_zeroblob, "sqlite3_result_zeroblob"); function sqlite3_result_zeroblob64 (arg1 : access sqlite3_context; n : sqlite3_uint64) return int; -- /usr/include/sqlite3.h:4697 pragma Import (C, sqlite3_result_zeroblob64, "sqlite3_result_zeroblob64"); --** CAPI3REF: Setting The Subtype Of An SQL Function --** METHOD: sqlite3_context --** --** The sqlite3_result_subtype(C,T) function causes the subtype of --** the result from the [application-defined SQL function] with --** [sqlite3_context] C to be the value T. Only the lower 8 bits --** of the subtype T are preserved in current versions of SQLite; --** higher order bits are discarded. --** The number of subtype bytes preserved by SQLite might increase --** in future releases of SQLite. -- procedure sqlite3_result_subtype (arg1 : access sqlite3_context; arg2 : unsigned); -- /usr/include/sqlite3.h:4712 pragma Import (C, sqlite3_result_subtype, "sqlite3_result_subtype"); --** CAPI3REF: Define New Collating Sequences --** METHOD: sqlite3 --** --** ^These functions add, remove, or modify a [collation] associated --** with the [database connection] specified as the first argument. --** --** ^The name of the collation is a UTF-8 string --** for sqlite3_create_collation() and sqlite3_create_collation_v2() --** and a UTF-16 string in native byte order for sqlite3_create_collation16(). --** ^Collation names that compare equal according to [sqlite3_strnicmp()] are --** considered to be the same name. --** --** ^(The third argument (eTextRep) must be one of the constants: --** <ul> --** <li> [SQLITE_UTF8], --** <li> [SQLITE_UTF16LE], --** <li> [SQLITE_UTF16BE], --** <li> [SQLITE_UTF16], or --** <li> [SQLITE_UTF16_ALIGNED]. --** </ul>)^ --** ^The eTextRep argument determines the encoding of strings passed --** to the collating function callback, xCallback. --** ^The [SQLITE_UTF16] and [SQLITE_UTF16_ALIGNED] values for eTextRep --** force strings to be UTF16 with native byte order. --** ^The [SQLITE_UTF16_ALIGNED] value for eTextRep forces strings to begin --** on an even byte address. --** --** ^The fourth argument, pArg, is an application data pointer that is passed --** through as the first argument to the collating function callback. --** --** ^The fifth argument, xCallback, is a pointer to the collating function. --** ^Multiple collating functions can be registered using the same name but --** with different eTextRep parameters and SQLite will use whichever --** function requires the least amount of data transformation. --** ^If the xCallback argument is NULL then the collating function is --** deleted. ^When all collating functions having the same name are deleted, --** that collation is no longer usable. --** --** ^The collating function callback is invoked with a copy of the pArg --** application data pointer and with two strings in the encoding specified --** by the eTextRep argument. The collating function must return an --** integer that is negative, zero, or positive --** if the first string is less than, equal to, or greater than the second, --** respectively. A collating function must always return the same answer --** given the same inputs. If two or more collating functions are registered --** to the same collation name (using different eTextRep values) then all --** must give an equivalent answer when invoked with equivalent strings. --** The collating function must obey the following properties for all --** strings A, B, and C: --** --** <ol> --** <li> If A==B then B==A. --** <li> If A==B and B==C then A==C. --** <li> If A&lt;B THEN B&gt;A. --** <li> If A&lt;B and B&lt;C then A&lt;C. --** </ol> --** --** If a collating function fails any of the above constraints and that --** collating function is registered and used, then the behavior of SQLite --** is undefined. --** --** ^The sqlite3_create_collation_v2() works like sqlite3_create_collation() --** with the addition that the xDestroy callback is invoked on pArg when --** the collating function is deleted. --** ^Collating functions are deleted when they are overridden by later --** calls to the collation creation functions or when the --** [database connection] is closed using [sqlite3_close()]. --** --** ^The xDestroy callback is <u>not</u> called if the --** sqlite3_create_collation_v2() function fails. Applications that invoke --** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should --** check the return code and dispose of the application data pointer --** themselves rather than expecting SQLite to deal with it for them. --** This is different from every other SQLite interface. The inconsistency --** is unfortunate but cannot be changed without breaking backwards --** compatibility. --** --** See also: [sqlite3_collation_needed()] and [sqlite3_collation_needed16()]. -- function sqlite3_create_collation (arg1 : access sqlite3; zName : Interfaces.C.Strings.chars_ptr; eTextRep : int; pArg : System.Address; xCompare : access function (arg1 : System.Address; arg2 : int; arg3 : System.Address; arg4 : int; arg5 : System.Address) return int) return int; -- /usr/include/sqlite3.h:4794 pragma Import (C, sqlite3_create_collation, "sqlite3_create_collation"); function sqlite3_create_collation_v2 (arg1 : access sqlite3; zName : Interfaces.C.Strings.chars_ptr; eTextRep : int; pArg : System.Address; xCompare : access function (arg1 : System.Address; arg2 : int; arg3 : System.Address; arg4 : int; arg5 : System.Address) return int; xDestroy : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:4801 pragma Import (C, sqlite3_create_collation_v2, "sqlite3_create_collation_v2"); function sqlite3_create_collation16 (arg1 : access sqlite3; zName : System.Address; eTextRep : int; pArg : System.Address; xCompare : access function (arg1 : System.Address; arg2 : int; arg3 : System.Address; arg4 : int; arg5 : System.Address) return int) return int; -- /usr/include/sqlite3.h:4809 pragma Import (C, sqlite3_create_collation16, "sqlite3_create_collation16"); --** CAPI3REF: Collation Needed Callbacks --** METHOD: sqlite3 --** --** ^To avoid having to register all collation sequences before a database --** can be used, a single callback function may be registered with the --** [database connection] to be invoked whenever an undefined collation --** sequence is required. --** --** ^If the function is registered using the sqlite3_collation_needed() API, --** then it is passed the names of undefined collation sequences as strings --** encoded in UTF-8. ^If sqlite3_collation_needed16() is used, --** the names are passed as UTF-16 in machine native byte order. --** ^A call to either function replaces the existing collation-needed callback. --** --** ^(When the callback is invoked, the first argument passed is a copy --** of the second argument to sqlite3_collation_needed() or --** sqlite3_collation_needed16(). The second argument is the database --** connection. The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE], --** or [SQLITE_UTF16LE], indicating the most desirable form of the collation --** sequence function required. The fourth parameter is the name of the --** required collation sequence.)^ --** --** The callback function should register the desired collation using --** [sqlite3_create_collation()], [sqlite3_create_collation16()], or --** [sqlite3_create_collation_v2()]. -- function sqlite3_collation_needed (arg1 : access sqlite3; arg2 : System.Address; arg3 : access procedure (arg1 : System.Address; arg2 : access sqlite3; arg3 : int; arg4 : Interfaces.C.Strings.chars_ptr)) return int; -- /usr/include/sqlite3.h:4844 pragma Import (C, sqlite3_collation_needed, "sqlite3_collation_needed"); function sqlite3_collation_needed16 (arg1 : access sqlite3; arg2 : System.Address; arg3 : access procedure (arg1 : System.Address; arg2 : access sqlite3; arg3 : int; arg4 : System.Address)) return int; -- /usr/include/sqlite3.h:4849 pragma Import (C, sqlite3_collation_needed16, "sqlite3_collation_needed16"); --** Specify the key for an encrypted database. This routine should be --** called right after sqlite3_open(). --** --** The code to implement this API is not available in the public release --** of SQLite. -- -- Database to be rekeyed -- The key -- Database to be rekeyed -- Name of the database -- The key --** Change the key on an open database. If the current database is not --** encrypted, this routine will encrypt it. If pNew==0 or nNew==0, the --** database is decrypted. --** --** The code to implement this API is not available in the public release --** of SQLite. -- -- Database to be rekeyed -- The new key -- Database to be rekeyed -- Name of the database -- The new key --** Specify the activation key for a SEE database. Unless --** activated, none of the SEE routines will work. -- -- Activation phrase --** Specify the activation key for a CEROD database. Unless --** activated, none of the CEROD routines will work. -- -- Activation phrase --** CAPI3REF: Suspend Execution For A Short Time --** --** The sqlite3_sleep() function causes the current thread to suspend execution --** for at least a number of milliseconds specified in its parameter. --** --** If the operating system does not support sleep requests with --** millisecond time resolution, then the time will be rounded up to --** the nearest second. The number of milliseconds of sleep actually --** requested from the operating system is returned. --** --** ^SQLite implements this interface by calling the xSleep() --** method of the default [sqlite3_vfs] object. If the xSleep() method --** of the default VFS is not implemented correctly, or not implemented at --** all, then the behavior of sqlite3_sleep() may deviate from the description --** in the previous paragraphs. -- function sqlite3_sleep (arg1 : int) return int; -- /usr/include/sqlite3.h:4927 pragma Import (C, sqlite3_sleep, "sqlite3_sleep"); --** CAPI3REF: Name Of The Folder Holding Temporary Files --** --** ^(If this global variable is made to point to a string which is --** the name of a folder (a.k.a. directory), then all temporary files --** created by SQLite when using a built-in [sqlite3_vfs | VFS] --** will be placed in that directory.)^ ^If this variable --** is a NULL pointer, then SQLite performs a search for an appropriate --** temporary file directory. --** --** Applications are strongly discouraged from using this global variable. --** It is required to set a temporary folder on Windows Runtime (WinRT). --** But for all other platforms, it is highly recommended that applications --** neither read nor write this variable. This global variable is a relic --** that exists for backwards compatibility of legacy applications and should --** be avoided in new projects. --** --** It is not safe to read or modify this variable in more than one --** thread at a time. It is not safe to read or modify this variable --** if a [database connection] is being used at the same time in a separate --** thread. --** It is intended that this variable be set once --** as part of process initialization and before any SQLite interface --** routines have been called and that this variable remain unchanged --** thereafter. --** --** ^The [temp_store_directory pragma] may modify this variable and cause --** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, --** the [temp_store_directory pragma] always assumes that any string --** that this variable points to is held in memory obtained from --** [sqlite3_malloc] and the pragma may attempt to free that memory --** using [sqlite3_free]. --** Hence, if this variable is modified directly, either it should be --** made NULL or made to point to memory obtained from [sqlite3_malloc] --** or else the use of the [temp_store_directory pragma] should be avoided. --** Except when requested by the [temp_store_directory pragma], SQLite --** does not free the memory that sqlite3_temp_directory points to. If --** the application wants that memory to be freed, it must do --** so itself, taking care to only do so after all [database connection] --** objects have been destroyed. --** --** <b>Note to Windows Runtime users:</b> The temporary directory must be set --** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various --** features that require the use of temporary files may fail. Here is an --** example of how to do this using C++ with the Windows Runtime: --** --** <blockquote><pre> --** LPCWSTR zPath = Windows::Storage::ApplicationData::Current-> --** &nbsp; TemporaryFolder->Path->Data(); --** char zPathBuf&#91;MAX_PATH + 1&#93;; --** memset(zPathBuf, 0, sizeof(zPathBuf)); --** WideCharToMultiByte(CP_UTF8, 0, zPath, -1, zPathBuf, sizeof(zPathBuf), --** &nbsp; NULL, NULL); --** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf); --** </pre></blockquote> -- sqlite3_temp_directory : Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:4985 pragma Import (C, sqlite3_temp_directory, "sqlite3_temp_directory"); --** CAPI3REF: Name Of The Folder Holding Database Files --** --** ^(If this global variable is made to point to a string which is --** the name of a folder (a.k.a. directory), then all database files --** specified with a relative pathname and created or accessed by --** SQLite when using a built-in windows [sqlite3_vfs | VFS] will be assumed --** to be relative to that directory.)^ ^If this variable is a NULL --** pointer, then SQLite assumes that all database files specified --** with a relative pathname are relative to the current directory --** for the process. Only the windows VFS makes use of this global --** variable; it is ignored by the unix VFS. --** --** Changing the value of this variable while a database connection is --** open can result in a corrupt database. --** --** It is not safe to read or modify this variable in more than one --** thread at a time. It is not safe to read or modify this variable --** if a [database connection] is being used at the same time in a separate --** thread. --** It is intended that this variable be set once --** as part of process initialization and before any SQLite interface --** routines have been called and that this variable remain unchanged --** thereafter. --** --** ^The [data_store_directory pragma] may modify this variable and cause --** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, --** the [data_store_directory pragma] always assumes that any string --** that this variable points to is held in memory obtained from --** [sqlite3_malloc] and the pragma may attempt to free that memory --** using [sqlite3_free]. --** Hence, if this variable is modified directly, either it should be --** made NULL or made to point to memory obtained from [sqlite3_malloc] --** or else the use of the [data_store_directory pragma] should be avoided. -- sqlite3_data_directory : Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:5022 pragma Import (C, sqlite3_data_directory, "sqlite3_data_directory"); --** CAPI3REF: Test For Auto-Commit Mode --** KEYWORDS: {autocommit mode} --** METHOD: sqlite3 --** --** ^The sqlite3_get_autocommit() interface returns non-zero or --** zero if the given database connection is or is not in autocommit mode, --** respectively. ^Autocommit mode is on by default. --** ^Autocommit mode is disabled by a [BEGIN] statement. --** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK]. --** --** If certain kinds of errors occur on a statement within a multi-statement --** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR], --** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the --** transaction might be rolled back automatically. The only way to --** find out whether SQLite automatically rolled back the transaction after --** an error is to use this function. --** --** If another thread changes the autocommit status of the database --** connection while this routine is running, then the return value --** is undefined. -- function sqlite3_get_autocommit (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:5046 pragma Import (C, sqlite3_get_autocommit, "sqlite3_get_autocommit"); --** CAPI3REF: Find The Database Handle Of A Prepared Statement --** METHOD: sqlite3_stmt --** --** ^The sqlite3_db_handle interface returns the [database connection] handle --** to which a [prepared statement] belongs. ^The [database connection] --** returned by sqlite3_db_handle is the same [database connection] --** that was the first argument --** to the [sqlite3_prepare_v2()] call (or its variants) that was used to --** create the statement in the first place. -- function sqlite3_db_handle (arg1 : access sqlite3_stmt) return access sqlite3; -- /usr/include/sqlite3.h:5059 pragma Import (C, sqlite3_db_handle, "sqlite3_db_handle"); --** CAPI3REF: Return The Filename For A Database Connection --** METHOD: sqlite3 --** --** ^The sqlite3_db_filename(D,N) interface returns a pointer to a filename --** associated with database N of connection D. ^The main database file --** has the name "main". If there is no attached database N on the database --** connection D, or if database N is a temporary or in-memory database, then --** a NULL pointer is returned. --** --** ^The filename returned by this function is the output of the --** xFullPathname method of the [VFS]. ^In other words, the filename --** will be an absolute pathname, even if the filename used --** to open the database originally was a URI or relative pathname. -- function sqlite3_db_filename (db : access sqlite3; zDbName : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:5076 pragma Import (C, sqlite3_db_filename, "sqlite3_db_filename"); --** CAPI3REF: Determine if a database is read-only --** METHOD: sqlite3 --** --** ^The sqlite3_db_readonly(D,N) interface returns 1 if the database N --** of connection D is read-only, 0 if it is read/write, or -1 if N is not --** the name of a database on connection D. -- function sqlite3_db_readonly (db : access sqlite3; zDbName : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:5086 pragma Import (C, sqlite3_db_readonly, "sqlite3_db_readonly"); --** CAPI3REF: Find the next prepared statement --** METHOD: sqlite3 --** --** ^This interface returns a pointer to the next [prepared statement] after --** pStmt associated with the [database connection] pDb. ^If pStmt is NULL --** then this interface returns a pointer to the first prepared statement --** associated with the database connection pDb. ^If no prepared statement --** satisfies the conditions of this routine, it returns NULL. --** --** The [database connection] pointer D in a call to --** [sqlite3_next_stmt(D,S)] must refer to an open database --** connection and in particular must not be a NULL pointer. -- function sqlite3_next_stmt (pDb : access sqlite3; pStmt : access sqlite3_stmt) return access sqlite3_stmt; -- /usr/include/sqlite3.h:5102 pragma Import (C, sqlite3_next_stmt, "sqlite3_next_stmt"); --** CAPI3REF: Commit And Rollback Notification Callbacks --** METHOD: sqlite3 --** --** ^The sqlite3_commit_hook() interface registers a callback --** function to be invoked whenever a transaction is [COMMIT | committed]. --** ^Any callback set by a previous call to sqlite3_commit_hook() --** for the same database connection is overridden. --** ^The sqlite3_rollback_hook() interface registers a callback --** function to be invoked whenever a transaction is [ROLLBACK | rolled back]. --** ^Any callback set by a previous call to sqlite3_rollback_hook() --** for the same database connection is overridden. --** ^The pArg argument is passed through to the callback. --** ^If the callback on a commit hook function returns non-zero, --** then the commit is converted into a rollback. --** --** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions --** return the P argument from the previous call of the same function --** on the same [database connection] D, or NULL for --** the first call for each function on D. --** --** The commit and rollback hook callbacks are not reentrant. --** The callback implementation must not do anything that will modify --** the database connection that invoked the callback. Any actions --** to modify the database connection must be deferred until after the --** completion of the [sqlite3_step()] call that triggered the commit --** or rollback hook in the first place. --** Note that running any other SQL statements, including SELECT statements, --** or merely calling [sqlite3_prepare_v2()] and [sqlite3_step()] will modify --** the database connections for the meaning of "modify" in this paragraph. --** --** ^Registering a NULL function disables the callback. --** --** ^When the commit hook callback routine returns zero, the [COMMIT] --** operation is allowed to continue normally. ^If the commit hook --** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK]. --** ^The rollback hook is invoked on a rollback that results from a commit --** hook returning non-zero, just as it would be with any other rollback. --** --** ^For the purposes of this API, a transaction is said to have been --** rolled back if an explicit "ROLLBACK" statement is executed, or --** an error or constraint causes an implicit rollback to occur. --** ^The rollback callback is not invoked if a transaction is --** automatically rolled back because the database connection is closed. --** --** See also the [sqlite3_update_hook()] interface. -- function sqlite3_commit_hook (arg1 : access sqlite3; arg2 : access function (arg1 : System.Address) return int; arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:5151 pragma Import (C, sqlite3_commit_hook, "sqlite3_commit_hook"); function sqlite3_rollback_hook (arg1 : access sqlite3; arg2 : access procedure (arg1 : System.Address); arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:5152 pragma Import (C, sqlite3_rollback_hook, "sqlite3_rollback_hook"); --** CAPI3REF: Data Change Notification Callbacks --** METHOD: sqlite3 --** --** ^The sqlite3_update_hook() interface registers a callback function --** with the [database connection] identified by the first argument --** to be invoked whenever a row is updated, inserted or deleted in --** a rowid table. --** ^Any callback set by a previous call to this function --** for the same database connection is overridden. --** --** ^The second argument is a pointer to the function to invoke when a --** row is updated, inserted or deleted in a rowid table. --** ^The first argument to the callback is a copy of the third argument --** to sqlite3_update_hook(). --** ^The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE], --** or [SQLITE_UPDATE], depending on the operation that caused the callback --** to be invoked. --** ^The third and fourth arguments to the callback contain pointers to the --** database and table name containing the affected row. --** ^The final callback parameter is the [rowid] of the row. --** ^In the case of an update, this is the [rowid] after the update takes place. --** --** ^(The update hook is not invoked when internal system tables are --** modified (i.e. sqlite_master and sqlite_sequence).)^ --** ^The update hook is not invoked when [WITHOUT ROWID] tables are modified. --** --** ^In the current implementation, the update hook --** is not invoked when duplication rows are deleted because of an --** [ON CONFLICT | ON CONFLICT REPLACE] clause. ^Nor is the update hook --** invoked when rows are deleted using the [truncate optimization]. --** The exceptions defined in this paragraph might change in a future --** release of SQLite. --** --** The update hook implementation must not do anything that will modify --** the database connection that invoked the update hook. Any actions --** to modify the database connection must be deferred until after the --** completion of the [sqlite3_step()] call that triggered the update hook. --** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their --** database connections for the meaning of "modify" in this paragraph. --** --** ^The sqlite3_update_hook(D,C,P) function --** returns the P argument from the previous call --** on the same [database connection] D, or NULL for --** the first call on D. --** --** See also the [sqlite3_commit_hook()] and [sqlite3_rollback_hook()] --** interfaces. -- function sqlite3_update_hook (arg1 : access sqlite3; arg2 : access procedure (arg1 : System.Address; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : sqlite3_int64); arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:5203 pragma Import (C, sqlite3_update_hook, "sqlite3_update_hook"); --** CAPI3REF: Enable Or Disable Shared Pager Cache --** --** ^(This routine enables or disables the sharing of the database cache --** and schema data structures between [database connection | connections] --** to the same database. Sharing is enabled if the argument is true --** and disabled if the argument is false.)^ --** --** ^Cache sharing is enabled and disabled for an entire process. --** This is a change as of SQLite version 3.5.0. In prior versions of SQLite, --** sharing was enabled or disabled for each thread separately. --** --** ^(The cache sharing mode set by this interface effects all subsequent --** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()]. --** Existing database connections continue use the sharing mode --** that was in effect at the time they were opened.)^ --** --** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled --** successfully. An [error code] is returned otherwise.)^ --** --** ^Shared cache is disabled by default. But this might change in --** future releases of SQLite. Applications that care about shared --** cache setting should set it explicitly. --** --** Note: This method is disabled on MacOS X 10.7 and iOS version 5.0 --** and will always return SQLITE_MISUSE. On those systems, --** shared cache mode should be enabled per-database connection via --** [sqlite3_open_v2()] with [SQLITE_OPEN_SHAREDCACHE]. --** --** This interface is threadsafe on processors where writing a --** 32-bit integer is atomic. --** --** See Also: [SQLite Shared-Cache Mode] -- function sqlite3_enable_shared_cache (arg1 : int) return int; -- /usr/include/sqlite3.h:5243 pragma Import (C, sqlite3_enable_shared_cache, "sqlite3_enable_shared_cache"); --** CAPI3REF: Attempt To Free Heap Memory --** --** ^The sqlite3_release_memory() interface attempts to free N bytes --** of heap memory by deallocating non-essential memory allocations --** held by the database library. Memory used to cache database --** pages to improve performance is an example of non-essential memory. --** ^sqlite3_release_memory() returns the number of bytes actually freed, --** which might be more or less than the amount requested. --** ^The sqlite3_release_memory() routine is a no-op returning zero --** if SQLite is not compiled with [SQLITE_ENABLE_MEMORY_MANAGEMENT]. --** --** See also: [sqlite3_db_release_memory()] -- function sqlite3_release_memory (arg1 : int) return int; -- /usr/include/sqlite3.h:5259 pragma Import (C, sqlite3_release_memory, "sqlite3_release_memory"); --** CAPI3REF: Free Memory Used By A Database Connection --** METHOD: sqlite3 --** --** ^The sqlite3_db_release_memory(D) interface attempts to free as much heap --** memory as possible from database connection D. Unlike the --** [sqlite3_release_memory()] interface, this interface is in effect even --** when the [SQLITE_ENABLE_MEMORY_MANAGEMENT] compile-time option is --** omitted. --** --** See also: [sqlite3_release_memory()] -- function sqlite3_db_release_memory (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:5273 pragma Import (C, sqlite3_db_release_memory, "sqlite3_db_release_memory"); --** CAPI3REF: Impose A Limit On Heap Size --** --** ^The sqlite3_soft_heap_limit64() interface sets and/or queries the --** soft limit on the amount of heap memory that may be allocated by SQLite. --** ^SQLite strives to keep heap memory utilization below the soft heap --** limit by reducing the number of pages held in the page cache --** as heap memory usages approaches the limit. --** ^The soft heap limit is "soft" because even though SQLite strives to stay --** below the limit, it will exceed the limit rather than generate --** an [SQLITE_NOMEM] error. In other words, the soft heap limit --** is advisory only. --** --** ^The return value from sqlite3_soft_heap_limit64() is the size of --** the soft heap limit prior to the call, or negative in the case of an --** error. ^If the argument N is negative --** then no change is made to the soft heap limit. Hence, the current --** size of the soft heap limit can be determined by invoking --** sqlite3_soft_heap_limit64() with a negative argument. --** --** ^If the argument N is zero then the soft heap limit is disabled. --** --** ^(The soft heap limit is not enforced in the current implementation --** if one or more of following conditions are true: --** --** <ul> --** <li> The soft heap limit is set to zero. --** <li> Memory accounting is disabled using a combination of the --** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and --** the [SQLITE_DEFAULT_MEMSTATUS] compile-time option. --** <li> An alternative page cache implementation is specified using --** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...). --** <li> The page cache allocates from its own memory pool supplied --** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than --** from the heap. --** </ul>)^ --** --** Beginning with SQLite version 3.7.3, the soft heap limit is enforced --** regardless of whether or not the [SQLITE_ENABLE_MEMORY_MANAGEMENT] --** compile-time option is invoked. With [SQLITE_ENABLE_MEMORY_MANAGEMENT], --** the soft heap limit is enforced on every memory allocation. Without --** [SQLITE_ENABLE_MEMORY_MANAGEMENT], the soft heap limit is only enforced --** when memory is allocated by the page cache. Testing suggests that because --** the page cache is the predominate memory user in SQLite, most --** applications will achieve adequate soft heap limit enforcement without --** the use of [SQLITE_ENABLE_MEMORY_MANAGEMENT]. --** --** The circumstances under which SQLite will enforce the soft heap limit may --** changes in future releases of SQLite. -- function sqlite3_soft_heap_limit64 (N : sqlite3_int64) return sqlite3_int64; -- /usr/include/sqlite3.h:5325 pragma Import (C, sqlite3_soft_heap_limit64, "sqlite3_soft_heap_limit64"); --** CAPI3REF: Deprecated Soft Heap Limit Interface --** DEPRECATED --** --** This is a deprecated version of the [sqlite3_soft_heap_limit64()] --** interface. This routine is provided for historical compatibility --** only. All new applications should use the --** [sqlite3_soft_heap_limit64()] interface rather than this one. -- procedure sqlite3_soft_heap_limit (N : int); -- /usr/include/sqlite3.h:5336 pragma Import (C, sqlite3_soft_heap_limit, "sqlite3_soft_heap_limit"); --** CAPI3REF: Extract Metadata About A Column Of A Table --** METHOD: sqlite3 --** --** ^(The sqlite3_table_column_metadata(X,D,T,C,....) routine returns --** information about column C of table T in database D --** on [database connection] X.)^ ^The sqlite3_table_column_metadata() --** interface returns SQLITE_OK and fills in the non-NULL pointers in --** the final five arguments with appropriate values if the specified --** column exists. ^The sqlite3_table_column_metadata() interface returns --** SQLITE_ERROR and if the specified column does not exist. --** ^If the column-name parameter to sqlite3_table_column_metadata() is a --** NULL pointer, then this routine simply checks for the existance of the --** table and returns SQLITE_OK if the table exists and SQLITE_ERROR if it --** does not. --** --** ^The column is identified by the second, third and fourth parameters to --** this function. ^(The second parameter is either the name of the database --** (i.e. "main", "temp", or an attached database) containing the specified --** table or NULL.)^ ^If it is NULL, then all attached databases are searched --** for the table using the same algorithm used by the database engine to --** resolve unqualified table references. --** --** ^The third and fourth parameters to this function are the table and column --** name of the desired column, respectively. --** --** ^Metadata is returned by writing to the memory locations passed as the 5th --** and subsequent parameters to this function. ^Any of these arguments may be --** NULL, in which case the corresponding element of metadata is omitted. --** --** ^(<blockquote> --** <table border="1"> --** <tr><th> Parameter <th> Output<br>Type <th> Description --** --** <tr><td> 5th <td> const char* <td> Data type --** <tr><td> 6th <td> const char* <td> Name of default collation sequence --** <tr><td> 7th <td> int <td> True if column has a NOT NULL constraint --** <tr><td> 8th <td> int <td> True if column is part of the PRIMARY KEY --** <tr><td> 9th <td> int <td> True if column is [AUTOINCREMENT] --** </table> --** </blockquote>)^ --** --** ^The memory pointed to by the character pointers returned for the --** declaration type and collation sequence is valid until the next --** call to any SQLite API function. --** --** ^If the specified table is actually a view, an [error code] is returned. --** --** ^If the specified column is "rowid", "oid" or "_rowid_" and the table --** is not a [WITHOUT ROWID] table and an --** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output --** parameters are set for the explicitly declared column. ^(If there is no --** [INTEGER PRIMARY KEY] column, then the outputs --** for the [rowid] are set as follows: --** --** <pre> --** data type: "INTEGER" --** collation sequence: "BINARY" --** not null: 0 --** primary key: 1 --** auto increment: 0 --** </pre>)^ --** --** ^This function causes all database schemas to be read from disk and --** parsed, if that has not already been done, and returns an error if --** any errors are encountered while loading the schema. -- function sqlite3_table_column_metadata (db : access sqlite3; zDbName : Interfaces.C.Strings.chars_ptr; zTableName : Interfaces.C.Strings.chars_ptr; zColumnName : Interfaces.C.Strings.chars_ptr; pzDataType : System.Address; pzCollSeq : System.Address; pNotNull : access int; pPrimaryKey : access int; pAutoinc : access int) return int; -- /usr/include/sqlite3.h:5406 pragma Import (C, sqlite3_table_column_metadata, "sqlite3_table_column_metadata"); -- Connection handle -- Database name or NULL -- Table name -- Column name -- OUTPUT: Declared data type -- OUTPUT: Collation sequence name -- OUTPUT: True if NOT NULL constraint exists -- OUTPUT: True if column part of PK -- OUTPUT: True if column is auto-increment --** CAPI3REF: Load An Extension --** METHOD: sqlite3 --** --** ^This interface loads an SQLite extension library from the named file. --** --** ^The sqlite3_load_extension() interface attempts to load an --** [SQLite extension] library contained in the file zFile. If --** the file cannot be loaded directly, attempts are made to load --** with various operating-system specific extensions added. --** So for example, if "samplelib" cannot be loaded, then names like --** "samplelib.so" or "samplelib.dylib" or "samplelib.dll" might --** be tried also. --** --** ^The entry point is zProc. --** ^(zProc may be 0, in which case SQLite will try to come up with an --** entry point name on its own. It first tries "sqlite3_extension_init". --** If that does not work, it constructs a name "sqlite3_X_init" where the --** X is consists of the lower-case equivalent of all ASCII alphabetic --** characters in the filename from the last "/" to the first following --** "." and omitting any initial "lib".)^ --** ^The sqlite3_load_extension() interface returns --** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong. --** ^If an error occurs and pzErrMsg is not 0, then the --** [sqlite3_load_extension()] interface shall attempt to --** fill *pzErrMsg with error message text stored in memory --** obtained from [sqlite3_malloc()]. The calling function --** should free this memory by calling [sqlite3_free()]. --** --** ^Extension loading must be enabled using --** [sqlite3_enable_load_extension()] prior to calling this API, --** otherwise an error will be returned. --** --** See also the [load_extension() SQL function]. -- function sqlite3_load_extension (db : access sqlite3; zFile : Interfaces.C.Strings.chars_ptr; zProc : Interfaces.C.Strings.chars_ptr; pzErrMsg : System.Address) return int; -- /usr/include/sqlite3.h:5453 pragma Import (C, sqlite3_load_extension, "sqlite3_load_extension"); -- Load the extension into this database connection -- Name of the shared library containing extension -- Entry point. Derived from zFile if 0 -- Put error message here if not 0 --** CAPI3REF: Enable Or Disable Extension Loading --** METHOD: sqlite3 --** --** ^So as not to open security holes in older applications that are --** unprepared to deal with [extension loading], and as a means of disabling --** [extension loading] while evaluating user-entered SQL, the following API --** is provided to turn the [sqlite3_load_extension()] mechanism on and off. --** --** ^Extension loading is off by default. --** ^Call the sqlite3_enable_load_extension() routine with onoff==1 --** to turn extension loading on and call it with onoff==0 to turn --** it back off again. -- function sqlite3_enable_load_extension (db : access sqlite3; onoff : int) return int; -- /usr/include/sqlite3.h:5474 pragma Import (C, sqlite3_enable_load_extension, "sqlite3_enable_load_extension"); --** CAPI3REF: Automatically Load Statically Linked Extensions --** --** ^This interface causes the xEntryPoint() function to be invoked for --** each new [database connection] that is created. The idea here is that --** xEntryPoint() is the entry point for a statically linked [SQLite extension] --** that is to be automatically loaded into all new database connections. --** --** ^(Even though the function prototype shows that xEntryPoint() takes --** no arguments and returns void, SQLite invokes xEntryPoint() with three --** arguments and expects and integer result as if the signature of the --** entry point where as follows: --** --** <blockquote><pre> --** &nbsp; int xEntryPoint( --** &nbsp; sqlite3 *db, --** &nbsp; const char **pzErrMsg, --** &nbsp; const struct sqlite3_api_routines *pThunk --** &nbsp; ); --** </pre></blockquote>)^ --** --** If the xEntryPoint routine encounters an error, it should make *pzErrMsg --** point to an appropriate error message (obtained from [sqlite3_mprintf()]) --** and return an appropriate [error code]. ^SQLite ensures that *pzErrMsg --** is NULL before calling the xEntryPoint(). ^SQLite will invoke --** [sqlite3_free()] on *pzErrMsg after xEntryPoint() returns. ^If any --** xEntryPoint() returns an error, the [sqlite3_open()], [sqlite3_open16()], --** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail. --** --** ^Calling sqlite3_auto_extension(X) with an entry point X that is already --** on the list of automatic extensions is a harmless no-op. ^No entry point --** will be called more than once for each database connection that is opened. --** --** See also: [sqlite3_reset_auto_extension()] --** and [sqlite3_cancel_auto_extension()] -- function sqlite3_auto_extension (xEntryPoint : access procedure) return int; -- /usr/include/sqlite3.h:5512 pragma Import (C, sqlite3_auto_extension, "sqlite3_auto_extension"); --** CAPI3REF: Cancel Automatic Extension Loading --** --** ^The [sqlite3_cancel_auto_extension(X)] interface unregisters the --** initialization routine X that was registered using a prior call to --** [sqlite3_auto_extension(X)]. ^The [sqlite3_cancel_auto_extension(X)] --** routine returns 1 if initialization routine X was successfully --** unregistered and it returns 0 if X was not on the list of initialization --** routines. -- function sqlite3_cancel_auto_extension (xEntryPoint : access procedure) return int; -- /usr/include/sqlite3.h:5524 pragma Import (C, sqlite3_cancel_auto_extension, "sqlite3_cancel_auto_extension"); --** CAPI3REF: Reset Automatic Extension Loading --** --** ^This interface disables all automatic extensions previously --** registered using [sqlite3_auto_extension()]. -- procedure sqlite3_reset_auto_extension; -- /usr/include/sqlite3.h:5532 pragma Import (C, sqlite3_reset_auto_extension, "sqlite3_reset_auto_extension"); --** The interface to the virtual-table mechanism is currently considered --** to be experimental. The interface might change in incompatible ways. --** If this is a problem for you, do not use the interface at this time. --** --** When the virtual-table mechanism stabilizes, we will declare the --** interface fixed, support it indefinitely, and remove this comment. -- --** Structures used by the virtual table interface -- --** CAPI3REF: Virtual Table Object --** KEYWORDS: sqlite3_module {virtual table module} --** --** This structure, sometimes called a "virtual table module", --** defines the implementation of a [virtual tables]. --** This structure consists mostly of methods for the module. --** --** ^A virtual table module is created by filling in a persistent --** instance of this structure and passing a pointer to that instance --** to [sqlite3_create_module()] or [sqlite3_create_module_v2()]. --** ^The registration remains valid until it is replaced by a different --** module or until the [database connection] closes. The content --** of this structure must not change while it is registered with --** any database connection. -- type sqlite3_vtab; type sqlite3_vtab_cursor; type sqlite3_index_info; type sqlite3_module is record iVersion : aliased int; -- /usr/include/sqlite3.h:5568 xCreate : access function (arg1 : access sqlite3; arg2 : System.Address; arg3 : int; arg4 : System.Address; arg5 : System.Address; arg6 : System.Address) return int; -- /usr/include/sqlite3.h:5571 xConnect : access function (arg1 : access sqlite3; arg2 : System.Address; arg3 : int; arg4 : System.Address; arg5 : System.Address; arg6 : System.Address) return int; -- /usr/include/sqlite3.h:5574 xBestIndex : access function (arg1 : access sqlite3_vtab; arg2 : access sqlite3_index_info) return int; -- /usr/include/sqlite3.h:5575 xDisconnect : access function (arg1 : access sqlite3_vtab) return int; -- /usr/include/sqlite3.h:5576 xDestroy : access function (arg1 : access sqlite3_vtab) return int; -- /usr/include/sqlite3.h:5577 xOpen : access function (arg1 : access sqlite3_vtab; arg2 : System.Address) return int; -- /usr/include/sqlite3.h:5578 xClose : access function (arg1 : access sqlite3_vtab_cursor) return int; -- /usr/include/sqlite3.h:5579 xFilter : access function (arg1 : access sqlite3_vtab_cursor; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int; arg5 : System.Address) return int; -- /usr/include/sqlite3.h:5581 xNext : access function (arg1 : access sqlite3_vtab_cursor) return int; -- /usr/include/sqlite3.h:5582 xEof : access function (arg1 : access sqlite3_vtab_cursor) return int; -- /usr/include/sqlite3.h:5583 xColumn : access function (arg1 : access sqlite3_vtab_cursor; arg2 : access sqlite3_context; arg3 : int) return int; -- /usr/include/sqlite3.h:5584 xRowid : access function (arg1 : access sqlite3_vtab_cursor; arg2 : access sqlite3_int64) return int; -- /usr/include/sqlite3.h:5585 xUpdate : access function (arg1 : access sqlite3_vtab; arg2 : int; arg3 : System.Address; arg4 : access sqlite3_int64) return int; -- /usr/include/sqlite3.h:5586 xBegin : access function (arg1 : access sqlite3_vtab) return int; -- /usr/include/sqlite3.h:5587 xSync : access function (arg1 : access sqlite3_vtab) return int; -- /usr/include/sqlite3.h:5588 xCommit : access function (arg1 : access sqlite3_vtab) return int; -- /usr/include/sqlite3.h:5589 xRollback : access function (arg1 : access sqlite3_vtab) return int; -- /usr/include/sqlite3.h:5590 xFindFunction : access function (arg1 : access sqlite3_vtab; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : System.Address; arg5 : System.Address) return int; -- /usr/include/sqlite3.h:5593 xRename : access function (arg1 : access sqlite3_vtab; arg2 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:5594 xSavepoint : access function (arg1 : access sqlite3_vtab; arg2 : int) return int; -- /usr/include/sqlite3.h:5597 xRelease : access function (arg1 : access sqlite3_vtab; arg2 : int) return int; -- /usr/include/sqlite3.h:5598 xRollbackTo : access function (arg1 : access sqlite3_vtab; arg2 : int) return int; -- /usr/include/sqlite3.h:5599 end record; pragma Convention (C_Pass_By_Copy, sqlite3_module); -- /usr/include/sqlite3.h:5567 -- The methods above are in version 1 of the sqlite_module object. Those -- ** below are for version 2 and greater. --** CAPI3REF: Virtual Table Indexing Information --** KEYWORDS: sqlite3_index_info --** --** The sqlite3_index_info structure and its substructures is used as part --** of the [virtual table] interface to --** pass information into and receive the reply from the [xBestIndex] --** method of a [virtual table module]. The fields under **Inputs** are the --** inputs to xBestIndex and are read-only. xBestIndex inserts its --** results into the **Outputs** fields. --** --** ^(The aConstraint[] array records WHERE clause constraints of the form: --** --** <blockquote>column OP expr</blockquote> --** --** where OP is =, &lt;, &lt;=, &gt;, or &gt;=.)^ ^(The particular operator is --** stored in aConstraint[].op using one of the --** [SQLITE_INDEX_CONSTRAINT_EQ | SQLITE_INDEX_CONSTRAINT_ values].)^ --** ^(The index of the column is stored in --** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the --** expr on the right-hand side can be evaluated (and thus the constraint --** is usable) and false if it cannot.)^ --** --** ^The optimizer automatically inverts terms of the form "expr OP column" --** and makes other simplifications to the WHERE clause in an attempt to --** get as many WHERE clause terms into the form shown above as possible. --** ^The aConstraint[] array only reports WHERE clause terms that are --** relevant to the particular virtual table being queried. --** --** ^Information about the ORDER BY clause is stored in aOrderBy[]. --** ^Each term of aOrderBy records a column of the ORDER BY clause. --** --** The colUsed field indicates which columns of the virtual table may be --** required by the current scan. Virtual table columns are numbered from --** zero in the order in which they appear within the CREATE TABLE statement --** passed to sqlite3_declare_vtab(). For the first 63 columns (columns 0-62), --** the corresponding bit is set within the colUsed mask if the column may be --** required by SQLite. If the table has at least 64 columns and any column --** to the right of the first 63 is required, then bit 63 of colUsed is also --** set. In other words, column iCol may be required if the expression --** (colUsed & ((sqlite3_uint64)1 << (iCol>=63 ? 63 : iCol))) evaluates to --** non-zero. --** --** The [xBestIndex] method must fill aConstraintUsage[] with information --** about what parameters to pass to xFilter. ^If argvIndex>0 then --** the right-hand side of the corresponding aConstraint[] is evaluated --** and becomes the argvIndex-th entry in argv. ^(If aConstraintUsage[].omit --** is true, then the constraint is assumed to be fully handled by the --** virtual table and is not checked again by SQLite.)^ --** --** ^The idxNum and idxPtr values are recorded and passed into the --** [xFilter] method. --** ^[sqlite3_free()] is used to free idxPtr if and only if --** needToFreeIdxPtr is true. --** --** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in --** the correct order to satisfy the ORDER BY clause so that no separate --** sorting step is required. --** --** ^The estimatedCost value is an estimate of the cost of a particular --** strategy. A cost of N indicates that the cost of the strategy is similar --** to a linear scan of an SQLite table with N rows. A cost of log(N) --** indicates that the expense of the operation is similar to that of a --** binary search on a unique indexed field of an SQLite table with N rows. --** --** ^The estimatedRows value is an estimate of the number of rows that --** will be returned by the strategy. --** --** The xBestIndex method may optionally populate the idxFlags field with a --** mask of SQLITE_INDEX_SCAN_* flags. Currently there is only one such flag - --** SQLITE_INDEX_SCAN_UNIQUE. If the xBestIndex method sets this flag, SQLite --** assumes that the strategy may visit at most one row. --** --** Additionally, if xBestIndex sets the SQLITE_INDEX_SCAN_UNIQUE flag, then --** SQLite also assumes that if a call to the xUpdate() method is made as --** part of the same statement to delete or update a virtual table row and the --** implementation returns SQLITE_CONSTRAINT, then there is no need to rollback --** any database changes. In other words, if the xUpdate() returns --** SQLITE_CONSTRAINT, the database contents must be exactly as they were --** before xUpdate was called. By contrast, if SQLITE_INDEX_SCAN_UNIQUE is not --** set and xUpdate returns SQLITE_CONSTRAINT, any database changes made by --** the xUpdate method are automatically rolled back by SQLite. --** --** IMPORTANT: The estimatedRows field was added to the sqlite3_index_info --** structure for SQLite version 3.8.2. If a virtual table extension is --** used with an SQLite version earlier than 3.8.2, the results of attempting --** to read or write the estimatedRows field are undefined (but are likely --** to included crashing the application). The estimatedRows field should --** therefore only be used if [sqlite3_libversion_number()] returns a --** value greater than or equal to 3008002. Similarly, the idxFlags field --** was added for version 3.9.0. It may therefore only be used if --** sqlite3_libversion_number() returns a value greater than or equal to --** 3009000. -- -- Inputs -- Number of entries in aConstraint type sqlite3_index_constraint is record iColumn : aliased int; -- /usr/include/sqlite3.h:5700 op : aliased unsigned_char; -- /usr/include/sqlite3.h:5701 usable : aliased unsigned_char; -- /usr/include/sqlite3.h:5702 iTermOffset : aliased int; -- /usr/include/sqlite3.h:5703 end record; pragma Convention (C_Pass_By_Copy, sqlite3_index_constraint); type sqlite3_index_orderby is record iColumn : aliased int; -- /usr/include/sqlite3.h:5707 desc : aliased unsigned_char; -- /usr/include/sqlite3.h:5708 end record; pragma Convention (C_Pass_By_Copy, sqlite3_index_orderby); type sqlite3_index_constraint_usage is record argvIndex : aliased int; -- /usr/include/sqlite3.h:5712 omit : aliased unsigned_char; -- /usr/include/sqlite3.h:5713 end record; pragma Convention (C_Pass_By_Copy, sqlite3_index_constraint_usage); type sqlite3_index_info is record nConstraint : aliased int; -- /usr/include/sqlite3.h:5698 aConstraint : access sqlite3_index_constraint; -- /usr/include/sqlite3.h:5704 nOrderBy : aliased int; -- /usr/include/sqlite3.h:5705 aOrderBy : access sqlite3_index_orderby; -- /usr/include/sqlite3.h:5709 aConstraintUsage : access sqlite3_index_constraint_usage; -- /usr/include/sqlite3.h:5714 idxNum : aliased int; -- /usr/include/sqlite3.h:5715 idxStr : Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:5716 needToFreeIdxStr : aliased int; -- /usr/include/sqlite3.h:5717 orderByConsumed : aliased int; -- /usr/include/sqlite3.h:5718 estimatedCost : aliased double; -- /usr/include/sqlite3.h:5719 estimatedRows : aliased sqlite3_int64; -- /usr/include/sqlite3.h:5721 idxFlags : aliased int; -- /usr/include/sqlite3.h:5723 colUsed : aliased sqlite3_uint64; -- /usr/include/sqlite3.h:5725 end record; pragma Convention (C_Pass_By_Copy, sqlite3_index_info); -- /usr/include/sqlite3.h:5696 -- Column constrained. -1 for ROWID -- Constraint operator -- True if this constraint is usable -- Used internally - xBestIndex should ignore -- Table of WHERE clause constraints -- Number of terms in the ORDER BY clause -- Column number -- True for DESC. False for ASC. -- The ORDER BY clause -- Outputs -- if >0, constraint is part of argv to xFilter -- Do not code a test for this constraint -- Number used to identify the index -- String, possibly obtained from sqlite3_malloc -- Free idxStr using sqlite3_free() if true -- True if output is already ordered -- Estimated cost of using this index -- Fields below are only available in SQLite 3.8.2 and later -- Estimated number of rows returned -- Fields below are only available in SQLite 3.9.0 and later -- Mask of SQLITE_INDEX_SCAN_* flags -- Fields below are only available in SQLite 3.10.0 and later -- Input: Mask of columns used by statement --** CAPI3REF: Virtual Table Scan Flags -- --** CAPI3REF: Virtual Table Constraint Operator Codes --** --** These macros defined the allowed values for the --** [sqlite3_index_info].aConstraint[].op field. Each value represents --** an operator that is part of a constraint term in the wHERE clause of --** a query that uses a [virtual table]. -- --** CAPI3REF: Register A Virtual Table Implementation --** METHOD: sqlite3 --** --** ^These routines are used to register a new [virtual table module] name. --** ^Module names must be registered before --** creating a new [virtual table] using the module and before using a --** preexisting [virtual table] for the module. --** --** ^The module name is registered on the [database connection] specified --** by the first parameter. ^The name of the module is given by the --** second parameter. ^The third parameter is a pointer to --** the implementation of the [virtual table module]. ^The fourth --** parameter is an arbitrary client data pointer that is passed through --** into the [xCreate] and [xConnect] methods of the virtual table module --** when a new virtual table is be being created or reinitialized. --** --** ^The sqlite3_create_module_v2() interface has a fifth parameter which --** is a pointer to a destructor for the pClientData. ^SQLite will --** invoke the destructor function (if it is not NULL) when SQLite --** no longer needs the pClientData pointer. ^The destructor will also --** be invoked if the call to sqlite3_create_module_v2() fails. --** ^The sqlite3_create_module() --** interface is equivalent to sqlite3_create_module_v2() with a NULL --** destructor. -- function sqlite3_create_module (db : access sqlite3; zName : Interfaces.C.Strings.chars_ptr; p : access constant sqlite3_module; pClientData : System.Address) return int; -- /usr/include/sqlite3.h:5777 pragma Import (C, sqlite3_create_module, "sqlite3_create_module"); -- SQLite connection to register module with -- Name of the module -- Methods for the module -- Client data for xCreate/xConnect function sqlite3_create_module_v2 (db : access sqlite3; zName : Interfaces.C.Strings.chars_ptr; p : access constant sqlite3_module; pClientData : System.Address; xDestroy : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:5783 pragma Import (C, sqlite3_create_module_v2, "sqlite3_create_module_v2"); -- SQLite connection to register module with -- Name of the module -- Methods for the module -- Client data for xCreate/xConnect -- Module destructor function --** CAPI3REF: Virtual Table Instance Object --** KEYWORDS: sqlite3_vtab --** --** Every [virtual table module] implementation uses a subclass --** of this object to describe a particular instance --** of the [virtual table]. Each subclass will --** be tailored to the specific needs of the module implementation. --** The purpose of this superclass is to define certain fields that are --** common to all module implementations. --** --** ^Virtual tables methods can set an error message by assigning a --** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should --** take care that any prior string is freed by a call to [sqlite3_free()] --** prior to assigning a new string to zErrMsg. ^After the error message --** is delivered up to the client application, the string will be automatically --** freed by sqlite3_free() and the zErrMsg field will be zeroed. -- -- The module for this virtual table type sqlite3_vtab is record pModule : access constant sqlite3_module; -- /usr/include/sqlite3.h:5810 nRef : aliased int; -- /usr/include/sqlite3.h:5811 zErrMsg : Interfaces.C.Strings.chars_ptr; -- /usr/include/sqlite3.h:5812 end record; pragma Convention (C_Pass_By_Copy, sqlite3_vtab); -- /usr/include/sqlite3.h:5809 -- Number of open cursors -- Error message from sqlite3_mprintf() -- Virtual table implementations will typically add additional fields --** CAPI3REF: Virtual Table Cursor Object --** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor} --** --** Every [virtual table module] implementation uses a subclass of the --** following structure to describe cursors that point into the --** [virtual table] and are used --** to loop through the virtual table. Cursors are created using the --** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed --** by the [sqlite3_module.xClose | xClose] method. Cursors are used --** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods --** of the module. Each module implementation will define --** the content of a cursor structure to suit its own needs. --** --** This superclass exists in order to define fields of the cursor that --** are common to all implementations. -- -- Virtual table of this cursor type sqlite3_vtab_cursor is record pVtab : access sqlite3_vtab; -- /usr/include/sqlite3.h:5834 end record; pragma Convention (C_Pass_By_Copy, sqlite3_vtab_cursor); -- /usr/include/sqlite3.h:5833 -- Virtual table implementations will typically add additional fields --** CAPI3REF: Declare The Schema Of A Virtual Table --** --** ^The [xCreate] and [xConnect] methods of a --** [virtual table module] call this interface --** to declare the format (the names and datatypes of the columns) of --** the virtual tables they implement. -- function sqlite3_declare_vtab (arg1 : access sqlite3; zSQL : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:5846 pragma Import (C, sqlite3_declare_vtab, "sqlite3_declare_vtab"); --** CAPI3REF: Overload A Function For A Virtual Table --** METHOD: sqlite3 --** --** ^(Virtual tables can provide alternative implementations of functions --** using the [xFindFunction] method of the [virtual table module]. --** But global versions of those functions --** must exist in order to be overloaded.)^ --** --** ^(This API makes sure a global version of a function with a particular --** name and number of parameters exists. If no such function exists --** before this API is called, a new function is created.)^ ^The implementation --** of the new function always causes an exception to be thrown. So --** the new function is not good for anything by itself. Its only --** purpose is to be a placeholder function that can be overloaded --** by a [virtual table]. -- function sqlite3_overload_function (arg1 : access sqlite3; zFuncName : Interfaces.C.Strings.chars_ptr; nArg : int) return int; -- /usr/include/sqlite3.h:5865 pragma Import (C, sqlite3_overload_function, "sqlite3_overload_function"); --** The interface to the virtual-table mechanism defined above (back up --** to a comment remarkably similar to this one) is currently considered --** to be experimental. The interface might change in incompatible ways. --** If this is a problem for you, do not use the interface at this time. --** --** When the virtual-table mechanism stabilizes, we will declare the --** interface fixed, support it indefinitely, and remove this comment. -- --** CAPI3REF: A Handle To An Open BLOB --** KEYWORDS: {BLOB handle} {BLOB handles} --** --** An instance of this object represents an open BLOB on which --** [sqlite3_blob_open | incremental BLOB I/O] can be performed. --** ^Objects of this type are created by [sqlite3_blob_open()] --** and destroyed by [sqlite3_blob_close()]. --** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces --** can be used to read or write small subsections of the BLOB. --** ^The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes. -- type sqlite3_blob is null record; -- incomplete struct --** CAPI3REF: Open A BLOB For Incremental I/O --** METHOD: sqlite3 --** CONSTRUCTOR: sqlite3_blob --** --** ^(This interfaces opens a [BLOB handle | handle] to the BLOB located --** in row iRow, column zColumn, table zTable in database zDb; --** in other words, the same BLOB that would be selected by: --** --** <pre> --** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow; --** </pre>)^ --** --** ^(Parameter zDb is not the filename that contains the database, but --** rather the symbolic name of the database. For attached databases, this is --** the name that appears after the AS keyword in the [ATTACH] statement. --** For the main database file, the database name is "main". For TEMP --** tables, the database name is "temp".)^ --** --** ^If the flags parameter is non-zero, then the BLOB is opened for read --** and write access. ^If the flags parameter is zero, the BLOB is opened for --** read-only access. --** --** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is stored --** in *ppBlob. Otherwise an [error code] is returned and, unless the error --** code is SQLITE_MISUSE, *ppBlob is set to NULL.)^ ^This means that, provided --** the API is not misused, it is always safe to call [sqlite3_blob_close()] --** on *ppBlob after this function it returns. --** --** This function fails with SQLITE_ERROR if any of the following are true: --** <ul> --** <li> ^(Database zDb does not exist)^, --** <li> ^(Table zTable does not exist within database zDb)^, --** <li> ^(Table zTable is a WITHOUT ROWID table)^, --** <li> ^(Column zColumn does not exist)^, --** <li> ^(Row iRow is not present in the table)^, --** <li> ^(The specified column of row iRow contains a value that is not --** a TEXT or BLOB value)^, --** <li> ^(Column zColumn is part of an index, PRIMARY KEY or UNIQUE --** constraint and the blob is being opened for read/write access)^, --** <li> ^([foreign key constraints | Foreign key constraints] are enabled, --** column zColumn is part of a [child key] definition and the blob is --** being opened for read/write access)^. --** </ul> --** --** ^Unless it returns SQLITE_MISUSE, this function sets the --** [database connection] error code and message accessible via --** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. --** --** --** ^(If the row that a BLOB handle points to is modified by an --** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects --** then the BLOB handle is marked as "expired". --** This is true if any column of the row is changed, even a column --** other than the one the BLOB handle is open on.)^ --** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for --** an expired BLOB handle fail with a return code of [SQLITE_ABORT]. --** ^(Changes written into a BLOB prior to the BLOB expiring are not --** rolled back by the expiration of the BLOB. Such changes will eventually --** commit if the transaction continues to completion.)^ --** --** ^Use the [sqlite3_blob_bytes()] interface to determine the size of --** the opened blob. ^The size of a blob may not be changed by this --** interface. Use the [UPDATE] SQL command to change the size of a --** blob. --** --** ^The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces --** and the built-in [zeroblob] SQL function may be used to create a --** zero-filled blob to read or write using the incremental-blob interface. --** --** To avoid a resource leak, every open [BLOB handle] should eventually --** be released by a call to [sqlite3_blob_close()]. -- function sqlite3_blob_open (arg1 : access sqlite3; zDb : Interfaces.C.Strings.chars_ptr; zTable : Interfaces.C.Strings.chars_ptr; zColumn : Interfaces.C.Strings.chars_ptr; iRow : sqlite3_int64; flags : int; ppBlob : System.Address) return int; -- /usr/include/sqlite3.h:5964 pragma Import (C, sqlite3_blob_open, "sqlite3_blob_open"); --** CAPI3REF: Move a BLOB Handle to a New Row --** METHOD: sqlite3_blob --** --** ^This function is used to move an existing blob handle so that it points --** to a different row of the same database table. ^The new row is identified --** by the rowid value passed as the second argument. Only the row can be --** changed. ^The database, table and column on which the blob handle is open --** remain the same. Moving an existing blob handle to a new row can be --** faster than closing the existing handle and opening a new one. --** --** ^(The new row must meet the same criteria as for [sqlite3_blob_open()] - --** it must exist and there must be either a blob or text value stored in --** the nominated column.)^ ^If the new row is not present in the table, or if --** it does not contain a blob or text value, or if another error occurs, an --** SQLite error code is returned and the blob handle is considered aborted. --** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or --** [sqlite3_blob_reopen()] on an aborted blob handle immediately return --** SQLITE_ABORT. ^Calling [sqlite3_blob_bytes()] on an aborted blob handle --** always returns zero. --** --** ^This function sets the database handle error code and message. -- function sqlite3_blob_reopen (arg1 : access sqlite3_blob; arg2 : sqlite3_int64) return int; -- /usr/include/sqlite3.h:5997 pragma Import (C, sqlite3_blob_reopen, "sqlite3_blob_reopen"); --** CAPI3REF: Close A BLOB Handle --** DESTRUCTOR: sqlite3_blob --** --** ^This function closes an open [BLOB handle]. ^(The BLOB handle is closed --** unconditionally. Even if this routine returns an error code, the --** handle is still closed.)^ --** --** ^If the blob handle being closed was opened for read-write access, and if --** the database is in auto-commit mode and there are no other open read-write --** blob handles or active write statements, the current transaction is --** committed. ^If an error occurs while committing the transaction, an error --** code is returned and the transaction rolled back. --** --** Calling this function with an argument that is not a NULL pointer or an --** open blob handle results in undefined behaviour. ^Calling this routine --** with a null pointer (such as would be returned by a failed call to --** [sqlite3_blob_open()]) is a harmless no-op. ^Otherwise, if this function --** is passed a valid open blob handle, the values returned by the --** sqlite3_errcode() and sqlite3_errmsg() functions are set before returning. -- function sqlite3_blob_close (arg1 : access sqlite3_blob) return int; -- /usr/include/sqlite3.h:6020 pragma Import (C, sqlite3_blob_close, "sqlite3_blob_close"); --** CAPI3REF: Return The Size Of An Open BLOB --** METHOD: sqlite3_blob --** --** ^Returns the size in bytes of the BLOB accessible via the --** successfully opened [BLOB handle] in its only argument. ^The --** incremental blob I/O routines can only read or overwriting existing --** blob content; they cannot change the size of a blob. --** --** This routine only works on a [BLOB handle] which has been created --** by a prior successful call to [sqlite3_blob_open()] and which has not --** been closed by [sqlite3_blob_close()]. Passing any other pointer in --** to this routine results in undefined and probably undesirable behavior. -- function sqlite3_blob_bytes (arg1 : access sqlite3_blob) return int; -- /usr/include/sqlite3.h:6036 pragma Import (C, sqlite3_blob_bytes, "sqlite3_blob_bytes"); --** CAPI3REF: Read Data From A BLOB Incrementally --** METHOD: sqlite3_blob --** --** ^(This function is used to read data from an open [BLOB handle] into a --** caller-supplied buffer. N bytes of data are copied into buffer Z --** from the open BLOB, starting at offset iOffset.)^ --** --** ^If offset iOffset is less than N bytes from the end of the BLOB, --** [SQLITE_ERROR] is returned and no data is read. ^If N or iOffset is --** less than zero, [SQLITE_ERROR] is returned and no data is read. --** ^The size of the blob (and hence the maximum value of N+iOffset) --** can be determined using the [sqlite3_blob_bytes()] interface. --** --** ^An attempt to read from an expired [BLOB handle] fails with an --** error code of [SQLITE_ABORT]. --** --** ^(On success, sqlite3_blob_read() returns SQLITE_OK. --** Otherwise, an [error code] or an [extended error code] is returned.)^ --** --** This routine only works on a [BLOB handle] which has been created --** by a prior successful call to [sqlite3_blob_open()] and which has not --** been closed by [sqlite3_blob_close()]. Passing any other pointer in --** to this routine results in undefined and probably undesirable behavior. --** --** See also: [sqlite3_blob_write()]. -- function sqlite3_blob_read (arg1 : access sqlite3_blob; Z : System.Address; N : int; iOffset : int) return int; -- /usr/include/sqlite3.h:6065 pragma Import (C, sqlite3_blob_read, "sqlite3_blob_read"); --** CAPI3REF: Write Data Into A BLOB Incrementally --** METHOD: sqlite3_blob --** --** ^(This function is used to write data into an open [BLOB handle] from a --** caller-supplied buffer. N bytes of data are copied from the buffer Z --** into the open BLOB, starting at offset iOffset.)^ --** --** ^(On success, sqlite3_blob_write() returns SQLITE_OK. --** Otherwise, an [error code] or an [extended error code] is returned.)^ --** ^Unless SQLITE_MISUSE is returned, this function sets the --** [database connection] error code and message accessible via --** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. --** --** ^If the [BLOB handle] passed as the first argument was not opened for --** writing (the flags parameter to [sqlite3_blob_open()] was zero), --** this function returns [SQLITE_READONLY]. --** --** This function may only modify the contents of the BLOB; it is --** not possible to increase the size of a BLOB using this API. --** ^If offset iOffset is less than N bytes from the end of the BLOB, --** [SQLITE_ERROR] is returned and no data is written. The size of the --** BLOB (and hence the maximum value of N+iOffset) can be determined --** using the [sqlite3_blob_bytes()] interface. ^If N or iOffset are less --** than zero [SQLITE_ERROR] is returned and no data is written. --** --** ^An attempt to write to an expired [BLOB handle] fails with an --** error code of [SQLITE_ABORT]. ^Writes to the BLOB that occurred --** before the [BLOB handle] expired are not rolled back by the --** expiration of the handle, though of course those changes might --** have been overwritten by the statement that expired the BLOB handle --** or by other independent statements. --** --** This routine only works on a [BLOB handle] which has been created --** by a prior successful call to [sqlite3_blob_open()] and which has not --** been closed by [sqlite3_blob_close()]. Passing any other pointer in --** to this routine results in undefined and probably undesirable behavior. --** --** See also: [sqlite3_blob_read()]. -- function sqlite3_blob_write (arg1 : access sqlite3_blob; z : System.Address; n : int; iOffset : int) return int; -- /usr/include/sqlite3.h:6107 pragma Import (C, sqlite3_blob_write, "sqlite3_blob_write"); --** CAPI3REF: Virtual File System Objects --** --** A virtual filesystem (VFS) is an [sqlite3_vfs] object --** that SQLite uses to interact --** with the underlying operating system. Most SQLite builds come with a --** single default VFS that is appropriate for the host computer. --** New VFSes can be registered and existing VFSes can be unregistered. --** The following interfaces are provided. --** --** ^The sqlite3_vfs_find() interface returns a pointer to a VFS given its name. --** ^Names are case sensitive. --** ^Names are zero-terminated UTF-8 strings. --** ^If there is no match, a NULL pointer is returned. --** ^If zVfsName is NULL then the default VFS is returned. --** --** ^New VFSes are registered with sqlite3_vfs_register(). --** ^Each new VFS becomes the default VFS if the makeDflt flag is set. --** ^The same VFS can be registered multiple times without injury. --** ^To make an existing VFS into the default VFS, register it again --** with the makeDflt flag set. If two different VFSes with the --** same name are registered, the behavior is undefined. If a --** VFS is registered with a name that is NULL or an empty string, --** then the behavior is undefined. --** --** ^Unregister a VFS with the sqlite3_vfs_unregister() interface. --** ^(If the default VFS is unregistered, another VFS is chosen as --** the default. The choice for the new VFS is arbitrary.)^ -- function sqlite3_vfs_find (zVfsName : Interfaces.C.Strings.chars_ptr) return access sqlite3_vfs; -- /usr/include/sqlite3.h:6138 pragma Import (C, sqlite3_vfs_find, "sqlite3_vfs_find"); function sqlite3_vfs_register (arg1 : access sqlite3_vfs; makeDflt : int) return int; -- /usr/include/sqlite3.h:6139 pragma Import (C, sqlite3_vfs_register, "sqlite3_vfs_register"); function sqlite3_vfs_unregister (arg1 : access sqlite3_vfs) return int; -- /usr/include/sqlite3.h:6140 pragma Import (C, sqlite3_vfs_unregister, "sqlite3_vfs_unregister"); --** CAPI3REF: Mutexes --** --** The SQLite core uses these routines for thread --** synchronization. Though they are intended for internal --** use by SQLite, code that links against SQLite is --** permitted to use any of these routines. --** --** The SQLite source code contains multiple implementations --** of these mutex routines. An appropriate implementation --** is selected automatically at compile-time. The following --** implementations are available in the SQLite core: --** --** <ul> --** <li> SQLITE_MUTEX_PTHREADS --** <li> SQLITE_MUTEX_W32 --** <li> SQLITE_MUTEX_NOOP --** </ul> --** --** The SQLITE_MUTEX_NOOP implementation is a set of routines --** that does no real locking and is appropriate for use in --** a single-threaded application. The SQLITE_MUTEX_PTHREADS and --** SQLITE_MUTEX_W32 implementations are appropriate for use on Unix --** and Windows. --** --** If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor --** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex --** implementation is included with the library. In this case the --** application must supply a custom mutex implementation using the --** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function --** before calling sqlite3_initialize() or any other public sqlite3_ --** function that calls sqlite3_initialize(). --** --** ^The sqlite3_mutex_alloc() routine allocates a new --** mutex and returns a pointer to it. ^The sqlite3_mutex_alloc() --** routine returns NULL if it is unable to allocate the requested --** mutex. The argument to sqlite3_mutex_alloc() must one of these --** integer constants: --** --** <ul> --** <li> SQLITE_MUTEX_FAST --** <li> SQLITE_MUTEX_RECURSIVE --** <li> SQLITE_MUTEX_STATIC_MASTER --** <li> SQLITE_MUTEX_STATIC_MEM --** <li> SQLITE_MUTEX_STATIC_OPEN --** <li> SQLITE_MUTEX_STATIC_PRNG --** <li> SQLITE_MUTEX_STATIC_LRU --** <li> SQLITE_MUTEX_STATIC_PMEM --** <li> SQLITE_MUTEX_STATIC_APP1 --** <li> SQLITE_MUTEX_STATIC_APP2 --** <li> SQLITE_MUTEX_STATIC_APP3 --** <li> SQLITE_MUTEX_STATIC_VFS1 --** <li> SQLITE_MUTEX_STATIC_VFS2 --** <li> SQLITE_MUTEX_STATIC_VFS3 --** </ul> --** --** ^The first two constants (SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) --** cause sqlite3_mutex_alloc() to create --** a new mutex. ^The new mutex is recursive when SQLITE_MUTEX_RECURSIVE --** is used but not necessarily so when SQLITE_MUTEX_FAST is used. --** The mutex implementation does not need to make a distinction --** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does --** not want to. SQLite will only request a recursive mutex in --** cases where it really needs one. If a faster non-recursive mutex --** implementation is available on the host platform, the mutex subsystem --** might return such a mutex in response to SQLITE_MUTEX_FAST. --** --** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other --** than SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) each return --** a pointer to a static preexisting mutex. ^Nine static mutexes are --** used by the current version of SQLite. Future versions of SQLite --** may add additional static mutexes. Static mutexes are for internal --** use by SQLite only. Applications that use SQLite mutexes should --** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or --** SQLITE_MUTEX_RECURSIVE. --** --** ^Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST --** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() --** returns a different mutex on every call. ^For the static --** mutex types, the same mutex is returned on every call that has --** the same type number. --** --** ^The sqlite3_mutex_free() routine deallocates a previously --** allocated dynamic mutex. Attempting to deallocate a static --** mutex results in undefined behavior. --** --** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt --** to enter a mutex. ^If another thread is already within the mutex, --** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return --** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK] --** upon successful entry. ^(Mutexes created using --** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread. --** In such cases, the --** mutex must be exited an equal number of times before another thread --** can enter.)^ If the same thread tries to enter any mutex other --** than an SQLITE_MUTEX_RECURSIVE more than once, the behavior is undefined. --** --** ^(Some systems (for example, Windows 95) do not support the operation --** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try() --** will always return SQLITE_BUSY. The SQLite core only ever uses --** sqlite3_mutex_try() as an optimization so this is acceptable --** behavior.)^ --** --** ^The sqlite3_mutex_leave() routine exits a mutex that was --** previously entered by the same thread. The behavior --** is undefined if the mutex is not currently entered by the --** calling thread or is not currently allocated. --** --** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or --** sqlite3_mutex_leave() is a NULL pointer, then all three routines --** behave as no-ops. --** --** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()]. -- function sqlite3_mutex_alloc (arg1 : int) return access sqlite3_mutex; -- /usr/include/sqlite3.h:6256 pragma Import (C, sqlite3_mutex_alloc, "sqlite3_mutex_alloc"); procedure sqlite3_mutex_free (arg1 : access sqlite3_mutex); -- /usr/include/sqlite3.h:6257 pragma Import (C, sqlite3_mutex_free, "sqlite3_mutex_free"); procedure sqlite3_mutex_enter (arg1 : access sqlite3_mutex); -- /usr/include/sqlite3.h:6258 pragma Import (C, sqlite3_mutex_enter, "sqlite3_mutex_enter"); function sqlite3_mutex_try (arg1 : access sqlite3_mutex) return int; -- /usr/include/sqlite3.h:6259 pragma Import (C, sqlite3_mutex_try, "sqlite3_mutex_try"); procedure sqlite3_mutex_leave (arg1 : access sqlite3_mutex); -- /usr/include/sqlite3.h:6260 pragma Import (C, sqlite3_mutex_leave, "sqlite3_mutex_leave"); --** CAPI3REF: Mutex Methods Object --** --** An instance of this structure defines the low-level routines --** used to allocate and use mutexes. --** --** Usually, the default mutex implementations provided by SQLite are --** sufficient, however the application has the option of substituting a custom --** implementation for specialized deployments or systems for which SQLite --** does not provide a suitable implementation. In this case, the application --** creates and populates an instance of this structure to pass --** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option. --** Additionally, an instance of this structure can be used as an --** output variable when querying the system for the current mutex --** implementation, using the [SQLITE_CONFIG_GETMUTEX] option. --** --** ^The xMutexInit method defined by this structure is invoked as --** part of system initialization by the sqlite3_initialize() function. --** ^The xMutexInit routine is called by SQLite exactly once for each --** effective call to [sqlite3_initialize()]. --** --** ^The xMutexEnd method defined by this structure is invoked as --** part of system shutdown by the sqlite3_shutdown() function. The --** implementation of this method is expected to release all outstanding --** resources obtained by the mutex methods implementation, especially --** those obtained by the xMutexInit method. ^The xMutexEnd() --** interface is invoked exactly once for each call to [sqlite3_shutdown()]. --** --** ^(The remaining seven methods defined by this structure (xMutexAlloc, --** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and --** xMutexNotheld) implement the following interfaces (respectively): --** --** <ul> --** <li> [sqlite3_mutex_alloc()] </li> --** <li> [sqlite3_mutex_free()] </li> --** <li> [sqlite3_mutex_enter()] </li> --** <li> [sqlite3_mutex_try()] </li> --** <li> [sqlite3_mutex_leave()] </li> --** <li> [sqlite3_mutex_held()] </li> --** <li> [sqlite3_mutex_notheld()] </li> --** </ul>)^ --** --** The only difference is that the public sqlite3_XXX functions enumerated --** above silently ignore any invocations that pass a NULL pointer instead --** of a valid mutex handle. The implementations of the methods defined --** by this structure are not required to handle this case, the results --** of passing a NULL pointer instead of a valid mutex handle are undefined --** (i.e. it is acceptable to provide an implementation that segfaults if --** it is passed a NULL pointer). --** --** The xMutexInit() method must be threadsafe. It must be harmless to --** invoke xMutexInit() multiple times within the same process and without --** intervening calls to xMutexEnd(). Second and subsequent calls to --** xMutexInit() must be no-ops. --** --** xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()] --** and its associates). Similarly, xMutexAlloc() must not use SQLite memory --** allocation for a static mutex. ^However xMutexAlloc() may use SQLite --** memory allocation for a fast or recursive mutex. --** --** ^SQLite will invoke the xMutexEnd() method when [sqlite3_shutdown()] is --** called, but only if the prior call to xMutexInit returned SQLITE_OK. --** If xMutexInit fails in any way, it is expected to clean up after itself --** prior to returning. -- type sqlite3_mutex_methods is record xMutexInit : access function return int; -- /usr/include/sqlite3.h:6329 xMutexEnd : access function return int; -- /usr/include/sqlite3.h:6330 xMutexAlloc : access function (arg1 : int) return access sqlite3_mutex; -- /usr/include/sqlite3.h:6331 xMutexFree : access procedure (arg1 : access sqlite3_mutex); -- /usr/include/sqlite3.h:6332 xMutexEnter : access procedure (arg1 : access sqlite3_mutex); -- /usr/include/sqlite3.h:6333 xMutexTry : access function (arg1 : access sqlite3_mutex) return int; -- /usr/include/sqlite3.h:6334 xMutexLeave : access procedure (arg1 : access sqlite3_mutex); -- /usr/include/sqlite3.h:6335 xMutexHeld : access function (arg1 : access sqlite3_mutex) return int; -- /usr/include/sqlite3.h:6336 xMutexNotheld : access function (arg1 : access sqlite3_mutex) return int; -- /usr/include/sqlite3.h:6337 end record; pragma Convention (C_Pass_By_Copy, sqlite3_mutex_methods); -- /usr/include/sqlite3.h:6328 --** CAPI3REF: Mutex Verification Routines --** --** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines --** are intended for use inside assert() statements. The SQLite core --** never uses these routines except inside an assert() and applications --** are advised to follow the lead of the core. The SQLite core only --** provides implementations for these routines when it is compiled --** with the SQLITE_DEBUG flag. External mutex implementations --** are only required to provide these routines if SQLITE_DEBUG is --** defined and if NDEBUG is not defined. --** --** These routines should return true if the mutex in their argument --** is held or not held, respectively, by the calling thread. --** --** The implementation is not required to provide versions of these --** routines that actually work. If the implementation does not provide working --** versions of these routines, it should at least provide stubs that always --** return true so that one does not get spurious assertion failures. --** --** If the argument to sqlite3_mutex_held() is a NULL pointer then --** the routine should return 1. This seems counter-intuitive since --** clearly the mutex cannot be held if it does not exist. But --** the reason the mutex does not exist is because the build is not --** using mutexes. And we do not want the assert() containing the --** call to sqlite3_mutex_held() to fail, so a non-zero return is --** the appropriate thing to do. The sqlite3_mutex_notheld() --** interface should also return 1 when given a NULL pointer. -- function sqlite3_mutex_held (arg1 : access sqlite3_mutex) return int; -- /usr/include/sqlite3.h:6370 pragma Import (C, sqlite3_mutex_held, "sqlite3_mutex_held"); function sqlite3_mutex_notheld (arg1 : access sqlite3_mutex) return int; -- /usr/include/sqlite3.h:6371 pragma Import (C, sqlite3_mutex_notheld, "sqlite3_mutex_notheld"); --** CAPI3REF: Mutex Types --** --** The [sqlite3_mutex_alloc()] interface takes a single argument --** which is one of these integer constants. --** --** The set of static mutexes may change from one SQLite release to the --** next. Applications that override the built-in mutex logic must be --** prepared to accommodate additional static mutexes. -- --** CAPI3REF: Retrieve the mutex for a database connection --** METHOD: sqlite3 --** --** ^This interface returns a pointer the [sqlite3_mutex] object that --** serializes access to the [database connection] given in the argument --** when the [threading mode] is Serialized. --** ^If the [threading mode] is Single-thread or Multi-thread then this --** routine returns a NULL pointer. -- function sqlite3_db_mutex (arg1 : access sqlite3) return access sqlite3_mutex; -- /usr/include/sqlite3.h:6411 pragma Import (C, sqlite3_db_mutex, "sqlite3_db_mutex"); --** CAPI3REF: Low-Level Control Of Database Files --** METHOD: sqlite3 --** --** ^The [sqlite3_file_control()] interface makes a direct call to the --** xFileControl method for the [sqlite3_io_methods] object associated --** with a particular database identified by the second argument. ^The --** name of the database is "main" for the main database or "temp" for the --** TEMP database, or the name that appears after the AS keyword for --** databases that are added using the [ATTACH] SQL command. --** ^A NULL pointer can be used in place of "main" to refer to the --** main database file. --** ^The third and fourth parameters to this routine --** are passed directly through to the second and third parameters of --** the xFileControl method. ^The return value of the xFileControl --** method becomes the return value of this routine. --** --** ^The SQLITE_FCNTL_FILE_POINTER value for the op parameter causes --** a pointer to the underlying [sqlite3_file] object to be written into --** the space pointed to by the 4th parameter. ^The SQLITE_FCNTL_FILE_POINTER --** case is a short-circuit path which does not actually invoke the --** underlying sqlite3_io_methods.xFileControl method. --** --** ^If the second parameter (zDbName) does not match the name of any --** open database file, then SQLITE_ERROR is returned. ^This error --** code is not remembered and will not be recalled by [sqlite3_errcode()] --** or [sqlite3_errmsg()]. The underlying xFileControl method might --** also return SQLITE_ERROR. There is no way to distinguish between --** an incorrect zDbName and an SQLITE_ERROR return from the underlying --** xFileControl method. --** --** See also: [SQLITE_FCNTL_LOCKSTATE] -- function sqlite3_file_control (arg1 : access sqlite3; zDbName : Interfaces.C.Strings.chars_ptr; op : int; arg4 : System.Address) return int; -- /usr/include/sqlite3.h:6446 pragma Import (C, sqlite3_file_control, "sqlite3_file_control"); --** CAPI3REF: Testing Interface --** --** ^The sqlite3_test_control() interface is used to read out internal --** state of SQLite and to inject faults into SQLite for testing --** purposes. ^The first parameter is an operation code that determines --** the number, meaning, and operation of all subsequent parameters. --** --** This interface is not for use by applications. It exists solely --** for verifying the correct operation of the SQLite library. Depending --** on how the SQLite library is compiled, this interface might not exist. --** --** The details of the operation codes, their meanings, the parameters --** they take, and what they do are all subject to change without notice. --** Unlike most of the SQLite API, this function is not guaranteed to --** operate consistently from one release to the next. -- function sqlite3_test_control (op : int -- , ... ) return int; -- /usr/include/sqlite3.h:6465 pragma Import (C, sqlite3_test_control, "sqlite3_test_control"); --** CAPI3REF: Testing Interface Operation Codes --** --** These constants are the valid operation code parameters used --** as the first argument to [sqlite3_test_control()]. --** --** These parameters and their meanings are subject to change --** without notice. These values are for testing purposes only. --** Applications should not use any of these parameters or the --** [sqlite3_test_control()] interface. -- --** CAPI3REF: SQLite Runtime Status --** --** ^These interfaces are used to retrieve runtime status information --** about the performance of SQLite, and optionally to reset various --** highwater marks. ^The first argument is an integer code for --** the specific parameter to measure. ^(Recognized integer codes --** are of the form [status parameters | SQLITE_STATUS_...].)^ --** ^The current value of the parameter is returned into *pCurrent. --** ^The highest recorded value is returned in *pHighwater. ^If the --** resetFlag is true, then the highest record value is reset after --** *pHighwater is written. ^(Some parameters do not record the highest --** value. For those parameters --** nothing is written into *pHighwater and the resetFlag is ignored.)^ --** ^(Other parameters record only the highwater mark and not the current --** value. For these latter parameters nothing is written into *pCurrent.)^ --** --** ^The sqlite3_status() and sqlite3_status64() routines return --** SQLITE_OK on success and a non-zero [error code] on failure. --** --** If either the current value or the highwater mark is too large to --** be represented by a 32-bit integer, then the values returned by --** sqlite3_status() are undefined. --** --** See also: [sqlite3_db_status()] -- function sqlite3_status (op : int; pCurrent : access int; pHighwater : access int; resetFlag : int) return int; -- /usr/include/sqlite3.h:6528 pragma Import (C, sqlite3_status, "sqlite3_status"); function sqlite3_status64 (op : int; pCurrent : access sqlite3_int64; pHighwater : access sqlite3_int64; resetFlag : int) return int; -- /usr/include/sqlite3.h:6529 pragma Import (C, sqlite3_status64, "sqlite3_status64"); --** CAPI3REF: Status Parameters --** KEYWORDS: {status parameters} --** --** These integer constants designate various run-time status parameters --** that can be returned by [sqlite3_status()]. --** --** <dl> --** [[SQLITE_STATUS_MEMORY_USED]] ^(<dt>SQLITE_STATUS_MEMORY_USED</dt> --** <dd>This parameter is the current amount of memory checked out --** using [sqlite3_malloc()], either directly or indirectly. The --** figure includes calls made to [sqlite3_malloc()] by the application --** and internal memory usage by the SQLite library. Scratch memory --** controlled by [SQLITE_CONFIG_SCRATCH] and auxiliary page-cache --** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in --** this parameter. The amount returned is the sum of the allocation --** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^ --** --** [[SQLITE_STATUS_MALLOC_SIZE]] ^(<dt>SQLITE_STATUS_MALLOC_SIZE</dt> --** <dd>This parameter records the largest memory allocation request --** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their --** internal equivalents). Only the value returned in the --** *pHighwater parameter to [sqlite3_status()] is of interest. --** The value written into the *pCurrent parameter is undefined.</dd>)^ --** --** [[SQLITE_STATUS_MALLOC_COUNT]] ^(<dt>SQLITE_STATUS_MALLOC_COUNT</dt> --** <dd>This parameter records the number of separate memory allocations --** currently checked out.</dd>)^ --** --** [[SQLITE_STATUS_PAGECACHE_USED]] ^(<dt>SQLITE_STATUS_PAGECACHE_USED</dt> --** <dd>This parameter returns the number of pages used out of the --** [pagecache memory allocator] that was configured using --** [SQLITE_CONFIG_PAGECACHE]. The --** value returned is in pages, not in bytes.</dd>)^ --** --** [[SQLITE_STATUS_PAGECACHE_OVERFLOW]] --** ^(<dt>SQLITE_STATUS_PAGECACHE_OVERFLOW</dt> --** <dd>This parameter returns the number of bytes of page cache --** allocation which could not be satisfied by the [SQLITE_CONFIG_PAGECACHE] --** buffer and where forced to overflow to [sqlite3_malloc()]. The --** returned value includes allocations that overflowed because they --** where too large (they were larger than the "sz" parameter to --** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because --** no space was left in the page cache.</dd>)^ --** --** [[SQLITE_STATUS_PAGECACHE_SIZE]] ^(<dt>SQLITE_STATUS_PAGECACHE_SIZE</dt> --** <dd>This parameter records the largest memory allocation request --** handed to [pagecache memory allocator]. Only the value returned in the --** *pHighwater parameter to [sqlite3_status()] is of interest. --** The value written into the *pCurrent parameter is undefined.</dd>)^ --** --** [[SQLITE_STATUS_SCRATCH_USED]] ^(<dt>SQLITE_STATUS_SCRATCH_USED</dt> --** <dd>This parameter returns the number of allocations used out of the --** [scratch memory allocator] configured using --** [SQLITE_CONFIG_SCRATCH]. The value returned is in allocations, not --** in bytes. Since a single thread may only have one scratch allocation --** outstanding at time, this parameter also reports the number of threads --** using scratch memory at the same time.</dd>)^ --** --** [[SQLITE_STATUS_SCRATCH_OVERFLOW]] ^(<dt>SQLITE_STATUS_SCRATCH_OVERFLOW</dt> --** <dd>This parameter returns the number of bytes of scratch memory --** allocation which could not be satisfied by the [SQLITE_CONFIG_SCRATCH] --** buffer and where forced to overflow to [sqlite3_malloc()]. The values --** returned include overflows because the requested allocation was too --** larger (that is, because the requested allocation was larger than the --** "sz" parameter to [SQLITE_CONFIG_SCRATCH]) and because no scratch buffer --** slots were available. --** </dd>)^ --** --** [[SQLITE_STATUS_SCRATCH_SIZE]] ^(<dt>SQLITE_STATUS_SCRATCH_SIZE</dt> --** <dd>This parameter records the largest memory allocation request --** handed to [scratch memory allocator]. Only the value returned in the --** *pHighwater parameter to [sqlite3_status()] is of interest. --** The value written into the *pCurrent parameter is undefined.</dd>)^ --** --** [[SQLITE_STATUS_PARSER_STACK]] ^(<dt>SQLITE_STATUS_PARSER_STACK</dt> --** <dd>The *pHighwater parameter records the deepest parser stack. --** The *pCurrent value is undefined. The *pHighwater value is only --** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].</dd>)^ --** </dl> --** --** New status parameters may be added from time to time. -- --** CAPI3REF: Database Connection Status --** METHOD: sqlite3 --** --** ^This interface is used to retrieve runtime status information --** about a single [database connection]. ^The first argument is the --** database connection object to be interrogated. ^The second argument --** is an integer constant, taken from the set of --** [SQLITE_DBSTATUS options], that --** determines the parameter to interrogate. The set of --** [SQLITE_DBSTATUS options] is likely --** to grow in future releases of SQLite. --** --** ^The current value of the requested parameter is written into *pCur --** and the highest instantaneous value is written into *pHiwtr. ^If --** the resetFlg is true, then the highest instantaneous value is --** reset back down to the current value. --** --** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a --** non-zero [error code] on failure. --** --** See also: [sqlite3_status()] and [sqlite3_stmt_status()]. -- function sqlite3_db_status (arg1 : access sqlite3; op : int; pCur : access int; pHiwtr : access int; resetFlg : int) return int; -- /usr/include/sqlite3.h:6654 pragma Import (C, sqlite3_db_status, "sqlite3_db_status"); --** CAPI3REF: Status Parameters for database connections --** KEYWORDS: {SQLITE_DBSTATUS options} --** --** These constants are the available integer "verbs" that can be passed as --** the second argument to the [sqlite3_db_status()] interface. --** --** New verbs may be added in future releases of SQLite. Existing verbs --** might be discontinued. Applications should check the return code from --** [sqlite3_db_status()] to make sure that the call worked. --** The [sqlite3_db_status()] interface will return a non-zero error code --** if a discontinued or unsupported verb is invoked. --** --** <dl> --** [[SQLITE_DBSTATUS_LOOKASIDE_USED]] ^(<dt>SQLITE_DBSTATUS_LOOKASIDE_USED</dt> --** <dd>This parameter returns the number of lookaside memory slots currently --** checked out.</dd>)^ --** --** [[SQLITE_DBSTATUS_LOOKASIDE_HIT]] ^(<dt>SQLITE_DBSTATUS_LOOKASIDE_HIT</dt> --** <dd>This parameter returns the number malloc attempts that were --** satisfied using lookaside memory. Only the high-water value is meaningful; --** the current value is always zero.)^ --** --** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE]] --** ^(<dt>SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE</dt> --** <dd>This parameter returns the number malloc attempts that might have --** been satisfied using lookaside memory but failed due to the amount of --** memory requested being larger than the lookaside slot size. --** Only the high-water value is meaningful; --** the current value is always zero.)^ --** --** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL]] --** ^(<dt>SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL</dt> --** <dd>This parameter returns the number malloc attempts that might have --** been satisfied using lookaside memory but failed due to all lookaside --** memory already being in use. --** Only the high-water value is meaningful; --** the current value is always zero.)^ --** --** [[SQLITE_DBSTATUS_CACHE_USED]] ^(<dt>SQLITE_DBSTATUS_CACHE_USED</dt> --** <dd>This parameter returns the approximate number of bytes of heap --** memory used by all pager caches associated with the database connection.)^ --** ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_USED is always 0. --** --** [[SQLITE_DBSTATUS_SCHEMA_USED]] ^(<dt>SQLITE_DBSTATUS_SCHEMA_USED</dt> --** <dd>This parameter returns the approximate number of bytes of heap --** memory used to store the schema for all databases associated --** with the connection - main, temp, and any [ATTACH]-ed databases.)^ --** ^The full amount of memory used by the schemas is reported, even if the --** schema memory is shared with other database connections due to --** [shared cache mode] being enabled. --** ^The highwater mark associated with SQLITE_DBSTATUS_SCHEMA_USED is always 0. --** --** [[SQLITE_DBSTATUS_STMT_USED]] ^(<dt>SQLITE_DBSTATUS_STMT_USED</dt> --** <dd>This parameter returns the approximate number of bytes of heap --** and lookaside memory used by all prepared statements associated with --** the database connection.)^ --** ^The highwater mark associated with SQLITE_DBSTATUS_STMT_USED is always 0. --** </dd> --** --** [[SQLITE_DBSTATUS_CACHE_HIT]] ^(<dt>SQLITE_DBSTATUS_CACHE_HIT</dt> --** <dd>This parameter returns the number of pager cache hits that have --** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_HIT --** is always 0. --** </dd> --** --** [[SQLITE_DBSTATUS_CACHE_MISS]] ^(<dt>SQLITE_DBSTATUS_CACHE_MISS</dt> --** <dd>This parameter returns the number of pager cache misses that have --** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_MISS --** is always 0. --** </dd> --** --** [[SQLITE_DBSTATUS_CACHE_WRITE]] ^(<dt>SQLITE_DBSTATUS_CACHE_WRITE</dt> --** <dd>This parameter returns the number of dirty cache entries that have --** been written to disk. Specifically, the number of pages written to the --** wal file in wal mode databases, or the number of pages written to the --** database file in rollback mode databases. Any pages written as part of --** transaction rollback or database recovery operations are not included. --** If an IO or other error occurs while writing a page to disk, the effect --** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The --** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0. --** </dd> --** --** [[SQLITE_DBSTATUS_DEFERRED_FKS]] ^(<dt>SQLITE_DBSTATUS_DEFERRED_FKS</dt> --** <dd>This parameter returns zero for the current value if and only if --** all foreign key constraints (deferred or immediate) have been --** resolved.)^ ^The highwater mark is always 0. --** </dd> --** </dl> -- --** CAPI3REF: Prepared Statement Status --** METHOD: sqlite3_stmt --** --** ^(Each prepared statement maintains various --** [SQLITE_STMTSTATUS counters] that measure the number --** of times it has performed specific operations.)^ These counters can --** be used to monitor the performance characteristics of the prepared --** statements. For example, if the number of table steps greatly exceeds --** the number of table searches or result rows, that would tend to indicate --** that the prepared statement is using a full table scan rather than --** an index. --** --** ^(This interface is used to retrieve and reset counter values from --** a [prepared statement]. The first argument is the prepared statement --** object to be interrogated. The second argument --** is an integer code for a specific [SQLITE_STMTSTATUS counter] --** to be interrogated.)^ --** ^The current value of the requested counter is returned. --** ^If the resetFlg is true, then the counter is reset to zero after this --** interface call returns. --** --** See also: [sqlite3_status()] and [sqlite3_db_status()]. -- function sqlite3_stmt_status (arg1 : access sqlite3_stmt; op : int; resetFlg : int) return int; -- /usr/include/sqlite3.h:6784 pragma Import (C, sqlite3_stmt_status, "sqlite3_stmt_status"); --** CAPI3REF: Status Parameters for prepared statements --** KEYWORDS: {SQLITE_STMTSTATUS counter} {SQLITE_STMTSTATUS counters} --** --** These preprocessor macros define integer codes that name counter --** values associated with the [sqlite3_stmt_status()] interface. --** The meanings of the various counters are as follows: --** --** <dl> --** [[SQLITE_STMTSTATUS_FULLSCAN_STEP]] <dt>SQLITE_STMTSTATUS_FULLSCAN_STEP</dt> --** <dd>^This is the number of times that SQLite has stepped forward in --** a table as part of a full table scan. Large numbers for this counter --** may indicate opportunities for performance improvement through --** careful use of indices.</dd> --** --** [[SQLITE_STMTSTATUS_SORT]] <dt>SQLITE_STMTSTATUS_SORT</dt> --** <dd>^This is the number of sort operations that have occurred. --** A non-zero value in this counter may indicate an opportunity to --** improvement performance through careful use of indices.</dd> --** --** [[SQLITE_STMTSTATUS_AUTOINDEX]] <dt>SQLITE_STMTSTATUS_AUTOINDEX</dt> --** <dd>^This is the number of rows inserted into transient indices that --** were created automatically in order to help joins run faster. --** A non-zero value in this counter may indicate an opportunity to --** improvement performance by adding permanent indices that do not --** need to be reinitialized each time the statement is run.</dd> --** --** [[SQLITE_STMTSTATUS_VM_STEP]] <dt>SQLITE_STMTSTATUS_VM_STEP</dt> --** <dd>^This is the number of virtual machine operations executed --** by the prepared statement if that number is less than or equal --** to 2147483647. The number of virtual machine operations can be --** used as a proxy for the total work done by the prepared statement. --** If the number of virtual machine operations exceeds 2147483647 --** then the value returned by this statement status code is undefined. --** </dd> --** </dl> -- --** CAPI3REF: Custom Page Cache Object --** --** The sqlite3_pcache type is opaque. It is implemented by --** the pluggable module. The SQLite core has no knowledge of --** its size or internal structure and never deals with the --** sqlite3_pcache object except by holding and passing pointers --** to the object. --** --** See [sqlite3_pcache_methods2] for additional information. -- type sqlite3_pcache is null record; -- incomplete struct --** CAPI3REF: Custom Page Cache Object --** --** The sqlite3_pcache_page object represents a single page in the --** page cache. The page cache will allocate instances of this --** object. Various methods of the page cache use pointers to instances --** of this object as parameters or as their return value. --** --** See [sqlite3_pcache_methods2] for additional information. -- -- The content of the page type sqlite3_pcache_page is record pBuf : System.Address; -- /usr/include/sqlite3.h:6853 pExtra : System.Address; -- /usr/include/sqlite3.h:6854 end record; pragma Convention (C_Pass_By_Copy, sqlite3_pcache_page); -- /usr/include/sqlite3.h:6852 -- Extra information associated with the page --** CAPI3REF: Application Defined Page Cache. --** KEYWORDS: {page cache} --** --** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can --** register an alternative page cache implementation by passing in an --** instance of the sqlite3_pcache_methods2 structure.)^ --** In many applications, most of the heap memory allocated by --** SQLite is used for the page cache. --** By implementing a --** custom page cache using this API, an application can better control --** the amount of memory consumed by SQLite, the way in which --** that memory is allocated and released, and the policies used to --** determine exactly which parts of a database file are cached and for --** how long. --** --** The alternative page cache mechanism is an --** extreme measure that is only needed by the most demanding applications. --** The built-in page cache is recommended for most uses. --** --** ^(The contents of the sqlite3_pcache_methods2 structure are copied to an --** internal buffer by SQLite within the call to [sqlite3_config]. Hence --** the application may discard the parameter after the call to --** [sqlite3_config()] returns.)^ --** --** [[the xInit() page cache method]] --** ^(The xInit() method is called once for each effective --** call to [sqlite3_initialize()])^ --** (usually only once during the lifetime of the process). ^(The xInit() --** method is passed a copy of the sqlite3_pcache_methods2.pArg value.)^ --** The intent of the xInit() method is to set up global data structures --** required by the custom page cache implementation. --** ^(If the xInit() method is NULL, then the --** built-in default page cache is used instead of the application defined --** page cache.)^ --** --** [[the xShutdown() page cache method]] --** ^The xShutdown() method is called by [sqlite3_shutdown()]. --** It can be used to clean up --** any outstanding resources before process shutdown, if required. --** ^The xShutdown() method may be NULL. --** --** ^SQLite automatically serializes calls to the xInit method, --** so the xInit method need not be threadsafe. ^The --** xShutdown method is only called from [sqlite3_shutdown()] so it does --** not need to be threadsafe either. All other methods must be threadsafe --** in multithreaded applications. --** --** ^SQLite will never invoke xInit() more than once without an intervening --** call to xShutdown(). --** --** [[the xCreate() page cache methods]] --** ^SQLite invokes the xCreate() method to construct a new cache instance. --** SQLite will typically create one cache instance for each open database file, --** though this is not guaranteed. ^The --** first parameter, szPage, is the size in bytes of the pages that must --** be allocated by the cache. ^szPage will always a power of two. ^The --** second parameter szExtra is a number of bytes of extra storage --** associated with each page cache entry. ^The szExtra parameter will --** a number less than 250. SQLite will use the --** extra szExtra bytes on each page to store metadata about the underlying --** database page on disk. The value passed into szExtra depends --** on the SQLite version, the target platform, and how SQLite was compiled. --** ^The third argument to xCreate(), bPurgeable, is true if the cache being --** created will be used to cache database pages of a file stored on disk, or --** false if it is used for an in-memory database. The cache implementation --** does not have to do anything special based with the value of bPurgeable; --** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will --** never invoke xUnpin() except to deliberately delete a page. --** ^In other words, calls to xUnpin() on a cache with bPurgeable set to --** false will always have the "discard" flag set to true. --** ^Hence, a cache created with bPurgeable false will --** never contain any unpinned pages. --** --** [[the xCachesize() page cache method]] --** ^(The xCachesize() method may be called at any time by SQLite to set the --** suggested maximum cache-size (number of pages stored by) the cache --** instance passed as the first argument. This is the value configured using --** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable --** parameter, the implementation is not required to do anything with this --** value; it is advisory only. --** --** [[the xPagecount() page cache methods]] --** The xPagecount() method must return the number of pages currently --** stored in the cache, both pinned and unpinned. --** --** [[the xFetch() page cache methods]] --** The xFetch() method locates a page in the cache and returns a pointer to --** an sqlite3_pcache_page object associated with that page, or a NULL pointer. --** The pBuf element of the returned sqlite3_pcache_page object will be a --** pointer to a buffer of szPage bytes used to store the content of a --** single database page. The pExtra element of sqlite3_pcache_page will be --** a pointer to the szExtra bytes of extra storage that SQLite has requested --** for each entry in the page cache. --** --** The page to be fetched is determined by the key. ^The minimum key value --** is 1. After it has been retrieved using xFetch, the page is considered --** to be "pinned". --** --** If the requested page is already in the page cache, then the page cache --** implementation must return a pointer to the page buffer with its content --** intact. If the requested page is not already in the cache, then the --** cache implementation should use the value of the createFlag --** parameter to help it determined what action to take: --** --** <table border=1 width=85% align=center> --** <tr><th> createFlag <th> Behavior when page is not already in cache --** <tr><td> 0 <td> Do not allocate a new page. Return NULL. --** <tr><td> 1 <td> Allocate a new page if it easy and convenient to do so. --** Otherwise return NULL. --** <tr><td> 2 <td> Make every effort to allocate a new page. Only return --** NULL if allocating a new page is effectively impossible. --** </table> --** --** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite --** will only use a createFlag of 2 after a prior call with a createFlag of 1 --** failed.)^ In between the to xFetch() calls, SQLite may --** attempt to unpin one or more cache pages by spilling the content of --** pinned pages to disk and synching the operating system disk cache. --** --** [[the xUnpin() page cache method]] --** ^xUnpin() is called by SQLite with a pointer to a currently pinned page --** as its second argument. If the third parameter, discard, is non-zero, --** then the page must be evicted from the cache. --** ^If the discard parameter is --** zero, then the page may be discarded or retained at the discretion of --** page cache implementation. ^The page cache implementation --** may choose to evict unpinned pages at any time. --** --** The cache must not perform any reference counting. A single --** call to xUnpin() unpins the page regardless of the number of prior calls --** to xFetch(). --** --** [[the xRekey() page cache methods]] --** The xRekey() method is used to change the key value associated with the --** page passed as the second argument. If the cache --** previously contains an entry associated with newKey, it must be --** discarded. ^Any prior cache entry associated with newKey is guaranteed not --** to be pinned. --** --** When SQLite calls the xTruncate() method, the cache must discard all --** existing cache entries with page numbers (keys) greater than or equal --** to the value of the iLimit parameter passed to xTruncate(). If any --** of these pages are pinned, they are implicitly unpinned, meaning that --** they can be safely discarded. --** --** [[the xDestroy() page cache method]] --** ^The xDestroy() method is used to delete a cache allocated by xCreate(). --** All resources associated with the specified cache should be freed. ^After --** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*] --** handle invalid, and will not use it with any other sqlite3_pcache_methods2 --** functions. --** --** [[the xShrink() page cache method]] --** ^SQLite invokes the xShrink() method when it wants the page cache to --** free up as much of heap memory as possible. The page cache implementation --** is not obligated to free any memory, but well-behaved implementations should --** do their best. -- type sqlite3_pcache_methods2 is record iVersion : aliased int; -- /usr/include/sqlite3.h:7018 pArg : System.Address; -- /usr/include/sqlite3.h:7019 xInit : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:7020 xShutdown : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:7021 xCreate : access function (arg1 : int; arg2 : int; arg3 : int) return access sqlite3_pcache; -- /usr/include/sqlite3.h:7022 xCachesize : access procedure (arg1 : access sqlite3_pcache; arg2 : int); -- /usr/include/sqlite3.h:7023 xPagecount : access function (arg1 : access sqlite3_pcache) return int; -- /usr/include/sqlite3.h:7024 xFetch : access function (arg1 : access sqlite3_pcache; arg2 : unsigned; arg3 : int) return access sqlite3_pcache_page; -- /usr/include/sqlite3.h:7025 xUnpin : access procedure (arg1 : access sqlite3_pcache; arg2 : access sqlite3_pcache_page; arg3 : int); -- /usr/include/sqlite3.h:7026 xRekey : access procedure (arg1 : access sqlite3_pcache; arg2 : access sqlite3_pcache_page; arg3 : unsigned; arg4 : unsigned); -- /usr/include/sqlite3.h:7028 xTruncate : access procedure (arg1 : access sqlite3_pcache; arg2 : unsigned); -- /usr/include/sqlite3.h:7029 xDestroy : access procedure (arg1 : access sqlite3_pcache); -- /usr/include/sqlite3.h:7030 xShrink : access procedure (arg1 : access sqlite3_pcache); -- /usr/include/sqlite3.h:7031 end record; pragma Convention (C_Pass_By_Copy, sqlite3_pcache_methods2); -- /usr/include/sqlite3.h:7017 --** This is the obsolete pcache_methods object that has now been replaced --** by sqlite3_pcache_methods2. This object is not used by SQLite. It is --** retained in the header file for backwards compatibility only. -- type sqlite3_pcache_methods is record pArg : System.Address; -- /usr/include/sqlite3.h:7041 xInit : access function (arg1 : System.Address) return int; -- /usr/include/sqlite3.h:7042 xShutdown : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:7043 xCreate : access function (arg1 : int; arg2 : int) return access sqlite3_pcache; -- /usr/include/sqlite3.h:7044 xCachesize : access procedure (arg1 : access sqlite3_pcache; arg2 : int); -- /usr/include/sqlite3.h:7045 xPagecount : access function (arg1 : access sqlite3_pcache) return int; -- /usr/include/sqlite3.h:7046 xFetch : access function (arg1 : access sqlite3_pcache; arg2 : unsigned; arg3 : int) return System.Address; -- /usr/include/sqlite3.h:7047 xUnpin : access procedure (arg1 : access sqlite3_pcache; arg2 : System.Address; arg3 : int); -- /usr/include/sqlite3.h:7048 xRekey : access procedure (arg1 : access sqlite3_pcache; arg2 : System.Address; arg3 : unsigned; arg4 : unsigned); -- /usr/include/sqlite3.h:7049 xTruncate : access procedure (arg1 : access sqlite3_pcache; arg2 : unsigned); -- /usr/include/sqlite3.h:7050 xDestroy : access procedure (arg1 : access sqlite3_pcache); -- /usr/include/sqlite3.h:7051 end record; pragma Convention (C_Pass_By_Copy, sqlite3_pcache_methods); -- /usr/include/sqlite3.h:7040 --** CAPI3REF: Online Backup Object --** --** The sqlite3_backup object records state information about an ongoing --** online backup operation. ^The sqlite3_backup object is created by --** a call to [sqlite3_backup_init()] and is destroyed by a call to --** [sqlite3_backup_finish()]. --** --** See Also: [Using the SQLite Online Backup API] -- type sqlite3_backup is null record; -- incomplete struct --** CAPI3REF: Online Backup API. --** --** The backup API copies the content of one database into another. --** It is useful either for creating backups of databases or --** for copying in-memory databases to or from persistent files. --** --** See Also: [Using the SQLite Online Backup API] --** --** ^SQLite holds a write transaction open on the destination database file --** for the duration of the backup operation. --** ^The source database is read-locked only while it is being read; --** it is not locked continuously for the entire backup operation. --** ^Thus, the backup may be performed on a live source database without --** preventing other database connections from --** reading or writing to the source database while the backup is underway. --** --** ^(To perform a backup operation: --** <ol> --** <li><b>sqlite3_backup_init()</b> is called once to initialize the --** backup, --** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer --** the data between the two databases, and finally --** <li><b>sqlite3_backup_finish()</b> is called to release all resources --** associated with the backup operation. --** </ol>)^ --** There should be exactly one call to sqlite3_backup_finish() for each --** successful call to sqlite3_backup_init(). --** --** [[sqlite3_backup_init()]] <b>sqlite3_backup_init()</b> --** --** ^The D and N arguments to sqlite3_backup_init(D,N,S,M) are the --** [database connection] associated with the destination database --** and the database name, respectively. --** ^The database name is "main" for the main database, "temp" for the --** temporary database, or the name specified after the AS keyword in --** an [ATTACH] statement for an attached database. --** ^The S and M arguments passed to --** sqlite3_backup_init(D,N,S,M) identify the [database connection] --** and database name of the source database, respectively. --** ^The source and destination [database connections] (parameters S and D) --** must be different or else sqlite3_backup_init(D,N,S,M) will fail with --** an error. --** --** ^A call to sqlite3_backup_init() will fail, returning SQLITE_ERROR, if --** there is already a read or read-write transaction open on the --** destination database. --** --** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is --** returned and an error code and error message are stored in the --** destination [database connection] D. --** ^The error code and message for the failed call to sqlite3_backup_init() --** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or --** [sqlite3_errmsg16()] functions. --** ^A successful call to sqlite3_backup_init() returns a pointer to an --** [sqlite3_backup] object. --** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and --** sqlite3_backup_finish() functions to perform the specified backup --** operation. --** --** [[sqlite3_backup_step()]] <b>sqlite3_backup_step()</b> --** --** ^Function sqlite3_backup_step(B,N) will copy up to N pages between --** the source and destination databases specified by [sqlite3_backup] object B. --** ^If N is negative, all remaining source pages are copied. --** ^If sqlite3_backup_step(B,N) successfully copies N pages and there --** are still more pages to be copied, then the function returns [SQLITE_OK]. --** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages --** from source to destination, then it returns [SQLITE_DONE]. --** ^If an error occurs while running sqlite3_backup_step(B,N), --** then an [error code] is returned. ^As well as [SQLITE_OK] and --** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY], --** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an --** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code. --** --** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] if --** <ol> --** <li> the destination database was opened read-only, or --** <li> the destination database is using write-ahead-log journaling --** and the destination and source page sizes differ, or --** <li> the destination database is an in-memory database and the --** destination and source page sizes differ. --** </ol>)^ --** --** ^If sqlite3_backup_step() cannot obtain a required file-system lock, then --** the [sqlite3_busy_handler | busy-handler function] --** is invoked (if one is specified). ^If the --** busy-handler returns non-zero before the lock is available, then --** [SQLITE_BUSY] is returned to the caller. ^In this case the call to --** sqlite3_backup_step() can be retried later. ^If the source --** [database connection] --** is being used to write to the source database when sqlite3_backup_step() --** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this --** case the call to sqlite3_backup_step() can be retried later on. ^(If --** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or --** [SQLITE_READONLY] is returned, then --** there is no point in retrying the call to sqlite3_backup_step(). These --** errors are considered fatal.)^ The application must accept --** that the backup operation has failed and pass the backup operation handle --** to the sqlite3_backup_finish() to release associated resources. --** --** ^The first call to sqlite3_backup_step() obtains an exclusive lock --** on the destination file. ^The exclusive lock is not released until either --** sqlite3_backup_finish() is called or the backup operation is complete --** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to --** sqlite3_backup_step() obtains a [shared lock] on the source database that --** lasts for the duration of the sqlite3_backup_step() call. --** ^Because the source database is not locked between calls to --** sqlite3_backup_step(), the source database may be modified mid-way --** through the backup process. ^If the source database is modified by an --** external process or via a database connection other than the one being --** used by the backup operation, then the backup will be automatically --** restarted by the next call to sqlite3_backup_step(). ^If the source --** database is modified by the using the same database connection as is used --** by the backup operation, then the backup database is automatically --** updated at the same time. --** --** [[sqlite3_backup_finish()]] <b>sqlite3_backup_finish()</b> --** --** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the --** application wishes to abandon the backup operation, the application --** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish(). --** ^The sqlite3_backup_finish() interfaces releases all --** resources associated with the [sqlite3_backup] object. --** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any --** active write-transaction on the destination database is rolled back. --** The [sqlite3_backup] object is invalid --** and may not be used following a call to sqlite3_backup_finish(). --** --** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no --** sqlite3_backup_step() errors occurred, regardless or whether or not --** sqlite3_backup_step() completed. --** ^If an out-of-memory condition or IO error occurred during any prior --** sqlite3_backup_step() call on the same [sqlite3_backup] object, then --** sqlite3_backup_finish() returns the corresponding [error code]. --** --** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step() --** is not a permanent error and does not affect the return value of --** sqlite3_backup_finish(). --** --** [[sqlite3_backup_remaining()]] [[sqlite3_backup_pagecount()]] --** <b>sqlite3_backup_remaining() and sqlite3_backup_pagecount()</b> --** --** ^The sqlite3_backup_remaining() routine returns the number of pages still --** to be backed up at the conclusion of the most recent sqlite3_backup_step(). --** ^The sqlite3_backup_pagecount() routine returns the total number of pages --** in the source database at the conclusion of the most recent --** sqlite3_backup_step(). --** ^(The values returned by these functions are only updated by --** sqlite3_backup_step(). If the source database is modified in a way that --** changes the size of the source database or the number of pages remaining, --** those changes are not reflected in the output of sqlite3_backup_pagecount() --** and sqlite3_backup_remaining() until after the next --** sqlite3_backup_step().)^ --** --** <b>Concurrent Usage of Database Handles</b> --** --** ^The source [database connection] may be used by the application for other --** purposes while a backup operation is underway or being initialized. --** ^If SQLite is compiled and configured to support threadsafe database --** connections, then the source database connection may be used concurrently --** from within other threads. --** --** However, the application must guarantee that the destination --** [database connection] is not passed to any other API (by any thread) after --** sqlite3_backup_init() is called and before the corresponding call to --** sqlite3_backup_finish(). SQLite does not currently check to see --** if the application incorrectly accesses the destination [database connection] --** and so no error code is reported, but the operations may malfunction --** nevertheless. Use of the destination database connection while a --** backup is in progress might also also cause a mutex deadlock. --** --** If running in [shared cache mode], the application must --** guarantee that the shared cache used by the destination database --** is not accessed while the backup is running. In practice this means --** that the application must guarantee that the disk file being --** backed up to is not accessed by any connection within the process, --** not just the specific connection that was passed to sqlite3_backup_init(). --** --** The [sqlite3_backup] object itself is partially threadsafe. Multiple --** threads may safely make multiple concurrent calls to sqlite3_backup_step(). --** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount() --** APIs are not strictly speaking threadsafe. If they are invoked at the --** same time as another thread is invoking sqlite3_backup_step() it is --** possible that they return invalid values. -- function sqlite3_backup_init (pDest : access sqlite3; zDestName : Interfaces.C.Strings.chars_ptr; pSource : access sqlite3; zSourceName : Interfaces.C.Strings.chars_ptr) return access sqlite3_backup; -- /usr/include/sqlite3.h:7253 pragma Import (C, sqlite3_backup_init, "sqlite3_backup_init"); -- Destination database handle -- Destination database name -- Source database handle -- Source database name function sqlite3_backup_step (p : access sqlite3_backup; nPage : int) return int; -- /usr/include/sqlite3.h:7259 pragma Import (C, sqlite3_backup_step, "sqlite3_backup_step"); function sqlite3_backup_finish (p : access sqlite3_backup) return int; -- /usr/include/sqlite3.h:7260 pragma Import (C, sqlite3_backup_finish, "sqlite3_backup_finish"); function sqlite3_backup_remaining (p : access sqlite3_backup) return int; -- /usr/include/sqlite3.h:7261 pragma Import (C, sqlite3_backup_remaining, "sqlite3_backup_remaining"); function sqlite3_backup_pagecount (p : access sqlite3_backup) return int; -- /usr/include/sqlite3.h:7262 pragma Import (C, sqlite3_backup_pagecount, "sqlite3_backup_pagecount"); --** CAPI3REF: Unlock Notification --** METHOD: sqlite3 --** --** ^When running in shared-cache mode, a database operation may fail with --** an [SQLITE_LOCKED] error if the required locks on the shared-cache or --** individual tables within the shared-cache cannot be obtained. See --** [SQLite Shared-Cache Mode] for a description of shared-cache locking. --** ^This API may be used to register a callback that SQLite will invoke --** when the connection currently holding the required lock relinquishes it. --** ^This API is only available if the library was compiled with the --** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined. --** --** See Also: [Using the SQLite Unlock Notification Feature]. --** --** ^Shared-cache locks are released when a database connection concludes --** its current transaction, either by committing it or rolling it back. --** --** ^When a connection (known as the blocked connection) fails to obtain a --** shared-cache lock and SQLITE_LOCKED is returned to the caller, the --** identity of the database connection (the blocking connection) that --** has locked the required resource is stored internally. ^After an --** application receives an SQLITE_LOCKED error, it may call the --** sqlite3_unlock_notify() method with the blocked connection handle as --** the first argument to register for a callback that will be invoked --** when the blocking connections current transaction is concluded. ^The --** callback is invoked from within the [sqlite3_step] or [sqlite3_close] --** call that concludes the blocking connections transaction. --** --** ^(If sqlite3_unlock_notify() is called in a multi-threaded application, --** there is a chance that the blocking connection will have already --** concluded its transaction by the time sqlite3_unlock_notify() is invoked. --** If this happens, then the specified callback is invoked immediately, --** from within the call to sqlite3_unlock_notify().)^ --** --** ^If the blocked connection is attempting to obtain a write-lock on a --** shared-cache table, and more than one other connection currently holds --** a read-lock on the same table, then SQLite arbitrarily selects one of --** the other connections to use as the blocking connection. --** --** ^(There may be at most one unlock-notify callback registered by a --** blocked connection. If sqlite3_unlock_notify() is called when the --** blocked connection already has a registered unlock-notify callback, --** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is --** called with a NULL pointer as its second argument, then any existing --** unlock-notify callback is canceled. ^The blocked connections --** unlock-notify callback may also be canceled by closing the blocked --** connection using [sqlite3_close()]. --** --** The unlock-notify callback is not reentrant. If an application invokes --** any sqlite3_xxx API functions from within an unlock-notify callback, a --** crash or deadlock may be the result. --** --** ^Unless deadlock is detected (see below), sqlite3_unlock_notify() always --** returns SQLITE_OK. --** --** <b>Callback Invocation Details</b> --** --** When an unlock-notify callback is registered, the application provides a --** single void* pointer that is passed to the callback when it is invoked. --** However, the signature of the callback function allows SQLite to pass --** it an array of void* context pointers. The first argument passed to --** an unlock-notify callback is a pointer to an array of void* pointers, --** and the second is the number of entries in the array. --** --** When a blocking connections transaction is concluded, there may be --** more than one blocked connection that has registered for an unlock-notify --** callback. ^If two or more such blocked connections have specified the --** same callback function, then instead of invoking the callback function --** multiple times, it is invoked once with the set of void* context pointers --** specified by the blocked connections bundled together into an array. --** This gives the application an opportunity to prioritize any actions --** related to the set of unblocked database connections. --** --** <b>Deadlock Detection</b> --** --** Assuming that after registering for an unlock-notify callback a --** database waits for the callback to be issued before taking any further --** action (a reasonable assumption), then using this API may cause the --** application to deadlock. For example, if connection X is waiting for --** connection Y's transaction to be concluded, and similarly connection --** Y is waiting on connection X's transaction, then neither connection --** will proceed and the system may remain deadlocked indefinitely. --** --** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock --** detection. ^If a given call to sqlite3_unlock_notify() would put the --** system in a deadlocked state, then SQLITE_LOCKED is returned and no --** unlock-notify callback is registered. The system is said to be in --** a deadlocked state if connection A has registered for an unlock-notify --** callback on the conclusion of connection B's transaction, and connection --** B has itself registered for an unlock-notify callback when connection --** A's transaction is concluded. ^Indirect deadlock is also detected, so --** the system is also considered to be deadlocked if connection B has --** registered for an unlock-notify callback on the conclusion of connection --** C's transaction, where connection C is waiting on connection A. ^Any --** number of levels of indirection are allowed. --** --** <b>The "DROP TABLE" Exception</b> --** --** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost --** always appropriate to call sqlite3_unlock_notify(). There is however, --** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement, --** SQLite checks if there are any currently executing SELECT statements --** that belong to the same connection. If there are, SQLITE_LOCKED is --** returned. In this case there is no "blocking connection", so invoking --** sqlite3_unlock_notify() results in the unlock-notify callback being --** invoked immediately. If the application then re-attempts the "DROP TABLE" --** or "DROP INDEX" query, an infinite loop might be the result. --** --** One way around this problem is to check the extended error code returned --** by an sqlite3_step() call. ^(If there is a blocking connection, then the --** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in --** the special "DROP TABLE/INDEX" case, the extended error code is just --** SQLITE_LOCKED.)^ -- function sqlite3_unlock_notify (pBlocked : access sqlite3; xNotify : access procedure (arg1 : System.Address; arg2 : int); pNotifyArg : System.Address) return int; -- /usr/include/sqlite3.h:7379 pragma Import (C, sqlite3_unlock_notify, "sqlite3_unlock_notify"); -- Waiting connection -- Callback function to invoke -- Argument to pass to xNotify --** CAPI3REF: String Comparison --** --** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications --** and extensions to compare the contents of two buffers containing UTF-8 --** strings in a case-independent fashion, using the same definition of "case --** independence" that SQLite uses internally when comparing identifiers. -- function sqlite3_stricmp (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:7394 pragma Import (C, sqlite3_stricmp, "sqlite3_stricmp"); function sqlite3_strnicmp (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return int; -- /usr/include/sqlite3.h:7395 pragma Import (C, sqlite3_strnicmp, "sqlite3_strnicmp"); --** CAPI3REF: String Globbing --* --** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if --** string X matches the [GLOB] pattern P. --** ^The definition of [GLOB] pattern matching used in --** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the --** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function --** is case sensitive. --** --** Note that this routine returns zero on a match and non-zero if the strings --** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. --** --** See also: [sqlite3_strlike()]. -- function sqlite3_strglob (zGlob : Interfaces.C.Strings.chars_ptr; zStr : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:7412 pragma Import (C, sqlite3_strglob, "sqlite3_strglob"); --** CAPI3REF: String LIKE Matching --* --** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if --** string X matches the [LIKE] pattern P with escape character E. --** ^The definition of [LIKE] pattern matching used in --** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E" --** operator in the SQL dialect understood by SQLite. ^For "X LIKE P" without --** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0. --** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case --** insensitive - equivalent upper and lower case ASCII characters match --** one another. --** --** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though --** only ASCII characters are case folded. --** --** Note that this routine returns zero on a match and non-zero if the strings --** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. --** --** See also: [sqlite3_strglob()]. -- function sqlite3_strlike (zGlob : Interfaces.C.Strings.chars_ptr; zStr : Interfaces.C.Strings.chars_ptr; cEsc : unsigned) return int; -- /usr/include/sqlite3.h:7435 pragma Import (C, sqlite3_strlike, "sqlite3_strlike"); --** CAPI3REF: Error Logging Interface --** --** ^The [sqlite3_log()] interface writes a message into the [error log] --** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()]. --** ^If logging is enabled, the zFormat string and subsequent arguments are --** used with [sqlite3_snprintf()] to generate the final output string. --** --** The sqlite3_log() interface is intended for use by extensions such as --** virtual tables, collating functions, and SQL functions. While there is --** nothing to prevent an application from calling sqlite3_log(), doing so --** is considered bad form. --** --** The zFormat string must not be NULL. --** --** To avoid deadlocks and other threading problems, the sqlite3_log() routine --** will not use dynamically allocated memory. The log message is stored in --** a fixed-length buffer on the stack. If the log message is longer than --** a few hundred characters, it will be truncated to the length of the --** buffer. -- procedure sqlite3_log (iErrCode : int; zFormat : Interfaces.C.Strings.chars_ptr -- , ... ); -- /usr/include/sqlite3.h:7458 pragma Import (C, sqlite3_log, "sqlite3_log"); --** CAPI3REF: Write-Ahead Log Commit Hook --** METHOD: sqlite3 --** --** ^The [sqlite3_wal_hook()] function is used to register a callback that --** is invoked each time data is committed to a database in wal mode. --** --** ^(The callback is invoked by SQLite after the commit has taken place and --** the associated write-lock on the database released)^, so the implementation --** may read, write or [checkpoint] the database as required. --** --** ^The first parameter passed to the callback function when it is invoked --** is a copy of the third parameter passed to sqlite3_wal_hook() when --** registering the callback. ^The second is a copy of the database handle. --** ^The third parameter is the name of the database that was written to - --** either "main" or the name of an [ATTACH]-ed database. ^The fourth parameter --** is the number of pages currently in the write-ahead log file, --** including those that were just committed. --** --** The callback function should normally return [SQLITE_OK]. ^If an error --** code is returned, that error will propagate back up through the --** SQLite code base to cause the statement that provoked the callback --** to report an error, though the commit will have still occurred. If the --** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value --** that does not correspond to any valid SQLite error code, the results --** are undefined. --** --** A single database handle may have at most a single write-ahead log callback --** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any --** previously registered write-ahead log callback. ^Note that the --** [sqlite3_wal_autocheckpoint()] interface and the --** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will --** those overwrite any prior [sqlite3_wal_hook()] settings. -- function sqlite3_wal_hook (arg1 : access sqlite3; arg2 : access function (arg1 : System.Address; arg2 : access sqlite3; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int) return int; arg3 : System.Address) return System.Address; -- /usr/include/sqlite3.h:7494 pragma Import (C, sqlite3_wal_hook, "sqlite3_wal_hook"); --** CAPI3REF: Configure an auto-checkpoint --** METHOD: sqlite3 --** --** ^The [sqlite3_wal_autocheckpoint(D,N)] is a wrapper around --** [sqlite3_wal_hook()] that causes any database on [database connection] D --** to automatically [checkpoint] --** after committing a transaction if there are N or --** more frames in the [write-ahead log] file. ^Passing zero or --** a negative value as the nFrame parameter disables automatic --** checkpoints entirely. --** --** ^The callback registered by this function replaces any existing callback --** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback --** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism --** configured by this function. --** --** ^The [wal_autocheckpoint pragma] can be used to invoke this interface --** from SQL. --** --** ^Checkpoints initiated by this mechanism are --** [sqlite3_wal_checkpoint_v2|PASSIVE]. --** --** ^Every new [database connection] defaults to having the auto-checkpoint --** enabled with a threshold of 1000 or [SQLITE_DEFAULT_WAL_AUTOCHECKPOINT] --** pages. The use of this interface --** is only necessary if the default setting is found to be suboptimal --** for a particular application. -- function sqlite3_wal_autocheckpoint (db : access sqlite3; N : int) return int; -- /usr/include/sqlite3.h:7529 pragma Import (C, sqlite3_wal_autocheckpoint, "sqlite3_wal_autocheckpoint"); --** CAPI3REF: Checkpoint a database --** METHOD: sqlite3 --** --** ^(The sqlite3_wal_checkpoint(D,X) is equivalent to --** [sqlite3_wal_checkpoint_v2](D,X,[SQLITE_CHECKPOINT_PASSIVE],0,0).)^ --** --** In brief, sqlite3_wal_checkpoint(D,X) causes the content in the --** [write-ahead log] for database X on [database connection] D to be --** transferred into the database file and for the write-ahead log to --** be reset. See the [checkpointing] documentation for addition --** information. --** --** This interface used to be the only way to cause a checkpoint to --** occur. But then the newer and more powerful [sqlite3_wal_checkpoint_v2()] --** interface was added. This interface is retained for backwards --** compatibility and as a convenience for applications that need to manually --** start a callback but which do not need the full power (and corresponding --** complication) of [sqlite3_wal_checkpoint_v2()]. -- function sqlite3_wal_checkpoint (db : access sqlite3; zDb : Interfaces.C.Strings.chars_ptr) return int; -- /usr/include/sqlite3.h:7551 pragma Import (C, sqlite3_wal_checkpoint, "sqlite3_wal_checkpoint"); --** CAPI3REF: Checkpoint a database --** METHOD: sqlite3 --** --** ^(The sqlite3_wal_checkpoint_v2(D,X,M,L,C) interface runs a checkpoint --** operation on database X of [database connection] D in mode M. Status --** information is written back into integers pointed to by L and C.)^ --** ^(The M parameter must be a valid [checkpoint mode]:)^ --** --** <dl> --** <dt>SQLITE_CHECKPOINT_PASSIVE<dd> --** ^Checkpoint as many frames as possible without waiting for any database --** readers or writers to finish, then sync the database file if all frames --** in the log were checkpointed. ^The [busy-handler callback] --** is never invoked in the SQLITE_CHECKPOINT_PASSIVE mode. --** ^On the other hand, passive mode might leave the checkpoint unfinished --** if there are concurrent readers or writers. --** --** <dt>SQLITE_CHECKPOINT_FULL<dd> --** ^This mode blocks (it invokes the --** [sqlite3_busy_handler|busy-handler callback]) until there is no --** database writer and all readers are reading from the most recent database --** snapshot. ^It then checkpoints all frames in the log file and syncs the --** database file. ^This mode blocks new database writers while it is pending, --** but new database readers are allowed to continue unimpeded. --** --** <dt>SQLITE_CHECKPOINT_RESTART<dd> --** ^This mode works the same way as SQLITE_CHECKPOINT_FULL with the addition --** that after checkpointing the log file it blocks (calls the --** [busy-handler callback]) --** until all readers are reading from the database file only. ^This ensures --** that the next writer will restart the log file from the beginning. --** ^Like SQLITE_CHECKPOINT_FULL, this mode blocks new --** database writer attempts while it is pending, but does not impede readers. --** --** <dt>SQLITE_CHECKPOINT_TRUNCATE<dd> --** ^This mode works the same way as SQLITE_CHECKPOINT_RESTART with the --** addition that it also truncates the log file to zero bytes just prior --** to a successful return. --** </dl> --** --** ^If pnLog is not NULL, then *pnLog is set to the total number of frames in --** the log file or to -1 if the checkpoint could not run because --** of an error or because the database is not in [WAL mode]. ^If pnCkpt is not --** NULL,then *pnCkpt is set to the total number of checkpointed frames in the --** log file (including any that were already checkpointed before the function --** was called) or to -1 if the checkpoint could not run due to an error or --** because the database is not in WAL mode. ^Note that upon successful --** completion of an SQLITE_CHECKPOINT_TRUNCATE, the log file will have been --** truncated to zero bytes and so both *pnLog and *pnCkpt will be set to zero. --** --** ^All calls obtain an exclusive "checkpoint" lock on the database file. ^If --** any other process is running a checkpoint operation at the same time, the --** lock cannot be obtained and SQLITE_BUSY is returned. ^Even if there is a --** busy-handler configured, it will not be invoked in this case. --** --** ^The SQLITE_CHECKPOINT_FULL, RESTART and TRUNCATE modes also obtain the --** exclusive "writer" lock on the database file. ^If the writer lock cannot be --** obtained immediately, and a busy-handler is configured, it is invoked and --** the writer lock retried until either the busy-handler returns 0 or the lock --** is successfully obtained. ^The busy-handler is also invoked while waiting for --** database readers as described above. ^If the busy-handler returns 0 before --** the writer lock is obtained or while waiting for database readers, the --** checkpoint operation proceeds from that point in the same way as --** SQLITE_CHECKPOINT_PASSIVE - checkpointing as many frames as possible --** without blocking any further. ^SQLITE_BUSY is returned in this case. --** --** ^If parameter zDb is NULL or points to a zero length string, then the --** specified operation is attempted on all WAL databases [attached] to --** [database connection] db. In this case the --** values written to output parameters *pnLog and *pnCkpt are undefined. ^If --** an SQLITE_BUSY error is encountered when processing one or more of the --** attached WAL databases, the operation is still attempted on any remaining --** attached databases and SQLITE_BUSY is returned at the end. ^If any other --** error occurs while processing an attached database, processing is abandoned --** and the error code is returned to the caller immediately. ^If no error --** (SQLITE_BUSY or otherwise) is encountered while processing the attached --** databases, SQLITE_OK is returned. --** --** ^If database zDb is the name of an attached database that is not in WAL --** mode, SQLITE_OK is returned and both *pnLog and *pnCkpt set to -1. ^If --** zDb is not NULL (or a zero length string) and is not the name of any --** attached database, SQLITE_ERROR is returned to the caller. --** --** ^Unless it returns SQLITE_MISUSE, --** the sqlite3_wal_checkpoint_v2() interface --** sets the error information that is queried by --** [sqlite3_errcode()] and [sqlite3_errmsg()]. --** --** ^The [PRAGMA wal_checkpoint] command can be used to invoke this interface --** from SQL. -- function sqlite3_wal_checkpoint_v2 (db : access sqlite3; zDb : Interfaces.C.Strings.chars_ptr; eMode : int; pnLog : access int; pnCkpt : access int) return int; -- /usr/include/sqlite3.h:7645 pragma Import (C, sqlite3_wal_checkpoint_v2, "sqlite3_wal_checkpoint_v2"); -- Database handle -- Name of attached database (or NULL) -- SQLITE_CHECKPOINT_* value -- OUT: Size of WAL log in frames -- OUT: Total number of frames checkpointed --** CAPI3REF: Checkpoint Mode Values --** KEYWORDS: {checkpoint mode} --** --** These constants define all valid values for the "checkpoint mode" passed --** as the third parameter to the [sqlite3_wal_checkpoint_v2()] interface. --** See the [sqlite3_wal_checkpoint_v2()] documentation for details on the --** meaning of each of these checkpoint modes. -- --** CAPI3REF: Virtual Table Interface Configuration --** --** This function may be called by either the [xConnect] or [xCreate] method --** of a [virtual table] implementation to configure --** various facets of the virtual table interface. --** --** If this interface is invoked outside the context of an xConnect or --** xCreate virtual table method then the behavior is undefined. --** --** At present, there is only one option that may be configured using --** this function. (See [SQLITE_VTAB_CONSTRAINT_SUPPORT].) Further options --** may be added in the future. -- function sqlite3_vtab_config (arg1 : access sqlite3; op : int -- , ... ) return int; -- /usr/include/sqlite3.h:7681 pragma Import (C, sqlite3_vtab_config, "sqlite3_vtab_config"); --** CAPI3REF: Virtual Table Configuration Options --** --** These macros define the various options to the --** [sqlite3_vtab_config()] interface that [virtual table] implementations --** can use to customize and optimize their behavior. --** --** <dl> --** <dt>SQLITE_VTAB_CONSTRAINT_SUPPORT --** <dd>Calls of the form --** [sqlite3_vtab_config](db,SQLITE_VTAB_CONSTRAINT_SUPPORT,X) are supported, --** where X is an integer. If X is zero, then the [virtual table] whose --** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not --** support constraints. In this configuration (which is the default) if --** a call to the [xUpdate] method returns [SQLITE_CONSTRAINT], then the entire --** statement is rolled back as if [ON CONFLICT | OR ABORT] had been --** specified as part of the users SQL statement, regardless of the actual --** ON CONFLICT mode specified. --** --** If X is non-zero, then the virtual table implementation guarantees --** that if [xUpdate] returns [SQLITE_CONSTRAINT], it will do so before --** any modifications to internal or persistent data structures have been made. --** If the [ON CONFLICT] mode is ABORT, FAIL, IGNORE or ROLLBACK, SQLite --** is able to roll back a statement or database transaction, and abandon --** or continue processing the current SQL statement as appropriate. --** If the ON CONFLICT mode is REPLACE and the [xUpdate] method returns --** [SQLITE_CONSTRAINT], SQLite handles this as if the ON CONFLICT mode --** had been ABORT. --** --** Virtual table implementations that are required to handle OR REPLACE --** must do so within the [xUpdate] method. If a call to the --** [sqlite3_vtab_on_conflict()] function indicates that the current ON --** CONFLICT policy is REPLACE, the virtual table implementation should --** silently replace the appropriate rows within the xUpdate callback and --** return SQLITE_OK. Or, if this is not possible, it may return --** SQLITE_CONSTRAINT, in which case SQLite falls back to OR ABORT --** constraint handling. --** </dl> -- --** CAPI3REF: Determine The Virtual Table Conflict Policy --** --** This function may only be called from within a call to the [xUpdate] method --** of a [virtual table] implementation for an INSERT or UPDATE operation. ^The --** value returned is one of [SQLITE_ROLLBACK], [SQLITE_IGNORE], [SQLITE_FAIL], --** [SQLITE_ABORT], or [SQLITE_REPLACE], according to the [ON CONFLICT] mode --** of the SQL statement that triggered the call to the [xUpdate] method of the --** [virtual table]. -- function sqlite3_vtab_on_conflict (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:7734 pragma Import (C, sqlite3_vtab_on_conflict, "sqlite3_vtab_on_conflict"); --** CAPI3REF: Conflict resolution modes --** KEYWORDS: {conflict resolution mode} --** --** These constants are returned by [sqlite3_vtab_on_conflict()] to --** inform a [virtual table] implementation what the [ON CONFLICT] mode --** is for the SQL statement being evaluated. --** --** Note that the [SQLITE_IGNORE] constant is also used as a potential --** return value from the [sqlite3_set_authorizer()] callback and that --** [SQLITE_ABORT] is also a [result code]. -- -- #define SQLITE_IGNORE 2 // Also used by sqlite3_authorizer() callback -- #define SQLITE_ABORT 4 // Also an error code --** CAPI3REF: Prepared Statement Scan Status Opcodes --** KEYWORDS: {scanstatus options} --** --** The following constants can be used for the T parameter to the --** [sqlite3_stmt_scanstatus(S,X,T,V)] interface. Each constant designates a --** different metric for sqlite3_stmt_scanstatus() to return. --** --** When the value returned to V is a string, space to hold that string is --** managed by the prepared statement S and will be automatically freed when --** S is finalized. --** --** <dl> --** [[SQLITE_SCANSTAT_NLOOP]] <dt>SQLITE_SCANSTAT_NLOOP</dt> --** <dd>^The [sqlite3_int64] variable pointed to by the T parameter will be --** set to the total number of times that the X-th loop has run.</dd> --** --** [[SQLITE_SCANSTAT_NVISIT]] <dt>SQLITE_SCANSTAT_NVISIT</dt> --** <dd>^The [sqlite3_int64] variable pointed to by the T parameter will be set --** to the total number of rows examined by all iterations of the X-th loop.</dd> --** --** [[SQLITE_SCANSTAT_EST]] <dt>SQLITE_SCANSTAT_EST</dt> --** <dd>^The "double" variable pointed to by the T parameter will be set to the --** query planner's estimate for the average number of rows output from each --** iteration of the X-th loop. If the query planner's estimates was accurate, --** then this value will approximate the quotient NVISIT/NLOOP and the --** product of this value for all prior loops with the same SELECTID will --** be the NLOOP value for the current loop. --** --** [[SQLITE_SCANSTAT_NAME]] <dt>SQLITE_SCANSTAT_NAME</dt> --** <dd>^The "const char *" variable pointed to by the T parameter will be set --** to a zero-terminated UTF-8 string containing the name of the index or table --** used for the X-th loop. --** --** [[SQLITE_SCANSTAT_EXPLAIN]] <dt>SQLITE_SCANSTAT_EXPLAIN</dt> --** <dd>^The "const char *" variable pointed to by the T parameter will be set --** to a zero-terminated UTF-8 string containing the [EXPLAIN QUERY PLAN] --** description for the X-th loop. --** --** [[SQLITE_SCANSTAT_SELECTID]] <dt>SQLITE_SCANSTAT_SELECT</dt> --** <dd>^The "int" variable pointed to by the T parameter will be set to the --** "select-id" for the X-th loop. The select-id identifies which query or --** subquery the loop is part of. The main query has a select-id of zero. --** The select-id is the same value as is output in the first column --** of an [EXPLAIN QUERY PLAN] query. --** </dl> -- --** CAPI3REF: Prepared Statement Scan Status --** METHOD: sqlite3_stmt --** --** This interface returns information about the predicted and measured --** performance for pStmt. Advanced applications can use this --** interface to compare the predicted and the measured performance and --** issue warnings and/or rerun [ANALYZE] if discrepancies are found. --** --** Since this interface is expected to be rarely used, it is only --** available if SQLite is compiled using the [SQLITE_ENABLE_STMT_SCANSTATUS] --** compile-time option. --** --** The "iScanStatusOp" parameter determines which status information to return. --** The "iScanStatusOp" must be one of the [scanstatus options] or the behavior --** of this interface is undefined. --** ^The requested measurement is written into a variable pointed to by --** the "pOut" parameter. --** Parameter "idx" identifies the specific loop to retrieve statistics for. --** Loops are numbered starting from zero. ^If idx is out of range - less than --** zero or greater than or equal to the total number of loops used to implement --** the statement - a non-zero value is returned and the variable that pOut --** points to is unchanged. --** --** ^Statistics might not be available for all loops in all statements. ^In cases --** where there exist loops with no available statistics, this function behaves --** as if the loop did not exist - it returns non-zero and leave the variable --** that pOut points to unchanged. --** --** See also: [sqlite3_stmt_scanstatus_reset()] -- function sqlite3_stmt_scanstatus (pStmt : access sqlite3_stmt; idx : int; iScanStatusOp : int; pOut : System.Address) return int; -- /usr/include/sqlite3.h:7839 pragma Import (C, sqlite3_stmt_scanstatus, "sqlite3_stmt_scanstatus"); -- Prepared statement for which info desired -- Index of loop to report on -- Information desired. SQLITE_SCANSTAT_* -- Result written here --** CAPI3REF: Zero Scan-Status Counters --** METHOD: sqlite3_stmt --** --** ^Zero all [sqlite3_stmt_scanstatus()] related event counters. --** --** This API is only available if the library is built with pre-processor --** symbol [SQLITE_ENABLE_STMT_SCANSTATUS] defined. -- procedure sqlite3_stmt_scanstatus_reset (arg1 : access sqlite3_stmt); -- /usr/include/sqlite3.h:7855 pragma Import (C, sqlite3_stmt_scanstatus_reset, "sqlite3_stmt_scanstatus_reset"); --** CAPI3REF: Flush caches to disk mid-transaction --** --** ^If a write-transaction is open on [database connection] D when the --** [sqlite3_db_cacheflush(D)] interface invoked, any dirty --** pages in the pager-cache that are not currently in use are written out --** to disk. A dirty page may be in use if a database cursor created by an --** active SQL statement is reading from it, or if it is page 1 of a database --** file (page 1 is always "in use"). ^The [sqlite3_db_cacheflush(D)] --** interface flushes caches for all schemas - "main", "temp", and --** any [attached] databases. --** --** ^If this function needs to obtain extra database locks before dirty pages --** can be flushed to disk, it does so. ^If those locks cannot be obtained --** immediately and there is a busy-handler callback configured, it is invoked --** in the usual manner. ^If the required lock still cannot be obtained, then --** the database is skipped and an attempt made to flush any dirty pages --** belonging to the next (if any) database. ^If any databases are skipped --** because locks cannot be obtained, but no other error occurs, this --** function returns SQLITE_BUSY. --** --** ^If any other error occurs while flushing dirty pages to disk (for --** example an IO error or out-of-memory condition), then processing is --** abandoned and an SQLite [error code] is returned to the caller immediately. --** --** ^Otherwise, if no error occurs, [sqlite3_db_cacheflush()] returns SQLITE_OK. --** --** ^This function does not set the database handle error code or message --** returned by the [sqlite3_errcode()] and [sqlite3_errmsg()] functions. -- function sqlite3_db_cacheflush (arg1 : access sqlite3) return int; -- /usr/include/sqlite3.h:7887 pragma Import (C, sqlite3_db_cacheflush, "sqlite3_db_cacheflush"); --** CAPI3REF: Database Snapshot --** KEYWORDS: {snapshot} --** EXPERIMENTAL --** --** An instance of the snapshot object records the state of a [WAL mode] --** database for some specific point in history. --** --** In [WAL mode], multiple [database connections] that are open on the --** same database file can each be reading a different historical version --** of the database file. When a [database connection] begins a read --** transaction, that connection sees an unchanging copy of the database --** as it existed for the point in time when the transaction first started. --** Subsequent changes to the database from other connections are not seen --** by the reader until a new read transaction is started. --** --** The sqlite3_snapshot object records state information about an historical --** version of the database file so that it is possible to later open a new read --** transaction that sees that historical version of the database rather than --** the most recent version. --** --** The constructor for this object is [sqlite3_snapshot_get()]. The --** [sqlite3_snapshot_open()] method causes a fresh read transaction to refer --** to an historical snapshot (if possible). The destructor for --** sqlite3_snapshot objects is [sqlite3_snapshot_free()]. -- type sqlite3_snapshot is null record; -- incomplete struct --** CAPI3REF: Record A Database Snapshot --** EXPERIMENTAL --** --** ^The [sqlite3_snapshot_get(D,S,P)] interface attempts to make a --** new [sqlite3_snapshot] object that records the current state of --** schema S in database connection D. ^On success, the --** [sqlite3_snapshot_get(D,S,P)] interface writes a pointer to the newly --** created [sqlite3_snapshot] object into *P and returns SQLITE_OK. --** ^If schema S of [database connection] D is not a [WAL mode] database --** that is in a read transaction, then [sqlite3_snapshot_get(D,S,P)] --** leaves the *P value unchanged and returns an appropriate [error code]. --** --** The [sqlite3_snapshot] object returned from a successful call to --** [sqlite3_snapshot_get()] must be freed using [sqlite3_snapshot_free()] --** to avoid a memory leak. --** --** The [sqlite3_snapshot_get()] interface is only available when the --** SQLITE_ENABLE_SNAPSHOT compile-time option is used. -- function sqlite3_snapshot_get (db : access sqlite3; zSchema : Interfaces.C.Strings.chars_ptr; ppSnapshot : System.Address) return int; -- /usr/include/sqlite3.h:7937 pragma Import (C, sqlite3_snapshot_get, "sqlite3_snapshot_get"); --** CAPI3REF: Start a read transaction on an historical snapshot --** EXPERIMENTAL --** --** ^The [sqlite3_snapshot_open(D,S,P)] interface attempts to move the --** read transaction that is currently open on schema S of --** [database connection] D so that it refers to historical [snapshot] P. --** ^The [sqlite3_snapshot_open()] interface returns SQLITE_OK on success --** or an appropriate [error code] if it fails. --** --** ^In order to succeed, a call to [sqlite3_snapshot_open(D,S,P)] must be --** the first operation, apart from other sqlite3_snapshot_open() calls, --** following the [BEGIN] that starts a new read transaction. --** ^A [snapshot] will fail to open if it has been overwritten by a --** [checkpoint]. --** --** The [sqlite3_snapshot_open()] interface is only available when the --** SQLITE_ENABLE_SNAPSHOT compile-time option is used. -- function sqlite3_snapshot_open (db : access sqlite3; zSchema : Interfaces.C.Strings.chars_ptr; pSnapshot : access sqlite3_snapshot) return int; -- /usr/include/sqlite3.h:7962 pragma Import (C, sqlite3_snapshot_open, "sqlite3_snapshot_open"); --** CAPI3REF: Destroy a snapshot --** EXPERIMENTAL --** --** ^The [sqlite3_snapshot_free(P)] interface destroys [sqlite3_snapshot] P. --** The application must eventually free every [sqlite3_snapshot] object --** using this routine to avoid a memory leak. --** --** The [sqlite3_snapshot_free()] interface is only available when the --** SQLITE_ENABLE_SNAPSHOT compile-time option is used. -- procedure sqlite3_snapshot_free (arg1 : access sqlite3_snapshot); -- /usr/include/sqlite3.h:7979 pragma Import (C, sqlite3_snapshot_free, "sqlite3_snapshot_free"); --** Undo the hack that converts floating point types to integer for --** builds on processors without floating point support. -- -- End of the 'extern "C"' block --** 2010 August 30 --** --** The author disclaims copyright to this source code. In place of --** a legal notice, here is a blessing: --** --** May you do good and not evil. --** May you find forgiveness for yourself and forgive others. --** May you share freely, never taking more than you give. --** --************************************************************************* -- -- The double-precision datatype used by RTree depends on the --** SQLITE_RTREE_INT_ONLY compile-time option. -- subtype sqlite3_rtree_dbl is double; -- /usr/include/sqlite3.h:8024 --** Register a geometry callback named zGeom that can be used as part of an --** R-Tree geometry query as follows: --** --** SELECT ... FROM <rtree> WHERE <rtree col> MATCH $zGeom(... params ...) -- type sqlite3_rtree_geometry; function sqlite3_rtree_geometry_callback (db : access sqlite3; zGeom : Interfaces.C.Strings.chars_ptr; xGeom : access function (arg1 : access sqlite3_rtree_geometry; arg2 : int; arg3 : access sqlite3_rtree_dbl; arg4 : access int) return int; pContext : System.Address) return int; -- /usr/include/sqlite3.h:8033 pragma Import (C, sqlite3_rtree_geometry_callback, "sqlite3_rtree_geometry_callback"); --** A pointer to a structure of the following type is passed as the first --** argument to callbacks registered using rtree_geometry_callback(). -- -- Copy of pContext passed to s_r_g_c() type sqlite3_rtree_geometry is record pContext : System.Address; -- /usr/include/sqlite3.h:8046 nParam : aliased int; -- /usr/include/sqlite3.h:8047 aParam : access sqlite3_rtree_dbl; -- /usr/include/sqlite3.h:8048 pUser : System.Address; -- /usr/include/sqlite3.h:8049 xDelUser : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:8050 end record; pragma Convention (C_Pass_By_Copy, sqlite3_rtree_geometry); -- /usr/include/sqlite3.h:8045 -- Size of array aParam[] -- Parameters passed to SQL geom function -- Callback implementation user data -- Called by SQLite to clean up pUser --** Register a 2nd-generation geometry callback named zScore that can be --** used as part of an R-Tree geometry query as follows: --** --** SELECT ... FROM <rtree> WHERE <rtree col> MATCH $zQueryFunc(... params ...) -- type sqlite3_rtree_query_info; function sqlite3_rtree_query_callback (db : access sqlite3; zQueryFunc : Interfaces.C.Strings.chars_ptr; xQueryFunc : access function (arg1 : access sqlite3_rtree_query_info) return int; pContext : System.Address; xDestructor : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:8059 pragma Import (C, sqlite3_rtree_query_callback, "sqlite3_rtree_query_callback"); --** A pointer to a structure of the following type is passed as the --** argument to scored geometry callback registered using --** sqlite3_rtree_query_callback(). --** --** Note that the first 5 fields of this structure are identical to --** sqlite3_rtree_geometry. This structure is a subclass of --** sqlite3_rtree_geometry. -- -- pContext from when function registered type sqlite3_rtree_query_info is record pContext : System.Address; -- /usr/include/sqlite3.h:8078 nParam : aliased int; -- /usr/include/sqlite3.h:8079 aParam : access sqlite3_rtree_dbl; -- /usr/include/sqlite3.h:8080 pUser : System.Address; -- /usr/include/sqlite3.h:8081 xDelUser : access procedure (arg1 : System.Address); -- /usr/include/sqlite3.h:8082 aCoord : access sqlite3_rtree_dbl; -- /usr/include/sqlite3.h:8083 anQueue : access unsigned; -- /usr/include/sqlite3.h:8084 nCoord : aliased int; -- /usr/include/sqlite3.h:8085 iLevel : aliased int; -- /usr/include/sqlite3.h:8086 mxLevel : aliased int; -- /usr/include/sqlite3.h:8087 iRowid : aliased sqlite3_int64; -- /usr/include/sqlite3.h:8088 rParentScore : aliased sqlite3_rtree_dbl; -- /usr/include/sqlite3.h:8089 eParentWithin : aliased int; -- /usr/include/sqlite3.h:8090 eWithin : aliased int; -- /usr/include/sqlite3.h:8091 rScore : aliased sqlite3_rtree_dbl; -- /usr/include/sqlite3.h:8092 apSqlParam : System.Address; -- /usr/include/sqlite3.h:8094 end record; pragma Convention (C_Pass_By_Copy, sqlite3_rtree_query_info); -- /usr/include/sqlite3.h:8077 -- Number of function parameters -- value of function parameters -- callback can use this, if desired -- function to free pUser -- Coordinates of node or entry to check -- Number of pending entries in the queue -- Number of coordinates -- Level of current node or entry -- The largest iLevel value in the tree -- Rowid for current entry -- Score of parent node -- Visibility of parent node -- OUT: Visiblity -- OUT: Write the score here -- The following fields are only available in 3.8.11 and later -- Original SQL values of parameters --** Allowed values for sqlite3_rtree_query.eWithin and .eParentWithin. -- -- end of the 'extern "C"' block --** 2014 May 31 --** --** The author disclaims copyright to this source code. In place of --** a legal notice, here is a blessing: --** --** May you do good and not evil. --** May you find forgiveness for yourself and forgive others. --** May you share freely, never taking more than you give. --** --****************************************************************************** --** --** Interfaces to extend FTS5. Using the interfaces defined in this file, --** FTS5 may be extended with: --** --** * custom tokenizers, and --** * custom auxiliary functions. -- --************************************************************************ --** CUSTOM AUXILIARY FUNCTIONS --** --** Virtual table implementations may overload SQL functions by implementing --** the sqlite3_module.xFindFunction() method. -- type Fts5Context is null record; -- incomplete struct type Fts5ExtensionApi; type fts5_extension_function is access procedure (arg1 : access constant Fts5ExtensionApi; arg2 : access Fts5Context; arg3 : access sqlite3_context; arg4 : int; arg5 : System.Address); pragma Convention (C, fts5_extension_function); -- /usr/include/sqlite3.h:8150 -- API offered by current FTS version -- First arg to pass to pApi functions -- Context for returning result/error -- Number of values in apVal[] array -- Array of trailing arguments type Fts5PhraseIter is record a : access unsigned_char; -- /usr/include/sqlite3.h:8159 b : access unsigned_char; -- /usr/include/sqlite3.h:8160 end record; pragma Convention (C_Pass_By_Copy, Fts5PhraseIter); -- /usr/include/sqlite3.h:8158 --** EXTENSION API FUNCTIONS --** --** xUserData(pFts): --** Return a copy of the context pointer the extension function was --** registered with. --** --** xColumnTotalSize(pFts, iCol, pnToken): --** If parameter iCol is less than zero, set output variable *pnToken --** to the total number of tokens in the FTS5 table. Or, if iCol is --** non-negative but less than the number of columns in the table, return --** the total number of tokens in column iCol, considering all rows in --** the FTS5 table. --** --** If parameter iCol is greater than or equal to the number of columns --** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. --** an OOM condition or IO error), an appropriate SQLite error code is --** returned. --** --** xColumnCount(pFts): --** Return the number of columns in the table. --** --** xColumnSize(pFts, iCol, pnToken): --** If parameter iCol is less than zero, set output variable *pnToken --** to the total number of tokens in the current row. Or, if iCol is --** non-negative but less than the number of columns in the table, set --** *pnToken to the number of tokens in column iCol of the current row. --** --** If parameter iCol is greater than or equal to the number of columns --** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. --** an OOM condition or IO error), an appropriate SQLite error code is --** returned. --** --** This function may be quite inefficient if used with an FTS5 table --** created with the "columnsize=0" option. --** --** xColumnText: --** This function attempts to retrieve the text of column iCol of the --** current document. If successful, (*pz) is set to point to a buffer --** containing the text in utf-8 encoding, (*pn) is set to the size in bytes --** (not characters) of the buffer and SQLITE_OK is returned. Otherwise, --** if an error occurs, an SQLite error code is returned and the final values --** of (*pz) and (*pn) are undefined. --** --** xPhraseCount: --** Returns the number of phrases in the current query expression. --** --** xPhraseSize: --** Returns the number of tokens in phrase iPhrase of the query. Phrases --** are numbered starting from zero. --** --** xInstCount: --** Set *pnInst to the total number of occurrences of all phrases within --** the query within the current row. Return SQLITE_OK if successful, or --** an error code (i.e. SQLITE_NOMEM) if an error occurs. --** --** This API can be quite slow if used with an FTS5 table created with the --** "detail=none" or "detail=column" option. If the FTS5 table is created --** with either "detail=none" or "detail=column" and "content=" option --** (i.e. if it is a contentless table), then this API always returns 0. --** --** xInst: --** Query for the details of phrase match iIdx within the current row. --** Phrase matches are numbered starting from zero, so the iIdx argument --** should be greater than or equal to zero and smaller than the value --** output by xInstCount(). --** --** Usually, output parameter *piPhrase is set to the phrase number, *piCol --** to the column in which it occurs and *piOff the token offset of the --** first token of the phrase. The exception is if the table was created --** with the offsets=0 option specified. In this case *piOff is always --** set to -1. --** --** Returns SQLITE_OK if successful, or an error code (i.e. SQLITE_NOMEM) --** if an error occurs. --** --** This API can be quite slow if used with an FTS5 table created with the --** "detail=none" or "detail=column" option. --** --** xRowid: --** Returns the rowid of the current row. --** --** xTokenize: --** Tokenize text using the tokenizer belonging to the FTS5 table. --** --** xQueryPhrase(pFts5, iPhrase, pUserData, xCallback): --** This API function is used to query the FTS table for phrase iPhrase --** of the current query. Specifically, a query equivalent to: --** --** ... FROM ftstable WHERE ftstable MATCH $p ORDER BY rowid --** --** with $p set to a phrase equivalent to the phrase iPhrase of the --** current query is executed. For each row visited, the callback function --** passed as the fourth argument is invoked. The context and API objects --** passed to the callback function may be used to access the properties of --** each matched row. Invoking Api.xUserData() returns a copy of the pointer --** passed as the third argument to pUserData. --** --** If the callback function returns any value other than SQLITE_OK, the --** query is abandoned and the xQueryPhrase function returns immediately. --** If the returned value is SQLITE_DONE, xQueryPhrase returns SQLITE_OK. --** Otherwise, the error code is propagated upwards. --** --** If the query runs to completion without incident, SQLITE_OK is returned. --** Or, if some error occurs before the query completes or is aborted by --** the callback, an SQLite error code is returned. --** --** --** xSetAuxdata(pFts5, pAux, xDelete) --** --** Save the pointer passed as the second argument as the extension functions --** "auxiliary data". The pointer may then be retrieved by the current or any --** future invocation of the same fts5 extension function made as part of --** of the same MATCH query using the xGetAuxdata() API. --** --** Each extension function is allocated a single auxiliary data slot for --** each FTS query (MATCH expression). If the extension function is invoked --** more than once for a single FTS query, then all invocations share a --** single auxiliary data context. --** --** If there is already an auxiliary data pointer when this function is --** invoked, then it is replaced by the new pointer. If an xDelete callback --** was specified along with the original pointer, it is invoked at this --** point. --** --** The xDelete callback, if one is specified, is also invoked on the --** auxiliary data pointer after the FTS5 query has finished. --** --** If an error (e.g. an OOM condition) occurs within this function, an --** the auxiliary data is set to NULL and an error code returned. If the --** xDelete parameter was not NULL, it is invoked on the auxiliary data --** pointer before returning. --** --** --** xGetAuxdata(pFts5, bClear) --** --** Returns the current auxiliary data pointer for the fts5 extension --** function. See the xSetAuxdata() method for details. --** --** If the bClear argument is non-zero, then the auxiliary data is cleared --** (set to NULL) before this function returns. In this case the xDelete, --** if any, is not invoked. --** --** --** xRowCount(pFts5, pnRow) --** --** This function is used to retrieve the total number of rows in the table. --** In other words, the same value that would be returned by: --** --** SELECT count(*) FROM ftstable; --** --** xPhraseFirst() --** This function is used, along with type Fts5PhraseIter and the xPhraseNext --** method, to iterate through all instances of a single query phrase within --** the current row. This is the same information as is accessible via the --** xInstCount/xInst APIs. While the xInstCount/xInst APIs are more convenient --** to use, this API may be faster under some circumstances. To iterate --** through instances of phrase iPhrase, use the following code: --** --** Fts5PhraseIter iter; --** int iCol, iOff; --** for(pApi->xPhraseFirst(pFts, iPhrase, &iter, &iCol, &iOff); --** iCol>=0; --** pApi->xPhraseNext(pFts, &iter, &iCol, &iOff) --** ){ --** // An instance of phrase iPhrase at offset iOff of column iCol --** } --** --** The Fts5PhraseIter structure is defined above. Applications should not --** modify this structure directly - it should only be used as shown above --** with the xPhraseFirst() and xPhraseNext() API methods (and by --** xPhraseFirstColumn() and xPhraseNextColumn() as illustrated below). --** --** This API can be quite slow if used with an FTS5 table created with the --** "detail=none" or "detail=column" option. If the FTS5 table is created --** with either "detail=none" or "detail=column" and "content=" option --** (i.e. if it is a contentless table), then this API always iterates --** through an empty set (all calls to xPhraseFirst() set iCol to -1). --** --** xPhraseNext() --** See xPhraseFirst above. --** --** xPhraseFirstColumn() --** This function and xPhraseNextColumn() are similar to the xPhraseFirst() --** and xPhraseNext() APIs described above. The difference is that instead --** of iterating through all instances of a phrase in the current row, these --** APIs are used to iterate through the set of columns in the current row --** that contain one or more instances of a specified phrase. For example: --** --** Fts5PhraseIter iter; --** int iCol; --** for(pApi->xPhraseFirstColumn(pFts, iPhrase, &iter, &iCol); --** iCol>=0; --** pApi->xPhraseNextColumn(pFts, &iter, &iCol) --** ){ --** // Column iCol contains at least one instance of phrase iPhrase --** } --** --** This API can be quite slow if used with an FTS5 table created with the --** "detail=none" option. If the FTS5 table is created with either --** "detail=none" "content=" option (i.e. if it is a contentless table), --** then this API always iterates through an empty set (all calls to --** xPhraseFirstColumn() set iCol to -1). --** --** The information accessed using this API and its companion --** xPhraseFirstColumn() may also be obtained using xPhraseFirst/xPhraseNext --** (or xInst/xInstCount). The chief advantage of this API is that it is --** significantly more efficient than those alternatives when used with --** "detail=column" tables. --** --** xPhraseNextColumn() --** See xPhraseFirstColumn above. -- -- Currently always set to 3 type Fts5ExtensionApi is record iVersion : aliased int; -- /usr/include/sqlite3.h:8377 xUserData : access function (arg1 : access Fts5Context) return System.Address; -- /usr/include/sqlite3.h:8379 xColumnCount : access function (arg1 : access Fts5Context) return int; -- /usr/include/sqlite3.h:8381 xRowCount : access function (arg1 : access Fts5Context; arg2 : access sqlite3_int64) return int; -- /usr/include/sqlite3.h:8382 xColumnTotalSize : access function (arg1 : access Fts5Context; arg2 : int; arg3 : access sqlite3_int64) return int; -- /usr/include/sqlite3.h:8383 xTokenize : access function (arg1 : access Fts5Context; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : System.Address; arg5 : access function (arg1 : System.Address; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int; arg5 : int; arg6 : int) return int) return int; -- /usr/include/sqlite3.h:8389 xPhraseCount : access function (arg1 : access Fts5Context) return int; -- /usr/include/sqlite3.h:8391 xPhraseSize : access function (arg1 : access Fts5Context; arg2 : int) return int; -- /usr/include/sqlite3.h:8392 xInstCount : access function (arg1 : access Fts5Context; arg2 : access int) return int; -- /usr/include/sqlite3.h:8394 xInst : access function (arg1 : access Fts5Context; arg2 : int; arg3 : access int; arg4 : access int; arg5 : access int) return int; -- /usr/include/sqlite3.h:8395 xRowid : access function (arg1 : access Fts5Context) return sqlite3_int64; -- /usr/include/sqlite3.h:8397 xColumnText : access function (arg1 : access Fts5Context; arg2 : int; arg3 : System.Address; arg4 : access int) return int; -- /usr/include/sqlite3.h:8398 xColumnSize : access function (arg1 : access Fts5Context; arg2 : int; arg3 : access int) return int; -- /usr/include/sqlite3.h:8399 xQueryPhrase : access function (arg1 : access Fts5Context; arg2 : int; arg3 : System.Address; arg4 : access function (arg1 : access constant Fts5ExtensionApi; arg2 : access Fts5Context; arg3 : System.Address) return int) return int; -- /usr/include/sqlite3.h:8403 xSetAuxdata : access function (arg1 : access Fts5Context; arg2 : System.Address; arg3 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:8404 xGetAuxdata : access function (arg1 : access Fts5Context; arg2 : int) return System.Address; -- /usr/include/sqlite3.h:8405 xPhraseFirst : access function (arg1 : access Fts5Context; arg2 : int; arg3 : access Fts5PhraseIter; arg4 : access int; arg5 : access int) return int; -- /usr/include/sqlite3.h:8407 xPhraseNext : access procedure (arg1 : access Fts5Context; arg2 : access Fts5PhraseIter; arg3 : access int; arg4 : access int); -- /usr/include/sqlite3.h:8408 xPhraseFirstColumn : access function (arg1 : access Fts5Context; arg2 : int; arg3 : access Fts5PhraseIter; arg4 : access int) return int; -- /usr/include/sqlite3.h:8410 xPhraseNextColumn : access procedure (arg1 : access Fts5Context; arg2 : access Fts5PhraseIter; arg3 : access int); -- /usr/include/sqlite3.h:8411 end record; pragma Convention (C_Pass_By_Copy, Fts5ExtensionApi); -- /usr/include/sqlite3.h:8376 -- Text to tokenize -- Context passed to xToken() -- Callback -- --** CUSTOM AUXILIARY FUNCTIONS --************************************************************************ --************************************************************************ --** CUSTOM TOKENIZERS --** --** Applications may also register custom tokenizer types. A tokenizer --** is registered by providing fts5 with a populated instance of the --** following structure. All structure methods must be defined, setting --** any member of the fts5_tokenizer struct to NULL leads to undefined --** behaviour. The structure methods are expected to function as follows: --** --** xCreate: --** This function is used to allocate and inititalize a tokenizer instance. --** A tokenizer instance is required to actually tokenize text. --** --** The first argument passed to this function is a copy of the (void*) --** pointer provided by the application when the fts5_tokenizer object --** was registered with FTS5 (the third argument to xCreateTokenizer()). --** The second and third arguments are an array of nul-terminated strings --** containing the tokenizer arguments, if any, specified following the --** tokenizer name as part of the CREATE VIRTUAL TABLE statement used --** to create the FTS5 table. --** --** The final argument is an output variable. If successful, (*ppOut) --** should be set to point to the new tokenizer handle and SQLITE_OK --** returned. If an error occurs, some value other than SQLITE_OK should --** be returned. In this case, fts5 assumes that the final value of *ppOut --** is undefined. --** --** xDelete: --** This function is invoked to delete a tokenizer handle previously --** allocated using xCreate(). Fts5 guarantees that this function will --** be invoked exactly once for each successful call to xCreate(). --** --** xTokenize: --** This function is expected to tokenize the nText byte string indicated --** by argument pText. pText may or may not be nul-terminated. The first --** argument passed to this function is a pointer to an Fts5Tokenizer object --** returned by an earlier call to xCreate(). --** --** The second argument indicates the reason that FTS5 is requesting --** tokenization of the supplied text. This is always one of the following --** four values: --** --** <ul><li> <b>FTS5_TOKENIZE_DOCUMENT</b> - A document is being inserted into --** or removed from the FTS table. The tokenizer is being invoked to --** determine the set of tokens to add to (or delete from) the --** FTS index. --** --** <li> <b>FTS5_TOKENIZE_QUERY</b> - A MATCH query is being executed --** against the FTS index. The tokenizer is being called to tokenize --** a bareword or quoted string specified as part of the query. --** --** <li> <b>(FTS5_TOKENIZE_QUERY | FTS5_TOKENIZE_PREFIX)</b> - Same as --** FTS5_TOKENIZE_QUERY, except that the bareword or quoted string is --** followed by a "*" character, indicating that the last token --** returned by the tokenizer will be treated as a token prefix. --** --** <li> <b>FTS5_TOKENIZE_AUX</b> - The tokenizer is being invoked to --** satisfy an fts5_api.xTokenize() request made by an auxiliary --** function. Or an fts5_api.xColumnSize() request made by the same --** on a columnsize=0 database. --** </ul> --** --** For each token in the input string, the supplied callback xToken() must --** be invoked. The first argument to it should be a copy of the pointer --** passed as the second argument to xTokenize(). The third and fourth --** arguments are a pointer to a buffer containing the token text, and the --** size of the token in bytes. The 4th and 5th arguments are the byte offsets --** of the first byte of and first byte immediately following the text from --** which the token is derived within the input. --** --** The second argument passed to the xToken() callback ("tflags") should --** normally be set to 0. The exception is if the tokenizer supports --** synonyms. In this case see the discussion below for details. --** --** FTS5 assumes the xToken() callback is invoked for each token in the --** order that they occur within the input text. --** --** If an xToken() callback returns any value other than SQLITE_OK, then --** the tokenization should be abandoned and the xTokenize() method should --** immediately return a copy of the xToken() return value. Or, if the --** input buffer is exhausted, xTokenize() should return SQLITE_OK. Finally, --** if an error occurs with the xTokenize() implementation itself, it --** may abandon the tokenization and return any error code other than --** SQLITE_OK or SQLITE_DONE. --** --** SYNONYM SUPPORT --** --** Custom tokenizers may also support synonyms. Consider a case in which a --** user wishes to query for a phrase such as "first place". Using the --** built-in tokenizers, the FTS5 query 'first + place' will match instances --** of "first place" within the document set, but not alternative forms --** such as "1st place". In some applications, it would be better to match --** all instances of "first place" or "1st place" regardless of which form --** the user specified in the MATCH query text. --** --** There are several ways to approach this in FTS5: --** --** <ol><li> By mapping all synonyms to a single token. In this case, the --** In the above example, this means that the tokenizer returns the --** same token for inputs "first" and "1st". Say that token is in --** fact "first", so that when the user inserts the document "I won --** 1st place" entries are added to the index for tokens "i", "won", --** "first" and "place". If the user then queries for '1st + place', --** the tokenizer substitutes "first" for "1st" and the query works --** as expected. --** --** <li> By adding multiple synonyms for a single term to the FTS index. --** In this case, when tokenizing query text, the tokenizer may --** provide multiple synonyms for a single term within the document. --** FTS5 then queries the index for each synonym individually. For --** example, faced with the query: --** --** <codeblock> --** ... MATCH 'first place'</codeblock> --** --** the tokenizer offers both "1st" and "first" as synonyms for the --** first token in the MATCH query and FTS5 effectively runs a query --** similar to: --** --** <codeblock> --** ... MATCH '(first OR 1st) place'</codeblock> --** --** except that, for the purposes of auxiliary functions, the query --** still appears to contain just two phrases - "(first OR 1st)" --** being treated as a single phrase. --** --** <li> By adding multiple synonyms for a single term to the FTS index. --** Using this method, when tokenizing document text, the tokenizer --** provides multiple synonyms for each token. So that when a --** document such as "I won first place" is tokenized, entries are --** added to the FTS index for "i", "won", "first", "1st" and --** "place". --** --** This way, even if the tokenizer does not provide synonyms --** when tokenizing query text (it should not - to do would be --** inefficient), it doesn't matter if the user queries for --** 'first + place' or '1st + place', as there are entires in the --** FTS index corresponding to both forms of the first token. --** </ol> --** --** Whether it is parsing document or query text, any call to xToken that --** specifies a <i>tflags</i> argument with the FTS5_TOKEN_COLOCATED bit --** is considered to supply a synonym for the previous token. For example, --** when parsing the document "I won first place", a tokenizer that supports --** synonyms would call xToken() 5 times, as follows: --** --** <codeblock> --** xToken(pCtx, 0, "i", 1, 0, 1); --** xToken(pCtx, 0, "won", 3, 2, 5); --** xToken(pCtx, 0, "first", 5, 6, 11); --** xToken(pCtx, FTS5_TOKEN_COLOCATED, "1st", 3, 6, 11); --** xToken(pCtx, 0, "place", 5, 12, 17); --**</codeblock> --** --** It is an error to specify the FTS5_TOKEN_COLOCATED flag the first time --** xToken() is called. Multiple synonyms may be specified for a single token --** by making multiple calls to xToken(FTS5_TOKEN_COLOCATED) in sequence. --** There is no limit to the number of synonyms that may be provided for a --** single token. --** --** In many cases, method (1) above is the best approach. It does not add --** extra data to the FTS index or require FTS5 to query for multiple terms, --** so it is efficient in terms of disk space and query speed. However, it --** does not support prefix queries very well. If, as suggested above, the --** token "first" is subsituted for "1st" by the tokenizer, then the query: --** --** <codeblock> --** ... MATCH '1s*'</codeblock> --** --** will not match documents that contain the token "1st" (as the tokenizer --** will probably not map "1s" to any prefix of "first"). --** --** For full prefix support, method (3) may be preferred. In this case, --** because the index contains entries for both "first" and "1st", prefix --** queries such as 'fi*' or '1s*' will match correctly. However, because --** extra entries are added to the FTS index, this method uses more space --** within the database. --** --** Method (2) offers a midpoint between (1) and (3). Using this method, --** a query such as '1s*' will match documents that contain the literal --** token "1st", but not "first" (assuming the tokenizer is not able to --** provide synonyms for prefixes). However, a non-prefix query like '1st' --** will match against "1st" and "first". This method does not require --** extra disk space, as no extra entries are added to the FTS index. --** On the other hand, it may require more CPU cycles to run MATCH queries, --** as separate queries of the FTS index are required for each synonym. --** --** When using methods (2) or (3), it is important that the tokenizer only --** provide synonyms when tokenizing document text (method (2)) or query --** text (method (3)), not both. Doing so will not cause any errors, but is --** inefficient. -- type Fts5Tokenizer is null record; -- incomplete struct type fts5_tokenizer is record xCreate : access function (arg1 : System.Address; arg2 : System.Address; arg3 : int; arg4 : System.Address) return int; -- /usr/include/sqlite3.h:8613 xDelete : access procedure (arg1 : access Fts5Tokenizer); -- /usr/include/sqlite3.h:8614 xTokenize : access function (arg1 : access Fts5Tokenizer; arg2 : System.Address; arg3 : int; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : int; arg6 : access function (arg1 : System.Address; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int; arg5 : int; arg6 : int) return int) return int; -- /usr/include/sqlite3.h:8627 end record; pragma Convention (C_Pass_By_Copy, fts5_tokenizer); -- /usr/include/sqlite3.h:8612 -- Mask of FTS5_TOKENIZE_* flags -- Copy of 2nd argument to xTokenize() -- Mask of FTS5_TOKEN_* flags -- Pointer to buffer containing token -- Size of token in bytes -- Byte offset of token within input text -- Byte offset of end of token within input text -- Flags that may be passed as the third argument to xTokenize() -- Flags that may be passed by the tokenizer implementation back to FTS5 --** as the third argument to the supplied xToken callback. --** END OF CUSTOM TOKENIZERS --************************************************************************ --************************************************************************ --** FTS5 EXTENSION REGISTRATION API -- -- Currently always set to 2 type fts5_api; type fts5_api is record iVersion : aliased int; -- /usr/include/sqlite3.h:8649 xCreateTokenizer : access function (arg1 : access fts5_api; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : System.Address; arg4 : access fts5_tokenizer; arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:8658 xFindTokenizer : access function (arg1 : access fts5_api; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : System.Address; arg4 : access fts5_tokenizer) return int; -- /usr/include/sqlite3.h:8666 xCreateFunction : access function (arg1 : access fts5_api; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : System.Address; arg4 : fts5_extension_function; arg5 : access procedure (arg1 : System.Address)) return int; -- /usr/include/sqlite3.h:8675 end record; pragma Convention (C_Pass_By_Copy, fts5_api); -- /usr/include/sqlite3.h:8648 -- Create a new tokenizer -- Find an existing tokenizer -- Create a new auxiliary function --** END OF REGISTRATION API --************************************************************************ -- end of the 'extern "C"' block end Sqlite3_H;
52.519406
190
0.692035
0b389f5d4032dc834a1f6e9aed3c08303c39066e
7,432
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/g-byorma.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/g-byorma.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/g-byorma.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . B Y T E _ O R D E R _ M A R K -- -- -- -- B o d y -- -- -- -- Copyright (C) 2006-2013, 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 Compiler_Unit_Warning; package body GNAT.Byte_Order_Mark is -------------- -- Read_BOM -- -------------- procedure Read_BOM (Str : String; Len : out Natural; BOM : out BOM_Kind; XML_Support : Boolean := False) is begin -- Note: the order of these tests is important, because in some cases -- one sequence is a prefix of a longer sequence, and we must test for -- the longer sequence first -- UTF-32 (big-endian) if Str'Length >= 4 and then Str (Str'First) = Character'Val (16#00#) and then Str (Str'First + 1) = Character'Val (16#00#) and then Str (Str'First + 2) = Character'Val (16#FE#) and then Str (Str'First + 3) = Character'Val (16#FF#) then Len := 4; BOM := UTF32_BE; -- UTF-32 (little-endian) elsif Str'Length >= 4 and then Str (Str'First) = Character'Val (16#FF#) and then Str (Str'First + 1) = Character'Val (16#FE#) and then Str (Str'First + 2) = Character'Val (16#00#) and then Str (Str'First + 3) = Character'Val (16#00#) then Len := 4; BOM := UTF32_LE; -- UTF-16 (big-endian) elsif Str'Length >= 2 and then Str (Str'First) = Character'Val (16#FE#) and then Str (Str'First + 1) = Character'Val (16#FF#) then Len := 2; BOM := UTF16_BE; -- UTF-16 (little-endian) elsif Str'Length >= 2 and then Str (Str'First) = Character'Val (16#FF#) and then Str (Str'First + 1) = Character'Val (16#FE#) then Len := 2; BOM := UTF16_LE; -- UTF-8 (endian-independent) elsif Str'Length >= 3 and then Str (Str'First) = Character'Val (16#EF#) and then Str (Str'First + 1) = Character'Val (16#BB#) and then Str (Str'First + 2) = Character'Val (16#BF#) then Len := 3; BOM := UTF8_All; -- UCS-4 (big-endian) XML only elsif XML_Support and then Str'Length >= 4 and then Str (Str'First) = Character'Val (16#00#) and then Str (Str'First + 1) = Character'Val (16#00#) and then Str (Str'First + 2) = Character'Val (16#00#) and then Str (Str'First + 3) = Character'Val (16#3C#) then Len := 0; BOM := UCS4_BE; -- UCS-4 (little-endian) XML case elsif XML_Support and then Str'Length >= 4 and then Str (Str'First) = Character'Val (16#3C#) and then Str (Str'First + 1) = Character'Val (16#00#) and then Str (Str'First + 2) = Character'Val (16#00#) and then Str (Str'First + 3) = Character'Val (16#00#) then Len := 0; BOM := UCS4_LE; -- UCS-4 (unusual byte order 2143) XML case elsif XML_Support and then Str'Length >= 4 and then Str (Str'First) = Character'Val (16#00#) and then Str (Str'First + 1) = Character'Val (16#00#) and then Str (Str'First + 2) = Character'Val (16#3C#) and then Str (Str'First + 3) = Character'Val (16#00#) then Len := 0; BOM := UCS4_2143; -- UCS-4 (unusual byte order 3412) XML case elsif XML_Support and then Str'Length >= 4 and then Str (Str'First) = Character'Val (16#00#) and then Str (Str'First + 1) = Character'Val (16#3C#) and then Str (Str'First + 2) = Character'Val (16#00#) and then Str (Str'First + 3) = Character'Val (16#00#) then Len := 0; BOM := UCS4_3412; -- UTF-16 (big-endian) XML case elsif XML_Support and then Str'Length >= 4 and then Str (Str'First) = Character'Val (16#00#) and then Str (Str'First + 1) = Character'Val (16#3C#) and then Str (Str'First + 2) = Character'Val (16#00#) and then Str (Str'First + 3) = Character'Val (16#3F#) then Len := 0; BOM := UTF16_BE; -- UTF-32 (little-endian) XML case elsif XML_Support and then Str'Length >= 4 and then Str (Str'First) = Character'Val (16#3C#) and then Str (Str'First + 1) = Character'Val (16#00#) and then Str (Str'First + 2) = Character'Val (16#3F#) and then Str (Str'First + 3) = Character'Val (16#00#) then Len := 0; BOM := UTF16_LE; -- Unrecognized special encodings XML only elsif XML_Support and then Str'Length >= 4 and then Str (Str'First) = Character'Val (16#3C#) and then Str (Str'First + 1) = Character'Val (16#3F#) and then Str (Str'First + 2) = Character'Val (16#78#) and then Str (Str'First + 3) = Character'Val (16#6D#) then -- UTF-8, ASCII, some part of ISO8859, Shift-JIS, EUC,... Len := 0; BOM := Unknown; -- No BOM recognized else Len := 0; BOM := Unknown; end if; end Read_BOM; end GNAT.Byte_Order_Mark;
37.918367
78
0.474973
1c109b6ea75d6a5f4af318cb8bc9e1645774a55b
83,377
adb
Ada
source/amf/dd/amf-internals-tables-dd_attributes.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/dd/amf-internals-tables-dd_attributes.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/dd/amf-internals-tables-dd_attributes.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-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$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Internals.Links; with AMF.Internals.Tables.DC_Notification; with AMF.Internals.Tables.DD_Element_Table; with AMF.Internals.Tables.DD_Types; with AMF.Internals.Tables.DG_Metamodel; package body AMF.Internals.Tables.DD_Attributes is use type Matreshka.Internals.Strings.Shared_String_Access; -- Canvas -- -- 5 Canvas::backgroundColor -- 4 Canvas::backgroundFill -- 3 GraphicalElement::clipPath -- 2 GraphicalElement::group -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 3 Group::member -- 4 Canvas::packagedFill -- 5 Canvas::packagedMarker -- 6 Canvas::packagedStyle -- 2 GraphicalElement::sharedStyle -- Circle -- -- 5 Circle::center -- 3 GraphicalElement::clipPath -- 2 GraphicalElement::group -- 4 Circle::radius -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- ClipPath -- -- 3 GraphicalElement::clipPath -- 4 ClipPath::clippedElement -- 2 GraphicalElement::group -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 3 Group::member -- 2 GraphicalElement::sharedStyle -- Ellipse -- -- 5 Ellipse::center -- 3 GraphicalElement::clipPath -- 2 GraphicalElement::group -- 4 Ellipse::radii -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- Group -- -- 3 GraphicalElement::clipPath -- 2 GraphicalElement::group -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 3 Group::member -- 2 GraphicalElement::sharedStyle -- Image -- -- 4 Image::bounds -- 3 GraphicalElement::clipPath -- 2 GraphicalElement::group -- 6 Image::isAspectRatioPreserved -- 5 Image::source -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- Line -- -- 3 GraphicalElement::clipPath -- 8 Line::end -- 5 MarkedElement::endMarker -- 2 GraphicalElement::group -- 6 MarkedElement::midMarker -- 7 Line::start -- 4 MarkedElement::startMarker -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- LinearGradient -- -- 2 Fill::canvas -- 3 Gradient::stop -- 1 Fill::transform -- 4 LinearGradient::x1 -- 5 LinearGradient::x2 -- 6 LinearGradient::y1 -- 7 LinearGradient::y2 -- -- MarkedElement -- -- 3 GraphicalElement::clipPath -- 5 MarkedElement::endMarker -- 2 GraphicalElement::group -- 6 MarkedElement::midMarker -- 4 MarkedElement::startMarker -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- Marker -- -- 4 Marker::canvas -- 3 GraphicalElement::clipPath -- 2 GraphicalElement::group -- 6 Marker::reference -- 5 Marker::size -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 3 Group::member -- 2 GraphicalElement::sharedStyle -- Path -- -- 3 GraphicalElement::clipPath -- 7 Path::command -- 5 MarkedElement::endMarker -- 2 GraphicalElement::group -- 6 MarkedElement::midMarker -- 4 MarkedElement::startMarker -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- Pattern -- -- 4 Pattern::bounds -- 2 Fill::canvas -- 3 Pattern::tile -- 1 Fill::transform -- -- Polygon -- -- 3 GraphicalElement::clipPath -- 5 MarkedElement::endMarker -- 2 GraphicalElement::group -- 6 MarkedElement::midMarker -- 7 Polygon::point -- 4 MarkedElement::startMarker -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- Polyline -- -- 3 GraphicalElement::clipPath -- 5 MarkedElement::endMarker -- 2 GraphicalElement::group -- 6 MarkedElement::midMarker -- 7 Polyline::point -- 4 MarkedElement::startMarker -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- RadialGradient -- -- 2 Fill::canvas -- 5 RadialGradient::centerX -- 6 RadialGradient::centerY -- 7 RadialGradient::focusX -- 8 RadialGradient::focusY -- 4 RadialGradient::radius -- 3 Gradient::stop -- 1 Fill::transform -- -- Rectangle -- -- 4 Rectangle::bounds -- 3 GraphicalElement::clipPath -- 5 Rectangle::cornerRadius -- 2 GraphicalElement::group -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle -- Style -- -- 1 Style::fill -- 2 Style::fillColor -- 3 Style::fillOpacity -- 12 Style::fontBold -- 10 Style::fontColor -- 11 Style::fontItalic -- 9 Style::fontName -- 8 Style::fontSize -- 14 Style::fontStrikeThrough -- 13 Style::fontUnderline -- 6 Style::strokeColor -- 7 Style::strokeDashLength -- 5 Style::strokeOpacity -- 4 Style::strokeWidth -- -- Text -- -- 6 Text::alignment -- 4 Text::bounds -- 3 GraphicalElement::clipPath -- 5 Text::data -- 2 GraphicalElement::group -- 1 GraphicalElement::transform -- -- 1 GraphicalElement::localStyle -- 2 GraphicalElement::sharedStyle ---------------------------- -- Internal_Get_Alignment -- ---------------------------- function Internal_Get_Alignment (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Alignment_Kind is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Alignment_Kind_Value; end Internal_Get_Alignment; ----------------------------------- -- Internal_Get_Background_Color -- ----------------------------------- function Internal_Get_Background_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Color_Holder; end Internal_Get_Background_Color; ---------------------------------- -- Internal_Get_Background_Fill -- ---------------------------------- function Internal_Get_Background_Fill (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Background_Fill; ------------------------- -- Internal_Get_Bounds -- ------------------------- function Internal_Get_Bounds (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Bounds is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Bounds_Value; end Internal_Get_Bounds; ------------------------- -- Internal_Get_Canvas -- ------------------------- function Internal_Get_Canvas (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Linear_Gradient => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marker => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Pattern => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Radial_Gradient => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Canvas; ------------------------- -- Internal_Get_Center -- ------------------------- function Internal_Get_Center (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Point_Value; end Internal_Get_Center; --------------------------- -- Internal_Get_Center_X -- --------------------------- function Internal_Get_Center_X (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value; end Internal_Get_Center_X; --------------------------- -- Internal_Get_Center_Y -- --------------------------- function Internal_Get_Center_Y (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Real_Value; end Internal_Get_Center_Y; ---------------------------- -- Internal_Get_Clip_Path -- ---------------------------- function Internal_Get_Clip_Path (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Circle => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Ellipse => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Group => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Image => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Line => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marker => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Rectangle => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Text => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Clip_Path; ---------------------------------- -- Internal_Get_Clipped_Element -- ---------------------------------- function Internal_Get_Clipped_Element (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Clipped_Element; -------------------------- -- Internal_Get_Command -- -------------------------- function Internal_Get_Command (Self : AMF.Internals.AMF_Element) return AMF.DG.Sequence_Of_Path_Command is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Path_Collection; end Internal_Get_Command; -------------------------------- -- Internal_Get_Corner_Radius -- -------------------------------- function Internal_Get_Corner_Radius (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value; end Internal_Get_Corner_Radius; ----------------------- -- Internal_Get_Data -- ----------------------- function Internal_Get_Data (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).String_Value; end Internal_Get_Data; ---------------------- -- Internal_Get_End -- ---------------------- function Internal_Get_End (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Point_Value; end Internal_Get_End; ----------------------------- -- Internal_Get_End_Marker -- ----------------------------- function Internal_Get_End_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Line => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Link, Self); when others => raise Program_Error; end case; end Internal_Get_End_Marker; ----------------------- -- Internal_Get_Fill -- ----------------------- function Internal_Get_Fill (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Style => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (1).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Fill; ----------------------------- -- Internal_Get_Fill_Color -- ----------------------------- function Internal_Get_Fill_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Color_Holder; end Internal_Get_Fill_Color; ------------------------------- -- Internal_Get_Fill_Opacity -- ------------------------------- function Internal_Get_Fill_Opacity (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Real_Holder; end Internal_Get_Fill_Opacity; -------------------------- -- Internal_Get_Focus_X -- -------------------------- function Internal_Get_Focus_X (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Real_Value; end Internal_Get_Focus_X; -------------------------- -- Internal_Get_Focus_Y -- -------------------------- function Internal_Get_Focus_Y (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Real_Value; end Internal_Get_Focus_Y; ---------------------------- -- Internal_Get_Font_Bold -- ---------------------------- function Internal_Get_Font_Bold (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (12).Boolean_Holder; end Internal_Get_Font_Bold; ----------------------------- -- Internal_Get_Font_Color -- ----------------------------- function Internal_Get_Font_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (10).Color_Holder; end Internal_Get_Font_Color; ------------------------------ -- Internal_Get_Font_Italic -- ------------------------------ function Internal_Get_Font_Italic (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (11).Boolean_Holder; end Internal_Get_Font_Italic; ---------------------------- -- Internal_Get_Font_Name -- ---------------------------- function Internal_Get_Font_Name (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (9).String_Value; end Internal_Get_Font_Name; ---------------------------- -- Internal_Get_Font_Size -- ---------------------------- function Internal_Get_Font_Size (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Real_Holder; end Internal_Get_Font_Size; -------------------------------------- -- Internal_Get_Font_Strike_Through -- -------------------------------------- function Internal_Get_Font_Strike_Through (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (14).Boolean_Holder; end Internal_Get_Font_Strike_Through; --------------------------------- -- Internal_Get_Font_Underline -- --------------------------------- function Internal_Get_Font_Underline (Self : AMF.Internals.AMF_Element) return AMF.Optional_Boolean is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (13).Boolean_Holder; end Internal_Get_Font_Underline; ------------------------ -- Internal_Get_Group -- ------------------------ function Internal_Get_Group (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Circle => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Ellipse => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Group => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Image => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Line => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marker => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Rectangle => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Text => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Group; -------------------------------------------- -- Internal_Get_Is_Aspect_Ratio_Preserved -- -------------------------------------------- function Internal_Get_Is_Aspect_Ratio_Preserved (Self : AMF.Internals.AMF_Element) return Boolean is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Boolean_Value; end Internal_Get_Is_Aspect_Ratio_Preserved; ------------------------------ -- Internal_Get_Local_Style -- ------------------------------ function Internal_Get_Local_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Circle => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Ellipse => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Group => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Image => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Line => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Marker => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Path => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Polygon => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Polyline => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Rectangle => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when AMF.Internals.Tables.DD_Types.E_DG_Text => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 1; when others => raise Program_Error; end case; end Internal_Get_Local_Style; ------------------------- -- Internal_Get_Member -- ------------------------- function Internal_Get_Member (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 3; when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 3; when AMF.Internals.Tables.DD_Types.E_DG_Group => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 3; when AMF.Internals.Tables.DD_Types.E_DG_Marker => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 3; when others => raise Program_Error; end case; end Internal_Get_Member; ----------------------------- -- Internal_Get_Mid_Marker -- ----------------------------- function Internal_Get_Mid_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Line => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Mid_Marker; -------------------------------- -- Internal_Get_Packaged_Fill -- -------------------------------- function Internal_Get_Packaged_Fill (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 4; when others => raise Program_Error; end case; end Internal_Get_Packaged_Fill; ---------------------------------- -- Internal_Get_Packaged_Marker -- ---------------------------------- function Internal_Get_Packaged_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 5; when others => raise Program_Error; end case; end Internal_Get_Packaged_Marker; --------------------------------- -- Internal_Get_Packaged_Style -- --------------------------------- function Internal_Get_Packaged_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 6; when others => raise Program_Error; end case; end Internal_Get_Packaged_Style; ------------------------ -- Internal_Get_Point -- ------------------------ function Internal_Get_Point (Self : AMF.Internals.AMF_Element) return AMF.DC.Sequence_Of_DC_Point is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Point_Collection; end Internal_Get_Point; ------------------------ -- Internal_Get_Radii -- ------------------------ function Internal_Get_Radii (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Dimension is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Dimension_Value; end Internal_Get_Radii; ------------------------- -- Internal_Get_Radius -- ------------------------- function Internal_Get_Radius (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Value; end Internal_Get_Radius; ---------------------------- -- Internal_Get_Reference -- ---------------------------- function Internal_Get_Reference (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Point_Value; end Internal_Get_Reference; ------------------------------- -- Internal_Get_Shared_Style -- ------------------------------- function Internal_Get_Shared_Style (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Collection_Of_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Circle => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Ellipse => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Group => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Image => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Line => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Marker => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Path => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Polygon => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Polyline => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Rectangle => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when AMF.Internals.Tables.DD_Types.E_DG_Text => return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (0).Collection + 2; when others => raise Program_Error; end case; end Internal_Get_Shared_Style; ----------------------- -- Internal_Get_Size -- ----------------------- function Internal_Get_Size (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Dimension is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Dimension_Value; end Internal_Get_Size; ------------------------- -- Internal_Get_Source -- ------------------------- function Internal_Get_Source (Self : AMF.Internals.AMF_Element) return Matreshka.Internals.Strings.Shared_String_Access is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).String_Value; end Internal_Get_Source; ------------------------ -- Internal_Get_Start -- ------------------------ function Internal_Get_Start (Self : AMF.Internals.AMF_Element) return AMF.DC.DC_Point is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Point_Value; end Internal_Get_Start; ------------------------------- -- Internal_Get_Start_Marker -- ------------------------------- function Internal_Get_Start_Marker (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Line => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Path => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Start_Marker; ----------------------- -- Internal_Get_Stop -- ----------------------- function Internal_Get_Stop (Self : AMF.Internals.AMF_Element) return AMF.DG.Set_Of_DG_Gradient_Stop is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Gradient_Collection; end Internal_Get_Stop; ------------------------------- -- Internal_Get_Stroke_Color -- ------------------------------- function Internal_Get_Stroke_Color (Self : AMF.Internals.AMF_Element) return AMF.DC.Optional_DC_Color is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Color_Holder; end Internal_Get_Stroke_Color; ------------------------------------- -- Internal_Get_Stroke_Dash_Length -- ------------------------------------- function Internal_Get_Stroke_Dash_Length (Self : AMF.Internals.AMF_Element) return AMF.Real_Collections.Sequence_Of_Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Real_Collection; end Internal_Get_Stroke_Dash_Length; --------------------------------- -- Internal_Get_Stroke_Opacity -- --------------------------------- function Internal_Get_Stroke_Opacity (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Holder; end Internal_Get_Stroke_Opacity; ------------------------------- -- Internal_Get_Stroke_Width -- ------------------------------- function Internal_Get_Stroke_Width (Self : AMF.Internals.AMF_Element) return AMF.Optional_Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Holder; end Internal_Get_Stroke_Width; ----------------------- -- Internal_Get_Tile -- ----------------------- function Internal_Get_Tile (Self : AMF.Internals.AMF_Element) return AMF.Internals.AMF_Element is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Pattern => return AMF.Internals.Links.Opposite_Element (AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Link, Self); when others => raise Program_Error; end case; end Internal_Get_Tile; ---------------------------- -- Internal_Get_Transform -- ---------------------------- function Internal_Get_Transform (Self : AMF.Internals.AMF_Element) return AMF.DG.Sequence_Of_DG_Transform is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (1).Transform_Collection; end Internal_Get_Transform; --------------------- -- Internal_Get_X1 -- --------------------- function Internal_Get_X1 (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Value; end Internal_Get_X1; --------------------- -- Internal_Get_X2 -- --------------------- function Internal_Get_X2 (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value; end Internal_Get_X2; --------------------- -- Internal_Get_Y1 -- --------------------- function Internal_Get_Y1 (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Real_Value; end Internal_Get_Y1; --------------------- -- Internal_Get_Y2 -- --------------------- function Internal_Get_Y2 (Self : AMF.Internals.AMF_Element) return AMF.Real is begin return AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Real_Value; end Internal_Get_Y2; ---------------------------- -- Internal_Set_Alignment -- ---------------------------- procedure Internal_Set_Alignment (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Alignment_Kind) is Old : AMF.DC.DC_Alignment_Kind; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Alignment_Kind_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Alignment_Kind_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Alignment, Old, To); end Internal_Set_Alignment; ----------------------------------- -- Internal_Set_Background_Color -- ----------------------------------- procedure Internal_Set_Background_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color) is Old : AMF.DC.Optional_DC_Color; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Color_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Color_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Canvas_Background_Color, Old, To); end Internal_Set_Background_Color; ---------------------------------- -- Internal_Set_Background_Fill -- ---------------------------------- procedure Internal_Set_Background_Fill (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Canvas_Background_Fill_Canvas, Self, To); when others => raise Program_Error; end case; end Internal_Set_Background_Fill; ------------------------- -- Internal_Set_Bounds -- ------------------------- procedure Internal_Set_Bounds (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Bounds) is Old : AMF.DC.DC_Bounds; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Bounds_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Bounds_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Bounds, Old, To); end Internal_Set_Bounds; ------------------------- -- Internal_Set_Canvas -- ------------------------- procedure Internal_Set_Canvas (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Linear_Gradient => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Canvas_Packaged_Fill_Canvas, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marker => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Canvas_Packaged_Marker_Canvas, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Pattern => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Canvas_Packaged_Fill_Canvas, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Radial_Gradient => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Canvas_Packaged_Fill_Canvas, To, Self); when others => raise Program_Error; end case; end Internal_Set_Canvas; ------------------------- -- Internal_Set_Center -- ------------------------- procedure Internal_Set_Center (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point) is Old : AMF.DC.DC_Point; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Point_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Point_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Circle_Center, Old, To); end Internal_Set_Center; --------------------------- -- Internal_Set_Center_X -- --------------------------- procedure Internal_Set_Center_X (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Center_X, Old, To); end Internal_Set_Center_X; --------------------------- -- Internal_Set_Center_Y -- --------------------------- procedure Internal_Set_Center_Y (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Center_Y, Old, To); end Internal_Set_Center_Y; ---------------------------- -- Internal_Set_Clip_Path -- ---------------------------- procedure Internal_Set_Clip_Path (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Circle => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Ellipse => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Group => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Image => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Line => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Marker => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Rectangle => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Text => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, Self, To); when others => raise Program_Error; end case; end Internal_Set_Clip_Path; ---------------------------------- -- Internal_Set_Clipped_Element -- ---------------------------------- procedure Internal_Set_Clipped_Element (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Graphical_Element_Clip_Path_Clipped_Element, To, Self); when others => raise Program_Error; end case; end Internal_Set_Clipped_Element; -------------------------------- -- Internal_Set_Corner_Radius -- -------------------------------- procedure Internal_Set_Corner_Radius (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Rectangle_Corner_Radius, Old, To); end Internal_Set_Corner_Radius; ----------------------- -- Internal_Set_Data -- ----------------------- procedure Internal_Set_Data (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access) is Old : Matreshka.Internals.Strings.Shared_String_Access; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).String_Value; DD_Element_Table.Table (Self).Member (5).String_Value := To; Matreshka.Internals.Strings.Reference (DD_Element_Table.Table (Self).Member (5).String_Value); AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Text_Data, Old, To); Matreshka.Internals.Strings.Dereference (Old); end Internal_Set_Data; ---------------------- -- Internal_Set_End -- ---------------------- procedure Internal_Set_End (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point) is Old : AMF.DC.DC_Point; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Point_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Point_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Line_End, Old, To); end Internal_Set_End; ----------------------------- -- Internal_Set_End_Marker -- ----------------------------- procedure Internal_Set_End_Marker (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Line => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_End_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_End_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_End_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_End_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_End_Marker_Marked_Element, Self, To); when others => raise Program_Error; end case; end Internal_Set_End_Marker; ----------------------- -- Internal_Set_Fill -- ----------------------- procedure Internal_Set_Fill (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Style => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Style_Fill_Style, Self, To); when others => raise Program_Error; end case; end Internal_Set_Fill; ----------------------------- -- Internal_Set_Fill_Color -- ----------------------------- procedure Internal_Set_Fill_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color) is Old : AMF.DC.Optional_DC_Color; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Color_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (2).Color_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_Color, Old, To); end Internal_Set_Fill_Color; ------------------------------- -- Internal_Set_Fill_Opacity -- ------------------------------- procedure Internal_Set_Fill_Opacity (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real) is Old : AMF.Optional_Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Real_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (3).Real_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Fill_Opacity, Old, To); end Internal_Set_Fill_Opacity; -------------------------- -- Internal_Set_Focus_X -- -------------------------- procedure Internal_Set_Focus_X (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Focus_X, Old, To); end Internal_Set_Focus_X; -------------------------- -- Internal_Set_Focus_Y -- -------------------------- procedure Internal_Set_Focus_Y (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Radial_Gradient_Focus_Y, Old, To); end Internal_Set_Focus_Y; ---------------------------- -- Internal_Set_Font_Bold -- ---------------------------- procedure Internal_Set_Font_Bold (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean) is Old : AMF.Optional_Boolean; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (12).Boolean_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (12).Boolean_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Bold, Old, To); end Internal_Set_Font_Bold; ----------------------------- -- Internal_Set_Font_Color -- ----------------------------- procedure Internal_Set_Font_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color) is Old : AMF.DC.Optional_DC_Color; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (10).Color_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (10).Color_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Color, Old, To); end Internal_Set_Font_Color; ------------------------------ -- Internal_Set_Font_Italic -- ------------------------------ procedure Internal_Set_Font_Italic (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean) is Old : AMF.Optional_Boolean; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (11).Boolean_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (11).Boolean_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Italic, Old, To); end Internal_Set_Font_Italic; ---------------------------- -- Internal_Set_Font_Name -- ---------------------------- procedure Internal_Set_Font_Name (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access) is Old : Matreshka.Internals.Strings.Shared_String_Access; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (9).String_Value; DD_Element_Table.Table (Self).Member (9).String_Value := To; if DD_Element_Table.Table (Self).Member (9).String_Value /= null then Matreshka.Internals.Strings.Reference (DD_Element_Table.Table (Self).Member (9).String_Value); end if; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Name, Old, To); if Old /= null then Matreshka.Internals.Strings.Reference (Old); end if; end Internal_Set_Font_Name; ---------------------------- -- Internal_Set_Font_Size -- ---------------------------- procedure Internal_Set_Font_Size (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real) is Old : AMF.Optional_Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Real_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (8).Real_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Size, Old, To); end Internal_Set_Font_Size; -------------------------------------- -- Internal_Set_Font_Strike_Through -- -------------------------------------- procedure Internal_Set_Font_Strike_Through (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean) is Old : AMF.Optional_Boolean; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (14).Boolean_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (14).Boolean_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Strike_Through, Old, To); end Internal_Set_Font_Strike_Through; --------------------------------- -- Internal_Set_Font_Underline -- --------------------------------- procedure Internal_Set_Font_Underline (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Boolean) is Old : AMF.Optional_Boolean; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (13).Boolean_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (13).Boolean_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Font_Underline, Old, To); end Internal_Set_Font_Underline; ------------------------ -- Internal_Set_Group -- ------------------------ procedure Internal_Set_Group (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Canvas => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Circle => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Clip_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Ellipse => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Group => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Image => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Line => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Marker => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Rectangle => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when AMF.Internals.Tables.DD_Types.E_DG_Text => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Group_Member_Group, To, Self); when others => raise Program_Error; end case; end Internal_Set_Group; -------------------------------------------- -- Internal_Set_Is_Aspect_Ratio_Preserved -- -------------------------------------------- procedure Internal_Set_Is_Aspect_Ratio_Preserved (Self : AMF.Internals.AMF_Element; To : Boolean) is Old : Boolean; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Boolean_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Boolean_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Is_Aspect_Ratio_Preserved, Old, To); end Internal_Set_Is_Aspect_Ratio_Preserved; ----------------------------- -- Internal_Set_Mid_Marker -- ----------------------------- procedure Internal_Set_Mid_Marker (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Line => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Mid_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Mid_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Mid_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Mid_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Mid_Marker_Marked_Element, Self, To); when others => raise Program_Error; end case; end Internal_Set_Mid_Marker; ------------------------ -- Internal_Set_Radii -- ------------------------ procedure Internal_Set_Radii (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Dimension) is Old : AMF.DC.DC_Dimension; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Dimension_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Dimension_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Ellipse_Radii, Old, To); end Internal_Set_Radii; ------------------------- -- Internal_Set_Radius -- ------------------------- procedure Internal_Set_Radius (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Circle_Radius, Old, To); end Internal_Set_Radius; ---------------------------- -- Internal_Set_Reference -- ---------------------------- procedure Internal_Set_Reference (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point) is Old : AMF.DC.DC_Point; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Point_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Point_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Reference, Old, To); end Internal_Set_Reference; ----------------------- -- Internal_Set_Size -- ----------------------- procedure Internal_Set_Size (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Dimension) is Old : AMF.DC.DC_Dimension; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Dimension_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Dimension_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Marker_Size, Old, To); end Internal_Set_Size; ------------------------- -- Internal_Set_Source -- ------------------------- procedure Internal_Set_Source (Self : AMF.Internals.AMF_Element; To : Matreshka.Internals.Strings.Shared_String_Access) is Old : Matreshka.Internals.Strings.Shared_String_Access; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).String_Value; DD_Element_Table.Table (Self).Member (5).String_Value := To; Matreshka.Internals.Strings.Reference (DD_Element_Table.Table (Self).Member (5).String_Value); AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Image_Source, Old, To); Matreshka.Internals.Strings.Dereference (Old); end Internal_Set_Source; ------------------------ -- Internal_Set_Start -- ------------------------ procedure Internal_Set_Start (Self : AMF.Internals.AMF_Element; To : AMF.DC.DC_Point) is Old : AMF.DC.DC_Point; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Point_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Point_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Line_Start, Old, To); end Internal_Set_Start; ------------------------------- -- Internal_Set_Start_Marker -- ------------------------------- procedure Internal_Set_Start_Marker (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Line => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Start_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Marked_Element => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Start_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Path => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Start_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polygon => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Start_Marker_Marked_Element, Self, To); when AMF.Internals.Tables.DD_Types.E_DG_Polyline => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Marked_Element_Start_Marker_Marked_Element, Self, To); when others => raise Program_Error; end case; end Internal_Set_Start_Marker; ------------------------------- -- Internal_Set_Stroke_Color -- ------------------------------- procedure Internal_Set_Stroke_Color (Self : AMF.Internals.AMF_Element; To : AMF.DC.Optional_DC_Color) is Old : AMF.DC.Optional_DC_Color; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Color_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Color_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Color, Old, To); end Internal_Set_Stroke_Color; --------------------------------- -- Internal_Set_Stroke_Opacity -- --------------------------------- procedure Internal_Set_Stroke_Opacity (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real) is Old : AMF.Optional_Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Opacity, Old, To); end Internal_Set_Stroke_Opacity; ------------------------------- -- Internal_Set_Stroke_Width -- ------------------------------- procedure Internal_Set_Stroke_Width (Self : AMF.Internals.AMF_Element; To : AMF.Optional_Real) is Old : AMF.Optional_Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Holder; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Holder := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Style_Stroke_Width, Old, To); end Internal_Set_Stroke_Width; ----------------------- -- Internal_Set_Tile -- ----------------------- procedure Internal_Set_Tile (Self : AMF.Internals.AMF_Element; To : AMF.Internals.AMF_Element) is begin case AMF.Internals.Tables.DD_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.DD_Types.E_DG_Pattern => AMF.Internals.Links.Create_Link (AMF.Internals.Tables.DG_Metamodel.MA_DG_Pattern_Tile_Pattern, Self, To); when others => raise Program_Error; end case; end Internal_Set_Tile; --------------------- -- Internal_Set_X1 -- --------------------- procedure Internal_Set_X1 (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (4).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_X1, Old, To); end Internal_Set_X1; --------------------- -- Internal_Set_X2 -- --------------------- procedure Internal_Set_X2 (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (5).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_X2, Old, To); end Internal_Set_X2; --------------------- -- Internal_Set_Y1 -- --------------------- procedure Internal_Set_Y1 (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (6).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_Y1, Old, To); end Internal_Set_Y1; --------------------- -- Internal_Set_Y2 -- --------------------- procedure Internal_Set_Y2 (Self : AMF.Internals.AMF_Element; To : AMF.Real) is Old : AMF.Real; begin Old := AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Real_Value; AMF.Internals.Tables.DD_Element_Table.Table (Self).Member (7).Real_Value := To; AMF.Internals.Tables.DC_Notification.Notify_Attribute_Set (Self, AMF.Internals.Tables.DG_Metamodel.MP_DG_Linear_Gradient_Y2, Old, To); end Internal_Set_Y2; end AMF.Internals.Tables.DD_Attributes;
35.165331
98
0.610324
fb07c845e9450c6100582bb0534e08ed8d97dc83
478
ads
Ada
source/nodes/program-nodes-component_clause_vectors.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-component_clause_vectors.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-component_clause_vectors.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
2
2019-09-14T23:18:50.000Z
2019-10-02T10:11:40.000Z
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Nodes.Generic_Vectors; with Program.Elements.Component_Clauses; package Program.Nodes.Component_Clause_Vectors is new Program.Nodes.Generic_Vectors (Program.Elements.Component_Clauses.Component_Clause_Vector); pragma Preelaborate (Program.Nodes.Component_Clause_Vectors);
34.142857
65
0.707113
2326a1446c4944981d76d0761fb0ffb549e41986
2,917
adb
Ada
STM32F4/ToyOBDH/ground_station/terminal/src/gs_terminal.adb
AntonioRamosNieto/TFG-STM32F429
d241065e51451199e7066e6ff3cbd207b4c88837
[ "BSD-3-Clause" ]
null
null
null
STM32F4/ToyOBDH/ground_station/terminal/src/gs_terminal.adb
AntonioRamosNieto/TFG-STM32F429
d241065e51451199e7066e6ff3cbd207b4c88837
[ "BSD-3-Clause" ]
null
null
null
STM32F4/ToyOBDH/ground_station/terminal/src/gs_terminal.adb
AntonioRamosNieto/TFG-STM32F429
d241065e51451199e7066e6ff3cbd207b4c88837
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2017-2018, Universidad Politécnica de Madrid -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Main procedure of toy ground station system - text terminal version -- Compile with native compiler with TTC; -- TheTM_Receiver package contains the telemetry reception subsystem -- with TC_Sender; -- The GS_TC package contains the telecommand transmission subsystem with User_Interface; -- User interface with System; procedure GS_Terminal is pragma Priority (System.Priority'Last); begin -- initialize components User_Interface.Init; TTC.Init; -- TC_Sender.Init; loop null; end loop; end GS_Terminal;
50.293103
78
0.556394
c5e31ef73e0c1290eb57aee781699a988c7186dc
4,598
ads
Ada
tools-src/gnu/gcc/gcc/ada/eval_fat.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/eval_fat.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/eval_fat.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E V A L _ F A T -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001 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 2, 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 COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides for compile-time evaluation of static calls to the -- floating-point attribute functions. It is the compile-time equivalent of -- the System.Fat_Gen runtime package. The coding is quite similar, as are -- the subprogram specs, except that the type is passed as an explicit -- first parameter (and used via ttypes, to obtain the necessary information -- about the characteristics of the type for computing the results. with Types; use Types; with Uintp; use Uintp; with Urealp; use Urealp; package Eval_Fat is subtype UI is Uint; -- The compile time representation of universal integer subtype T is Ureal; -- The compile time representation of floating-point values subtype R is Entity_Id; -- The compile time representation of the floating-point root type type Rounding_Mode is (Floor, Ceiling, Round, Round_Even); for Rounding_Mode use (0, 1, 2, 3); -- Used to indicate rounding mode for Machine attribute -- Note that C code in gigi knows that Round_Even is 3 Rounding_Was_Biased : Boolean; -- Set if last use of Machine rounded a halfway case away from zero function Adjacent (RT : R; X, Towards : T) return T; function Ceiling (RT : R; X : T) return T; function Compose (RT : R; Fraction : T; Exponent : UI) return T; function Copy_Sign (RT : R; Value, Sign : T) return T; function Exponent (RT : R; X : T) return UI; function Floor (RT : R; X : T) return T; function Fraction (RT : R; X : T) return T; function Leading_Part (RT : R; X : T; Radix_Digits : UI) return T; function Machine (RT : R; X : T; Mode : Rounding_Mode) return T; function Model (RT : R; X : T) return T; function Pred (RT : R; X : T) return T; function Remainder (RT : R; X, Y : T) return T; function Rounding (RT : R; X : T) return T; function Scaling (RT : R; X : T; Adjustment : UI) return T; function Succ (RT : R; X : T) return T; function Truncation (RT : R; X : T) return T; function Unbiased_Rounding (RT : R; X : T) return T; end Eval_Fat;
48.914894
78
0.464115
39bdf1dc14ae93c7a9fd1de5dc30f8f5cc957ffc
1,110
ads
Ada
source/symbols.ads
jquorning/iDoNu
1618b679f7d0895729dded62f22b0826e7da7cb1
[ "blessing" ]
1
2016-08-09T20:47:23.000Z
2016-08-09T20:47:23.000Z
source/symbols.ads
jquorning/iDoNu
1618b679f7d0895729dded62f22b0826e7da7cb1
[ "blessing" ]
null
null
null
source/symbols.ads
jquorning/iDoNu
1618b679f7d0895729dded62f22b0826e7da7cb1
[ "blessing" ]
null
null
null
-- -- The author disclaims copyright to this source code. In place of -- a legal notice, here is a blessing: -- -- May you do good and not evil. -- May you find forgiveness for yourself and forgive others. -- May you share freely, not taking more than you give. -- package Symbols is type Symbol_Type is (Space, Plus_Sign, Minus_Sign, Multiplication_Sign, Division_Sign, Black_Star, White_Star, Black_Right_Pointing_Index, White_Right_Pointing_Index, Check_Mark, Heavy_Check_Mark, Multiplication_X, Heavy_Multiplication_X, Ballot_X, Heavy_Ballot_X, Medium_Left_Parenthesis_Ornament, Medium_Right_Parenthesis_Ornament, Medium_Flattened_Left_Parenthesis_Ornament, Medium_Flattened_Right_Parenthesis_Ornament, Medium_Left_Pointing_Angle_Bracket_Ornament, Medium_Right_Pointing_Angle_Bracket_Ornament); function UTF8 (Symbol : in Symbol_Type) return String; function HTML (Symbol : in Symbol_Type) return String; end Symbols;
24.666667
68
0.693694
39827e90e34b84dd17b6124388554359cc9e4ee4
2,124
ada
Ada
Task/Parsing-RPN-calculator-algorithm/Ada/parsing-rpn-calculator-algorithm.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:38.000Z
2018-11-09T22:08:38.000Z
Task/Parsing-RPN-calculator-algorithm/Ada/parsing-rpn-calculator-algorithm.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/Parsing-RPN-calculator-algorithm/Ada/parsing-rpn-calculator-algorithm.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2018-11-09T22:08:40.000Z
2018-11-09T22:08:40.000Z
with Ada.Text_IO, Ada.Containers.Vectors; procedure RPN_Calculator is package IIO is new Ada.Text_IO.Float_IO(Float); package Float_Vec is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Float); Stack: Float_Vec.Vector; Input: String := Ada.Text_IO.Get_Line; Cursor: Positive := Input'First; New_Cursor: Positive; begin loop -- read spaces while Cursor <= Input'Last and then Input(Cursor)=' ' loop Cursor := Cursor + 1; end loop; exit when Cursor > Input'Last; New_Cursor := Cursor; while New_Cursor <= Input'Last and then Input(New_Cursor) /= ' ' loop New_Cursor := New_Cursor + 1; end loop; -- try to read a number and push it to the stack declare Last: Positive; Value: Float; X, Y: Float; begin IIO.Get(From => Input(Cursor .. New_Cursor - 1), Item => Value, Last => Last); Stack.Append(Value); Cursor := New_Cursor; exception -- if reading the number fails, try to read an operator token when others => Y := Stack.Last_Element; Stack.Delete_Last; -- pick two elements X := Stack.Last_Element; Stack.Delete_Last; -- from the stack case Input(Cursor) is when '+' => Stack.Append(X+Y); when '-' => Stack.Append(X-Y); when '*' => Stack.Append(X*Y); when '/' => Stack.Append(X/Y); when '^' => Stack.Append(X ** Integer(Float'Rounding(Y))); when others => raise Program_Error with "unecpected token '" & Input(Cursor) & "' at column" & Integer'Image(Cursor); end case; Cursor := New_Cursor; end; for I in Stack.First_Index .. Stack.Last_Index loop Ada.Text_IO.Put(" "); IIO.Put(Stack.Element(I), Aft => 5, Exp => 0); end loop; Ada.Text_IO.New_Line; end loop; Ada.Text_IO.Put("Result = "); IIO.Put(Item => Stack.Last_Element, Aft => 5, Exp => 0); end RPN_Calculator;
30.782609
77
0.563089
5031b0086e5cd50e3144c46fcdf077f4bf5d891e
3,736
ads
Ada
source/league/league-json-arrays-internals.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/league/league-json-arrays-internals.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/league/league-json-arrays-internals.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- 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.JSON_Types; package League.JSON.Arrays.Internals is pragma Preelaborate; function Internal (Self : League.JSON.Arrays.JSON_Array) return not null Matreshka.JSON_Types.Shared_JSON_Array_Access; function Create (Data : not null Matreshka.JSON_Types.Shared_JSON_Array_Access) return League.JSON.Arrays.JSON_Array; end League.JSON.Arrays.Internals;
63.322034
78
0.436563
1c2fd3ce351b4fde282c1fe12b966a8679c420ef
687
ads
Ada
source/asis/spec/obsolescent/text_io.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
source/asis/spec/obsolescent/text_io.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
source/asis/spec/obsolescent/text_io.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- A d a r u n - t i m e s p e c i f i c a t i o n -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of ada.ads file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Ada.Text_IO; package Text_IO renames Ada.Text_IO;
52.846154
78
0.326055
1c29e7c121b4d8f2a40483d12aaa72893acb3774
13,060
adb
Ada
Sources/Globe_3d/unzip/unzip-streams.adb
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
1
2019-09-21T09:40:34.000Z
2019-09-21T09:40:34.000Z
Sources/Globe_3d/unzip/unzip-streams.adb
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
null
null
null
Sources/Globe_3d/unzip/unzip-streams.adb
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
1
2019-09-25T12:29:27.000Z
2019-09-25T12:29:27.000Z
with Zip.Headers, UnZip.Decompress; with Ada.Strings.Unbounded; with Ada.Unchecked_Deallocation; with Interfaces; use Interfaces; package body UnZip.Streams is procedure Dispose is new Ada.Unchecked_Deallocation (String, p_String); procedure Dispose is new Ada.Unchecked_Deallocation (Ada.Streams.Stream_Element_Array, p_Stream_Element_Array); procedure Dispose is new Ada.Unchecked_Deallocation (UnZip_Stream_Type, Zipped_File_Type); -------------------------------------------------- -- *The* internal 1 - file unzipping procedure. -- -- Input must be _open_ and won't be _closed_ ! -- -------------------------------------------------- procedure UnZipFile (zip_file : Zip_Streams.Zipstream_Class; header_index : in out Ada.Streams.Stream_IO.Positive_Count; mem_ptr : out p_Stream_Element_Array; password : in out Ada.Strings.Unbounded.Unbounded_String; hint_comp_size : File_size_type; -- Added 2007 for .ODS files cat_uncomp_size : File_size_type) is work_index : Ada.Streams.Stream_IO.Positive_Count := header_index; local_header : Zip.Headers.Local_File_Header; data_descriptor_present : Boolean; encrypted : Boolean; method : PKZip_method; use Ada.Streams.Stream_IO, Zip, Zip_Streams; begin begin Zip_Streams.Set_Index (zip_file, Positive (header_index)); declare TempStream : constant Zipstream_Class := zip_file; begin Zip.Headers.Read_and_check (TempStream, local_header); end; exception when Zip.Headers.bad_local_header => raise; when others => raise Read_Error; end; method := Method_from_code (local_header.zip_type); if method = unknown then raise Unsupported_method; end if; -- calculate offset of data work_index := work_index + Ada.Streams.Stream_IO.Count ( local_header.filename_length + local_header.extra_field_length + Zip.Headers.local_header_length ); data_descriptor_present := (local_header.bit_flag and 8) /= 0; if data_descriptor_present then -- Sizes and crc are after the data local_header.dd.crc_32 := 0; local_header.dd.uncompressed_size := cat_uncomp_size; local_header.dd.compressed_size := hint_comp_size; else -- Sizes and crc are before the data if cat_uncomp_size /= local_header.dd.uncompressed_size then raise Uncompressed_size_Error; end if; end if; encrypted := (local_header.bit_flag and 1) /= 0; begin Zip_Streams.Set_Index (zip_file, Positive (work_index)); -- eventually skips the file name exception when others => raise Read_Error; end; -- Unzip correct type UnZip.Decompress.Decompress_data ( zip_file => zip_file, format => method, mode => write_to_memory, output_file_name => "", output_memory_access => mem_ptr, feedback => null, explode_literal_tree => (local_header.bit_flag and 4) /= 0, explode_slide_8KB => (local_header.bit_flag and 2) /= 0, end_data_descriptor => data_descriptor_present, encrypted => encrypted, password => password, get_new_password => null, hint => local_header.dd ); -- Set the offset on the next zipped file header_index := header_index + Count ( File_size_type ( local_header.filename_length + local_header.extra_field_length + Zip.Headers.local_header_length ) + local_header.dd.compressed_size ); if data_descriptor_present then header_index := header_index + Count (Zip.Headers.data_descriptor_length); end if; end UnZipFile; use Ada.Streams.Stream_IO; procedure S_Extract (from : Zip.Zip_info; Zip_Stream : Zip_Streams.Zipstream_Class; what : String; mem_ptr : out p_Stream_Element_Array; Password : String; Case_sensitive : Boolean) is header_index : Positive_Count; comp_size : File_size_type; uncomp_size : File_size_type; work_password : Ada.Strings.Unbounded.Unbounded_String := Ada.Strings.Unbounded.To_Unbounded_String (Password); begin Zip.Find_offset (from, what, Case_sensitive, header_index, comp_size, uncomp_size); UnZipFile (Zip_Stream, header_index, mem_ptr, work_password, comp_size, uncomp_size); pragma Unreferenced (header_index, work_password); end S_Extract; -------------------- for exportation: procedure Close (File : in out Zipped_File_Type) is begin if File = null or else File.all.state = uninitialized then raise Use_Error; end if; if File.all.delete_info_on_closing then Zip.Delete (File.all.archive_info); end if; Dispose (File.all.file_name); Dispose (File.all.Uncompressed); Dispose (File); File := null; end Close; function Is_Open (File : Zipped_File_Type) return Boolean is (File /= null and then File.all.state /= uninitialized); function End_Of_File (File : Zipped_File_Type) return Boolean is begin if File = null or else File.all.state = uninitialized then raise Use_Error; end if; return File.all.state = end_of_zip; end End_Of_File; procedure Open (File : in out Zipped_File_Type; -- File - in - archive handle Archive_Info : Zip.Zip_info; -- loaded by Load_zip_info Name : String; -- Name of zipped entry Password : String := ""; -- Decryption password Case_sensitive : Boolean := False) is use Zip_Streams, Ada.Streams; MyStream : aliased File_Zipstream; input_stream : Zipstream_Class; use_a_file : constant Boolean := Zip.Zip_Stream (Archive_Info) = null; begin if File = null then File := new UnZip_Stream_Type; elsif File.all.state /= uninitialized then -- forgot to close last time! raise Use_Error; end if; if use_a_file then input_stream := MyStream'Unchecked_Access; Set_Name (input_stream, Zip.Zip_name (Archive_Info)); Open (MyStream, Ada.Streams.Stream_IO.In_File); else -- use the given stream input_stream := Zip.Zip_Stream (Archive_Info); end if; -- File.all.archive_info := Archive_Info; File.all.file_name := new String'(Name); begin S_Extract ( File.all.archive_info, input_stream, Name, File.all.Uncompressed, Password, Case_sensitive ); if use_a_file then Close (MyStream); end if; exception when others => if use_a_file then Close (MyStream); end if; raise; end; File.all.index := File.all.Uncompressed'First; File.all.state := data_uncompressed; -- Bug fix for data of size 0 - 29 - Nov - 2002 if File.all.Uncompressed'Last < File.all.index then -- (1 .. 0) array File.all.state := end_of_zip; end if; File.all.delete_info_on_closing := False; -- Close won't delete dir tree -- Bug fix 1 - Mar - 2007 : False was set only at initialization end Open; procedure Open (File : in out Zipped_File_Type; -- File - in - archive handle Archive_Name : String; -- Name of archive file Name : String; -- Name of zipped entry Password : String := ""; -- Decryption password Case_sensitive : Boolean := False) is temp_info : Zip.Zip_info; -- this local record (but not the full tree) is copied by Open ( .. ) begin Zip.Load (temp_info, Archive_Name, Case_sensitive); Open (File, temp_info, Name, Password, Case_sensitive); File.all.delete_info_on_closing := True; -- Close will delete temp. dir tree end Open; procedure Open (File : in out Zipped_File_Type; -- File - in - archive handle Archive_Stream : Zip_Streams.Zipstream_Class; -- Archive's stream Name : String; -- Name of zipped entry Password : String := ""; -- Decryption password Case_sensitive : Boolean := False) is temp_info : Zip.Zip_info; -- this local record (but not the full tree) is copied by Open ( .. ) begin Zip.Load (temp_info, Archive_Stream, Case_sensitive); Open (File, temp_info, Name, Password, Case_sensitive); File.all.delete_info_on_closing := True; -- Close will delete temp. dir tree end Open; ------------------------------------------ -- Read procedure for Unzip_Stream_Type -- ------------------------------------------ overriding procedure Read (UnZip_Stream : in out UnZip_Stream_Type; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset) is use Ada.Streams; begin if UnZip_Stream.state = uninitialized then raise Use_Error; end if; if UnZip_Stream.state = end_of_zip then -- Zero transfer - > Last := Item'First - 1, see RM 13.13.1 (8) -- No End_Error here, T'Read will raise it : RM 13.13.2 (37) if Item'First > Stream_Element_Offset'First then Last := Item'First - 1; return; else -- Well, we cannot return Item'First - 1 .. . raise Constraint_Error; -- RM 13.13.1 (11) requires this. end if; end if; if Item'Length = 0 then -- Nothing to be read actually. Last := Item'Last; -- this is < Item'First return; end if; -- From now on, we can assume Item'Length > 0. if UnZip_Stream.index + Item'Length <= UnZip_Stream.Uncompressed'Last then -- * Normal case : even after reading, the index will be in the range Last := Item'Last; Item := UnZip_Stream.Uncompressed.all (UnZip_Stream.index .. UnZip_Stream.index + Item'Length - 1); UnZip_Stream.index := UnZip_Stream.index + Item'Length; -- Now : Stream.index <= Stream.uncompressed'Last, -- then at least one element is left to be read, end_of_zip not possible else -- * Special case : we exhaust the buffer Last := Item'First + (UnZip_Stream.Uncompressed'Last - UnZip_Stream.index); Item (Item'First .. Last) := UnZip_Stream.Uncompressed.all (UnZip_Stream.index .. UnZip_Stream.Uncompressed'Last); UnZip_Stream.state := end_of_zip; -- If Last < Item'Last, the T'Read attribute raises End_Error -- because of the incomplete reading. end if; end Read; function Stream (File : Zipped_File_Type) return Stream_Access is (Stream_Access (File)); overriding procedure Write (UnZip_Stream : in out UnZip_Stream_Type; Item : Ada.Streams.Stream_Element_Array) is write_not_supported : exception; begin raise write_not_supported; end Write; end UnZip.Streams;
39.337349
102
0.53683
d0281dd3f6976b3e3ab52166d69de4a29af51900
8,923
adb
Ada
src/presenter/lse-presenter-presenter.adb
mgrojo/lsystem-editor
1f855bc1f783c8d7a1c81594c8aee403e4b53132
[ "MIT" ]
null
null
null
src/presenter/lse-presenter-presenter.adb
mgrojo/lsystem-editor
1f855bc1f783c8d7a1c81594c8aee403e4b53132
[ "MIT" ]
null
null
null
src/presenter/lse-presenter-presenter.adb
mgrojo/lsystem-editor
1f855bc1f783c8d7a1c81594c8aee403e4b53132
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------- -- LSE -- L-System Editor -- Author: Heziode -- -- License: -- MIT License -- -- Copyright (c) 2018 Quentin Dauprat (Heziode) <[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.Directories; with Glib.Convert; with Gtk.Builder; with Gtk.Main; with LSE.IO.Export_Factory; with LSE.Model.IO.Turtle; with LSE.Model.L_System.L_System; with LSE.Utils.Colors; with LSE.View.View; package body LSE.Presenter.Presenter is -- Constructor procedure Initialize (This : out Instance) is use Glib.Convert; use Gtk.Builder; use LSE.Model.IO.Turtle; use LSE.Model.L_System.Concrete_Builder; use LSE.Model.L_System.L_System; use LSE.View.View; Builder : Gtk_Builder; LS_Builder : LSE.Model.L_System.Concrete_Builder.Instance; begin Ada.Directories.Set_Directory (Exec_Dir); Gtk.Main.Init; Gtk_New_From_File (Builder, Locale_To_UTF8 (Main_UI)); This.View := new LSE.View.View.Instance '(Initialize (Builder, This'Access)); This.Turtle := To_Holder (Initialize); if LS_Builder.Make (Default_LSystem) then This.LS := To_Holder (LS_Builder.Get_Product (This.Turtle)); end if; end Initialize; function Get_View (This : Instance) return LSE.View.View.Instance is begin return This.View.all; end Get_View; procedure Start (This : Instance) is pragma Unreferenced (This); begin Gtk.Main.Main; end Start; procedure LS_Level (This : out Instance; Value : Integer) is begin This.LS.Reference.Set_State (Natural (Value)); end LS_Level; function Validate (This : in out Instance; Input : String) return Boolean is begin if This.Builder.Make (Input) then This.LS := To_Holder (This.Builder.Get_Product (This.Turtle)); return True; else return False; end if; end Validate; function Get_Error (This : Instance) return String is begin return This.Builder.Get_Error; end Get_Error; procedure Develop (This : out Instance) is begin This.LS.Reference.Develop; end Develop; procedure Interpret (This : out Instance) is begin This.LS.Reference.Interpret (This.Turtle); end Interpret; procedure Export (This : in out Instance; Format : String; Path : String; Width, Height, Margin_Top, Margin_Right, Margin_Bottom, Margin_Left : Gint; Bg_Rgba, Fg_Rgba : Gdk_RGBA; Have_Bg : Boolean) is use LSE.IO.Export_Factory; use LSE.Model.IO.Drawing_Area.Drawing_Area_Ptr; use LSE.Model.IO.Turtle; use LSE.Utils.Colors; Turtle : LSE.Model.IO.Turtle_Utils.Holder; Medium : LSE.Model.IO.Drawing_Area.Drawing_Area_Ptr.Holder; begin Turtle := To_Holder (Initialize); Make (Medium, Format, Path); Turtle.Reference.Set_Medium (Medium); Turtle.Reference.Set_Width (Positive (Width)); Turtle.Reference.Set_Height (Positive (Height)); Turtle.Reference.Set_Margin_Top (Natural (Margin_Top)); Turtle.Reference.Set_Margin_Right (Natural (Margin_Right)); Turtle.Reference.Set_Margin_Bottom (Natural (Margin_Bottom)); Turtle.Reference.Set_Margin_Left (Natural (Margin_Left)); if Have_Bg then Turtle.Reference.Set_Background_Color (RGB_To_Hex_String (Float (Bg_Rgba.Red), Float (Bg_Rgba.Green), Float (Bg_Rgba.Blue))); else Turtle.Reference.Set_Background_Color (""); end if; Turtle.Reference.Set_Foreground_Color (RGB_To_Hex_String (Float (Fg_Rgba.Red), Float (Fg_Rgba.Green), Float (Fg_Rgba.Blue))); This.LS.Reference.Interpret (Turtle); end Export; function Get_Width (This : Instance) return Positive is begin return This.Turtle.Element.Get_Width; end Get_Width; function Get_Height (This : Instance) return Positive is begin return This.Turtle.Element.Get_Height; end Get_Height; function Get_Background_Color (This : Instance) return String is begin return This.Turtle.Element.Get_Background_Color; end Get_Background_Color; function Get_Foreground_Color (This : Instance) return String is begin return This.Turtle.Element.Get_Foreground_Color; end Get_Foreground_Color; function Get_Margin_Top (This : Instance) return Float is begin return This.Turtle.Element.Get_Margin_Top; end Get_Margin_Top; function Get_Margin_Right (This : Instance) return Float is begin return This.Turtle.Element.Get_Margin_Right; end Get_Margin_Right; function Get_Margin_Bottom (This : Instance) return Float is begin return This.Turtle.Element.Get_Margin_Bottom; end Get_Margin_Bottom; function Get_Margin_Left (This : Instance) return Float is begin return This.Turtle.Element.Get_Margin_Left; end Get_Margin_Left; -- Mutator of Width procedure Set_Width (This : out Instance; Value : Gint) is begin This.Turtle.Reference.Set_Width (Positive (Value)); end Set_Width; -- Mutator of Height procedure Set_Height (This : out Instance; Value : Gint) is begin This.Turtle.Reference.Set_Height (Positive (Value)); end Set_Height; -- Mutator of background color procedure Set_Background_Color (This : out Instance; Value : Gdk_RGBA) is use LSE.Utils.Colors; begin This.Turtle.Reference.Set_Background_Color (RGB_To_Hex_String (Float (Value.Red), Float (Value.Green), Float (Value.Blue))); end Set_Background_Color; procedure Set_Background_Color_Clear (This : out Instance) is begin This.Turtle.Reference.Set_Background_Color (""); end Set_Background_Color_Clear; -- Mutator of foreground color procedure Set_Foreground_Color (This : out Instance; Value : Gdk_RGBA) is use LSE.Utils.Colors; begin This.Turtle.Reference.Set_Foreground_Color (RGB_To_Hex_String (Float (Value.Red), Float (Value.Green), Float (Value.Blue))); end Set_Foreground_Color; -- Mutator of margin top procedure Set_Margin_Top (This : out Instance; Value : Gint) is begin This.Turtle.Reference.Set_Margin_Top (Natural (Value)); end Set_Margin_Top; -- Mutator of margin right procedure Set_Margin_Right (This : out Instance; Value : Gint) is begin This.Turtle.Reference.Set_Margin_Right (Natural (Value)); end Set_Margin_Right; -- Mutator of margin Bottom procedure Set_Margin_Bottom (This : out Instance; Value : Gint) is begin This.Turtle.Reference.Set_Margin_Bottom (Natural (Value)); end Set_Margin_Bottom; -- Mutator of margin left procedure Set_Margin_Left (This : out Instance; Value : Gint) is begin This.Turtle.Reference.Set_Margin_Left (Natural (Value)); end Set_Margin_Left; function Get_Extension (This : Instance; Value : String) return String is pragma Unreferenced (This); use LSE.IO.Export_Factory; begin return Get_Extension (Value); end Get_Extension; procedure Set_Medium (This : out Instance; Value : LSE.Model.IO.Drawing_Area. Drawing_Area_Ptr.Holder) is begin This.Turtle.Reference.Set_Medium (Value); end Set_Medium; end LSE.Presenter.Presenter;
29.743333
79
0.65785
0b0fbc4e1c2b29f767bc8cf99c12a93774c67b9c
63,108
ads
Ada
arch/ARM/STM32/svd/stm32f7x9/stm32_svd-rcc.ads
shakram02/Ada_Drivers_Library
a407ca7ddbc2d9756647016c2f8fd8ef24a239ff
[ "BSD-3-Clause" ]
192
2016-06-01T18:32:04.000Z
2022-03-26T22:52:31.000Z
arch/ARM/STM32/svd/stm32f7x9/stm32_svd-rcc.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
239
2016-05-26T20:02:01.000Z
2022-03-31T09:46:56.000Z
arch/ARM/STM32/svd/stm32f7x9/stm32_svd-rcc.ads
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
142
2016-06-05T08:12:20.000Z
2022-03-24T17:37:17.000Z
-- This spec has been automatically generated from STM32F7x9.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.RCC is pragma Preelaborate; --------------- -- Registers -- --------------- subtype CR_HSITRIM_Field is HAL.UInt5; subtype CR_HSICAL_Field is HAL.UInt8; -- clock control register type CR_Register is record -- Internal high-speed clock enable HSION : Boolean := True; -- Read-only. Internal high-speed clock ready flag HSIRDY : Boolean := True; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- Internal high-speed clock trimming HSITRIM : CR_HSITRIM_Field := 16#10#; -- Read-only. Internal high-speed clock calibration HSICAL : CR_HSICAL_Field := 16#0#; -- HSE clock enable HSEON : Boolean := False; -- Read-only. HSE clock ready flag HSERDY : Boolean := False; -- HSE clock bypass HSEBYP : Boolean := False; -- Clock security system enable CSSON : Boolean := False; -- unspecified Reserved_20_23 : HAL.UInt4 := 16#0#; -- Main PLL (PLL) enable PLLON : Boolean := False; -- Read-only. Main PLL (PLL) clock ready flag PLLRDY : Boolean := False; -- PLLI2S enable PLLI2SON : Boolean := False; -- Read-only. PLLI2S clock ready flag PLLI2SRDY : Boolean := False; -- PLLSAI enable PLLSAION : Boolean := False; -- Read-only. PLLSAI clock ready flag PLLSAIRDY : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record HSION at 0 range 0 .. 0; HSIRDY at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; HSITRIM at 0 range 3 .. 7; HSICAL at 0 range 8 .. 15; HSEON at 0 range 16 .. 16; HSERDY at 0 range 17 .. 17; HSEBYP at 0 range 18 .. 18; CSSON at 0 range 19 .. 19; Reserved_20_23 at 0 range 20 .. 23; PLLON at 0 range 24 .. 24; PLLRDY at 0 range 25 .. 25; PLLI2SON at 0 range 26 .. 26; PLLI2SRDY at 0 range 27 .. 27; PLLSAION at 0 range 28 .. 28; PLLSAIRDY at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; subtype PLLCFGR_PLLM_Field is HAL.UInt6; subtype PLLCFGR_PLLN_Field is HAL.UInt9; subtype PLLCFGR_PLLP_Field is HAL.UInt2; subtype PLLCFGR_PLLQ_Field is HAL.UInt4; -- PLL configuration register type PLLCFGR_Register is record -- Division factor for the main PLL (PLL) and audio PLL (PLLI2S) input -- clock PLLM : PLLCFGR_PLLM_Field := 16#10#; -- Main PLL (PLL) multiplication factor for VCO PLLN : PLLCFGR_PLLN_Field := 16#C0#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Main PLL (PLL) division factor for main system clock PLLP : PLLCFGR_PLLP_Field := 16#0#; -- unspecified Reserved_18_21 : HAL.UInt4 := 16#0#; -- Main PLL(PLL) and audio PLL (PLLI2S) entry clock source PLLSRC : Boolean := False; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- Main PLL (PLL) division factor for USB OTG FS, SDIO and random number -- generator clocks PLLQ : PLLCFGR_PLLQ_Field := 16#4#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#2#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLCFGR_Register use record PLLM at 0 range 0 .. 5; PLLN at 0 range 6 .. 14; Reserved_15_15 at 0 range 15 .. 15; PLLP at 0 range 16 .. 17; Reserved_18_21 at 0 range 18 .. 21; PLLSRC at 0 range 22 .. 22; Reserved_23_23 at 0 range 23 .. 23; PLLQ at 0 range 24 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype CFGR_SW_Field is HAL.UInt2; subtype CFGR_SWS_Field is HAL.UInt2; subtype CFGR_HPRE_Field is HAL.UInt4; -- CFGR_PPRE array element subtype CFGR_PPRE_Element is HAL.UInt3; -- CFGR_PPRE array type CFGR_PPRE_Field_Array is array (1 .. 2) of CFGR_PPRE_Element with Component_Size => 3, Size => 6; -- Type definition for CFGR_PPRE type CFGR_PPRE_Field (As_Array : Boolean := False) is record case As_Array is when False => -- PPRE as a value Val : HAL.UInt6; when True => -- PPRE as an array Arr : CFGR_PPRE_Field_Array; end case; end record with Unchecked_Union, Size => 6; for CFGR_PPRE_Field use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; subtype CFGR_RTCPRE_Field is HAL.UInt5; subtype CFGR_MCO1_Field is HAL.UInt2; subtype CFGR_MCO1PRE_Field is HAL.UInt3; subtype CFGR_MCO2PRE_Field is HAL.UInt3; subtype CFGR_MCO2_Field is HAL.UInt2; -- clock configuration register type CFGR_Register is record -- System clock switch SW : CFGR_SW_Field := 16#0#; -- Read-only. System clock switch status SWS : CFGR_SWS_Field := 16#0#; -- AHB prescaler HPRE : CFGR_HPRE_Field := 16#0#; -- unspecified Reserved_8_9 : HAL.UInt2 := 16#0#; -- APB Low speed prescaler (APB1) PPRE : CFGR_PPRE_Field := (As_Array => False, Val => 16#0#); -- HSE division factor for RTC clock RTCPRE : CFGR_RTCPRE_Field := 16#0#; -- Microcontroller clock output 1 MCO1 : CFGR_MCO1_Field := 16#0#; -- I2S clock selection I2SSRC : Boolean := False; -- MCO1 prescaler MCO1PRE : CFGR_MCO1PRE_Field := 16#0#; -- MCO2 prescaler MCO2PRE : CFGR_MCO2PRE_Field := 16#0#; -- Microcontroller clock output 2 MCO2 : CFGR_MCO2_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CFGR_Register use record SW at 0 range 0 .. 1; SWS at 0 range 2 .. 3; HPRE at 0 range 4 .. 7; Reserved_8_9 at 0 range 8 .. 9; PPRE at 0 range 10 .. 15; RTCPRE at 0 range 16 .. 20; MCO1 at 0 range 21 .. 22; I2SSRC at 0 range 23 .. 23; MCO1PRE at 0 range 24 .. 26; MCO2PRE at 0 range 27 .. 29; MCO2 at 0 range 30 .. 31; end record; -- clock interrupt register type CIR_Register is record -- Read-only. LSI ready interrupt flag LSIRDYF : Boolean := False; -- Read-only. LSE ready interrupt flag LSERDYF : Boolean := False; -- Read-only. HSI ready interrupt flag HSIRDYF : Boolean := False; -- Read-only. HSE ready interrupt flag HSERDYF : Boolean := False; -- Read-only. Main PLL (PLL) ready interrupt flag PLLRDYF : Boolean := False; -- Read-only. PLLI2S ready interrupt flag PLLI2SRDYF : Boolean := False; -- Read-only. PLLSAI ready interrupt flag PLLSAIRDYF : Boolean := False; -- Read-only. Clock security system interrupt flag CSSF : Boolean := False; -- LSI ready interrupt enable LSIRDYIE : Boolean := False; -- LSE ready interrupt enable LSERDYIE : Boolean := False; -- HSI ready interrupt enable HSIRDYIE : Boolean := False; -- HSE ready interrupt enable HSERDYIE : Boolean := False; -- Main PLL (PLL) ready interrupt enable PLLRDYIE : Boolean := False; -- PLLI2S ready interrupt enable PLLI2SRDYIE : Boolean := False; -- PLLSAI Ready Interrupt Enable PLLSAIRDYIE : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- Write-only. LSI ready interrupt clear LSIRDYC : Boolean := False; -- Write-only. LSE ready interrupt clear LSERDYC : Boolean := False; -- Write-only. HSI ready interrupt clear HSIRDYC : Boolean := False; -- Write-only. HSE ready interrupt clear HSERDYC : Boolean := False; -- Write-only. Main PLL(PLL) ready interrupt clear PLLRDYC : Boolean := False; -- Write-only. PLLI2S ready interrupt clear PLLI2SRDYC : Boolean := False; -- Write-only. PLLSAI Ready Interrupt Clear PLLSAIRDYC : Boolean := False; -- Write-only. Clock security system interrupt clear CSSC : Boolean := False; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CIR_Register use record LSIRDYF at 0 range 0 .. 0; LSERDYF at 0 range 1 .. 1; HSIRDYF at 0 range 2 .. 2; HSERDYF at 0 range 3 .. 3; PLLRDYF at 0 range 4 .. 4; PLLI2SRDYF at 0 range 5 .. 5; PLLSAIRDYF at 0 range 6 .. 6; CSSF at 0 range 7 .. 7; LSIRDYIE at 0 range 8 .. 8; LSERDYIE at 0 range 9 .. 9; HSIRDYIE at 0 range 10 .. 10; HSERDYIE at 0 range 11 .. 11; PLLRDYIE at 0 range 12 .. 12; PLLI2SRDYIE at 0 range 13 .. 13; PLLSAIRDYIE at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; LSIRDYC at 0 range 16 .. 16; LSERDYC at 0 range 17 .. 17; HSIRDYC at 0 range 18 .. 18; HSERDYC at 0 range 19 .. 19; PLLRDYC at 0 range 20 .. 20; PLLI2SRDYC at 0 range 21 .. 21; PLLSAIRDYC at 0 range 22 .. 22; CSSC at 0 range 23 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; -- AHB1 peripheral reset register type AHB1RSTR_Register is record -- IO port A reset GPIOARST : Boolean := False; -- IO port B reset GPIOBRST : Boolean := False; -- IO port C reset GPIOCRST : Boolean := False; -- IO port D reset GPIODRST : Boolean := False; -- IO port E reset GPIOERST : Boolean := False; -- IO port F reset GPIOFRST : Boolean := False; -- IO port G reset GPIOGRST : Boolean := False; -- IO port H reset GPIOHRST : Boolean := False; -- IO port I reset GPIOIRST : Boolean := False; -- IO port J reset GPIOJRST : Boolean := False; -- IO port K reset GPIOKRST : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- CRC reset CRCRST : Boolean := False; -- unspecified Reserved_13_20 : HAL.UInt8 := 16#0#; -- DMA2 reset DMA1RST : Boolean := False; -- DMA2 reset DMA2RST : Boolean := False; -- DMA2D reset DMA2DRST : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- Ethernet MAC reset ETHMACRST : Boolean := False; -- unspecified Reserved_26_28 : HAL.UInt3 := 16#0#; -- USB OTG HS module reset OTGHSRST : Boolean := False; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB1RSTR_Register use record GPIOARST at 0 range 0 .. 0; GPIOBRST at 0 range 1 .. 1; GPIOCRST at 0 range 2 .. 2; GPIODRST at 0 range 3 .. 3; GPIOERST at 0 range 4 .. 4; GPIOFRST at 0 range 5 .. 5; GPIOGRST at 0 range 6 .. 6; GPIOHRST at 0 range 7 .. 7; GPIOIRST at 0 range 8 .. 8; GPIOJRST at 0 range 9 .. 9; GPIOKRST at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CRCRST at 0 range 12 .. 12; Reserved_13_20 at 0 range 13 .. 20; DMA1RST at 0 range 21 .. 21; DMA2RST at 0 range 22 .. 22; DMA2DRST at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; ETHMACRST at 0 range 25 .. 25; Reserved_26_28 at 0 range 26 .. 28; OTGHSRST at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; -- AHB2 peripheral reset register type AHB2RSTR_Register is record -- Camera interface reset DCMIRST : Boolean := False; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Cryptographic module reset CRYPRST : Boolean := False; -- Hash module reset HSAHRST : Boolean := False; -- Random number generator module reset RNGRST : Boolean := False; -- USB OTG FS module reset OTGFSRST : Boolean := False; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB2RSTR_Register use record DCMIRST at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; CRYPRST at 0 range 4 .. 4; HSAHRST at 0 range 5 .. 5; RNGRST at 0 range 6 .. 6; OTGFSRST at 0 range 7 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- AHB3 peripheral reset register type AHB3RSTR_Register is record -- Flexible memory controller module reset FMCRST : Boolean := False; -- Quad SPI memory controller reset QSPIRST : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB3RSTR_Register use record FMCRST at 0 range 0 .. 0; QSPIRST at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- APB1 peripheral reset register type APB1RSTR_Register is record -- TIM2 reset TIM2RST : Boolean := False; -- TIM3 reset TIM3RST : Boolean := False; -- TIM4 reset TIM4RST : Boolean := False; -- TIM5 reset TIM5RST : Boolean := False; -- TIM6 reset TIM6RST : Boolean := False; -- TIM7 reset TIM7RST : Boolean := False; -- TIM12 reset TIM12RST : Boolean := False; -- TIM13 reset TIM13RST : Boolean := False; -- TIM14 reset TIM14RST : Boolean := False; -- Low power timer 1 reset LPTIM1RST : Boolean := False; -- unspecified Reserved_10_10 : HAL.Bit := 16#0#; -- Window watchdog reset WWDGRST : Boolean := False; -- unspecified Reserved_12_13 : HAL.UInt2 := 16#0#; -- SPI 2 reset SPI2RST : Boolean := False; -- SPI 3 reset SPI3RST : Boolean := False; -- SPDIF-RX reset SPDIFRXRST : Boolean := False; -- USART 2 reset UART2RST : Boolean := False; -- USART 3 reset UART3RST : Boolean := False; -- USART 4 reset UART4RST : Boolean := False; -- USART 5 reset UART5RST : Boolean := False; -- I2C 1 reset I2C1RST : Boolean := False; -- I2C 2 reset I2C2RST : Boolean := False; -- I2C3 reset I2C3RST : Boolean := False; -- I2C 4 reset I2C4RST : Boolean := False; -- CAN1 reset CAN1RST : Boolean := False; -- CAN2 reset CAN2RST : Boolean := False; -- HDMI-CEC reset CECRST : Boolean := False; -- Power interface reset PWRRST : Boolean := False; -- DAC reset DACRST : Boolean := False; -- UART7 reset UART7RST : Boolean := False; -- UART8 reset UART8RST : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1RSTR_Register use record TIM2RST at 0 range 0 .. 0; TIM3RST at 0 range 1 .. 1; TIM4RST at 0 range 2 .. 2; TIM5RST at 0 range 3 .. 3; TIM6RST at 0 range 4 .. 4; TIM7RST at 0 range 5 .. 5; TIM12RST at 0 range 6 .. 6; TIM13RST at 0 range 7 .. 7; TIM14RST at 0 range 8 .. 8; LPTIM1RST at 0 range 9 .. 9; Reserved_10_10 at 0 range 10 .. 10; WWDGRST at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2RST at 0 range 14 .. 14; SPI3RST at 0 range 15 .. 15; SPDIFRXRST at 0 range 16 .. 16; UART2RST at 0 range 17 .. 17; UART3RST at 0 range 18 .. 18; UART4RST at 0 range 19 .. 19; UART5RST at 0 range 20 .. 20; I2C1RST at 0 range 21 .. 21; I2C2RST at 0 range 22 .. 22; I2C3RST at 0 range 23 .. 23; I2C4RST at 0 range 24 .. 24; CAN1RST at 0 range 25 .. 25; CAN2RST at 0 range 26 .. 26; CECRST at 0 range 27 .. 27; PWRRST at 0 range 28 .. 28; DACRST at 0 range 29 .. 29; UART7RST at 0 range 30 .. 30; UART8RST at 0 range 31 .. 31; end record; -- APB2 peripheral reset register type APB2RSTR_Register is record -- TIM1 reset TIM1RST : Boolean := False; -- TIM8 reset TIM8RST : Boolean := False; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- USART1 reset USART1RST : Boolean := False; -- USART6 reset USART6RST : Boolean := False; -- unspecified Reserved_6_6 : HAL.Bit := 16#0#; -- SDMMC2 reset SDMMC2RST : Boolean := False; -- ADC interface reset (common to all ADCs) ADCRST : Boolean := False; -- unspecified Reserved_9_10 : HAL.UInt2 := 16#0#; -- SDMMC1 reset SDMMC1RST : Boolean := False; -- SPI 1 reset SPI1RST : Boolean := False; -- SPI4 reset SPI4RST : Boolean := False; -- System configuration controller reset SYSCFGRST : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- TIM9 reset TIM9RST : Boolean := False; -- TIM10 reset TIM10RST : Boolean := False; -- TIM11 reset TIM11RST : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- SPI5 reset SPI5RST : Boolean := False; -- SPI6 reset SPI6RST : Boolean := False; -- SAI1 reset SAI1RST : Boolean := False; -- SAI2 reset SAI2RST : Boolean := False; -- unspecified Reserved_24_25 : HAL.UInt2 := 16#0#; -- LTDC reset LTDCRST : Boolean := False; -- DSI reset DSIRST : Boolean := False; -- unspecified Reserved_28_28 : HAL.Bit := 16#0#; -- DFSDM1 reset DFSDM1RST : Boolean := False; -- MDIO reset MDIORST : Boolean := False; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2RSTR_Register use record TIM1RST at 0 range 0 .. 0; TIM8RST at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; USART1RST at 0 range 4 .. 4; USART6RST at 0 range 5 .. 5; Reserved_6_6 at 0 range 6 .. 6; SDMMC2RST at 0 range 7 .. 7; ADCRST at 0 range 8 .. 8; Reserved_9_10 at 0 range 9 .. 10; SDMMC1RST at 0 range 11 .. 11; SPI1RST at 0 range 12 .. 12; SPI4RST at 0 range 13 .. 13; SYSCFGRST at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM9RST at 0 range 16 .. 16; TIM10RST at 0 range 17 .. 17; TIM11RST at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; SPI5RST at 0 range 20 .. 20; SPI6RST at 0 range 21 .. 21; SAI1RST at 0 range 22 .. 22; SAI2RST at 0 range 23 .. 23; Reserved_24_25 at 0 range 24 .. 25; LTDCRST at 0 range 26 .. 26; DSIRST at 0 range 27 .. 27; Reserved_28_28 at 0 range 28 .. 28; DFSDM1RST at 0 range 29 .. 29; MDIORST at 0 range 30 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; -- AHB1 peripheral clock register type AHB1ENR_Register is record -- IO port A clock enable GPIOAEN : Boolean := False; -- IO port B clock enable GPIOBEN : Boolean := False; -- IO port C clock enable GPIOCEN : Boolean := False; -- IO port D clock enable GPIODEN : Boolean := False; -- IO port E clock enable GPIOEEN : Boolean := False; -- IO port F clock enable GPIOFEN : Boolean := False; -- IO port G clock enable GPIOGEN : Boolean := False; -- IO port H clock enable GPIOHEN : Boolean := False; -- IO port I clock enable GPIOIEN : Boolean := False; -- IO port J clock enable GPIOJEN : Boolean := False; -- IO port K clock enable GPIOKEN : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- CRC clock enable CRCEN : Boolean := False; -- unspecified Reserved_13_17 : HAL.UInt5 := 16#0#; -- Backup SRAM interface clock enable BKPSRAMEN : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- CCM data RAM clock enable CCMDATARAMEN : Boolean := True; -- DMA1 clock enable DMA1EN : Boolean := False; -- DMA2 clock enable DMA2EN : Boolean := False; -- DMA2D clock enable DMA2DEN : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- Ethernet MAC clock enable ETHMACEN : Boolean := False; -- Ethernet Transmission clock enable ETHMACTXEN : Boolean := False; -- Ethernet Reception clock enable ETHMACRXEN : Boolean := False; -- Ethernet PTP clock enable ETHMACPTPEN : Boolean := False; -- USB OTG HS clock enable OTGHSEN : Boolean := False; -- USB OTG HSULPI clock enable OTGHSULPIEN : Boolean := False; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB1ENR_Register use record GPIOAEN at 0 range 0 .. 0; GPIOBEN at 0 range 1 .. 1; GPIOCEN at 0 range 2 .. 2; GPIODEN at 0 range 3 .. 3; GPIOEEN at 0 range 4 .. 4; GPIOFEN at 0 range 5 .. 5; GPIOGEN at 0 range 6 .. 6; GPIOHEN at 0 range 7 .. 7; GPIOIEN at 0 range 8 .. 8; GPIOJEN at 0 range 9 .. 9; GPIOKEN at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CRCEN at 0 range 12 .. 12; Reserved_13_17 at 0 range 13 .. 17; BKPSRAMEN at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; CCMDATARAMEN at 0 range 20 .. 20; DMA1EN at 0 range 21 .. 21; DMA2EN at 0 range 22 .. 22; DMA2DEN at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; ETHMACEN at 0 range 25 .. 25; ETHMACTXEN at 0 range 26 .. 26; ETHMACRXEN at 0 range 27 .. 27; ETHMACPTPEN at 0 range 28 .. 28; OTGHSEN at 0 range 29 .. 29; OTGHSULPIEN at 0 range 30 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; -- AHB2 peripheral clock enable register type AHB2ENR_Register is record -- Camera interface enable DCMIEN : Boolean := False; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Cryptographic modules clock enable CRYPEN : Boolean := False; -- Hash modules clock enable HASHEN : Boolean := False; -- Random number generator clock enable RNGEN : Boolean := False; -- USB OTG FS clock enable OTGFSEN : Boolean := False; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB2ENR_Register use record DCMIEN at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; CRYPEN at 0 range 4 .. 4; HASHEN at 0 range 5 .. 5; RNGEN at 0 range 6 .. 6; OTGFSEN at 0 range 7 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- AHB3 peripheral clock enable register type AHB3ENR_Register is record -- Flexible memory controller module clock enable FMCEN : Boolean := False; -- Quad SPI memory controller clock enable QSPIEN : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB3ENR_Register use record FMCEN at 0 range 0 .. 0; QSPIEN at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- APB1 peripheral clock enable register type APB1ENR_Register is record -- TIM2 clock enable TIM2EN : Boolean := False; -- TIM3 clock enable TIM3EN : Boolean := False; -- TIM4 clock enable TIM4EN : Boolean := False; -- TIM5 clock enable TIM5EN : Boolean := False; -- TIM6 clock enable TIM6EN : Boolean := False; -- TIM7 clock enable TIM7EN : Boolean := False; -- TIM12 clock enable TIM12EN : Boolean := False; -- TIM13 clock enable TIM13EN : Boolean := False; -- TIM14 clock enable TIM14EN : Boolean := False; -- Low power timer 1 clock enable LPTMI1EN : Boolean := False; -- unspecified Reserved_10_10 : HAL.Bit := 16#0#; -- Window watchdog clock enable WWDGEN : Boolean := False; -- unspecified Reserved_12_13 : HAL.UInt2 := 16#0#; -- SPI2 clock enable SPI2EN : Boolean := False; -- SPI3 clock enable SPI3EN : Boolean := False; -- SPDIF-RX clock enable SPDIFRXEN : Boolean := False; -- USART 2 clock enable USART2EN : Boolean := False; -- USART3 clock enable USART3EN : Boolean := False; -- UART4 clock enable UART4EN : Boolean := False; -- UART5 clock enable UART5EN : Boolean := False; -- I2C1 clock enable I2C1EN : Boolean := False; -- I2C2 clock enable I2C2EN : Boolean := False; -- I2C3 clock enable I2C3EN : Boolean := False; -- I2C4 clock enable I2C4EN : Boolean := False; -- CAN 1 clock enable CAN1EN : Boolean := False; -- CAN 2 clock enable CAN2EN : Boolean := False; -- HDMI-CEN clock enable CECEN : Boolean := False; -- Power interface clock enable PWREN : Boolean := False; -- DAC interface clock enable DACEN : Boolean := False; -- UART7 clock enable UART7ENR : Boolean := False; -- UART8 clock enable UART8ENR : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1ENR_Register use record TIM2EN at 0 range 0 .. 0; TIM3EN at 0 range 1 .. 1; TIM4EN at 0 range 2 .. 2; TIM5EN at 0 range 3 .. 3; TIM6EN at 0 range 4 .. 4; TIM7EN at 0 range 5 .. 5; TIM12EN at 0 range 6 .. 6; TIM13EN at 0 range 7 .. 7; TIM14EN at 0 range 8 .. 8; LPTMI1EN at 0 range 9 .. 9; Reserved_10_10 at 0 range 10 .. 10; WWDGEN at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2EN at 0 range 14 .. 14; SPI3EN at 0 range 15 .. 15; SPDIFRXEN at 0 range 16 .. 16; USART2EN at 0 range 17 .. 17; USART3EN at 0 range 18 .. 18; UART4EN at 0 range 19 .. 19; UART5EN at 0 range 20 .. 20; I2C1EN at 0 range 21 .. 21; I2C2EN at 0 range 22 .. 22; I2C3EN at 0 range 23 .. 23; I2C4EN at 0 range 24 .. 24; CAN1EN at 0 range 25 .. 25; CAN2EN at 0 range 26 .. 26; CECEN at 0 range 27 .. 27; PWREN at 0 range 28 .. 28; DACEN at 0 range 29 .. 29; UART7ENR at 0 range 30 .. 30; UART8ENR at 0 range 31 .. 31; end record; -- APB2 peripheral clock enable register type APB2ENR_Register is record -- TIM1 clock enable TIM1EN : Boolean := False; -- TIM8 clock enable TIM8EN : Boolean := False; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- USART1 clock enable USART1EN : Boolean := False; -- USART6 clock enable USART6EN : Boolean := False; -- unspecified Reserved_6_6 : HAL.Bit := 16#0#; -- SDMMC2 clock enable SDMMC2EN : Boolean := False; -- ADC1 clock enable ADC1EN : Boolean := False; -- ADC2 clock enable ADC2EN : Boolean := False; -- ADC3 clock enable ADC3EN : Boolean := False; -- SDMMC1 clock enable SDMMC1EN : Boolean := False; -- SPI1 clock enable SPI1EN : Boolean := False; -- SPI4 clock enable SPI4ENR : Boolean := False; -- System configuration controller clock enable SYSCFGEN : Boolean := False; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- TIM9 clock enable TIM9EN : Boolean := False; -- TIM10 clock enable TIM10EN : Boolean := False; -- TIM11 clock enable TIM11EN : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- SPI5 clock enable SPI5ENR : Boolean := False; -- SPI6 clock enable SPI6ENR : Boolean := False; -- SAI1 clock enable SAI1EN : Boolean := False; -- SAI2 clock enable SAI2EN : Boolean := False; -- unspecified Reserved_24_25 : HAL.UInt2 := 16#0#; -- LTDC clock enable LTDCEN : Boolean := False; -- DSI clock enable DSIEN : Boolean := False; -- unspecified Reserved_28_28 : HAL.Bit := 16#0#; -- DFSDM1 clock enable DFSDM1EN : Boolean := False; -- MDIO clock enable MDIOEN : Boolean := False; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2ENR_Register use record TIM1EN at 0 range 0 .. 0; TIM8EN at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; USART1EN at 0 range 4 .. 4; USART6EN at 0 range 5 .. 5; Reserved_6_6 at 0 range 6 .. 6; SDMMC2EN at 0 range 7 .. 7; ADC1EN at 0 range 8 .. 8; ADC2EN at 0 range 9 .. 9; ADC3EN at 0 range 10 .. 10; SDMMC1EN at 0 range 11 .. 11; SPI1EN at 0 range 12 .. 12; SPI4ENR at 0 range 13 .. 13; SYSCFGEN at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM9EN at 0 range 16 .. 16; TIM10EN at 0 range 17 .. 17; TIM11EN at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; SPI5ENR at 0 range 20 .. 20; SPI6ENR at 0 range 21 .. 21; SAI1EN at 0 range 22 .. 22; SAI2EN at 0 range 23 .. 23; Reserved_24_25 at 0 range 24 .. 25; LTDCEN at 0 range 26 .. 26; DSIEN at 0 range 27 .. 27; Reserved_28_28 at 0 range 28 .. 28; DFSDM1EN at 0 range 29 .. 29; MDIOEN at 0 range 30 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; -- AHB1 peripheral clock enable in low power mode register type AHB1LPENR_Register is record -- IO port A clock enable during sleep mode GPIOALPEN : Boolean := True; -- IO port B clock enable during Sleep mode GPIOBLPEN : Boolean := True; -- IO port C clock enable during Sleep mode GPIOCLPEN : Boolean := True; -- IO port D clock enable during Sleep mode GPIODLPEN : Boolean := True; -- IO port E clock enable during Sleep mode GPIOELPEN : Boolean := True; -- IO port F clock enable during Sleep mode GPIOFLPEN : Boolean := True; -- IO port G clock enable during Sleep mode GPIOGLPEN : Boolean := True; -- IO port H clock enable during Sleep mode GPIOHLPEN : Boolean := True; -- IO port I clock enable during Sleep mode GPIOILPEN : Boolean := True; -- IO port J clock enable during Sleep mode GPIOJLPEN : Boolean := False; -- IO port K clock enable during Sleep mode GPIOKLPEN : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- CRC clock enable during Sleep mode CRCLPEN : Boolean := True; -- unspecified Reserved_13_14 : HAL.UInt2 := 16#0#; -- Flash interface clock enable during Sleep mode FLITFLPEN : Boolean := True; -- SRAM 1interface clock enable during Sleep mode SRAM1LPEN : Boolean := True; -- SRAM 2 interface clock enable during Sleep mode SRAM2LPEN : Boolean := True; -- Backup SRAM interface clock enable during Sleep mode BKPSRAMLPEN : Boolean := True; -- SRAM 3 interface clock enable during Sleep mode SRAM3LPEN : Boolean := False; -- unspecified Reserved_20_20 : HAL.Bit := 16#0#; -- DMA1 clock enable during Sleep mode DMA1LPEN : Boolean := True; -- DMA2 clock enable during Sleep mode DMA2LPEN : Boolean := True; -- DMA2D clock enable during Sleep mode DMA2DLPEN : Boolean := False; -- unspecified Reserved_24_24 : HAL.Bit := 16#0#; -- Ethernet MAC clock enable during Sleep mode ETHMACLPEN : Boolean := True; -- Ethernet transmission clock enable during Sleep mode ETHMACTXLPEN : Boolean := True; -- Ethernet reception clock enable during Sleep mode ETHMACRXLPEN : Boolean := True; -- Ethernet PTP clock enable during Sleep mode ETHMACPTPLPEN : Boolean := True; -- USB OTG HS clock enable during Sleep mode OTGHSLPEN : Boolean := True; -- USB OTG HS ULPI clock enable during Sleep mode OTGHSULPILPEN : Boolean := True; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB1LPENR_Register use record GPIOALPEN at 0 range 0 .. 0; GPIOBLPEN at 0 range 1 .. 1; GPIOCLPEN at 0 range 2 .. 2; GPIODLPEN at 0 range 3 .. 3; GPIOELPEN at 0 range 4 .. 4; GPIOFLPEN at 0 range 5 .. 5; GPIOGLPEN at 0 range 6 .. 6; GPIOHLPEN at 0 range 7 .. 7; GPIOILPEN at 0 range 8 .. 8; GPIOJLPEN at 0 range 9 .. 9; GPIOKLPEN at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; CRCLPEN at 0 range 12 .. 12; Reserved_13_14 at 0 range 13 .. 14; FLITFLPEN at 0 range 15 .. 15; SRAM1LPEN at 0 range 16 .. 16; SRAM2LPEN at 0 range 17 .. 17; BKPSRAMLPEN at 0 range 18 .. 18; SRAM3LPEN at 0 range 19 .. 19; Reserved_20_20 at 0 range 20 .. 20; DMA1LPEN at 0 range 21 .. 21; DMA2LPEN at 0 range 22 .. 22; DMA2DLPEN at 0 range 23 .. 23; Reserved_24_24 at 0 range 24 .. 24; ETHMACLPEN at 0 range 25 .. 25; ETHMACTXLPEN at 0 range 26 .. 26; ETHMACRXLPEN at 0 range 27 .. 27; ETHMACPTPLPEN at 0 range 28 .. 28; OTGHSLPEN at 0 range 29 .. 29; OTGHSULPILPEN at 0 range 30 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; -- AHB2 peripheral clock enable in low power mode register type AHB2LPENR_Register is record -- Camera interface enable during Sleep mode DCMILPEN : Boolean := True; -- unspecified Reserved_1_3 : HAL.UInt3 := 16#0#; -- Cryptography modules clock enable during Sleep mode CRYPLPEN : Boolean := True; -- Hash modules clock enable during Sleep mode HASHLPEN : Boolean := True; -- Random number generator clock enable during Sleep mode RNGLPEN : Boolean := True; -- USB OTG FS clock enable during Sleep mode OTGFSLPEN : Boolean := True; -- unspecified Reserved_8_31 : HAL.UInt24 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB2LPENR_Register use record DCMILPEN at 0 range 0 .. 0; Reserved_1_3 at 0 range 1 .. 3; CRYPLPEN at 0 range 4 .. 4; HASHLPEN at 0 range 5 .. 5; RNGLPEN at 0 range 6 .. 6; OTGFSLPEN at 0 range 7 .. 7; Reserved_8_31 at 0 range 8 .. 31; end record; -- AHB3 peripheral clock enable in low power mode register type AHB3LPENR_Register is record -- Flexible memory controller module clock enable during Sleep mode FMCLPEN : Boolean := True; -- Quand SPI memory controller clock enable during Sleep mode QSPILPEN : Boolean := False; -- unspecified Reserved_2_31 : HAL.UInt30 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for AHB3LPENR_Register use record FMCLPEN at 0 range 0 .. 0; QSPILPEN at 0 range 1 .. 1; Reserved_2_31 at 0 range 2 .. 31; end record; -- APB1 peripheral clock enable in low power mode register type APB1LPENR_Register is record -- TIM2 clock enable during Sleep mode TIM2LPEN : Boolean := True; -- TIM3 clock enable during Sleep mode TIM3LPEN : Boolean := True; -- TIM4 clock enable during Sleep mode TIM4LPEN : Boolean := True; -- TIM5 clock enable during Sleep mode TIM5LPEN : Boolean := True; -- TIM6 clock enable during Sleep mode TIM6LPEN : Boolean := True; -- TIM7 clock enable during Sleep mode TIM7LPEN : Boolean := True; -- TIM12 clock enable during Sleep mode TIM12LPEN : Boolean := True; -- TIM13 clock enable during Sleep mode TIM13LPEN : Boolean := True; -- TIM14 clock enable during Sleep mode TIM14LPEN : Boolean := True; -- low power timer 1 clock enable during Sleep mode LPTIM1LPEN : Boolean := False; -- unspecified Reserved_10_10 : HAL.Bit := 16#0#; -- Window watchdog clock enable during Sleep mode WWDGLPEN : Boolean := True; -- unspecified Reserved_12_13 : HAL.UInt2 := 16#0#; -- SPI2 clock enable during Sleep mode SPI2LPEN : Boolean := True; -- SPI3 clock enable during Sleep mode SPI3LPEN : Boolean := True; -- SPDIF-RX clock enable during sleep mode SPDIFRXLPEN : Boolean := False; -- USART2 clock enable during Sleep mode USART2LPEN : Boolean := True; -- USART3 clock enable during Sleep mode USART3LPEN : Boolean := True; -- UART4 clock enable during Sleep mode UART4LPEN : Boolean := True; -- UART5 clock enable during Sleep mode UART5LPEN : Boolean := True; -- I2C1 clock enable during Sleep mode I2C1LPEN : Boolean := True; -- I2C2 clock enable during Sleep mode I2C2LPEN : Boolean := True; -- I2C3 clock enable during Sleep mode I2C3LPEN : Boolean := True; -- I2C4 clock enable during Sleep mode I2C4LPEN : Boolean := False; -- CAN 1 clock enable during Sleep mode CAN1LPEN : Boolean := True; -- CAN 2 clock enable during Sleep mode CAN2LPEN : Boolean := True; -- HDMI-CEN clock enable during Sleep mode CECLPEN : Boolean := False; -- Power interface clock enable during Sleep mode PWRLPEN : Boolean := True; -- DAC interface clock enable during Sleep mode DACLPEN : Boolean := True; -- UART7 clock enable during Sleep mode UART7LPEN : Boolean := False; -- UART8 clock enable during Sleep mode UART8LPEN : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB1LPENR_Register use record TIM2LPEN at 0 range 0 .. 0; TIM3LPEN at 0 range 1 .. 1; TIM4LPEN at 0 range 2 .. 2; TIM5LPEN at 0 range 3 .. 3; TIM6LPEN at 0 range 4 .. 4; TIM7LPEN at 0 range 5 .. 5; TIM12LPEN at 0 range 6 .. 6; TIM13LPEN at 0 range 7 .. 7; TIM14LPEN at 0 range 8 .. 8; LPTIM1LPEN at 0 range 9 .. 9; Reserved_10_10 at 0 range 10 .. 10; WWDGLPEN at 0 range 11 .. 11; Reserved_12_13 at 0 range 12 .. 13; SPI2LPEN at 0 range 14 .. 14; SPI3LPEN at 0 range 15 .. 15; SPDIFRXLPEN at 0 range 16 .. 16; USART2LPEN at 0 range 17 .. 17; USART3LPEN at 0 range 18 .. 18; UART4LPEN at 0 range 19 .. 19; UART5LPEN at 0 range 20 .. 20; I2C1LPEN at 0 range 21 .. 21; I2C2LPEN at 0 range 22 .. 22; I2C3LPEN at 0 range 23 .. 23; I2C4LPEN at 0 range 24 .. 24; CAN1LPEN at 0 range 25 .. 25; CAN2LPEN at 0 range 26 .. 26; CECLPEN at 0 range 27 .. 27; PWRLPEN at 0 range 28 .. 28; DACLPEN at 0 range 29 .. 29; UART7LPEN at 0 range 30 .. 30; UART8LPEN at 0 range 31 .. 31; end record; -- APB2 peripheral clock enabled in low power mode register type APB2LPENR_Register is record -- TIM1 clock enable during Sleep mode TIM1LPEN : Boolean := True; -- TIM8 clock enable during Sleep mode TIM8LPEN : Boolean := True; -- unspecified Reserved_2_3 : HAL.UInt2 := 16#0#; -- USART1 clock enable during Sleep mode USART1LPEN : Boolean := True; -- USART6 clock enable during Sleep mode USART6LPEN : Boolean := True; -- unspecified Reserved_6_7 : HAL.UInt2 := 16#0#; -- ADC1 clock enable during Sleep mode ADC1LPEN : Boolean := True; -- ADC2 clock enable during Sleep mode ADC2LPEN : Boolean := True; -- ADC 3 clock enable during Sleep mode ADC3LPEN : Boolean := True; -- SDMMC1 clock enable during Sleep mode SDMMC1LPEN : Boolean := True; -- SPI 1 clock enable during Sleep mode SPI1LPEN : Boolean := True; -- SPI 4 clock enable during Sleep mode SPI4LPEN : Boolean := False; -- System configuration controller clock enable during Sleep mode SYSCFGLPEN : Boolean := True; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- TIM9 clock enable during sleep mode TIM9LPEN : Boolean := True; -- TIM10 clock enable during Sleep mode TIM10LPEN : Boolean := True; -- TIM11 clock enable during Sleep mode TIM11LPEN : Boolean := True; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- SPI 5 clock enable during Sleep mode SPI5LPEN : Boolean := False; -- SPI 6 clock enable during Sleep mode SPI6LPEN : Boolean := False; -- SAI1 clock enable during sleep mode SAI1LPEN : Boolean := False; -- SAI2 clock enable during sleep mode SAI2LPEN : Boolean := False; -- unspecified Reserved_24_25 : HAL.UInt2 := 16#0#; -- LTDC clock enable during sleep mode LTDCLPEN : Boolean := False; -- unspecified Reserved_27_31 : HAL.UInt5 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for APB2LPENR_Register use record TIM1LPEN at 0 range 0 .. 0; TIM8LPEN at 0 range 1 .. 1; Reserved_2_3 at 0 range 2 .. 3; USART1LPEN at 0 range 4 .. 4; USART6LPEN at 0 range 5 .. 5; Reserved_6_7 at 0 range 6 .. 7; ADC1LPEN at 0 range 8 .. 8; ADC2LPEN at 0 range 9 .. 9; ADC3LPEN at 0 range 10 .. 10; SDMMC1LPEN at 0 range 11 .. 11; SPI1LPEN at 0 range 12 .. 12; SPI4LPEN at 0 range 13 .. 13; SYSCFGLPEN at 0 range 14 .. 14; Reserved_15_15 at 0 range 15 .. 15; TIM9LPEN at 0 range 16 .. 16; TIM10LPEN at 0 range 17 .. 17; TIM11LPEN at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; SPI5LPEN at 0 range 20 .. 20; SPI6LPEN at 0 range 21 .. 21; SAI1LPEN at 0 range 22 .. 22; SAI2LPEN at 0 range 23 .. 23; Reserved_24_25 at 0 range 24 .. 25; LTDCLPEN at 0 range 26 .. 26; Reserved_27_31 at 0 range 27 .. 31; end record; -- BDCR_RTCSEL array type BDCR_RTCSEL_Field_Array is array (0 .. 1) of Boolean with Component_Size => 1, Size => 2; -- Type definition for BDCR_RTCSEL type BDCR_RTCSEL_Field (As_Array : Boolean := False) is record case As_Array is when False => -- RTCSEL as a value Val : HAL.UInt2; when True => -- RTCSEL as an array Arr : BDCR_RTCSEL_Field_Array; end case; end record with Unchecked_Union, Size => 2; for BDCR_RTCSEL_Field use record Val at 0 range 0 .. 1; Arr at 0 range 0 .. 1; end record; -- Backup domain control register type BDCR_Register is record -- External low-speed oscillator enable LSEON : Boolean := False; -- Read-only. External low-speed oscillator ready LSERDY : Boolean := False; -- External low-speed oscillator bypass LSEBYP : Boolean := False; -- unspecified Reserved_3_7 : HAL.UInt5 := 16#0#; -- RTC clock source selection RTCSEL : BDCR_RTCSEL_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_10_14 : HAL.UInt5 := 16#0#; -- RTC clock enable RTCEN : Boolean := False; -- Backup domain software reset BDRST : Boolean := False; -- unspecified Reserved_17_31 : HAL.UInt15 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BDCR_Register use record LSEON at 0 range 0 .. 0; LSERDY at 0 range 1 .. 1; LSEBYP at 0 range 2 .. 2; Reserved_3_7 at 0 range 3 .. 7; RTCSEL at 0 range 8 .. 9; Reserved_10_14 at 0 range 10 .. 14; RTCEN at 0 range 15 .. 15; BDRST at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; -- clock control & status register type CSR_Register is record -- Internal low-speed oscillator enable LSION : Boolean := False; -- Read-only. Internal low-speed oscillator ready LSIRDY : Boolean := False; -- unspecified Reserved_2_23 : HAL.UInt22 := 16#0#; -- Remove reset flag RMVF : Boolean := False; -- BOR reset flag BORRSTF : Boolean := True; -- PIN reset flag PADRSTF : Boolean := True; -- POR/PDR reset flag PORRSTF : Boolean := True; -- Software reset flag SFTRSTF : Boolean := False; -- Independent watchdog reset flag WDGRSTF : Boolean := False; -- Window watchdog reset flag WWDGRSTF : Boolean := False; -- Low-power reset flag LPWRRSTF : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CSR_Register use record LSION at 0 range 0 .. 0; LSIRDY at 0 range 1 .. 1; Reserved_2_23 at 0 range 2 .. 23; RMVF at 0 range 24 .. 24; BORRSTF at 0 range 25 .. 25; PADRSTF at 0 range 26 .. 26; PORRSTF at 0 range 27 .. 27; SFTRSTF at 0 range 28 .. 28; WDGRSTF at 0 range 29 .. 29; WWDGRSTF at 0 range 30 .. 30; LPWRRSTF at 0 range 31 .. 31; end record; subtype SSCGR_MODPER_Field is HAL.UInt13; subtype SSCGR_INCSTEP_Field is HAL.UInt15; -- spread spectrum clock generation register type SSCGR_Register is record -- Modulation period MODPER : SSCGR_MODPER_Field := 16#0#; -- Incrementation step INCSTEP : SSCGR_INCSTEP_Field := 16#0#; -- unspecified Reserved_28_29 : HAL.UInt2 := 16#0#; -- Spread Select SPREADSEL : Boolean := False; -- Spread spectrum modulation enable SSCGEN : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SSCGR_Register use record MODPER at 0 range 0 .. 12; INCSTEP at 0 range 13 .. 27; Reserved_28_29 at 0 range 28 .. 29; SPREADSEL at 0 range 30 .. 30; SSCGEN at 0 range 31 .. 31; end record; subtype PLLI2SCFGR_PLLI2SN_Field is HAL.UInt9; subtype PLLI2SCFGR_PLLI2SQ_Field is HAL.UInt4; subtype PLLI2SCFGR_PLLI2SR_Field is HAL.UInt3; -- PLLI2S configuration register type PLLI2SCFGR_Register is record -- unspecified Reserved_0_5 : HAL.UInt6 := 16#0#; -- PLLI2S multiplication factor for VCO PLLI2SN : PLLI2SCFGR_PLLI2SN_Field := 16#C0#; -- unspecified Reserved_15_23 : HAL.UInt9 := 16#0#; -- PLLI2S division factor for SAI1 clock PLLI2SQ : PLLI2SCFGR_PLLI2SQ_Field := 16#0#; -- PLLI2S division factor for I2S clocks PLLI2SR : PLLI2SCFGR_PLLI2SR_Field := 16#2#; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLI2SCFGR_Register use record Reserved_0_5 at 0 range 0 .. 5; PLLI2SN at 0 range 6 .. 14; Reserved_15_23 at 0 range 15 .. 23; PLLI2SQ at 0 range 24 .. 27; PLLI2SR at 0 range 28 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; subtype PLLSAICFGR_PLLSAIN_Field is HAL.UInt9; subtype PLLSAICFGR_PLLSAIP_Field is HAL.UInt2; subtype PLLSAICFGR_PLLSAIQ_Field is HAL.UInt4; subtype PLLSAICFGR_PLLSAIR_Field is HAL.UInt3; -- PLL configuration register type PLLSAICFGR_Register is record -- unspecified Reserved_0_5 : HAL.UInt6 := 16#0#; -- PLLSAI division factor for VCO PLLSAIN : PLLSAICFGR_PLLSAIN_Field := 16#C0#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- PLLSAI division factor for 48MHz clock PLLSAIP : PLLSAICFGR_PLLSAIP_Field := 16#0#; -- unspecified Reserved_18_23 : HAL.UInt6 := 16#0#; -- PLLSAI division factor for SAI clock PLLSAIQ : PLLSAICFGR_PLLSAIQ_Field := 16#0#; -- PLLSAI division factor for LCD clock PLLSAIR : PLLSAICFGR_PLLSAIR_Field := 16#2#; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for PLLSAICFGR_Register use record Reserved_0_5 at 0 range 0 .. 5; PLLSAIN at 0 range 6 .. 14; Reserved_15_15 at 0 range 15 .. 15; PLLSAIP at 0 range 16 .. 17; Reserved_18_23 at 0 range 18 .. 23; PLLSAIQ at 0 range 24 .. 27; PLLSAIR at 0 range 28 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; subtype DKCFGR1_PLLI2SDIV_Field is HAL.UInt5; subtype DKCFGR1_PLLSAIDIVQ_Field is HAL.UInt5; subtype DKCFGR1_PLLSAIDIVR_Field is HAL.UInt2; subtype DKCFGR1_SAI1SEL_Field is HAL.UInt2; subtype DKCFGR1_SAI2SEL_Field is HAL.UInt2; -- dedicated clocks configuration register type DKCFGR1_Register is record -- PLLI2S division factor for SAI1 clock PLLI2SDIV : DKCFGR1_PLLI2SDIV_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- PLLSAI division factor for SAI1 clock PLLSAIDIVQ : DKCFGR1_PLLSAIDIVQ_Field := 16#10#; -- unspecified Reserved_13_15 : HAL.UInt3 := 16#1#; -- division factor for LCD_CLK PLLSAIDIVR : DKCFGR1_PLLSAIDIVR_Field := 16#0#; -- unspecified Reserved_18_19 : HAL.UInt2 := 16#0#; -- SAI1 clock source selection SAI1SEL : DKCFGR1_SAI1SEL_Field := 16#0#; -- SAI2 clock source selection SAI2SEL : DKCFGR1_SAI2SEL_Field := 16#0#; -- Timers clocks prescalers selection TIMPRE : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#10#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DKCFGR1_Register use record PLLI2SDIV at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; PLLSAIDIVQ at 0 range 8 .. 12; Reserved_13_15 at 0 range 13 .. 15; PLLSAIDIVR at 0 range 16 .. 17; Reserved_18_19 at 0 range 18 .. 19; SAI1SEL at 0 range 20 .. 21; SAI2SEL at 0 range 22 .. 23; TIMPRE at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; subtype DKCFGR2_USART1SEL_Field is HAL.UInt2; subtype DKCFGR2_USART2SEL_Field is HAL.UInt2; subtype DKCFGR2_USART3SEL_Field is HAL.UInt2; subtype DKCFGR2_UART4SEL_Field is HAL.UInt2; subtype DKCFGR2_UART5SEL_Field is HAL.UInt2; subtype DKCFGR2_USART6SEL_Field is HAL.UInt2; subtype DKCFGR2_UART7SEL_Field is HAL.UInt2; subtype DKCFGR2_UART8SEL_Field is HAL.UInt2; subtype DKCFGR2_I2C1SEL_Field is HAL.UInt2; subtype DKCFGR2_I2C2SEL_Field is HAL.UInt2; subtype DKCFGR2_I2C3SEL_Field is HAL.UInt2; subtype DKCFGR2_I2C4SEL_Field is HAL.UInt2; subtype DKCFGR2_LPTIM1SEL_Field is HAL.UInt2; -- dedicated clocks configuration register type DKCFGR2_Register is record -- USART 1 clock source selection USART1SEL : DKCFGR2_USART1SEL_Field := 16#0#; -- USART 2 clock source selection USART2SEL : DKCFGR2_USART2SEL_Field := 16#0#; -- USART 3 clock source selection USART3SEL : DKCFGR2_USART3SEL_Field := 16#0#; -- UART 4 clock source selection UART4SEL : DKCFGR2_UART4SEL_Field := 16#0#; -- UART 5 clock source selection UART5SEL : DKCFGR2_UART5SEL_Field := 16#0#; -- USART 6 clock source selection USART6SEL : DKCFGR2_USART6SEL_Field := 16#0#; -- UART 7 clock source selection UART7SEL : DKCFGR2_UART7SEL_Field := 16#3#; -- UART 8 clock source selection UART8SEL : DKCFGR2_UART8SEL_Field := 16#0#; -- I2C1 clock source selection I2C1SEL : DKCFGR2_I2C1SEL_Field := 16#0#; -- I2C2 clock source selection I2C2SEL : DKCFGR2_I2C2SEL_Field := 16#0#; -- I2C3 clock source selection I2C3SEL : DKCFGR2_I2C3SEL_Field := 16#0#; -- I2C4 clock source selection I2C4SEL : DKCFGR2_I2C4SEL_Field := 16#0#; -- Low power timer 1 clock source selection LPTIM1SEL : DKCFGR2_LPTIM1SEL_Field := 16#0#; -- HDMI-CEC clock source selection CECSEL : Boolean := False; -- 48MHz clock source selection CK48MSEL : Boolean := False; -- SDMMC1 clock source selection SDMMC1SEL : Boolean := False; -- SDMMC2 clock source selection SDMMC2SEL : Boolean := True; -- unspecified Reserved_30_31 : HAL.UInt2 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for DKCFGR2_Register use record USART1SEL at 0 range 0 .. 1; USART2SEL at 0 range 2 .. 3; USART3SEL at 0 range 4 .. 5; UART4SEL at 0 range 6 .. 7; UART5SEL at 0 range 8 .. 9; USART6SEL at 0 range 10 .. 11; UART7SEL at 0 range 12 .. 13; UART8SEL at 0 range 14 .. 15; I2C1SEL at 0 range 16 .. 17; I2C2SEL at 0 range 18 .. 19; I2C3SEL at 0 range 20 .. 21; I2C4SEL at 0 range 22 .. 23; LPTIM1SEL at 0 range 24 .. 25; CECSEL at 0 range 26 .. 26; CK48MSEL at 0 range 27 .. 27; SDMMC1SEL at 0 range 28 .. 28; SDMMC2SEL at 0 range 29 .. 29; Reserved_30_31 at 0 range 30 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Reset and clock control type RCC_Peripheral is record -- clock control register CR : aliased CR_Register; -- PLL configuration register PLLCFGR : aliased PLLCFGR_Register; -- clock configuration register CFGR : aliased CFGR_Register; -- clock interrupt register CIR : aliased CIR_Register; -- AHB1 peripheral reset register AHB1RSTR : aliased AHB1RSTR_Register; -- AHB2 peripheral reset register AHB2RSTR : aliased AHB2RSTR_Register; -- AHB3 peripheral reset register AHB3RSTR : aliased AHB3RSTR_Register; -- APB1 peripheral reset register APB1RSTR : aliased APB1RSTR_Register; -- APB2 peripheral reset register APB2RSTR : aliased APB2RSTR_Register; -- AHB1 peripheral clock register AHB1ENR : aliased AHB1ENR_Register; -- AHB2 peripheral clock enable register AHB2ENR : aliased AHB2ENR_Register; -- AHB3 peripheral clock enable register AHB3ENR : aliased AHB3ENR_Register; -- APB1 peripheral clock enable register APB1ENR : aliased APB1ENR_Register; -- APB2 peripheral clock enable register APB2ENR : aliased APB2ENR_Register; -- AHB1 peripheral clock enable in low power mode register AHB1LPENR : aliased AHB1LPENR_Register; -- AHB2 peripheral clock enable in low power mode register AHB2LPENR : aliased AHB2LPENR_Register; -- AHB3 peripheral clock enable in low power mode register AHB3LPENR : aliased AHB3LPENR_Register; -- APB1 peripheral clock enable in low power mode register APB1LPENR : aliased APB1LPENR_Register; -- APB2 peripheral clock enabled in low power mode register APB2LPENR : aliased APB2LPENR_Register; -- Backup domain control register BDCR : aliased BDCR_Register; -- clock control & status register CSR : aliased CSR_Register; -- spread spectrum clock generation register SSCGR : aliased SSCGR_Register; -- PLLI2S configuration register PLLI2SCFGR : aliased PLLI2SCFGR_Register; -- PLL configuration register PLLSAICFGR : aliased PLLSAICFGR_Register; -- dedicated clocks configuration register DKCFGR1 : aliased DKCFGR1_Register; -- dedicated clocks configuration register DKCFGR2 : aliased DKCFGR2_Register; end record with Volatile; for RCC_Peripheral use record CR at 16#0# range 0 .. 31; PLLCFGR at 16#4# range 0 .. 31; CFGR at 16#8# range 0 .. 31; CIR at 16#C# range 0 .. 31; AHB1RSTR at 16#10# range 0 .. 31; AHB2RSTR at 16#14# range 0 .. 31; AHB3RSTR at 16#18# range 0 .. 31; APB1RSTR at 16#20# range 0 .. 31; APB2RSTR at 16#24# range 0 .. 31; AHB1ENR at 16#30# range 0 .. 31; AHB2ENR at 16#34# range 0 .. 31; AHB3ENR at 16#38# range 0 .. 31; APB1ENR at 16#40# range 0 .. 31; APB2ENR at 16#44# range 0 .. 31; AHB1LPENR at 16#50# range 0 .. 31; AHB2LPENR at 16#54# range 0 .. 31; AHB3LPENR at 16#58# range 0 .. 31; APB1LPENR at 16#60# range 0 .. 31; APB2LPENR at 16#64# range 0 .. 31; BDCR at 16#70# range 0 .. 31; CSR at 16#74# range 0 .. 31; SSCGR at 16#80# range 0 .. 31; PLLI2SCFGR at 16#84# range 0 .. 31; PLLSAICFGR at 16#88# range 0 .. 31; DKCFGR1 at 16#8C# range 0 .. 31; DKCFGR2 at 16#90# range 0 .. 31; end record; -- Reset and clock control RCC_Periph : aliased RCC_Peripheral with Import, Address => System'To_Address (16#40023800#); end STM32_SVD.RCC;
37.144202
79
0.558154
10c08e1c7884318e29e32d428bb99b2ba0e1976f
5,396
ads
Ada
tools/scitools/conf/understand/ada/ada12/s-taenca.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada12/s-taenca.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/s-taenca.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . E N T R Y _ C A L L S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- GNARL 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. -- -- -- -- -- -- -- -- -- -- -- -- 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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides internal RTS calls implementing operations -- that apply to general entry calls, that is, calls to either -- protected or task entries. -- These declarations are not part of the GNARL Interface package System.Tasking.Entry_Calls is procedure Wait_For_Completion (Entry_Call : Entry_Call_Link); -- This procedure suspends the calling task until the specified entry -- call has either been completed or cancelled. It performs other -- operations required of suspended tasks, such as performing -- dynamic priority changes. On exit, the call will not be queued. -- This waits for calls on task or protected entries. -- Abortion must be deferred when calling this procedure. -- Call this only when holding Self (= Entry_Call.Self) or global RTS lock. procedure Wait_For_Completion_With_Timeout (Entry_Call : Entry_Call_Link; Wakeup_Time : Duration; Mode : Delay_Modes; Yielded : out Boolean); -- Same as Wait_For_Completion but wait for a timeout with the value -- specified in Wakeup_Time as well. -- On return, Yielded indicates whether the wait has performed a yield. -- Check_Exception must be called after calling this procedure. procedure Wait_Until_Abortable (Self_ID : Task_Id; Call : Entry_Call_Link); -- This procedure suspends the calling task until the specified entry -- call is queued abortably or completes. -- Abortion must be deferred when calling this procedure, and the global -- RTS lock taken when Single_Lock. procedure Try_To_Cancel_Entry_Call (Succeeded : out Boolean); pragma Inline (Try_To_Cancel_Entry_Call); -- Try to cancel async. entry call. -- Effect includes Abort_To_Level and Wait_For_Completion. -- Cancelled = True iff the cancellation was successful, i.e., -- the call was not Done before this call. -- On return, the call is off-queue and the ATC level is reduced by one. procedure Reset_Priority (Acceptor : Task_Id; Acceptor_Prev_Priority : Rendezvous_Priority); pragma Inline (Reset_Priority); -- Reset the priority of a task completing an accept statement to -- the value it had before the call. -- Acceptor should always be equal to Self. procedure Check_Exception (Self_ID : Task_Id; Entry_Call : Entry_Call_Link); pragma Inline (Check_Exception); -- Raise any pending exception from the Entry_Call. -- This should be called at the end of every compiler interface procedure -- that implements an entry call. -- In principle, the caller should not be abort-deferred (unless the -- application program violates the Ada language rules by doing entry calls -- from within protected operations -- an erroneous practice apparently -- followed with success by some adventurous GNAT users). -- Absolutely, the caller should not be holding any locks, or there -- will be deadlock. end System.Tasking.Entry_Calls;
55.061224
79
0.538918
fb67ef1653b11f7ece55937af4f950c12144d522
8,707
ads
Ada
src/generated/sys_h.ads
csb6/libtcod-ada
89c2a75eb357a8468ccb0a6476391a6b388f00b4
[ "BSD-3-Clause" ]
null
null
null
src/generated/sys_h.ads
csb6/libtcod-ada
89c2a75eb357a8468ccb0a6476391a6b388f00b4
[ "BSD-3-Clause" ]
null
null
null
src/generated/sys_h.ads
csb6/libtcod-ada
89c2a75eb357a8468ccb0a6476391a6b388f00b4
[ "BSD-3-Clause" ]
null
null
null
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with System; with Interfaces.C.Strings; with Interfaces.C.Extensions; use Interfaces.C.Extensions; with list_h; with console_types_h; with error_h; with image_h; limited with context_h; limited with mouse_types_h; package sys_h is -- BSD 3-Clause License -- * -- * Copyright © 2008-2021, Jice and the libtcod contributors. -- * 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. -- * -- * 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. -- -- #ifdef TCOD_TOUCH_INPUT -- #endif subtype TCOD_event_t is unsigned; TCOD_EVENT_NONE : constant unsigned := 0; TCOD_EVENT_KEY_PRESS : constant unsigned := 1; TCOD_EVENT_KEY_RELEASE : constant unsigned := 2; TCOD_EVENT_KEY : constant unsigned := 3; TCOD_EVENT_MOUSE_MOVE : constant unsigned := 4; TCOD_EVENT_MOUSE_PRESS : constant unsigned := 8; TCOD_EVENT_MOUSE_RELEASE : constant unsigned := 16; TCOD_EVENT_MOUSE : constant unsigned := 28; TCOD_EVENT_FINGER_MOVE : constant unsigned := 32; TCOD_EVENT_FINGER_PRESS : constant unsigned := 64; TCOD_EVENT_FINGER_RELEASE : constant unsigned := 128; TCOD_EVENT_FINGER : constant unsigned := 224; TCOD_EVENT_ANY : constant unsigned := 255; -- sdl2/../sys.h:56 type SDL_Surface is null record; -- incomplete struct type SDL_renderer_t is access procedure (arg1 : access SDL_Surface) with Convention => C; -- sdl2/../sys.h:59 -- dynamic library type TCOD_library_t is new System.Address; -- sdl2/../sys.h:129 function TCOD_load_library (path : Interfaces.C.Strings.chars_ptr) return TCOD_library_t -- sdl2/../sys.h:131 with Import => True, Convention => C, External_Name => "TCOD_load_library"; function TCOD_get_function_address (arg1 : TCOD_library_t; arg2 : Interfaces.C.Strings.chars_ptr) return System.Address -- sdl2/../sys.h:133 with Import => True, Convention => C, External_Name => "TCOD_get_function_address"; procedure TCOD_close_library (arg1 : TCOD_library_t) -- sdl2/../sys.h:135 with Import => True, Convention => C, External_Name => "TCOD_close_library"; function TCOD_sys_elapsed_milli return Unsigned_32 -- sdl2/../sys.h:138 with Import => True, Convention => C, External_Name => "TCOD_sys_elapsed_milli"; function TCOD_sys_elapsed_seconds return float -- sdl2/../sys.h:139 with Import => True, Convention => C, External_Name => "TCOD_sys_elapsed_seconds"; procedure TCOD_sys_sleep_milli (val : Unsigned_32) -- sdl2/../sys.h:140 with Import => True, Convention => C, External_Name => "TCOD_sys_sleep_milli"; procedure TCOD_sys_set_fps (val : int) -- sdl2/../sys.h:141 with Import => True, Convention => C, External_Name => "TCOD_sys_set_fps"; function TCOD_sys_get_fps return int -- sdl2/../sys.h:142 with Import => True, Convention => C, External_Name => "TCOD_sys_get_fps"; function TCOD_sys_get_last_frame_length return float -- sdl2/../sys.h:143 with Import => True, Convention => C, External_Name => "TCOD_sys_get_last_frame_length"; procedure TCOD_sys_save_screenshot (filename : Interfaces.C.Strings.chars_ptr) -- sdl2/../sys.h:145 with Import => True, Convention => C, External_Name => "TCOD_sys_save_screenshot"; procedure TCOD_sys_force_fullscreen_resolution (width : int; height : int) -- sdl2/../sys.h:146 with Import => True, Convention => C, External_Name => "TCOD_sys_force_fullscreen_resolution"; function TCOD_sys_set_renderer (renderer : console_types_h.TCOD_renderer_t) return int -- sdl2/../sys.h:147 with Import => True, Convention => C, External_Name => "TCOD_sys_set_renderer"; function TCOD_sys_get_renderer return console_types_h.TCOD_renderer_t -- sdl2/../sys.h:148 with Import => True, Convention => C, External_Name => "TCOD_sys_get_renderer"; --* -- Return the resolution of the current monitor. -- function TCOD_sys_get_current_resolution (w : access int; h : access int) return error_h.TCOD_Error -- sdl2/../sys.h:153 with Import => True, Convention => C, External_Name => "TCOD_sys_get_current_resolution"; procedure TCOD_sys_get_fullscreen_offsets (offset_x : access int; offset_y : access int) -- sdl2/../sys.h:154 with Import => True, Convention => C, External_Name => "TCOD_sys_get_fullscreen_offsets"; procedure TCOD_sys_get_char_size (w : access int; h : access int) -- sdl2/../sys.h:155 with Import => True, Convention => C, External_Name => "TCOD_sys_get_char_size"; --* -- * Upload a tile to the active tileset. -- * -- * `asciiCode` is the Unicode codepoint for this tile. -- * -- * `font_x` and `font_y` are the tile-coordinates on the active tilemap. -- * -- * `img` is the tile to upload. -- * -- * `x` and `y` are the upper-left pixel-coordinates of the tile on the `img`. -- procedure TCOD_sys_update_char (asciiCode : int; font_x : int; font_y : int; img : image_h.TCOD_image_t; x : int; y : int) -- sdl2/../sys.h:168 with Import => True, Convention => C, External_Name => "TCOD_sys_update_char"; function TCOD_sys_get_SDL_window return access context_h.SDL_Window -- sdl2/../sys.h:170 with Import => True, Convention => C, External_Name => "TCOD_sys_get_SDL_window"; function TCOD_sys_get_SDL_renderer return access context_h.SDL_Renderer -- sdl2/../sys.h:171 with Import => True, Convention => C, External_Name => "TCOD_sys_get_SDL_renderer"; function TCOD_sys_wait_for_event (eventMask : int; key : access console_types_h.TCOD_key_t; mouse : access mouse_types_h.TCOD_mouse_t; flush : Extensions.bool) return TCOD_event_t -- sdl2/../sys.h:174 with Import => True, Convention => C, External_Name => "TCOD_sys_wait_for_event"; function TCOD_sys_check_for_event (eventMask : int; key : access console_types_h.TCOD_key_t; mouse : access mouse_types_h.TCOD_mouse_t) return TCOD_event_t -- sdl2/../sys.h:176 with Import => True, Convention => C, External_Name => "TCOD_sys_check_for_event"; -- clipboard function TCOD_sys_clipboard_set (value : Interfaces.C.Strings.chars_ptr) return Extensions.bool -- sdl2/../sys.h:180 with Import => True, Convention => C, External_Name => "TCOD_sys_clipboard_set"; function TCOD_sys_clipboard_get return Interfaces.C.Strings.chars_ptr -- sdl2/../sys.h:182 with Import => True, Convention => C, External_Name => "TCOD_sys_clipboard_get"; -- SDL renderer callback procedure TCOD_sys_register_SDL_renderer (renderer : SDL_renderer_t) -- sdl2/../sys.h:186 with Import => True, Convention => C, External_Name => "TCOD_sys_register_SDL_renderer"; -- extern "C" end sys_h;
38.356828
144
0.678535
50df7dd48b4831cf9f8234919b1e6b7e84ad8190
58,015
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-strsup.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-strsup.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-strsup.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . S U P E R B O U N D E D -- -- -- -- B o d y -- -- -- -- Copyright (C) 2003-2015, 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.Maps; use Ada.Strings.Maps; with Ada.Strings.Search; package body Ada.Strings.Superbounded is ------------ -- Concat -- ------------ function Concat (Left : Super_String; Right : Super_String) return Super_String is begin return Result : Super_String (Left.Max_Length) do declare Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen > Left.Max_Length then raise Ada.Strings.Length_Error; end if; Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); end; end return; end Concat; function Concat (Left : Super_String; Right : String) return Super_String is begin return Result : Super_String (Left.Max_Length) do declare Llen : constant Natural := Left.Current_Length; Nlen : constant Natural := Llen + Right'Length; begin if Nlen > Left.Max_Length then raise Ada.Strings.Length_Error; end if; Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right; end; end return; end Concat; function Concat (Left : String; Right : Super_String) return Super_String is begin return Result : Super_String (Right.Max_Length) do declare Llen : constant Natural := Left'Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen > Right.Max_Length then raise Ada.Strings.Length_Error; end if; Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); end; end return; end Concat; function Concat (Left : Super_String; Right : Character) return Super_String is begin return Result : Super_String (Left.Max_Length) do declare Llen : constant Natural := Left.Current_Length; begin if Llen = Left.Max_Length then raise Ada.Strings.Length_Error; end if; Result.Current_Length := Llen + 1; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Result.Current_Length) := Right; end; end return; end Concat; function Concat (Left : Character; Right : Super_String) return Super_String is begin return Result : Super_String (Right.Max_Length) do declare Rlen : constant Natural := Right.Current_Length; begin if Rlen = Right.Max_Length then raise Ada.Strings.Length_Error; end if; Result.Current_Length := Rlen + 1; Result.Data (1) := Left; Result.Data (2 .. Result.Current_Length) := Right.Data (1 .. Rlen); end; end return; end Concat; ----------- -- Equal -- ----------- function "=" (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Current_Length = Right.Current_Length and then Left.Data (1 .. Left.Current_Length) = Right.Data (1 .. Right.Current_Length); end "="; function Equal (Left : Super_String; Right : String) return Boolean is begin return Left.Current_Length = Right'Length and then Left.Data (1 .. Left.Current_Length) = Right; end Equal; function Equal (Left : String; Right : Super_String) return Boolean is begin return Left'Length = Right.Current_Length and then Left = Right.Data (1 .. Right.Current_Length); end Equal; ------------- -- Greater -- ------------- function Greater (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) > Right.Data (1 .. Right.Current_Length); end Greater; function Greater (Left : Super_String; Right : String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) > Right; end Greater; function Greater (Left : String; Right : Super_String) return Boolean is begin return Left > Right.Data (1 .. Right.Current_Length); end Greater; ---------------------- -- Greater_Or_Equal -- ---------------------- function Greater_Or_Equal (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) >= Right.Data (1 .. Right.Current_Length); end Greater_Or_Equal; function Greater_Or_Equal (Left : Super_String; Right : String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) >= Right; end Greater_Or_Equal; function Greater_Or_Equal (Left : String; Right : Super_String) return Boolean is begin return Left >= Right.Data (1 .. Right.Current_Length); end Greater_Or_Equal; ---------- -- Less -- ---------- function Less (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) < Right.Data (1 .. Right.Current_Length); end Less; function Less (Left : Super_String; Right : String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) < Right; end Less; function Less (Left : String; Right : Super_String) return Boolean is begin return Left < Right.Data (1 .. Right.Current_Length); end Less; ------------------- -- Less_Or_Equal -- ------------------- function Less_Or_Equal (Left : Super_String; Right : Super_String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) <= Right.Data (1 .. Right.Current_Length); end Less_Or_Equal; function Less_Or_Equal (Left : Super_String; Right : String) return Boolean is begin return Left.Data (1 .. Left.Current_Length) <= Right; end Less_Or_Equal; function Less_Or_Equal (Left : String; Right : Super_String) return Boolean is begin return Left <= Right.Data (1 .. Right.Current_Length); end Less_Or_Equal; ---------------------- -- Set_Super_String -- ---------------------- procedure Set_Super_String (Target : out Super_String; Source : String; Drop : Truncation := Error) is Slen : constant Natural := Source'Length; Max_Length : constant Positive := Target.Max_Length; begin if Slen <= Max_Length then Target.Current_Length := Slen; Target.Data (1 .. Slen) := Source; else case Drop is when Strings.Right => Target.Current_Length := Max_Length; Target.Data (1 .. Max_Length) := Source (Source'First .. Source'First - 1 + Max_Length); when Strings.Left => Target.Current_Length := Max_Length; Target.Data (1 .. Max_Length) := Source (Source'Last - (Max_Length - 1) .. Source'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Set_Super_String; ------------------ -- Super_Append -- ------------------ -- Case of Super_String and Super_String function Super_Append (Left : Super_String; Right : Super_String; Drop : Truncation := Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then -- only case is Llen = Max_Length Result.Data := Left.Data; else Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Max_Length) := Right.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then -- only case is Rlen = Max_Length Result.Data := Right.Data; else Result.Data (1 .. Max_Length - Rlen) := Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Super_String; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; Rlen : constant Natural := New_Item.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Source.Current_Length := Nlen; Source.Data (Llen + 1 .. Nlen) := New_Item.Data (1 .. Rlen); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen < Max_Length then Source.Data (Llen + 1 .. Max_Length) := New_Item.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then -- only case is Rlen = Max_Length Source.Data := New_Item.Data; else Source.Data (1 .. Max_Length - Rlen) := Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Source.Data (Max_Length - Rlen + 1 .. Max_Length) := New_Item.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Super_String and String function Super_Append (Left : Super_String; Right : String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; Rlen : constant Natural := Right'Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Nlen) := Right; else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then -- only case is Llen = Max_Length Result.Data := Left.Data; else Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1 .. Max_Length) := Right (Right'First .. Right'First - 1 + Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Result.Data (1 .. Max_Length) := Right (Right'Last - (Max_Length - 1) .. Right'Last); else Result.Data (1 .. Max_Length - Rlen) := Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : String; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; Rlen : constant Natural := New_Item'Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Source.Current_Length := Nlen; Source.Data (Llen + 1 .. Nlen) := New_Item; else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen < Max_Length then Source.Data (Llen + 1 .. Max_Length) := New_Item (New_Item'First .. New_Item'First - 1 + Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Source.Data (1 .. Max_Length) := New_Item (New_Item'Last - (Max_Length - 1) .. New_Item'Last); else Source.Data (1 .. Max_Length - Rlen) := Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen); Source.Data (Max_Length - Rlen + 1 .. Max_Length) := New_Item; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of String and Super_String function Super_Append (Left : String; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Right.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left'Length; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Llen + Rlen; begin if Nlen <= Max_Length then Result.Current_Length := Nlen; Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Llen + Rlen) := Right.Data (1 .. Rlen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Llen >= Max_Length then Result.Data (1 .. Max_Length) := Left (Left'First .. Left'First + (Max_Length - 1)); else Result.Data (1 .. Llen) := Left; Result.Data (Llen + 1 .. Max_Length) := Right.Data (1 .. Max_Length - Llen); end if; when Strings.Left => if Rlen >= Max_Length then Result.Data (1 .. Max_Length) := Right.Data (Rlen - (Max_Length - 1) .. Rlen); else Result.Data (1 .. Max_Length - Rlen) := Left (Left'Last - (Max_Length - Rlen - 1) .. Left'Last); Result.Data (Max_Length - Rlen + 1 .. Max_Length) := Right.Data (1 .. Rlen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Append; -- Case of Super_String and Character function Super_Append (Left : Super_String; Right : Character; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Left.Max_Length; Result : Super_String (Max_Length); Llen : constant Natural := Left.Current_Length; begin if Llen < Max_Length then Result.Current_Length := Llen + 1; Result.Data (1 .. Llen) := Left.Data (1 .. Llen); Result.Data (Llen + 1) := Right; return Result; else case Drop is when Strings.Right => return Left; when Strings.Left => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length - 1) := Left.Data (2 .. Max_Length); Result.Data (Max_Length) := Right; return Result; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; procedure Super_Append (Source : in out Super_String; New_Item : Character; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Llen : constant Natural := Source.Current_Length; begin if Llen < Max_Length then Source.Current_Length := Llen + 1; Source.Data (Llen + 1) := New_Item; else Source.Current_Length := Max_Length; case Drop is when Strings.Right => null; when Strings.Left => Source.Data (1 .. Max_Length - 1) := Source.Data (2 .. Max_Length); Source.Data (Max_Length) := New_Item; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; -- Case of Character and Super_String function Super_Append (Left : Character; Right : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Right.Max_Length; Result : Super_String (Max_Length); Rlen : constant Natural := Right.Current_Length; begin if Rlen < Max_Length then Result.Current_Length := Rlen + 1; Result.Data (1) := Left; Result.Data (2 .. Rlen + 1) := Right.Data (1 .. Rlen); return Result; else case Drop is when Strings.Right => Result.Current_Length := Max_Length; Result.Data (1) := Left; Result.Data (2 .. Max_Length) := Right.Data (1 .. Max_Length - 1); return Result; when Strings.Left => return Right; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Append; ----------------- -- Super_Count -- ----------------- function Super_Count (Source : Super_String; Pattern : String; Mapping : Maps.Character_Mapping := Maps.Identity) return Natural is begin return Search.Count (Source.Data (1 .. Source.Current_Length), Pattern, Mapping); end Super_Count; function Super_Count (Source : Super_String; Pattern : String; Mapping : Maps.Character_Mapping_Function) return Natural is begin return Search.Count (Source.Data (1 .. Source.Current_Length), Pattern, Mapping); end Super_Count; function Super_Count (Source : Super_String; Set : Maps.Character_Set) return Natural is begin return Search.Count (Source.Data (1 .. Source.Current_Length), Set); end Super_Count; ------------------ -- Super_Delete -- ------------------ function Super_Delete (Source : Super_String; From : Positive; Through : Natural) return Super_String is Result : Super_String (Source.Max_Length); Slen : constant Natural := Source.Current_Length; Num_Delete : constant Integer := Through - From + 1; begin if Num_Delete <= 0 then return Source; elsif From > Slen + 1 then raise Ada.Strings.Index_Error; elsif Through >= Slen then Result.Current_Length := From - 1; Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1); return Result; else Result.Current_Length := Slen - Num_Delete; Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1); Result.Data (From .. Result.Current_Length) := Source.Data (Through + 1 .. Slen); return Result; end if; end Super_Delete; procedure Super_Delete (Source : in out Super_String; From : Positive; Through : Natural) is Slen : constant Natural := Source.Current_Length; Num_Delete : constant Integer := Through - From + 1; begin if Num_Delete <= 0 then return; elsif From > Slen + 1 then raise Ada.Strings.Index_Error; elsif Through >= Slen then Source.Current_Length := From - 1; else Source.Current_Length := Slen - Num_Delete; Source.Data (From .. Source.Current_Length) := Source.Data (Through + 1 .. Slen); end if; end Super_Delete; ------------------- -- Super_Element -- ------------------- function Super_Element (Source : Super_String; Index : Positive) return Character is begin if Index <= Source.Current_Length then return Source.Data (Index); else raise Strings.Index_Error; end if; end Super_Element; ---------------------- -- Super_Find_Token -- ---------------------- procedure Super_Find_Token (Source : Super_String; Set : Maps.Character_Set; From : Positive; Test : Strings.Membership; First : out Positive; Last : out Natural) is begin Search.Find_Token (Source.Data (From .. Source.Current_Length), Set, Test, First, Last); end Super_Find_Token; procedure Super_Find_Token (Source : Super_String; Set : Maps.Character_Set; Test : Strings.Membership; First : out Positive; Last : out Natural) is begin Search.Find_Token (Source.Data (1 .. Source.Current_Length), Set, Test, First, Last); end Super_Find_Token; ---------------- -- Super_Head -- ---------------- function Super_Head (Source : Super_String; Count : Natural; Pad : Character := Space; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; begin if Npad <= 0 then Result.Current_Length := Count; Result.Data (1 .. Count) := Source.Data (1 .. Count); elsif Count <= Max_Length then Result.Current_Length := Count; Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Slen + 1 .. Count) := (others => Pad); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Slen + 1 .. Max_Length) := (others => Pad); when Strings.Left => if Npad >= Max_Length then Result.Data := (others => Pad); else Result.Data (1 .. Max_Length - Npad) := Source.Data (Count - Max_Length + 1 .. Slen); Result.Data (Max_Length - Npad + 1 .. Max_Length) := (others => Pad); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Head; procedure Super_Head (Source : in out Super_String; Count : Natural; Pad : Character := Space; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; Temp : String (1 .. Max_Length); begin if Npad <= 0 then Source.Current_Length := Count; elsif Count <= Max_Length then Source.Current_Length := Count; Source.Data (Slen + 1 .. Count) := (others => Pad); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => Source.Data (Slen + 1 .. Max_Length) := (others => Pad); when Strings.Left => if Npad > Max_Length then Source.Data := (others => Pad); else Temp := Source.Data; Source.Data (1 .. Max_Length - Npad) := Temp (Count - Max_Length + 1 .. Slen); for J in Max_Length - Npad + 1 .. Max_Length loop Source.Data (J) := Pad; end loop; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Head; ----------------- -- Super_Index -- ----------------- function Super_Index (Source : Super_String; Pattern : String; Going : Strings.Direction := Strings.Forward; Mapping : Maps.Character_Mapping := Maps.Identity) return Natural is begin return Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Pattern : String; Going : Direction := Forward; Mapping : Maps.Character_Mapping_Function) return Natural is begin return Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Set : Maps.Character_Set; Test : Strings.Membership := Strings.Inside; Going : Strings.Direction := Strings.Forward) return Natural is begin return Search.Index (Source.Data (1 .. Source.Current_Length), Set, Test, Going); end Super_Index; function Super_Index (Source : Super_String; Pattern : String; From : Positive; Going : Direction := Forward; Mapping : Maps.Character_Mapping := Maps.Identity) return Natural is begin return Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, From, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Pattern : String; From : Positive; Going : Direction := Forward; Mapping : Maps.Character_Mapping_Function) return Natural is begin return Search.Index (Source.Data (1 .. Source.Current_Length), Pattern, From, Going, Mapping); end Super_Index; function Super_Index (Source : Super_String; Set : Maps.Character_Set; From : Positive; Test : Membership := Inside; Going : Direction := Forward) return Natural is begin return Search.Index (Source.Data (1 .. Source.Current_Length), Set, From, Test, Going); end Super_Index; --------------------------- -- Super_Index_Non_Blank -- --------------------------- function Super_Index_Non_Blank (Source : Super_String; Going : Strings.Direction := Strings.Forward) return Natural is begin return Search.Index_Non_Blank (Source.Data (1 .. Source.Current_Length), Going); end Super_Index_Non_Blank; function Super_Index_Non_Blank (Source : Super_String; From : Positive; Going : Direction := Forward) return Natural is begin return Search.Index_Non_Blank (Source.Data (1 .. Source.Current_Length), From, Going); end Super_Index_Non_Blank; ------------------ -- Super_Insert -- ------------------ function Super_Insert (Source : Super_String; Before : Positive; New_Item : String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Nlen : constant Natural := New_Item'Length; Tlen : constant Natural := Slen + Nlen; Blen : constant Natural := Before - 1; Alen : constant Integer := Slen - Blen; Droplen : constant Integer := Tlen - Max_Length; -- Tlen is the length of the total string before possible truncation. -- Blen, Alen are the lengths of the before and after pieces of the -- source string. begin if Alen < 0 then raise Ada.Strings.Index_Error; elsif Droplen <= 0 then Result.Current_Length := Tlen; Result.Data (1 .. Blen) := Source.Data (1 .. Blen); Result.Data (Before .. Before + Nlen - 1) := New_Item; Result.Data (Before + Nlen .. Tlen) := Source.Data (Before .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Blen) := Source.Data (1 .. Blen); if Droplen > Alen then Result.Data (Before .. Max_Length) := New_Item (New_Item'First .. New_Item'First + Max_Length - Before); else Result.Data (Before .. Before + Nlen - 1) := New_Item; Result.Data (Before + Nlen .. Max_Length) := Source.Data (Before .. Slen - Droplen); end if; when Strings.Left => Result.Data (Max_Length - (Alen - 1) .. Max_Length) := Source.Data (Before .. Slen); if Droplen >= Blen then Result.Data (1 .. Max_Length - Alen) := New_Item (New_Item'Last - (Max_Length - Alen) + 1 .. New_Item'Last); else Result.Data (Blen - Droplen + 1 .. Max_Length - Alen) := New_Item; Result.Data (1 .. Blen - Droplen) := Source.Data (Droplen + 1 .. Blen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Insert; procedure Super_Insert (Source : in out Super_String; Before : Positive; New_Item : String; Drop : Strings.Truncation := Strings.Error) is begin -- We do a double copy here because this is one of the situations -- in which we move data to the right, and at least at the moment, -- GNAT is not handling such cases correctly ??? Source := Super_Insert (Source, Before, New_Item, Drop); end Super_Insert; ------------------ -- Super_Length -- ------------------ function Super_Length (Source : Super_String) return Natural is begin return Source.Current_Length; end Super_Length; --------------------- -- Super_Overwrite -- --------------------- function Super_Overwrite (Source : Super_String; Position : Positive; New_Item : String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Endpos : constant Natural := Position + New_Item'Length - 1; Slen : constant Natural := Source.Current_Length; Droplen : Natural; begin if Position > Slen + 1 then raise Ada.Strings.Index_Error; elsif New_Item'Length = 0 then return Source; elsif Endpos <= Slen then Result.Current_Length := Source.Current_Length; Result.Data (1 .. Slen) := Source.Data (1 .. Slen); Result.Data (Position .. Endpos) := New_Item; return Result; elsif Endpos <= Max_Length then Result.Current_Length := Endpos; Result.Data (1 .. Position - 1) := Source.Data (1 .. Position - 1); Result.Data (Position .. Endpos) := New_Item; return Result; else Result.Current_Length := Max_Length; Droplen := Endpos - Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Position - 1) := Source.Data (1 .. Position - 1); Result.Data (Position .. Max_Length) := New_Item (New_Item'First .. New_Item'Last - Droplen); return Result; when Strings.Left => if New_Item'Length >= Max_Length then Result.Data (1 .. Max_Length) := New_Item (New_Item'Last - Max_Length + 1 .. New_Item'Last); return Result; else Result.Data (1 .. Max_Length - New_Item'Length) := Source.Data (Droplen + 1 .. Position - 1); Result.Data (Max_Length - New_Item'Length + 1 .. Max_Length) := New_Item; return Result; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Overwrite; procedure Super_Overwrite (Source : in out Super_String; Position : Positive; New_Item : String; Drop : Strings.Truncation := Strings.Error) is Max_Length : constant Positive := Source.Max_Length; Endpos : constant Positive := Position + New_Item'Length - 1; Slen : constant Natural := Source.Current_Length; Droplen : Natural; begin if Position > Slen + 1 then raise Ada.Strings.Index_Error; elsif Endpos <= Slen then Source.Data (Position .. Endpos) := New_Item; elsif Endpos <= Max_Length then Source.Data (Position .. Endpos) := New_Item; Source.Current_Length := Endpos; else Source.Current_Length := Max_Length; Droplen := Endpos - Max_Length; case Drop is when Strings.Right => Source.Data (Position .. Max_Length) := New_Item (New_Item'First .. New_Item'Last - Droplen); when Strings.Left => if New_Item'Length > Max_Length then Source.Data (1 .. Max_Length) := New_Item (New_Item'Last - Max_Length + 1 .. New_Item'Last); else Source.Data (1 .. Max_Length - New_Item'Length) := Source.Data (Droplen + 1 .. Position - 1); Source.Data (Max_Length - New_Item'Length + 1 .. Max_Length) := New_Item; end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Overwrite; --------------------------- -- Super_Replace_Element -- --------------------------- procedure Super_Replace_Element (Source : in out Super_String; Index : Positive; By : Character) is begin if Index <= Source.Current_Length then Source.Data (Index) := By; else raise Ada.Strings.Index_Error; end if; end Super_Replace_Element; ------------------------- -- Super_Replace_Slice -- ------------------------- function Super_Replace_Slice (Source : Super_String; Low : Positive; High : Natural; By : String; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; begin if Low > Slen + 1 then raise Strings.Index_Error; elsif High < Low then return Super_Insert (Source, Low, By, Drop); else declare Blen : constant Natural := Natural'Max (0, Low - 1); Alen : constant Natural := Natural'Max (0, Slen - High); Tlen : constant Natural := Blen + By'Length + Alen; Droplen : constant Integer := Tlen - Max_Length; Result : Super_String (Max_Length); -- Tlen is the total length of the result string before any -- truncation. Blen and Alen are the lengths of the pieces -- of the original string that end up in the result string -- before and after the replaced slice. begin if Droplen <= 0 then Result.Current_Length := Tlen; Result.Data (1 .. Blen) := Source.Data (1 .. Blen); Result.Data (Low .. Low + By'Length - 1) := By; Result.Data (Low + By'Length .. Tlen) := Source.Data (High + 1 .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Result.Data (1 .. Blen) := Source.Data (1 .. Blen); if Droplen > Alen then Result.Data (Low .. Max_Length) := By (By'First .. By'First + Max_Length - Low); else Result.Data (Low .. Low + By'Length - 1) := By; Result.Data (Low + By'Length .. Max_Length) := Source.Data (High + 1 .. Slen - Droplen); end if; when Strings.Left => Result.Data (Max_Length - (Alen - 1) .. Max_Length) := Source.Data (High + 1 .. Slen); if Droplen >= Blen then Result.Data (1 .. Max_Length - Alen) := By (By'Last - (Max_Length - Alen) + 1 .. By'Last); else Result.Data (Blen - Droplen + 1 .. Max_Length - Alen) := By; Result.Data (1 .. Blen - Droplen) := Source.Data (Droplen + 1 .. Blen); end if; when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end; end if; end Super_Replace_Slice; procedure Super_Replace_Slice (Source : in out Super_String; Low : Positive; High : Natural; By : String; Drop : Strings.Truncation := Strings.Error) is begin -- We do a double copy here because this is one of the situations -- in which we move data to the right, and at least at the moment, -- GNAT is not handling such cases correctly ??? Source := Super_Replace_Slice (Source, Low, High, By, Drop); end Super_Replace_Slice; --------------------- -- Super_Replicate -- --------------------- function Super_Replicate (Count : Natural; Item : Character; Drop : Truncation := Error; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); begin if Count <= Max_Length then Result.Current_Length := Count; elsif Drop = Strings.Error then raise Ada.Strings.Length_Error; else Result.Current_Length := Max_Length; end if; Result.Data (1 .. Result.Current_Length) := (others => Item); return Result; end Super_Replicate; function Super_Replicate (Count : Natural; Item : String; Drop : Truncation := Error; Max_Length : Positive) return Super_String is Length : constant Integer := Count * Item'Length; Result : Super_String (Max_Length); Indx : Positive; begin if Length <= Max_Length then Result.Current_Length := Length; if Length > 0 then Indx := 1; for J in 1 .. Count loop Result.Data (Indx .. Indx + Item'Length - 1) := Item; Indx := Indx + Item'Length; end loop; end if; else Result.Current_Length := Max_Length; case Drop is when Strings.Right => Indx := 1; while Indx + Item'Length <= Max_Length + 1 loop Result.Data (Indx .. Indx + Item'Length - 1) := Item; Indx := Indx + Item'Length; end loop; Result.Data (Indx .. Max_Length) := Item (Item'First .. Item'First + Max_Length - Indx); when Strings.Left => Indx := Max_Length; while Indx - Item'Length >= 1 loop Result.Data (Indx - (Item'Length - 1) .. Indx) := Item; Indx := Indx - Item'Length; end loop; Result.Data (1 .. Indx) := Item (Item'Last - Indx + 1 .. Item'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Replicate; function Super_Replicate (Count : Natural; Item : Super_String; Drop : Strings.Truncation := Strings.Error) return Super_String is begin return Super_Replicate (Count, Item.Data (1 .. Item.Current_Length), Drop, Item.Max_Length); end Super_Replicate; ----------------- -- Super_Slice -- ----------------- function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return String is begin -- Note: test of High > Length is in accordance with AI95-00128 return R : String (Low .. High) do if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; end if; -- Note: in this case, superflat bounds are not a problem, we just -- get the null string in accordance with normal Ada slice rules. R := Source.Data (Low .. High); end return; end Super_Slice; function Super_Slice (Source : Super_String; Low : Positive; High : Natural) return Super_String is begin return Result : Super_String (Source.Max_Length) do if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; end if; -- Note: the Max operation here deals with the superflat case Result.Current_Length := Integer'Max (0, High - Low + 1); Result.Data (1 .. Result.Current_Length) := Source.Data (Low .. High); end return; end Super_Slice; procedure Super_Slice (Source : Super_String; Target : out Super_String; Low : Positive; High : Natural) is begin if Low > Source.Current_Length + 1 or else High > Source.Current_Length then raise Index_Error; end if; -- Note: the Max operation here deals with the superflat case Target.Current_Length := Integer'Max (0, High - Low + 1); Target.Data (1 .. Target.Current_Length) := Source.Data (Low .. High); end Super_Slice; ---------------- -- Super_Tail -- ---------------- function Super_Tail (Source : Super_String; Count : Natural; Pad : Character := Space; Drop : Strings.Truncation := Strings.Error) return Super_String is Max_Length : constant Positive := Source.Max_Length; Result : Super_String (Max_Length); Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; begin if Npad <= 0 then Result.Current_Length := Count; Result.Data (1 .. Count) := Source.Data (Slen - (Count - 1) .. Slen); elsif Count <= Max_Length then Result.Current_Length := Count; Result.Data (1 .. Npad) := (others => Pad); Result.Data (Npad + 1 .. Count) := Source.Data (1 .. Slen); else Result.Current_Length := Max_Length; case Drop is when Strings.Right => if Npad >= Max_Length then Result.Data := (others => Pad); else Result.Data (1 .. Npad) := (others => Pad); Result.Data (Npad + 1 .. Max_Length) := Source.Data (1 .. Max_Length - Npad); end if; when Strings.Left => Result.Data (1 .. Max_Length - Slen) := (others => Pad); Result.Data (Max_Length - Slen + 1 .. Max_Length) := Source.Data (1 .. Slen); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end Super_Tail; procedure Super_Tail (Source : in out Super_String; Count : Natural; Pad : Character := Space; Drop : Truncation := Error) is Max_Length : constant Positive := Source.Max_Length; Slen : constant Natural := Source.Current_Length; Npad : constant Integer := Count - Slen; Temp : constant String (1 .. Max_Length) := Source.Data; begin if Npad <= 0 then Source.Current_Length := Count; Source.Data (1 .. Count) := Temp (Slen - (Count - 1) .. Slen); elsif Count <= Max_Length then Source.Current_Length := Count; Source.Data (1 .. Npad) := (others => Pad); Source.Data (Npad + 1 .. Count) := Temp (1 .. Slen); else Source.Current_Length := Max_Length; case Drop is when Strings.Right => if Npad >= Max_Length then Source.Data := (others => Pad); else Source.Data (1 .. Npad) := (others => Pad); Source.Data (Npad + 1 .. Max_Length) := Temp (1 .. Max_Length - Npad); end if; when Strings.Left => for J in 1 .. Max_Length - Slen loop Source.Data (J) := Pad; end loop; Source.Data (Max_Length - Slen + 1 .. Max_Length) := Temp (1 .. Slen); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; end Super_Tail; --------------------- -- Super_To_String -- --------------------- function Super_To_String (Source : Super_String) return String is begin return R : String (1 .. Source.Current_Length) do R := Source.Data (1 .. Source.Current_Length); end return; end Super_To_String; --------------------- -- Super_Translate -- --------------------- function Super_Translate (Source : Super_String; Mapping : Maps.Character_Mapping) return Super_String is Result : Super_String (Source.Max_Length); begin Result.Current_Length := Source.Current_Length; for J in 1 .. Source.Current_Length loop Result.Data (J) := Value (Mapping, Source.Data (J)); end loop; return Result; end Super_Translate; procedure Super_Translate (Source : in out Super_String; Mapping : Maps.Character_Mapping) is begin for J in 1 .. Source.Current_Length loop Source.Data (J) := Value (Mapping, Source.Data (J)); end loop; end Super_Translate; function Super_Translate (Source : Super_String; Mapping : Maps.Character_Mapping_Function) return Super_String is Result : Super_String (Source.Max_Length); begin Result.Current_Length := Source.Current_Length; for J in 1 .. Source.Current_Length loop Result.Data (J) := Mapping.all (Source.Data (J)); end loop; return Result; end Super_Translate; procedure Super_Translate (Source : in out Super_String; Mapping : Maps.Character_Mapping_Function) is begin for J in 1 .. Source.Current_Length loop Source.Data (J) := Mapping.all (Source.Data (J)); end loop; end Super_Translate; ---------------- -- Super_Trim -- ---------------- function Super_Trim (Source : Super_String; Side : Trim_End) return Super_String is Result : Super_String (Source.Max_Length); Last : Natural := Source.Current_Length; First : Positive := 1; begin if Side = Left or else Side = Both then while First <= Last and then Source.Data (First) = ' ' loop First := First + 1; end loop; end if; if Side = Right or else Side = Both then while Last >= First and then Source.Data (Last) = ' ' loop Last := Last - 1; end loop; end if; Result.Current_Length := Last - First + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (First .. Last); return Result; end Super_Trim; procedure Super_Trim (Source : in out Super_String; Side : Trim_End) is Max_Length : constant Positive := Source.Max_Length; Last : Natural := Source.Current_Length; First : Positive := 1; Temp : String (1 .. Max_Length); begin Temp (1 .. Last) := Source.Data (1 .. Last); if Side = Left or else Side = Both then while First <= Last and then Temp (First) = ' ' loop First := First + 1; end loop; end if; if Side = Right or else Side = Both then while Last >= First and then Temp (Last) = ' ' loop Last := Last - 1; end loop; end if; Source.Current_Length := Last - First + 1; Source.Data (1 .. Source.Current_Length) := Temp (First .. Last); end Super_Trim; function Super_Trim (Source : Super_String; Left : Maps.Character_Set; Right : Maps.Character_Set) return Super_String is Result : Super_String (Source.Max_Length); begin for First in 1 .. Source.Current_Length loop if not Is_In (Source.Data (First), Left) then for Last in reverse First .. Source.Current_Length loop if not Is_In (Source.Data (Last), Right) then Result.Current_Length := Last - First + 1; Result.Data (1 .. Result.Current_Length) := Source.Data (First .. Last); return Result; end if; end loop; end if; end loop; Result.Current_Length := 0; return Result; end Super_Trim; procedure Super_Trim (Source : in out Super_String; Left : Maps.Character_Set; Right : Maps.Character_Set) is begin for First in 1 .. Source.Current_Length loop if not Is_In (Source.Data (First), Left) then for Last in reverse First .. Source.Current_Length loop if not Is_In (Source.Data (Last), Right) then if First = 1 then Source.Current_Length := Last; return; else Source.Current_Length := Last - First + 1; Source.Data (1 .. Source.Current_Length) := Source.Data (First .. Last); return; end if; end if; end loop; Source.Current_Length := 0; return; end if; end loop; Source.Current_Length := 0; end Super_Trim; ----------- -- Times -- ----------- function Times (Left : Natural; Right : Character; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); begin if Left > Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Left; for J in 1 .. Left loop Result.Data (J) := Right; end loop; end if; return Result; end Times; function Times (Left : Natural; Right : String; Max_Length : Positive) return Super_String is Result : Super_String (Max_Length); Pos : Positive := 1; Rlen : constant Natural := Right'Length; Nlen : constant Natural := Left * Rlen; begin if Nlen > Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; if Nlen > 0 then for J in 1 .. Left loop Result.Data (Pos .. Pos + Rlen - 1) := Right; Pos := Pos + Rlen; end loop; end if; end if; return Result; end Times; function Times (Left : Natural; Right : Super_String) return Super_String is Result : Super_String (Right.Max_Length); Pos : Positive := 1; Rlen : constant Natural := Right.Current_Length; Nlen : constant Natural := Left * Rlen; begin if Nlen > Right.Max_Length then raise Ada.Strings.Length_Error; else Result.Current_Length := Nlen; if Nlen > 0 then for J in 1 .. Left loop Result.Data (Pos .. Pos + Rlen - 1) := Right.Data (1 .. Rlen); Pos := Pos + Rlen; end loop; end if; end if; return Result; end Times; --------------------- -- To_Super_String -- --------------------- function To_Super_String (Source : String; Max_Length : Natural; Drop : Truncation := Error) return Super_String is Result : Super_String (Max_Length); Slen : constant Natural := Source'Length; begin if Slen <= Max_Length then Result.Current_Length := Slen; Result.Data (1 .. Slen) := Source; else case Drop is when Strings.Right => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length) := Source (Source'First .. Source'First - 1 + Max_Length); when Strings.Left => Result.Current_Length := Max_Length; Result.Data (1 .. Max_Length) := Source (Source'Last - (Max_Length - 1) .. Source'Last); when Strings.Error => raise Ada.Strings.Length_Error; end case; end if; return Result; end To_Super_String; end Ada.Strings.Superbounded;
30.122015
79
0.52464
df26d33d943c0c85d10769dd7c936706258313a4
1,713
adb
Ada
out/aaa_missing.adb
Melyodas/metalang
399a9f1a71402c979d7f8024d4f98f081c80e771
[ "BSD-2-Clause" ]
22
2017-04-24T10:00:45.000Z
2021-04-01T10:11:05.000Z
out/aaa_missing.adb
Melyodas/metalang
399a9f1a71402c979d7f8024d4f98f081c80e771
[ "BSD-2-Clause" ]
12
2017-03-26T18:34:21.000Z
2019-03-21T19:13:03.000Z
out/aaa_missing.adb
Melyodas/metalang
399a9f1a71402c979d7f8024d4f98f081c80e771
[ "BSD-2-Clause" ]
7
2017-10-14T13:33:33.000Z
2021-03-18T15:18:50.000Z
with ada.text_io, ada.Integer_text_IO, Ada.Text_IO.Text_Streams, Ada.Strings.Fixed, Interfaces.C; use ada.text_io, ada.Integer_text_IO, Ada.Strings, Ada.Strings.Fixed, Interfaces.C; procedure aaa_missing is type stringptr is access all char_array; procedure PString(s : stringptr) is begin String'Write (Text_Streams.Stream (Current_Output), To_Ada(s.all)); end; procedure PInt(i : in Integer) is begin String'Write (Text_Streams.Stream (Current_Output), Trim(Integer'Image(i), Left)); end; procedure SkipSpaces is C : Character; Eol : Boolean; begin loop Look_Ahead(C, Eol); exit when Eol or C /= ' '; Get(C); end loop; end; -- -- Ce test a été généré par Metalang. -- type b is Array (Integer range <>) of Boolean; type b_PTR is access b; type c is Array (Integer range <>) of Integer; type c_PTR is access c; function result(len : in Integer; tab : in c_PTR) return Integer is tab2 : b_PTR; begin tab2 := new b (0..len - 1); for i in integer range 0..len - 1 loop tab2(i) := FALSE; end loop; for i1 in integer range 0..len - 1 loop PInt(tab(i1)); PString(new char_array'( To_C(" "))); tab2(tab(i1)) := TRUE; end loop; PString(new char_array'( To_C("" & Character'Val(10)))); for i2 in integer range 0..len - 1 loop if not tab2(i2) then return i2; end if; end loop; return (-1); end; tab : c_PTR; len : Integer; begin Get(len); SkipSpaces; PInt(len); PString(new char_array'( To_C("" & Character'Val(10)))); tab := new c (0..len - 1); for a in integer range 0..len - 1 loop Get(tab(a)); SkipSpaces; end loop; PInt(result(len, tab)); PString(new char_array'( To_C("" & Character'Val(10)))); end;
23.465753
97
0.658494
0b1923f2b46f2f61dc9ab07c827f7c002f02d7d1
483
ads
Ada
workshop/tests/src/test_exercises_rewrite.ads
TNO/Rejuvenation-Ada
8113ec28da3923ccde40d76cbab70e0e614f4b75
[ "BSD-3-Clause" ]
1
2022-03-08T13:00:47.000Z
2022-03-08T13:00:47.000Z
src/examples/Rejuvenation_Workshop/tests/test_exercises_rewrite.ads
selroc/Renaissance-Ada
39230b34aced4a9d83831be346ca103136c53715
[ "BSD-3-Clause" ]
null
null
null
src/examples/Rejuvenation_Workshop/tests/test_exercises_rewrite.ads
selroc/Renaissance-Ada
39230b34aced4a9d83831be346ca103136c53715
[ "BSD-3-Clause" ]
null
null
null
with AUnit; use AUnit; with AUnit.Test_Cases; use AUnit.Test_Cases; package Test_Exercises_Rewrite is type Exercise_Rewrite_Test_Case is new Test_Case with null record; overriding procedure Register_Tests (T : in out Exercise_Rewrite_Test_Case); -- Register routines to be run overriding function Name (T : Exercise_Rewrite_Test_Case) return Message_String; -- Provide name identifying the test case end Test_Exercises_Rewrite;
25.421053
45
0.741201
d0ca1f9e126b27a308620d1b6e8ee6762db09db9
1,615
ads
Ada
src/ada-core/src/linted-sched.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
src/ada-core/src/linted-sched.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
src/ada-core/src/linted-sched.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
-- Copyright 2017 Steven Stewart-Gallus -- -- 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 Linted.Mod_Atomics; package Linted.Sched with Spark_Mode is pragma Preelaborate; type Contention_T is mod 2**32 with Default_Value => 0; package Contention_Atomics is new Mod_Atomics (Contention_T); subtype Contention is Contention_Atomics.Atomic; type Backoff_State is mod 2**32 with Default_Value => 0; procedure Backoff (State : in out Backoff_State) with Inline_Always, Global => null, Depends => (State => State); procedure Success (C : in out Contention) with Inline_Always, Global => null, Depends => (C => C); procedure Backoff (C : in out Contention) with Inline_Always, Global => (null), Depends => (C => C); procedure Backoff (C : in out Contention; Highly_Contended : out Boolean) with Inline_Always, Global => (null), Depends => ((Highly_Contended, C) => C); procedure Pause; pragma Import (Intrinsic, Pause, "__builtin_ia32_pause"); end Linted.Sched;
29.907407
70
0.684211
0b54debce3611f3b267e2c1b6f5e1cbf3727d70a
142,791
adb
Ada
submissions/M2/Design_Analysis/lab1/dct_prj/solution1/.autopilot/db/dct.sched.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
submissions/M2/Design_Analysis/lab1/dct_prj/solution1/.autopilot/db/dct.sched.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
submissions/M2/Design_Analysis/lab1/dct_prj/solution1/.autopilot/db/dct.sched.adb
maanjum95/SynthesisDigitalSystems_Lab
afc942decf7595eb1557ff78074693de2eea1780
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>dct</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>input_r</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>output_r</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>output</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>56</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>7</id> <name>buf_2d_in</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>122</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>dct.cpp</first> <second>dct</second> </first> <second>122</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>89</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name>buf_2d_out</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>90</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>9</id> <name>_ln101</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>91</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>r_0_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>93</item> <item>94</item> <item>95</item> <item>96</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name>icmp_ln101</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>97</item> <item>99</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.72</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>14</id> <name>r</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>100</item> <item>102</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>_ln101</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>103</item> <item>104</item> <item>105</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>19</id> <name>trunc_ln104</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>106</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>shl_ln</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>108</item> <item>109</item> <item>111</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name>tmp_9</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>113</item> <item>114</item> <item>115</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>22</id> <name>zext_ln103_1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>116</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>23</id> <name>_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>117</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>25</id> <name>c_0_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>118</item> <item>119</item> <item>120</item> <item>121</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name>zext_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>122</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>27</id> <name>icmp_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>123</item> <item>124</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.72</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>29</id> <name>c</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>125</item> <item>126</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>30</id> <name>_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>127</item> <item>128</item> <item>129</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>33</id> <name>add_ln104</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>130</item> <item>131</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.84</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>34</id> <name>zext_ln104</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>132</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>35</id> <name>input_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>133</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>36</id> <name>input_load</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>137</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>37</id> <name>zext_ln104_1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>138</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>38</id> <name>add_ln104_1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>139</item> <item>140</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>39</id> <name>zext_ln104_2</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>141</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>40</id> <name>buf_2d_in_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>142</item> <item>143</item> <item>144</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>41</id> <name>buf_2d_in_addr_write_ln104</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>104</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>104</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>145</item> <item>146</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>42</id> <name>_ln103</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>147</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>45</id> <name>_ln101</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>101</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>126</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>101</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>148</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>47</id> <name>_ln128</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>150</item> <item>151</item> <item>152</item> <item>204</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>48</id> <name>_ln113</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>153</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>50</id> <name>r_0_i2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>154</item> <item>155</item> <item>156</item> <item>157</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>51</id> <name>icmp_ln113</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>158</item> <item>159</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.72</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>53</id> <name>r_1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>160</item> <item>161</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>54</id> <name>_ln113</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>162</item> <item>163</item> <item>164</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp_s</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>59</id> <name>zext_ln116</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>60</id> <name>trunc_ln116</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>61</id> <name>shl_ln1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>170</item> <item>171</item> <item>172</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>62</id> <name>_ln115</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>173</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.73</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>64</id> <name>c_0_i4</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>174</item> <item>175</item> <item>176</item> <item>177</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>65</id> <name>zext_ln115</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>178</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>66</id> <name>icmp_ln115</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>179</item> <item>180</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.72</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>68</id> <name>c_1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>181</item> <item>182</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>69</id> <name>_ln115</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>183</item> <item>184</item> <item>185</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>72</id> <name>zext_ln116_1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>186</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>73</id> <name>add_ln116_1</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>187</item> <item>188</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.85</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>74</id> <name>zext_ln116_3</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>189</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>75</id> <name>buf_2d_out_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>190</item> <item>191</item> <item>192</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>76</id> <name>buf_2d_out_load</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>193</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>77</id> <name>add_ln116</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>194</item> <item>195</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.84</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>78</id> <name>zext_ln116_2</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>196</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>79</id> <name>output_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>197</item> <item>198</item> <item>199</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>80</id> <name>output_addr_write_ln116</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>116</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>116</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>200</item> <item>201</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.29</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>81</id> <name>_ln115</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>202</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>84</id> <name>_ln113</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>113</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>131</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>113</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>203</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>86</id> <name>_ln132</name> <fileName>dct.cpp</fileName> <fileDirectory>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</fileDirectory> <lineNumber>132</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/usr/local/labs/SDS/current/ge46bod/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>132</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_59"> <Value> <Obj> <type>2</type> <id>88</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_60"> <Value> <Obj> <type>2</type> <id>92</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_61"> <Value> <Obj> <type>2</type> <id>98</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>101</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>110</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>149</id> <name>dct_2d</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:dct_2d&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_66"> <Obj> <type>3</type> <id>10</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>7</item> <item>8</item> <item>9</item> </node_objs> </item> <item class_id_reference="18" object_id="_67"> <Obj> <type>3</type> <id>16</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>11</item> <item>12</item> <item>14</item> <item>15</item> </node_objs> </item> <item class_id_reference="18" object_id="_68"> <Obj> <type>3</type> <id>24</id> <name>RD_Loop_Row_begin</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> </node_objs> </item> <item class_id_reference="18" object_id="_69"> <Obj> <type>3</type> <id>31</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>25</item> <item>26</item> <item>27</item> <item>29</item> <item>30</item> </node_objs> </item> <item class_id_reference="18" object_id="_70"> <Obj> <type>3</type> <id>43</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> </node_objs> </item> <item class_id_reference="18" object_id="_71"> <Obj> <type>3</type> <id>46</id> <name>RD_Loop_Row_end</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>45</item> </node_objs> </item> <item class_id_reference="18" object_id="_72"> <Obj> <type>3</type> <id>49</id> <name>read_data.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>47</item> <item>48</item> </node_objs> </item> <item class_id_reference="18" object_id="_73"> <Obj> <type>3</type> <id>55</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>50</item> <item>51</item> <item>53</item> <item>54</item> </node_objs> </item> <item class_id_reference="18" object_id="_74"> <Obj> <type>3</type> <id>63</id> <name>WR_Loop_Row_begin</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> </node_objs> </item> <item class_id_reference="18" object_id="_75"> <Obj> <type>3</type> <id>70</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>64</item> <item>65</item> <item>66</item> <item>68</item> <item>69</item> </node_objs> </item> <item class_id_reference="18" object_id="_76"> <Obj> <type>3</type> <id>82</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>10</count> <item_version>0</item_version> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> </node_objs> </item> <item class_id_reference="18" object_id="_77"> <Obj> <type>3</type> <id>85</id> <name>WR_Loop_Row_end</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>84</item> </node_objs> </item> <item class_id_reference="18" object_id="_78"> <Obj> <type>3</type> <id>87</id> <name>write_data.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>86</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>120</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_79"> <id>89</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_80"> <id>90</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_81"> <id>91</id> <edge_type>2</edge_type> <source_obj>16</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_82"> <id>93</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_83"> <id>94</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_84"> <id>95</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>11</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_85"> <id>96</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>11</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_86"> <id>97</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_87"> <id>99</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_88"> <id>100</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_89"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_90"> <id>103</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_91"> <id>104</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_92"> <id>105</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_93"> <id>106</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_94"> <id>109</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_95"> <id>111</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_96"> <id>114</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_97"> <id>115</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_98"> <id>116</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_99"> <id>117</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_100"> <id>118</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_101"> <id>119</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_102"> <id>120</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>25</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_103"> <id>121</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>25</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_104"> <id>122</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_105"> <id>123</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_106"> <id>124</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_107"> <id>125</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_108"> <id>126</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>127</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>128</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>129</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>130</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>131</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>132</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_115"> <id>133</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>136</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>137</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>138</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>139</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>140</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>141</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>142</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>143</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_125"> <id>144</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>145</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_127"> <id>146</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>147</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>148</id> <edge_type>2</edge_type> <source_obj>16</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>151</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>152</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_133"> <id>153</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>154</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>155</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>156</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>50</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>157</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>50</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>158</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>159</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>160</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_141"> <id>161</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>162</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>163</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>164</id> <edge_type>2</edge_type> <source_obj>87</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>166</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>167</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>168</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>169</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>171</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>172</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>173</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>174</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>175</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>176</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>64</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>177</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>64</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>178</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>179</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>180</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_159"> <id>181</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_160"> <id>182</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>183</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_162"> <id>184</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_163"> <id>185</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>186</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>187</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>188</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>189</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>190</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>191</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>192</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>193</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>194</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>195</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>196</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>197</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>198</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>199</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>200</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>201</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>202</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>203</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>204</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>257</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>258</id> <edge_type>2</edge_type> <source_obj>16</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>259</id> <edge_type>2</edge_type> <source_obj>16</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>260</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>261</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>262</id> <edge_type>2</edge_type> <source_obj>31</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>263</id> <edge_type>2</edge_type> <source_obj>43</source_obj> <sink_obj>31</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>264</id> <edge_type>2</edge_type> <source_obj>46</source_obj> <sink_obj>16</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>265</id> <edge_type>2</edge_type> <source_obj>49</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>266</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>267</id> <edge_type>2</edge_type> <source_obj>55</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>268</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>269</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>270</id> <edge_type>2</edge_type> <source_obj>70</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>271</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>70</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>272</id> <edge_type>2</edge_type> <source_obj>85</source_obj> <sink_obj>55</sink_obj> <is_back_edge>1</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_199"> <mId>1</mId> <mTag>dct</mTag> <mType>0</mType> <sub_regions> <count>5</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> <item>8</item> <item>12</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2935</mMinLatency> <mMaxLatency>2935</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_200"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>10</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_201"> <mId>3</mId> <mTag>RD_Loop_Row</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>144</mMinLatency> <mMaxLatency>144</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_202"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>16</item> <item>24</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_203"> <mId>5</mId> <mTag>RD_Loop_Col</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>31</item> <item>43</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>16</mMinLatency> <mMaxLatency>16</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_204"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>46</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_205"> <mId>7</mId> <mTag>Region 3</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>49</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2645</mMinLatency> <mMaxLatency>2645</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_206"> <mId>8</mId> <mTag>WR_Loop_Row</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>9</item> <item>10</item> <item>11</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>144</mMinLatency> <mMaxLatency>144</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_207"> <mId>9</mId> <mTag>Region 4</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>55</item> <item>63</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_208"> <mId>10</mId> <mTag>WR_Loop_Col</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>70</item> <item>82</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>8</mMinTripCount> <mMaxTripCount>8</mMaxTripCount> <mMinLatency>16</mMinLatency> <mMaxLatency>16</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_209"> <mId>11</mId> <mTag>Region 5</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>85</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_210"> <mId>12</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>87</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>56</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>7</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>48</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>6</first> <second>1</second> </second> </item> <item> <first>77</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>5</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>10</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>31</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>49</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>55</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>63</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>70</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>82</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>85</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>87</first> <second> <first>3</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
27.105353
93
0.594512
18fba55568696520db3af6d1c265226f46b10e32
807
ads
Ada
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/complete/aux_pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
3
2021-05-04T17:09:06.000Z
2021-10-04T07:19:26.000Z
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/complete/aux_pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/complete/aux_pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2015-2020 Free Software Foundation, Inc. -- -- This program 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 3 of the License, or -- (at your option) any later version. -- -- This program 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 program. If not, see <http://www.gnu.org/licenses/>. package Aux_Pck is procedure Ambiguous_Func; procedure Ambiguous_Proc; end Aux_Pck;
36.681818
73
0.743494
5073100bc0b7b1e98d649cb15acbbf5f252cd9fb
3,102
adb
Ada
samples/list_user.adb
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
samples/list_user.adb
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
samples/list_user.adb
My-Colaborations/ada-ado
cebf1f9b38c0c259c44935e8bca05a5bff12aace
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- List_User -- Example of queries -- Copyright (C) 2010, 2011, 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. ----------------------------------------------------------------------- with Samples.User.Model; with ADO; with ADO.Drivers; with ADO.Configs; with ADO.Queries; with ADO.Sessions; with ADO.Connections; with ADO.Sessions.Factory; with Util.Log.Loggers; with Ada.Text_IO; with Ada.Exceptions; with Ada.Strings.Unbounded; procedure List_User is use Ada.Strings.Unbounded; use Samples.User.Model; Factory : ADO.Sessions.Factory.Session_Factory; begin Util.Log.Loggers.Initialize ("samples.properties"); -- Initialize the database drivers. ADO.Drivers.Initialize ("samples.properties"); -- Initialize the session factory to connect to the -- database defined by 'ado.database' property. Factory.Create (ADO.Configs.Get_Config ("ado.database")); declare DB : ADO.Sessions.Session := Factory.Get_Session; Context : ADO.Queries.Context; Users : Samples.User.Model.User_Info_Vector; begin -- Execute the 'Query_User_List' query (db/samples/user-list.xml, query 'user-list'). Context.Set_Query (Samples.User.Model.Query_User_List); List (Object => Users, Session => DB, Context => Context); -- Print the list if Users.Is_Empty then Ada.Text_IO.Put_Line ("User info list is empty."); Ada.Text_IO.Put_Line ("Use the 'add_user' to add users in the table."); else declare Iter : Samples.User.Model.User_Info_Vectors.Cursor := Users.First; User : Samples.User.Model.User_Info; begin while Samples.User.Model.User_Info_Vectors.Has_Element (Iter) loop User := Samples.User.Model.User_Info_Vectors.Element (Iter); Ada.Text_IO.Put (ADO.Identifier'Image (User.Id)); Ada.Text_IO.Set_Col (10); Ada.Text_IO.Put (To_String (User.Name)); Ada.Text_IO.Set_Col (60); Ada.Text_IO.Put_Line (To_String (User.Email)); Samples.User.Model.User_Info_Vectors.Next (Iter); end loop; end; end if; end; exception when E : ADO.Connections.Database_Error | ADO.Sessions.Connection_Error => Ada.Text_IO.Put_Line ("Cannot connect to database: " & Ada.Exceptions.Exception_Message (E)); end List_User;
36.069767
92
0.640232
0b15c8432efa54536e144fd27c323b14522309f8
743
ads
Ada
resources/scripts/scrape/yahoo.ads
marcostolosa/Amass
7a48ddae82eeac76fd6447de908f6b27002eace7
[ "Apache-2.0" ]
7,053
2018-07-13T09:40:12.000Z
2022-03-31T15:26:10.000Z
resources/scripts/scrape/yahoo.ads
marcostolosa/Amass
7a48ddae82eeac76fd6447de908f6b27002eace7
[ "Apache-2.0" ]
624
2018-07-17T12:01:23.000Z
2022-03-28T13:59:17.000Z
resources/scripts/scrape/yahoo.ads
marcostolosa/Amass
7a48ddae82eeac76fd6447de908f6b27002eace7
[ "Apache-2.0" ]
1,470
2018-07-17T06:01:21.000Z
2022-03-31T18:02:17.000Z
-- 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 url = require("url") name = "Yahoo" type = "scrape" function start() set_rate_limit(1) end function vertical(ctx, domain) for i=1,201,10 do local ok = scrape(ctx, {['url']=build_url(domain, i)}) if not ok then break end end end function build_url(domain, pagenum) local query = "site:" .. domain .. " -domain:www." .. domain local params = { p=query, b=pagenum, pz="10", bct="0", xargs="0", } return "https://search.yahoo.com/search?" .. url.build_query_string(params) end
21.852941
97
0.602961
0b86a53fb8b30ddc1b7a86f61feb717fa11fdaf6
4,207
ads
Ada
tools/scitools/conf/understand/ada/ada12/s-imgbiu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada12/s-imgbiu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/s-imgbiu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . I M G _ B I U -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009 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. -- -- -- -- -- -- -- -- -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Contains the routine for computing the image in based format of signed and -- unsigned integers whose size <= Integer'Size for use by Text_IO.Integer_IO -- and Text_IO.Modular_IO. with System.Unsigned_Types; package System.Img_BIU is pragma Pure; procedure Set_Image_Based_Integer (V : Integer; B : Natural; W : Integer; S : out String; P : in out Natural); -- Sets the signed image of V in based format, using base value B (2..16) -- starting at S (P + 1), updating P to point to the last character stored. -- The image includes a leading minus sign if necessary, but no leading -- spaces unless W is positive, in which case leading spaces are output if -- necessary to ensure that the output string is no less than W characters -- long. The caller promises that the buffer is large enough and no check -- is made for this. Constraint_Error will not necessarily be raised if -- this is violated, since it is perfectly valid to compile this unit with -- checks off. procedure Set_Image_Based_Unsigned (V : System.Unsigned_Types.Unsigned; B : Natural; W : Integer; S : out String; P : in out Natural); -- Sets the unsigned image of V in based format, using base value B (2..16) -- starting at S (P + 1), updating P to point to the last character stored. -- The image includes no leading spaces unless W is positive, in which case -- leading spaces are output if necessary to ensure that the output string -- is no less than W characters long. The caller promises that the buffer -- is large enough and no check is made for this. Constraint_Error will not -- necessarily be raised if this is violated, since it is perfectly valid -- to compile this unit with checks off). end System.Img_BIU;
57.630137
79
0.47112
0b011e1efa399c892014322536a6baafecfb5636
7,741
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-ngcoty.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-ngcoty.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-ngcoty.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . N U M E R I C S . G E N E R I C _ C O M P L E X _ T Y P E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ generic type Real is digits <>; package Ada.Numerics.Generic_Complex_Types is pragma Pure; type Complex is record Re, Im : Real'Base; end record; pragma Complex_Representation (Complex); type Imaginary is private; pragma Preelaborable_Initialization (Imaginary); i : constant Imaginary; j : constant Imaginary; function Re (X : Complex) return Real'Base; function Im (X : Complex) return Real'Base; function Im (X : Imaginary) return Real'Base; procedure Set_Re (X : in out Complex; Re : Real'Base); procedure Set_Im (X : in out Complex; Im : Real'Base); procedure Set_Im (X : out Imaginary; Im : Real'Base); function Compose_From_Cartesian (Re, Im : Real'Base) return Complex; function Compose_From_Cartesian (Re : Real'Base) return Complex; function Compose_From_Cartesian (Im : Imaginary) return Complex; function Modulus (X : Complex) return Real'Base; function "abs" (Right : Complex) return Real'Base renames Modulus; function Argument (X : Complex) return Real'Base; function Argument (X : Complex; Cycle : Real'Base) return Real'Base; function Compose_From_Polar ( Modulus, Argument : Real'Base) return Complex; function Compose_From_Polar ( Modulus, Argument, Cycle : Real'Base) return Complex; function "+" (Right : Complex) return Complex; function "-" (Right : Complex) return Complex; function Conjugate (X : Complex) return Complex; function "+" (Left, Right : Complex) return Complex; function "-" (Left, Right : Complex) return Complex; function "*" (Left, Right : Complex) return Complex; function "/" (Left, Right : Complex) return Complex; function "**" (Left : Complex; Right : Integer) return Complex; function "+" (Right : Imaginary) return Imaginary; function "-" (Right : Imaginary) return Imaginary; function Conjugate (X : Imaginary) return Imaginary renames "-"; function "abs" (Right : Imaginary) return Real'Base; function "+" (Left, Right : Imaginary) return Imaginary; function "-" (Left, Right : Imaginary) return Imaginary; function "*" (Left, Right : Imaginary) return Real'Base; function "/" (Left, Right : Imaginary) return Real'Base; function "**" (Left : Imaginary; Right : Integer) return Complex; function "<" (Left, Right : Imaginary) return Boolean; function "<=" (Left, Right : Imaginary) return Boolean; function ">" (Left, Right : Imaginary) return Boolean; function ">=" (Left, Right : Imaginary) return Boolean; function "+" (Left : Complex; Right : Real'Base) return Complex; function "+" (Left : Real'Base; Right : Complex) return Complex; function "-" (Left : Complex; Right : Real'Base) return Complex; function "-" (Left : Real'Base; Right : Complex) return Complex; function "*" (Left : Complex; Right : Real'Base) return Complex; function "*" (Left : Real'Base; Right : Complex) return Complex; function "/" (Left : Complex; Right : Real'Base) return Complex; function "/" (Left : Real'Base; Right : Complex) return Complex; function "+" (Left : Complex; Right : Imaginary) return Complex; function "+" (Left : Imaginary; Right : Complex) return Complex; function "-" (Left : Complex; Right : Imaginary) return Complex; function "-" (Left : Imaginary; Right : Complex) return Complex; function "*" (Left : Complex; Right : Imaginary) return Complex; function "*" (Left : Imaginary; Right : Complex) return Complex; function "/" (Left : Complex; Right : Imaginary) return Complex; function "/" (Left : Imaginary; Right : Complex) return Complex; function "+" (Left : Imaginary; Right : Real'Base) return Complex; function "+" (Left : Real'Base; Right : Imaginary) return Complex; function "-" (Left : Imaginary; Right : Real'Base) return Complex; function "-" (Left : Real'Base; Right : Imaginary) return Complex; function "*" (Left : Imaginary; Right : Real'Base) return Imaginary; function "*" (Left : Real'Base; Right : Imaginary) return Imaginary; function "/" (Left : Imaginary; Right : Real'Base) return Imaginary; function "/" (Left : Real'Base; Right : Imaginary) return Imaginary; private type Imaginary is new Real'Base; i : constant Imaginary := 1.0; j : constant Imaginary := 1.0; pragma Inline ("+"); pragma Inline ("-"); pragma Inline ("*"); pragma Inline ("<"); pragma Inline ("<="); pragma Inline (">"); pragma Inline (">="); pragma Inline ("abs"); pragma Inline (Compose_From_Cartesian); pragma Inline (Conjugate); pragma Inline (Im); pragma Inline (Re); pragma Inline (Set_Im); pragma Inline (Set_Re); end Ada.Numerics.Generic_Complex_Types;
48.993671
78
0.549412
fb30ffa5a25c6e07190df5da9f5f6acb53167062
907,472
ads
Ada
src/GUI/generated/down_200x100.ads
Fabien-Chouteau/coffee-clock
6b8b8dd8741887c522fcf6f1ce5f1a5b73921b27
[ "MIT" ]
7
2017-05-17T13:51:47.000Z
2021-11-11T19:17:50.000Z
src/GUI/generated/down_200x100.ads
Fabien-Chouteau/coffee-clock
6b8b8dd8741887c522fcf6f1ce5f1a5b73921b27
[ "MIT" ]
null
null
null
src/GUI/generated/down_200x100.ads
Fabien-Chouteau/coffee-clock
6b8b8dd8741887c522fcf6f1ce5f1a5b73921b27
[ "MIT" ]
null
null
null
-- This file was generated by bmp2ada with Giza.Image; with Giza.Image.DMA2D; use Giza.Image.DMA2D; package down_200x100 is pragma Style_Checks (Off); Data : aliased constant RGB888_Data_T := ( 1 => (R => 0, G => 0, B => 0), 2 => (R => 0, G => 0, B => 0), 3 => (R => 0, G => 0, B => 0), 4 => (R => 0, G => 0, B => 0), 5 => (R => 0, G => 0, B => 0), 6 => (R => 0, G => 0, B => 0), 7 => (R => 0, G => 0, B => 0), 8 => (R => 0, G => 0, B => 0), 9 => (R => 0, G => 0, B => 0), 10 => (R => 0, G => 0, B => 0), 11 => (R => 0, G => 0, B => 0), 12 => (R => 0, G => 0, B => 0), 13 => (R => 0, G => 0, B => 0), 14 => (R => 0, G => 0, B => 0), 15 => (R => 0, G => 0, B => 0), 16 => (R => 0, G => 0, B => 0), 17 => (R => 0, G => 0, B => 0), 18 => (R => 0, G => 0, B => 0), 19 => (R => 0, G => 0, B => 0), 20 => (R => 0, G => 0, B => 0), 21 => (R => 0, G => 0, B => 0), 22 => (R => 0, G => 0, B => 0), 23 => (R => 0, G => 0, B => 0), 24 => (R => 0, G => 0, B => 0), 25 => (R => 0, G => 0, B => 0), 26 => (R => 0, G => 0, B => 0), 27 => (R => 0, G => 0, B => 0), 28 => (R => 0, G => 0, B => 0), 29 => (R => 0, G => 0, B => 0), 30 => (R => 0, G => 0, B => 0), 31 => (R => 0, G => 0, B => 0), 32 => (R => 0, G => 0, B => 0), 33 => (R => 0, G => 0, B => 0), 34 => (R => 0, G => 0, B => 0), 35 => (R => 0, G => 0, B => 0), 36 => (R => 0, G => 0, B => 0), 37 => (R => 0, G => 0, B => 0), 38 => (R => 0, G => 0, B => 0), 39 => (R => 0, G => 0, B => 0), 40 => (R => 0, G => 0, B => 0), 41 => (R => 0, G => 0, B => 0), 42 => (R => 0, G => 0, B => 0), 43 => (R => 0, G => 0, B => 0), 44 => (R => 0, G => 0, B => 0), 45 => (R => 0, G => 0, B => 0), 46 => (R => 0, G => 0, B => 0), 47 => (R => 0, G => 0, B => 0), 48 => (R => 0, G => 0, B => 0), 49 => (R => 0, G => 0, B => 0), 50 => (R => 0, G => 0, B => 0), 51 => (R => 0, G => 0, B => 0), 52 => (R => 0, G => 0, B => 0), 53 => (R => 0, G => 0, B => 0), 54 => (R => 0, G => 0, B => 0), 55 => (R => 0, G => 0, B => 0), 56 => (R => 0, G => 0, B => 0), 57 => (R => 0, G => 0, B => 0), 58 => (R => 0, G => 0, B => 0), 59 => (R => 0, G => 0, B => 0), 60 => (R => 0, G => 0, B => 0), 61 => (R => 0, G => 0, B => 0), 62 => (R => 0, G => 0, B => 0), 63 => (R => 0, G => 0, B => 0), 64 => (R => 0, G => 0, B => 0), 65 => (R => 0, G => 0, B => 0), 66 => (R => 0, G => 0, B => 0), 67 => (R => 0, G => 0, B => 0), 68 => (R => 0, G => 0, B => 0), 69 => (R => 0, G => 0, B => 0), 70 => (R => 0, G => 0, B => 0), 71 => (R => 0, G => 0, B => 0), 72 => (R => 0, G => 0, B => 0), 73 => (R => 0, G => 0, B => 0), 74 => (R => 0, G => 0, B => 0), 75 => (R => 0, G => 0, B => 0), 76 => (R => 0, G => 0, B => 0), 77 => (R => 0, G => 0, B => 0), 78 => (R => 0, G => 0, B => 0), 79 => (R => 0, G => 0, B => 0), 80 => (R => 0, G => 0, B => 0), 81 => (R => 0, G => 0, B => 0), 82 => (R => 0, G => 0, B => 0), 83 => (R => 0, G => 0, B => 0), 84 => (R => 0, G => 0, B => 0), 85 => (R => 0, G => 0, B => 0), 86 => (R => 0, G => 0, B => 0), 87 => (R => 0, G => 0, B => 0), 88 => (R => 0, G => 0, B => 0), 89 => (R => 0, G => 0, B => 0), 90 => (R => 0, G => 0, B => 0), 91 => (R => 0, G => 0, B => 0), 92 => (R => 0, G => 0, B => 0), 93 => (R => 0, G => 0, B => 0), 94 => (R => 0, G => 0, B => 0), 95 => (R => 0, G => 0, B => 0), 96 => (R => 0, G => 0, B => 0), 97 => (R => 0, G => 0, B => 0), 98 => (R => 0, G => 0, B => 0), 99 => (R => 0, G => 0, B => 0), 100 => (R => 0, G => 0, B => 0), 101 => (R => 0, G => 0, B => 0), 102 => (R => 0, G => 0, B => 0), 103 => (R => 0, G => 0, B => 0), 104 => (R => 0, G => 0, B => 0), 105 => (R => 0, G => 0, B => 0), 106 => (R => 0, G => 0, B => 0), 107 => (R => 0, G => 0, B => 0), 108 => (R => 0, G => 0, B => 0), 109 => (R => 0, G => 0, B => 0), 110 => (R => 0, G => 0, B => 0), 111 => (R => 0, G => 0, B => 0), 112 => (R => 0, G => 0, B => 0), 113 => (R => 0, G => 0, B => 0), 114 => (R => 0, G => 0, B => 0), 115 => (R => 0, G => 0, B => 0), 116 => (R => 0, G => 0, B => 0), 117 => (R => 0, G => 0, B => 0), 118 => (R => 0, G => 0, B => 0), 119 => (R => 0, G => 0, B => 0), 120 => (R => 0, G => 0, B => 0), 121 => (R => 0, G => 0, B => 0), 122 => (R => 0, G => 0, B => 0), 123 => (R => 0, G => 0, B => 0), 124 => (R => 0, G => 0, B => 0), 125 => (R => 0, G => 0, B => 0), 126 => (R => 0, G => 0, B => 0), 127 => (R => 0, G => 0, B => 0), 128 => (R => 0, G => 0, B => 0), 129 => (R => 0, G => 0, B => 0), 130 => (R => 0, G => 0, B => 0), 131 => (R => 0, G => 0, B => 0), 132 => (R => 0, G => 0, B => 0), 133 => (R => 0, G => 0, B => 0), 134 => (R => 0, G => 0, B => 0), 135 => (R => 0, G => 0, B => 0), 136 => (R => 0, G => 0, B => 0), 137 => (R => 0, G => 0, B => 0), 138 => (R => 0, G => 0, B => 0), 139 => (R => 0, G => 0, B => 0), 140 => (R => 0, G => 0, B => 0), 141 => (R => 0, G => 0, B => 0), 142 => (R => 0, G => 0, B => 0), 143 => (R => 0, G => 0, B => 0), 144 => (R => 0, G => 0, B => 0), 145 => (R => 0, G => 0, B => 0), 146 => (R => 0, G => 0, B => 0), 147 => (R => 0, G => 0, B => 0), 148 => (R => 0, G => 0, B => 0), 149 => (R => 0, G => 0, B => 0), 150 => (R => 0, G => 0, B => 0), 151 => (R => 0, G => 0, B => 0), 152 => (R => 0, G => 0, B => 0), 153 => (R => 0, G => 0, B => 0), 154 => (R => 0, G => 0, B => 0), 155 => (R => 0, G => 0, B => 0), 156 => (R => 0, G => 0, B => 0), 157 => (R => 0, G => 0, B => 0), 158 => (R => 0, G => 0, B => 0), 159 => (R => 0, G => 0, B => 0), 160 => (R => 0, G => 0, B => 0), 161 => (R => 0, G => 0, B => 0), 162 => (R => 0, G => 0, B => 0), 163 => (R => 0, G => 0, B => 0), 164 => (R => 0, G => 0, B => 0), 165 => (R => 0, G => 0, B => 0), 166 => (R => 0, G => 0, B => 0), 167 => (R => 0, G => 0, B => 0), 168 => (R => 0, G => 0, B => 0), 169 => (R => 0, G => 0, B => 0), 170 => (R => 0, G => 0, B => 0), 171 => (R => 0, G => 0, B => 0), 172 => (R => 0, G => 0, B => 0), 173 => (R => 0, G => 0, B => 0), 174 => (R => 0, G => 0, B => 0), 175 => (R => 0, G => 0, B => 0), 176 => (R => 0, G => 0, B => 0), 177 => (R => 0, G => 0, B => 0), 178 => (R => 0, G => 0, B => 0), 179 => (R => 0, G => 0, B => 0), 180 => (R => 0, G => 0, B => 0), 181 => (R => 0, G => 0, B => 0), 182 => (R => 0, G => 0, B => 0), 183 => (R => 0, G => 0, B => 0), 184 => (R => 0, G => 0, B => 0), 185 => (R => 0, G => 0, B => 0), 186 => (R => 0, G => 0, B => 0), 187 => (R => 0, G => 0, B => 0), 188 => (R => 0, G => 0, B => 0), 189 => (R => 0, G => 0, B => 0), 190 => (R => 0, G => 0, B => 0), 191 => (R => 0, G => 0, B => 0), 192 => (R => 0, G => 0, B => 0), 193 => (R => 0, G => 0, B => 0), 194 => (R => 0, G => 0, B => 0), 195 => (R => 0, G => 0, B => 0), 196 => (R => 0, G => 0, B => 0), 197 => (R => 0, G => 0, B => 0), 198 => (R => 0, G => 0, B => 0), 199 => (R => 0, G => 0, B => 0), 200 => (R => 0, G => 0, B => 0), 201 => (R => 0, G => 0, B => 0), 202 => (R => 0, G => 0, B => 0), 203 => (R => 0, G => 0, B => 0), 204 => (R => 0, G => 0, B => 0), 205 => (R => 0, G => 0, B => 0), 206 => (R => 0, G => 0, B => 0), 207 => (R => 0, G => 0, B => 0), 208 => (R => 0, G => 0, B => 0), 209 => (R => 0, G => 0, B => 0), 210 => (R => 0, G => 0, B => 0), 211 => (R => 0, G => 0, B => 0), 212 => (R => 0, G => 0, B => 0), 213 => (R => 0, G => 0, B => 0), 214 => (R => 0, G => 0, B => 0), 215 => (R => 0, G => 0, B => 0), 216 => (R => 0, G => 0, B => 0), 217 => (R => 0, G => 0, B => 0), 218 => (R => 0, G => 0, B => 0), 219 => (R => 0, G => 0, B => 0), 220 => (R => 0, G => 0, B => 0), 221 => (R => 0, G => 0, B => 0), 222 => (R => 0, G => 0, B => 0), 223 => (R => 0, G => 0, B => 0), 224 => (R => 0, G => 0, B => 0), 225 => (R => 0, G => 0, B => 0), 226 => (R => 0, G => 0, B => 0), 227 => (R => 0, G => 0, B => 0), 228 => (R => 0, G => 0, B => 0), 229 => (R => 0, G => 0, B => 0), 230 => (R => 0, G => 0, B => 0), 231 => (R => 0, G => 0, B => 0), 232 => (R => 0, G => 0, B => 0), 233 => (R => 0, G => 0, B => 0), 234 => (R => 0, G => 0, B => 0), 235 => (R => 0, G => 0, B => 0), 236 => (R => 0, G => 0, B => 0), 237 => (R => 0, G => 0, B => 0), 238 => (R => 0, G => 0, B => 0), 239 => (R => 0, G => 0, B => 0), 240 => (R => 0, G => 0, B => 0), 241 => (R => 0, G => 0, B => 0), 242 => (R => 0, G => 0, B => 0), 243 => (R => 0, G => 0, B => 0), 244 => (R => 0, G => 0, B => 0), 245 => (R => 0, G => 0, B => 0), 246 => (R => 0, G => 0, B => 0), 247 => (R => 0, G => 0, B => 0), 248 => (R => 0, G => 0, B => 0), 249 => (R => 0, G => 0, B => 0), 250 => (R => 0, G => 0, B => 0), 251 => (R => 0, G => 0, B => 0), 252 => (R => 0, G => 0, B => 0), 253 => (R => 0, G => 0, B => 0), 254 => (R => 0, G => 0, B => 0), 255 => (R => 0, G => 0, B => 0), 256 => (R => 0, G => 0, B => 0), 257 => (R => 0, G => 0, B => 0), 258 => (R => 0, G => 0, B => 0), 259 => (R => 0, G => 0, B => 0), 260 => (R => 0, G => 0, B => 0), 261 => (R => 0, G => 0, B => 0), 262 => (R => 0, G => 0, B => 0), 263 => (R => 0, G => 0, B => 0), 264 => (R => 0, G => 0, B => 0), 265 => (R => 0, G => 0, B => 0), 266 => (R => 0, G => 0, B => 0), 267 => (R => 0, G => 0, B => 0), 268 => (R => 0, G => 0, B => 0), 269 => (R => 0, G => 0, B => 0), 270 => (R => 0, G => 0, B => 0), 271 => (R => 0, G => 0, B => 0), 272 => (R => 0, G => 0, B => 0), 273 => (R => 0, G => 0, B => 0), 274 => (R => 0, G => 0, B => 0), 275 => (R => 0, G => 0, B => 0), 276 => (R => 0, G => 0, B => 0), 277 => (R => 0, G => 0, B => 0), 278 => (R => 0, G => 0, B => 0), 279 => (R => 0, G => 0, B => 0), 280 => (R => 0, G => 0, B => 0), 281 => (R => 0, G => 0, B => 0), 282 => (R => 0, G => 0, B => 0), 283 => (R => 0, G => 0, B => 0), 284 => (R => 0, G => 0, B => 0), 285 => (R => 0, G => 0, B => 0), 286 => (R => 0, G => 0, B => 0), 287 => (R => 0, G => 0, B => 0), 288 => (R => 0, G => 0, B => 0), 289 => (R => 0, G => 0, B => 0), 290 => (R => 0, G => 0, B => 0), 291 => (R => 0, G => 0, B => 0), 292 => (R => 0, G => 0, B => 0), 293 => (R => 0, G => 0, B => 0), 294 => (R => 0, G => 0, B => 0), 295 => (R => 0, G => 0, B => 0), 296 => (R => 0, G => 0, B => 0), 297 => (R => 0, G => 0, B => 0), 298 => (R => 0, G => 0, B => 0), 299 => (R => 0, G => 0, B => 0), 300 => (R => 0, G => 0, B => 0), 301 => (R => 0, G => 0, B => 0), 302 => (R => 0, G => 0, B => 0), 303 => (R => 0, G => 0, B => 0), 304 => (R => 0, G => 0, B => 0), 305 => (R => 0, G => 0, B => 0), 306 => (R => 0, G => 0, B => 0), 307 => (R => 0, G => 0, B => 0), 308 => (R => 0, G => 0, B => 0), 309 => (R => 0, G => 0, B => 0), 310 => (R => 0, G => 0, B => 0), 311 => (R => 0, G => 0, B => 0), 312 => (R => 0, G => 0, B => 0), 313 => (R => 0, G => 0, B => 0), 314 => (R => 0, G => 0, B => 0), 315 => (R => 0, G => 0, B => 0), 316 => (R => 0, G => 0, B => 0), 317 => (R => 0, G => 0, B => 0), 318 => (R => 0, G => 0, B => 0), 319 => (R => 0, G => 0, B => 0), 320 => (R => 0, G => 0, B => 0), 321 => (R => 0, G => 0, B => 0), 322 => (R => 0, G => 0, B => 0), 323 => (R => 0, G => 0, B => 0), 324 => (R => 0, G => 0, B => 0), 325 => (R => 0, G => 0, B => 0), 326 => (R => 0, G => 0, B => 0), 327 => (R => 0, G => 0, B => 0), 328 => (R => 0, G => 0, B => 0), 329 => (R => 0, G => 0, B => 0), 330 => (R => 0, G => 0, B => 0), 331 => (R => 0, G => 0, B => 0), 332 => (R => 0, G => 0, B => 0), 333 => (R => 0, G => 0, B => 0), 334 => (R => 0, G => 0, B => 0), 335 => (R => 0, G => 0, B => 0), 336 => (R => 0, G => 0, B => 0), 337 => (R => 0, G => 0, B => 0), 338 => (R => 0, G => 0, B => 0), 339 => (R => 0, G => 0, B => 0), 340 => (R => 0, G => 0, B => 0), 341 => (R => 0, G => 0, B => 0), 342 => (R => 0, G => 0, B => 0), 343 => (R => 0, G => 0, B => 0), 344 => (R => 0, G => 0, B => 0), 345 => (R => 0, G => 0, B => 0), 346 => (R => 0, G => 0, B => 0), 347 => (R => 0, G => 0, B => 0), 348 => (R => 0, G => 0, B => 0), 349 => (R => 0, G => 0, B => 0), 350 => (R => 0, G => 0, B => 0), 351 => (R => 0, G => 0, B => 0), 352 => (R => 0, G => 0, B => 0), 353 => (R => 0, G => 0, B => 0), 354 => (R => 0, G => 0, B => 0), 355 => (R => 0, G => 0, B => 0), 356 => (R => 0, G => 0, B => 0), 357 => (R => 0, G => 0, B => 0), 358 => (R => 0, G => 0, B => 0), 359 => (R => 0, G => 0, B => 0), 360 => (R => 0, G => 0, B => 0), 361 => (R => 0, G => 0, B => 0), 362 => (R => 0, G => 0, B => 0), 363 => (R => 0, G => 0, B => 0), 364 => (R => 0, G => 0, B => 0), 365 => (R => 0, G => 0, B => 0), 366 => (R => 0, G => 0, B => 0), 367 => (R => 0, G => 0, B => 0), 368 => (R => 0, G => 0, B => 0), 369 => (R => 0, G => 0, B => 0), 370 => (R => 0, G => 0, B => 0), 371 => (R => 0, G => 0, B => 0), 372 => (R => 0, G => 0, B => 0), 373 => (R => 0, G => 0, B => 0), 374 => (R => 0, G => 0, B => 0), 375 => (R => 0, G => 0, B => 0), 376 => (R => 0, G => 0, B => 0), 377 => (R => 0, G => 0, B => 0), 378 => (R => 0, G => 0, B => 0), 379 => (R => 0, G => 0, B => 0), 380 => (R => 0, G => 0, B => 0), 381 => (R => 0, G => 0, B => 0), 382 => (R => 0, G => 0, B => 0), 383 => (R => 0, G => 0, B => 0), 384 => (R => 0, G => 0, B => 0), 385 => (R => 0, G => 0, B => 0), 386 => (R => 0, G => 0, B => 0), 387 => (R => 0, G => 0, B => 0), 388 => (R => 0, G => 0, B => 0), 389 => (R => 0, G => 0, B => 0), 390 => (R => 0, G => 0, B => 0), 391 => (R => 0, G => 0, B => 0), 392 => (R => 0, G => 0, B => 0), 393 => (R => 0, G => 0, B => 0), 394 => (R => 0, G => 0, B => 0), 395 => (R => 0, G => 0, B => 0), 396 => (R => 0, G => 0, B => 0), 397 => (R => 0, G => 0, B => 0), 398 => (R => 0, G => 0, B => 0), 399 => (R => 0, G => 0, B => 0), 400 => (R => 0, G => 0, B => 0), 401 => (R => 0, G => 0, B => 0), 402 => (R => 0, G => 0, B => 0), 403 => (R => 0, G => 0, B => 0), 404 => (R => 0, G => 0, B => 0), 405 => (R => 0, G => 0, B => 0), 406 => (R => 0, G => 0, B => 0), 407 => (R => 0, G => 0, B => 0), 408 => (R => 0, G => 0, B => 0), 409 => (R => 0, G => 0, B => 0), 410 => (R => 0, G => 0, B => 0), 411 => (R => 0, G => 0, B => 0), 412 => (R => 0, G => 0, B => 0), 413 => (R => 0, G => 0, B => 0), 414 => (R => 0, G => 0, B => 0), 415 => (R => 0, G => 0, B => 0), 416 => (R => 0, G => 0, B => 0), 417 => (R => 0, G => 0, B => 0), 418 => (R => 0, G => 0, B => 0), 419 => (R => 0, G => 0, B => 0), 420 => (R => 0, G => 0, B => 0), 421 => (R => 0, G => 0, B => 0), 422 => (R => 0, G => 0, B => 0), 423 => (R => 0, G => 0, B => 0), 424 => (R => 0, G => 0, B => 0), 425 => (R => 0, G => 0, B => 0), 426 => (R => 0, G => 0, B => 0), 427 => (R => 0, G => 0, B => 0), 428 => (R => 0, G => 0, B => 0), 429 => (R => 0, G => 0, B => 0), 430 => (R => 0, G => 0, B => 0), 431 => (R => 0, G => 0, B => 0), 432 => (R => 0, G => 0, B => 0), 433 => (R => 0, G => 0, B => 0), 434 => (R => 0, G => 0, B => 0), 435 => (R => 0, G => 0, B => 0), 436 => (R => 0, G => 0, B => 0), 437 => (R => 0, G => 0, B => 0), 438 => (R => 0, G => 0, B => 0), 439 => (R => 0, G => 0, B => 0), 440 => (R => 0, G => 0, B => 0), 441 => (R => 0, G => 0, B => 0), 442 => (R => 0, G => 0, B => 0), 443 => (R => 0, G => 0, B => 0), 444 => (R => 0, G => 0, B => 0), 445 => (R => 0, G => 0, B => 0), 446 => (R => 0, G => 0, B => 0), 447 => (R => 0, G => 0, B => 0), 448 => (R => 0, G => 0, B => 0), 449 => (R => 0, G => 0, B => 0), 450 => (R => 0, G => 0, B => 0), 451 => (R => 0, G => 0, B => 0), 452 => (R => 0, G => 0, B => 0), 453 => (R => 0, G => 0, B => 0), 454 => (R => 0, G => 0, B => 0), 455 => (R => 0, G => 0, B => 0), 456 => (R => 0, G => 0, B => 0), 457 => (R => 0, G => 0, B => 0), 458 => (R => 0, G => 0, B => 0), 459 => (R => 0, G => 0, B => 0), 460 => (R => 0, G => 0, B => 0), 461 => (R => 0, G => 0, B => 0), 462 => (R => 0, G => 0, B => 0), 463 => (R => 0, G => 0, B => 0), 464 => (R => 0, G => 0, B => 0), 465 => (R => 0, G => 0, B => 0), 466 => (R => 0, G => 0, B => 0), 467 => (R => 0, G => 0, B => 0), 468 => (R => 0, G => 0, B => 0), 469 => (R => 0, G => 0, B => 0), 470 => (R => 0, G => 0, B => 0), 471 => (R => 0, G => 0, B => 0), 472 => (R => 0, G => 0, B => 0), 473 => (R => 0, G => 0, B => 0), 474 => (R => 0, G => 0, B => 0), 475 => (R => 0, G => 0, B => 0), 476 => (R => 0, G => 0, B => 0), 477 => (R => 0, G => 0, B => 0), 478 => (R => 0, G => 0, B => 0), 479 => (R => 0, G => 0, B => 0), 480 => (R => 0, G => 0, B => 0), 481 => (R => 0, G => 0, B => 0), 482 => (R => 0, G => 0, B => 0), 483 => (R => 0, G => 0, B => 0), 484 => (R => 0, G => 0, B => 0), 485 => (R => 0, G => 0, B => 0), 486 => (R => 0, G => 0, B => 0), 487 => (R => 0, G => 0, B => 0), 488 => (R => 0, G => 0, B => 0), 489 => (R => 0, G => 0, B => 0), 490 => (R => 0, G => 0, B => 0), 491 => (R => 0, G => 0, B => 0), 492 => (R => 0, G => 0, B => 0), 493 => (R => 0, G => 0, B => 0), 494 => (R => 0, G => 0, B => 0), 495 => (R => 0, G => 0, B => 0), 496 => (R => 0, G => 0, B => 0), 497 => (R => 0, G => 0, B => 0), 498 => (R => 0, G => 0, B => 0), 499 => (R => 0, G => 0, B => 0), 500 => (R => 0, G => 0, B => 0), 501 => (R => 0, G => 0, B => 0), 502 => (R => 0, G => 0, B => 0), 503 => (R => 0, G => 0, B => 0), 504 => (R => 0, G => 0, B => 0), 505 => (R => 0, G => 0, B => 0), 506 => (R => 0, G => 0, B => 0), 507 => (R => 0, G => 0, B => 0), 508 => (R => 0, G => 0, B => 0), 509 => (R => 0, G => 0, B => 0), 510 => (R => 0, G => 0, B => 0), 511 => (R => 0, G => 0, B => 0), 512 => (R => 0, G => 0, B => 0), 513 => (R => 0, G => 0, B => 0), 514 => (R => 0, G => 0, B => 0), 515 => (R => 0, G => 0, B => 0), 516 => (R => 0, G => 0, B => 0), 517 => (R => 0, G => 0, B => 0), 518 => (R => 0, G => 0, B => 0), 519 => (R => 0, G => 0, B => 0), 520 => (R => 0, G => 0, B => 0), 521 => (R => 0, G => 0, B => 0), 522 => (R => 0, G => 0, B => 0), 523 => (R => 0, G => 0, B => 0), 524 => (R => 0, G => 0, B => 0), 525 => (R => 0, G => 0, B => 0), 526 => (R => 0, G => 0, B => 0), 527 => (R => 0, G => 0, B => 0), 528 => (R => 0, G => 0, B => 0), 529 => (R => 0, G => 0, B => 0), 530 => (R => 0, G => 0, B => 0), 531 => (R => 0, G => 0, B => 0), 532 => (R => 0, G => 0, B => 0), 533 => (R => 0, G => 0, B => 0), 534 => (R => 0, G => 0, B => 0), 535 => (R => 0, G => 0, B => 0), 536 => (R => 0, G => 0, B => 0), 537 => (R => 0, G => 0, B => 0), 538 => (R => 0, G => 0, B => 0), 539 => (R => 0, G => 0, B => 0), 540 => (R => 0, G => 0, B => 0), 541 => (R => 0, G => 0, B => 0), 542 => (R => 0, G => 0, B => 0), 543 => (R => 0, G => 0, B => 0), 544 => (R => 0, G => 0, B => 0), 545 => (R => 0, G => 0, B => 0), 546 => (R => 0, G => 0, B => 0), 547 => (R => 0, G => 0, B => 0), 548 => (R => 0, G => 0, B => 0), 549 => (R => 0, G => 0, B => 0), 550 => (R => 0, G => 0, B => 0), 551 => (R => 0, G => 0, B => 0), 552 => (R => 0, G => 0, B => 0), 553 => (R => 0, G => 0, B => 0), 554 => (R => 0, G => 0, B => 0), 555 => (R => 0, G => 0, B => 0), 556 => (R => 0, G => 0, B => 0), 557 => (R => 0, G => 0, B => 0), 558 => (R => 0, G => 0, B => 0), 559 => (R => 0, G => 0, B => 0), 560 => (R => 0, G => 0, B => 0), 561 => (R => 0, G => 0, B => 0), 562 => (R => 0, G => 0, B => 0), 563 => (R => 0, G => 0, B => 0), 564 => (R => 0, G => 0, B => 0), 565 => (R => 0, G => 0, B => 0), 566 => (R => 0, G => 0, B => 0), 567 => (R => 0, G => 0, B => 0), 568 => (R => 0, G => 0, B => 0), 569 => (R => 0, G => 0, B => 0), 570 => (R => 0, G => 0, B => 0), 571 => (R => 0, G => 0, B => 0), 572 => (R => 0, G => 0, B => 0), 573 => (R => 0, G => 0, B => 0), 574 => (R => 0, G => 0, B => 0), 575 => (R => 0, G => 0, B => 0), 576 => (R => 0, G => 0, B => 0), 577 => (R => 0, G => 0, B => 0), 578 => (R => 0, G => 0, B => 0), 579 => (R => 0, G => 0, B => 0), 580 => (R => 0, G => 0, B => 0), 581 => (R => 0, G => 0, B => 0), 582 => (R => 0, G => 0, B => 0), 583 => (R => 0, G => 0, B => 0), 584 => (R => 0, G => 0, B => 0), 585 => (R => 0, G => 0, B => 0), 586 => (R => 0, G => 0, B => 0), 587 => (R => 0, G => 0, B => 0), 588 => (R => 0, G => 0, B => 0), 589 => (R => 0, G => 0, B => 0), 590 => (R => 0, G => 0, B => 0), 591 => (R => 0, G => 0, B => 0), 592 => (R => 0, G => 0, B => 0), 593 => (R => 0, G => 0, B => 0), 594 => (R => 0, G => 0, B => 0), 595 => (R => 0, G => 0, B => 0), 596 => (R => 0, G => 0, B => 0), 597 => (R => 0, G => 0, B => 0), 598 => (R => 0, G => 0, B => 0), 599 => (R => 0, G => 0, B => 0), 600 => (R => 0, G => 0, B => 0), 601 => (R => 0, G => 0, B => 0), 602 => (R => 0, G => 0, B => 0), 603 => (R => 0, G => 0, B => 0), 604 => (R => 0, G => 0, B => 0), 605 => (R => 0, G => 0, B => 0), 606 => (R => 0, G => 0, B => 0), 607 => (R => 0, G => 0, B => 0), 608 => (R => 0, G => 0, B => 0), 609 => (R => 0, G => 0, B => 0), 610 => (R => 0, G => 0, B => 0), 611 => (R => 0, G => 0, B => 0), 612 => (R => 0, G => 0, B => 0), 613 => (R => 0, G => 0, B => 0), 614 => (R => 0, G => 0, B => 0), 615 => (R => 0, G => 0, B => 0), 616 => (R => 0, G => 0, B => 0), 617 => (R => 0, G => 0, B => 0), 618 => (R => 0, G => 0, B => 0), 619 => (R => 0, G => 0, B => 0), 620 => (R => 0, G => 0, B => 0), 621 => (R => 0, G => 0, B => 0), 622 => (R => 0, G => 0, B => 0), 623 => (R => 0, G => 0, B => 0), 624 => (R => 0, G => 0, B => 0), 625 => (R => 0, G => 0, B => 0), 626 => (R => 0, G => 0, B => 0), 627 => (R => 0, G => 0, B => 0), 628 => (R => 0, G => 0, B => 0), 629 => (R => 0, G => 0, B => 0), 630 => (R => 0, G => 0, B => 0), 631 => (R => 0, G => 0, B => 0), 632 => (R => 0, G => 0, B => 0), 633 => (R => 0, G => 0, B => 0), 634 => (R => 0, G => 0, B => 0), 635 => (R => 0, G => 0, B => 0), 636 => (R => 0, G => 0, B => 0), 637 => (R => 0, G => 0, B => 0), 638 => (R => 0, G => 0, B => 0), 639 => (R => 0, G => 0, B => 0), 640 => (R => 0, G => 0, B => 0), 641 => (R => 0, G => 0, B => 0), 642 => (R => 0, G => 0, B => 0), 643 => (R => 0, G => 0, B => 0), 644 => (R => 0, G => 0, B => 0), 645 => (R => 0, G => 0, B => 0), 646 => (R => 0, G => 0, B => 0), 647 => (R => 0, G => 0, B => 0), 648 => (R => 0, G => 0, B => 0), 649 => (R => 0, G => 0, B => 0), 650 => (R => 0, G => 0, B => 0), 651 => (R => 0, G => 0, B => 0), 652 => (R => 0, G => 0, B => 0), 653 => (R => 0, G => 0, B => 0), 654 => (R => 0, G => 0, B => 0), 655 => (R => 0, G => 0, B => 0), 656 => (R => 0, G => 0, B => 0), 657 => (R => 0, G => 0, B => 0), 658 => (R => 0, G => 0, B => 0), 659 => (R => 0, G => 0, B => 0), 660 => (R => 0, G => 0, B => 0), 661 => (R => 0, G => 0, B => 0), 662 => (R => 0, G => 0, B => 0), 663 => (R => 0, G => 0, B => 0), 664 => (R => 0, G => 0, B => 0), 665 => (R => 0, G => 0, B => 0), 666 => (R => 0, G => 0, B => 0), 667 => (R => 0, G => 0, B => 0), 668 => (R => 0, G => 0, B => 0), 669 => (R => 0, G => 0, B => 0), 670 => (R => 0, G => 0, B => 0), 671 => (R => 0, G => 0, B => 0), 672 => (R => 0, G => 0, B => 0), 673 => (R => 0, G => 0, B => 0), 674 => (R => 0, G => 0, B => 0), 675 => (R => 0, G => 0, B => 0), 676 => (R => 0, G => 0, B => 0), 677 => (R => 0, G => 0, B => 0), 678 => (R => 0, G => 0, B => 0), 679 => (R => 0, G => 0, B => 0), 680 => (R => 0, G => 0, B => 0), 681 => (R => 0, G => 0, B => 0), 682 => (R => 0, G => 0, B => 0), 683 => (R => 0, G => 0, B => 0), 684 => (R => 0, G => 0, B => 0), 685 => (R => 0, G => 0, B => 0), 686 => (R => 0, G => 0, B => 0), 687 => (R => 0, G => 0, B => 0), 688 => (R => 0, G => 0, B => 0), 689 => (R => 0, G => 0, B => 0), 690 => (R => 0, G => 0, B => 0), 691 => (R => 0, G => 0, B => 0), 692 => (R => 0, G => 0, B => 0), 693 => (R => 0, G => 0, B => 0), 694 => (R => 0, G => 0, B => 0), 695 => (R => 0, G => 0, B => 0), 696 => (R => 0, G => 0, B => 0), 697 => (R => 0, G => 0, B => 0), 698 => (R => 0, G => 0, B => 0), 699 => (R => 0, G => 0, B => 0), 700 => (R => 0, G => 0, B => 0), 701 => (R => 0, G => 0, B => 0), 702 => (R => 0, G => 0, B => 0), 703 => (R => 0, G => 0, B => 0), 704 => (R => 0, G => 0, B => 0), 705 => (R => 0, G => 0, B => 0), 706 => (R => 0, G => 0, B => 0), 707 => (R => 0, G => 0, B => 0), 708 => (R => 0, G => 0, B => 0), 709 => (R => 0, G => 0, B => 0), 710 => (R => 0, G => 0, B => 0), 711 => (R => 0, G => 0, B => 0), 712 => (R => 0, G => 0, B => 0), 713 => (R => 0, G => 0, B => 0), 714 => (R => 0, G => 0, B => 0), 715 => (R => 0, G => 0, B => 0), 716 => (R => 0, G => 0, B => 0), 717 => (R => 0, G => 0, B => 0), 718 => (R => 0, G => 0, B => 0), 719 => (R => 0, G => 0, B => 0), 720 => (R => 0, G => 0, B => 0), 721 => (R => 0, G => 0, B => 0), 722 => (R => 0, G => 0, B => 0), 723 => (R => 0, G => 0, B => 0), 724 => (R => 0, G => 0, B => 0), 725 => (R => 0, G => 0, B => 0), 726 => (R => 0, G => 0, B => 0), 727 => (R => 0, G => 0, B => 0), 728 => (R => 0, G => 0, B => 0), 729 => (R => 0, G => 0, B => 0), 730 => (R => 0, G => 0, B => 0), 731 => (R => 0, G => 0, B => 0), 732 => (R => 0, G => 0, B => 0), 733 => (R => 0, G => 0, B => 0), 734 => (R => 0, G => 0, B => 0), 735 => (R => 0, G => 0, B => 0), 736 => (R => 0, G => 0, B => 0), 737 => (R => 0, G => 0, B => 0), 738 => (R => 0, G => 0, B => 0), 739 => (R => 0, G => 0, B => 0), 740 => (R => 0, G => 0, B => 0), 741 => (R => 0, G => 0, B => 0), 742 => (R => 0, G => 0, B => 0), 743 => (R => 0, G => 0, B => 0), 744 => (R => 0, G => 0, B => 0), 745 => (R => 0, G => 0, B => 0), 746 => (R => 0, G => 0, B => 0), 747 => (R => 0, G => 0, B => 0), 748 => (R => 0, G => 0, B => 0), 749 => (R => 0, G => 0, B => 0), 750 => (R => 0, G => 0, B => 0), 751 => (R => 0, G => 0, B => 0), 752 => (R => 0, G => 0, B => 0), 753 => (R => 0, G => 0, B => 0), 754 => (R => 0, G => 0, B => 0), 755 => (R => 0, G => 0, B => 0), 756 => (R => 0, G => 0, B => 0), 757 => (R => 0, G => 0, B => 0), 758 => (R => 0, G => 0, B => 0), 759 => (R => 0, G => 0, B => 0), 760 => (R => 0, G => 0, B => 0), 761 => (R => 0, G => 0, B => 0), 762 => (R => 0, G => 0, B => 0), 763 => (R => 0, G => 0, B => 0), 764 => (R => 0, G => 0, B => 0), 765 => (R => 0, G => 0, B => 0), 766 => (R => 0, G => 0, B => 0), 767 => (R => 0, G => 0, B => 0), 768 => (R => 0, G => 0, B => 0), 769 => (R => 0, G => 0, B => 0), 770 => (R => 0, G => 0, B => 0), 771 => (R => 0, G => 0, B => 0), 772 => (R => 0, G => 0, B => 0), 773 => (R => 0, G => 0, B => 0), 774 => (R => 0, G => 0, B => 0), 775 => (R => 0, G => 0, B => 0), 776 => (R => 0, G => 0, B => 0), 777 => (R => 0, G => 0, B => 0), 778 => (R => 0, G => 0, B => 0), 779 => (R => 0, G => 0, B => 0), 780 => (R => 0, G => 0, B => 0), 781 => (R => 0, G => 0, B => 0), 782 => (R => 0, G => 0, B => 0), 783 => (R => 0, G => 0, B => 0), 784 => (R => 0, G => 0, B => 0), 785 => (R => 0, G => 0, B => 0), 786 => (R => 0, G => 0, B => 0), 787 => (R => 0, G => 0, B => 0), 788 => (R => 0, G => 0, B => 0), 789 => (R => 0, G => 0, B => 0), 790 => (R => 0, G => 0, B => 0), 791 => (R => 0, G => 0, B => 0), 792 => (R => 0, G => 0, B => 0), 793 => (R => 0, G => 0, B => 0), 794 => (R => 0, G => 0, B => 0), 795 => (R => 0, G => 0, B => 0), 796 => (R => 0, G => 0, B => 0), 797 => (R => 0, G => 0, B => 0), 798 => (R => 0, G => 0, B => 0), 799 => (R => 0, G => 0, B => 0), 800 => (R => 0, G => 0, B => 0), 801 => (R => 0, G => 0, B => 0), 802 => (R => 0, G => 0, B => 0), 803 => (R => 0, G => 0, B => 0), 804 => (R => 0, G => 0, B => 0), 805 => (R => 0, G => 0, B => 0), 806 => (R => 0, G => 0, B => 0), 807 => (R => 0, G => 0, B => 0), 808 => (R => 0, G => 0, B => 0), 809 => (R => 0, G => 0, B => 0), 810 => (R => 0, G => 0, B => 0), 811 => (R => 0, G => 0, B => 0), 812 => (R => 0, G => 0, B => 0), 813 => (R => 0, G => 0, B => 0), 814 => (R => 0, G => 0, B => 0), 815 => (R => 0, G => 0, B => 0), 816 => (R => 0, G => 0, B => 0), 817 => (R => 0, G => 0, B => 0), 818 => (R => 0, G => 0, B => 0), 819 => (R => 0, G => 0, B => 0), 820 => (R => 0, G => 0, B => 0), 821 => (R => 0, G => 0, B => 0), 822 => (R => 0, G => 0, B => 0), 823 => (R => 0, G => 0, B => 0), 824 => (R => 0, G => 0, B => 0), 825 => (R => 0, G => 0, B => 0), 826 => (R => 0, G => 0, B => 0), 827 => (R => 0, G => 0, B => 0), 828 => (R => 0, G => 0, B => 0), 829 => (R => 0, G => 0, B => 0), 830 => (R => 0, G => 0, B => 0), 831 => (R => 0, G => 0, B => 0), 832 => (R => 0, G => 0, B => 0), 833 => (R => 0, G => 0, B => 0), 834 => (R => 0, G => 0, B => 0), 835 => (R => 0, G => 0, B => 0), 836 => (R => 0, G => 0, B => 0), 837 => (R => 0, G => 0, B => 0), 838 => (R => 0, G => 0, B => 0), 839 => (R => 0, G => 0, B => 0), 840 => (R => 0, G => 0, B => 0), 841 => (R => 0, G => 0, B => 0), 842 => (R => 0, G => 0, B => 0), 843 => (R => 0, G => 0, B => 0), 844 => (R => 0, G => 0, B => 0), 845 => (R => 0, G => 0, B => 0), 846 => (R => 0, G => 0, B => 0), 847 => (R => 0, G => 0, B => 0), 848 => (R => 0, G => 0, B => 0), 849 => (R => 0, G => 0, B => 0), 850 => (R => 0, G => 0, B => 0), 851 => (R => 0, G => 0, B => 0), 852 => (R => 0, G => 0, B => 0), 853 => (R => 0, G => 0, B => 0), 854 => (R => 0, G => 0, B => 0), 855 => (R => 0, G => 0, B => 0), 856 => (R => 0, G => 0, B => 0), 857 => (R => 0, G => 0, B => 0), 858 => (R => 0, G => 0, B => 0), 859 => (R => 0, G => 0, B => 0), 860 => (R => 0, G => 0, B => 0), 861 => (R => 0, G => 0, B => 0), 862 => (R => 0, G => 0, B => 0), 863 => (R => 0, G => 0, B => 0), 864 => (R => 0, G => 0, B => 0), 865 => (R => 0, G => 0, B => 0), 866 => (R => 0, G => 0, B => 0), 867 => (R => 0, G => 0, B => 0), 868 => (R => 0, G => 0, B => 0), 869 => (R => 0, G => 0, B => 0), 870 => (R => 0, G => 0, B => 0), 871 => (R => 0, G => 0, B => 0), 872 => (R => 0, G => 0, B => 0), 873 => (R => 0, G => 0, B => 0), 874 => (R => 0, G => 0, B => 0), 875 => (R => 0, G => 0, B => 0), 876 => (R => 0, G => 0, B => 0), 877 => (R => 0, G => 0, B => 0), 878 => (R => 0, G => 0, B => 0), 879 => (R => 0, G => 0, B => 0), 880 => (R => 0, G => 0, B => 0), 881 => (R => 0, G => 0, B => 0), 882 => (R => 0, G => 0, B => 0), 883 => (R => 0, G => 0, B => 0), 884 => (R => 0, G => 0, B => 0), 885 => (R => 0, G => 0, B => 0), 886 => (R => 0, G => 0, B => 0), 887 => (R => 0, G => 0, B => 0), 888 => (R => 0, G => 0, B => 0), 889 => (R => 0, G => 0, B => 0), 890 => (R => 0, G => 0, B => 0), 891 => (R => 0, G => 0, B => 0), 892 => (R => 0, G => 0, B => 0), 893 => (R => 0, G => 0, B => 0), 894 => (R => 0, G => 0, B => 0), 895 => (R => 0, G => 0, B => 0), 896 => (R => 0, G => 0, B => 0), 897 => (R => 0, G => 0, B => 0), 898 => (R => 0, G => 0, B => 0), 899 => (R => 0, G => 0, B => 0), 900 => (R => 0, G => 0, B => 0), 901 => (R => 0, G => 0, B => 0), 902 => (R => 0, G => 0, B => 0), 903 => (R => 0, G => 0, B => 0), 904 => (R => 0, G => 0, B => 0), 905 => (R => 0, G => 0, B => 0), 906 => (R => 0, G => 0, B => 0), 907 => (R => 0, G => 0, B => 0), 908 => (R => 0, G => 0, B => 0), 909 => (R => 0, G => 0, B => 0), 910 => (R => 0, G => 0, B => 0), 911 => (R => 0, G => 0, B => 0), 912 => (R => 0, G => 0, B => 0), 913 => (R => 0, G => 0, B => 0), 914 => (R => 0, G => 0, B => 0), 915 => (R => 0, G => 0, B => 0), 916 => (R => 0, G => 0, B => 0), 917 => (R => 0, G => 0, B => 0), 918 => (R => 0, G => 0, B => 0), 919 => (R => 0, G => 0, B => 0), 920 => (R => 0, G => 0, B => 0), 921 => (R => 0, G => 0, B => 0), 922 => (R => 0, G => 0, B => 0), 923 => (R => 0, G => 0, B => 0), 924 => (R => 0, G => 0, B => 0), 925 => (R => 0, G => 0, B => 0), 926 => (R => 0, G => 0, B => 0), 927 => (R => 0, G => 0, B => 0), 928 => (R => 0, G => 0, B => 0), 929 => (R => 0, G => 0, B => 0), 930 => (R => 0, G => 0, B => 0), 931 => (R => 0, G => 0, B => 0), 932 => (R => 0, G => 0, B => 0), 933 => (R => 0, G => 0, B => 0), 934 => (R => 0, G => 0, B => 0), 935 => (R => 0, G => 0, B => 0), 936 => (R => 0, G => 0, B => 0), 937 => (R => 0, G => 0, B => 0), 938 => (R => 0, G => 0, B => 0), 939 => (R => 0, G => 0, B => 0), 940 => (R => 0, G => 0, B => 0), 941 => (R => 0, G => 0, B => 0), 942 => (R => 0, G => 0, B => 0), 943 => (R => 0, G => 0, B => 0), 944 => (R => 0, G => 0, B => 0), 945 => (R => 0, G => 0, B => 0), 946 => (R => 0, G => 0, B => 0), 947 => (R => 0, G => 0, B => 0), 948 => (R => 0, G => 0, B => 0), 949 => (R => 0, G => 0, B => 0), 950 => (R => 0, G => 0, B => 0), 951 => (R => 0, G => 0, B => 0), 952 => (R => 0, G => 0, B => 0), 953 => (R => 0, G => 0, B => 0), 954 => (R => 0, G => 0, B => 0), 955 => (R => 0, G => 0, B => 0), 956 => (R => 0, G => 0, B => 0), 957 => (R => 0, G => 0, B => 0), 958 => (R => 0, G => 0, B => 0), 959 => (R => 0, G => 0, B => 0), 960 => (R => 0, G => 0, B => 0), 961 => (R => 0, G => 0, B => 0), 962 => (R => 0, G => 0, B => 0), 963 => (R => 0, G => 0, B => 0), 964 => (R => 0, G => 0, B => 0), 965 => (R => 0, G => 0, B => 0), 966 => (R => 0, G => 0, B => 0), 967 => (R => 0, G => 0, B => 0), 968 => (R => 0, G => 0, B => 0), 969 => (R => 0, G => 0, B => 0), 970 => (R => 0, G => 0, B => 0), 971 => (R => 0, G => 0, B => 0), 972 => (R => 0, G => 0, B => 0), 973 => (R => 0, G => 0, B => 0), 974 => (R => 0, G => 0, B => 0), 975 => (R => 0, G => 0, B => 0), 976 => (R => 0, G => 0, B => 0), 977 => (R => 0, G => 0, B => 0), 978 => (R => 0, G => 0, B => 0), 979 => (R => 0, G => 0, B => 0), 980 => (R => 0, G => 0, B => 0), 981 => (R => 0, G => 0, B => 0), 982 => (R => 0, G => 0, B => 0), 983 => (R => 0, G => 0, B => 0), 984 => (R => 0, G => 0, B => 0), 985 => (R => 0, G => 0, B => 0), 986 => (R => 0, G => 0, B => 0), 987 => (R => 0, G => 0, B => 0), 988 => (R => 0, G => 0, B => 0), 989 => (R => 0, G => 0, B => 0), 990 => (R => 0, G => 0, B => 0), 991 => (R => 0, G => 0, B => 0), 992 => (R => 0, G => 0, B => 0), 993 => (R => 0, G => 0, B => 0), 994 => (R => 0, G => 0, B => 0), 995 => (R => 0, G => 0, B => 0), 996 => (R => 0, G => 0, B => 0), 997 => (R => 0, G => 0, B => 0), 998 => (R => 0, G => 0, B => 0), 999 => (R => 0, G => 0, B => 0), 1000 => (R => 0, G => 0, B => 0), 1001 => (R => 0, G => 0, B => 0), 1002 => (R => 0, G => 0, B => 0), 1003 => (R => 0, G => 0, B => 0), 1004 => (R => 0, G => 0, B => 0), 1005 => (R => 0, G => 0, B => 0), 1006 => (R => 0, G => 0, B => 0), 1007 => (R => 0, G => 0, B => 0), 1008 => (R => 0, G => 0, B => 0), 1009 => (R => 0, G => 0, B => 0), 1010 => (R => 0, G => 0, B => 0), 1011 => (R => 0, G => 0, B => 0), 1012 => (R => 0, G => 0, B => 0), 1013 => (R => 0, G => 0, B => 0), 1014 => (R => 0, G => 0, B => 0), 1015 => (R => 0, G => 0, B => 0), 1016 => (R => 0, G => 0, B => 0), 1017 => (R => 0, G => 0, B => 0), 1018 => (R => 0, G => 0, B => 0), 1019 => (R => 0, G => 0, B => 0), 1020 => (R => 0, G => 0, B => 0), 1021 => (R => 0, G => 0, B => 0), 1022 => (R => 0, G => 0, B => 0), 1023 => (R => 0, G => 0, B => 0), 1024 => (R => 0, G => 0, B => 0), 1025 => (R => 0, G => 0, B => 0), 1026 => (R => 0, G => 0, B => 0), 1027 => (R => 0, G => 0, B => 0), 1028 => (R => 0, G => 0, B => 0), 1029 => (R => 0, G => 0, B => 0), 1030 => (R => 0, G => 0, B => 0), 1031 => (R => 0, G => 0, B => 0), 1032 => (R => 0, G => 0, B => 0), 1033 => (R => 0, G => 0, B => 0), 1034 => (R => 0, G => 0, B => 0), 1035 => (R => 0, G => 0, B => 0), 1036 => (R => 0, G => 0, B => 0), 1037 => (R => 0, G => 0, B => 0), 1038 => (R => 0, G => 0, B => 0), 1039 => (R => 0, G => 0, B => 0), 1040 => (R => 0, G => 0, B => 0), 1041 => (R => 0, G => 0, B => 0), 1042 => (R => 0, G => 0, B => 0), 1043 => (R => 0, G => 0, B => 0), 1044 => (R => 0, G => 0, B => 0), 1045 => (R => 0, G => 0, B => 0), 1046 => (R => 0, G => 0, B => 0), 1047 => (R => 0, G => 0, B => 0), 1048 => (R => 0, G => 0, B => 0), 1049 => (R => 0, G => 0, B => 0), 1050 => (R => 0, G => 0, B => 0), 1051 => (R => 0, G => 0, B => 0), 1052 => (R => 0, G => 0, B => 0), 1053 => (R => 0, G => 0, B => 0), 1054 => (R => 0, G => 0, B => 0), 1055 => (R => 0, G => 0, B => 0), 1056 => (R => 0, G => 0, B => 0), 1057 => (R => 0, G => 0, B => 0), 1058 => (R => 0, G => 0, B => 0), 1059 => (R => 0, G => 0, B => 0), 1060 => (R => 0, G => 0, B => 0), 1061 => (R => 0, G => 0, B => 0), 1062 => (R => 0, G => 0, B => 0), 1063 => (R => 0, G => 0, B => 0), 1064 => (R => 0, G => 0, B => 0), 1065 => (R => 0, G => 0, B => 0), 1066 => (R => 0, G => 0, B => 0), 1067 => (R => 0, G => 0, B => 0), 1068 => (R => 0, G => 0, B => 0), 1069 => (R => 0, G => 0, B => 0), 1070 => (R => 0, G => 0, B => 0), 1071 => (R => 0, G => 0, B => 0), 1072 => (R => 0, G => 0, B => 0), 1073 => (R => 0, G => 0, B => 0), 1074 => (R => 0, G => 0, B => 0), 1075 => (R => 0, G => 0, B => 0), 1076 => (R => 0, G => 0, B => 0), 1077 => (R => 0, G => 0, B => 0), 1078 => (R => 0, G => 0, B => 0), 1079 => (R => 0, G => 0, B => 0), 1080 => (R => 0, G => 0, B => 0), 1081 => (R => 0, G => 0, B => 0), 1082 => (R => 0, G => 0, B => 0), 1083 => (R => 0, G => 0, B => 0), 1084 => (R => 0, G => 0, B => 0), 1085 => (R => 0, G => 0, B => 0), 1086 => (R => 0, G => 0, B => 0), 1087 => (R => 0, G => 0, B => 0), 1088 => (R => 0, G => 0, B => 0), 1089 => (R => 0, G => 0, B => 0), 1090 => (R => 0, G => 0, B => 0), 1091 => (R => 0, G => 0, B => 0), 1092 => (R => 0, G => 0, B => 0), 1093 => (R => 0, G => 0, B => 0), 1094 => (R => 0, G => 0, B => 0), 1095 => (R => 0, G => 0, B => 0), 1096 => (R => 0, G => 0, B => 0), 1097 => (R => 0, G => 0, B => 0), 1098 => (R => 0, G => 0, B => 0), 1099 => (R => 0, G => 0, B => 0), 1100 => (R => 0, G => 0, B => 0), 1101 => (R => 0, G => 0, B => 0), 1102 => (R => 0, G => 0, B => 0), 1103 => (R => 0, G => 0, B => 0), 1104 => (R => 0, G => 0, B => 0), 1105 => (R => 0, G => 0, B => 0), 1106 => (R => 0, G => 0, B => 0), 1107 => (R => 0, G => 0, B => 0), 1108 => (R => 0, G => 0, B => 0), 1109 => (R => 0, G => 0, B => 0), 1110 => (R => 0, G => 0, B => 0), 1111 => (R => 0, G => 0, B => 0), 1112 => (R => 0, G => 0, B => 0), 1113 => (R => 0, G => 0, B => 0), 1114 => (R => 0, G => 0, B => 0), 1115 => (R => 0, G => 0, B => 0), 1116 => (R => 0, G => 0, B => 0), 1117 => (R => 0, G => 0, B => 0), 1118 => (R => 0, G => 0, B => 0), 1119 => (R => 0, G => 0, B => 0), 1120 => (R => 0, G => 0, B => 0), 1121 => (R => 0, G => 0, B => 0), 1122 => (R => 0, G => 0, B => 0), 1123 => (R => 0, G => 0, B => 0), 1124 => (R => 0, G => 0, B => 0), 1125 => (R => 0, G => 0, B => 0), 1126 => (R => 0, G => 0, B => 0), 1127 => (R => 0, G => 0, B => 0), 1128 => (R => 0, G => 0, B => 0), 1129 => (R => 0, G => 0, B => 0), 1130 => (R => 0, G => 0, B => 0), 1131 => (R => 0, G => 0, B => 0), 1132 => (R => 0, G => 0, B => 0), 1133 => (R => 0, G => 0, B => 0), 1134 => (R => 0, G => 0, B => 0), 1135 => (R => 0, G => 0, B => 0), 1136 => (R => 0, G => 0, B => 0), 1137 => (R => 0, G => 0, B => 0), 1138 => (R => 0, G => 0, B => 0), 1139 => (R => 0, G => 0, B => 0), 1140 => (R => 0, G => 0, B => 0), 1141 => (R => 0, G => 0, B => 0), 1142 => (R => 0, G => 0, B => 0), 1143 => (R => 0, G => 0, B => 0), 1144 => (R => 0, G => 0, B => 0), 1145 => (R => 0, G => 0, B => 0), 1146 => (R => 0, G => 0, B => 0), 1147 => (R => 0, G => 0, B => 0), 1148 => (R => 0, G => 0, B => 0), 1149 => (R => 0, G => 0, B => 0), 1150 => (R => 0, G => 0, B => 0), 1151 => (R => 0, G => 0, B => 0), 1152 => (R => 0, G => 0, B => 0), 1153 => (R => 0, G => 0, B => 0), 1154 => (R => 0, G => 0, B => 0), 1155 => (R => 0, G => 0, B => 0), 1156 => (R => 0, G => 0, B => 0), 1157 => (R => 0, G => 0, B => 0), 1158 => (R => 0, G => 0, B => 0), 1159 => (R => 0, G => 0, B => 0), 1160 => (R => 0, G => 0, B => 0), 1161 => (R => 0, G => 0, B => 0), 1162 => (R => 0, G => 0, B => 0), 1163 => (R => 0, G => 0, B => 0), 1164 => (R => 0, G => 0, B => 0), 1165 => (R => 0, G => 0, B => 0), 1166 => (R => 0, G => 0, B => 0), 1167 => (R => 0, G => 0, B => 0), 1168 => (R => 0, G => 0, B => 0), 1169 => (R => 0, G => 0, B => 0), 1170 => (R => 0, G => 0, B => 0), 1171 => (R => 0, G => 0, B => 0), 1172 => (R => 0, G => 0, B => 0), 1173 => (R => 0, G => 0, B => 0), 1174 => (R => 0, G => 0, B => 0), 1175 => (R => 0, G => 0, B => 0), 1176 => (R => 0, G => 0, B => 0), 1177 => (R => 0, G => 0, B => 0), 1178 => (R => 0, G => 0, B => 0), 1179 => (R => 0, G => 0, B => 0), 1180 => (R => 0, G => 0, B => 0), 1181 => (R => 0, G => 0, B => 0), 1182 => (R => 0, G => 0, B => 0), 1183 => (R => 0, G => 0, B => 0), 1184 => (R => 0, G => 0, B => 0), 1185 => (R => 0, G => 0, B => 0), 1186 => (R => 0, G => 0, B => 0), 1187 => (R => 0, G => 0, B => 0), 1188 => (R => 0, G => 0, B => 0), 1189 => (R => 0, G => 0, B => 0), 1190 => (R => 0, G => 0, B => 0), 1191 => (R => 0, G => 0, B => 0), 1192 => (R => 0, G => 0, B => 0), 1193 => (R => 0, G => 0, B => 0), 1194 => (R => 0, G => 0, B => 0), 1195 => (R => 0, G => 0, B => 0), 1196 => (R => 0, G => 0, B => 0), 1197 => (R => 0, G => 0, B => 0), 1198 => (R => 0, G => 0, B => 0), 1199 => (R => 0, G => 0, B => 0), 1200 => (R => 0, G => 0, B => 0), 1201 => (R => 0, G => 0, B => 0), 1202 => (R => 0, G => 0, B => 0), 1203 => (R => 0, G => 0, B => 0), 1204 => (R => 255, G => 0, B => 0), 1205 => (R => 255, G => 0, B => 0), 1206 => (R => 255, G => 0, B => 0), 1207 => (R => 255, G => 0, B => 0), 1208 => (R => 255, G => 0, B => 0), 1209 => (R => 255, G => 0, B => 0), 1210 => (R => 255, G => 0, B => 0), 1211 => (R => 255, G => 0, B => 0), 1212 => (R => 255, G => 0, B => 0), 1213 => (R => 255, G => 0, B => 0), 1214 => (R => 255, G => 0, B => 0), 1215 => (R => 255, G => 0, B => 0), 1216 => (R => 255, G => 0, B => 0), 1217 => (R => 255, G => 0, B => 0), 1218 => (R => 255, G => 0, B => 0), 1219 => (R => 255, G => 0, B => 0), 1220 => (R => 255, G => 0, B => 0), 1221 => (R => 255, G => 0, B => 0), 1222 => (R => 255, G => 0, B => 0), 1223 => (R => 255, G => 0, B => 0), 1224 => (R => 255, G => 0, B => 0), 1225 => (R => 255, G => 0, B => 0), 1226 => (R => 255, G => 0, B => 0), 1227 => (R => 255, G => 0, B => 0), 1228 => (R => 255, G => 0, B => 0), 1229 => (R => 255, G => 0, B => 0), 1230 => (R => 255, G => 0, B => 0), 1231 => (R => 255, G => 0, B => 0), 1232 => (R => 255, G => 0, B => 0), 1233 => (R => 255, G => 0, B => 0), 1234 => (R => 255, G => 0, B => 0), 1235 => (R => 255, G => 0, B => 0), 1236 => (R => 255, G => 0, B => 0), 1237 => (R => 255, G => 0, B => 0), 1238 => (R => 255, G => 0, B => 0), 1239 => (R => 255, G => 0, B => 0), 1240 => (R => 255, G => 0, B => 0), 1241 => (R => 255, G => 0, B => 0), 1242 => (R => 255, G => 0, B => 0), 1243 => (R => 255, G => 0, B => 0), 1244 => (R => 255, G => 0, B => 0), 1245 => (R => 255, G => 0, B => 0), 1246 => (R => 255, G => 0, B => 0), 1247 => (R => 255, G => 0, B => 0), 1248 => (R => 255, G => 0, B => 0), 1249 => (R => 255, G => 0, B => 0), 1250 => (R => 255, G => 0, B => 0), 1251 => (R => 255, G => 0, B => 0), 1252 => (R => 255, G => 0, B => 0), 1253 => (R => 255, G => 0, B => 0), 1254 => (R => 255, G => 0, B => 0), 1255 => (R => 255, G => 0, B => 0), 1256 => (R => 255, G => 0, B => 0), 1257 => (R => 255, G => 0, B => 0), 1258 => (R => 255, G => 0, B => 0), 1259 => (R => 255, G => 0, B => 0), 1260 => (R => 255, G => 0, B => 0), 1261 => (R => 255, G => 0, B => 0), 1262 => (R => 255, G => 0, B => 0), 1263 => (R => 255, G => 0, B => 0), 1264 => (R => 255, G => 0, B => 0), 1265 => (R => 255, G => 0, B => 0), 1266 => (R => 255, G => 0, B => 0), 1267 => (R => 255, G => 0, B => 0), 1268 => (R => 255, G => 0, B => 0), 1269 => (R => 255, G => 0, B => 0), 1270 => (R => 255, G => 0, B => 0), 1271 => (R => 255, G => 0, B => 0), 1272 => (R => 255, G => 0, B => 0), 1273 => (R => 255, G => 0, B => 0), 1274 => (R => 255, G => 0, B => 0), 1275 => (R => 255, G => 0, B => 0), 1276 => (R => 255, G => 0, B => 0), 1277 => (R => 255, G => 0, B => 0), 1278 => (R => 255, G => 0, B => 0), 1279 => (R => 255, G => 0, B => 0), 1280 => (R => 255, G => 0, B => 0), 1281 => (R => 255, G => 0, B => 0), 1282 => (R => 255, G => 0, B => 0), 1283 => (R => 255, G => 0, B => 0), 1284 => (R => 255, G => 0, B => 0), 1285 => (R => 255, G => 0, B => 0), 1286 => (R => 255, G => 0, B => 0), 1287 => (R => 255, G => 0, B => 0), 1288 => (R => 255, G => 0, B => 0), 1289 => (R => 255, G => 0, B => 0), 1290 => (R => 255, G => 0, B => 0), 1291 => (R => 255, G => 0, B => 0), 1292 => (R => 255, G => 0, B => 0), 1293 => (R => 255, G => 0, B => 0), 1294 => (R => 255, G => 0, B => 0), 1295 => (R => 255, G => 0, B => 0), 1296 => (R => 255, G => 0, B => 0), 1297 => (R => 255, G => 0, B => 0), 1298 => (R => 255, G => 0, B => 0), 1299 => (R => 255, G => 0, B => 0), 1300 => (R => 255, G => 0, B => 0), 1301 => (R => 255, G => 0, B => 0), 1302 => (R => 255, G => 0, B => 0), 1303 => (R => 255, G => 0, B => 0), 1304 => (R => 255, G => 0, B => 0), 1305 => (R => 255, G => 0, B => 0), 1306 => (R => 255, G => 0, B => 0), 1307 => (R => 255, G => 0, B => 0), 1308 => (R => 255, G => 0, B => 0), 1309 => (R => 255, G => 0, B => 0), 1310 => (R => 255, G => 0, B => 0), 1311 => (R => 255, G => 0, B => 0), 1312 => (R => 255, G => 0, B => 0), 1313 => (R => 255, G => 0, B => 0), 1314 => (R => 255, G => 0, B => 0), 1315 => (R => 255, G => 0, B => 0), 1316 => (R => 255, G => 0, B => 0), 1317 => (R => 255, G => 0, B => 0), 1318 => (R => 255, G => 0, B => 0), 1319 => (R => 255, G => 0, B => 0), 1320 => (R => 255, G => 0, B => 0), 1321 => (R => 255, G => 0, B => 0), 1322 => (R => 255, G => 0, B => 0), 1323 => (R => 255, G => 0, B => 0), 1324 => (R => 255, G => 0, B => 0), 1325 => (R => 255, G => 0, B => 0), 1326 => (R => 255, G => 0, B => 0), 1327 => (R => 255, G => 0, B => 0), 1328 => (R => 255, G => 0, B => 0), 1329 => (R => 255, G => 0, B => 0), 1330 => (R => 255, G => 0, B => 0), 1331 => (R => 255, G => 0, B => 0), 1332 => (R => 255, G => 0, B => 0), 1333 => (R => 255, G => 0, B => 0), 1334 => (R => 255, G => 0, B => 0), 1335 => (R => 255, G => 0, B => 0), 1336 => (R => 255, G => 0, B => 0), 1337 => (R => 255, G => 0, B => 0), 1338 => (R => 255, G => 0, B => 0), 1339 => (R => 255, G => 0, B => 0), 1340 => (R => 255, G => 0, B => 0), 1341 => (R => 255, G => 0, B => 0), 1342 => (R => 255, G => 0, B => 0), 1343 => (R => 255, G => 0, B => 0), 1344 => (R => 255, G => 0, B => 0), 1345 => (R => 255, G => 0, B => 0), 1346 => (R => 255, G => 0, B => 0), 1347 => (R => 255, G => 0, B => 0), 1348 => (R => 255, G => 0, B => 0), 1349 => (R => 255, G => 0, B => 0), 1350 => (R => 255, G => 0, B => 0), 1351 => (R => 255, G => 0, B => 0), 1352 => (R => 255, G => 0, B => 0), 1353 => (R => 255, G => 0, B => 0), 1354 => (R => 255, G => 0, B => 0), 1355 => (R => 255, G => 0, B => 0), 1356 => (R => 255, G => 0, B => 0), 1357 => (R => 255, G => 0, B => 0), 1358 => (R => 255, G => 0, B => 0), 1359 => (R => 255, G => 0, B => 0), 1360 => (R => 255, G => 0, B => 0), 1361 => (R => 255, G => 0, B => 0), 1362 => (R => 255, G => 0, B => 0), 1363 => (R => 255, G => 0, B => 0), 1364 => (R => 255, G => 0, B => 0), 1365 => (R => 255, G => 0, B => 0), 1366 => (R => 255, G => 0, B => 0), 1367 => (R => 255, G => 0, B => 0), 1368 => (R => 255, G => 0, B => 0), 1369 => (R => 255, G => 0, B => 0), 1370 => (R => 255, G => 0, B => 0), 1371 => (R => 255, G => 0, B => 0), 1372 => (R => 255, G => 0, B => 0), 1373 => (R => 255, G => 0, B => 0), 1374 => (R => 255, G => 0, B => 0), 1375 => (R => 255, G => 0, B => 0), 1376 => (R => 255, G => 0, B => 0), 1377 => (R => 255, G => 0, B => 0), 1378 => (R => 255, G => 0, B => 0), 1379 => (R => 255, G => 0, B => 0), 1380 => (R => 255, G => 0, B => 0), 1381 => (R => 255, G => 0, B => 0), 1382 => (R => 255, G => 0, B => 0), 1383 => (R => 255, G => 0, B => 0), 1384 => (R => 255, G => 0, B => 0), 1385 => (R => 255, G => 0, B => 0), 1386 => (R => 255, G => 0, B => 0), 1387 => (R => 255, G => 0, B => 0), 1388 => (R => 255, G => 0, B => 0), 1389 => (R => 255, G => 0, B => 0), 1390 => (R => 255, G => 0, B => 0), 1391 => (R => 255, G => 0, B => 0), 1392 => (R => 255, G => 0, B => 0), 1393 => (R => 255, G => 0, B => 0), 1394 => (R => 255, G => 0, B => 0), 1395 => (R => 255, G => 0, B => 0), 1396 => (R => 255, G => 0, B => 0), 1397 => (R => 255, G => 0, B => 0), 1398 => (R => 0, G => 0, B => 0), 1399 => (R => 0, G => 0, B => 0), 1400 => (R => 0, G => 0, B => 0), 1401 => (R => 0, G => 0, B => 0), 1402 => (R => 0, G => 0, B => 0), 1403 => (R => 0, G => 0, B => 0), 1404 => (R => 255, G => 0, B => 0), 1405 => (R => 255, G => 0, B => 0), 1406 => (R => 255, G => 0, B => 0), 1407 => (R => 255, G => 0, B => 0), 1408 => (R => 255, G => 0, B => 0), 1409 => (R => 255, G => 0, B => 0), 1410 => (R => 255, G => 0, B => 0), 1411 => (R => 255, G => 0, B => 0), 1412 => (R => 255, G => 0, B => 0), 1413 => (R => 255, G => 0, B => 0), 1414 => (R => 255, G => 0, B => 0), 1415 => (R => 255, G => 0, B => 0), 1416 => (R => 255, G => 0, B => 0), 1417 => (R => 255, G => 0, B => 0), 1418 => (R => 255, G => 0, B => 0), 1419 => (R => 255, G => 0, B => 0), 1420 => (R => 255, G => 0, B => 0), 1421 => (R => 255, G => 0, B => 0), 1422 => (R => 255, G => 0, B => 0), 1423 => (R => 255, G => 0, B => 0), 1424 => (R => 255, G => 0, B => 0), 1425 => (R => 255, G => 0, B => 0), 1426 => (R => 255, G => 0, B => 0), 1427 => (R => 255, G => 0, B => 0), 1428 => (R => 255, G => 0, B => 0), 1429 => (R => 255, G => 0, B => 0), 1430 => (R => 255, G => 0, B => 0), 1431 => (R => 255, G => 0, B => 0), 1432 => (R => 255, G => 0, B => 0), 1433 => (R => 255, G => 0, B => 0), 1434 => (R => 255, G => 0, B => 0), 1435 => (R => 255, G => 0, B => 0), 1436 => (R => 255, G => 0, B => 0), 1437 => (R => 255, G => 0, B => 0), 1438 => (R => 255, G => 0, B => 0), 1439 => (R => 255, G => 0, B => 0), 1440 => (R => 255, G => 0, B => 0), 1441 => (R => 255, G => 0, B => 0), 1442 => (R => 255, G => 0, B => 0), 1443 => (R => 255, G => 0, B => 0), 1444 => (R => 255, G => 0, B => 0), 1445 => (R => 255, G => 0, B => 0), 1446 => (R => 255, G => 0, B => 0), 1447 => (R => 255, G => 0, B => 0), 1448 => (R => 255, G => 0, B => 0), 1449 => (R => 255, G => 0, B => 0), 1450 => (R => 255, G => 0, B => 0), 1451 => (R => 255, G => 0, B => 0), 1452 => (R => 255, G => 0, B => 0), 1453 => (R => 255, G => 0, B => 0), 1454 => (R => 255, G => 0, B => 0), 1455 => (R => 255, G => 0, B => 0), 1456 => (R => 255, G => 0, B => 0), 1457 => (R => 255, G => 0, B => 0), 1458 => (R => 255, G => 0, B => 0), 1459 => (R => 255, G => 0, B => 0), 1460 => (R => 255, G => 0, B => 0), 1461 => (R => 255, G => 0, B => 0), 1462 => (R => 255, G => 0, B => 0), 1463 => (R => 255, G => 0, B => 0), 1464 => (R => 255, G => 0, B => 0), 1465 => (R => 255, G => 0, B => 0), 1466 => (R => 255, G => 0, B => 0), 1467 => (R => 255, G => 0, B => 0), 1468 => (R => 255, G => 0, B => 0), 1469 => (R => 255, G => 0, B => 0), 1470 => (R => 255, G => 0, B => 0), 1471 => (R => 255, G => 0, B => 0), 1472 => (R => 255, G => 0, B => 0), 1473 => (R => 255, G => 0, B => 0), 1474 => (R => 255, G => 0, B => 0), 1475 => (R => 255, G => 0, B => 0), 1476 => (R => 255, G => 0, B => 0), 1477 => (R => 255, G => 0, B => 0), 1478 => (R => 255, G => 0, B => 0), 1479 => (R => 255, G => 0, B => 0), 1480 => (R => 255, G => 0, B => 0), 1481 => (R => 255, G => 0, B => 0), 1482 => (R => 255, G => 0, B => 0), 1483 => (R => 255, G => 0, B => 0), 1484 => (R => 255, G => 0, B => 0), 1485 => (R => 255, G => 0, B => 0), 1486 => (R => 255, G => 0, B => 0), 1487 => (R => 255, G => 0, B => 0), 1488 => (R => 255, G => 0, B => 0), 1489 => (R => 255, G => 0, B => 0), 1490 => (R => 255, G => 0, B => 0), 1491 => (R => 255, G => 0, B => 0), 1492 => (R => 255, G => 0, B => 0), 1493 => (R => 255, G => 0, B => 0), 1494 => (R => 255, G => 0, B => 0), 1495 => (R => 255, G => 0, B => 0), 1496 => (R => 255, G => 0, B => 0), 1497 => (R => 255, G => 0, B => 0), 1498 => (R => 255, G => 0, B => 0), 1499 => (R => 255, G => 0, B => 0), 1500 => (R => 255, G => 0, B => 0), 1501 => (R => 255, G => 0, B => 0), 1502 => (R => 255, G => 0, B => 0), 1503 => (R => 255, G => 0, B => 0), 1504 => (R => 255, G => 0, B => 0), 1505 => (R => 255, G => 0, B => 0), 1506 => (R => 255, G => 0, B => 0), 1507 => (R => 255, G => 0, B => 0), 1508 => (R => 255, G => 0, B => 0), 1509 => (R => 255, G => 0, B => 0), 1510 => (R => 255, G => 0, B => 0), 1511 => (R => 255, G => 0, B => 0), 1512 => (R => 255, G => 0, B => 0), 1513 => (R => 255, G => 0, B => 0), 1514 => (R => 255, G => 0, B => 0), 1515 => (R => 255, G => 0, B => 0), 1516 => (R => 255, G => 0, B => 0), 1517 => (R => 255, G => 0, B => 0), 1518 => (R => 255, G => 0, B => 0), 1519 => (R => 255, G => 0, B => 0), 1520 => (R => 255, G => 0, B => 0), 1521 => (R => 255, G => 0, B => 0), 1522 => (R => 255, G => 0, B => 0), 1523 => (R => 255, G => 0, B => 0), 1524 => (R => 255, G => 0, B => 0), 1525 => (R => 255, G => 0, B => 0), 1526 => (R => 255, G => 0, B => 0), 1527 => (R => 255, G => 0, B => 0), 1528 => (R => 255, G => 0, B => 0), 1529 => (R => 255, G => 0, B => 0), 1530 => (R => 255, G => 0, B => 0), 1531 => (R => 255, G => 0, B => 0), 1532 => (R => 255, G => 0, B => 0), 1533 => (R => 255, G => 0, B => 0), 1534 => (R => 255, G => 0, B => 0), 1535 => (R => 255, G => 0, B => 0), 1536 => (R => 255, G => 0, B => 0), 1537 => (R => 255, G => 0, B => 0), 1538 => (R => 255, G => 0, B => 0), 1539 => (R => 255, G => 0, B => 0), 1540 => (R => 255, G => 0, B => 0), 1541 => (R => 255, G => 0, B => 0), 1542 => (R => 255, G => 0, B => 0), 1543 => (R => 255, G => 0, B => 0), 1544 => (R => 255, G => 0, B => 0), 1545 => (R => 255, G => 0, B => 0), 1546 => (R => 255, G => 0, B => 0), 1547 => (R => 255, G => 0, B => 0), 1548 => (R => 255, G => 0, B => 0), 1549 => (R => 255, G => 0, B => 0), 1550 => (R => 255, G => 0, B => 0), 1551 => (R => 255, G => 0, B => 0), 1552 => (R => 255, G => 0, B => 0), 1553 => (R => 255, G => 0, B => 0), 1554 => (R => 255, G => 0, B => 0), 1555 => (R => 255, G => 0, B => 0), 1556 => (R => 255, G => 0, B => 0), 1557 => (R => 255, G => 0, B => 0), 1558 => (R => 255, G => 0, B => 0), 1559 => (R => 255, G => 0, B => 0), 1560 => (R => 255, G => 0, B => 0), 1561 => (R => 255, G => 0, B => 0), 1562 => (R => 255, G => 0, B => 0), 1563 => (R => 255, G => 0, B => 0), 1564 => (R => 255, G => 0, B => 0), 1565 => (R => 255, G => 0, B => 0), 1566 => (R => 255, G => 0, B => 0), 1567 => (R => 255, G => 0, B => 0), 1568 => (R => 255, G => 0, B => 0), 1569 => (R => 255, G => 0, B => 0), 1570 => (R => 255, G => 0, B => 0), 1571 => (R => 255, G => 0, B => 0), 1572 => (R => 255, G => 0, B => 0), 1573 => (R => 255, G => 0, B => 0), 1574 => (R => 255, G => 0, B => 0), 1575 => (R => 255, G => 0, B => 0), 1576 => (R => 255, G => 0, B => 0), 1577 => (R => 255, G => 0, B => 0), 1578 => (R => 255, G => 0, B => 0), 1579 => (R => 255, G => 0, B => 0), 1580 => (R => 255, G => 0, B => 0), 1581 => (R => 255, G => 0, B => 0), 1582 => (R => 255, G => 0, B => 0), 1583 => (R => 255, G => 0, B => 0), 1584 => (R => 255, G => 0, B => 0), 1585 => (R => 255, G => 0, B => 0), 1586 => (R => 255, G => 0, B => 0), 1587 => (R => 255, G => 0, B => 0), 1588 => (R => 255, G => 0, B => 0), 1589 => (R => 255, G => 0, B => 0), 1590 => (R => 255, G => 0, B => 0), 1591 => (R => 255, G => 0, B => 0), 1592 => (R => 255, G => 0, B => 0), 1593 => (R => 255, G => 0, B => 0), 1594 => (R => 255, G => 0, B => 0), 1595 => (R => 255, G => 0, B => 0), 1596 => (R => 255, G => 0, B => 0), 1597 => (R => 255, G => 0, B => 0), 1598 => (R => 0, G => 0, B => 0), 1599 => (R => 0, G => 0, B => 0), 1600 => (R => 0, G => 0, B => 0), 1601 => (R => 0, G => 0, B => 0), 1602 => (R => 0, G => 0, B => 0), 1603 => (R => 0, G => 0, B => 0), 1604 => (R => 255, G => 0, B => 0), 1605 => (R => 255, G => 0, B => 0), 1606 => (R => 255, G => 0, B => 0), 1607 => (R => 255, G => 0, B => 0), 1608 => (R => 255, G => 0, B => 0), 1609 => (R => 255, G => 0, B => 0), 1610 => (R => 255, G => 0, B => 0), 1611 => (R => 255, G => 0, B => 0), 1612 => (R => 255, G => 0, B => 0), 1613 => (R => 255, G => 0, B => 0), 1614 => (R => 255, G => 0, B => 0), 1615 => (R => 255, G => 0, B => 0), 1616 => (R => 255, G => 0, B => 0), 1617 => (R => 255, G => 0, B => 0), 1618 => (R => 255, G => 0, B => 0), 1619 => (R => 255, G => 0, B => 0), 1620 => (R => 255, G => 0, B => 0), 1621 => (R => 255, G => 0, B => 0), 1622 => (R => 255, G => 0, B => 0), 1623 => (R => 255, G => 0, B => 0), 1624 => (R => 255, G => 0, B => 0), 1625 => (R => 255, G => 0, B => 0), 1626 => (R => 255, G => 0, B => 0), 1627 => (R => 255, G => 0, B => 0), 1628 => (R => 255, G => 0, B => 0), 1629 => (R => 255, G => 0, B => 0), 1630 => (R => 255, G => 0, B => 0), 1631 => (R => 255, G => 0, B => 0), 1632 => (R => 255, G => 0, B => 0), 1633 => (R => 255, G => 0, B => 0), 1634 => (R => 255, G => 0, B => 0), 1635 => (R => 255, G => 0, B => 0), 1636 => (R => 255, G => 0, B => 0), 1637 => (R => 255, G => 0, B => 0), 1638 => (R => 255, G => 0, B => 0), 1639 => (R => 255, G => 0, B => 0), 1640 => (R => 255, G => 0, B => 0), 1641 => (R => 255, G => 0, B => 0), 1642 => (R => 255, G => 0, B => 0), 1643 => (R => 255, G => 0, B => 0), 1644 => (R => 255, G => 0, B => 0), 1645 => (R => 255, G => 0, B => 0), 1646 => (R => 255, G => 0, B => 0), 1647 => (R => 255, G => 0, B => 0), 1648 => (R => 255, G => 0, B => 0), 1649 => (R => 255, G => 0, B => 0), 1650 => (R => 255, G => 0, B => 0), 1651 => (R => 255, G => 0, B => 0), 1652 => (R => 255, G => 0, B => 0), 1653 => (R => 255, G => 0, B => 0), 1654 => (R => 255, G => 0, B => 0), 1655 => (R => 255, G => 0, B => 0), 1656 => (R => 255, G => 0, B => 0), 1657 => (R => 255, G => 0, B => 0), 1658 => (R => 255, G => 0, B => 0), 1659 => (R => 255, G => 0, B => 0), 1660 => (R => 255, G => 0, B => 0), 1661 => (R => 255, G => 0, B => 0), 1662 => (R => 255, G => 0, B => 0), 1663 => (R => 255, G => 0, B => 0), 1664 => (R => 255, G => 0, B => 0), 1665 => (R => 255, G => 0, B => 0), 1666 => (R => 255, G => 0, B => 0), 1667 => (R => 255, G => 0, B => 0), 1668 => (R => 255, G => 0, B => 0), 1669 => (R => 255, G => 0, B => 0), 1670 => (R => 255, G => 0, B => 0), 1671 => (R => 255, G => 0, B => 0), 1672 => (R => 255, G => 0, B => 0), 1673 => (R => 255, G => 0, B => 0), 1674 => (R => 255, G => 0, B => 0), 1675 => (R => 255, G => 0, B => 0), 1676 => (R => 255, G => 0, B => 0), 1677 => (R => 255, G => 0, B => 0), 1678 => (R => 255, G => 0, B => 0), 1679 => (R => 255, G => 0, B => 0), 1680 => (R => 255, G => 0, B => 0), 1681 => (R => 255, G => 0, B => 0), 1682 => (R => 255, G => 0, B => 0), 1683 => (R => 255, G => 0, B => 0), 1684 => (R => 255, G => 0, B => 0), 1685 => (R => 255, G => 0, B => 0), 1686 => (R => 255, G => 0, B => 0), 1687 => (R => 255, G => 0, B => 0), 1688 => (R => 255, G => 0, B => 0), 1689 => (R => 255, G => 0, B => 0), 1690 => (R => 255, G => 0, B => 0), 1691 => (R => 255, G => 0, B => 0), 1692 => (R => 255, G => 0, B => 0), 1693 => (R => 255, G => 0, B => 0), 1694 => (R => 255, G => 0, B => 0), 1695 => (R => 255, G => 0, B => 0), 1696 => (R => 255, G => 0, B => 0), 1697 => (R => 255, G => 0, B => 0), 1698 => (R => 255, G => 0, B => 0), 1699 => (R => 255, G => 0, B => 0), 1700 => (R => 255, G => 0, B => 0), 1701 => (R => 255, G => 0, B => 0), 1702 => (R => 255, G => 0, B => 0), 1703 => (R => 255, G => 0, B => 0), 1704 => (R => 255, G => 0, B => 0), 1705 => (R => 255, G => 0, B => 0), 1706 => (R => 255, G => 0, B => 0), 1707 => (R => 255, G => 0, B => 0), 1708 => (R => 255, G => 0, B => 0), 1709 => (R => 255, G => 0, B => 0), 1710 => (R => 255, G => 0, B => 0), 1711 => (R => 255, G => 0, B => 0), 1712 => (R => 255, G => 0, B => 0), 1713 => (R => 255, G => 0, B => 0), 1714 => (R => 255, G => 0, B => 0), 1715 => (R => 255, G => 0, B => 0), 1716 => (R => 255, G => 0, B => 0), 1717 => (R => 255, G => 0, B => 0), 1718 => (R => 255, G => 0, B => 0), 1719 => (R => 255, G => 0, B => 0), 1720 => (R => 255, G => 0, B => 0), 1721 => (R => 255, G => 0, B => 0), 1722 => (R => 255, G => 0, B => 0), 1723 => (R => 255, G => 0, B => 0), 1724 => (R => 255, G => 0, B => 0), 1725 => (R => 255, G => 0, B => 0), 1726 => (R => 255, G => 0, B => 0), 1727 => (R => 255, G => 0, B => 0), 1728 => (R => 255, G => 0, B => 0), 1729 => (R => 255, G => 0, B => 0), 1730 => (R => 255, G => 0, B => 0), 1731 => (R => 255, G => 0, B => 0), 1732 => (R => 255, G => 0, B => 0), 1733 => (R => 255, G => 0, B => 0), 1734 => (R => 255, G => 0, B => 0), 1735 => (R => 255, G => 0, B => 0), 1736 => (R => 255, G => 0, B => 0), 1737 => (R => 255, G => 0, B => 0), 1738 => (R => 255, G => 0, B => 0), 1739 => (R => 255, G => 0, B => 0), 1740 => (R => 255, G => 0, B => 0), 1741 => (R => 255, G => 0, B => 0), 1742 => (R => 255, G => 0, B => 0), 1743 => (R => 255, G => 0, B => 0), 1744 => (R => 255, G => 0, B => 0), 1745 => (R => 255, G => 0, B => 0), 1746 => (R => 255, G => 0, B => 0), 1747 => (R => 255, G => 0, B => 0), 1748 => (R => 255, G => 0, B => 0), 1749 => (R => 255, G => 0, B => 0), 1750 => (R => 255, G => 0, B => 0), 1751 => (R => 255, G => 0, B => 0), 1752 => (R => 255, G => 0, B => 0), 1753 => (R => 255, G => 0, B => 0), 1754 => (R => 255, G => 0, B => 0), 1755 => (R => 255, G => 0, B => 0), 1756 => (R => 255, G => 0, B => 0), 1757 => (R => 255, G => 0, B => 0), 1758 => (R => 255, G => 0, B => 0), 1759 => (R => 255, G => 0, B => 0), 1760 => (R => 255, G => 0, B => 0), 1761 => (R => 255, G => 0, B => 0), 1762 => (R => 255, G => 0, B => 0), 1763 => (R => 255, G => 0, B => 0), 1764 => (R => 255, G => 0, B => 0), 1765 => (R => 255, G => 0, B => 0), 1766 => (R => 255, G => 0, B => 0), 1767 => (R => 255, G => 0, B => 0), 1768 => (R => 255, G => 0, B => 0), 1769 => (R => 255, G => 0, B => 0), 1770 => (R => 255, G => 0, B => 0), 1771 => (R => 255, G => 0, B => 0), 1772 => (R => 255, G => 0, B => 0), 1773 => (R => 255, G => 0, B => 0), 1774 => (R => 255, G => 0, B => 0), 1775 => (R => 255, G => 0, B => 0), 1776 => (R => 255, G => 0, B => 0), 1777 => (R => 255, G => 0, B => 0), 1778 => (R => 255, G => 0, B => 0), 1779 => (R => 255, G => 0, B => 0), 1780 => (R => 255, G => 0, B => 0), 1781 => (R => 255, G => 0, B => 0), 1782 => (R => 255, G => 0, B => 0), 1783 => (R => 255, G => 0, B => 0), 1784 => (R => 255, G => 0, B => 0), 1785 => (R => 255, G => 0, B => 0), 1786 => (R => 255, G => 0, B => 0), 1787 => (R => 255, G => 0, B => 0), 1788 => (R => 255, G => 0, B => 0), 1789 => (R => 255, G => 0, B => 0), 1790 => (R => 255, G => 0, B => 0), 1791 => (R => 255, G => 0, B => 0), 1792 => (R => 255, G => 0, B => 0), 1793 => (R => 255, G => 0, B => 0), 1794 => (R => 255, G => 0, B => 0), 1795 => (R => 255, G => 0, B => 0), 1796 => (R => 255, G => 0, B => 0), 1797 => (R => 255, G => 0, B => 0), 1798 => (R => 0, G => 0, B => 0), 1799 => (R => 0, G => 0, B => 0), 1800 => (R => 0, G => 0, B => 0), 1801 => (R => 0, G => 0, B => 0), 1802 => (R => 0, G => 0, B => 0), 1803 => (R => 0, G => 0, B => 0), 1804 => (R => 0, G => 0, B => 0), 1805 => (R => 255, G => 0, B => 0), 1806 => (R => 255, G => 0, B => 0), 1807 => (R => 255, G => 0, B => 0), 1808 => (R => 255, G => 0, B => 0), 1809 => (R => 255, G => 0, B => 0), 1810 => (R => 255, G => 0, B => 0), 1811 => (R => 255, G => 0, B => 0), 1812 => (R => 255, G => 0, B => 0), 1813 => (R => 255, G => 0, B => 0), 1814 => (R => 255, G => 0, B => 0), 1815 => (R => 255, G => 0, B => 0), 1816 => (R => 255, G => 0, B => 0), 1817 => (R => 255, G => 0, B => 0), 1818 => (R => 255, G => 0, B => 0), 1819 => (R => 255, G => 0, B => 0), 1820 => (R => 255, G => 0, B => 0), 1821 => (R => 255, G => 0, B => 0), 1822 => (R => 255, G => 0, B => 0), 1823 => (R => 255, G => 0, B => 0), 1824 => (R => 255, G => 0, B => 0), 1825 => (R => 255, G => 0, B => 0), 1826 => (R => 255, G => 0, B => 0), 1827 => (R => 255, G => 0, B => 0), 1828 => (R => 255, G => 0, B => 0), 1829 => (R => 255, G => 0, B => 0), 1830 => (R => 255, G => 0, B => 0), 1831 => (R => 255, G => 0, B => 0), 1832 => (R => 255, G => 0, B => 0), 1833 => (R => 255, G => 0, B => 0), 1834 => (R => 255, G => 0, B => 0), 1835 => (R => 255, G => 0, B => 0), 1836 => (R => 255, G => 0, B => 0), 1837 => (R => 255, G => 0, B => 0), 1838 => (R => 255, G => 0, B => 0), 1839 => (R => 255, G => 0, B => 0), 1840 => (R => 255, G => 0, B => 0), 1841 => (R => 255, G => 0, B => 0), 1842 => (R => 255, G => 0, B => 0), 1843 => (R => 255, G => 0, B => 0), 1844 => (R => 255, G => 0, B => 0), 1845 => (R => 255, G => 0, B => 0), 1846 => (R => 255, G => 0, B => 0), 1847 => (R => 255, G => 0, B => 0), 1848 => (R => 255, G => 0, B => 0), 1849 => (R => 255, G => 0, B => 0), 1850 => (R => 255, G => 0, B => 0), 1851 => (R => 255, G => 0, B => 0), 1852 => (R => 255, G => 0, B => 0), 1853 => (R => 255, G => 0, B => 0), 1854 => (R => 255, G => 0, B => 0), 1855 => (R => 255, G => 0, B => 0), 1856 => (R => 255, G => 0, B => 0), 1857 => (R => 255, G => 0, B => 0), 1858 => (R => 255, G => 0, B => 0), 1859 => (R => 255, G => 0, B => 0), 1860 => (R => 255, G => 0, B => 0), 1861 => (R => 255, G => 0, B => 0), 1862 => (R => 255, G => 0, B => 0), 1863 => (R => 255, G => 0, B => 0), 1864 => (R => 255, G => 0, B => 0), 1865 => (R => 255, G => 0, B => 0), 1866 => (R => 255, G => 0, B => 0), 1867 => (R => 255, G => 0, B => 0), 1868 => (R => 255, G => 0, B => 0), 1869 => (R => 255, G => 0, B => 0), 1870 => (R => 255, G => 0, B => 0), 1871 => (R => 255, G => 0, B => 0), 1872 => (R => 255, G => 0, B => 0), 1873 => (R => 255, G => 0, B => 0), 1874 => (R => 255, G => 0, B => 0), 1875 => (R => 255, G => 0, B => 0), 1876 => (R => 255, G => 0, B => 0), 1877 => (R => 255, G => 0, B => 0), 1878 => (R => 255, G => 0, B => 0), 1879 => (R => 255, G => 0, B => 0), 1880 => (R => 255, G => 0, B => 0), 1881 => (R => 255, G => 0, B => 0), 1882 => (R => 255, G => 0, B => 0), 1883 => (R => 255, G => 0, B => 0), 1884 => (R => 255, G => 0, B => 0), 1885 => (R => 255, G => 0, B => 0), 1886 => (R => 255, G => 0, B => 0), 1887 => (R => 255, G => 0, B => 0), 1888 => (R => 255, G => 0, B => 0), 1889 => (R => 255, G => 0, B => 0), 1890 => (R => 255, G => 0, B => 0), 1891 => (R => 255, G => 0, B => 0), 1892 => (R => 255, G => 0, B => 0), 1893 => (R => 255, G => 0, B => 0), 1894 => (R => 255, G => 0, B => 0), 1895 => (R => 255, G => 0, B => 0), 1896 => (R => 255, G => 0, B => 0), 1897 => (R => 255, G => 0, B => 0), 1898 => (R => 255, G => 0, B => 0), 1899 => (R => 255, G => 0, B => 0), 1900 => (R => 255, G => 0, B => 0), 1901 => (R => 255, G => 0, B => 0), 1902 => (R => 255, G => 0, B => 0), 1903 => (R => 255, G => 0, B => 0), 1904 => (R => 255, G => 0, B => 0), 1905 => (R => 255, G => 0, B => 0), 1906 => (R => 255, G => 0, B => 0), 1907 => (R => 255, G => 0, B => 0), 1908 => (R => 255, G => 0, B => 0), 1909 => (R => 255, G => 0, B => 0), 1910 => (R => 255, G => 0, B => 0), 1911 => (R => 255, G => 0, B => 0), 1912 => (R => 255, G => 0, B => 0), 1913 => (R => 255, G => 0, B => 0), 1914 => (R => 255, G => 0, B => 0), 1915 => (R => 255, G => 0, B => 0), 1916 => (R => 255, G => 0, B => 0), 1917 => (R => 255, G => 0, B => 0), 1918 => (R => 255, G => 0, B => 0), 1919 => (R => 255, G => 0, B => 0), 1920 => (R => 255, G => 0, B => 0), 1921 => (R => 255, G => 0, B => 0), 1922 => (R => 255, G => 0, B => 0), 1923 => (R => 255, G => 0, B => 0), 1924 => (R => 255, G => 0, B => 0), 1925 => (R => 255, G => 0, B => 0), 1926 => (R => 255, G => 0, B => 0), 1927 => (R => 255, G => 0, B => 0), 1928 => (R => 255, G => 0, B => 0), 1929 => (R => 255, G => 0, B => 0), 1930 => (R => 255, G => 0, B => 0), 1931 => (R => 255, G => 0, B => 0), 1932 => (R => 255, G => 0, B => 0), 1933 => (R => 255, G => 0, B => 0), 1934 => (R => 255, G => 0, B => 0), 1935 => (R => 255, G => 0, B => 0), 1936 => (R => 255, G => 0, B => 0), 1937 => (R => 255, G => 0, B => 0), 1938 => (R => 255, G => 0, B => 0), 1939 => (R => 255, G => 0, B => 0), 1940 => (R => 255, G => 0, B => 0), 1941 => (R => 255, G => 0, B => 0), 1942 => (R => 255, G => 0, B => 0), 1943 => (R => 255, G => 0, B => 0), 1944 => (R => 255, G => 0, B => 0), 1945 => (R => 255, G => 0, B => 0), 1946 => (R => 255, G => 0, B => 0), 1947 => (R => 255, G => 0, B => 0), 1948 => (R => 255, G => 0, B => 0), 1949 => (R => 255, G => 0, B => 0), 1950 => (R => 255, G => 0, B => 0), 1951 => (R => 255, G => 0, B => 0), 1952 => (R => 255, G => 0, B => 0), 1953 => (R => 255, G => 0, B => 0), 1954 => (R => 255, G => 0, B => 0), 1955 => (R => 255, G => 0, B => 0), 1956 => (R => 255, G => 0, B => 0), 1957 => (R => 255, G => 0, B => 0), 1958 => (R => 255, G => 0, B => 0), 1959 => (R => 255, G => 0, B => 0), 1960 => (R => 255, G => 0, B => 0), 1961 => (R => 255, G => 0, B => 0), 1962 => (R => 255, G => 0, B => 0), 1963 => (R => 255, G => 0, B => 0), 1964 => (R => 255, G => 0, B => 0), 1965 => (R => 255, G => 0, B => 0), 1966 => (R => 255, G => 0, B => 0), 1967 => (R => 255, G => 0, B => 0), 1968 => (R => 255, G => 0, B => 0), 1969 => (R => 255, G => 0, B => 0), 1970 => (R => 255, G => 0, B => 0), 1971 => (R => 255, G => 0, B => 0), 1972 => (R => 255, G => 0, B => 0), 1973 => (R => 255, G => 0, B => 0), 1974 => (R => 255, G => 0, B => 0), 1975 => (R => 255, G => 0, B => 0), 1976 => (R => 255, G => 0, B => 0), 1977 => (R => 255, G => 0, B => 0), 1978 => (R => 255, G => 0, B => 0), 1979 => (R => 255, G => 0, B => 0), 1980 => (R => 255, G => 0, B => 0), 1981 => (R => 255, G => 0, B => 0), 1982 => (R => 255, G => 0, B => 0), 1983 => (R => 255, G => 0, B => 0), 1984 => (R => 255, G => 0, B => 0), 1985 => (R => 255, G => 0, B => 0), 1986 => (R => 255, G => 0, B => 0), 1987 => (R => 255, G => 0, B => 0), 1988 => (R => 255, G => 0, B => 0), 1989 => (R => 255, G => 0, B => 0), 1990 => (R => 255, G => 0, B => 0), 1991 => (R => 255, G => 0, B => 0), 1992 => (R => 255, G => 0, B => 0), 1993 => (R => 255, G => 0, B => 0), 1994 => (R => 255, G => 0, B => 0), 1995 => (R => 255, G => 0, B => 0), 1996 => (R => 0, G => 0, B => 0), 1997 => (R => 0, G => 0, B => 0), 1998 => (R => 0, G => 0, B => 0), 1999 => (R => 0, G => 0, B => 0), 2000 => (R => 0, G => 0, B => 0), 2001 => (R => 0, G => 0, B => 0), 2002 => (R => 0, G => 0, B => 0), 2003 => (R => 0, G => 0, B => 0), 2004 => (R => 0, G => 0, B => 0), 2005 => (R => 0, G => 0, B => 0), 2006 => (R => 0, G => 0, B => 0), 2007 => (R => 255, G => 0, B => 0), 2008 => (R => 255, G => 0, B => 0), 2009 => (R => 255, G => 0, B => 0), 2010 => (R => 255, G => 0, B => 0), 2011 => (R => 255, G => 0, B => 0), 2012 => (R => 255, G => 0, B => 0), 2013 => (R => 255, G => 0, B => 0), 2014 => (R => 255, G => 0, B => 0), 2015 => (R => 255, G => 0, B => 0), 2016 => (R => 255, G => 0, B => 0), 2017 => (R => 255, G => 0, B => 0), 2018 => (R => 255, G => 0, B => 0), 2019 => (R => 255, G => 0, B => 0), 2020 => (R => 255, G => 0, B => 0), 2021 => (R => 255, G => 0, B => 0), 2022 => (R => 255, G => 0, B => 0), 2023 => (R => 255, G => 0, B => 0), 2024 => (R => 255, G => 0, B => 0), 2025 => (R => 255, G => 0, B => 0), 2026 => (R => 255, G => 0, B => 0), 2027 => (R => 255, G => 0, B => 0), 2028 => (R => 255, G => 0, B => 0), 2029 => (R => 255, G => 0, B => 0), 2030 => (R => 255, G => 0, B => 0), 2031 => (R => 255, G => 0, B => 0), 2032 => (R => 255, G => 0, B => 0), 2033 => (R => 255, G => 0, B => 0), 2034 => (R => 255, G => 0, B => 0), 2035 => (R => 255, G => 0, B => 0), 2036 => (R => 255, G => 0, B => 0), 2037 => (R => 255, G => 0, B => 0), 2038 => (R => 255, G => 0, B => 0), 2039 => (R => 255, G => 0, B => 0), 2040 => (R => 255, G => 0, B => 0), 2041 => (R => 255, G => 0, B => 0), 2042 => (R => 255, G => 0, B => 0), 2043 => (R => 255, G => 0, B => 0), 2044 => (R => 255, G => 0, B => 0), 2045 => (R => 255, G => 0, B => 0), 2046 => (R => 255, G => 0, B => 0), 2047 => (R => 255, G => 0, B => 0), 2048 => (R => 255, G => 0, B => 0), 2049 => (R => 255, G => 0, B => 0), 2050 => (R => 255, G => 0, B => 0), 2051 => (R => 255, G => 0, B => 0), 2052 => (R => 255, G => 0, B => 0), 2053 => (R => 255, G => 0, B => 0), 2054 => (R => 255, G => 0, B => 0), 2055 => (R => 255, G => 0, B => 0), 2056 => (R => 255, G => 0, B => 0), 2057 => (R => 255, G => 0, B => 0), 2058 => (R => 255, G => 0, B => 0), 2059 => (R => 255, G => 0, B => 0), 2060 => (R => 255, G => 0, B => 0), 2061 => (R => 255, G => 0, B => 0), 2062 => (R => 255, G => 0, B => 0), 2063 => (R => 255, G => 0, B => 0), 2064 => (R => 255, G => 0, B => 0), 2065 => (R => 255, G => 0, B => 0), 2066 => (R => 255, G => 0, B => 0), 2067 => (R => 255, G => 0, B => 0), 2068 => (R => 255, G => 0, B => 0), 2069 => (R => 255, G => 0, B => 0), 2070 => (R => 255, G => 0, B => 0), 2071 => (R => 255, G => 0, B => 0), 2072 => (R => 255, G => 0, B => 0), 2073 => (R => 255, G => 0, B => 0), 2074 => (R => 255, G => 0, B => 0), 2075 => (R => 255, G => 0, B => 0), 2076 => (R => 255, G => 0, B => 0), 2077 => (R => 255, G => 0, B => 0), 2078 => (R => 255, G => 0, B => 0), 2079 => (R => 255, G => 0, B => 0), 2080 => (R => 255, G => 0, B => 0), 2081 => (R => 255, G => 0, B => 0), 2082 => (R => 255, G => 0, B => 0), 2083 => (R => 255, G => 0, B => 0), 2084 => (R => 255, G => 0, B => 0), 2085 => (R => 255, G => 0, B => 0), 2086 => (R => 255, G => 0, B => 0), 2087 => (R => 255, G => 0, B => 0), 2088 => (R => 255, G => 0, B => 0), 2089 => (R => 255, G => 0, B => 0), 2090 => (R => 255, G => 0, B => 0), 2091 => (R => 255, G => 0, B => 0), 2092 => (R => 255, G => 0, B => 0), 2093 => (R => 255, G => 0, B => 0), 2094 => (R => 255, G => 0, B => 0), 2095 => (R => 255, G => 0, B => 0), 2096 => (R => 255, G => 0, B => 0), 2097 => (R => 255, G => 0, B => 0), 2098 => (R => 255, G => 0, B => 0), 2099 => (R => 255, G => 0, B => 0), 2100 => (R => 255, G => 0, B => 0), 2101 => (R => 255, G => 0, B => 0), 2102 => (R => 255, G => 0, B => 0), 2103 => (R => 255, G => 0, B => 0), 2104 => (R => 255, G => 0, B => 0), 2105 => (R => 255, G => 0, B => 0), 2106 => (R => 255, G => 0, B => 0), 2107 => (R => 255, G => 0, B => 0), 2108 => (R => 255, G => 0, B => 0), 2109 => (R => 255, G => 0, B => 0), 2110 => (R => 255, G => 0, B => 0), 2111 => (R => 255, G => 0, B => 0), 2112 => (R => 255, G => 0, B => 0), 2113 => (R => 255, G => 0, B => 0), 2114 => (R => 255, G => 0, B => 0), 2115 => (R => 255, G => 0, B => 0), 2116 => (R => 255, G => 0, B => 0), 2117 => (R => 255, G => 0, B => 0), 2118 => (R => 255, G => 0, B => 0), 2119 => (R => 255, G => 0, B => 0), 2120 => (R => 255, G => 0, B => 0), 2121 => (R => 255, G => 0, B => 0), 2122 => (R => 255, G => 0, B => 0), 2123 => (R => 255, G => 0, B => 0), 2124 => (R => 255, G => 0, B => 0), 2125 => (R => 255, G => 0, B => 0), 2126 => (R => 255, G => 0, B => 0), 2127 => (R => 255, G => 0, B => 0), 2128 => (R => 255, G => 0, B => 0), 2129 => (R => 255, G => 0, B => 0), 2130 => (R => 255, G => 0, B => 0), 2131 => (R => 255, G => 0, B => 0), 2132 => (R => 255, G => 0, B => 0), 2133 => (R => 255, G => 0, B => 0), 2134 => (R => 255, G => 0, B => 0), 2135 => (R => 255, G => 0, B => 0), 2136 => (R => 255, G => 0, B => 0), 2137 => (R => 255, G => 0, B => 0), 2138 => (R => 255, G => 0, B => 0), 2139 => (R => 255, G => 0, B => 0), 2140 => (R => 255, G => 0, B => 0), 2141 => (R => 255, G => 0, B => 0), 2142 => (R => 255, G => 0, B => 0), 2143 => (R => 255, G => 0, B => 0), 2144 => (R => 255, G => 0, B => 0), 2145 => (R => 255, G => 0, B => 0), 2146 => (R => 255, G => 0, B => 0), 2147 => (R => 255, G => 0, B => 0), 2148 => (R => 255, G => 0, B => 0), 2149 => (R => 255, G => 0, B => 0), 2150 => (R => 255, G => 0, B => 0), 2151 => (R => 255, G => 0, B => 0), 2152 => (R => 255, G => 0, B => 0), 2153 => (R => 255, G => 0, B => 0), 2154 => (R => 255, G => 0, B => 0), 2155 => (R => 255, G => 0, B => 0), 2156 => (R => 255, G => 0, B => 0), 2157 => (R => 255, G => 0, B => 0), 2158 => (R => 255, G => 0, B => 0), 2159 => (R => 255, G => 0, B => 0), 2160 => (R => 255, G => 0, B => 0), 2161 => (R => 255, G => 0, B => 0), 2162 => (R => 255, G => 0, B => 0), 2163 => (R => 255, G => 0, B => 0), 2164 => (R => 255, G => 0, B => 0), 2165 => (R => 255, G => 0, B => 0), 2166 => (R => 255, G => 0, B => 0), 2167 => (R => 255, G => 0, B => 0), 2168 => (R => 255, G => 0, B => 0), 2169 => (R => 255, G => 0, B => 0), 2170 => (R => 255, G => 0, B => 0), 2171 => (R => 255, G => 0, B => 0), 2172 => (R => 255, G => 0, B => 0), 2173 => (R => 255, G => 0, B => 0), 2174 => (R => 255, G => 0, B => 0), 2175 => (R => 255, G => 0, B => 0), 2176 => (R => 255, G => 0, B => 0), 2177 => (R => 255, G => 0, B => 0), 2178 => (R => 255, G => 0, B => 0), 2179 => (R => 255, G => 0, B => 0), 2180 => (R => 255, G => 0, B => 0), 2181 => (R => 255, G => 0, B => 0), 2182 => (R => 255, G => 0, B => 0), 2183 => (R => 255, G => 0, B => 0), 2184 => (R => 255, G => 0, B => 0), 2185 => (R => 255, G => 0, B => 0), 2186 => (R => 255, G => 0, B => 0), 2187 => (R => 255, G => 0, B => 0), 2188 => (R => 255, G => 0, B => 0), 2189 => (R => 255, G => 0, B => 0), 2190 => (R => 255, G => 0, B => 0), 2191 => (R => 255, G => 0, B => 0), 2192 => (R => 255, G => 0, B => 0), 2193 => (R => 255, G => 0, B => 0), 2194 => (R => 255, G => 0, B => 0), 2195 => (R => 0, G => 0, B => 0), 2196 => (R => 0, G => 0, B => 0), 2197 => (R => 0, G => 0, B => 0), 2198 => (R => 0, G => 0, B => 0), 2199 => (R => 0, G => 0, B => 0), 2200 => (R => 0, G => 0, B => 0), 2201 => (R => 0, G => 0, B => 0), 2202 => (R => 0, G => 0, B => 0), 2203 => (R => 0, G => 0, B => 0), 2204 => (R => 0, G => 0, B => 0), 2205 => (R => 0, G => 0, B => 0), 2206 => (R => 0, G => 0, B => 0), 2207 => (R => 0, G => 0, B => 0), 2208 => (R => 255, G => 0, B => 0), 2209 => (R => 255, G => 0, B => 0), 2210 => (R => 255, G => 0, B => 0), 2211 => (R => 255, G => 0, B => 0), 2212 => (R => 255, G => 0, B => 0), 2213 => (R => 255, G => 0, B => 0), 2214 => (R => 255, G => 0, B => 0), 2215 => (R => 255, G => 0, B => 0), 2216 => (R => 255, G => 0, B => 0), 2217 => (R => 255, G => 0, B => 0), 2218 => (R => 255, G => 0, B => 0), 2219 => (R => 255, G => 0, B => 0), 2220 => (R => 255, G => 0, B => 0), 2221 => (R => 255, G => 0, B => 0), 2222 => (R => 255, G => 0, B => 0), 2223 => (R => 255, G => 0, B => 0), 2224 => (R => 255, G => 0, B => 0), 2225 => (R => 255, G => 0, B => 0), 2226 => (R => 255, G => 0, B => 0), 2227 => (R => 255, G => 0, B => 0), 2228 => (R => 255, G => 0, B => 0), 2229 => (R => 255, G => 0, B => 0), 2230 => (R => 255, G => 0, B => 0), 2231 => (R => 255, G => 0, B => 0), 2232 => (R => 255, G => 0, B => 0), 2233 => (R => 255, G => 0, B => 0), 2234 => (R => 255, G => 0, B => 0), 2235 => (R => 255, G => 0, B => 0), 2236 => (R => 255, G => 0, B => 0), 2237 => (R => 255, G => 0, B => 0), 2238 => (R => 255, G => 0, B => 0), 2239 => (R => 255, G => 0, B => 0), 2240 => (R => 255, G => 0, B => 0), 2241 => (R => 255, G => 0, B => 0), 2242 => (R => 255, G => 0, B => 0), 2243 => (R => 255, G => 0, B => 0), 2244 => (R => 255, G => 0, B => 0), 2245 => (R => 255, G => 0, B => 0), 2246 => (R => 255, G => 0, B => 0), 2247 => (R => 255, G => 0, B => 0), 2248 => (R => 255, G => 0, B => 0), 2249 => (R => 255, G => 0, B => 0), 2250 => (R => 255, G => 0, B => 0), 2251 => (R => 255, G => 0, B => 0), 2252 => (R => 255, G => 0, B => 0), 2253 => (R => 255, G => 0, B => 0), 2254 => (R => 255, G => 0, B => 0), 2255 => (R => 255, G => 0, B => 0), 2256 => (R => 255, G => 0, B => 0), 2257 => (R => 255, G => 0, B => 0), 2258 => (R => 255, G => 0, B => 0), 2259 => (R => 255, G => 0, B => 0), 2260 => (R => 255, G => 0, B => 0), 2261 => (R => 255, G => 0, B => 0), 2262 => (R => 255, G => 0, B => 0), 2263 => (R => 255, G => 0, B => 0), 2264 => (R => 255, G => 0, B => 0), 2265 => (R => 255, G => 0, B => 0), 2266 => (R => 255, G => 0, B => 0), 2267 => (R => 255, G => 0, B => 0), 2268 => (R => 255, G => 0, B => 0), 2269 => (R => 255, G => 0, B => 0), 2270 => (R => 255, G => 0, B => 0), 2271 => (R => 255, G => 0, B => 0), 2272 => (R => 255, G => 0, B => 0), 2273 => (R => 255, G => 0, B => 0), 2274 => (R => 255, G => 0, B => 0), 2275 => (R => 255, G => 0, B => 0), 2276 => (R => 255, G => 0, B => 0), 2277 => (R => 255, G => 0, B => 0), 2278 => (R => 255, G => 0, B => 0), 2279 => (R => 255, G => 0, B => 0), 2280 => (R => 255, G => 0, B => 0), 2281 => (R => 255, G => 0, B => 0), 2282 => (R => 255, G => 0, B => 0), 2283 => (R => 255, G => 0, B => 0), 2284 => (R => 255, G => 0, B => 0), 2285 => (R => 255, G => 0, B => 0), 2286 => (R => 255, G => 0, B => 0), 2287 => (R => 255, G => 0, B => 0), 2288 => (R => 255, G => 0, B => 0), 2289 => (R => 255, G => 0, B => 0), 2290 => (R => 255, G => 0, B => 0), 2291 => (R => 255, G => 0, B => 0), 2292 => (R => 255, G => 0, B => 0), 2293 => (R => 255, G => 0, B => 0), 2294 => (R => 255, G => 0, B => 0), 2295 => (R => 255, G => 0, B => 0), 2296 => (R => 255, G => 0, B => 0), 2297 => (R => 255, G => 0, B => 0), 2298 => (R => 255, G => 0, B => 0), 2299 => (R => 255, G => 0, B => 0), 2300 => (R => 255, G => 0, B => 0), 2301 => (R => 255, G => 0, B => 0), 2302 => (R => 255, G => 0, B => 0), 2303 => (R => 255, G => 0, B => 0), 2304 => (R => 255, G => 0, B => 0), 2305 => (R => 255, G => 0, B => 0), 2306 => (R => 255, G => 0, B => 0), 2307 => (R => 255, G => 0, B => 0), 2308 => (R => 255, G => 0, B => 0), 2309 => (R => 255, G => 0, B => 0), 2310 => (R => 255, G => 0, B => 0), 2311 => (R => 255, G => 0, B => 0), 2312 => (R => 255, G => 0, B => 0), 2313 => (R => 255, G => 0, B => 0), 2314 => (R => 255, G => 0, B => 0), 2315 => (R => 255, G => 0, B => 0), 2316 => (R => 255, G => 0, B => 0), 2317 => (R => 255, G => 0, B => 0), 2318 => (R => 255, G => 0, B => 0), 2319 => (R => 255, G => 0, B => 0), 2320 => (R => 255, G => 0, B => 0), 2321 => (R => 255, G => 0, B => 0), 2322 => (R => 255, G => 0, B => 0), 2323 => (R => 255, G => 0, B => 0), 2324 => (R => 255, G => 0, B => 0), 2325 => (R => 255, G => 0, B => 0), 2326 => (R => 255, G => 0, B => 0), 2327 => (R => 255, G => 0, B => 0), 2328 => (R => 255, G => 0, B => 0), 2329 => (R => 255, G => 0, B => 0), 2330 => (R => 255, G => 0, B => 0), 2331 => (R => 255, G => 0, B => 0), 2332 => (R => 255, G => 0, B => 0), 2333 => (R => 255, G => 0, B => 0), 2334 => (R => 255, G => 0, B => 0), 2335 => (R => 255, G => 0, B => 0), 2336 => (R => 255, G => 0, B => 0), 2337 => (R => 255, G => 0, B => 0), 2338 => (R => 255, G => 0, B => 0), 2339 => (R => 255, G => 0, B => 0), 2340 => (R => 255, G => 0, B => 0), 2341 => (R => 255, G => 0, B => 0), 2342 => (R => 255, G => 0, B => 0), 2343 => (R => 255, G => 0, B => 0), 2344 => (R => 255, G => 0, B => 0), 2345 => (R => 255, G => 0, B => 0), 2346 => (R => 255, G => 0, B => 0), 2347 => (R => 255, G => 0, B => 0), 2348 => (R => 255, G => 0, B => 0), 2349 => (R => 255, G => 0, B => 0), 2350 => (R => 255, G => 0, B => 0), 2351 => (R => 255, G => 0, B => 0), 2352 => (R => 255, G => 0, B => 0), 2353 => (R => 255, G => 0, B => 0), 2354 => (R => 255, G => 0, B => 0), 2355 => (R => 255, G => 0, B => 0), 2356 => (R => 255, G => 0, B => 0), 2357 => (R => 255, G => 0, B => 0), 2358 => (R => 255, G => 0, B => 0), 2359 => (R => 255, G => 0, B => 0), 2360 => (R => 255, G => 0, B => 0), 2361 => (R => 255, G => 0, B => 0), 2362 => (R => 255, G => 0, B => 0), 2363 => (R => 255, G => 0, B => 0), 2364 => (R => 255, G => 0, B => 0), 2365 => (R => 255, G => 0, B => 0), 2366 => (R => 255, G => 0, B => 0), 2367 => (R => 255, G => 0, B => 0), 2368 => (R => 255, G => 0, B => 0), 2369 => (R => 255, G => 0, B => 0), 2370 => (R => 255, G => 0, B => 0), 2371 => (R => 255, G => 0, B => 0), 2372 => (R => 255, G => 0, B => 0), 2373 => (R => 255, G => 0, B => 0), 2374 => (R => 255, G => 0, B => 0), 2375 => (R => 255, G => 0, B => 0), 2376 => (R => 255, G => 0, B => 0), 2377 => (R => 255, G => 0, B => 0), 2378 => (R => 255, G => 0, B => 0), 2379 => (R => 255, G => 0, B => 0), 2380 => (R => 255, G => 0, B => 0), 2381 => (R => 255, G => 0, B => 0), 2382 => (R => 255, G => 0, B => 0), 2383 => (R => 255, G => 0, B => 0), 2384 => (R => 255, G => 0, B => 0), 2385 => (R => 255, G => 0, B => 0), 2386 => (R => 255, G => 0, B => 0), 2387 => (R => 255, G => 0, B => 0), 2388 => (R => 255, G => 0, B => 0), 2389 => (R => 255, G => 0, B => 0), 2390 => (R => 255, G => 0, B => 0), 2391 => (R => 255, G => 0, B => 0), 2392 => (R => 255, G => 0, B => 0), 2393 => (R => 255, G => 0, B => 0), 2394 => (R => 0, G => 0, B => 0), 2395 => (R => 0, G => 0, B => 0), 2396 => (R => 0, G => 0, B => 0), 2397 => (R => 0, G => 0, B => 0), 2398 => (R => 0, G => 0, B => 0), 2399 => (R => 0, G => 0, B => 0), 2400 => (R => 0, G => 0, B => 0), 2401 => (R => 0, G => 0, B => 0), 2402 => (R => 0, G => 0, B => 0), 2403 => (R => 0, G => 0, B => 0), 2404 => (R => 0, G => 0, B => 0), 2405 => (R => 0, G => 0, B => 0), 2406 => (R => 0, G => 0, B => 0), 2407 => (R => 0, G => 0, B => 0), 2408 => (R => 0, G => 0, B => 0), 2409 => (R => 255, G => 0, B => 0), 2410 => (R => 255, G => 0, B => 0), 2411 => (R => 255, G => 0, B => 0), 2412 => (R => 255, G => 0, B => 0), 2413 => (R => 255, G => 0, B => 0), 2414 => (R => 255, G => 0, B => 0), 2415 => (R => 255, G => 0, B => 0), 2416 => (R => 255, G => 0, B => 0), 2417 => (R => 255, G => 0, B => 0), 2418 => (R => 255, G => 0, B => 0), 2419 => (R => 255, G => 0, B => 0), 2420 => (R => 255, G => 0, B => 0), 2421 => (R => 255, G => 0, B => 0), 2422 => (R => 255, G => 0, B => 0), 2423 => (R => 255, G => 0, B => 0), 2424 => (R => 255, G => 0, B => 0), 2425 => (R => 255, G => 0, B => 0), 2426 => (R => 255, G => 0, B => 0), 2427 => (R => 255, G => 0, B => 0), 2428 => (R => 255, G => 0, B => 0), 2429 => (R => 255, G => 0, B => 0), 2430 => (R => 255, G => 0, B => 0), 2431 => (R => 255, G => 0, B => 0), 2432 => (R => 255, G => 0, B => 0), 2433 => (R => 255, G => 0, B => 0), 2434 => (R => 255, G => 0, B => 0), 2435 => (R => 255, G => 0, B => 0), 2436 => (R => 255, G => 0, B => 0), 2437 => (R => 255, G => 0, B => 0), 2438 => (R => 255, G => 0, B => 0), 2439 => (R => 255, G => 0, B => 0), 2440 => (R => 255, G => 0, B => 0), 2441 => (R => 255, G => 0, B => 0), 2442 => (R => 255, G => 0, B => 0), 2443 => (R => 255, G => 0, B => 0), 2444 => (R => 255, G => 0, B => 0), 2445 => (R => 255, G => 0, B => 0), 2446 => (R => 255, G => 0, B => 0), 2447 => (R => 255, G => 0, B => 0), 2448 => (R => 255, G => 0, B => 0), 2449 => (R => 255, G => 0, B => 0), 2450 => (R => 255, G => 0, B => 0), 2451 => (R => 255, G => 0, B => 0), 2452 => (R => 255, G => 0, B => 0), 2453 => (R => 255, G => 0, B => 0), 2454 => (R => 255, G => 0, B => 0), 2455 => (R => 255, G => 0, B => 0), 2456 => (R => 255, G => 0, B => 0), 2457 => (R => 255, G => 0, B => 0), 2458 => (R => 255, G => 0, B => 0), 2459 => (R => 255, G => 0, B => 0), 2460 => (R => 255, G => 0, B => 0), 2461 => (R => 255, G => 0, B => 0), 2462 => (R => 255, G => 0, B => 0), 2463 => (R => 255, G => 0, B => 0), 2464 => (R => 255, G => 0, B => 0), 2465 => (R => 255, G => 0, B => 0), 2466 => (R => 255, G => 0, B => 0), 2467 => (R => 255, G => 0, B => 0), 2468 => (R => 255, G => 0, B => 0), 2469 => (R => 255, G => 0, B => 0), 2470 => (R => 255, G => 0, B => 0), 2471 => (R => 255, G => 0, B => 0), 2472 => (R => 255, G => 0, B => 0), 2473 => (R => 255, G => 0, B => 0), 2474 => (R => 255, G => 0, B => 0), 2475 => (R => 255, G => 0, B => 0), 2476 => (R => 255, G => 0, B => 0), 2477 => (R => 255, G => 0, B => 0), 2478 => (R => 255, G => 0, B => 0), 2479 => (R => 255, G => 0, B => 0), 2480 => (R => 255, G => 0, B => 0), 2481 => (R => 255, G => 0, B => 0), 2482 => (R => 255, G => 0, B => 0), 2483 => (R => 255, G => 0, B => 0), 2484 => (R => 255, G => 0, B => 0), 2485 => (R => 255, G => 0, B => 0), 2486 => (R => 255, G => 0, B => 0), 2487 => (R => 255, G => 0, B => 0), 2488 => (R => 255, G => 0, B => 0), 2489 => (R => 255, G => 0, B => 0), 2490 => (R => 255, G => 0, B => 0), 2491 => (R => 255, G => 0, B => 0), 2492 => (R => 255, G => 0, B => 0), 2493 => (R => 255, G => 0, B => 0), 2494 => (R => 255, G => 0, B => 0), 2495 => (R => 255, G => 0, B => 0), 2496 => (R => 255, G => 0, B => 0), 2497 => (R => 255, G => 0, B => 0), 2498 => (R => 255, G => 0, B => 0), 2499 => (R => 255, G => 0, B => 0), 2500 => (R => 255, G => 0, B => 0), 2501 => (R => 255, G => 0, B => 0), 2502 => (R => 255, G => 0, B => 0), 2503 => (R => 255, G => 0, B => 0), 2504 => (R => 255, G => 0, B => 0), 2505 => (R => 255, G => 0, B => 0), 2506 => (R => 255, G => 0, B => 0), 2507 => (R => 255, G => 0, B => 0), 2508 => (R => 255, G => 0, B => 0), 2509 => (R => 255, G => 0, B => 0), 2510 => (R => 255, G => 0, B => 0), 2511 => (R => 255, G => 0, B => 0), 2512 => (R => 255, G => 0, B => 0), 2513 => (R => 255, G => 0, B => 0), 2514 => (R => 255, G => 0, B => 0), 2515 => (R => 255, G => 0, B => 0), 2516 => (R => 255, G => 0, B => 0), 2517 => (R => 255, G => 0, B => 0), 2518 => (R => 255, G => 0, B => 0), 2519 => (R => 255, G => 0, B => 0), 2520 => (R => 255, G => 0, B => 0), 2521 => (R => 255, G => 0, B => 0), 2522 => (R => 255, G => 0, B => 0), 2523 => (R => 255, G => 0, B => 0), 2524 => (R => 255, G => 0, B => 0), 2525 => (R => 255, G => 0, B => 0), 2526 => (R => 255, G => 0, B => 0), 2527 => (R => 255, G => 0, B => 0), 2528 => (R => 255, G => 0, B => 0), 2529 => (R => 255, G => 0, B => 0), 2530 => (R => 255, G => 0, B => 0), 2531 => (R => 255, G => 0, B => 0), 2532 => (R => 255, G => 0, B => 0), 2533 => (R => 255, G => 0, B => 0), 2534 => (R => 255, G => 0, B => 0), 2535 => (R => 255, G => 0, B => 0), 2536 => (R => 255, G => 0, B => 0), 2537 => (R => 255, G => 0, B => 0), 2538 => (R => 255, G => 0, B => 0), 2539 => (R => 255, G => 0, B => 0), 2540 => (R => 255, G => 0, B => 0), 2541 => (R => 255, G => 0, B => 0), 2542 => (R => 255, G => 0, B => 0), 2543 => (R => 255, G => 0, B => 0), 2544 => (R => 255, G => 0, B => 0), 2545 => (R => 255, G => 0, B => 0), 2546 => (R => 255, G => 0, B => 0), 2547 => (R => 255, G => 0, B => 0), 2548 => (R => 255, G => 0, B => 0), 2549 => (R => 255, G => 0, B => 0), 2550 => (R => 255, G => 0, B => 0), 2551 => (R => 255, G => 0, B => 0), 2552 => (R => 255, G => 0, B => 0), 2553 => (R => 255, G => 0, B => 0), 2554 => (R => 255, G => 0, B => 0), 2555 => (R => 255, G => 0, B => 0), 2556 => (R => 255, G => 0, B => 0), 2557 => (R => 255, G => 0, B => 0), 2558 => (R => 255, G => 0, B => 0), 2559 => (R => 255, G => 0, B => 0), 2560 => (R => 255, G => 0, B => 0), 2561 => (R => 255, G => 0, B => 0), 2562 => (R => 255, G => 0, B => 0), 2563 => (R => 255, G => 0, B => 0), 2564 => (R => 255, G => 0, B => 0), 2565 => (R => 255, G => 0, B => 0), 2566 => (R => 255, G => 0, B => 0), 2567 => (R => 255, G => 0, B => 0), 2568 => (R => 255, G => 0, B => 0), 2569 => (R => 255, G => 0, B => 0), 2570 => (R => 255, G => 0, B => 0), 2571 => (R => 255, G => 0, B => 0), 2572 => (R => 255, G => 0, B => 0), 2573 => (R => 255, G => 0, B => 0), 2574 => (R => 255, G => 0, B => 0), 2575 => (R => 255, G => 0, B => 0), 2576 => (R => 255, G => 0, B => 0), 2577 => (R => 255, G => 0, B => 0), 2578 => (R => 255, G => 0, B => 0), 2579 => (R => 255, G => 0, B => 0), 2580 => (R => 255, G => 0, B => 0), 2581 => (R => 255, G => 0, B => 0), 2582 => (R => 255, G => 0, B => 0), 2583 => (R => 255, G => 0, B => 0), 2584 => (R => 255, G => 0, B => 0), 2585 => (R => 255, G => 0, B => 0), 2586 => (R => 255, G => 0, B => 0), 2587 => (R => 255, G => 0, B => 0), 2588 => (R => 255, G => 0, B => 0), 2589 => (R => 255, G => 0, B => 0), 2590 => (R => 255, G => 0, B => 0), 2591 => (R => 255, G => 0, B => 0), 2592 => (R => 255, G => 0, B => 0), 2593 => (R => 0, G => 0, B => 0), 2594 => (R => 0, G => 0, B => 0), 2595 => (R => 0, G => 0, B => 0), 2596 => (R => 0, G => 0, B => 0), 2597 => (R => 0, G => 0, B => 0), 2598 => (R => 0, G => 0, B => 0), 2599 => (R => 0, G => 0, B => 0), 2600 => (R => 0, G => 0, B => 0), 2601 => (R => 0, G => 0, B => 0), 2602 => (R => 0, G => 0, B => 0), 2603 => (R => 0, G => 0, B => 0), 2604 => (R => 0, G => 0, B => 0), 2605 => (R => 0, G => 0, B => 0), 2606 => (R => 0, G => 0, B => 0), 2607 => (R => 0, G => 0, B => 0), 2608 => (R => 0, G => 0, B => 0), 2609 => (R => 0, G => 0, B => 0), 2610 => (R => 255, G => 0, B => 0), 2611 => (R => 255, G => 0, B => 0), 2612 => (R => 255, G => 0, B => 0), 2613 => (R => 255, G => 0, B => 0), 2614 => (R => 255, G => 0, B => 0), 2615 => (R => 255, G => 0, B => 0), 2616 => (R => 255, G => 0, B => 0), 2617 => (R => 255, G => 0, B => 0), 2618 => (R => 255, G => 0, B => 0), 2619 => (R => 255, G => 0, B => 0), 2620 => (R => 255, G => 0, B => 0), 2621 => (R => 255, G => 0, B => 0), 2622 => (R => 255, G => 0, B => 0), 2623 => (R => 255, G => 0, B => 0), 2624 => (R => 255, G => 0, B => 0), 2625 => (R => 255, G => 0, B => 0), 2626 => (R => 255, G => 0, B => 0), 2627 => (R => 255, G => 0, B => 0), 2628 => (R => 255, G => 0, B => 0), 2629 => (R => 255, G => 0, B => 0), 2630 => (R => 255, G => 0, B => 0), 2631 => (R => 255, G => 0, B => 0), 2632 => (R => 255, G => 0, B => 0), 2633 => (R => 255, G => 0, B => 0), 2634 => (R => 255, G => 0, B => 0), 2635 => (R => 255, G => 0, B => 0), 2636 => (R => 255, G => 0, B => 0), 2637 => (R => 255, G => 0, B => 0), 2638 => (R => 255, G => 0, B => 0), 2639 => (R => 255, G => 0, B => 0), 2640 => (R => 255, G => 0, B => 0), 2641 => (R => 255, G => 0, B => 0), 2642 => (R => 255, G => 0, B => 0), 2643 => (R => 255, G => 0, B => 0), 2644 => (R => 255, G => 0, B => 0), 2645 => (R => 255, G => 0, B => 0), 2646 => (R => 255, G => 0, B => 0), 2647 => (R => 255, G => 0, B => 0), 2648 => (R => 255, G => 0, B => 0), 2649 => (R => 255, G => 0, B => 0), 2650 => (R => 255, G => 0, B => 0), 2651 => (R => 255, G => 0, B => 0), 2652 => (R => 255, G => 0, B => 0), 2653 => (R => 255, G => 0, B => 0), 2654 => (R => 255, G => 0, B => 0), 2655 => (R => 255, G => 0, B => 0), 2656 => (R => 255, G => 0, B => 0), 2657 => (R => 255, G => 0, B => 0), 2658 => (R => 255, G => 0, B => 0), 2659 => (R => 255, G => 0, B => 0), 2660 => (R => 255, G => 0, B => 0), 2661 => (R => 255, G => 0, B => 0), 2662 => (R => 255, G => 0, B => 0), 2663 => (R => 255, G => 0, B => 0), 2664 => (R => 255, G => 0, B => 0), 2665 => (R => 255, G => 0, B => 0), 2666 => (R => 255, G => 0, B => 0), 2667 => (R => 255, G => 0, B => 0), 2668 => (R => 255, G => 0, B => 0), 2669 => (R => 255, G => 0, B => 0), 2670 => (R => 255, G => 0, B => 0), 2671 => (R => 255, G => 0, B => 0), 2672 => (R => 255, G => 0, B => 0), 2673 => (R => 255, G => 0, B => 0), 2674 => (R => 255, G => 0, B => 0), 2675 => (R => 255, G => 0, B => 0), 2676 => (R => 255, G => 0, B => 0), 2677 => (R => 255, G => 0, B => 0), 2678 => (R => 255, G => 0, B => 0), 2679 => (R => 255, G => 0, B => 0), 2680 => (R => 255, G => 0, B => 0), 2681 => (R => 255, G => 0, B => 0), 2682 => (R => 255, G => 0, B => 0), 2683 => (R => 255, G => 0, B => 0), 2684 => (R => 255, G => 0, B => 0), 2685 => (R => 255, G => 0, B => 0), 2686 => (R => 255, G => 0, B => 0), 2687 => (R => 255, G => 0, B => 0), 2688 => (R => 255, G => 0, B => 0), 2689 => (R => 255, G => 0, B => 0), 2690 => (R => 255, G => 0, B => 0), 2691 => (R => 255, G => 0, B => 0), 2692 => (R => 255, G => 0, B => 0), 2693 => (R => 255, G => 0, B => 0), 2694 => (R => 255, G => 0, B => 0), 2695 => (R => 255, G => 0, B => 0), 2696 => (R => 255, G => 0, B => 0), 2697 => (R => 255, G => 0, B => 0), 2698 => (R => 255, G => 0, B => 0), 2699 => (R => 255, G => 0, B => 0), 2700 => (R => 255, G => 0, B => 0), 2701 => (R => 255, G => 0, B => 0), 2702 => (R => 255, G => 0, B => 0), 2703 => (R => 255, G => 0, B => 0), 2704 => (R => 255, G => 0, B => 0), 2705 => (R => 255, G => 0, B => 0), 2706 => (R => 255, G => 0, B => 0), 2707 => (R => 255, G => 0, B => 0), 2708 => (R => 255, G => 0, B => 0), 2709 => (R => 255, G => 0, B => 0), 2710 => (R => 255, G => 0, B => 0), 2711 => (R => 255, G => 0, B => 0), 2712 => (R => 255, G => 0, B => 0), 2713 => (R => 255, G => 0, B => 0), 2714 => (R => 255, G => 0, B => 0), 2715 => (R => 255, G => 0, B => 0), 2716 => (R => 255, G => 0, B => 0), 2717 => (R => 255, G => 0, B => 0), 2718 => (R => 255, G => 0, B => 0), 2719 => (R => 255, G => 0, B => 0), 2720 => (R => 255, G => 0, B => 0), 2721 => (R => 255, G => 0, B => 0), 2722 => (R => 255, G => 0, B => 0), 2723 => (R => 255, G => 0, B => 0), 2724 => (R => 255, G => 0, B => 0), 2725 => (R => 255, G => 0, B => 0), 2726 => (R => 255, G => 0, B => 0), 2727 => (R => 255, G => 0, B => 0), 2728 => (R => 255, G => 0, B => 0), 2729 => (R => 255, G => 0, B => 0), 2730 => (R => 255, G => 0, B => 0), 2731 => (R => 255, G => 0, B => 0), 2732 => (R => 255, G => 0, B => 0), 2733 => (R => 255, G => 0, B => 0), 2734 => (R => 255, G => 0, B => 0), 2735 => (R => 255, G => 0, B => 0), 2736 => (R => 255, G => 0, B => 0), 2737 => (R => 255, G => 0, B => 0), 2738 => (R => 255, G => 0, B => 0), 2739 => (R => 255, G => 0, B => 0), 2740 => (R => 255, G => 0, B => 0), 2741 => (R => 255, G => 0, B => 0), 2742 => (R => 255, G => 0, B => 0), 2743 => (R => 255, G => 0, B => 0), 2744 => (R => 255, G => 0, B => 0), 2745 => (R => 255, G => 0, B => 0), 2746 => (R => 255, G => 0, B => 0), 2747 => (R => 255, G => 0, B => 0), 2748 => (R => 255, G => 0, B => 0), 2749 => (R => 255, G => 0, B => 0), 2750 => (R => 255, G => 0, B => 0), 2751 => (R => 255, G => 0, B => 0), 2752 => (R => 255, G => 0, B => 0), 2753 => (R => 255, G => 0, B => 0), 2754 => (R => 255, G => 0, B => 0), 2755 => (R => 255, G => 0, B => 0), 2756 => (R => 255, G => 0, B => 0), 2757 => (R => 255, G => 0, B => 0), 2758 => (R => 255, G => 0, B => 0), 2759 => (R => 255, G => 0, B => 0), 2760 => (R => 255, G => 0, B => 0), 2761 => (R => 255, G => 0, B => 0), 2762 => (R => 255, G => 0, B => 0), 2763 => (R => 255, G => 0, B => 0), 2764 => (R => 255, G => 0, B => 0), 2765 => (R => 255, G => 0, B => 0), 2766 => (R => 255, G => 0, B => 0), 2767 => (R => 255, G => 0, B => 0), 2768 => (R => 255, G => 0, B => 0), 2769 => (R => 255, G => 0, B => 0), 2770 => (R => 255, G => 0, B => 0), 2771 => (R => 255, G => 0, B => 0), 2772 => (R => 255, G => 0, B => 0), 2773 => (R => 255, G => 0, B => 0), 2774 => (R => 255, G => 0, B => 0), 2775 => (R => 255, G => 0, B => 0), 2776 => (R => 255, G => 0, B => 0), 2777 => (R => 255, G => 0, B => 0), 2778 => (R => 255, G => 0, B => 0), 2779 => (R => 255, G => 0, B => 0), 2780 => (R => 255, G => 0, B => 0), 2781 => (R => 255, G => 0, B => 0), 2782 => (R => 255, G => 0, B => 0), 2783 => (R => 255, G => 0, B => 0), 2784 => (R => 255, G => 0, B => 0), 2785 => (R => 255, G => 0, B => 0), 2786 => (R => 255, G => 0, B => 0), 2787 => (R => 255, G => 0, B => 0), 2788 => (R => 255, G => 0, B => 0), 2789 => (R => 255, G => 0, B => 0), 2790 => (R => 255, G => 0, B => 0), 2791 => (R => 255, G => 0, B => 0), 2792 => (R => 0, G => 0, B => 0), 2793 => (R => 0, G => 0, B => 0), 2794 => (R => 0, G => 0, B => 0), 2795 => (R => 0, G => 0, B => 0), 2796 => (R => 0, G => 0, B => 0), 2797 => (R => 0, G => 0, B => 0), 2798 => (R => 0, G => 0, B => 0), 2799 => (R => 0, G => 0, B => 0), 2800 => (R => 0, G => 0, B => 0), 2801 => (R => 0, G => 0, B => 0), 2802 => (R => 0, G => 0, B => 0), 2803 => (R => 0, G => 0, B => 0), 2804 => (R => 0, G => 0, B => 0), 2805 => (R => 0, G => 0, B => 0), 2806 => (R => 0, G => 0, B => 0), 2807 => (R => 0, G => 0, B => 0), 2808 => (R => 0, G => 0, B => 0), 2809 => (R => 0, G => 0, B => 0), 2810 => (R => 0, G => 0, B => 0), 2811 => (R => 255, G => 0, B => 0), 2812 => (R => 255, G => 0, B => 0), 2813 => (R => 255, G => 0, B => 0), 2814 => (R => 255, G => 0, B => 0), 2815 => (R => 255, G => 0, B => 0), 2816 => (R => 255, G => 0, B => 0), 2817 => (R => 255, G => 0, B => 0), 2818 => (R => 255, G => 0, B => 0), 2819 => (R => 255, G => 0, B => 0), 2820 => (R => 255, G => 0, B => 0), 2821 => (R => 255, G => 0, B => 0), 2822 => (R => 255, G => 0, B => 0), 2823 => (R => 255, G => 0, B => 0), 2824 => (R => 255, G => 0, B => 0), 2825 => (R => 255, G => 0, B => 0), 2826 => (R => 255, G => 0, B => 0), 2827 => (R => 255, G => 0, B => 0), 2828 => (R => 255, G => 0, B => 0), 2829 => (R => 255, G => 0, B => 0), 2830 => (R => 255, G => 0, B => 0), 2831 => (R => 255, G => 0, B => 0), 2832 => (R => 255, G => 0, B => 0), 2833 => (R => 255, G => 0, B => 0), 2834 => (R => 255, G => 0, B => 0), 2835 => (R => 255, G => 0, B => 0), 2836 => (R => 255, G => 0, B => 0), 2837 => (R => 255, G => 0, B => 0), 2838 => (R => 255, G => 0, B => 0), 2839 => (R => 255, G => 0, B => 0), 2840 => (R => 255, G => 0, B => 0), 2841 => (R => 255, G => 0, B => 0), 2842 => (R => 255, G => 0, B => 0), 2843 => (R => 255, G => 0, B => 0), 2844 => (R => 255, G => 0, B => 0), 2845 => (R => 255, G => 0, B => 0), 2846 => (R => 255, G => 0, B => 0), 2847 => (R => 255, G => 0, B => 0), 2848 => (R => 255, G => 0, B => 0), 2849 => (R => 255, G => 0, B => 0), 2850 => (R => 255, G => 0, B => 0), 2851 => (R => 255, G => 0, B => 0), 2852 => (R => 255, G => 0, B => 0), 2853 => (R => 255, G => 0, B => 0), 2854 => (R => 255, G => 0, B => 0), 2855 => (R => 255, G => 0, B => 0), 2856 => (R => 255, G => 0, B => 0), 2857 => (R => 255, G => 0, B => 0), 2858 => (R => 255, G => 0, B => 0), 2859 => (R => 255, G => 0, B => 0), 2860 => (R => 255, G => 0, B => 0), 2861 => (R => 255, G => 0, B => 0), 2862 => (R => 255, G => 0, B => 0), 2863 => (R => 255, G => 0, B => 0), 2864 => (R => 255, G => 0, B => 0), 2865 => (R => 255, G => 0, B => 0), 2866 => (R => 255, G => 0, B => 0), 2867 => (R => 255, G => 0, B => 0), 2868 => (R => 255, G => 0, B => 0), 2869 => (R => 255, G => 0, B => 0), 2870 => (R => 255, G => 0, B => 0), 2871 => (R => 255, G => 0, B => 0), 2872 => (R => 255, G => 0, B => 0), 2873 => (R => 255, G => 0, B => 0), 2874 => (R => 255, G => 0, B => 0), 2875 => (R => 255, G => 0, B => 0), 2876 => (R => 255, G => 0, B => 0), 2877 => (R => 255, G => 0, B => 0), 2878 => (R => 255, G => 0, B => 0), 2879 => (R => 255, G => 0, B => 0), 2880 => (R => 255, G => 0, B => 0), 2881 => (R => 255, G => 0, B => 0), 2882 => (R => 255, G => 0, B => 0), 2883 => (R => 255, G => 0, B => 0), 2884 => (R => 255, G => 0, B => 0), 2885 => (R => 255, G => 0, B => 0), 2886 => (R => 255, G => 0, B => 0), 2887 => (R => 255, G => 0, B => 0), 2888 => (R => 255, G => 0, B => 0), 2889 => (R => 255, G => 0, B => 0), 2890 => (R => 255, G => 0, B => 0), 2891 => (R => 255, G => 0, B => 0), 2892 => (R => 255, G => 0, B => 0), 2893 => (R => 255, G => 0, B => 0), 2894 => (R => 255, G => 0, B => 0), 2895 => (R => 255, G => 0, B => 0), 2896 => (R => 255, G => 0, B => 0), 2897 => (R => 255, G => 0, B => 0), 2898 => (R => 255, G => 0, B => 0), 2899 => (R => 255, G => 0, B => 0), 2900 => (R => 255, G => 0, B => 0), 2901 => (R => 255, G => 0, B => 0), 2902 => (R => 255, G => 0, B => 0), 2903 => (R => 255, G => 0, B => 0), 2904 => (R => 255, G => 0, B => 0), 2905 => (R => 255, G => 0, B => 0), 2906 => (R => 255, G => 0, B => 0), 2907 => (R => 255, G => 0, B => 0), 2908 => (R => 255, G => 0, B => 0), 2909 => (R => 255, G => 0, B => 0), 2910 => (R => 255, G => 0, B => 0), 2911 => (R => 255, G => 0, B => 0), 2912 => (R => 255, G => 0, B => 0), 2913 => (R => 255, G => 0, B => 0), 2914 => (R => 255, G => 0, B => 0), 2915 => (R => 255, G => 0, B => 0), 2916 => (R => 255, G => 0, B => 0), 2917 => (R => 255, G => 0, B => 0), 2918 => (R => 255, G => 0, B => 0), 2919 => (R => 255, G => 0, B => 0), 2920 => (R => 255, G => 0, B => 0), 2921 => (R => 255, G => 0, B => 0), 2922 => (R => 255, G => 0, B => 0), 2923 => (R => 255, G => 0, B => 0), 2924 => (R => 255, G => 0, B => 0), 2925 => (R => 255, G => 0, B => 0), 2926 => (R => 255, G => 0, B => 0), 2927 => (R => 255, G => 0, B => 0), 2928 => (R => 255, G => 0, B => 0), 2929 => (R => 255, G => 0, B => 0), 2930 => (R => 255, G => 0, B => 0), 2931 => (R => 255, G => 0, B => 0), 2932 => (R => 255, G => 0, B => 0), 2933 => (R => 255, G => 0, B => 0), 2934 => (R => 255, G => 0, B => 0), 2935 => (R => 255, G => 0, B => 0), 2936 => (R => 255, G => 0, B => 0), 2937 => (R => 255, G => 0, B => 0), 2938 => (R => 255, G => 0, B => 0), 2939 => (R => 255, G => 0, B => 0), 2940 => (R => 255, G => 0, B => 0), 2941 => (R => 255, G => 0, B => 0), 2942 => (R => 255, G => 0, B => 0), 2943 => (R => 255, G => 0, B => 0), 2944 => (R => 255, G => 0, B => 0), 2945 => (R => 255, G => 0, B => 0), 2946 => (R => 255, G => 0, B => 0), 2947 => (R => 255, G => 0, B => 0), 2948 => (R => 255, G => 0, B => 0), 2949 => (R => 255, G => 0, B => 0), 2950 => (R => 255, G => 0, B => 0), 2951 => (R => 255, G => 0, B => 0), 2952 => (R => 255, G => 0, B => 0), 2953 => (R => 255, G => 0, B => 0), 2954 => (R => 255, G => 0, B => 0), 2955 => (R => 255, G => 0, B => 0), 2956 => (R => 255, G => 0, B => 0), 2957 => (R => 255, G => 0, B => 0), 2958 => (R => 255, G => 0, B => 0), 2959 => (R => 255, G => 0, B => 0), 2960 => (R => 255, G => 0, B => 0), 2961 => (R => 255, G => 0, B => 0), 2962 => (R => 255, G => 0, B => 0), 2963 => (R => 255, G => 0, B => 0), 2964 => (R => 255, G => 0, B => 0), 2965 => (R => 255, G => 0, B => 0), 2966 => (R => 255, G => 0, B => 0), 2967 => (R => 255, G => 0, B => 0), 2968 => (R => 255, G => 0, B => 0), 2969 => (R => 255, G => 0, B => 0), 2970 => (R => 255, G => 0, B => 0), 2971 => (R => 255, G => 0, B => 0), 2972 => (R => 255, G => 0, B => 0), 2973 => (R => 255, G => 0, B => 0), 2974 => (R => 255, G => 0, B => 0), 2975 => (R => 255, G => 0, B => 0), 2976 => (R => 255, G => 0, B => 0), 2977 => (R => 255, G => 0, B => 0), 2978 => (R => 255, G => 0, B => 0), 2979 => (R => 255, G => 0, B => 0), 2980 => (R => 255, G => 0, B => 0), 2981 => (R => 255, G => 0, B => 0), 2982 => (R => 255, G => 0, B => 0), 2983 => (R => 255, G => 0, B => 0), 2984 => (R => 255, G => 0, B => 0), 2985 => (R => 255, G => 0, B => 0), 2986 => (R => 255, G => 0, B => 0), 2987 => (R => 255, G => 0, B => 0), 2988 => (R => 255, G => 0, B => 0), 2989 => (R => 255, G => 0, B => 0), 2990 => (R => 255, G => 0, B => 0), 2991 => (R => 0, G => 0, B => 0), 2992 => (R => 0, G => 0, B => 0), 2993 => (R => 0, G => 0, B => 0), 2994 => (R => 0, G => 0, B => 0), 2995 => (R => 0, G => 0, B => 0), 2996 => (R => 0, G => 0, B => 0), 2997 => (R => 0, G => 0, B => 0), 2998 => (R => 0, G => 0, B => 0), 2999 => (R => 0, G => 0, B => 0), 3000 => (R => 0, G => 0, B => 0), 3001 => (R => 0, G => 0, B => 0), 3002 => (R => 0, G => 0, B => 0), 3003 => (R => 0, G => 0, B => 0), 3004 => (R => 0, G => 0, B => 0), 3005 => (R => 0, G => 0, B => 0), 3006 => (R => 0, G => 0, B => 0), 3007 => (R => 0, G => 0, B => 0), 3008 => (R => 0, G => 0, B => 0), 3009 => (R => 0, G => 0, B => 0), 3010 => (R => 0, G => 0, B => 0), 3011 => (R => 0, G => 0, B => 0), 3012 => (R => 255, G => 0, B => 0), 3013 => (R => 255, G => 0, B => 0), 3014 => (R => 255, G => 0, B => 0), 3015 => (R => 255, G => 0, B => 0), 3016 => (R => 255, G => 0, B => 0), 3017 => (R => 255, G => 0, B => 0), 3018 => (R => 255, G => 0, B => 0), 3019 => (R => 255, G => 0, B => 0), 3020 => (R => 255, G => 0, B => 0), 3021 => (R => 255, G => 0, B => 0), 3022 => (R => 255, G => 0, B => 0), 3023 => (R => 255, G => 0, B => 0), 3024 => (R => 255, G => 0, B => 0), 3025 => (R => 255, G => 0, B => 0), 3026 => (R => 255, G => 0, B => 0), 3027 => (R => 255, G => 0, B => 0), 3028 => (R => 255, G => 0, B => 0), 3029 => (R => 255, G => 0, B => 0), 3030 => (R => 255, G => 0, B => 0), 3031 => (R => 255, G => 0, B => 0), 3032 => (R => 255, G => 0, B => 0), 3033 => (R => 255, G => 0, B => 0), 3034 => (R => 255, G => 0, B => 0), 3035 => (R => 255, G => 0, B => 0), 3036 => (R => 255, G => 0, B => 0), 3037 => (R => 255, G => 0, B => 0), 3038 => (R => 255, G => 0, B => 0), 3039 => (R => 255, G => 0, B => 0), 3040 => (R => 255, G => 0, B => 0), 3041 => (R => 255, G => 0, B => 0), 3042 => (R => 255, G => 0, B => 0), 3043 => (R => 255, G => 0, B => 0), 3044 => (R => 255, G => 0, B => 0), 3045 => (R => 255, G => 0, B => 0), 3046 => (R => 255, G => 0, B => 0), 3047 => (R => 255, G => 0, B => 0), 3048 => (R => 255, G => 0, B => 0), 3049 => (R => 255, G => 0, B => 0), 3050 => (R => 255, G => 0, B => 0), 3051 => (R => 255, G => 0, B => 0), 3052 => (R => 255, G => 0, B => 0), 3053 => (R => 255, G => 0, B => 0), 3054 => (R => 255, G => 0, B => 0), 3055 => (R => 255, G => 0, B => 0), 3056 => (R => 255, G => 0, B => 0), 3057 => (R => 255, G => 0, B => 0), 3058 => (R => 255, G => 0, B => 0), 3059 => (R => 255, G => 0, B => 0), 3060 => (R => 255, G => 0, B => 0), 3061 => (R => 255, G => 0, B => 0), 3062 => (R => 255, G => 0, B => 0), 3063 => (R => 255, G => 0, B => 0), 3064 => (R => 255, G => 0, B => 0), 3065 => (R => 255, G => 0, B => 0), 3066 => (R => 255, G => 0, B => 0), 3067 => (R => 255, G => 0, B => 0), 3068 => (R => 255, G => 0, B => 0), 3069 => (R => 255, G => 0, B => 0), 3070 => (R => 255, G => 0, B => 0), 3071 => (R => 255, G => 0, B => 0), 3072 => (R => 255, G => 0, B => 0), 3073 => (R => 255, G => 0, B => 0), 3074 => (R => 255, G => 0, B => 0), 3075 => (R => 255, G => 0, B => 0), 3076 => (R => 255, G => 0, B => 0), 3077 => (R => 255, G => 0, B => 0), 3078 => (R => 255, G => 0, B => 0), 3079 => (R => 255, G => 0, B => 0), 3080 => (R => 255, G => 0, B => 0), 3081 => (R => 255, G => 0, B => 0), 3082 => (R => 255, G => 0, B => 0), 3083 => (R => 255, G => 0, B => 0), 3084 => (R => 255, G => 0, B => 0), 3085 => (R => 255, G => 0, B => 0), 3086 => (R => 255, G => 0, B => 0), 3087 => (R => 255, G => 0, B => 0), 3088 => (R => 255, G => 0, B => 0), 3089 => (R => 255, G => 0, B => 0), 3090 => (R => 255, G => 0, B => 0), 3091 => (R => 255, G => 0, B => 0), 3092 => (R => 255, G => 0, B => 0), 3093 => (R => 255, G => 0, B => 0), 3094 => (R => 255, G => 0, B => 0), 3095 => (R => 255, G => 0, B => 0), 3096 => (R => 255, G => 0, B => 0), 3097 => (R => 255, G => 0, B => 0), 3098 => (R => 255, G => 0, B => 0), 3099 => (R => 255, G => 0, B => 0), 3100 => (R => 255, G => 0, B => 0), 3101 => (R => 255, G => 0, B => 0), 3102 => (R => 255, G => 0, B => 0), 3103 => (R => 255, G => 0, B => 0), 3104 => (R => 255, G => 0, B => 0), 3105 => (R => 255, G => 0, B => 0), 3106 => (R => 255, G => 0, B => 0), 3107 => (R => 255, G => 0, B => 0), 3108 => (R => 255, G => 0, B => 0), 3109 => (R => 255, G => 0, B => 0), 3110 => (R => 255, G => 0, B => 0), 3111 => (R => 255, G => 0, B => 0), 3112 => (R => 255, G => 0, B => 0), 3113 => (R => 255, G => 0, B => 0), 3114 => (R => 255, G => 0, B => 0), 3115 => (R => 255, G => 0, B => 0), 3116 => (R => 255, G => 0, B => 0), 3117 => (R => 255, G => 0, B => 0), 3118 => (R => 255, G => 0, B => 0), 3119 => (R => 255, G => 0, B => 0), 3120 => (R => 255, G => 0, B => 0), 3121 => (R => 255, G => 0, B => 0), 3122 => (R => 255, G => 0, B => 0), 3123 => (R => 255, G => 0, B => 0), 3124 => (R => 255, G => 0, B => 0), 3125 => (R => 255, G => 0, B => 0), 3126 => (R => 255, G => 0, B => 0), 3127 => (R => 255, G => 0, B => 0), 3128 => (R => 255, G => 0, B => 0), 3129 => (R => 255, G => 0, B => 0), 3130 => (R => 255, G => 0, B => 0), 3131 => (R => 255, G => 0, B => 0), 3132 => (R => 255, G => 0, B => 0), 3133 => (R => 255, G => 0, B => 0), 3134 => (R => 255, G => 0, B => 0), 3135 => (R => 255, G => 0, B => 0), 3136 => (R => 255, G => 0, B => 0), 3137 => (R => 255, G => 0, B => 0), 3138 => (R => 255, G => 0, B => 0), 3139 => (R => 255, G => 0, B => 0), 3140 => (R => 255, G => 0, B => 0), 3141 => (R => 255, G => 0, B => 0), 3142 => (R => 255, G => 0, B => 0), 3143 => (R => 255, G => 0, B => 0), 3144 => (R => 255, G => 0, B => 0), 3145 => (R => 255, G => 0, B => 0), 3146 => (R => 255, G => 0, B => 0), 3147 => (R => 255, G => 0, B => 0), 3148 => (R => 255, G => 0, B => 0), 3149 => (R => 255, G => 0, B => 0), 3150 => (R => 255, G => 0, B => 0), 3151 => (R => 255, G => 0, B => 0), 3152 => (R => 255, G => 0, B => 0), 3153 => (R => 255, G => 0, B => 0), 3154 => (R => 255, G => 0, B => 0), 3155 => (R => 255, G => 0, B => 0), 3156 => (R => 255, G => 0, B => 0), 3157 => (R => 255, G => 0, B => 0), 3158 => (R => 255, G => 0, B => 0), 3159 => (R => 255, G => 0, B => 0), 3160 => (R => 255, G => 0, B => 0), 3161 => (R => 255, G => 0, B => 0), 3162 => (R => 255, G => 0, B => 0), 3163 => (R => 255, G => 0, B => 0), 3164 => (R => 255, G => 0, B => 0), 3165 => (R => 255, G => 0, B => 0), 3166 => (R => 255, G => 0, B => 0), 3167 => (R => 255, G => 0, B => 0), 3168 => (R => 255, G => 0, B => 0), 3169 => (R => 255, G => 0, B => 0), 3170 => (R => 255, G => 0, B => 0), 3171 => (R => 255, G => 0, B => 0), 3172 => (R => 255, G => 0, B => 0), 3173 => (R => 255, G => 0, B => 0), 3174 => (R => 255, G => 0, B => 0), 3175 => (R => 255, G => 0, B => 0), 3176 => (R => 255, G => 0, B => 0), 3177 => (R => 255, G => 0, B => 0), 3178 => (R => 255, G => 0, B => 0), 3179 => (R => 255, G => 0, B => 0), 3180 => (R => 255, G => 0, B => 0), 3181 => (R => 255, G => 0, B => 0), 3182 => (R => 255, G => 0, B => 0), 3183 => (R => 255, G => 0, B => 0), 3184 => (R => 255, G => 0, B => 0), 3185 => (R => 255, G => 0, B => 0), 3186 => (R => 255, G => 0, B => 0), 3187 => (R => 255, G => 0, B => 0), 3188 => (R => 255, G => 0, B => 0), 3189 => (R => 255, G => 0, B => 0), 3190 => (R => 0, G => 0, B => 0), 3191 => (R => 0, G => 0, B => 0), 3192 => (R => 0, G => 0, B => 0), 3193 => (R => 0, G => 0, B => 0), 3194 => (R => 0, G => 0, B => 0), 3195 => (R => 0, G => 0, B => 0), 3196 => (R => 0, G => 0, B => 0), 3197 => (R => 0, G => 0, B => 0), 3198 => (R => 0, G => 0, B => 0), 3199 => (R => 0, G => 0, B => 0), 3200 => (R => 0, G => 0, B => 0), 3201 => (R => 0, G => 0, B => 0), 3202 => (R => 0, G => 0, B => 0), 3203 => (R => 0, G => 0, B => 0), 3204 => (R => 0, G => 0, B => 0), 3205 => (R => 0, G => 0, B => 0), 3206 => (R => 0, G => 0, B => 0), 3207 => (R => 0, G => 0, B => 0), 3208 => (R => 0, G => 0, B => 0), 3209 => (R => 0, G => 0, B => 0), 3210 => (R => 0, G => 0, B => 0), 3211 => (R => 0, G => 0, B => 0), 3212 => (R => 0, G => 0, B => 0), 3213 => (R => 255, G => 0, B => 0), 3214 => (R => 255, G => 0, B => 0), 3215 => (R => 255, G => 0, B => 0), 3216 => (R => 255, G => 0, B => 0), 3217 => (R => 255, G => 0, B => 0), 3218 => (R => 255, G => 0, B => 0), 3219 => (R => 255, G => 0, B => 0), 3220 => (R => 255, G => 0, B => 0), 3221 => (R => 255, G => 0, B => 0), 3222 => (R => 255, G => 0, B => 0), 3223 => (R => 255, G => 0, B => 0), 3224 => (R => 255, G => 0, B => 0), 3225 => (R => 255, G => 0, B => 0), 3226 => (R => 255, G => 0, B => 0), 3227 => (R => 255, G => 0, B => 0), 3228 => (R => 255, G => 0, B => 0), 3229 => (R => 255, G => 0, B => 0), 3230 => (R => 255, G => 0, B => 0), 3231 => (R => 255, G => 0, B => 0), 3232 => (R => 255, G => 0, B => 0), 3233 => (R => 255, G => 0, B => 0), 3234 => (R => 255, G => 0, B => 0), 3235 => (R => 255, G => 0, B => 0), 3236 => (R => 255, G => 0, B => 0), 3237 => (R => 255, G => 0, B => 0), 3238 => (R => 255, G => 0, B => 0), 3239 => (R => 255, G => 0, B => 0), 3240 => (R => 255, G => 0, B => 0), 3241 => (R => 255, G => 0, B => 0), 3242 => (R => 255, G => 0, B => 0), 3243 => (R => 255, G => 0, B => 0), 3244 => (R => 255, G => 0, B => 0), 3245 => (R => 255, G => 0, B => 0), 3246 => (R => 255, G => 0, B => 0), 3247 => (R => 255, G => 0, B => 0), 3248 => (R => 255, G => 0, B => 0), 3249 => (R => 255, G => 0, B => 0), 3250 => (R => 255, G => 0, B => 0), 3251 => (R => 255, G => 0, B => 0), 3252 => (R => 255, G => 0, B => 0), 3253 => (R => 255, G => 0, B => 0), 3254 => (R => 255, G => 0, B => 0), 3255 => (R => 255, G => 0, B => 0), 3256 => (R => 255, G => 0, B => 0), 3257 => (R => 255, G => 0, B => 0), 3258 => (R => 255, G => 0, B => 0), 3259 => (R => 255, G => 0, B => 0), 3260 => (R => 255, G => 0, B => 0), 3261 => (R => 255, G => 0, B => 0), 3262 => (R => 255, G => 0, B => 0), 3263 => (R => 255, G => 0, B => 0), 3264 => (R => 255, G => 0, B => 0), 3265 => (R => 255, G => 0, B => 0), 3266 => (R => 255, G => 0, B => 0), 3267 => (R => 255, G => 0, B => 0), 3268 => (R => 255, G => 0, B => 0), 3269 => (R => 255, G => 0, B => 0), 3270 => (R => 255, G => 0, B => 0), 3271 => (R => 255, G => 0, B => 0), 3272 => (R => 255, G => 0, B => 0), 3273 => (R => 255, G => 0, B => 0), 3274 => (R => 255, G => 0, B => 0), 3275 => (R => 255, G => 0, B => 0), 3276 => (R => 255, G => 0, B => 0), 3277 => (R => 255, G => 0, B => 0), 3278 => (R => 255, G => 0, B => 0), 3279 => (R => 255, G => 0, B => 0), 3280 => (R => 255, G => 0, B => 0), 3281 => (R => 255, G => 0, B => 0), 3282 => (R => 255, G => 0, B => 0), 3283 => (R => 255, G => 0, B => 0), 3284 => (R => 255, G => 0, B => 0), 3285 => (R => 255, G => 0, B => 0), 3286 => (R => 255, G => 0, B => 0), 3287 => (R => 255, G => 0, B => 0), 3288 => (R => 255, G => 0, B => 0), 3289 => (R => 255, G => 0, B => 0), 3290 => (R => 255, G => 0, B => 0), 3291 => (R => 255, G => 0, B => 0), 3292 => (R => 255, G => 0, B => 0), 3293 => (R => 255, G => 0, B => 0), 3294 => (R => 255, G => 0, B => 0), 3295 => (R => 255, G => 0, B => 0), 3296 => (R => 255, G => 0, B => 0), 3297 => (R => 255, G => 0, B => 0), 3298 => (R => 255, G => 0, B => 0), 3299 => (R => 255, G => 0, B => 0), 3300 => (R => 255, G => 0, B => 0), 3301 => (R => 255, G => 0, B => 0), 3302 => (R => 255, G => 0, B => 0), 3303 => (R => 255, G => 0, B => 0), 3304 => (R => 255, G => 0, B => 0), 3305 => (R => 255, G => 0, B => 0), 3306 => (R => 255, G => 0, B => 0), 3307 => (R => 255, G => 0, B => 0), 3308 => (R => 255, G => 0, B => 0), 3309 => (R => 255, G => 0, B => 0), 3310 => (R => 255, G => 0, B => 0), 3311 => (R => 255, G => 0, B => 0), 3312 => (R => 255, G => 0, B => 0), 3313 => (R => 255, G => 0, B => 0), 3314 => (R => 255, G => 0, B => 0), 3315 => (R => 255, G => 0, B => 0), 3316 => (R => 255, G => 0, B => 0), 3317 => (R => 255, G => 0, B => 0), 3318 => (R => 255, G => 0, B => 0), 3319 => (R => 255, G => 0, B => 0), 3320 => (R => 255, G => 0, B => 0), 3321 => (R => 255, G => 0, B => 0), 3322 => (R => 255, G => 0, B => 0), 3323 => (R => 255, G => 0, B => 0), 3324 => (R => 255, G => 0, B => 0), 3325 => (R => 255, G => 0, B => 0), 3326 => (R => 255, G => 0, B => 0), 3327 => (R => 255, G => 0, B => 0), 3328 => (R => 255, G => 0, B => 0), 3329 => (R => 255, G => 0, B => 0), 3330 => (R => 255, G => 0, B => 0), 3331 => (R => 255, G => 0, B => 0), 3332 => (R => 255, G => 0, B => 0), 3333 => (R => 255, G => 0, B => 0), 3334 => (R => 255, G => 0, B => 0), 3335 => (R => 255, G => 0, B => 0), 3336 => (R => 255, G => 0, B => 0), 3337 => (R => 255, G => 0, B => 0), 3338 => (R => 255, G => 0, B => 0), 3339 => (R => 255, G => 0, B => 0), 3340 => (R => 255, G => 0, B => 0), 3341 => (R => 255, G => 0, B => 0), 3342 => (R => 255, G => 0, B => 0), 3343 => (R => 255, G => 0, B => 0), 3344 => (R => 255, G => 0, B => 0), 3345 => (R => 255, G => 0, B => 0), 3346 => (R => 255, G => 0, B => 0), 3347 => (R => 255, G => 0, B => 0), 3348 => (R => 255, G => 0, B => 0), 3349 => (R => 255, G => 0, B => 0), 3350 => (R => 255, G => 0, B => 0), 3351 => (R => 255, G => 0, B => 0), 3352 => (R => 255, G => 0, B => 0), 3353 => (R => 255, G => 0, B => 0), 3354 => (R => 255, G => 0, B => 0), 3355 => (R => 255, G => 0, B => 0), 3356 => (R => 255, G => 0, B => 0), 3357 => (R => 255, G => 0, B => 0), 3358 => (R => 255, G => 0, B => 0), 3359 => (R => 255, G => 0, B => 0), 3360 => (R => 255, G => 0, B => 0), 3361 => (R => 255, G => 0, B => 0), 3362 => (R => 255, G => 0, B => 0), 3363 => (R => 255, G => 0, B => 0), 3364 => (R => 255, G => 0, B => 0), 3365 => (R => 255, G => 0, B => 0), 3366 => (R => 255, G => 0, B => 0), 3367 => (R => 255, G => 0, B => 0), 3368 => (R => 255, G => 0, B => 0), 3369 => (R => 255, G => 0, B => 0), 3370 => (R => 255, G => 0, B => 0), 3371 => (R => 255, G => 0, B => 0), 3372 => (R => 255, G => 0, B => 0), 3373 => (R => 255, G => 0, B => 0), 3374 => (R => 255, G => 0, B => 0), 3375 => (R => 255, G => 0, B => 0), 3376 => (R => 255, G => 0, B => 0), 3377 => (R => 255, G => 0, B => 0), 3378 => (R => 255, G => 0, B => 0), 3379 => (R => 255, G => 0, B => 0), 3380 => (R => 255, G => 0, B => 0), 3381 => (R => 255, G => 0, B => 0), 3382 => (R => 255, G => 0, B => 0), 3383 => (R => 255, G => 0, B => 0), 3384 => (R => 255, G => 0, B => 0), 3385 => (R => 255, G => 0, B => 0), 3386 => (R => 255, G => 0, B => 0), 3387 => (R => 255, G => 0, B => 0), 3388 => (R => 255, G => 0, B => 0), 3389 => (R => 0, G => 0, B => 0), 3390 => (R => 0, G => 0, B => 0), 3391 => (R => 0, G => 0, B => 0), 3392 => (R => 0, G => 0, B => 0), 3393 => (R => 0, G => 0, B => 0), 3394 => (R => 0, G => 0, B => 0), 3395 => (R => 0, G => 0, B => 0), 3396 => (R => 0, G => 0, B => 0), 3397 => (R => 0, G => 0, B => 0), 3398 => (R => 0, G => 0, B => 0), 3399 => (R => 0, G => 0, B => 0), 3400 => (R => 0, G => 0, B => 0), 3401 => (R => 0, G => 0, B => 0), 3402 => (R => 0, G => 0, B => 0), 3403 => (R => 0, G => 0, B => 0), 3404 => (R => 0, G => 0, B => 0), 3405 => (R => 0, G => 0, B => 0), 3406 => (R => 0, G => 0, B => 0), 3407 => (R => 0, G => 0, B => 0), 3408 => (R => 0, G => 0, B => 0), 3409 => (R => 0, G => 0, B => 0), 3410 => (R => 0, G => 0, B => 0), 3411 => (R => 0, G => 0, B => 0), 3412 => (R => 0, G => 0, B => 0), 3413 => (R => 0, G => 0, B => 0), 3414 => (R => 255, G => 0, B => 0), 3415 => (R => 255, G => 0, B => 0), 3416 => (R => 255, G => 0, B => 0), 3417 => (R => 255, G => 0, B => 0), 3418 => (R => 255, G => 0, B => 0), 3419 => (R => 255, G => 0, B => 0), 3420 => (R => 255, G => 0, B => 0), 3421 => (R => 255, G => 0, B => 0), 3422 => (R => 255, G => 0, B => 0), 3423 => (R => 255, G => 0, B => 0), 3424 => (R => 255, G => 0, B => 0), 3425 => (R => 255, G => 0, B => 0), 3426 => (R => 255, G => 0, B => 0), 3427 => (R => 255, G => 0, B => 0), 3428 => (R => 255, G => 0, B => 0), 3429 => (R => 255, G => 0, B => 0), 3430 => (R => 255, G => 0, B => 0), 3431 => (R => 255, G => 0, B => 0), 3432 => (R => 255, G => 0, B => 0), 3433 => (R => 255, G => 0, B => 0), 3434 => (R => 255, G => 0, B => 0), 3435 => (R => 255, G => 0, B => 0), 3436 => (R => 255, G => 0, B => 0), 3437 => (R => 255, G => 0, B => 0), 3438 => (R => 255, G => 0, B => 0), 3439 => (R => 255, G => 0, B => 0), 3440 => (R => 255, G => 0, B => 0), 3441 => (R => 255, G => 0, B => 0), 3442 => (R => 255, G => 0, B => 0), 3443 => (R => 255, G => 0, B => 0), 3444 => (R => 255, G => 0, B => 0), 3445 => (R => 255, G => 0, B => 0), 3446 => (R => 255, G => 0, B => 0), 3447 => (R => 255, G => 0, B => 0), 3448 => (R => 255, G => 0, B => 0), 3449 => (R => 255, G => 0, B => 0), 3450 => (R => 255, G => 0, B => 0), 3451 => (R => 255, G => 0, B => 0), 3452 => (R => 255, G => 0, B => 0), 3453 => (R => 255, G => 0, B => 0), 3454 => (R => 255, G => 0, B => 0), 3455 => (R => 255, G => 0, B => 0), 3456 => (R => 255, G => 0, B => 0), 3457 => (R => 255, G => 0, B => 0), 3458 => (R => 255, G => 0, B => 0), 3459 => (R => 255, G => 0, B => 0), 3460 => (R => 255, G => 0, B => 0), 3461 => (R => 255, G => 0, B => 0), 3462 => (R => 255, G => 0, B => 0), 3463 => (R => 255, G => 0, B => 0), 3464 => (R => 255, G => 0, B => 0), 3465 => (R => 255, G => 0, B => 0), 3466 => (R => 255, G => 0, B => 0), 3467 => (R => 255, G => 0, B => 0), 3468 => (R => 255, G => 0, B => 0), 3469 => (R => 255, G => 0, B => 0), 3470 => (R => 255, G => 0, B => 0), 3471 => (R => 255, G => 0, B => 0), 3472 => (R => 255, G => 0, B => 0), 3473 => (R => 255, G => 0, B => 0), 3474 => (R => 255, G => 0, B => 0), 3475 => (R => 255, G => 0, B => 0), 3476 => (R => 255, G => 0, B => 0), 3477 => (R => 255, G => 0, B => 0), 3478 => (R => 255, G => 0, B => 0), 3479 => (R => 255, G => 0, B => 0), 3480 => (R => 255, G => 0, B => 0), 3481 => (R => 255, G => 0, B => 0), 3482 => (R => 255, G => 0, B => 0), 3483 => (R => 255, G => 0, B => 0), 3484 => (R => 255, G => 0, B => 0), 3485 => (R => 255, G => 0, B => 0), 3486 => (R => 255, G => 0, B => 0), 3487 => (R => 255, G => 0, B => 0), 3488 => (R => 255, G => 0, B => 0), 3489 => (R => 255, G => 0, B => 0), 3490 => (R => 255, G => 0, B => 0), 3491 => (R => 255, G => 0, B => 0), 3492 => (R => 255, G => 0, B => 0), 3493 => (R => 255, G => 0, B => 0), 3494 => (R => 255, G => 0, B => 0), 3495 => (R => 255, G => 0, B => 0), 3496 => (R => 255, G => 0, B => 0), 3497 => (R => 255, G => 0, B => 0), 3498 => (R => 255, G => 0, B => 0), 3499 => (R => 255, G => 0, B => 0), 3500 => (R => 255, G => 0, B => 0), 3501 => (R => 255, G => 0, B => 0), 3502 => (R => 255, G => 0, B => 0), 3503 => (R => 255, G => 0, B => 0), 3504 => (R => 255, G => 0, B => 0), 3505 => (R => 255, G => 0, B => 0), 3506 => (R => 255, G => 0, B => 0), 3507 => (R => 255, G => 0, B => 0), 3508 => (R => 255, G => 0, B => 0), 3509 => (R => 255, G => 0, B => 0), 3510 => (R => 255, G => 0, B => 0), 3511 => (R => 255, G => 0, B => 0), 3512 => (R => 255, G => 0, B => 0), 3513 => (R => 255, G => 0, B => 0), 3514 => (R => 255, G => 0, B => 0), 3515 => (R => 255, G => 0, B => 0), 3516 => (R => 255, G => 0, B => 0), 3517 => (R => 255, G => 0, B => 0), 3518 => (R => 255, G => 0, B => 0), 3519 => (R => 255, G => 0, B => 0), 3520 => (R => 255, G => 0, B => 0), 3521 => (R => 255, G => 0, B => 0), 3522 => (R => 255, G => 0, B => 0), 3523 => (R => 255, G => 0, B => 0), 3524 => (R => 255, G => 0, B => 0), 3525 => (R => 255, G => 0, B => 0), 3526 => (R => 255, G => 0, B => 0), 3527 => (R => 255, G => 0, B => 0), 3528 => (R => 255, G => 0, B => 0), 3529 => (R => 255, G => 0, B => 0), 3530 => (R => 255, G => 0, B => 0), 3531 => (R => 255, G => 0, B => 0), 3532 => (R => 255, G => 0, B => 0), 3533 => (R => 255, G => 0, B => 0), 3534 => (R => 255, G => 0, B => 0), 3535 => (R => 255, G => 0, B => 0), 3536 => (R => 255, G => 0, B => 0), 3537 => (R => 255, G => 0, B => 0), 3538 => (R => 255, G => 0, B => 0), 3539 => (R => 255, G => 0, B => 0), 3540 => (R => 255, G => 0, B => 0), 3541 => (R => 255, G => 0, B => 0), 3542 => (R => 255, G => 0, B => 0), 3543 => (R => 255, G => 0, B => 0), 3544 => (R => 255, G => 0, B => 0), 3545 => (R => 255, G => 0, B => 0), 3546 => (R => 255, G => 0, B => 0), 3547 => (R => 255, G => 0, B => 0), 3548 => (R => 255, G => 0, B => 0), 3549 => (R => 255, G => 0, B => 0), 3550 => (R => 255, G => 0, B => 0), 3551 => (R => 255, G => 0, B => 0), 3552 => (R => 255, G => 0, B => 0), 3553 => (R => 255, G => 0, B => 0), 3554 => (R => 255, G => 0, B => 0), 3555 => (R => 255, G => 0, B => 0), 3556 => (R => 255, G => 0, B => 0), 3557 => (R => 255, G => 0, B => 0), 3558 => (R => 255, G => 0, B => 0), 3559 => (R => 255, G => 0, B => 0), 3560 => (R => 255, G => 0, B => 0), 3561 => (R => 255, G => 0, B => 0), 3562 => (R => 255, G => 0, B => 0), 3563 => (R => 255, G => 0, B => 0), 3564 => (R => 255, G => 0, B => 0), 3565 => (R => 255, G => 0, B => 0), 3566 => (R => 255, G => 0, B => 0), 3567 => (R => 255, G => 0, B => 0), 3568 => (R => 255, G => 0, B => 0), 3569 => (R => 255, G => 0, B => 0), 3570 => (R => 255, G => 0, B => 0), 3571 => (R => 255, G => 0, B => 0), 3572 => (R => 255, G => 0, B => 0), 3573 => (R => 255, G => 0, B => 0), 3574 => (R => 255, G => 0, B => 0), 3575 => (R => 255, G => 0, B => 0), 3576 => (R => 255, G => 0, B => 0), 3577 => (R => 255, G => 0, B => 0), 3578 => (R => 255, G => 0, B => 0), 3579 => (R => 255, G => 0, B => 0), 3580 => (R => 255, G => 0, B => 0), 3581 => (R => 255, G => 0, B => 0), 3582 => (R => 255, G => 0, B => 0), 3583 => (R => 255, G => 0, B => 0), 3584 => (R => 255, G => 0, B => 0), 3585 => (R => 255, G => 0, B => 0), 3586 => (R => 255, G => 0, B => 0), 3587 => (R => 255, G => 0, B => 0), 3588 => (R => 0, G => 0, B => 0), 3589 => (R => 0, G => 0, B => 0), 3590 => (R => 0, G => 0, B => 0), 3591 => (R => 0, G => 0, B => 0), 3592 => (R => 0, G => 0, B => 0), 3593 => (R => 0, G => 0, B => 0), 3594 => (R => 0, G => 0, B => 0), 3595 => (R => 0, G => 0, B => 0), 3596 => (R => 0, G => 0, B => 0), 3597 => (R => 0, G => 0, B => 0), 3598 => (R => 0, G => 0, B => 0), 3599 => (R => 0, G => 0, B => 0), 3600 => (R => 0, G => 0, B => 0), 3601 => (R => 0, G => 0, B => 0), 3602 => (R => 0, G => 0, B => 0), 3603 => (R => 0, G => 0, B => 0), 3604 => (R => 0, G => 0, B => 0), 3605 => (R => 0, G => 0, B => 0), 3606 => (R => 0, G => 0, B => 0), 3607 => (R => 0, G => 0, B => 0), 3608 => (R => 0, G => 0, B => 0), 3609 => (R => 0, G => 0, B => 0), 3610 => (R => 0, G => 0, B => 0), 3611 => (R => 0, G => 0, B => 0), 3612 => (R => 0, G => 0, B => 0), 3613 => (R => 0, G => 0, B => 0), 3614 => (R => 0, G => 0, B => 0), 3615 => (R => 255, G => 0, B => 0), 3616 => (R => 255, G => 0, B => 0), 3617 => (R => 255, G => 0, B => 0), 3618 => (R => 255, G => 0, B => 0), 3619 => (R => 255, G => 0, B => 0), 3620 => (R => 255, G => 0, B => 0), 3621 => (R => 255, G => 0, B => 0), 3622 => (R => 255, G => 0, B => 0), 3623 => (R => 255, G => 0, B => 0), 3624 => (R => 255, G => 0, B => 0), 3625 => (R => 255, G => 0, B => 0), 3626 => (R => 255, G => 0, B => 0), 3627 => (R => 255, G => 0, B => 0), 3628 => (R => 255, G => 0, B => 0), 3629 => (R => 255, G => 0, B => 0), 3630 => (R => 255, G => 0, B => 0), 3631 => (R => 255, G => 0, B => 0), 3632 => (R => 255, G => 0, B => 0), 3633 => (R => 255, G => 0, B => 0), 3634 => (R => 255, G => 0, B => 0), 3635 => (R => 255, G => 0, B => 0), 3636 => (R => 255, G => 0, B => 0), 3637 => (R => 255, G => 0, B => 0), 3638 => (R => 255, G => 0, B => 0), 3639 => (R => 255, G => 0, B => 0), 3640 => (R => 255, G => 0, B => 0), 3641 => (R => 255, G => 0, B => 0), 3642 => (R => 255, G => 0, B => 0), 3643 => (R => 255, G => 0, B => 0), 3644 => (R => 255, G => 0, B => 0), 3645 => (R => 255, G => 0, B => 0), 3646 => (R => 255, G => 0, B => 0), 3647 => (R => 255, G => 0, B => 0), 3648 => (R => 255, G => 0, B => 0), 3649 => (R => 255, G => 0, B => 0), 3650 => (R => 255, G => 0, B => 0), 3651 => (R => 255, G => 0, B => 0), 3652 => (R => 255, G => 0, B => 0), 3653 => (R => 255, G => 0, B => 0), 3654 => (R => 255, G => 0, B => 0), 3655 => (R => 255, G => 0, B => 0), 3656 => (R => 255, G => 0, B => 0), 3657 => (R => 255, G => 0, B => 0), 3658 => (R => 255, G => 0, B => 0), 3659 => (R => 255, G => 0, B => 0), 3660 => (R => 255, G => 0, B => 0), 3661 => (R => 255, G => 0, B => 0), 3662 => (R => 255, G => 0, B => 0), 3663 => (R => 255, G => 0, B => 0), 3664 => (R => 255, G => 0, B => 0), 3665 => (R => 255, G => 0, B => 0), 3666 => (R => 255, G => 0, B => 0), 3667 => (R => 255, G => 0, B => 0), 3668 => (R => 255, G => 0, B => 0), 3669 => (R => 255, G => 0, B => 0), 3670 => (R => 255, G => 0, B => 0), 3671 => (R => 255, G => 0, B => 0), 3672 => (R => 255, G => 0, B => 0), 3673 => (R => 255, G => 0, B => 0), 3674 => (R => 255, G => 0, B => 0), 3675 => (R => 255, G => 0, B => 0), 3676 => (R => 255, G => 0, B => 0), 3677 => (R => 255, G => 0, B => 0), 3678 => (R => 255, G => 0, B => 0), 3679 => (R => 255, G => 0, B => 0), 3680 => (R => 255, G => 0, B => 0), 3681 => (R => 255, G => 0, B => 0), 3682 => (R => 255, G => 0, B => 0), 3683 => (R => 255, G => 0, B => 0), 3684 => (R => 255, G => 0, B => 0), 3685 => (R => 255, G => 0, B => 0), 3686 => (R => 255, G => 0, B => 0), 3687 => (R => 255, G => 0, B => 0), 3688 => (R => 255, G => 0, B => 0), 3689 => (R => 255, G => 0, B => 0), 3690 => (R => 255, G => 0, B => 0), 3691 => (R => 255, G => 0, B => 0), 3692 => (R => 255, G => 0, B => 0), 3693 => (R => 255, G => 0, B => 0), 3694 => (R => 255, G => 0, B => 0), 3695 => (R => 255, G => 0, B => 0), 3696 => (R => 255, G => 0, B => 0), 3697 => (R => 255, G => 0, B => 0), 3698 => (R => 255, G => 0, B => 0), 3699 => (R => 255, G => 0, B => 0), 3700 => (R => 255, G => 0, B => 0), 3701 => (R => 255, G => 0, B => 0), 3702 => (R => 255, G => 0, B => 0), 3703 => (R => 255, G => 0, B => 0), 3704 => (R => 255, G => 0, B => 0), 3705 => (R => 255, G => 0, B => 0), 3706 => (R => 255, G => 0, B => 0), 3707 => (R => 255, G => 0, B => 0), 3708 => (R => 255, G => 0, B => 0), 3709 => (R => 255, G => 0, B => 0), 3710 => (R => 255, G => 0, B => 0), 3711 => (R => 255, G => 0, B => 0), 3712 => (R => 255, G => 0, B => 0), 3713 => (R => 255, G => 0, B => 0), 3714 => (R => 255, G => 0, B => 0), 3715 => (R => 255, G => 0, B => 0), 3716 => (R => 255, G => 0, B => 0), 3717 => (R => 255, G => 0, B => 0), 3718 => (R => 255, G => 0, B => 0), 3719 => (R => 255, G => 0, B => 0), 3720 => (R => 255, G => 0, B => 0), 3721 => (R => 255, G => 0, B => 0), 3722 => (R => 255, G => 0, B => 0), 3723 => (R => 255, G => 0, B => 0), 3724 => (R => 255, G => 0, B => 0), 3725 => (R => 255, G => 0, B => 0), 3726 => (R => 255, G => 0, B => 0), 3727 => (R => 255, G => 0, B => 0), 3728 => (R => 255, G => 0, B => 0), 3729 => (R => 255, G => 0, B => 0), 3730 => (R => 255, G => 0, B => 0), 3731 => (R => 255, G => 0, B => 0), 3732 => (R => 255, G => 0, B => 0), 3733 => (R => 255, G => 0, B => 0), 3734 => (R => 255, G => 0, B => 0), 3735 => (R => 255, G => 0, B => 0), 3736 => (R => 255, G => 0, B => 0), 3737 => (R => 255, G => 0, B => 0), 3738 => (R => 255, G => 0, B => 0), 3739 => (R => 255, G => 0, B => 0), 3740 => (R => 255, G => 0, B => 0), 3741 => (R => 255, G => 0, B => 0), 3742 => (R => 255, G => 0, B => 0), 3743 => (R => 255, G => 0, B => 0), 3744 => (R => 255, G => 0, B => 0), 3745 => (R => 255, G => 0, B => 0), 3746 => (R => 255, G => 0, B => 0), 3747 => (R => 255, G => 0, B => 0), 3748 => (R => 255, G => 0, B => 0), 3749 => (R => 255, G => 0, B => 0), 3750 => (R => 255, G => 0, B => 0), 3751 => (R => 255, G => 0, B => 0), 3752 => (R => 255, G => 0, B => 0), 3753 => (R => 255, G => 0, B => 0), 3754 => (R => 255, G => 0, B => 0), 3755 => (R => 255, G => 0, B => 0), 3756 => (R => 255, G => 0, B => 0), 3757 => (R => 255, G => 0, B => 0), 3758 => (R => 255, G => 0, B => 0), 3759 => (R => 255, G => 0, B => 0), 3760 => (R => 255, G => 0, B => 0), 3761 => (R => 255, G => 0, B => 0), 3762 => (R => 255, G => 0, B => 0), 3763 => (R => 255, G => 0, B => 0), 3764 => (R => 255, G => 0, B => 0), 3765 => (R => 255, G => 0, B => 0), 3766 => (R => 255, G => 0, B => 0), 3767 => (R => 255, G => 0, B => 0), 3768 => (R => 255, G => 0, B => 0), 3769 => (R => 255, G => 0, B => 0), 3770 => (R => 255, G => 0, B => 0), 3771 => (R => 255, G => 0, B => 0), 3772 => (R => 255, G => 0, B => 0), 3773 => (R => 255, G => 0, B => 0), 3774 => (R => 255, G => 0, B => 0), 3775 => (R => 255, G => 0, B => 0), 3776 => (R => 255, G => 0, B => 0), 3777 => (R => 255, G => 0, B => 0), 3778 => (R => 255, G => 0, B => 0), 3779 => (R => 255, G => 0, B => 0), 3780 => (R => 255, G => 0, B => 0), 3781 => (R => 255, G => 0, B => 0), 3782 => (R => 255, G => 0, B => 0), 3783 => (R => 255, G => 0, B => 0), 3784 => (R => 255, G => 0, B => 0), 3785 => (R => 255, G => 0, B => 0), 3786 => (R => 255, G => 0, B => 0), 3787 => (R => 0, G => 0, B => 0), 3788 => (R => 0, G => 0, B => 0), 3789 => (R => 0, G => 0, B => 0), 3790 => (R => 0, G => 0, B => 0), 3791 => (R => 0, G => 0, B => 0), 3792 => (R => 0, G => 0, B => 0), 3793 => (R => 0, G => 0, B => 0), 3794 => (R => 0, G => 0, B => 0), 3795 => (R => 0, G => 0, B => 0), 3796 => (R => 0, G => 0, B => 0), 3797 => (R => 0, G => 0, B => 0), 3798 => (R => 0, G => 0, B => 0), 3799 => (R => 0, G => 0, B => 0), 3800 => (R => 0, G => 0, B => 0), 3801 => (R => 0, G => 0, B => 0), 3802 => (R => 0, G => 0, B => 0), 3803 => (R => 0, G => 0, B => 0), 3804 => (R => 0, G => 0, B => 0), 3805 => (R => 0, G => 0, B => 0), 3806 => (R => 0, G => 0, B => 0), 3807 => (R => 0, G => 0, B => 0), 3808 => (R => 0, G => 0, B => 0), 3809 => (R => 0, G => 0, B => 0), 3810 => (R => 0, G => 0, B => 0), 3811 => (R => 0, G => 0, B => 0), 3812 => (R => 0, G => 0, B => 0), 3813 => (R => 0, G => 0, B => 0), 3814 => (R => 0, G => 0, B => 0), 3815 => (R => 0, G => 0, B => 0), 3816 => (R => 255, G => 0, B => 0), 3817 => (R => 255, G => 0, B => 0), 3818 => (R => 255, G => 0, B => 0), 3819 => (R => 255, G => 0, B => 0), 3820 => (R => 255, G => 0, B => 0), 3821 => (R => 255, G => 0, B => 0), 3822 => (R => 255, G => 0, B => 0), 3823 => (R => 255, G => 0, B => 0), 3824 => (R => 255, G => 0, B => 0), 3825 => (R => 255, G => 0, B => 0), 3826 => (R => 255, G => 0, B => 0), 3827 => (R => 255, G => 0, B => 0), 3828 => (R => 255, G => 0, B => 0), 3829 => (R => 255, G => 0, B => 0), 3830 => (R => 255, G => 0, B => 0), 3831 => (R => 255, G => 0, B => 0), 3832 => (R => 255, G => 0, B => 0), 3833 => (R => 255, G => 0, B => 0), 3834 => (R => 255, G => 0, B => 0), 3835 => (R => 255, G => 0, B => 0), 3836 => (R => 255, G => 0, B => 0), 3837 => (R => 255, G => 0, B => 0), 3838 => (R => 255, G => 0, B => 0), 3839 => (R => 255, G => 0, B => 0), 3840 => (R => 255, G => 0, B => 0), 3841 => (R => 255, G => 0, B => 0), 3842 => (R => 255, G => 0, B => 0), 3843 => (R => 255, G => 0, B => 0), 3844 => (R => 255, G => 0, B => 0), 3845 => (R => 255, G => 0, B => 0), 3846 => (R => 255, G => 0, B => 0), 3847 => (R => 255, G => 0, B => 0), 3848 => (R => 255, G => 0, B => 0), 3849 => (R => 255, G => 0, B => 0), 3850 => (R => 255, G => 0, B => 0), 3851 => (R => 255, G => 0, B => 0), 3852 => (R => 255, G => 0, B => 0), 3853 => (R => 255, G => 0, B => 0), 3854 => (R => 255, G => 0, B => 0), 3855 => (R => 255, G => 0, B => 0), 3856 => (R => 255, G => 0, B => 0), 3857 => (R => 255, G => 0, B => 0), 3858 => (R => 255, G => 0, B => 0), 3859 => (R => 255, G => 0, B => 0), 3860 => (R => 255, G => 0, B => 0), 3861 => (R => 255, G => 0, B => 0), 3862 => (R => 255, G => 0, B => 0), 3863 => (R => 255, G => 0, B => 0), 3864 => (R => 255, G => 0, B => 0), 3865 => (R => 255, G => 0, B => 0), 3866 => (R => 255, G => 0, B => 0), 3867 => (R => 255, G => 0, B => 0), 3868 => (R => 255, G => 0, B => 0), 3869 => (R => 255, G => 0, B => 0), 3870 => (R => 255, G => 0, B => 0), 3871 => (R => 255, G => 0, B => 0), 3872 => (R => 255, G => 0, B => 0), 3873 => (R => 255, G => 0, B => 0), 3874 => (R => 255, G => 0, B => 0), 3875 => (R => 255, G => 0, B => 0), 3876 => (R => 255, G => 0, B => 0), 3877 => (R => 255, G => 0, B => 0), 3878 => (R => 255, G => 0, B => 0), 3879 => (R => 255, G => 0, B => 0), 3880 => (R => 255, G => 0, B => 0), 3881 => (R => 255, G => 0, B => 0), 3882 => (R => 255, G => 0, B => 0), 3883 => (R => 255, G => 0, B => 0), 3884 => (R => 255, G => 0, B => 0), 3885 => (R => 255, G => 0, B => 0), 3886 => (R => 255, G => 0, B => 0), 3887 => (R => 255, G => 0, B => 0), 3888 => (R => 255, G => 0, B => 0), 3889 => (R => 255, G => 0, B => 0), 3890 => (R => 255, G => 0, B => 0), 3891 => (R => 255, G => 0, B => 0), 3892 => (R => 255, G => 0, B => 0), 3893 => (R => 255, G => 0, B => 0), 3894 => (R => 255, G => 0, B => 0), 3895 => (R => 255, G => 0, B => 0), 3896 => (R => 255, G => 0, B => 0), 3897 => (R => 255, G => 0, B => 0), 3898 => (R => 255, G => 0, B => 0), 3899 => (R => 255, G => 0, B => 0), 3900 => (R => 255, G => 0, B => 0), 3901 => (R => 255, G => 0, B => 0), 3902 => (R => 255, G => 0, B => 0), 3903 => (R => 255, G => 0, B => 0), 3904 => (R => 255, G => 0, B => 0), 3905 => (R => 255, G => 0, B => 0), 3906 => (R => 255, G => 0, B => 0), 3907 => (R => 255, G => 0, B => 0), 3908 => (R => 255, G => 0, B => 0), 3909 => (R => 255, G => 0, B => 0), 3910 => (R => 255, G => 0, B => 0), 3911 => (R => 255, G => 0, B => 0), 3912 => (R => 255, G => 0, B => 0), 3913 => (R => 255, G => 0, B => 0), 3914 => (R => 255, G => 0, B => 0), 3915 => (R => 255, G => 0, B => 0), 3916 => (R => 255, G => 0, B => 0), 3917 => (R => 255, G => 0, B => 0), 3918 => (R => 255, G => 0, B => 0), 3919 => (R => 255, G => 0, B => 0), 3920 => (R => 255, G => 0, B => 0), 3921 => (R => 255, G => 0, B => 0), 3922 => (R => 255, G => 0, B => 0), 3923 => (R => 255, G => 0, B => 0), 3924 => (R => 255, G => 0, B => 0), 3925 => (R => 255, G => 0, B => 0), 3926 => (R => 255, G => 0, B => 0), 3927 => (R => 255, G => 0, B => 0), 3928 => (R => 255, G => 0, B => 0), 3929 => (R => 255, G => 0, B => 0), 3930 => (R => 255, G => 0, B => 0), 3931 => (R => 255, G => 0, B => 0), 3932 => (R => 255, G => 0, B => 0), 3933 => (R => 255, G => 0, B => 0), 3934 => (R => 255, G => 0, B => 0), 3935 => (R => 255, G => 0, B => 0), 3936 => (R => 255, G => 0, B => 0), 3937 => (R => 255, G => 0, B => 0), 3938 => (R => 255, G => 0, B => 0), 3939 => (R => 255, G => 0, B => 0), 3940 => (R => 255, G => 0, B => 0), 3941 => (R => 255, G => 0, B => 0), 3942 => (R => 255, G => 0, B => 0), 3943 => (R => 255, G => 0, B => 0), 3944 => (R => 255, G => 0, B => 0), 3945 => (R => 255, G => 0, B => 0), 3946 => (R => 255, G => 0, B => 0), 3947 => (R => 255, G => 0, B => 0), 3948 => (R => 255, G => 0, B => 0), 3949 => (R => 255, G => 0, B => 0), 3950 => (R => 255, G => 0, B => 0), 3951 => (R => 255, G => 0, B => 0), 3952 => (R => 255, G => 0, B => 0), 3953 => (R => 255, G => 0, B => 0), 3954 => (R => 255, G => 0, B => 0), 3955 => (R => 255, G => 0, B => 0), 3956 => (R => 255, G => 0, B => 0), 3957 => (R => 255, G => 0, B => 0), 3958 => (R => 255, G => 0, B => 0), 3959 => (R => 255, G => 0, B => 0), 3960 => (R => 255, G => 0, B => 0), 3961 => (R => 255, G => 0, B => 0), 3962 => (R => 255, G => 0, B => 0), 3963 => (R => 255, G => 0, B => 0), 3964 => (R => 255, G => 0, B => 0), 3965 => (R => 255, G => 0, B => 0), 3966 => (R => 255, G => 0, B => 0), 3967 => (R => 255, G => 0, B => 0), 3968 => (R => 255, G => 0, B => 0), 3969 => (R => 255, G => 0, B => 0), 3970 => (R => 255, G => 0, B => 0), 3971 => (R => 255, G => 0, B => 0), 3972 => (R => 255, G => 0, B => 0), 3973 => (R => 255, G => 0, B => 0), 3974 => (R => 255, G => 0, B => 0), 3975 => (R => 255, G => 0, B => 0), 3976 => (R => 255, G => 0, B => 0), 3977 => (R => 255, G => 0, B => 0), 3978 => (R => 255, G => 0, B => 0), 3979 => (R => 255, G => 0, B => 0), 3980 => (R => 255, G => 0, B => 0), 3981 => (R => 255, G => 0, B => 0), 3982 => (R => 255, G => 0, B => 0), 3983 => (R => 255, G => 0, B => 0), 3984 => (R => 255, G => 0, B => 0), 3985 => (R => 255, G => 0, B => 0), 3986 => (R => 0, G => 0, B => 0), 3987 => (R => 0, G => 0, B => 0), 3988 => (R => 0, G => 0, B => 0), 3989 => (R => 0, G => 0, B => 0), 3990 => (R => 0, G => 0, B => 0), 3991 => (R => 0, G => 0, B => 0), 3992 => (R => 0, G => 0, B => 0), 3993 => (R => 0, G => 0, B => 0), 3994 => (R => 0, G => 0, B => 0), 3995 => (R => 0, G => 0, B => 0), 3996 => (R => 0, G => 0, B => 0), 3997 => (R => 0, G => 0, B => 0), 3998 => (R => 0, G => 0, B => 0), 3999 => (R => 0, G => 0, B => 0), 4000 => (R => 0, G => 0, B => 0), 4001 => (R => 0, G => 0, B => 0), 4002 => (R => 0, G => 0, B => 0), 4003 => (R => 0, G => 0, B => 0), 4004 => (R => 0, G => 0, B => 0), 4005 => (R => 0, G => 0, B => 0), 4006 => (R => 0, G => 0, B => 0), 4007 => (R => 0, G => 0, B => 0), 4008 => (R => 0, G => 0, B => 0), 4009 => (R => 0, G => 0, B => 0), 4010 => (R => 0, G => 0, B => 0), 4011 => (R => 0, G => 0, B => 0), 4012 => (R => 0, G => 0, B => 0), 4013 => (R => 0, G => 0, B => 0), 4014 => (R => 0, G => 0, B => 0), 4015 => (R => 0, G => 0, B => 0), 4016 => (R => 0, G => 0, B => 0), 4017 => (R => 255, G => 0, B => 0), 4018 => (R => 255, G => 0, B => 0), 4019 => (R => 255, G => 0, B => 0), 4020 => (R => 255, G => 0, B => 0), 4021 => (R => 255, G => 0, B => 0), 4022 => (R => 255, G => 0, B => 0), 4023 => (R => 255, G => 0, B => 0), 4024 => (R => 255, G => 0, B => 0), 4025 => (R => 255, G => 0, B => 0), 4026 => (R => 255, G => 0, B => 0), 4027 => (R => 255, G => 0, B => 0), 4028 => (R => 255, G => 0, B => 0), 4029 => (R => 255, G => 0, B => 0), 4030 => (R => 255, G => 0, B => 0), 4031 => (R => 255, G => 0, B => 0), 4032 => (R => 255, G => 0, B => 0), 4033 => (R => 255, G => 0, B => 0), 4034 => (R => 255, G => 0, B => 0), 4035 => (R => 255, G => 0, B => 0), 4036 => (R => 255, G => 0, B => 0), 4037 => (R => 255, G => 0, B => 0), 4038 => (R => 255, G => 0, B => 0), 4039 => (R => 255, G => 0, B => 0), 4040 => (R => 255, G => 0, B => 0), 4041 => (R => 255, G => 0, B => 0), 4042 => (R => 255, G => 0, B => 0), 4043 => (R => 255, G => 0, B => 0), 4044 => (R => 255, G => 0, B => 0), 4045 => (R => 255, G => 0, B => 0), 4046 => (R => 255, G => 0, B => 0), 4047 => (R => 255, G => 0, B => 0), 4048 => (R => 255, G => 0, B => 0), 4049 => (R => 255, G => 0, B => 0), 4050 => (R => 255, G => 0, B => 0), 4051 => (R => 255, G => 0, B => 0), 4052 => (R => 255, G => 0, B => 0), 4053 => (R => 255, G => 0, B => 0), 4054 => (R => 255, G => 0, B => 0), 4055 => (R => 255, G => 0, B => 0), 4056 => (R => 255, G => 0, B => 0), 4057 => (R => 255, G => 0, B => 0), 4058 => (R => 255, G => 0, B => 0), 4059 => (R => 255, G => 0, B => 0), 4060 => (R => 255, G => 0, B => 0), 4061 => (R => 255, G => 0, B => 0), 4062 => (R => 255, G => 0, B => 0), 4063 => (R => 255, G => 0, B => 0), 4064 => (R => 255, G => 0, B => 0), 4065 => (R => 255, G => 0, B => 0), 4066 => (R => 255, G => 0, B => 0), 4067 => (R => 255, G => 0, B => 0), 4068 => (R => 255, G => 0, B => 0), 4069 => (R => 255, G => 0, B => 0), 4070 => (R => 255, G => 0, B => 0), 4071 => (R => 255, G => 0, B => 0), 4072 => (R => 255, G => 0, B => 0), 4073 => (R => 255, G => 0, B => 0), 4074 => (R => 255, G => 0, B => 0), 4075 => (R => 255, G => 0, B => 0), 4076 => (R => 255, G => 0, B => 0), 4077 => (R => 255, G => 0, B => 0), 4078 => (R => 255, G => 0, B => 0), 4079 => (R => 255, G => 0, B => 0), 4080 => (R => 255, G => 0, B => 0), 4081 => (R => 255, G => 0, B => 0), 4082 => (R => 255, G => 0, B => 0), 4083 => (R => 255, G => 0, B => 0), 4084 => (R => 255, G => 0, B => 0), 4085 => (R => 255, G => 0, B => 0), 4086 => (R => 255, G => 0, B => 0), 4087 => (R => 255, G => 0, B => 0), 4088 => (R => 255, G => 0, B => 0), 4089 => (R => 255, G => 0, B => 0), 4090 => (R => 255, G => 0, B => 0), 4091 => (R => 255, G => 0, B => 0), 4092 => (R => 255, G => 0, B => 0), 4093 => (R => 255, G => 0, B => 0), 4094 => (R => 255, G => 0, B => 0), 4095 => (R => 255, G => 0, B => 0), 4096 => (R => 255, G => 0, B => 0), 4097 => (R => 255, G => 0, B => 0), 4098 => (R => 255, G => 0, B => 0), 4099 => (R => 255, G => 0, B => 0), 4100 => (R => 255, G => 0, B => 0), 4101 => (R => 255, G => 0, B => 0), 4102 => (R => 255, G => 0, B => 0), 4103 => (R => 255, G => 0, B => 0), 4104 => (R => 255, G => 0, B => 0), 4105 => (R => 255, G => 0, B => 0), 4106 => (R => 255, G => 0, B => 0), 4107 => (R => 255, G => 0, B => 0), 4108 => (R => 255, G => 0, B => 0), 4109 => (R => 255, G => 0, B => 0), 4110 => (R => 255, G => 0, B => 0), 4111 => (R => 255, G => 0, B => 0), 4112 => (R => 255, G => 0, B => 0), 4113 => (R => 255, G => 0, B => 0), 4114 => (R => 255, G => 0, B => 0), 4115 => (R => 255, G => 0, B => 0), 4116 => (R => 255, G => 0, B => 0), 4117 => (R => 255, G => 0, B => 0), 4118 => (R => 255, G => 0, B => 0), 4119 => (R => 255, G => 0, B => 0), 4120 => (R => 255, G => 0, B => 0), 4121 => (R => 255, G => 0, B => 0), 4122 => (R => 255, G => 0, B => 0), 4123 => (R => 255, G => 0, B => 0), 4124 => (R => 255, G => 0, B => 0), 4125 => (R => 255, G => 0, B => 0), 4126 => (R => 255, G => 0, B => 0), 4127 => (R => 255, G => 0, B => 0), 4128 => (R => 255, G => 0, B => 0), 4129 => (R => 255, G => 0, B => 0), 4130 => (R => 255, G => 0, B => 0), 4131 => (R => 255, G => 0, B => 0), 4132 => (R => 255, G => 0, B => 0), 4133 => (R => 255, G => 0, B => 0), 4134 => (R => 255, G => 0, B => 0), 4135 => (R => 255, G => 0, B => 0), 4136 => (R => 255, G => 0, B => 0), 4137 => (R => 255, G => 0, B => 0), 4138 => (R => 255, G => 0, B => 0), 4139 => (R => 255, G => 0, B => 0), 4140 => (R => 255, G => 0, B => 0), 4141 => (R => 255, G => 0, B => 0), 4142 => (R => 255, G => 0, B => 0), 4143 => (R => 255, G => 0, B => 0), 4144 => (R => 255, G => 0, B => 0), 4145 => (R => 255, G => 0, B => 0), 4146 => (R => 255, G => 0, B => 0), 4147 => (R => 255, G => 0, B => 0), 4148 => (R => 255, G => 0, B => 0), 4149 => (R => 255, G => 0, B => 0), 4150 => (R => 255, G => 0, B => 0), 4151 => (R => 255, G => 0, B => 0), 4152 => (R => 255, G => 0, B => 0), 4153 => (R => 255, G => 0, B => 0), 4154 => (R => 255, G => 0, B => 0), 4155 => (R => 255, G => 0, B => 0), 4156 => (R => 255, G => 0, B => 0), 4157 => (R => 255, G => 0, B => 0), 4158 => (R => 255, G => 0, B => 0), 4159 => (R => 255, G => 0, B => 0), 4160 => (R => 255, G => 0, B => 0), 4161 => (R => 255, G => 0, B => 0), 4162 => (R => 255, G => 0, B => 0), 4163 => (R => 255, G => 0, B => 0), 4164 => (R => 255, G => 0, B => 0), 4165 => (R => 255, G => 0, B => 0), 4166 => (R => 255, G => 0, B => 0), 4167 => (R => 255, G => 0, B => 0), 4168 => (R => 255, G => 0, B => 0), 4169 => (R => 255, G => 0, B => 0), 4170 => (R => 255, G => 0, B => 0), 4171 => (R => 255, G => 0, B => 0), 4172 => (R => 255, G => 0, B => 0), 4173 => (R => 255, G => 0, B => 0), 4174 => (R => 255, G => 0, B => 0), 4175 => (R => 255, G => 0, B => 0), 4176 => (R => 255, G => 0, B => 0), 4177 => (R => 255, G => 0, B => 0), 4178 => (R => 255, G => 0, B => 0), 4179 => (R => 255, G => 0, B => 0), 4180 => (R => 255, G => 0, B => 0), 4181 => (R => 255, G => 0, B => 0), 4182 => (R => 255, G => 0, B => 0), 4183 => (R => 255, G => 0, B => 0), 4184 => (R => 0, G => 0, B => 0), 4185 => (R => 0, G => 0, B => 0), 4186 => (R => 0, G => 0, B => 0), 4187 => (R => 0, G => 0, B => 0), 4188 => (R => 0, G => 0, B => 0), 4189 => (R => 0, G => 0, B => 0), 4190 => (R => 0, G => 0, B => 0), 4191 => (R => 0, G => 0, B => 0), 4192 => (R => 0, G => 0, B => 0), 4193 => (R => 0, G => 0, B => 0), 4194 => (R => 0, G => 0, B => 0), 4195 => (R => 0, G => 0, B => 0), 4196 => (R => 0, G => 0, B => 0), 4197 => (R => 0, G => 0, B => 0), 4198 => (R => 0, G => 0, B => 0), 4199 => (R => 0, G => 0, B => 0), 4200 => (R => 0, G => 0, B => 0), 4201 => (R => 0, G => 0, B => 0), 4202 => (R => 0, G => 0, B => 0), 4203 => (R => 0, G => 0, B => 0), 4204 => (R => 0, G => 0, B => 0), 4205 => (R => 0, G => 0, B => 0), 4206 => (R => 0, G => 0, B => 0), 4207 => (R => 0, G => 0, B => 0), 4208 => (R => 0, G => 0, B => 0), 4209 => (R => 0, G => 0, B => 0), 4210 => (R => 0, G => 0, B => 0), 4211 => (R => 0, G => 0, B => 0), 4212 => (R => 0, G => 0, B => 0), 4213 => (R => 0, G => 0, B => 0), 4214 => (R => 0, G => 0, B => 0), 4215 => (R => 0, G => 0, B => 0), 4216 => (R => 0, G => 0, B => 0), 4217 => (R => 0, G => 0, B => 0), 4218 => (R => 255, G => 0, B => 0), 4219 => (R => 255, G => 0, B => 0), 4220 => (R => 255, G => 0, B => 0), 4221 => (R => 255, G => 0, B => 0), 4222 => (R => 255, G => 0, B => 0), 4223 => (R => 255, G => 0, B => 0), 4224 => (R => 255, G => 0, B => 0), 4225 => (R => 255, G => 0, B => 0), 4226 => (R => 255, G => 0, B => 0), 4227 => (R => 255, G => 0, B => 0), 4228 => (R => 255, G => 0, B => 0), 4229 => (R => 255, G => 0, B => 0), 4230 => (R => 255, G => 0, B => 0), 4231 => (R => 255, G => 0, B => 0), 4232 => (R => 255, G => 0, B => 0), 4233 => (R => 255, G => 0, B => 0), 4234 => (R => 255, G => 0, B => 0), 4235 => (R => 255, G => 0, B => 0), 4236 => (R => 255, G => 0, B => 0), 4237 => (R => 255, G => 0, B => 0), 4238 => (R => 255, G => 0, B => 0), 4239 => (R => 255, G => 0, B => 0), 4240 => (R => 255, G => 0, B => 0), 4241 => (R => 255, G => 0, B => 0), 4242 => (R => 255, G => 0, B => 0), 4243 => (R => 255, G => 0, B => 0), 4244 => (R => 255, G => 0, B => 0), 4245 => (R => 255, G => 0, B => 0), 4246 => (R => 255, G => 0, B => 0), 4247 => (R => 255, G => 0, B => 0), 4248 => (R => 255, G => 0, B => 0), 4249 => (R => 255, G => 0, B => 0), 4250 => (R => 255, G => 0, B => 0), 4251 => (R => 255, G => 0, B => 0), 4252 => (R => 255, G => 0, B => 0), 4253 => (R => 255, G => 0, B => 0), 4254 => (R => 255, G => 0, B => 0), 4255 => (R => 255, G => 0, B => 0), 4256 => (R => 255, G => 0, B => 0), 4257 => (R => 255, G => 0, B => 0), 4258 => (R => 255, G => 0, B => 0), 4259 => (R => 255, G => 0, B => 0), 4260 => (R => 255, G => 0, B => 0), 4261 => (R => 255, G => 0, B => 0), 4262 => (R => 255, G => 0, B => 0), 4263 => (R => 255, G => 0, B => 0), 4264 => (R => 255, G => 0, B => 0), 4265 => (R => 255, G => 0, B => 0), 4266 => (R => 255, G => 0, B => 0), 4267 => (R => 255, G => 0, B => 0), 4268 => (R => 255, G => 0, B => 0), 4269 => (R => 255, G => 0, B => 0), 4270 => (R => 255, G => 0, B => 0), 4271 => (R => 255, G => 0, B => 0), 4272 => (R => 255, G => 0, B => 0), 4273 => (R => 255, G => 0, B => 0), 4274 => (R => 255, G => 0, B => 0), 4275 => (R => 255, G => 0, B => 0), 4276 => (R => 255, G => 0, B => 0), 4277 => (R => 255, G => 0, B => 0), 4278 => (R => 255, G => 0, B => 0), 4279 => (R => 255, G => 0, B => 0), 4280 => (R => 255, G => 0, B => 0), 4281 => (R => 255, G => 0, B => 0), 4282 => (R => 255, G => 0, B => 0), 4283 => (R => 255, G => 0, B => 0), 4284 => (R => 255, G => 0, B => 0), 4285 => (R => 255, G => 0, B => 0), 4286 => (R => 255, G => 0, B => 0), 4287 => (R => 255, G => 0, B => 0), 4288 => (R => 255, G => 0, B => 0), 4289 => (R => 255, G => 0, B => 0), 4290 => (R => 255, G => 0, B => 0), 4291 => (R => 255, G => 0, B => 0), 4292 => (R => 255, G => 0, B => 0), 4293 => (R => 255, G => 0, B => 0), 4294 => (R => 255, G => 0, B => 0), 4295 => (R => 255, G => 0, B => 0), 4296 => (R => 255, G => 0, B => 0), 4297 => (R => 255, G => 0, B => 0), 4298 => (R => 255, G => 0, B => 0), 4299 => (R => 255, G => 0, B => 0), 4300 => (R => 255, G => 0, B => 0), 4301 => (R => 255, G => 0, B => 0), 4302 => (R => 255, G => 0, B => 0), 4303 => (R => 255, G => 0, B => 0), 4304 => (R => 255, G => 0, B => 0), 4305 => (R => 255, G => 0, B => 0), 4306 => (R => 255, G => 0, B => 0), 4307 => (R => 255, G => 0, B => 0), 4308 => (R => 255, G => 0, B => 0), 4309 => (R => 255, G => 0, B => 0), 4310 => (R => 255, G => 0, B => 0), 4311 => (R => 255, G => 0, B => 0), 4312 => (R => 255, G => 0, B => 0), 4313 => (R => 255, G => 0, B => 0), 4314 => (R => 255, G => 0, B => 0), 4315 => (R => 255, G => 0, B => 0), 4316 => (R => 255, G => 0, B => 0), 4317 => (R => 255, G => 0, B => 0), 4318 => (R => 255, G => 0, B => 0), 4319 => (R => 255, G => 0, B => 0), 4320 => (R => 255, G => 0, B => 0), 4321 => (R => 255, G => 0, B => 0), 4322 => (R => 255, G => 0, B => 0), 4323 => (R => 255, G => 0, B => 0), 4324 => (R => 255, G => 0, B => 0), 4325 => (R => 255, G => 0, B => 0), 4326 => (R => 255, G => 0, B => 0), 4327 => (R => 255, G => 0, B => 0), 4328 => (R => 255, G => 0, B => 0), 4329 => (R => 255, G => 0, B => 0), 4330 => (R => 255, G => 0, B => 0), 4331 => (R => 255, G => 0, B => 0), 4332 => (R => 255, G => 0, B => 0), 4333 => (R => 255, G => 0, B => 0), 4334 => (R => 255, G => 0, B => 0), 4335 => (R => 255, G => 0, B => 0), 4336 => (R => 255, G => 0, B => 0), 4337 => (R => 255, G => 0, B => 0), 4338 => (R => 255, G => 0, B => 0), 4339 => (R => 255, G => 0, B => 0), 4340 => (R => 255, G => 0, B => 0), 4341 => (R => 255, G => 0, B => 0), 4342 => (R => 255, G => 0, B => 0), 4343 => (R => 255, G => 0, B => 0), 4344 => (R => 255, G => 0, B => 0), 4345 => (R => 255, G => 0, B => 0), 4346 => (R => 255, G => 0, B => 0), 4347 => (R => 255, G => 0, B => 0), 4348 => (R => 255, G => 0, B => 0), 4349 => (R => 255, G => 0, B => 0), 4350 => (R => 255, G => 0, B => 0), 4351 => (R => 255, G => 0, B => 0), 4352 => (R => 255, G => 0, B => 0), 4353 => (R => 255, G => 0, B => 0), 4354 => (R => 255, G => 0, B => 0), 4355 => (R => 255, G => 0, B => 0), 4356 => (R => 255, G => 0, B => 0), 4357 => (R => 255, G => 0, B => 0), 4358 => (R => 255, G => 0, B => 0), 4359 => (R => 255, G => 0, B => 0), 4360 => (R => 255, G => 0, B => 0), 4361 => (R => 255, G => 0, B => 0), 4362 => (R => 255, G => 0, B => 0), 4363 => (R => 255, G => 0, B => 0), 4364 => (R => 255, G => 0, B => 0), 4365 => (R => 255, G => 0, B => 0), 4366 => (R => 255, G => 0, B => 0), 4367 => (R => 255, G => 0, B => 0), 4368 => (R => 255, G => 0, B => 0), 4369 => (R => 255, G => 0, B => 0), 4370 => (R => 255, G => 0, B => 0), 4371 => (R => 255, G => 0, B => 0), 4372 => (R => 255, G => 0, B => 0), 4373 => (R => 255, G => 0, B => 0), 4374 => (R => 255, G => 0, B => 0), 4375 => (R => 255, G => 0, B => 0), 4376 => (R => 255, G => 0, B => 0), 4377 => (R => 255, G => 0, B => 0), 4378 => (R => 255, G => 0, B => 0), 4379 => (R => 255, G => 0, B => 0), 4380 => (R => 255, G => 0, B => 0), 4381 => (R => 255, G => 0, B => 0), 4382 => (R => 255, G => 0, B => 0), 4383 => (R => 0, G => 0, B => 0), 4384 => (R => 0, G => 0, B => 0), 4385 => (R => 0, G => 0, B => 0), 4386 => (R => 0, G => 0, B => 0), 4387 => (R => 0, G => 0, B => 0), 4388 => (R => 0, G => 0, B => 0), 4389 => (R => 0, G => 0, B => 0), 4390 => (R => 0, G => 0, B => 0), 4391 => (R => 0, G => 0, B => 0), 4392 => (R => 0, G => 0, B => 0), 4393 => (R => 0, G => 0, B => 0), 4394 => (R => 0, G => 0, B => 0), 4395 => (R => 0, G => 0, B => 0), 4396 => (R => 0, G => 0, B => 0), 4397 => (R => 0, G => 0, B => 0), 4398 => (R => 0, G => 0, B => 0), 4399 => (R => 0, G => 0, B => 0), 4400 => (R => 0, G => 0, B => 0), 4401 => (R => 0, G => 0, B => 0), 4402 => (R => 0, G => 0, B => 0), 4403 => (R => 0, G => 0, B => 0), 4404 => (R => 0, G => 0, B => 0), 4405 => (R => 0, G => 0, B => 0), 4406 => (R => 0, G => 0, B => 0), 4407 => (R => 0, G => 0, B => 0), 4408 => (R => 0, G => 0, B => 0), 4409 => (R => 0, G => 0, B => 0), 4410 => (R => 0, G => 0, B => 0), 4411 => (R => 0, G => 0, B => 0), 4412 => (R => 0, G => 0, B => 0), 4413 => (R => 0, G => 0, B => 0), 4414 => (R => 0, G => 0, B => 0), 4415 => (R => 0, G => 0, B => 0), 4416 => (R => 0, G => 0, B => 0), 4417 => (R => 0, G => 0, B => 0), 4418 => (R => 0, G => 0, B => 0), 4419 => (R => 255, G => 0, B => 0), 4420 => (R => 255, G => 0, B => 0), 4421 => (R => 255, G => 0, B => 0), 4422 => (R => 255, G => 0, B => 0), 4423 => (R => 255, G => 0, B => 0), 4424 => (R => 255, G => 0, B => 0), 4425 => (R => 255, G => 0, B => 0), 4426 => (R => 255, G => 0, B => 0), 4427 => (R => 255, G => 0, B => 0), 4428 => (R => 255, G => 0, B => 0), 4429 => (R => 255, G => 0, B => 0), 4430 => (R => 255, G => 0, B => 0), 4431 => (R => 255, G => 0, B => 0), 4432 => (R => 255, G => 0, B => 0), 4433 => (R => 255, G => 0, B => 0), 4434 => (R => 255, G => 0, B => 0), 4435 => (R => 255, G => 0, B => 0), 4436 => (R => 255, G => 0, B => 0), 4437 => (R => 255, G => 0, B => 0), 4438 => (R => 255, G => 0, B => 0), 4439 => (R => 255, G => 0, B => 0), 4440 => (R => 255, G => 0, B => 0), 4441 => (R => 255, G => 0, B => 0), 4442 => (R => 255, G => 0, B => 0), 4443 => (R => 255, G => 0, B => 0), 4444 => (R => 255, G => 0, B => 0), 4445 => (R => 255, G => 0, B => 0), 4446 => (R => 255, G => 0, B => 0), 4447 => (R => 255, G => 0, B => 0), 4448 => (R => 255, G => 0, B => 0), 4449 => (R => 255, G => 0, B => 0), 4450 => (R => 255, G => 0, B => 0), 4451 => (R => 255, G => 0, B => 0), 4452 => (R => 255, G => 0, B => 0), 4453 => (R => 255, G => 0, B => 0), 4454 => (R => 255, G => 0, B => 0), 4455 => (R => 255, G => 0, B => 0), 4456 => (R => 255, G => 0, B => 0), 4457 => (R => 255, G => 0, B => 0), 4458 => (R => 255, G => 0, B => 0), 4459 => (R => 255, G => 0, B => 0), 4460 => (R => 255, G => 0, B => 0), 4461 => (R => 255, G => 0, B => 0), 4462 => (R => 255, G => 0, B => 0), 4463 => (R => 255, G => 0, B => 0), 4464 => (R => 255, G => 0, B => 0), 4465 => (R => 255, G => 0, B => 0), 4466 => (R => 255, G => 0, B => 0), 4467 => (R => 255, G => 0, B => 0), 4468 => (R => 255, G => 0, B => 0), 4469 => (R => 255, G => 0, B => 0), 4470 => (R => 255, G => 0, B => 0), 4471 => (R => 255, G => 0, B => 0), 4472 => (R => 255, G => 0, B => 0), 4473 => (R => 255, G => 0, B => 0), 4474 => (R => 255, G => 0, B => 0), 4475 => (R => 255, G => 0, B => 0), 4476 => (R => 255, G => 0, B => 0), 4477 => (R => 255, G => 0, B => 0), 4478 => (R => 255, G => 0, B => 0), 4479 => (R => 255, G => 0, B => 0), 4480 => (R => 255, G => 0, B => 0), 4481 => (R => 255, G => 0, B => 0), 4482 => (R => 255, G => 0, B => 0), 4483 => (R => 255, G => 0, B => 0), 4484 => (R => 255, G => 0, B => 0), 4485 => (R => 255, G => 0, B => 0), 4486 => (R => 255, G => 0, B => 0), 4487 => (R => 255, G => 0, B => 0), 4488 => (R => 255, G => 0, B => 0), 4489 => (R => 255, G => 0, B => 0), 4490 => (R => 255, G => 0, B => 0), 4491 => (R => 255, G => 0, B => 0), 4492 => (R => 255, G => 0, B => 0), 4493 => (R => 255, G => 0, B => 0), 4494 => (R => 255, G => 0, B => 0), 4495 => (R => 255, G => 0, B => 0), 4496 => (R => 255, G => 0, B => 0), 4497 => (R => 255, G => 0, B => 0), 4498 => (R => 255, G => 0, B => 0), 4499 => (R => 255, G => 0, B => 0), 4500 => (R => 255, G => 0, B => 0), 4501 => (R => 255, G => 0, B => 0), 4502 => (R => 255, G => 0, B => 0), 4503 => (R => 255, G => 0, B => 0), 4504 => (R => 255, G => 0, B => 0), 4505 => (R => 255, G => 0, B => 0), 4506 => (R => 255, G => 0, B => 0), 4507 => (R => 255, G => 0, B => 0), 4508 => (R => 255, G => 0, B => 0), 4509 => (R => 255, G => 0, B => 0), 4510 => (R => 255, G => 0, B => 0), 4511 => (R => 255, G => 0, B => 0), 4512 => (R => 255, G => 0, B => 0), 4513 => (R => 255, G => 0, B => 0), 4514 => (R => 255, G => 0, B => 0), 4515 => (R => 255, G => 0, B => 0), 4516 => (R => 255, G => 0, B => 0), 4517 => (R => 255, G => 0, B => 0), 4518 => (R => 255, G => 0, B => 0), 4519 => (R => 255, G => 0, B => 0), 4520 => (R => 255, G => 0, B => 0), 4521 => (R => 255, G => 0, B => 0), 4522 => (R => 255, G => 0, B => 0), 4523 => (R => 255, G => 0, B => 0), 4524 => (R => 255, G => 0, B => 0), 4525 => (R => 255, G => 0, B => 0), 4526 => (R => 255, G => 0, B => 0), 4527 => (R => 255, G => 0, B => 0), 4528 => (R => 255, G => 0, B => 0), 4529 => (R => 255, G => 0, B => 0), 4530 => (R => 255, G => 0, B => 0), 4531 => (R => 255, G => 0, B => 0), 4532 => (R => 255, G => 0, B => 0), 4533 => (R => 255, G => 0, B => 0), 4534 => (R => 255, G => 0, B => 0), 4535 => (R => 255, G => 0, B => 0), 4536 => (R => 255, G => 0, B => 0), 4537 => (R => 255, G => 0, B => 0), 4538 => (R => 255, G => 0, B => 0), 4539 => (R => 255, G => 0, B => 0), 4540 => (R => 255, G => 0, B => 0), 4541 => (R => 255, G => 0, B => 0), 4542 => (R => 255, G => 0, B => 0), 4543 => (R => 255, G => 0, B => 0), 4544 => (R => 255, G => 0, B => 0), 4545 => (R => 255, G => 0, B => 0), 4546 => (R => 255, G => 0, B => 0), 4547 => (R => 255, G => 0, B => 0), 4548 => (R => 255, G => 0, B => 0), 4549 => (R => 255, G => 0, B => 0), 4550 => (R => 255, G => 0, B => 0), 4551 => (R => 255, G => 0, B => 0), 4552 => (R => 255, G => 0, B => 0), 4553 => (R => 255, G => 0, B => 0), 4554 => (R => 255, G => 0, B => 0), 4555 => (R => 255, G => 0, B => 0), 4556 => (R => 255, G => 0, B => 0), 4557 => (R => 255, G => 0, B => 0), 4558 => (R => 255, G => 0, B => 0), 4559 => (R => 255, G => 0, B => 0), 4560 => (R => 255, G => 0, B => 0), 4561 => (R => 255, G => 0, B => 0), 4562 => (R => 255, G => 0, B => 0), 4563 => (R => 255, G => 0, B => 0), 4564 => (R => 255, G => 0, B => 0), 4565 => (R => 255, G => 0, B => 0), 4566 => (R => 255, G => 0, B => 0), 4567 => (R => 255, G => 0, B => 0), 4568 => (R => 255, G => 0, B => 0), 4569 => (R => 255, G => 0, B => 0), 4570 => (R => 255, G => 0, B => 0), 4571 => (R => 255, G => 0, B => 0), 4572 => (R => 255, G => 0, B => 0), 4573 => (R => 255, G => 0, B => 0), 4574 => (R => 255, G => 0, B => 0), 4575 => (R => 255, G => 0, B => 0), 4576 => (R => 255, G => 0, B => 0), 4577 => (R => 255, G => 0, B => 0), 4578 => (R => 255, G => 0, B => 0), 4579 => (R => 255, G => 0, B => 0), 4580 => (R => 255, G => 0, B => 0), 4581 => (R => 255, G => 0, B => 0), 4582 => (R => 0, G => 0, B => 0), 4583 => (R => 0, G => 0, B => 0), 4584 => (R => 0, G => 0, B => 0), 4585 => (R => 0, G => 0, B => 0), 4586 => (R => 0, G => 0, B => 0), 4587 => (R => 0, G => 0, B => 0), 4588 => (R => 0, G => 0, B => 0), 4589 => (R => 0, G => 0, B => 0), 4590 => (R => 0, G => 0, B => 0), 4591 => (R => 0, G => 0, B => 0), 4592 => (R => 0, G => 0, B => 0), 4593 => (R => 0, G => 0, B => 0), 4594 => (R => 0, G => 0, B => 0), 4595 => (R => 0, G => 0, B => 0), 4596 => (R => 0, G => 0, B => 0), 4597 => (R => 0, G => 0, B => 0), 4598 => (R => 0, G => 0, B => 0), 4599 => (R => 0, G => 0, B => 0), 4600 => (R => 0, G => 0, B => 0), 4601 => (R => 0, G => 0, B => 0), 4602 => (R => 0, G => 0, B => 0), 4603 => (R => 0, G => 0, B => 0), 4604 => (R => 0, G => 0, B => 0), 4605 => (R => 0, G => 0, B => 0), 4606 => (R => 0, G => 0, B => 0), 4607 => (R => 0, G => 0, B => 0), 4608 => (R => 0, G => 0, B => 0), 4609 => (R => 0, G => 0, B => 0), 4610 => (R => 0, G => 0, B => 0), 4611 => (R => 0, G => 0, B => 0), 4612 => (R => 0, G => 0, B => 0), 4613 => (R => 0, G => 0, B => 0), 4614 => (R => 0, G => 0, B => 0), 4615 => (R => 0, G => 0, B => 0), 4616 => (R => 0, G => 0, B => 0), 4617 => (R => 0, G => 0, B => 0), 4618 => (R => 0, G => 0, B => 0), 4619 => (R => 0, G => 0, B => 0), 4620 => (R => 0, G => 0, B => 0), 4621 => (R => 255, G => 0, B => 0), 4622 => (R => 255, G => 0, B => 0), 4623 => (R => 255, G => 0, B => 0), 4624 => (R => 255, G => 0, B => 0), 4625 => (R => 255, G => 0, B => 0), 4626 => (R => 255, G => 0, B => 0), 4627 => (R => 255, G => 0, B => 0), 4628 => (R => 255, G => 0, B => 0), 4629 => (R => 255, G => 0, B => 0), 4630 => (R => 255, G => 0, B => 0), 4631 => (R => 255, G => 0, B => 0), 4632 => (R => 255, G => 0, B => 0), 4633 => (R => 255, G => 0, B => 0), 4634 => (R => 255, G => 0, B => 0), 4635 => (R => 255, G => 0, B => 0), 4636 => (R => 255, G => 0, B => 0), 4637 => (R => 255, G => 0, B => 0), 4638 => (R => 255, G => 0, B => 0), 4639 => (R => 255, G => 0, B => 0), 4640 => (R => 255, G => 0, B => 0), 4641 => (R => 255, G => 0, B => 0), 4642 => (R => 255, G => 0, B => 0), 4643 => (R => 255, G => 0, B => 0), 4644 => (R => 255, G => 0, B => 0), 4645 => (R => 255, G => 0, B => 0), 4646 => (R => 255, G => 0, B => 0), 4647 => (R => 255, G => 0, B => 0), 4648 => (R => 255, G => 0, B => 0), 4649 => (R => 255, G => 0, B => 0), 4650 => (R => 255, G => 0, B => 0), 4651 => (R => 255, G => 0, B => 0), 4652 => (R => 255, G => 0, B => 0), 4653 => (R => 255, G => 0, B => 0), 4654 => (R => 255, G => 0, B => 0), 4655 => (R => 255, G => 0, B => 0), 4656 => (R => 255, G => 0, B => 0), 4657 => (R => 255, G => 0, B => 0), 4658 => (R => 255, G => 0, B => 0), 4659 => (R => 255, G => 0, B => 0), 4660 => (R => 255, G => 0, B => 0), 4661 => (R => 255, G => 0, B => 0), 4662 => (R => 255, G => 0, B => 0), 4663 => (R => 255, G => 0, B => 0), 4664 => (R => 255, G => 0, B => 0), 4665 => (R => 255, G => 0, B => 0), 4666 => (R => 255, G => 0, B => 0), 4667 => (R => 255, G => 0, B => 0), 4668 => (R => 255, G => 0, B => 0), 4669 => (R => 255, G => 0, B => 0), 4670 => (R => 255, G => 0, B => 0), 4671 => (R => 255, G => 0, B => 0), 4672 => (R => 255, G => 0, B => 0), 4673 => (R => 255, G => 0, B => 0), 4674 => (R => 255, G => 0, B => 0), 4675 => (R => 255, G => 0, B => 0), 4676 => (R => 255, G => 0, B => 0), 4677 => (R => 255, G => 0, B => 0), 4678 => (R => 255, G => 0, B => 0), 4679 => (R => 255, G => 0, B => 0), 4680 => (R => 255, G => 0, B => 0), 4681 => (R => 255, G => 0, B => 0), 4682 => (R => 255, G => 0, B => 0), 4683 => (R => 255, G => 0, B => 0), 4684 => (R => 255, G => 0, B => 0), 4685 => (R => 255, G => 0, B => 0), 4686 => (R => 255, G => 0, B => 0), 4687 => (R => 255, G => 0, B => 0), 4688 => (R => 255, G => 0, B => 0), 4689 => (R => 255, G => 0, B => 0), 4690 => (R => 255, G => 0, B => 0), 4691 => (R => 255, G => 0, B => 0), 4692 => (R => 255, G => 0, B => 0), 4693 => (R => 255, G => 0, B => 0), 4694 => (R => 255, G => 0, B => 0), 4695 => (R => 255, G => 0, B => 0), 4696 => (R => 255, G => 0, B => 0), 4697 => (R => 255, G => 0, B => 0), 4698 => (R => 255, G => 0, B => 0), 4699 => (R => 255, G => 0, B => 0), 4700 => (R => 255, G => 0, B => 0), 4701 => (R => 255, G => 0, B => 0), 4702 => (R => 255, G => 0, B => 0), 4703 => (R => 255, G => 0, B => 0), 4704 => (R => 255, G => 0, B => 0), 4705 => (R => 255, G => 0, B => 0), 4706 => (R => 255, G => 0, B => 0), 4707 => (R => 255, G => 0, B => 0), 4708 => (R => 255, G => 0, B => 0), 4709 => (R => 255, G => 0, B => 0), 4710 => (R => 255, G => 0, B => 0), 4711 => (R => 255, G => 0, B => 0), 4712 => (R => 255, G => 0, B => 0), 4713 => (R => 255, G => 0, B => 0), 4714 => (R => 255, G => 0, B => 0), 4715 => (R => 255, G => 0, B => 0), 4716 => (R => 255, G => 0, B => 0), 4717 => (R => 255, G => 0, B => 0), 4718 => (R => 255, G => 0, B => 0), 4719 => (R => 255, G => 0, B => 0), 4720 => (R => 255, G => 0, B => 0), 4721 => (R => 255, G => 0, B => 0), 4722 => (R => 255, G => 0, B => 0), 4723 => (R => 255, G => 0, B => 0), 4724 => (R => 255, G => 0, B => 0), 4725 => (R => 255, G => 0, B => 0), 4726 => (R => 255, G => 0, B => 0), 4727 => (R => 255, G => 0, B => 0), 4728 => (R => 255, G => 0, B => 0), 4729 => (R => 255, G => 0, B => 0), 4730 => (R => 255, G => 0, B => 0), 4731 => (R => 255, G => 0, B => 0), 4732 => (R => 255, G => 0, B => 0), 4733 => (R => 255, G => 0, B => 0), 4734 => (R => 255, G => 0, B => 0), 4735 => (R => 255, G => 0, B => 0), 4736 => (R => 255, G => 0, B => 0), 4737 => (R => 255, G => 0, B => 0), 4738 => (R => 255, G => 0, B => 0), 4739 => (R => 255, G => 0, B => 0), 4740 => (R => 255, G => 0, B => 0), 4741 => (R => 255, G => 0, B => 0), 4742 => (R => 255, G => 0, B => 0), 4743 => (R => 255, G => 0, B => 0), 4744 => (R => 255, G => 0, B => 0), 4745 => (R => 255, G => 0, B => 0), 4746 => (R => 255, G => 0, B => 0), 4747 => (R => 255, G => 0, B => 0), 4748 => (R => 255, G => 0, B => 0), 4749 => (R => 255, G => 0, B => 0), 4750 => (R => 255, G => 0, B => 0), 4751 => (R => 255, G => 0, B => 0), 4752 => (R => 255, G => 0, B => 0), 4753 => (R => 255, G => 0, B => 0), 4754 => (R => 255, G => 0, B => 0), 4755 => (R => 255, G => 0, B => 0), 4756 => (R => 255, G => 0, B => 0), 4757 => (R => 255, G => 0, B => 0), 4758 => (R => 255, G => 0, B => 0), 4759 => (R => 255, G => 0, B => 0), 4760 => (R => 255, G => 0, B => 0), 4761 => (R => 255, G => 0, B => 0), 4762 => (R => 255, G => 0, B => 0), 4763 => (R => 255, G => 0, B => 0), 4764 => (R => 255, G => 0, B => 0), 4765 => (R => 255, G => 0, B => 0), 4766 => (R => 255, G => 0, B => 0), 4767 => (R => 255, G => 0, B => 0), 4768 => (R => 255, G => 0, B => 0), 4769 => (R => 255, G => 0, B => 0), 4770 => (R => 255, G => 0, B => 0), 4771 => (R => 255, G => 0, B => 0), 4772 => (R => 255, G => 0, B => 0), 4773 => (R => 255, G => 0, B => 0), 4774 => (R => 255, G => 0, B => 0), 4775 => (R => 255, G => 0, B => 0), 4776 => (R => 255, G => 0, B => 0), 4777 => (R => 255, G => 0, B => 0), 4778 => (R => 255, G => 0, B => 0), 4779 => (R => 255, G => 0, B => 0), 4780 => (R => 255, G => 0, B => 0), 4781 => (R => 0, G => 0, B => 0), 4782 => (R => 0, G => 0, B => 0), 4783 => (R => 0, G => 0, B => 0), 4784 => (R => 0, G => 0, B => 0), 4785 => (R => 0, G => 0, B => 0), 4786 => (R => 0, G => 0, B => 0), 4787 => (R => 0, G => 0, B => 0), 4788 => (R => 0, G => 0, B => 0), 4789 => (R => 0, G => 0, B => 0), 4790 => (R => 0, G => 0, B => 0), 4791 => (R => 0, G => 0, B => 0), 4792 => (R => 0, G => 0, B => 0), 4793 => (R => 0, G => 0, B => 0), 4794 => (R => 0, G => 0, B => 0), 4795 => (R => 0, G => 0, B => 0), 4796 => (R => 0, G => 0, B => 0), 4797 => (R => 0, G => 0, B => 0), 4798 => (R => 0, G => 0, B => 0), 4799 => (R => 0, G => 0, B => 0), 4800 => (R => 0, G => 0, B => 0), 4801 => (R => 0, G => 0, B => 0), 4802 => (R => 0, G => 0, B => 0), 4803 => (R => 0, G => 0, B => 0), 4804 => (R => 0, G => 0, B => 0), 4805 => (R => 0, G => 0, B => 0), 4806 => (R => 0, G => 0, B => 0), 4807 => (R => 0, G => 0, B => 0), 4808 => (R => 0, G => 0, B => 0), 4809 => (R => 0, G => 0, B => 0), 4810 => (R => 0, G => 0, B => 0), 4811 => (R => 0, G => 0, B => 0), 4812 => (R => 0, G => 0, B => 0), 4813 => (R => 0, G => 0, B => 0), 4814 => (R => 0, G => 0, B => 0), 4815 => (R => 0, G => 0, B => 0), 4816 => (R => 0, G => 0, B => 0), 4817 => (R => 0, G => 0, B => 0), 4818 => (R => 0, G => 0, B => 0), 4819 => (R => 0, G => 0, B => 0), 4820 => (R => 0, G => 0, B => 0), 4821 => (R => 0, G => 0, B => 0), 4822 => (R => 255, G => 0, B => 0), 4823 => (R => 255, G => 0, B => 0), 4824 => (R => 255, G => 0, B => 0), 4825 => (R => 255, G => 0, B => 0), 4826 => (R => 255, G => 0, B => 0), 4827 => (R => 255, G => 0, B => 0), 4828 => (R => 255, G => 0, B => 0), 4829 => (R => 255, G => 0, B => 0), 4830 => (R => 255, G => 0, B => 0), 4831 => (R => 255, G => 0, B => 0), 4832 => (R => 255, G => 0, B => 0), 4833 => (R => 255, G => 0, B => 0), 4834 => (R => 255, G => 0, B => 0), 4835 => (R => 255, G => 0, B => 0), 4836 => (R => 255, G => 0, B => 0), 4837 => (R => 255, G => 0, B => 0), 4838 => (R => 255, G => 0, B => 0), 4839 => (R => 255, G => 0, B => 0), 4840 => (R => 255, G => 0, B => 0), 4841 => (R => 255, G => 0, B => 0), 4842 => (R => 255, G => 0, B => 0), 4843 => (R => 255, G => 0, B => 0), 4844 => (R => 255, G => 0, B => 0), 4845 => (R => 255, G => 0, B => 0), 4846 => (R => 255, G => 0, B => 0), 4847 => (R => 255, G => 0, B => 0), 4848 => (R => 255, G => 0, B => 0), 4849 => (R => 255, G => 0, B => 0), 4850 => (R => 255, G => 0, B => 0), 4851 => (R => 255, G => 0, B => 0), 4852 => (R => 255, G => 0, B => 0), 4853 => (R => 255, G => 0, B => 0), 4854 => (R => 255, G => 0, B => 0), 4855 => (R => 255, G => 0, B => 0), 4856 => (R => 255, G => 0, B => 0), 4857 => (R => 255, G => 0, B => 0), 4858 => (R => 255, G => 0, B => 0), 4859 => (R => 255, G => 0, B => 0), 4860 => (R => 255, G => 0, B => 0), 4861 => (R => 255, G => 0, B => 0), 4862 => (R => 255, G => 0, B => 0), 4863 => (R => 255, G => 0, B => 0), 4864 => (R => 255, G => 0, B => 0), 4865 => (R => 255, G => 0, B => 0), 4866 => (R => 255, G => 0, B => 0), 4867 => (R => 255, G => 0, B => 0), 4868 => (R => 255, G => 0, B => 0), 4869 => (R => 255, G => 0, B => 0), 4870 => (R => 255, G => 0, B => 0), 4871 => (R => 255, G => 0, B => 0), 4872 => (R => 255, G => 0, B => 0), 4873 => (R => 255, G => 0, B => 0), 4874 => (R => 255, G => 0, B => 0), 4875 => (R => 255, G => 0, B => 0), 4876 => (R => 255, G => 0, B => 0), 4877 => (R => 255, G => 0, B => 0), 4878 => (R => 255, G => 0, B => 0), 4879 => (R => 255, G => 0, B => 0), 4880 => (R => 255, G => 0, B => 0), 4881 => (R => 255, G => 0, B => 0), 4882 => (R => 255, G => 0, B => 0), 4883 => (R => 255, G => 0, B => 0), 4884 => (R => 255, G => 0, B => 0), 4885 => (R => 255, G => 0, B => 0), 4886 => (R => 255, G => 0, B => 0), 4887 => (R => 255, G => 0, B => 0), 4888 => (R => 255, G => 0, B => 0), 4889 => (R => 255, G => 0, B => 0), 4890 => (R => 255, G => 0, B => 0), 4891 => (R => 255, G => 0, B => 0), 4892 => (R => 255, G => 0, B => 0), 4893 => (R => 255, G => 0, B => 0), 4894 => (R => 255, G => 0, B => 0), 4895 => (R => 255, G => 0, B => 0), 4896 => (R => 255, G => 0, B => 0), 4897 => (R => 255, G => 0, B => 0), 4898 => (R => 255, G => 0, B => 0), 4899 => (R => 255, G => 0, B => 0), 4900 => (R => 255, G => 0, B => 0), 4901 => (R => 255, G => 0, B => 0), 4902 => (R => 255, G => 0, B => 0), 4903 => (R => 255, G => 0, B => 0), 4904 => (R => 255, G => 0, B => 0), 4905 => (R => 255, G => 0, B => 0), 4906 => (R => 255, G => 0, B => 0), 4907 => (R => 255, G => 0, B => 0), 4908 => (R => 255, G => 0, B => 0), 4909 => (R => 255, G => 0, B => 0), 4910 => (R => 255, G => 0, B => 0), 4911 => (R => 255, G => 0, B => 0), 4912 => (R => 255, G => 0, B => 0), 4913 => (R => 255, G => 0, B => 0), 4914 => (R => 255, G => 0, B => 0), 4915 => (R => 255, G => 0, B => 0), 4916 => (R => 255, G => 0, B => 0), 4917 => (R => 255, G => 0, B => 0), 4918 => (R => 255, G => 0, B => 0), 4919 => (R => 255, G => 0, B => 0), 4920 => (R => 255, G => 0, B => 0), 4921 => (R => 255, G => 0, B => 0), 4922 => (R => 255, G => 0, B => 0), 4923 => (R => 255, G => 0, B => 0), 4924 => (R => 255, G => 0, B => 0), 4925 => (R => 255, G => 0, B => 0), 4926 => (R => 255, G => 0, B => 0), 4927 => (R => 255, G => 0, B => 0), 4928 => (R => 255, G => 0, B => 0), 4929 => (R => 255, G => 0, B => 0), 4930 => (R => 255, G => 0, B => 0), 4931 => (R => 255, G => 0, B => 0), 4932 => (R => 255, G => 0, B => 0), 4933 => (R => 255, G => 0, B => 0), 4934 => (R => 255, G => 0, B => 0), 4935 => (R => 255, G => 0, B => 0), 4936 => (R => 255, G => 0, B => 0), 4937 => (R => 255, G => 0, B => 0), 4938 => (R => 255, G => 0, B => 0), 4939 => (R => 255, G => 0, B => 0), 4940 => (R => 255, G => 0, B => 0), 4941 => (R => 255, G => 0, B => 0), 4942 => (R => 255, G => 0, B => 0), 4943 => (R => 255, G => 0, B => 0), 4944 => (R => 255, G => 0, B => 0), 4945 => (R => 255, G => 0, B => 0), 4946 => (R => 255, G => 0, B => 0), 4947 => (R => 255, G => 0, B => 0), 4948 => (R => 255, G => 0, B => 0), 4949 => (R => 255, G => 0, B => 0), 4950 => (R => 255, G => 0, B => 0), 4951 => (R => 255, G => 0, B => 0), 4952 => (R => 255, G => 0, B => 0), 4953 => (R => 255, G => 0, B => 0), 4954 => (R => 255, G => 0, B => 0), 4955 => (R => 255, G => 0, B => 0), 4956 => (R => 255, G => 0, B => 0), 4957 => (R => 255, G => 0, B => 0), 4958 => (R => 255, G => 0, B => 0), 4959 => (R => 255, G => 0, B => 0), 4960 => (R => 255, G => 0, B => 0), 4961 => (R => 255, G => 0, B => 0), 4962 => (R => 255, G => 0, B => 0), 4963 => (R => 255, G => 0, B => 0), 4964 => (R => 255, G => 0, B => 0), 4965 => (R => 255, G => 0, B => 0), 4966 => (R => 255, G => 0, B => 0), 4967 => (R => 255, G => 0, B => 0), 4968 => (R => 255, G => 0, B => 0), 4969 => (R => 255, G => 0, B => 0), 4970 => (R => 255, G => 0, B => 0), 4971 => (R => 255, G => 0, B => 0), 4972 => (R => 255, G => 0, B => 0), 4973 => (R => 255, G => 0, B => 0), 4974 => (R => 255, G => 0, B => 0), 4975 => (R => 255, G => 0, B => 0), 4976 => (R => 255, G => 0, B => 0), 4977 => (R => 255, G => 0, B => 0), 4978 => (R => 255, G => 0, B => 0), 4979 => (R => 255, G => 0, B => 0), 4980 => (R => 0, G => 0, B => 0), 4981 => (R => 0, G => 0, B => 0), 4982 => (R => 0, G => 0, B => 0), 4983 => (R => 0, G => 0, B => 0), 4984 => (R => 0, G => 0, B => 0), 4985 => (R => 0, G => 0, B => 0), 4986 => (R => 0, G => 0, B => 0), 4987 => (R => 0, G => 0, B => 0), 4988 => (R => 0, G => 0, B => 0), 4989 => (R => 0, G => 0, B => 0), 4990 => (R => 0, G => 0, B => 0), 4991 => (R => 0, G => 0, B => 0), 4992 => (R => 0, G => 0, B => 0), 4993 => (R => 0, G => 0, B => 0), 4994 => (R => 0, G => 0, B => 0), 4995 => (R => 0, G => 0, B => 0), 4996 => (R => 0, G => 0, B => 0), 4997 => (R => 0, G => 0, B => 0), 4998 => (R => 0, G => 0, B => 0), 4999 => (R => 0, G => 0, B => 0), 5000 => (R => 0, G => 0, B => 0), 5001 => (R => 0, G => 0, B => 0), 5002 => (R => 0, G => 0, B => 0), 5003 => (R => 0, G => 0, B => 0), 5004 => (R => 0, G => 0, B => 0), 5005 => (R => 0, G => 0, B => 0), 5006 => (R => 0, G => 0, B => 0), 5007 => (R => 0, G => 0, B => 0), 5008 => (R => 0, G => 0, B => 0), 5009 => (R => 0, G => 0, B => 0), 5010 => (R => 0, G => 0, B => 0), 5011 => (R => 0, G => 0, B => 0), 5012 => (R => 0, G => 0, B => 0), 5013 => (R => 0, G => 0, B => 0), 5014 => (R => 0, G => 0, B => 0), 5015 => (R => 0, G => 0, B => 0), 5016 => (R => 0, G => 0, B => 0), 5017 => (R => 0, G => 0, B => 0), 5018 => (R => 0, G => 0, B => 0), 5019 => (R => 0, G => 0, B => 0), 5020 => (R => 0, G => 0, B => 0), 5021 => (R => 0, G => 0, B => 0), 5022 => (R => 0, G => 0, B => 0), 5023 => (R => 255, G => 0, B => 0), 5024 => (R => 255, G => 0, B => 0), 5025 => (R => 255, G => 0, B => 0), 5026 => (R => 255, G => 0, B => 0), 5027 => (R => 255, G => 0, B => 0), 5028 => (R => 255, G => 0, B => 0), 5029 => (R => 255, G => 0, B => 0), 5030 => (R => 255, G => 0, B => 0), 5031 => (R => 255, G => 0, B => 0), 5032 => (R => 255, G => 0, B => 0), 5033 => (R => 255, G => 0, B => 0), 5034 => (R => 255, G => 0, B => 0), 5035 => (R => 255, G => 0, B => 0), 5036 => (R => 255, G => 0, B => 0), 5037 => (R => 255, G => 0, B => 0), 5038 => (R => 255, G => 0, B => 0), 5039 => (R => 255, G => 0, B => 0), 5040 => (R => 255, G => 0, B => 0), 5041 => (R => 255, G => 0, B => 0), 5042 => (R => 255, G => 0, B => 0), 5043 => (R => 255, G => 0, B => 0), 5044 => (R => 255, G => 0, B => 0), 5045 => (R => 255, G => 0, B => 0), 5046 => (R => 255, G => 0, B => 0), 5047 => (R => 255, G => 0, B => 0), 5048 => (R => 255, G => 0, B => 0), 5049 => (R => 255, G => 0, B => 0), 5050 => (R => 255, G => 0, B => 0), 5051 => (R => 255, G => 0, B => 0), 5052 => (R => 255, G => 0, B => 0), 5053 => (R => 255, G => 0, B => 0), 5054 => (R => 255, G => 0, B => 0), 5055 => (R => 255, G => 0, B => 0), 5056 => (R => 255, G => 0, B => 0), 5057 => (R => 255, G => 0, B => 0), 5058 => (R => 255, G => 0, B => 0), 5059 => (R => 255, G => 0, B => 0), 5060 => (R => 255, G => 0, B => 0), 5061 => (R => 255, G => 0, B => 0), 5062 => (R => 255, G => 0, B => 0), 5063 => (R => 255, G => 0, B => 0), 5064 => (R => 255, G => 0, B => 0), 5065 => (R => 255, G => 0, B => 0), 5066 => (R => 255, G => 0, B => 0), 5067 => (R => 255, G => 0, B => 0), 5068 => (R => 255, G => 0, B => 0), 5069 => (R => 255, G => 0, B => 0), 5070 => (R => 255, G => 0, B => 0), 5071 => (R => 255, G => 0, B => 0), 5072 => (R => 255, G => 0, B => 0), 5073 => (R => 255, G => 0, B => 0), 5074 => (R => 255, G => 0, B => 0), 5075 => (R => 255, G => 0, B => 0), 5076 => (R => 255, G => 0, B => 0), 5077 => (R => 255, G => 0, B => 0), 5078 => (R => 255, G => 0, B => 0), 5079 => (R => 255, G => 0, B => 0), 5080 => (R => 255, G => 0, B => 0), 5081 => (R => 255, G => 0, B => 0), 5082 => (R => 255, G => 0, B => 0), 5083 => (R => 255, G => 0, B => 0), 5084 => (R => 255, G => 0, B => 0), 5085 => (R => 255, G => 0, B => 0), 5086 => (R => 255, G => 0, B => 0), 5087 => (R => 255, G => 0, B => 0), 5088 => (R => 255, G => 0, B => 0), 5089 => (R => 255, G => 0, B => 0), 5090 => (R => 255, G => 0, B => 0), 5091 => (R => 255, G => 0, B => 0), 5092 => (R => 255, G => 0, B => 0), 5093 => (R => 255, G => 0, B => 0), 5094 => (R => 255, G => 0, B => 0), 5095 => (R => 255, G => 0, B => 0), 5096 => (R => 255, G => 0, B => 0), 5097 => (R => 255, G => 0, B => 0), 5098 => (R => 255, G => 0, B => 0), 5099 => (R => 255, G => 0, B => 0), 5100 => (R => 255, G => 0, B => 0), 5101 => (R => 255, G => 0, B => 0), 5102 => (R => 255, G => 0, B => 0), 5103 => (R => 255, G => 0, B => 0), 5104 => (R => 255, G => 0, B => 0), 5105 => (R => 255, G => 0, B => 0), 5106 => (R => 255, G => 0, B => 0), 5107 => (R => 255, G => 0, B => 0), 5108 => (R => 255, G => 0, B => 0), 5109 => (R => 255, G => 0, B => 0), 5110 => (R => 255, G => 0, B => 0), 5111 => (R => 255, G => 0, B => 0), 5112 => (R => 255, G => 0, B => 0), 5113 => (R => 255, G => 0, B => 0), 5114 => (R => 255, G => 0, B => 0), 5115 => (R => 255, G => 0, B => 0), 5116 => (R => 255, G => 0, B => 0), 5117 => (R => 255, G => 0, B => 0), 5118 => (R => 255, G => 0, B => 0), 5119 => (R => 255, G => 0, B => 0), 5120 => (R => 255, G => 0, B => 0), 5121 => (R => 255, G => 0, B => 0), 5122 => (R => 255, G => 0, B => 0), 5123 => (R => 255, G => 0, B => 0), 5124 => (R => 255, G => 0, B => 0), 5125 => (R => 255, G => 0, B => 0), 5126 => (R => 255, G => 0, B => 0), 5127 => (R => 255, G => 0, B => 0), 5128 => (R => 255, G => 0, B => 0), 5129 => (R => 255, G => 0, B => 0), 5130 => (R => 255, G => 0, B => 0), 5131 => (R => 255, G => 0, B => 0), 5132 => (R => 255, G => 0, B => 0), 5133 => (R => 255, G => 0, B => 0), 5134 => (R => 255, G => 0, B => 0), 5135 => (R => 255, G => 0, B => 0), 5136 => (R => 255, G => 0, B => 0), 5137 => (R => 255, G => 0, B => 0), 5138 => (R => 255, G => 0, B => 0), 5139 => (R => 255, G => 0, B => 0), 5140 => (R => 255, G => 0, B => 0), 5141 => (R => 255, G => 0, B => 0), 5142 => (R => 255, G => 0, B => 0), 5143 => (R => 255, G => 0, B => 0), 5144 => (R => 255, G => 0, B => 0), 5145 => (R => 255, G => 0, B => 0), 5146 => (R => 255, G => 0, B => 0), 5147 => (R => 255, G => 0, B => 0), 5148 => (R => 255, G => 0, B => 0), 5149 => (R => 255, G => 0, B => 0), 5150 => (R => 255, G => 0, B => 0), 5151 => (R => 255, G => 0, B => 0), 5152 => (R => 255, G => 0, B => 0), 5153 => (R => 255, G => 0, B => 0), 5154 => (R => 255, G => 0, B => 0), 5155 => (R => 255, G => 0, B => 0), 5156 => (R => 255, G => 0, B => 0), 5157 => (R => 255, G => 0, B => 0), 5158 => (R => 255, G => 0, B => 0), 5159 => (R => 255, G => 0, B => 0), 5160 => (R => 255, G => 0, B => 0), 5161 => (R => 255, G => 0, B => 0), 5162 => (R => 255, G => 0, B => 0), 5163 => (R => 255, G => 0, B => 0), 5164 => (R => 255, G => 0, B => 0), 5165 => (R => 255, G => 0, B => 0), 5166 => (R => 255, G => 0, B => 0), 5167 => (R => 255, G => 0, B => 0), 5168 => (R => 255, G => 0, B => 0), 5169 => (R => 255, G => 0, B => 0), 5170 => (R => 255, G => 0, B => 0), 5171 => (R => 255, G => 0, B => 0), 5172 => (R => 255, G => 0, B => 0), 5173 => (R => 255, G => 0, B => 0), 5174 => (R => 255, G => 0, B => 0), 5175 => (R => 255, G => 0, B => 0), 5176 => (R => 255, G => 0, B => 0), 5177 => (R => 255, G => 0, B => 0), 5178 => (R => 255, G => 0, B => 0), 5179 => (R => 0, G => 0, B => 0), 5180 => (R => 0, G => 0, B => 0), 5181 => (R => 0, G => 0, B => 0), 5182 => (R => 0, G => 0, B => 0), 5183 => (R => 0, G => 0, B => 0), 5184 => (R => 0, G => 0, B => 0), 5185 => (R => 0, G => 0, B => 0), 5186 => (R => 0, G => 0, B => 0), 5187 => (R => 0, G => 0, B => 0), 5188 => (R => 0, G => 0, B => 0), 5189 => (R => 0, G => 0, B => 0), 5190 => (R => 0, G => 0, B => 0), 5191 => (R => 0, G => 0, B => 0), 5192 => (R => 0, G => 0, B => 0), 5193 => (R => 0, G => 0, B => 0), 5194 => (R => 0, G => 0, B => 0), 5195 => (R => 0, G => 0, B => 0), 5196 => (R => 0, G => 0, B => 0), 5197 => (R => 0, G => 0, B => 0), 5198 => (R => 0, G => 0, B => 0), 5199 => (R => 0, G => 0, B => 0), 5200 => (R => 0, G => 0, B => 0), 5201 => (R => 0, G => 0, B => 0), 5202 => (R => 0, G => 0, B => 0), 5203 => (R => 0, G => 0, B => 0), 5204 => (R => 0, G => 0, B => 0), 5205 => (R => 0, G => 0, B => 0), 5206 => (R => 0, G => 0, B => 0), 5207 => (R => 0, G => 0, B => 0), 5208 => (R => 0, G => 0, B => 0), 5209 => (R => 0, G => 0, B => 0), 5210 => (R => 0, G => 0, B => 0), 5211 => (R => 0, G => 0, B => 0), 5212 => (R => 0, G => 0, B => 0), 5213 => (R => 0, G => 0, B => 0), 5214 => (R => 0, G => 0, B => 0), 5215 => (R => 0, G => 0, B => 0), 5216 => (R => 0, G => 0, B => 0), 5217 => (R => 0, G => 0, B => 0), 5218 => (R => 0, G => 0, B => 0), 5219 => (R => 0, G => 0, B => 0), 5220 => (R => 0, G => 0, B => 0), 5221 => (R => 0, G => 0, B => 0), 5222 => (R => 0, G => 0, B => 0), 5223 => (R => 0, G => 0, B => 0), 5224 => (R => 255, G => 0, B => 0), 5225 => (R => 255, G => 0, B => 0), 5226 => (R => 255, G => 0, B => 0), 5227 => (R => 255, G => 0, B => 0), 5228 => (R => 255, G => 0, B => 0), 5229 => (R => 255, G => 0, B => 0), 5230 => (R => 255, G => 0, B => 0), 5231 => (R => 255, G => 0, B => 0), 5232 => (R => 255, G => 0, B => 0), 5233 => (R => 255, G => 0, B => 0), 5234 => (R => 255, G => 0, B => 0), 5235 => (R => 255, G => 0, B => 0), 5236 => (R => 255, G => 0, B => 0), 5237 => (R => 255, G => 0, B => 0), 5238 => (R => 255, G => 0, B => 0), 5239 => (R => 255, G => 0, B => 0), 5240 => (R => 255, G => 0, B => 0), 5241 => (R => 255, G => 0, B => 0), 5242 => (R => 255, G => 0, B => 0), 5243 => (R => 255, G => 0, B => 0), 5244 => (R => 255, G => 0, B => 0), 5245 => (R => 255, G => 0, B => 0), 5246 => (R => 255, G => 0, B => 0), 5247 => (R => 255, G => 0, B => 0), 5248 => (R => 255, G => 0, B => 0), 5249 => (R => 255, G => 0, B => 0), 5250 => (R => 255, G => 0, B => 0), 5251 => (R => 255, G => 0, B => 0), 5252 => (R => 255, G => 0, B => 0), 5253 => (R => 255, G => 0, B => 0), 5254 => (R => 255, G => 0, B => 0), 5255 => (R => 255, G => 0, B => 0), 5256 => (R => 255, G => 0, B => 0), 5257 => (R => 255, G => 0, B => 0), 5258 => (R => 255, G => 0, B => 0), 5259 => (R => 255, G => 0, B => 0), 5260 => (R => 255, G => 0, B => 0), 5261 => (R => 255, G => 0, B => 0), 5262 => (R => 255, G => 0, B => 0), 5263 => (R => 255, G => 0, B => 0), 5264 => (R => 255, G => 0, B => 0), 5265 => (R => 255, G => 0, B => 0), 5266 => (R => 255, G => 0, B => 0), 5267 => (R => 255, G => 0, B => 0), 5268 => (R => 255, G => 0, B => 0), 5269 => (R => 255, G => 0, B => 0), 5270 => (R => 255, G => 0, B => 0), 5271 => (R => 255, G => 0, B => 0), 5272 => (R => 255, G => 0, B => 0), 5273 => (R => 255, G => 0, B => 0), 5274 => (R => 255, G => 0, B => 0), 5275 => (R => 255, G => 0, B => 0), 5276 => (R => 255, G => 0, B => 0), 5277 => (R => 255, G => 0, B => 0), 5278 => (R => 255, G => 0, B => 0), 5279 => (R => 255, G => 0, B => 0), 5280 => (R => 255, G => 0, B => 0), 5281 => (R => 255, G => 0, B => 0), 5282 => (R => 255, G => 0, B => 0), 5283 => (R => 255, G => 0, B => 0), 5284 => (R => 255, G => 0, B => 0), 5285 => (R => 255, G => 0, B => 0), 5286 => (R => 255, G => 0, B => 0), 5287 => (R => 255, G => 0, B => 0), 5288 => (R => 255, G => 0, B => 0), 5289 => (R => 255, G => 0, B => 0), 5290 => (R => 255, G => 0, B => 0), 5291 => (R => 255, G => 0, B => 0), 5292 => (R => 255, G => 0, B => 0), 5293 => (R => 255, G => 0, B => 0), 5294 => (R => 255, G => 0, B => 0), 5295 => (R => 255, G => 0, B => 0), 5296 => (R => 255, G => 0, B => 0), 5297 => (R => 255, G => 0, B => 0), 5298 => (R => 255, G => 0, B => 0), 5299 => (R => 255, G => 0, B => 0), 5300 => (R => 255, G => 0, B => 0), 5301 => (R => 255, G => 0, B => 0), 5302 => (R => 255, G => 0, B => 0), 5303 => (R => 255, G => 0, B => 0), 5304 => (R => 255, G => 0, B => 0), 5305 => (R => 255, G => 0, B => 0), 5306 => (R => 255, G => 0, B => 0), 5307 => (R => 255, G => 0, B => 0), 5308 => (R => 255, G => 0, B => 0), 5309 => (R => 255, G => 0, B => 0), 5310 => (R => 255, G => 0, B => 0), 5311 => (R => 255, G => 0, B => 0), 5312 => (R => 255, G => 0, B => 0), 5313 => (R => 255, G => 0, B => 0), 5314 => (R => 255, G => 0, B => 0), 5315 => (R => 255, G => 0, B => 0), 5316 => (R => 255, G => 0, B => 0), 5317 => (R => 255, G => 0, B => 0), 5318 => (R => 255, G => 0, B => 0), 5319 => (R => 255, G => 0, B => 0), 5320 => (R => 255, G => 0, B => 0), 5321 => (R => 255, G => 0, B => 0), 5322 => (R => 255, G => 0, B => 0), 5323 => (R => 255, G => 0, B => 0), 5324 => (R => 255, G => 0, B => 0), 5325 => (R => 255, G => 0, B => 0), 5326 => (R => 255, G => 0, B => 0), 5327 => (R => 255, G => 0, B => 0), 5328 => (R => 255, G => 0, B => 0), 5329 => (R => 255, G => 0, B => 0), 5330 => (R => 255, G => 0, B => 0), 5331 => (R => 255, G => 0, B => 0), 5332 => (R => 255, G => 0, B => 0), 5333 => (R => 255, G => 0, B => 0), 5334 => (R => 255, G => 0, B => 0), 5335 => (R => 255, G => 0, B => 0), 5336 => (R => 255, G => 0, B => 0), 5337 => (R => 255, G => 0, B => 0), 5338 => (R => 255, G => 0, B => 0), 5339 => (R => 255, G => 0, B => 0), 5340 => (R => 255, G => 0, B => 0), 5341 => (R => 255, G => 0, B => 0), 5342 => (R => 255, G => 0, B => 0), 5343 => (R => 255, G => 0, B => 0), 5344 => (R => 255, G => 0, B => 0), 5345 => (R => 255, G => 0, B => 0), 5346 => (R => 255, G => 0, B => 0), 5347 => (R => 255, G => 0, B => 0), 5348 => (R => 255, G => 0, B => 0), 5349 => (R => 255, G => 0, B => 0), 5350 => (R => 255, G => 0, B => 0), 5351 => (R => 255, G => 0, B => 0), 5352 => (R => 255, G => 0, B => 0), 5353 => (R => 255, G => 0, B => 0), 5354 => (R => 255, G => 0, B => 0), 5355 => (R => 255, G => 0, B => 0), 5356 => (R => 255, G => 0, B => 0), 5357 => (R => 255, G => 0, B => 0), 5358 => (R => 255, G => 0, B => 0), 5359 => (R => 255, G => 0, B => 0), 5360 => (R => 255, G => 0, B => 0), 5361 => (R => 255, G => 0, B => 0), 5362 => (R => 255, G => 0, B => 0), 5363 => (R => 255, G => 0, B => 0), 5364 => (R => 255, G => 0, B => 0), 5365 => (R => 255, G => 0, B => 0), 5366 => (R => 255, G => 0, B => 0), 5367 => (R => 255, G => 0, B => 0), 5368 => (R => 255, G => 0, B => 0), 5369 => (R => 255, G => 0, B => 0), 5370 => (R => 255, G => 0, B => 0), 5371 => (R => 255, G => 0, B => 0), 5372 => (R => 255, G => 0, B => 0), 5373 => (R => 255, G => 0, B => 0), 5374 => (R => 255, G => 0, B => 0), 5375 => (R => 255, G => 0, B => 0), 5376 => (R => 255, G => 0, B => 0), 5377 => (R => 255, G => 0, B => 0), 5378 => (R => 0, G => 0, B => 0), 5379 => (R => 0, G => 0, B => 0), 5380 => (R => 0, G => 0, B => 0), 5381 => (R => 0, G => 0, B => 0), 5382 => (R => 0, G => 0, B => 0), 5383 => (R => 0, G => 0, B => 0), 5384 => (R => 0, G => 0, B => 0), 5385 => (R => 0, G => 0, B => 0), 5386 => (R => 0, G => 0, B => 0), 5387 => (R => 0, G => 0, B => 0), 5388 => (R => 0, G => 0, B => 0), 5389 => (R => 0, G => 0, B => 0), 5390 => (R => 0, G => 0, B => 0), 5391 => (R => 0, G => 0, B => 0), 5392 => (R => 0, G => 0, B => 0), 5393 => (R => 0, G => 0, B => 0), 5394 => (R => 0, G => 0, B => 0), 5395 => (R => 0, G => 0, B => 0), 5396 => (R => 0, G => 0, B => 0), 5397 => (R => 0, G => 0, B => 0), 5398 => (R => 0, G => 0, B => 0), 5399 => (R => 0, G => 0, B => 0), 5400 => (R => 0, G => 0, B => 0), 5401 => (R => 0, G => 0, B => 0), 5402 => (R => 0, G => 0, B => 0), 5403 => (R => 0, G => 0, B => 0), 5404 => (R => 0, G => 0, B => 0), 5405 => (R => 0, G => 0, B => 0), 5406 => (R => 0, G => 0, B => 0), 5407 => (R => 0, G => 0, B => 0), 5408 => (R => 0, G => 0, B => 0), 5409 => (R => 0, G => 0, B => 0), 5410 => (R => 0, G => 0, B => 0), 5411 => (R => 0, G => 0, B => 0), 5412 => (R => 0, G => 0, B => 0), 5413 => (R => 0, G => 0, B => 0), 5414 => (R => 0, G => 0, B => 0), 5415 => (R => 0, G => 0, B => 0), 5416 => (R => 0, G => 0, B => 0), 5417 => (R => 0, G => 0, B => 0), 5418 => (R => 0, G => 0, B => 0), 5419 => (R => 0, G => 0, B => 0), 5420 => (R => 0, G => 0, B => 0), 5421 => (R => 0, G => 0, B => 0), 5422 => (R => 0, G => 0, B => 0), 5423 => (R => 0, G => 0, B => 0), 5424 => (R => 0, G => 0, B => 0), 5425 => (R => 255, G => 0, B => 0), 5426 => (R => 255, G => 0, B => 0), 5427 => (R => 255, G => 0, B => 0), 5428 => (R => 255, G => 0, B => 0), 5429 => (R => 255, G => 0, B => 0), 5430 => (R => 255, G => 0, B => 0), 5431 => (R => 255, G => 0, B => 0), 5432 => (R => 255, G => 0, B => 0), 5433 => (R => 255, G => 0, B => 0), 5434 => (R => 255, G => 0, B => 0), 5435 => (R => 255, G => 0, B => 0), 5436 => (R => 255, G => 0, B => 0), 5437 => (R => 255, G => 0, B => 0), 5438 => (R => 255, G => 0, B => 0), 5439 => (R => 255, G => 0, B => 0), 5440 => (R => 255, G => 0, B => 0), 5441 => (R => 255, G => 0, B => 0), 5442 => (R => 255, G => 0, B => 0), 5443 => (R => 255, G => 0, B => 0), 5444 => (R => 255, G => 0, B => 0), 5445 => (R => 255, G => 0, B => 0), 5446 => (R => 255, G => 0, B => 0), 5447 => (R => 255, G => 0, B => 0), 5448 => (R => 255, G => 0, B => 0), 5449 => (R => 255, G => 0, B => 0), 5450 => (R => 255, G => 0, B => 0), 5451 => (R => 255, G => 0, B => 0), 5452 => (R => 255, G => 0, B => 0), 5453 => (R => 255, G => 0, B => 0), 5454 => (R => 255, G => 0, B => 0), 5455 => (R => 255, G => 0, B => 0), 5456 => (R => 255, G => 0, B => 0), 5457 => (R => 255, G => 0, B => 0), 5458 => (R => 255, G => 0, B => 0), 5459 => (R => 255, G => 0, B => 0), 5460 => (R => 255, G => 0, B => 0), 5461 => (R => 255, G => 0, B => 0), 5462 => (R => 255, G => 0, B => 0), 5463 => (R => 255, G => 0, B => 0), 5464 => (R => 255, G => 0, B => 0), 5465 => (R => 255, G => 0, B => 0), 5466 => (R => 255, G => 0, B => 0), 5467 => (R => 255, G => 0, B => 0), 5468 => (R => 255, G => 0, B => 0), 5469 => (R => 255, G => 0, B => 0), 5470 => (R => 255, G => 0, B => 0), 5471 => (R => 255, G => 0, B => 0), 5472 => (R => 255, G => 0, B => 0), 5473 => (R => 255, G => 0, B => 0), 5474 => (R => 255, G => 0, B => 0), 5475 => (R => 255, G => 0, B => 0), 5476 => (R => 255, G => 0, B => 0), 5477 => (R => 255, G => 0, B => 0), 5478 => (R => 255, G => 0, B => 0), 5479 => (R => 255, G => 0, B => 0), 5480 => (R => 255, G => 0, B => 0), 5481 => (R => 255, G => 0, B => 0), 5482 => (R => 255, G => 0, B => 0), 5483 => (R => 255, G => 0, B => 0), 5484 => (R => 255, G => 0, B => 0), 5485 => (R => 255, G => 0, B => 0), 5486 => (R => 255, G => 0, B => 0), 5487 => (R => 255, G => 0, B => 0), 5488 => (R => 255, G => 0, B => 0), 5489 => (R => 255, G => 0, B => 0), 5490 => (R => 255, G => 0, B => 0), 5491 => (R => 255, G => 0, B => 0), 5492 => (R => 255, G => 0, B => 0), 5493 => (R => 255, G => 0, B => 0), 5494 => (R => 255, G => 0, B => 0), 5495 => (R => 255, G => 0, B => 0), 5496 => (R => 255, G => 0, B => 0), 5497 => (R => 255, G => 0, B => 0), 5498 => (R => 255, G => 0, B => 0), 5499 => (R => 255, G => 0, B => 0), 5500 => (R => 255, G => 0, B => 0), 5501 => (R => 255, G => 0, B => 0), 5502 => (R => 255, G => 0, B => 0), 5503 => (R => 255, G => 0, B => 0), 5504 => (R => 255, G => 0, B => 0), 5505 => (R => 255, G => 0, B => 0), 5506 => (R => 255, G => 0, B => 0), 5507 => (R => 255, G => 0, B => 0), 5508 => (R => 255, G => 0, B => 0), 5509 => (R => 255, G => 0, B => 0), 5510 => (R => 255, G => 0, B => 0), 5511 => (R => 255, G => 0, B => 0), 5512 => (R => 255, G => 0, B => 0), 5513 => (R => 255, G => 0, B => 0), 5514 => (R => 255, G => 0, B => 0), 5515 => (R => 255, G => 0, B => 0), 5516 => (R => 255, G => 0, B => 0), 5517 => (R => 255, G => 0, B => 0), 5518 => (R => 255, G => 0, B => 0), 5519 => (R => 255, G => 0, B => 0), 5520 => (R => 255, G => 0, B => 0), 5521 => (R => 255, G => 0, B => 0), 5522 => (R => 255, G => 0, B => 0), 5523 => (R => 255, G => 0, B => 0), 5524 => (R => 255, G => 0, B => 0), 5525 => (R => 255, G => 0, B => 0), 5526 => (R => 255, G => 0, B => 0), 5527 => (R => 255, G => 0, B => 0), 5528 => (R => 255, G => 0, B => 0), 5529 => (R => 255, G => 0, B => 0), 5530 => (R => 255, G => 0, B => 0), 5531 => (R => 255, G => 0, B => 0), 5532 => (R => 255, G => 0, B => 0), 5533 => (R => 255, G => 0, B => 0), 5534 => (R => 255, G => 0, B => 0), 5535 => (R => 255, G => 0, B => 0), 5536 => (R => 255, G => 0, B => 0), 5537 => (R => 255, G => 0, B => 0), 5538 => (R => 255, G => 0, B => 0), 5539 => (R => 255, G => 0, B => 0), 5540 => (R => 255, G => 0, B => 0), 5541 => (R => 255, G => 0, B => 0), 5542 => (R => 255, G => 0, B => 0), 5543 => (R => 255, G => 0, B => 0), 5544 => (R => 255, G => 0, B => 0), 5545 => (R => 255, G => 0, B => 0), 5546 => (R => 255, G => 0, B => 0), 5547 => (R => 255, G => 0, B => 0), 5548 => (R => 255, G => 0, B => 0), 5549 => (R => 255, G => 0, B => 0), 5550 => (R => 255, G => 0, B => 0), 5551 => (R => 255, G => 0, B => 0), 5552 => (R => 255, G => 0, B => 0), 5553 => (R => 255, G => 0, B => 0), 5554 => (R => 255, G => 0, B => 0), 5555 => (R => 255, G => 0, B => 0), 5556 => (R => 255, G => 0, B => 0), 5557 => (R => 255, G => 0, B => 0), 5558 => (R => 255, G => 0, B => 0), 5559 => (R => 255, G => 0, B => 0), 5560 => (R => 255, G => 0, B => 0), 5561 => (R => 255, G => 0, B => 0), 5562 => (R => 255, G => 0, B => 0), 5563 => (R => 255, G => 0, B => 0), 5564 => (R => 255, G => 0, B => 0), 5565 => (R => 255, G => 0, B => 0), 5566 => (R => 255, G => 0, B => 0), 5567 => (R => 255, G => 0, B => 0), 5568 => (R => 255, G => 0, B => 0), 5569 => (R => 255, G => 0, B => 0), 5570 => (R => 255, G => 0, B => 0), 5571 => (R => 255, G => 0, B => 0), 5572 => (R => 255, G => 0, B => 0), 5573 => (R => 255, G => 0, B => 0), 5574 => (R => 255, G => 0, B => 0), 5575 => (R => 255, G => 0, B => 0), 5576 => (R => 255, G => 0, B => 0), 5577 => (R => 0, G => 0, B => 0), 5578 => (R => 0, G => 0, B => 0), 5579 => (R => 0, G => 0, B => 0), 5580 => (R => 0, G => 0, B => 0), 5581 => (R => 0, G => 0, B => 0), 5582 => (R => 0, G => 0, B => 0), 5583 => (R => 0, G => 0, B => 0), 5584 => (R => 0, G => 0, B => 0), 5585 => (R => 0, G => 0, B => 0), 5586 => (R => 0, G => 0, B => 0), 5587 => (R => 0, G => 0, B => 0), 5588 => (R => 0, G => 0, B => 0), 5589 => (R => 0, G => 0, B => 0), 5590 => (R => 0, G => 0, B => 0), 5591 => (R => 0, G => 0, B => 0), 5592 => (R => 0, G => 0, B => 0), 5593 => (R => 0, G => 0, B => 0), 5594 => (R => 0, G => 0, B => 0), 5595 => (R => 0, G => 0, B => 0), 5596 => (R => 0, G => 0, B => 0), 5597 => (R => 0, G => 0, B => 0), 5598 => (R => 0, G => 0, B => 0), 5599 => (R => 0, G => 0, B => 0), 5600 => (R => 0, G => 0, B => 0), 5601 => (R => 0, G => 0, B => 0), 5602 => (R => 0, G => 0, B => 0), 5603 => (R => 0, G => 0, B => 0), 5604 => (R => 0, G => 0, B => 0), 5605 => (R => 0, G => 0, B => 0), 5606 => (R => 0, G => 0, B => 0), 5607 => (R => 0, G => 0, B => 0), 5608 => (R => 0, G => 0, B => 0), 5609 => (R => 0, G => 0, B => 0), 5610 => (R => 0, G => 0, B => 0), 5611 => (R => 0, G => 0, B => 0), 5612 => (R => 0, G => 0, B => 0), 5613 => (R => 0, G => 0, B => 0), 5614 => (R => 0, G => 0, B => 0), 5615 => (R => 0, G => 0, B => 0), 5616 => (R => 0, G => 0, B => 0), 5617 => (R => 0, G => 0, B => 0), 5618 => (R => 0, G => 0, B => 0), 5619 => (R => 0, G => 0, B => 0), 5620 => (R => 0, G => 0, B => 0), 5621 => (R => 0, G => 0, B => 0), 5622 => (R => 0, G => 0, B => 0), 5623 => (R => 0, G => 0, B => 0), 5624 => (R => 0, G => 0, B => 0), 5625 => (R => 0, G => 0, B => 0), 5626 => (R => 255, G => 0, B => 0), 5627 => (R => 255, G => 0, B => 0), 5628 => (R => 255, G => 0, B => 0), 5629 => (R => 255, G => 0, B => 0), 5630 => (R => 255, G => 0, B => 0), 5631 => (R => 255, G => 0, B => 0), 5632 => (R => 255, G => 0, B => 0), 5633 => (R => 255, G => 0, B => 0), 5634 => (R => 255, G => 0, B => 0), 5635 => (R => 255, G => 0, B => 0), 5636 => (R => 255, G => 0, B => 0), 5637 => (R => 255, G => 0, B => 0), 5638 => (R => 255, G => 0, B => 0), 5639 => (R => 255, G => 0, B => 0), 5640 => (R => 255, G => 0, B => 0), 5641 => (R => 255, G => 0, B => 0), 5642 => (R => 255, G => 0, B => 0), 5643 => (R => 255, G => 0, B => 0), 5644 => (R => 255, G => 0, B => 0), 5645 => (R => 255, G => 0, B => 0), 5646 => (R => 255, G => 0, B => 0), 5647 => (R => 255, G => 0, B => 0), 5648 => (R => 255, G => 0, B => 0), 5649 => (R => 255, G => 0, B => 0), 5650 => (R => 255, G => 0, B => 0), 5651 => (R => 255, G => 0, B => 0), 5652 => (R => 255, G => 0, B => 0), 5653 => (R => 255, G => 0, B => 0), 5654 => (R => 255, G => 0, B => 0), 5655 => (R => 255, G => 0, B => 0), 5656 => (R => 255, G => 0, B => 0), 5657 => (R => 255, G => 0, B => 0), 5658 => (R => 255, G => 0, B => 0), 5659 => (R => 255, G => 0, B => 0), 5660 => (R => 255, G => 0, B => 0), 5661 => (R => 255, G => 0, B => 0), 5662 => (R => 255, G => 0, B => 0), 5663 => (R => 255, G => 0, B => 0), 5664 => (R => 255, G => 0, B => 0), 5665 => (R => 255, G => 0, B => 0), 5666 => (R => 255, G => 0, B => 0), 5667 => (R => 255, G => 0, B => 0), 5668 => (R => 255, G => 0, B => 0), 5669 => (R => 255, G => 0, B => 0), 5670 => (R => 255, G => 0, B => 0), 5671 => (R => 255, G => 0, B => 0), 5672 => (R => 255, G => 0, B => 0), 5673 => (R => 255, G => 0, B => 0), 5674 => (R => 255, G => 0, B => 0), 5675 => (R => 255, G => 0, B => 0), 5676 => (R => 255, G => 0, B => 0), 5677 => (R => 255, G => 0, B => 0), 5678 => (R => 255, G => 0, B => 0), 5679 => (R => 255, G => 0, B => 0), 5680 => (R => 255, G => 0, B => 0), 5681 => (R => 255, G => 0, B => 0), 5682 => (R => 255, G => 0, B => 0), 5683 => (R => 255, G => 0, B => 0), 5684 => (R => 255, G => 0, B => 0), 5685 => (R => 255, G => 0, B => 0), 5686 => (R => 255, G => 0, B => 0), 5687 => (R => 255, G => 0, B => 0), 5688 => (R => 255, G => 0, B => 0), 5689 => (R => 255, G => 0, B => 0), 5690 => (R => 255, G => 0, B => 0), 5691 => (R => 255, G => 0, B => 0), 5692 => (R => 255, G => 0, B => 0), 5693 => (R => 255, G => 0, B => 0), 5694 => (R => 255, G => 0, B => 0), 5695 => (R => 255, G => 0, B => 0), 5696 => (R => 255, G => 0, B => 0), 5697 => (R => 255, G => 0, B => 0), 5698 => (R => 255, G => 0, B => 0), 5699 => (R => 255, G => 0, B => 0), 5700 => (R => 255, G => 0, B => 0), 5701 => (R => 255, G => 0, B => 0), 5702 => (R => 255, G => 0, B => 0), 5703 => (R => 255, G => 0, B => 0), 5704 => (R => 255, G => 0, B => 0), 5705 => (R => 255, G => 0, B => 0), 5706 => (R => 255, G => 0, B => 0), 5707 => (R => 255, G => 0, B => 0), 5708 => (R => 255, G => 0, B => 0), 5709 => (R => 255, G => 0, B => 0), 5710 => (R => 255, G => 0, B => 0), 5711 => (R => 255, G => 0, B => 0), 5712 => (R => 255, G => 0, B => 0), 5713 => (R => 255, G => 0, B => 0), 5714 => (R => 255, G => 0, B => 0), 5715 => (R => 255, G => 0, B => 0), 5716 => (R => 255, G => 0, B => 0), 5717 => (R => 255, G => 0, B => 0), 5718 => (R => 255, G => 0, B => 0), 5719 => (R => 255, G => 0, B => 0), 5720 => (R => 255, G => 0, B => 0), 5721 => (R => 255, G => 0, B => 0), 5722 => (R => 255, G => 0, B => 0), 5723 => (R => 255, G => 0, B => 0), 5724 => (R => 255, G => 0, B => 0), 5725 => (R => 255, G => 0, B => 0), 5726 => (R => 255, G => 0, B => 0), 5727 => (R => 255, G => 0, B => 0), 5728 => (R => 255, G => 0, B => 0), 5729 => (R => 255, G => 0, B => 0), 5730 => (R => 255, G => 0, B => 0), 5731 => (R => 255, G => 0, B => 0), 5732 => (R => 255, G => 0, B => 0), 5733 => (R => 255, G => 0, B => 0), 5734 => (R => 255, G => 0, B => 0), 5735 => (R => 255, G => 0, B => 0), 5736 => (R => 255, G => 0, B => 0), 5737 => (R => 255, G => 0, B => 0), 5738 => (R => 255, G => 0, B => 0), 5739 => (R => 255, G => 0, B => 0), 5740 => (R => 255, G => 0, B => 0), 5741 => (R => 255, G => 0, B => 0), 5742 => (R => 255, G => 0, B => 0), 5743 => (R => 255, G => 0, B => 0), 5744 => (R => 255, G => 0, B => 0), 5745 => (R => 255, G => 0, B => 0), 5746 => (R => 255, G => 0, B => 0), 5747 => (R => 255, G => 0, B => 0), 5748 => (R => 255, G => 0, B => 0), 5749 => (R => 255, G => 0, B => 0), 5750 => (R => 255, G => 0, B => 0), 5751 => (R => 255, G => 0, B => 0), 5752 => (R => 255, G => 0, B => 0), 5753 => (R => 255, G => 0, B => 0), 5754 => (R => 255, G => 0, B => 0), 5755 => (R => 255, G => 0, B => 0), 5756 => (R => 255, G => 0, B => 0), 5757 => (R => 255, G => 0, B => 0), 5758 => (R => 255, G => 0, B => 0), 5759 => (R => 255, G => 0, B => 0), 5760 => (R => 255, G => 0, B => 0), 5761 => (R => 255, G => 0, B => 0), 5762 => (R => 255, G => 0, B => 0), 5763 => (R => 255, G => 0, B => 0), 5764 => (R => 255, G => 0, B => 0), 5765 => (R => 255, G => 0, B => 0), 5766 => (R => 255, G => 0, B => 0), 5767 => (R => 255, G => 0, B => 0), 5768 => (R => 255, G => 0, B => 0), 5769 => (R => 255, G => 0, B => 0), 5770 => (R => 255, G => 0, B => 0), 5771 => (R => 255, G => 0, B => 0), 5772 => (R => 255, G => 0, B => 0), 5773 => (R => 255, G => 0, B => 0), 5774 => (R => 255, G => 0, B => 0), 5775 => (R => 255, G => 0, B => 0), 5776 => (R => 0, G => 0, B => 0), 5777 => (R => 0, G => 0, B => 0), 5778 => (R => 0, G => 0, B => 0), 5779 => (R => 0, G => 0, B => 0), 5780 => (R => 0, G => 0, B => 0), 5781 => (R => 0, G => 0, B => 0), 5782 => (R => 0, G => 0, B => 0), 5783 => (R => 0, G => 0, B => 0), 5784 => (R => 0, G => 0, B => 0), 5785 => (R => 0, G => 0, B => 0), 5786 => (R => 0, G => 0, B => 0), 5787 => (R => 0, G => 0, B => 0), 5788 => (R => 0, G => 0, B => 0), 5789 => (R => 0, G => 0, B => 0), 5790 => (R => 0, G => 0, B => 0), 5791 => (R => 0, G => 0, B => 0), 5792 => (R => 0, G => 0, B => 0), 5793 => (R => 0, G => 0, B => 0), 5794 => (R => 0, G => 0, B => 0), 5795 => (R => 0, G => 0, B => 0), 5796 => (R => 0, G => 0, B => 0), 5797 => (R => 0, G => 0, B => 0), 5798 => (R => 0, G => 0, B => 0), 5799 => (R => 0, G => 0, B => 0), 5800 => (R => 0, G => 0, B => 0), 5801 => (R => 0, G => 0, B => 0), 5802 => (R => 0, G => 0, B => 0), 5803 => (R => 0, G => 0, B => 0), 5804 => (R => 0, G => 0, B => 0), 5805 => (R => 0, G => 0, B => 0), 5806 => (R => 0, G => 0, B => 0), 5807 => (R => 0, G => 0, B => 0), 5808 => (R => 0, G => 0, B => 0), 5809 => (R => 0, G => 0, B => 0), 5810 => (R => 0, G => 0, B => 0), 5811 => (R => 0, G => 0, B => 0), 5812 => (R => 0, G => 0, B => 0), 5813 => (R => 0, G => 0, B => 0), 5814 => (R => 0, G => 0, B => 0), 5815 => (R => 0, G => 0, B => 0), 5816 => (R => 0, G => 0, B => 0), 5817 => (R => 0, G => 0, B => 0), 5818 => (R => 0, G => 0, B => 0), 5819 => (R => 0, G => 0, B => 0), 5820 => (R => 0, G => 0, B => 0), 5821 => (R => 0, G => 0, B => 0), 5822 => (R => 0, G => 0, B => 0), 5823 => (R => 0, G => 0, B => 0), 5824 => (R => 0, G => 0, B => 0), 5825 => (R => 0, G => 0, B => 0), 5826 => (R => 0, G => 0, B => 0), 5827 => (R => 255, G => 0, B => 0), 5828 => (R => 255, G => 0, B => 0), 5829 => (R => 255, G => 0, B => 0), 5830 => (R => 255, G => 0, B => 0), 5831 => (R => 255, G => 0, B => 0), 5832 => (R => 255, G => 0, B => 0), 5833 => (R => 255, G => 0, B => 0), 5834 => (R => 255, G => 0, B => 0), 5835 => (R => 255, G => 0, B => 0), 5836 => (R => 255, G => 0, B => 0), 5837 => (R => 255, G => 0, B => 0), 5838 => (R => 255, G => 0, B => 0), 5839 => (R => 255, G => 0, B => 0), 5840 => (R => 255, G => 0, B => 0), 5841 => (R => 255, G => 0, B => 0), 5842 => (R => 255, G => 0, B => 0), 5843 => (R => 255, G => 0, B => 0), 5844 => (R => 255, G => 0, B => 0), 5845 => (R => 255, G => 0, B => 0), 5846 => (R => 255, G => 0, B => 0), 5847 => (R => 255, G => 0, B => 0), 5848 => (R => 255, G => 0, B => 0), 5849 => (R => 255, G => 0, B => 0), 5850 => (R => 255, G => 0, B => 0), 5851 => (R => 255, G => 0, B => 0), 5852 => (R => 255, G => 0, B => 0), 5853 => (R => 255, G => 0, B => 0), 5854 => (R => 255, G => 0, B => 0), 5855 => (R => 255, G => 0, B => 0), 5856 => (R => 255, G => 0, B => 0), 5857 => (R => 255, G => 0, B => 0), 5858 => (R => 255, G => 0, B => 0), 5859 => (R => 255, G => 0, B => 0), 5860 => (R => 255, G => 0, B => 0), 5861 => (R => 255, G => 0, B => 0), 5862 => (R => 255, G => 0, B => 0), 5863 => (R => 255, G => 0, B => 0), 5864 => (R => 255, G => 0, B => 0), 5865 => (R => 255, G => 0, B => 0), 5866 => (R => 255, G => 0, B => 0), 5867 => (R => 255, G => 0, B => 0), 5868 => (R => 255, G => 0, B => 0), 5869 => (R => 255, G => 0, B => 0), 5870 => (R => 255, G => 0, B => 0), 5871 => (R => 255, G => 0, B => 0), 5872 => (R => 255, G => 0, B => 0), 5873 => (R => 255, G => 0, B => 0), 5874 => (R => 255, G => 0, B => 0), 5875 => (R => 255, G => 0, B => 0), 5876 => (R => 255, G => 0, B => 0), 5877 => (R => 255, G => 0, B => 0), 5878 => (R => 255, G => 0, B => 0), 5879 => (R => 255, G => 0, B => 0), 5880 => (R => 255, G => 0, B => 0), 5881 => (R => 255, G => 0, B => 0), 5882 => (R => 255, G => 0, B => 0), 5883 => (R => 255, G => 0, B => 0), 5884 => (R => 255, G => 0, B => 0), 5885 => (R => 255, G => 0, B => 0), 5886 => (R => 255, G => 0, B => 0), 5887 => (R => 255, G => 0, B => 0), 5888 => (R => 255, G => 0, B => 0), 5889 => (R => 255, G => 0, B => 0), 5890 => (R => 255, G => 0, B => 0), 5891 => (R => 255, G => 0, B => 0), 5892 => (R => 255, G => 0, B => 0), 5893 => (R => 255, G => 0, B => 0), 5894 => (R => 255, G => 0, B => 0), 5895 => (R => 255, G => 0, B => 0), 5896 => (R => 255, G => 0, B => 0), 5897 => (R => 255, G => 0, B => 0), 5898 => (R => 255, G => 0, B => 0), 5899 => (R => 255, G => 0, B => 0), 5900 => (R => 255, G => 0, B => 0), 5901 => (R => 255, G => 0, B => 0), 5902 => (R => 255, G => 0, B => 0), 5903 => (R => 255, G => 0, B => 0), 5904 => (R => 255, G => 0, B => 0), 5905 => (R => 255, G => 0, B => 0), 5906 => (R => 255, G => 0, B => 0), 5907 => (R => 255, G => 0, B => 0), 5908 => (R => 255, G => 0, B => 0), 5909 => (R => 255, G => 0, B => 0), 5910 => (R => 255, G => 0, B => 0), 5911 => (R => 255, G => 0, B => 0), 5912 => (R => 255, G => 0, B => 0), 5913 => (R => 255, G => 0, B => 0), 5914 => (R => 255, G => 0, B => 0), 5915 => (R => 255, G => 0, B => 0), 5916 => (R => 255, G => 0, B => 0), 5917 => (R => 255, G => 0, B => 0), 5918 => (R => 255, G => 0, B => 0), 5919 => (R => 255, G => 0, B => 0), 5920 => (R => 255, G => 0, B => 0), 5921 => (R => 255, G => 0, B => 0), 5922 => (R => 255, G => 0, B => 0), 5923 => (R => 255, G => 0, B => 0), 5924 => (R => 255, G => 0, B => 0), 5925 => (R => 255, G => 0, B => 0), 5926 => (R => 255, G => 0, B => 0), 5927 => (R => 255, G => 0, B => 0), 5928 => (R => 255, G => 0, B => 0), 5929 => (R => 255, G => 0, B => 0), 5930 => (R => 255, G => 0, B => 0), 5931 => (R => 255, G => 0, B => 0), 5932 => (R => 255, G => 0, B => 0), 5933 => (R => 255, G => 0, B => 0), 5934 => (R => 255, G => 0, B => 0), 5935 => (R => 255, G => 0, B => 0), 5936 => (R => 255, G => 0, B => 0), 5937 => (R => 255, G => 0, B => 0), 5938 => (R => 255, G => 0, B => 0), 5939 => (R => 255, G => 0, B => 0), 5940 => (R => 255, G => 0, B => 0), 5941 => (R => 255, G => 0, B => 0), 5942 => (R => 255, G => 0, B => 0), 5943 => (R => 255, G => 0, B => 0), 5944 => (R => 255, G => 0, B => 0), 5945 => (R => 255, G => 0, B => 0), 5946 => (R => 255, G => 0, B => 0), 5947 => (R => 255, G => 0, B => 0), 5948 => (R => 255, G => 0, B => 0), 5949 => (R => 255, G => 0, B => 0), 5950 => (R => 255, G => 0, B => 0), 5951 => (R => 255, G => 0, B => 0), 5952 => (R => 255, G => 0, B => 0), 5953 => (R => 255, G => 0, B => 0), 5954 => (R => 255, G => 0, B => 0), 5955 => (R => 255, G => 0, B => 0), 5956 => (R => 255, G => 0, B => 0), 5957 => (R => 255, G => 0, B => 0), 5958 => (R => 255, G => 0, B => 0), 5959 => (R => 255, G => 0, B => 0), 5960 => (R => 255, G => 0, B => 0), 5961 => (R => 255, G => 0, B => 0), 5962 => (R => 255, G => 0, B => 0), 5963 => (R => 255, G => 0, B => 0), 5964 => (R => 255, G => 0, B => 0), 5965 => (R => 255, G => 0, B => 0), 5966 => (R => 255, G => 0, B => 0), 5967 => (R => 255, G => 0, B => 0), 5968 => (R => 255, G => 0, B => 0), 5969 => (R => 255, G => 0, B => 0), 5970 => (R => 255, G => 0, B => 0), 5971 => (R => 255, G => 0, B => 0), 5972 => (R => 255, G => 0, B => 0), 5973 => (R => 255, G => 0, B => 0), 5974 => (R => 255, G => 0, B => 0), 5975 => (R => 0, G => 0, B => 0), 5976 => (R => 0, G => 0, B => 0), 5977 => (R => 0, G => 0, B => 0), 5978 => (R => 0, G => 0, B => 0), 5979 => (R => 0, G => 0, B => 0), 5980 => (R => 0, G => 0, B => 0), 5981 => (R => 0, G => 0, B => 0), 5982 => (R => 0, G => 0, B => 0), 5983 => (R => 0, G => 0, B => 0), 5984 => (R => 0, G => 0, B => 0), 5985 => (R => 0, G => 0, B => 0), 5986 => (R => 0, G => 0, B => 0), 5987 => (R => 0, G => 0, B => 0), 5988 => (R => 0, G => 0, B => 0), 5989 => (R => 0, G => 0, B => 0), 5990 => (R => 0, G => 0, B => 0), 5991 => (R => 0, G => 0, B => 0), 5992 => (R => 0, G => 0, B => 0), 5993 => (R => 0, G => 0, B => 0), 5994 => (R => 0, G => 0, B => 0), 5995 => (R => 0, G => 0, B => 0), 5996 => (R => 0, G => 0, B => 0), 5997 => (R => 0, G => 0, B => 0), 5998 => (R => 0, G => 0, B => 0), 5999 => (R => 0, G => 0, B => 0), 6000 => (R => 0, G => 0, B => 0), 6001 => (R => 0, G => 0, B => 0), 6002 => (R => 0, G => 0, B => 0), 6003 => (R => 0, G => 0, B => 0), 6004 => (R => 0, G => 0, B => 0), 6005 => (R => 0, G => 0, B => 0), 6006 => (R => 0, G => 0, B => 0), 6007 => (R => 0, G => 0, B => 0), 6008 => (R => 0, G => 0, B => 0), 6009 => (R => 0, G => 0, B => 0), 6010 => (R => 0, G => 0, B => 0), 6011 => (R => 0, G => 0, B => 0), 6012 => (R => 0, G => 0, B => 0), 6013 => (R => 0, G => 0, B => 0), 6014 => (R => 0, G => 0, B => 0), 6015 => (R => 0, G => 0, B => 0), 6016 => (R => 0, G => 0, B => 0), 6017 => (R => 0, G => 0, B => 0), 6018 => (R => 0, G => 0, B => 0), 6019 => (R => 0, G => 0, B => 0), 6020 => (R => 0, G => 0, B => 0), 6021 => (R => 0, G => 0, B => 0), 6022 => (R => 0, G => 0, B => 0), 6023 => (R => 0, G => 0, B => 0), 6024 => (R => 0, G => 0, B => 0), 6025 => (R => 0, G => 0, B => 0), 6026 => (R => 0, G => 0, B => 0), 6027 => (R => 0, G => 0, B => 0), 6028 => (R => 255, G => 0, B => 0), 6029 => (R => 255, G => 0, B => 0), 6030 => (R => 255, G => 0, B => 0), 6031 => (R => 255, G => 0, B => 0), 6032 => (R => 255, G => 0, B => 0), 6033 => (R => 255, G => 0, B => 0), 6034 => (R => 255, G => 0, B => 0), 6035 => (R => 255, G => 0, B => 0), 6036 => (R => 255, G => 0, B => 0), 6037 => (R => 255, G => 0, B => 0), 6038 => (R => 255, G => 0, B => 0), 6039 => (R => 255, G => 0, B => 0), 6040 => (R => 255, G => 0, B => 0), 6041 => (R => 255, G => 0, B => 0), 6042 => (R => 255, G => 0, B => 0), 6043 => (R => 255, G => 0, B => 0), 6044 => (R => 255, G => 0, B => 0), 6045 => (R => 255, G => 0, B => 0), 6046 => (R => 255, G => 0, B => 0), 6047 => (R => 255, G => 0, B => 0), 6048 => (R => 255, G => 0, B => 0), 6049 => (R => 255, G => 0, B => 0), 6050 => (R => 255, G => 0, B => 0), 6051 => (R => 255, G => 0, B => 0), 6052 => (R => 255, G => 0, B => 0), 6053 => (R => 255, G => 0, B => 0), 6054 => (R => 255, G => 0, B => 0), 6055 => (R => 255, G => 0, B => 0), 6056 => (R => 255, G => 0, B => 0), 6057 => (R => 255, G => 0, B => 0), 6058 => (R => 255, G => 0, B => 0), 6059 => (R => 255, G => 0, B => 0), 6060 => (R => 255, G => 0, B => 0), 6061 => (R => 255, G => 0, B => 0), 6062 => (R => 255, G => 0, B => 0), 6063 => (R => 255, G => 0, B => 0), 6064 => (R => 255, G => 0, B => 0), 6065 => (R => 255, G => 0, B => 0), 6066 => (R => 255, G => 0, B => 0), 6067 => (R => 255, G => 0, B => 0), 6068 => (R => 255, G => 0, B => 0), 6069 => (R => 255, G => 0, B => 0), 6070 => (R => 255, G => 0, B => 0), 6071 => (R => 255, G => 0, B => 0), 6072 => (R => 255, G => 0, B => 0), 6073 => (R => 255, G => 0, B => 0), 6074 => (R => 255, G => 0, B => 0), 6075 => (R => 255, G => 0, B => 0), 6076 => (R => 255, G => 0, B => 0), 6077 => (R => 255, G => 0, B => 0), 6078 => (R => 255, G => 0, B => 0), 6079 => (R => 255, G => 0, B => 0), 6080 => (R => 255, G => 0, B => 0), 6081 => (R => 255, G => 0, B => 0), 6082 => (R => 255, G => 0, B => 0), 6083 => (R => 255, G => 0, B => 0), 6084 => (R => 255, G => 0, B => 0), 6085 => (R => 255, G => 0, B => 0), 6086 => (R => 255, G => 0, B => 0), 6087 => (R => 255, G => 0, B => 0), 6088 => (R => 255, G => 0, B => 0), 6089 => (R => 255, G => 0, B => 0), 6090 => (R => 255, G => 0, B => 0), 6091 => (R => 255, G => 0, B => 0), 6092 => (R => 255, G => 0, B => 0), 6093 => (R => 255, G => 0, B => 0), 6094 => (R => 255, G => 0, B => 0), 6095 => (R => 255, G => 0, B => 0), 6096 => (R => 255, G => 0, B => 0), 6097 => (R => 255, G => 0, B => 0), 6098 => (R => 255, G => 0, B => 0), 6099 => (R => 255, G => 0, B => 0), 6100 => (R => 255, G => 0, B => 0), 6101 => (R => 255, G => 0, B => 0), 6102 => (R => 255, G => 0, B => 0), 6103 => (R => 255, G => 0, B => 0), 6104 => (R => 255, G => 0, B => 0), 6105 => (R => 255, G => 0, B => 0), 6106 => (R => 255, G => 0, B => 0), 6107 => (R => 255, G => 0, B => 0), 6108 => (R => 255, G => 0, B => 0), 6109 => (R => 255, G => 0, B => 0), 6110 => (R => 255, G => 0, B => 0), 6111 => (R => 255, G => 0, B => 0), 6112 => (R => 255, G => 0, B => 0), 6113 => (R => 255, G => 0, B => 0), 6114 => (R => 255, G => 0, B => 0), 6115 => (R => 255, G => 0, B => 0), 6116 => (R => 255, G => 0, B => 0), 6117 => (R => 255, G => 0, B => 0), 6118 => (R => 255, G => 0, B => 0), 6119 => (R => 255, G => 0, B => 0), 6120 => (R => 255, G => 0, B => 0), 6121 => (R => 255, G => 0, B => 0), 6122 => (R => 255, G => 0, B => 0), 6123 => (R => 255, G => 0, B => 0), 6124 => (R => 255, G => 0, B => 0), 6125 => (R => 255, G => 0, B => 0), 6126 => (R => 255, G => 0, B => 0), 6127 => (R => 255, G => 0, B => 0), 6128 => (R => 255, G => 0, B => 0), 6129 => (R => 255, G => 0, B => 0), 6130 => (R => 255, G => 0, B => 0), 6131 => (R => 255, G => 0, B => 0), 6132 => (R => 255, G => 0, B => 0), 6133 => (R => 255, G => 0, B => 0), 6134 => (R => 255, G => 0, B => 0), 6135 => (R => 255, G => 0, B => 0), 6136 => (R => 255, G => 0, B => 0), 6137 => (R => 255, G => 0, B => 0), 6138 => (R => 255, G => 0, B => 0), 6139 => (R => 255, G => 0, B => 0), 6140 => (R => 255, G => 0, B => 0), 6141 => (R => 255, G => 0, B => 0), 6142 => (R => 255, G => 0, B => 0), 6143 => (R => 255, G => 0, B => 0), 6144 => (R => 255, G => 0, B => 0), 6145 => (R => 255, G => 0, B => 0), 6146 => (R => 255, G => 0, B => 0), 6147 => (R => 255, G => 0, B => 0), 6148 => (R => 255, G => 0, B => 0), 6149 => (R => 255, G => 0, B => 0), 6150 => (R => 255, G => 0, B => 0), 6151 => (R => 255, G => 0, B => 0), 6152 => (R => 255, G => 0, B => 0), 6153 => (R => 255, G => 0, B => 0), 6154 => (R => 255, G => 0, B => 0), 6155 => (R => 255, G => 0, B => 0), 6156 => (R => 255, G => 0, B => 0), 6157 => (R => 255, G => 0, B => 0), 6158 => (R => 255, G => 0, B => 0), 6159 => (R => 255, G => 0, B => 0), 6160 => (R => 255, G => 0, B => 0), 6161 => (R => 255, G => 0, B => 0), 6162 => (R => 255, G => 0, B => 0), 6163 => (R => 255, G => 0, B => 0), 6164 => (R => 255, G => 0, B => 0), 6165 => (R => 255, G => 0, B => 0), 6166 => (R => 255, G => 0, B => 0), 6167 => (R => 255, G => 0, B => 0), 6168 => (R => 255, G => 0, B => 0), 6169 => (R => 255, G => 0, B => 0), 6170 => (R => 255, G => 0, B => 0), 6171 => (R => 255, G => 0, B => 0), 6172 => (R => 255, G => 0, B => 0), 6173 => (R => 255, G => 0, B => 0), 6174 => (R => 0, G => 0, B => 0), 6175 => (R => 0, G => 0, B => 0), 6176 => (R => 0, G => 0, B => 0), 6177 => (R => 0, G => 0, B => 0), 6178 => (R => 0, G => 0, B => 0), 6179 => (R => 0, G => 0, B => 0), 6180 => (R => 0, G => 0, B => 0), 6181 => (R => 0, G => 0, B => 0), 6182 => (R => 0, G => 0, B => 0), 6183 => (R => 0, G => 0, B => 0), 6184 => (R => 0, G => 0, B => 0), 6185 => (R => 0, G => 0, B => 0), 6186 => (R => 0, G => 0, B => 0), 6187 => (R => 0, G => 0, B => 0), 6188 => (R => 0, G => 0, B => 0), 6189 => (R => 0, G => 0, B => 0), 6190 => (R => 0, G => 0, B => 0), 6191 => (R => 0, G => 0, B => 0), 6192 => (R => 0, G => 0, B => 0), 6193 => (R => 0, G => 0, B => 0), 6194 => (R => 0, G => 0, B => 0), 6195 => (R => 0, G => 0, B => 0), 6196 => (R => 0, G => 0, B => 0), 6197 => (R => 0, G => 0, B => 0), 6198 => (R => 0, G => 0, B => 0), 6199 => (R => 0, G => 0, B => 0), 6200 => (R => 0, G => 0, B => 0), 6201 => (R => 0, G => 0, B => 0), 6202 => (R => 0, G => 0, B => 0), 6203 => (R => 0, G => 0, B => 0), 6204 => (R => 0, G => 0, B => 0), 6205 => (R => 0, G => 0, B => 0), 6206 => (R => 0, G => 0, B => 0), 6207 => (R => 0, G => 0, B => 0), 6208 => (R => 0, G => 0, B => 0), 6209 => (R => 0, G => 0, B => 0), 6210 => (R => 0, G => 0, B => 0), 6211 => (R => 0, G => 0, B => 0), 6212 => (R => 0, G => 0, B => 0), 6213 => (R => 0, G => 0, B => 0), 6214 => (R => 0, G => 0, B => 0), 6215 => (R => 0, G => 0, B => 0), 6216 => (R => 0, G => 0, B => 0), 6217 => (R => 0, G => 0, B => 0), 6218 => (R => 0, G => 0, B => 0), 6219 => (R => 0, G => 0, B => 0), 6220 => (R => 0, G => 0, B => 0), 6221 => (R => 0, G => 0, B => 0), 6222 => (R => 0, G => 0, B => 0), 6223 => (R => 0, G => 0, B => 0), 6224 => (R => 0, G => 0, B => 0), 6225 => (R => 0, G => 0, B => 0), 6226 => (R => 0, G => 0, B => 0), 6227 => (R => 0, G => 0, B => 0), 6228 => (R => 0, G => 0, B => 0), 6229 => (R => 255, G => 0, B => 0), 6230 => (R => 255, G => 0, B => 0), 6231 => (R => 255, G => 0, B => 0), 6232 => (R => 255, G => 0, B => 0), 6233 => (R => 255, G => 0, B => 0), 6234 => (R => 255, G => 0, B => 0), 6235 => (R => 255, G => 0, B => 0), 6236 => (R => 255, G => 0, B => 0), 6237 => (R => 255, G => 0, B => 0), 6238 => (R => 255, G => 0, B => 0), 6239 => (R => 255, G => 0, B => 0), 6240 => (R => 255, G => 0, B => 0), 6241 => (R => 255, G => 0, B => 0), 6242 => (R => 255, G => 0, B => 0), 6243 => (R => 255, G => 0, B => 0), 6244 => (R => 255, G => 0, B => 0), 6245 => (R => 255, G => 0, B => 0), 6246 => (R => 255, G => 0, B => 0), 6247 => (R => 255, G => 0, B => 0), 6248 => (R => 255, G => 0, B => 0), 6249 => (R => 255, G => 0, B => 0), 6250 => (R => 255, G => 0, B => 0), 6251 => (R => 255, G => 0, B => 0), 6252 => (R => 255, G => 0, B => 0), 6253 => (R => 255, G => 0, B => 0), 6254 => (R => 255, G => 0, B => 0), 6255 => (R => 255, G => 0, B => 0), 6256 => (R => 255, G => 0, B => 0), 6257 => (R => 255, G => 0, B => 0), 6258 => (R => 255, G => 0, B => 0), 6259 => (R => 255, G => 0, B => 0), 6260 => (R => 255, G => 0, B => 0), 6261 => (R => 255, G => 0, B => 0), 6262 => (R => 255, G => 0, B => 0), 6263 => (R => 255, G => 0, B => 0), 6264 => (R => 255, G => 0, B => 0), 6265 => (R => 255, G => 0, B => 0), 6266 => (R => 255, G => 0, B => 0), 6267 => (R => 255, G => 0, B => 0), 6268 => (R => 255, G => 0, B => 0), 6269 => (R => 255, G => 0, B => 0), 6270 => (R => 255, G => 0, B => 0), 6271 => (R => 255, G => 0, B => 0), 6272 => (R => 255, G => 0, B => 0), 6273 => (R => 255, G => 0, B => 0), 6274 => (R => 255, G => 0, B => 0), 6275 => (R => 255, G => 0, B => 0), 6276 => (R => 255, G => 0, B => 0), 6277 => (R => 255, G => 0, B => 0), 6278 => (R => 255, G => 0, B => 0), 6279 => (R => 255, G => 0, B => 0), 6280 => (R => 255, G => 0, B => 0), 6281 => (R => 255, G => 0, B => 0), 6282 => (R => 255, G => 0, B => 0), 6283 => (R => 255, G => 0, B => 0), 6284 => (R => 255, G => 0, B => 0), 6285 => (R => 255, G => 0, B => 0), 6286 => (R => 255, G => 0, B => 0), 6287 => (R => 255, G => 0, B => 0), 6288 => (R => 255, G => 0, B => 0), 6289 => (R => 255, G => 0, B => 0), 6290 => (R => 255, G => 0, B => 0), 6291 => (R => 255, G => 0, B => 0), 6292 => (R => 255, G => 0, B => 0), 6293 => (R => 255, G => 0, B => 0), 6294 => (R => 255, G => 0, B => 0), 6295 => (R => 255, G => 0, B => 0), 6296 => (R => 255, G => 0, B => 0), 6297 => (R => 255, G => 0, B => 0), 6298 => (R => 255, G => 0, B => 0), 6299 => (R => 255, G => 0, B => 0), 6300 => (R => 255, G => 0, B => 0), 6301 => (R => 255, G => 0, B => 0), 6302 => (R => 255, G => 0, B => 0), 6303 => (R => 255, G => 0, B => 0), 6304 => (R => 255, G => 0, B => 0), 6305 => (R => 255, G => 0, B => 0), 6306 => (R => 255, G => 0, B => 0), 6307 => (R => 255, G => 0, B => 0), 6308 => (R => 255, G => 0, B => 0), 6309 => (R => 255, G => 0, B => 0), 6310 => (R => 255, G => 0, B => 0), 6311 => (R => 255, G => 0, B => 0), 6312 => (R => 255, G => 0, B => 0), 6313 => (R => 255, G => 0, B => 0), 6314 => (R => 255, G => 0, B => 0), 6315 => (R => 255, G => 0, B => 0), 6316 => (R => 255, G => 0, B => 0), 6317 => (R => 255, G => 0, B => 0), 6318 => (R => 255, G => 0, B => 0), 6319 => (R => 255, G => 0, B => 0), 6320 => (R => 255, G => 0, B => 0), 6321 => (R => 255, G => 0, B => 0), 6322 => (R => 255, G => 0, B => 0), 6323 => (R => 255, G => 0, B => 0), 6324 => (R => 255, G => 0, B => 0), 6325 => (R => 255, G => 0, B => 0), 6326 => (R => 255, G => 0, B => 0), 6327 => (R => 255, G => 0, B => 0), 6328 => (R => 255, G => 0, B => 0), 6329 => (R => 255, G => 0, B => 0), 6330 => (R => 255, G => 0, B => 0), 6331 => (R => 255, G => 0, B => 0), 6332 => (R => 255, G => 0, B => 0), 6333 => (R => 255, G => 0, B => 0), 6334 => (R => 255, G => 0, B => 0), 6335 => (R => 255, G => 0, B => 0), 6336 => (R => 255, G => 0, B => 0), 6337 => (R => 255, G => 0, B => 0), 6338 => (R => 255, G => 0, B => 0), 6339 => (R => 255, G => 0, B => 0), 6340 => (R => 255, G => 0, B => 0), 6341 => (R => 255, G => 0, B => 0), 6342 => (R => 255, G => 0, B => 0), 6343 => (R => 255, G => 0, B => 0), 6344 => (R => 255, G => 0, B => 0), 6345 => (R => 255, G => 0, B => 0), 6346 => (R => 255, G => 0, B => 0), 6347 => (R => 255, G => 0, B => 0), 6348 => (R => 255, G => 0, B => 0), 6349 => (R => 255, G => 0, B => 0), 6350 => (R => 255, G => 0, B => 0), 6351 => (R => 255, G => 0, B => 0), 6352 => (R => 255, G => 0, B => 0), 6353 => (R => 255, G => 0, B => 0), 6354 => (R => 255, G => 0, B => 0), 6355 => (R => 255, G => 0, B => 0), 6356 => (R => 255, G => 0, B => 0), 6357 => (R => 255, G => 0, B => 0), 6358 => (R => 255, G => 0, B => 0), 6359 => (R => 255, G => 0, B => 0), 6360 => (R => 255, G => 0, B => 0), 6361 => (R => 255, G => 0, B => 0), 6362 => (R => 255, G => 0, B => 0), 6363 => (R => 255, G => 0, B => 0), 6364 => (R => 255, G => 0, B => 0), 6365 => (R => 255, G => 0, B => 0), 6366 => (R => 255, G => 0, B => 0), 6367 => (R => 255, G => 0, B => 0), 6368 => (R => 255, G => 0, B => 0), 6369 => (R => 255, G => 0, B => 0), 6370 => (R => 255, G => 0, B => 0), 6371 => (R => 255, G => 0, B => 0), 6372 => (R => 0, G => 0, B => 0), 6373 => (R => 0, G => 0, B => 0), 6374 => (R => 0, G => 0, B => 0), 6375 => (R => 0, G => 0, B => 0), 6376 => (R => 0, G => 0, B => 0), 6377 => (R => 0, G => 0, B => 0), 6378 => (R => 0, G => 0, B => 0), 6379 => (R => 0, G => 0, B => 0), 6380 => (R => 0, G => 0, B => 0), 6381 => (R => 0, G => 0, B => 0), 6382 => (R => 0, G => 0, B => 0), 6383 => (R => 0, G => 0, B => 0), 6384 => (R => 0, G => 0, B => 0), 6385 => (R => 0, G => 0, B => 0), 6386 => (R => 0, G => 0, B => 0), 6387 => (R => 0, G => 0, B => 0), 6388 => (R => 0, G => 0, B => 0), 6389 => (R => 0, G => 0, B => 0), 6390 => (R => 0, G => 0, B => 0), 6391 => (R => 0, G => 0, B => 0), 6392 => (R => 0, G => 0, B => 0), 6393 => (R => 0, G => 0, B => 0), 6394 => (R => 0, G => 0, B => 0), 6395 => (R => 0, G => 0, B => 0), 6396 => (R => 0, G => 0, B => 0), 6397 => (R => 0, G => 0, B => 0), 6398 => (R => 0, G => 0, B => 0), 6399 => (R => 0, G => 0, B => 0), 6400 => (R => 0, G => 0, B => 0), 6401 => (R => 0, G => 0, B => 0), 6402 => (R => 0, G => 0, B => 0), 6403 => (R => 0, G => 0, B => 0), 6404 => (R => 0, G => 0, B => 0), 6405 => (R => 0, G => 0, B => 0), 6406 => (R => 0, G => 0, B => 0), 6407 => (R => 0, G => 0, B => 0), 6408 => (R => 0, G => 0, B => 0), 6409 => (R => 0, G => 0, B => 0), 6410 => (R => 0, G => 0, B => 0), 6411 => (R => 0, G => 0, B => 0), 6412 => (R => 0, G => 0, B => 0), 6413 => (R => 0, G => 0, B => 0), 6414 => (R => 0, G => 0, B => 0), 6415 => (R => 0, G => 0, B => 0), 6416 => (R => 0, G => 0, B => 0), 6417 => (R => 0, G => 0, B => 0), 6418 => (R => 0, G => 0, B => 0), 6419 => (R => 0, G => 0, B => 0), 6420 => (R => 0, G => 0, B => 0), 6421 => (R => 0, G => 0, B => 0), 6422 => (R => 0, G => 0, B => 0), 6423 => (R => 0, G => 0, B => 0), 6424 => (R => 0, G => 0, B => 0), 6425 => (R => 0, G => 0, B => 0), 6426 => (R => 0, G => 0, B => 0), 6427 => (R => 0, G => 0, B => 0), 6428 => (R => 0, G => 0, B => 0), 6429 => (R => 0, G => 0, B => 0), 6430 => (R => 255, G => 0, B => 0), 6431 => (R => 255, G => 0, B => 0), 6432 => (R => 255, G => 0, B => 0), 6433 => (R => 255, G => 0, B => 0), 6434 => (R => 255, G => 0, B => 0), 6435 => (R => 255, G => 0, B => 0), 6436 => (R => 255, G => 0, B => 0), 6437 => (R => 255, G => 0, B => 0), 6438 => (R => 255, G => 0, B => 0), 6439 => (R => 255, G => 0, B => 0), 6440 => (R => 255, G => 0, B => 0), 6441 => (R => 255, G => 0, B => 0), 6442 => (R => 255, G => 0, B => 0), 6443 => (R => 255, G => 0, B => 0), 6444 => (R => 255, G => 0, B => 0), 6445 => (R => 255, G => 0, B => 0), 6446 => (R => 255, G => 0, B => 0), 6447 => (R => 255, G => 0, B => 0), 6448 => (R => 255, G => 0, B => 0), 6449 => (R => 255, G => 0, B => 0), 6450 => (R => 255, G => 0, B => 0), 6451 => (R => 255, G => 0, B => 0), 6452 => (R => 255, G => 0, B => 0), 6453 => (R => 255, G => 0, B => 0), 6454 => (R => 255, G => 0, B => 0), 6455 => (R => 255, G => 0, B => 0), 6456 => (R => 255, G => 0, B => 0), 6457 => (R => 255, G => 0, B => 0), 6458 => (R => 255, G => 0, B => 0), 6459 => (R => 255, G => 0, B => 0), 6460 => (R => 255, G => 0, B => 0), 6461 => (R => 255, G => 0, B => 0), 6462 => (R => 255, G => 0, B => 0), 6463 => (R => 255, G => 0, B => 0), 6464 => (R => 255, G => 0, B => 0), 6465 => (R => 255, G => 0, B => 0), 6466 => (R => 255, G => 0, B => 0), 6467 => (R => 255, G => 0, B => 0), 6468 => (R => 255, G => 0, B => 0), 6469 => (R => 255, G => 0, B => 0), 6470 => (R => 255, G => 0, B => 0), 6471 => (R => 255, G => 0, B => 0), 6472 => (R => 255, G => 0, B => 0), 6473 => (R => 255, G => 0, B => 0), 6474 => (R => 255, G => 0, B => 0), 6475 => (R => 255, G => 0, B => 0), 6476 => (R => 255, G => 0, B => 0), 6477 => (R => 255, G => 0, B => 0), 6478 => (R => 255, G => 0, B => 0), 6479 => (R => 255, G => 0, B => 0), 6480 => (R => 255, G => 0, B => 0), 6481 => (R => 255, G => 0, B => 0), 6482 => (R => 255, G => 0, B => 0), 6483 => (R => 255, G => 0, B => 0), 6484 => (R => 255, G => 0, B => 0), 6485 => (R => 255, G => 0, B => 0), 6486 => (R => 255, G => 0, B => 0), 6487 => (R => 255, G => 0, B => 0), 6488 => (R => 255, G => 0, B => 0), 6489 => (R => 255, G => 0, B => 0), 6490 => (R => 255, G => 0, B => 0), 6491 => (R => 255, G => 0, B => 0), 6492 => (R => 255, G => 0, B => 0), 6493 => (R => 255, G => 0, B => 0), 6494 => (R => 255, G => 0, B => 0), 6495 => (R => 255, G => 0, B => 0), 6496 => (R => 255, G => 0, B => 0), 6497 => (R => 255, G => 0, B => 0), 6498 => (R => 255, G => 0, B => 0), 6499 => (R => 255, G => 0, B => 0), 6500 => (R => 255, G => 0, B => 0), 6501 => (R => 255, G => 0, B => 0), 6502 => (R => 255, G => 0, B => 0), 6503 => (R => 255, G => 0, B => 0), 6504 => (R => 255, G => 0, B => 0), 6505 => (R => 255, G => 0, B => 0), 6506 => (R => 255, G => 0, B => 0), 6507 => (R => 255, G => 0, B => 0), 6508 => (R => 255, G => 0, B => 0), 6509 => (R => 255, G => 0, B => 0), 6510 => (R => 255, G => 0, B => 0), 6511 => (R => 255, G => 0, B => 0), 6512 => (R => 255, G => 0, B => 0), 6513 => (R => 255, G => 0, B => 0), 6514 => (R => 255, G => 0, B => 0), 6515 => (R => 255, G => 0, B => 0), 6516 => (R => 255, G => 0, B => 0), 6517 => (R => 255, G => 0, B => 0), 6518 => (R => 255, G => 0, B => 0), 6519 => (R => 255, G => 0, B => 0), 6520 => (R => 255, G => 0, B => 0), 6521 => (R => 255, G => 0, B => 0), 6522 => (R => 255, G => 0, B => 0), 6523 => (R => 255, G => 0, B => 0), 6524 => (R => 255, G => 0, B => 0), 6525 => (R => 255, G => 0, B => 0), 6526 => (R => 255, G => 0, B => 0), 6527 => (R => 255, G => 0, B => 0), 6528 => (R => 255, G => 0, B => 0), 6529 => (R => 255, G => 0, B => 0), 6530 => (R => 255, G => 0, B => 0), 6531 => (R => 255, G => 0, B => 0), 6532 => (R => 255, G => 0, B => 0), 6533 => (R => 255, G => 0, B => 0), 6534 => (R => 255, G => 0, B => 0), 6535 => (R => 255, G => 0, B => 0), 6536 => (R => 255, G => 0, B => 0), 6537 => (R => 255, G => 0, B => 0), 6538 => (R => 255, G => 0, B => 0), 6539 => (R => 255, G => 0, B => 0), 6540 => (R => 255, G => 0, B => 0), 6541 => (R => 255, G => 0, B => 0), 6542 => (R => 255, G => 0, B => 0), 6543 => (R => 255, G => 0, B => 0), 6544 => (R => 255, G => 0, B => 0), 6545 => (R => 255, G => 0, B => 0), 6546 => (R => 255, G => 0, B => 0), 6547 => (R => 255, G => 0, B => 0), 6548 => (R => 255, G => 0, B => 0), 6549 => (R => 255, G => 0, B => 0), 6550 => (R => 255, G => 0, B => 0), 6551 => (R => 255, G => 0, B => 0), 6552 => (R => 255, G => 0, B => 0), 6553 => (R => 255, G => 0, B => 0), 6554 => (R => 255, G => 0, B => 0), 6555 => (R => 255, G => 0, B => 0), 6556 => (R => 255, G => 0, B => 0), 6557 => (R => 255, G => 0, B => 0), 6558 => (R => 255, G => 0, B => 0), 6559 => (R => 255, G => 0, B => 0), 6560 => (R => 255, G => 0, B => 0), 6561 => (R => 255, G => 0, B => 0), 6562 => (R => 255, G => 0, B => 0), 6563 => (R => 255, G => 0, B => 0), 6564 => (R => 255, G => 0, B => 0), 6565 => (R => 255, G => 0, B => 0), 6566 => (R => 255, G => 0, B => 0), 6567 => (R => 255, G => 0, B => 0), 6568 => (R => 255, G => 0, B => 0), 6569 => (R => 255, G => 0, B => 0), 6570 => (R => 255, G => 0, B => 0), 6571 => (R => 0, G => 0, B => 0), 6572 => (R => 0, G => 0, B => 0), 6573 => (R => 0, G => 0, B => 0), 6574 => (R => 0, G => 0, B => 0), 6575 => (R => 0, G => 0, B => 0), 6576 => (R => 0, G => 0, B => 0), 6577 => (R => 0, G => 0, B => 0), 6578 => (R => 0, G => 0, B => 0), 6579 => (R => 0, G => 0, B => 0), 6580 => (R => 0, G => 0, B => 0), 6581 => (R => 0, G => 0, B => 0), 6582 => (R => 0, G => 0, B => 0), 6583 => (R => 0, G => 0, B => 0), 6584 => (R => 0, G => 0, B => 0), 6585 => (R => 0, G => 0, B => 0), 6586 => (R => 0, G => 0, B => 0), 6587 => (R => 0, G => 0, B => 0), 6588 => (R => 0, G => 0, B => 0), 6589 => (R => 0, G => 0, B => 0), 6590 => (R => 0, G => 0, B => 0), 6591 => (R => 0, G => 0, B => 0), 6592 => (R => 0, G => 0, B => 0), 6593 => (R => 0, G => 0, B => 0), 6594 => (R => 0, G => 0, B => 0), 6595 => (R => 0, G => 0, B => 0), 6596 => (R => 0, G => 0, B => 0), 6597 => (R => 0, G => 0, B => 0), 6598 => (R => 0, G => 0, B => 0), 6599 => (R => 0, G => 0, B => 0), 6600 => (R => 0, G => 0, B => 0), 6601 => (R => 0, G => 0, B => 0), 6602 => (R => 0, G => 0, B => 0), 6603 => (R => 0, G => 0, B => 0), 6604 => (R => 0, G => 0, B => 0), 6605 => (R => 0, G => 0, B => 0), 6606 => (R => 0, G => 0, B => 0), 6607 => (R => 0, G => 0, B => 0), 6608 => (R => 0, G => 0, B => 0), 6609 => (R => 0, G => 0, B => 0), 6610 => (R => 0, G => 0, B => 0), 6611 => (R => 0, G => 0, B => 0), 6612 => (R => 0, G => 0, B => 0), 6613 => (R => 0, G => 0, B => 0), 6614 => (R => 0, G => 0, B => 0), 6615 => (R => 0, G => 0, B => 0), 6616 => (R => 0, G => 0, B => 0), 6617 => (R => 0, G => 0, B => 0), 6618 => (R => 0, G => 0, B => 0), 6619 => (R => 0, G => 0, B => 0), 6620 => (R => 0, G => 0, B => 0), 6621 => (R => 0, G => 0, B => 0), 6622 => (R => 0, G => 0, B => 0), 6623 => (R => 0, G => 0, B => 0), 6624 => (R => 0, G => 0, B => 0), 6625 => (R => 0, G => 0, B => 0), 6626 => (R => 0, G => 0, B => 0), 6627 => (R => 0, G => 0, B => 0), 6628 => (R => 0, G => 0, B => 0), 6629 => (R => 0, G => 0, B => 0), 6630 => (R => 0, G => 0, B => 0), 6631 => (R => 255, G => 0, B => 0), 6632 => (R => 255, G => 0, B => 0), 6633 => (R => 255, G => 0, B => 0), 6634 => (R => 255, G => 0, B => 0), 6635 => (R => 255, G => 0, B => 0), 6636 => (R => 255, G => 0, B => 0), 6637 => (R => 255, G => 0, B => 0), 6638 => (R => 255, G => 0, B => 0), 6639 => (R => 255, G => 0, B => 0), 6640 => (R => 255, G => 0, B => 0), 6641 => (R => 255, G => 0, B => 0), 6642 => (R => 255, G => 0, B => 0), 6643 => (R => 255, G => 0, B => 0), 6644 => (R => 255, G => 0, B => 0), 6645 => (R => 255, G => 0, B => 0), 6646 => (R => 255, G => 0, B => 0), 6647 => (R => 255, G => 0, B => 0), 6648 => (R => 255, G => 0, B => 0), 6649 => (R => 255, G => 0, B => 0), 6650 => (R => 255, G => 0, B => 0), 6651 => (R => 255, G => 0, B => 0), 6652 => (R => 255, G => 0, B => 0), 6653 => (R => 255, G => 0, B => 0), 6654 => (R => 255, G => 0, B => 0), 6655 => (R => 255, G => 0, B => 0), 6656 => (R => 255, G => 0, B => 0), 6657 => (R => 255, G => 0, B => 0), 6658 => (R => 255, G => 0, B => 0), 6659 => (R => 255, G => 0, B => 0), 6660 => (R => 255, G => 0, B => 0), 6661 => (R => 255, G => 0, B => 0), 6662 => (R => 255, G => 0, B => 0), 6663 => (R => 255, G => 0, B => 0), 6664 => (R => 255, G => 0, B => 0), 6665 => (R => 255, G => 0, B => 0), 6666 => (R => 255, G => 0, B => 0), 6667 => (R => 255, G => 0, B => 0), 6668 => (R => 255, G => 0, B => 0), 6669 => (R => 255, G => 0, B => 0), 6670 => (R => 255, G => 0, B => 0), 6671 => (R => 255, G => 0, B => 0), 6672 => (R => 255, G => 0, B => 0), 6673 => (R => 255, G => 0, B => 0), 6674 => (R => 255, G => 0, B => 0), 6675 => (R => 255, G => 0, B => 0), 6676 => (R => 255, G => 0, B => 0), 6677 => (R => 255, G => 0, B => 0), 6678 => (R => 255, G => 0, B => 0), 6679 => (R => 255, G => 0, B => 0), 6680 => (R => 255, G => 0, B => 0), 6681 => (R => 255, G => 0, B => 0), 6682 => (R => 255, G => 0, B => 0), 6683 => (R => 255, G => 0, B => 0), 6684 => (R => 255, G => 0, B => 0), 6685 => (R => 255, G => 0, B => 0), 6686 => (R => 255, G => 0, B => 0), 6687 => (R => 255, G => 0, B => 0), 6688 => (R => 255, G => 0, B => 0), 6689 => (R => 255, G => 0, B => 0), 6690 => (R => 255, G => 0, B => 0), 6691 => (R => 255, G => 0, B => 0), 6692 => (R => 255, G => 0, B => 0), 6693 => (R => 255, G => 0, B => 0), 6694 => (R => 255, G => 0, B => 0), 6695 => (R => 255, G => 0, B => 0), 6696 => (R => 255, G => 0, B => 0), 6697 => (R => 255, G => 0, B => 0), 6698 => (R => 255, G => 0, B => 0), 6699 => (R => 255, G => 0, B => 0), 6700 => (R => 255, G => 0, B => 0), 6701 => (R => 255, G => 0, B => 0), 6702 => (R => 255, G => 0, B => 0), 6703 => (R => 255, G => 0, B => 0), 6704 => (R => 255, G => 0, B => 0), 6705 => (R => 255, G => 0, B => 0), 6706 => (R => 255, G => 0, B => 0), 6707 => (R => 255, G => 0, B => 0), 6708 => (R => 255, G => 0, B => 0), 6709 => (R => 255, G => 0, B => 0), 6710 => (R => 255, G => 0, B => 0), 6711 => (R => 255, G => 0, B => 0), 6712 => (R => 255, G => 0, B => 0), 6713 => (R => 255, G => 0, B => 0), 6714 => (R => 255, G => 0, B => 0), 6715 => (R => 255, G => 0, B => 0), 6716 => (R => 255, G => 0, B => 0), 6717 => (R => 255, G => 0, B => 0), 6718 => (R => 255, G => 0, B => 0), 6719 => (R => 255, G => 0, B => 0), 6720 => (R => 255, G => 0, B => 0), 6721 => (R => 255, G => 0, B => 0), 6722 => (R => 255, G => 0, B => 0), 6723 => (R => 255, G => 0, B => 0), 6724 => (R => 255, G => 0, B => 0), 6725 => (R => 255, G => 0, B => 0), 6726 => (R => 255, G => 0, B => 0), 6727 => (R => 255, G => 0, B => 0), 6728 => (R => 255, G => 0, B => 0), 6729 => (R => 255, G => 0, B => 0), 6730 => (R => 255, G => 0, B => 0), 6731 => (R => 255, G => 0, B => 0), 6732 => (R => 255, G => 0, B => 0), 6733 => (R => 255, G => 0, B => 0), 6734 => (R => 255, G => 0, B => 0), 6735 => (R => 255, G => 0, B => 0), 6736 => (R => 255, G => 0, B => 0), 6737 => (R => 255, G => 0, B => 0), 6738 => (R => 255, G => 0, B => 0), 6739 => (R => 255, G => 0, B => 0), 6740 => (R => 255, G => 0, B => 0), 6741 => (R => 255, G => 0, B => 0), 6742 => (R => 255, G => 0, B => 0), 6743 => (R => 255, G => 0, B => 0), 6744 => (R => 255, G => 0, B => 0), 6745 => (R => 255, G => 0, B => 0), 6746 => (R => 255, G => 0, B => 0), 6747 => (R => 255, G => 0, B => 0), 6748 => (R => 255, G => 0, B => 0), 6749 => (R => 255, G => 0, B => 0), 6750 => (R => 255, G => 0, B => 0), 6751 => (R => 255, G => 0, B => 0), 6752 => (R => 255, G => 0, B => 0), 6753 => (R => 255, G => 0, B => 0), 6754 => (R => 255, G => 0, B => 0), 6755 => (R => 255, G => 0, B => 0), 6756 => (R => 255, G => 0, B => 0), 6757 => (R => 255, G => 0, B => 0), 6758 => (R => 255, G => 0, B => 0), 6759 => (R => 255, G => 0, B => 0), 6760 => (R => 255, G => 0, B => 0), 6761 => (R => 255, G => 0, B => 0), 6762 => (R => 255, G => 0, B => 0), 6763 => (R => 255, G => 0, B => 0), 6764 => (R => 255, G => 0, B => 0), 6765 => (R => 255, G => 0, B => 0), 6766 => (R => 255, G => 0, B => 0), 6767 => (R => 255, G => 0, B => 0), 6768 => (R => 255, G => 0, B => 0), 6769 => (R => 255, G => 0, B => 0), 6770 => (R => 0, G => 0, B => 0), 6771 => (R => 0, G => 0, B => 0), 6772 => (R => 0, G => 0, B => 0), 6773 => (R => 0, G => 0, B => 0), 6774 => (R => 0, G => 0, B => 0), 6775 => (R => 0, G => 0, B => 0), 6776 => (R => 0, G => 0, B => 0), 6777 => (R => 0, G => 0, B => 0), 6778 => (R => 0, G => 0, B => 0), 6779 => (R => 0, G => 0, B => 0), 6780 => (R => 0, G => 0, B => 0), 6781 => (R => 0, G => 0, B => 0), 6782 => (R => 0, G => 0, B => 0), 6783 => (R => 0, G => 0, B => 0), 6784 => (R => 0, G => 0, B => 0), 6785 => (R => 0, G => 0, B => 0), 6786 => (R => 0, G => 0, B => 0), 6787 => (R => 0, G => 0, B => 0), 6788 => (R => 0, G => 0, B => 0), 6789 => (R => 0, G => 0, B => 0), 6790 => (R => 0, G => 0, B => 0), 6791 => (R => 0, G => 0, B => 0), 6792 => (R => 0, G => 0, B => 0), 6793 => (R => 0, G => 0, B => 0), 6794 => (R => 0, G => 0, B => 0), 6795 => (R => 0, G => 0, B => 0), 6796 => (R => 0, G => 0, B => 0), 6797 => (R => 0, G => 0, B => 0), 6798 => (R => 0, G => 0, B => 0), 6799 => (R => 0, G => 0, B => 0), 6800 => (R => 0, G => 0, B => 0), 6801 => (R => 0, G => 0, B => 0), 6802 => (R => 0, G => 0, B => 0), 6803 => (R => 0, G => 0, B => 0), 6804 => (R => 0, G => 0, B => 0), 6805 => (R => 0, G => 0, B => 0), 6806 => (R => 0, G => 0, B => 0), 6807 => (R => 0, G => 0, B => 0), 6808 => (R => 0, G => 0, B => 0), 6809 => (R => 0, G => 0, B => 0), 6810 => (R => 0, G => 0, B => 0), 6811 => (R => 0, G => 0, B => 0), 6812 => (R => 0, G => 0, B => 0), 6813 => (R => 0, G => 0, B => 0), 6814 => (R => 0, G => 0, B => 0), 6815 => (R => 0, G => 0, B => 0), 6816 => (R => 0, G => 0, B => 0), 6817 => (R => 0, G => 0, B => 0), 6818 => (R => 0, G => 0, B => 0), 6819 => (R => 0, G => 0, B => 0), 6820 => (R => 0, G => 0, B => 0), 6821 => (R => 0, G => 0, B => 0), 6822 => (R => 0, G => 0, B => 0), 6823 => (R => 0, G => 0, B => 0), 6824 => (R => 0, G => 0, B => 0), 6825 => (R => 0, G => 0, B => 0), 6826 => (R => 0, G => 0, B => 0), 6827 => (R => 0, G => 0, B => 0), 6828 => (R => 0, G => 0, B => 0), 6829 => (R => 0, G => 0, B => 0), 6830 => (R => 0, G => 0, B => 0), 6831 => (R => 0, G => 0, B => 0), 6832 => (R => 255, G => 0, B => 0), 6833 => (R => 255, G => 0, B => 0), 6834 => (R => 255, G => 0, B => 0), 6835 => (R => 255, G => 0, B => 0), 6836 => (R => 255, G => 0, B => 0), 6837 => (R => 255, G => 0, B => 0), 6838 => (R => 255, G => 0, B => 0), 6839 => (R => 255, G => 0, B => 0), 6840 => (R => 255, G => 0, B => 0), 6841 => (R => 255, G => 0, B => 0), 6842 => (R => 255, G => 0, B => 0), 6843 => (R => 255, G => 0, B => 0), 6844 => (R => 255, G => 0, B => 0), 6845 => (R => 255, G => 0, B => 0), 6846 => (R => 255, G => 0, B => 0), 6847 => (R => 255, G => 0, B => 0), 6848 => (R => 255, G => 0, B => 0), 6849 => (R => 255, G => 0, B => 0), 6850 => (R => 255, G => 0, B => 0), 6851 => (R => 255, G => 0, B => 0), 6852 => (R => 255, G => 0, B => 0), 6853 => (R => 255, G => 0, B => 0), 6854 => (R => 255, G => 0, B => 0), 6855 => (R => 255, G => 0, B => 0), 6856 => (R => 255, G => 0, B => 0), 6857 => (R => 255, G => 0, B => 0), 6858 => (R => 255, G => 0, B => 0), 6859 => (R => 255, G => 0, B => 0), 6860 => (R => 255, G => 0, B => 0), 6861 => (R => 255, G => 0, B => 0), 6862 => (R => 255, G => 0, B => 0), 6863 => (R => 255, G => 0, B => 0), 6864 => (R => 255, G => 0, B => 0), 6865 => (R => 255, G => 0, B => 0), 6866 => (R => 255, G => 0, B => 0), 6867 => (R => 255, G => 0, B => 0), 6868 => (R => 255, G => 0, B => 0), 6869 => (R => 255, G => 0, B => 0), 6870 => (R => 255, G => 0, B => 0), 6871 => (R => 255, G => 0, B => 0), 6872 => (R => 255, G => 0, B => 0), 6873 => (R => 255, G => 0, B => 0), 6874 => (R => 255, G => 0, B => 0), 6875 => (R => 255, G => 0, B => 0), 6876 => (R => 255, G => 0, B => 0), 6877 => (R => 255, G => 0, B => 0), 6878 => (R => 255, G => 0, B => 0), 6879 => (R => 255, G => 0, B => 0), 6880 => (R => 255, G => 0, B => 0), 6881 => (R => 255, G => 0, B => 0), 6882 => (R => 255, G => 0, B => 0), 6883 => (R => 255, G => 0, B => 0), 6884 => (R => 255, G => 0, B => 0), 6885 => (R => 255, G => 0, B => 0), 6886 => (R => 255, G => 0, B => 0), 6887 => (R => 255, G => 0, B => 0), 6888 => (R => 255, G => 0, B => 0), 6889 => (R => 255, G => 0, B => 0), 6890 => (R => 255, G => 0, B => 0), 6891 => (R => 255, G => 0, B => 0), 6892 => (R => 255, G => 0, B => 0), 6893 => (R => 255, G => 0, B => 0), 6894 => (R => 255, G => 0, B => 0), 6895 => (R => 255, G => 0, B => 0), 6896 => (R => 255, G => 0, B => 0), 6897 => (R => 255, G => 0, B => 0), 6898 => (R => 255, G => 0, B => 0), 6899 => (R => 255, G => 0, B => 0), 6900 => (R => 255, G => 0, B => 0), 6901 => (R => 255, G => 0, B => 0), 6902 => (R => 255, G => 0, B => 0), 6903 => (R => 255, G => 0, B => 0), 6904 => (R => 255, G => 0, B => 0), 6905 => (R => 255, G => 0, B => 0), 6906 => (R => 255, G => 0, B => 0), 6907 => (R => 255, G => 0, B => 0), 6908 => (R => 255, G => 0, B => 0), 6909 => (R => 255, G => 0, B => 0), 6910 => (R => 255, G => 0, B => 0), 6911 => (R => 255, G => 0, B => 0), 6912 => (R => 255, G => 0, B => 0), 6913 => (R => 255, G => 0, B => 0), 6914 => (R => 255, G => 0, B => 0), 6915 => (R => 255, G => 0, B => 0), 6916 => (R => 255, G => 0, B => 0), 6917 => (R => 255, G => 0, B => 0), 6918 => (R => 255, G => 0, B => 0), 6919 => (R => 255, G => 0, B => 0), 6920 => (R => 255, G => 0, B => 0), 6921 => (R => 255, G => 0, B => 0), 6922 => (R => 255, G => 0, B => 0), 6923 => (R => 255, G => 0, B => 0), 6924 => (R => 255, G => 0, B => 0), 6925 => (R => 255, G => 0, B => 0), 6926 => (R => 255, G => 0, B => 0), 6927 => (R => 255, G => 0, B => 0), 6928 => (R => 255, G => 0, B => 0), 6929 => (R => 255, G => 0, B => 0), 6930 => (R => 255, G => 0, B => 0), 6931 => (R => 255, G => 0, B => 0), 6932 => (R => 255, G => 0, B => 0), 6933 => (R => 255, G => 0, B => 0), 6934 => (R => 255, G => 0, B => 0), 6935 => (R => 255, G => 0, B => 0), 6936 => (R => 255, G => 0, B => 0), 6937 => (R => 255, G => 0, B => 0), 6938 => (R => 255, G => 0, B => 0), 6939 => (R => 255, G => 0, B => 0), 6940 => (R => 255, G => 0, B => 0), 6941 => (R => 255, G => 0, B => 0), 6942 => (R => 255, G => 0, B => 0), 6943 => (R => 255, G => 0, B => 0), 6944 => (R => 255, G => 0, B => 0), 6945 => (R => 255, G => 0, B => 0), 6946 => (R => 255, G => 0, B => 0), 6947 => (R => 255, G => 0, B => 0), 6948 => (R => 255, G => 0, B => 0), 6949 => (R => 255, G => 0, B => 0), 6950 => (R => 255, G => 0, B => 0), 6951 => (R => 255, G => 0, B => 0), 6952 => (R => 255, G => 0, B => 0), 6953 => (R => 255, G => 0, B => 0), 6954 => (R => 255, G => 0, B => 0), 6955 => (R => 255, G => 0, B => 0), 6956 => (R => 255, G => 0, B => 0), 6957 => (R => 255, G => 0, B => 0), 6958 => (R => 255, G => 0, B => 0), 6959 => (R => 255, G => 0, B => 0), 6960 => (R => 255, G => 0, B => 0), 6961 => (R => 255, G => 0, B => 0), 6962 => (R => 255, G => 0, B => 0), 6963 => (R => 255, G => 0, B => 0), 6964 => (R => 255, G => 0, B => 0), 6965 => (R => 255, G => 0, B => 0), 6966 => (R => 255, G => 0, B => 0), 6967 => (R => 255, G => 0, B => 0), 6968 => (R => 255, G => 0, B => 0), 6969 => (R => 0, G => 0, B => 0), 6970 => (R => 0, G => 0, B => 0), 6971 => (R => 0, G => 0, B => 0), 6972 => (R => 0, G => 0, B => 0), 6973 => (R => 0, G => 0, B => 0), 6974 => (R => 0, G => 0, B => 0), 6975 => (R => 0, G => 0, B => 0), 6976 => (R => 0, G => 0, B => 0), 6977 => (R => 0, G => 0, B => 0), 6978 => (R => 0, G => 0, B => 0), 6979 => (R => 0, G => 0, B => 0), 6980 => (R => 0, G => 0, B => 0), 6981 => (R => 0, G => 0, B => 0), 6982 => (R => 0, G => 0, B => 0), 6983 => (R => 0, G => 0, B => 0), 6984 => (R => 0, G => 0, B => 0), 6985 => (R => 0, G => 0, B => 0), 6986 => (R => 0, G => 0, B => 0), 6987 => (R => 0, G => 0, B => 0), 6988 => (R => 0, G => 0, B => 0), 6989 => (R => 0, G => 0, B => 0), 6990 => (R => 0, G => 0, B => 0), 6991 => (R => 0, G => 0, B => 0), 6992 => (R => 0, G => 0, B => 0), 6993 => (R => 0, G => 0, B => 0), 6994 => (R => 0, G => 0, B => 0), 6995 => (R => 0, G => 0, B => 0), 6996 => (R => 0, G => 0, B => 0), 6997 => (R => 0, G => 0, B => 0), 6998 => (R => 0, G => 0, B => 0), 6999 => (R => 0, G => 0, B => 0), 7000 => (R => 0, G => 0, B => 0), 7001 => (R => 0, G => 0, B => 0), 7002 => (R => 0, G => 0, B => 0), 7003 => (R => 0, G => 0, B => 0), 7004 => (R => 0, G => 0, B => 0), 7005 => (R => 0, G => 0, B => 0), 7006 => (R => 0, G => 0, B => 0), 7007 => (R => 0, G => 0, B => 0), 7008 => (R => 0, G => 0, B => 0), 7009 => (R => 0, G => 0, B => 0), 7010 => (R => 0, G => 0, B => 0), 7011 => (R => 0, G => 0, B => 0), 7012 => (R => 0, G => 0, B => 0), 7013 => (R => 0, G => 0, B => 0), 7014 => (R => 0, G => 0, B => 0), 7015 => (R => 0, G => 0, B => 0), 7016 => (R => 0, G => 0, B => 0), 7017 => (R => 0, G => 0, B => 0), 7018 => (R => 0, G => 0, B => 0), 7019 => (R => 0, G => 0, B => 0), 7020 => (R => 0, G => 0, B => 0), 7021 => (R => 0, G => 0, B => 0), 7022 => (R => 0, G => 0, B => 0), 7023 => (R => 0, G => 0, B => 0), 7024 => (R => 0, G => 0, B => 0), 7025 => (R => 0, G => 0, B => 0), 7026 => (R => 0, G => 0, B => 0), 7027 => (R => 0, G => 0, B => 0), 7028 => (R => 0, G => 0, B => 0), 7029 => (R => 0, G => 0, B => 0), 7030 => (R => 0, G => 0, B => 0), 7031 => (R => 0, G => 0, B => 0), 7032 => (R => 0, G => 0, B => 0), 7033 => (R => 0, G => 0, B => 0), 7034 => (R => 255, G => 0, B => 0), 7035 => (R => 255, G => 0, B => 0), 7036 => (R => 255, G => 0, B => 0), 7037 => (R => 255, G => 0, B => 0), 7038 => (R => 255, G => 0, B => 0), 7039 => (R => 255, G => 0, B => 0), 7040 => (R => 255, G => 0, B => 0), 7041 => (R => 255, G => 0, B => 0), 7042 => (R => 255, G => 0, B => 0), 7043 => (R => 255, G => 0, B => 0), 7044 => (R => 255, G => 0, B => 0), 7045 => (R => 255, G => 0, B => 0), 7046 => (R => 255, G => 0, B => 0), 7047 => (R => 255, G => 0, B => 0), 7048 => (R => 255, G => 0, B => 0), 7049 => (R => 255, G => 0, B => 0), 7050 => (R => 255, G => 0, B => 0), 7051 => (R => 255, G => 0, B => 0), 7052 => (R => 255, G => 0, B => 0), 7053 => (R => 255, G => 0, B => 0), 7054 => (R => 255, G => 0, B => 0), 7055 => (R => 255, G => 0, B => 0), 7056 => (R => 255, G => 0, B => 0), 7057 => (R => 255, G => 0, B => 0), 7058 => (R => 255, G => 0, B => 0), 7059 => (R => 255, G => 0, B => 0), 7060 => (R => 255, G => 0, B => 0), 7061 => (R => 255, G => 0, B => 0), 7062 => (R => 255, G => 0, B => 0), 7063 => (R => 255, G => 0, B => 0), 7064 => (R => 255, G => 0, B => 0), 7065 => (R => 255, G => 0, B => 0), 7066 => (R => 255, G => 0, B => 0), 7067 => (R => 255, G => 0, B => 0), 7068 => (R => 255, G => 0, B => 0), 7069 => (R => 255, G => 0, B => 0), 7070 => (R => 255, G => 0, B => 0), 7071 => (R => 255, G => 0, B => 0), 7072 => (R => 255, G => 0, B => 0), 7073 => (R => 255, G => 0, B => 0), 7074 => (R => 255, G => 0, B => 0), 7075 => (R => 255, G => 0, B => 0), 7076 => (R => 255, G => 0, B => 0), 7077 => (R => 255, G => 0, B => 0), 7078 => (R => 255, G => 0, B => 0), 7079 => (R => 255, G => 0, B => 0), 7080 => (R => 255, G => 0, B => 0), 7081 => (R => 255, G => 0, B => 0), 7082 => (R => 255, G => 0, B => 0), 7083 => (R => 255, G => 0, B => 0), 7084 => (R => 255, G => 0, B => 0), 7085 => (R => 255, G => 0, B => 0), 7086 => (R => 255, G => 0, B => 0), 7087 => (R => 255, G => 0, B => 0), 7088 => (R => 255, G => 0, B => 0), 7089 => (R => 255, G => 0, B => 0), 7090 => (R => 255, G => 0, B => 0), 7091 => (R => 255, G => 0, B => 0), 7092 => (R => 255, G => 0, B => 0), 7093 => (R => 255, G => 0, B => 0), 7094 => (R => 255, G => 0, B => 0), 7095 => (R => 255, G => 0, B => 0), 7096 => (R => 255, G => 0, B => 0), 7097 => (R => 255, G => 0, B => 0), 7098 => (R => 255, G => 0, B => 0), 7099 => (R => 255, G => 0, B => 0), 7100 => (R => 255, G => 0, B => 0), 7101 => (R => 255, G => 0, B => 0), 7102 => (R => 255, G => 0, B => 0), 7103 => (R => 255, G => 0, B => 0), 7104 => (R => 255, G => 0, B => 0), 7105 => (R => 255, G => 0, B => 0), 7106 => (R => 255, G => 0, B => 0), 7107 => (R => 255, G => 0, B => 0), 7108 => (R => 255, G => 0, B => 0), 7109 => (R => 255, G => 0, B => 0), 7110 => (R => 255, G => 0, B => 0), 7111 => (R => 255, G => 0, B => 0), 7112 => (R => 255, G => 0, B => 0), 7113 => (R => 255, G => 0, B => 0), 7114 => (R => 255, G => 0, B => 0), 7115 => (R => 255, G => 0, B => 0), 7116 => (R => 255, G => 0, B => 0), 7117 => (R => 255, G => 0, B => 0), 7118 => (R => 255, G => 0, B => 0), 7119 => (R => 255, G => 0, B => 0), 7120 => (R => 255, G => 0, B => 0), 7121 => (R => 255, G => 0, B => 0), 7122 => (R => 255, G => 0, B => 0), 7123 => (R => 255, G => 0, B => 0), 7124 => (R => 255, G => 0, B => 0), 7125 => (R => 255, G => 0, B => 0), 7126 => (R => 255, G => 0, B => 0), 7127 => (R => 255, G => 0, B => 0), 7128 => (R => 255, G => 0, B => 0), 7129 => (R => 255, G => 0, B => 0), 7130 => (R => 255, G => 0, B => 0), 7131 => (R => 255, G => 0, B => 0), 7132 => (R => 255, G => 0, B => 0), 7133 => (R => 255, G => 0, B => 0), 7134 => (R => 255, G => 0, B => 0), 7135 => (R => 255, G => 0, B => 0), 7136 => (R => 255, G => 0, B => 0), 7137 => (R => 255, G => 0, B => 0), 7138 => (R => 255, G => 0, B => 0), 7139 => (R => 255, G => 0, B => 0), 7140 => (R => 255, G => 0, B => 0), 7141 => (R => 255, G => 0, B => 0), 7142 => (R => 255, G => 0, B => 0), 7143 => (R => 255, G => 0, B => 0), 7144 => (R => 255, G => 0, B => 0), 7145 => (R => 255, G => 0, B => 0), 7146 => (R => 255, G => 0, B => 0), 7147 => (R => 255, G => 0, B => 0), 7148 => (R => 255, G => 0, B => 0), 7149 => (R => 255, G => 0, B => 0), 7150 => (R => 255, G => 0, B => 0), 7151 => (R => 255, G => 0, B => 0), 7152 => (R => 255, G => 0, B => 0), 7153 => (R => 255, G => 0, B => 0), 7154 => (R => 255, G => 0, B => 0), 7155 => (R => 255, G => 0, B => 0), 7156 => (R => 255, G => 0, B => 0), 7157 => (R => 255, G => 0, B => 0), 7158 => (R => 255, G => 0, B => 0), 7159 => (R => 255, G => 0, B => 0), 7160 => (R => 255, G => 0, B => 0), 7161 => (R => 255, G => 0, B => 0), 7162 => (R => 255, G => 0, B => 0), 7163 => (R => 255, G => 0, B => 0), 7164 => (R => 255, G => 0, B => 0), 7165 => (R => 255, G => 0, B => 0), 7166 => (R => 255, G => 0, B => 0), 7167 => (R => 255, G => 0, B => 0), 7168 => (R => 0, G => 0, B => 0), 7169 => (R => 0, G => 0, B => 0), 7170 => (R => 0, G => 0, B => 0), 7171 => (R => 0, G => 0, B => 0), 7172 => (R => 0, G => 0, B => 0), 7173 => (R => 0, G => 0, B => 0), 7174 => (R => 0, G => 0, B => 0), 7175 => (R => 0, G => 0, B => 0), 7176 => (R => 0, G => 0, B => 0), 7177 => (R => 0, G => 0, B => 0), 7178 => (R => 0, G => 0, B => 0), 7179 => (R => 0, G => 0, B => 0), 7180 => (R => 0, G => 0, B => 0), 7181 => (R => 0, G => 0, B => 0), 7182 => (R => 0, G => 0, B => 0), 7183 => (R => 0, G => 0, B => 0), 7184 => (R => 0, G => 0, B => 0), 7185 => (R => 0, G => 0, B => 0), 7186 => (R => 0, G => 0, B => 0), 7187 => (R => 0, G => 0, B => 0), 7188 => (R => 0, G => 0, B => 0), 7189 => (R => 0, G => 0, B => 0), 7190 => (R => 0, G => 0, B => 0), 7191 => (R => 0, G => 0, B => 0), 7192 => (R => 0, G => 0, B => 0), 7193 => (R => 0, G => 0, B => 0), 7194 => (R => 0, G => 0, B => 0), 7195 => (R => 0, G => 0, B => 0), 7196 => (R => 0, G => 0, B => 0), 7197 => (R => 0, G => 0, B => 0), 7198 => (R => 0, G => 0, B => 0), 7199 => (R => 0, G => 0, B => 0), 7200 => (R => 0, G => 0, B => 0), 7201 => (R => 0, G => 0, B => 0), 7202 => (R => 0, G => 0, B => 0), 7203 => (R => 0, G => 0, B => 0), 7204 => (R => 0, G => 0, B => 0), 7205 => (R => 0, G => 0, B => 0), 7206 => (R => 0, G => 0, B => 0), 7207 => (R => 0, G => 0, B => 0), 7208 => (R => 0, G => 0, B => 0), 7209 => (R => 0, G => 0, B => 0), 7210 => (R => 0, G => 0, B => 0), 7211 => (R => 0, G => 0, B => 0), 7212 => (R => 0, G => 0, B => 0), 7213 => (R => 0, G => 0, B => 0), 7214 => (R => 0, G => 0, B => 0), 7215 => (R => 0, G => 0, B => 0), 7216 => (R => 0, G => 0, B => 0), 7217 => (R => 0, G => 0, B => 0), 7218 => (R => 0, G => 0, B => 0), 7219 => (R => 0, G => 0, B => 0), 7220 => (R => 0, G => 0, B => 0), 7221 => (R => 0, G => 0, B => 0), 7222 => (R => 0, G => 0, B => 0), 7223 => (R => 0, G => 0, B => 0), 7224 => (R => 0, G => 0, B => 0), 7225 => (R => 0, G => 0, B => 0), 7226 => (R => 0, G => 0, B => 0), 7227 => (R => 0, G => 0, B => 0), 7228 => (R => 0, G => 0, B => 0), 7229 => (R => 0, G => 0, B => 0), 7230 => (R => 0, G => 0, B => 0), 7231 => (R => 0, G => 0, B => 0), 7232 => (R => 0, G => 0, B => 0), 7233 => (R => 0, G => 0, B => 0), 7234 => (R => 0, G => 0, B => 0), 7235 => (R => 255, G => 0, B => 0), 7236 => (R => 255, G => 0, B => 0), 7237 => (R => 255, G => 0, B => 0), 7238 => (R => 255, G => 0, B => 0), 7239 => (R => 255, G => 0, B => 0), 7240 => (R => 255, G => 0, B => 0), 7241 => (R => 255, G => 0, B => 0), 7242 => (R => 255, G => 0, B => 0), 7243 => (R => 255, G => 0, B => 0), 7244 => (R => 255, G => 0, B => 0), 7245 => (R => 255, G => 0, B => 0), 7246 => (R => 255, G => 0, B => 0), 7247 => (R => 255, G => 0, B => 0), 7248 => (R => 255, G => 0, B => 0), 7249 => (R => 255, G => 0, B => 0), 7250 => (R => 255, G => 0, B => 0), 7251 => (R => 255, G => 0, B => 0), 7252 => (R => 255, G => 0, B => 0), 7253 => (R => 255, G => 0, B => 0), 7254 => (R => 255, G => 0, B => 0), 7255 => (R => 255, G => 0, B => 0), 7256 => (R => 255, G => 0, B => 0), 7257 => (R => 255, G => 0, B => 0), 7258 => (R => 255, G => 0, B => 0), 7259 => (R => 255, G => 0, B => 0), 7260 => (R => 255, G => 0, B => 0), 7261 => (R => 255, G => 0, B => 0), 7262 => (R => 255, G => 0, B => 0), 7263 => (R => 255, G => 0, B => 0), 7264 => (R => 255, G => 0, B => 0), 7265 => (R => 255, G => 0, B => 0), 7266 => (R => 255, G => 0, B => 0), 7267 => (R => 255, G => 0, B => 0), 7268 => (R => 255, G => 0, B => 0), 7269 => (R => 255, G => 0, B => 0), 7270 => (R => 255, G => 0, B => 0), 7271 => (R => 255, G => 0, B => 0), 7272 => (R => 255, G => 0, B => 0), 7273 => (R => 255, G => 0, B => 0), 7274 => (R => 255, G => 0, B => 0), 7275 => (R => 255, G => 0, B => 0), 7276 => (R => 255, G => 0, B => 0), 7277 => (R => 255, G => 0, B => 0), 7278 => (R => 255, G => 0, B => 0), 7279 => (R => 255, G => 0, B => 0), 7280 => (R => 255, G => 0, B => 0), 7281 => (R => 255, G => 0, B => 0), 7282 => (R => 255, G => 0, B => 0), 7283 => (R => 255, G => 0, B => 0), 7284 => (R => 255, G => 0, B => 0), 7285 => (R => 255, G => 0, B => 0), 7286 => (R => 255, G => 0, B => 0), 7287 => (R => 255, G => 0, B => 0), 7288 => (R => 255, G => 0, B => 0), 7289 => (R => 255, G => 0, B => 0), 7290 => (R => 255, G => 0, B => 0), 7291 => (R => 255, G => 0, B => 0), 7292 => (R => 255, G => 0, B => 0), 7293 => (R => 255, G => 0, B => 0), 7294 => (R => 255, G => 0, B => 0), 7295 => (R => 255, G => 0, B => 0), 7296 => (R => 255, G => 0, B => 0), 7297 => (R => 255, G => 0, B => 0), 7298 => (R => 255, G => 0, B => 0), 7299 => (R => 255, G => 0, B => 0), 7300 => (R => 255, G => 0, B => 0), 7301 => (R => 255, G => 0, B => 0), 7302 => (R => 255, G => 0, B => 0), 7303 => (R => 255, G => 0, B => 0), 7304 => (R => 255, G => 0, B => 0), 7305 => (R => 255, G => 0, B => 0), 7306 => (R => 255, G => 0, B => 0), 7307 => (R => 255, G => 0, B => 0), 7308 => (R => 255, G => 0, B => 0), 7309 => (R => 255, G => 0, B => 0), 7310 => (R => 255, G => 0, B => 0), 7311 => (R => 255, G => 0, B => 0), 7312 => (R => 255, G => 0, B => 0), 7313 => (R => 255, G => 0, B => 0), 7314 => (R => 255, G => 0, B => 0), 7315 => (R => 255, G => 0, B => 0), 7316 => (R => 255, G => 0, B => 0), 7317 => (R => 255, G => 0, B => 0), 7318 => (R => 255, G => 0, B => 0), 7319 => (R => 255, G => 0, B => 0), 7320 => (R => 255, G => 0, B => 0), 7321 => (R => 255, G => 0, B => 0), 7322 => (R => 255, G => 0, B => 0), 7323 => (R => 255, G => 0, B => 0), 7324 => (R => 255, G => 0, B => 0), 7325 => (R => 255, G => 0, B => 0), 7326 => (R => 255, G => 0, B => 0), 7327 => (R => 255, G => 0, B => 0), 7328 => (R => 255, G => 0, B => 0), 7329 => (R => 255, G => 0, B => 0), 7330 => (R => 255, G => 0, B => 0), 7331 => (R => 255, G => 0, B => 0), 7332 => (R => 255, G => 0, B => 0), 7333 => (R => 255, G => 0, B => 0), 7334 => (R => 255, G => 0, B => 0), 7335 => (R => 255, G => 0, B => 0), 7336 => (R => 255, G => 0, B => 0), 7337 => (R => 255, G => 0, B => 0), 7338 => (R => 255, G => 0, B => 0), 7339 => (R => 255, G => 0, B => 0), 7340 => (R => 255, G => 0, B => 0), 7341 => (R => 255, G => 0, B => 0), 7342 => (R => 255, G => 0, B => 0), 7343 => (R => 255, G => 0, B => 0), 7344 => (R => 255, G => 0, B => 0), 7345 => (R => 255, G => 0, B => 0), 7346 => (R => 255, G => 0, B => 0), 7347 => (R => 255, G => 0, B => 0), 7348 => (R => 255, G => 0, B => 0), 7349 => (R => 255, G => 0, B => 0), 7350 => (R => 255, G => 0, B => 0), 7351 => (R => 255, G => 0, B => 0), 7352 => (R => 255, G => 0, B => 0), 7353 => (R => 255, G => 0, B => 0), 7354 => (R => 255, G => 0, B => 0), 7355 => (R => 255, G => 0, B => 0), 7356 => (R => 255, G => 0, B => 0), 7357 => (R => 255, G => 0, B => 0), 7358 => (R => 255, G => 0, B => 0), 7359 => (R => 255, G => 0, B => 0), 7360 => (R => 255, G => 0, B => 0), 7361 => (R => 255, G => 0, B => 0), 7362 => (R => 255, G => 0, B => 0), 7363 => (R => 255, G => 0, B => 0), 7364 => (R => 255, G => 0, B => 0), 7365 => (R => 255, G => 0, B => 0), 7366 => (R => 255, G => 0, B => 0), 7367 => (R => 0, G => 0, B => 0), 7368 => (R => 0, G => 0, B => 0), 7369 => (R => 0, G => 0, B => 0), 7370 => (R => 0, G => 0, B => 0), 7371 => (R => 0, G => 0, B => 0), 7372 => (R => 0, G => 0, B => 0), 7373 => (R => 0, G => 0, B => 0), 7374 => (R => 0, G => 0, B => 0), 7375 => (R => 0, G => 0, B => 0), 7376 => (R => 0, G => 0, B => 0), 7377 => (R => 0, G => 0, B => 0), 7378 => (R => 0, G => 0, B => 0), 7379 => (R => 0, G => 0, B => 0), 7380 => (R => 0, G => 0, B => 0), 7381 => (R => 0, G => 0, B => 0), 7382 => (R => 0, G => 0, B => 0), 7383 => (R => 0, G => 0, B => 0), 7384 => (R => 0, G => 0, B => 0), 7385 => (R => 0, G => 0, B => 0), 7386 => (R => 0, G => 0, B => 0), 7387 => (R => 0, G => 0, B => 0), 7388 => (R => 0, G => 0, B => 0), 7389 => (R => 0, G => 0, B => 0), 7390 => (R => 0, G => 0, B => 0), 7391 => (R => 0, G => 0, B => 0), 7392 => (R => 0, G => 0, B => 0), 7393 => (R => 0, G => 0, B => 0), 7394 => (R => 0, G => 0, B => 0), 7395 => (R => 0, G => 0, B => 0), 7396 => (R => 0, G => 0, B => 0), 7397 => (R => 0, G => 0, B => 0), 7398 => (R => 0, G => 0, B => 0), 7399 => (R => 0, G => 0, B => 0), 7400 => (R => 0, G => 0, B => 0), 7401 => (R => 0, G => 0, B => 0), 7402 => (R => 0, G => 0, B => 0), 7403 => (R => 0, G => 0, B => 0), 7404 => (R => 0, G => 0, B => 0), 7405 => (R => 0, G => 0, B => 0), 7406 => (R => 0, G => 0, B => 0), 7407 => (R => 0, G => 0, B => 0), 7408 => (R => 0, G => 0, B => 0), 7409 => (R => 0, G => 0, B => 0), 7410 => (R => 0, G => 0, B => 0), 7411 => (R => 0, G => 0, B => 0), 7412 => (R => 0, G => 0, B => 0), 7413 => (R => 0, G => 0, B => 0), 7414 => (R => 0, G => 0, B => 0), 7415 => (R => 0, G => 0, B => 0), 7416 => (R => 0, G => 0, B => 0), 7417 => (R => 0, G => 0, B => 0), 7418 => (R => 0, G => 0, B => 0), 7419 => (R => 0, G => 0, B => 0), 7420 => (R => 0, G => 0, B => 0), 7421 => (R => 0, G => 0, B => 0), 7422 => (R => 0, G => 0, B => 0), 7423 => (R => 0, G => 0, B => 0), 7424 => (R => 0, G => 0, B => 0), 7425 => (R => 0, G => 0, B => 0), 7426 => (R => 0, G => 0, B => 0), 7427 => (R => 0, G => 0, B => 0), 7428 => (R => 0, G => 0, B => 0), 7429 => (R => 0, G => 0, B => 0), 7430 => (R => 0, G => 0, B => 0), 7431 => (R => 0, G => 0, B => 0), 7432 => (R => 0, G => 0, B => 0), 7433 => (R => 0, G => 0, B => 0), 7434 => (R => 0, G => 0, B => 0), 7435 => (R => 0, G => 0, B => 0), 7436 => (R => 255, G => 0, B => 0), 7437 => (R => 255, G => 0, B => 0), 7438 => (R => 255, G => 0, B => 0), 7439 => (R => 255, G => 0, B => 0), 7440 => (R => 255, G => 0, B => 0), 7441 => (R => 255, G => 0, B => 0), 7442 => (R => 255, G => 0, B => 0), 7443 => (R => 255, G => 0, B => 0), 7444 => (R => 255, G => 0, B => 0), 7445 => (R => 255, G => 0, B => 0), 7446 => (R => 255, G => 0, B => 0), 7447 => (R => 255, G => 0, B => 0), 7448 => (R => 255, G => 0, B => 0), 7449 => (R => 255, G => 0, B => 0), 7450 => (R => 255, G => 0, B => 0), 7451 => (R => 255, G => 0, B => 0), 7452 => (R => 255, G => 0, B => 0), 7453 => (R => 255, G => 0, B => 0), 7454 => (R => 255, G => 0, B => 0), 7455 => (R => 255, G => 0, B => 0), 7456 => (R => 255, G => 0, B => 0), 7457 => (R => 255, G => 0, B => 0), 7458 => (R => 255, G => 0, B => 0), 7459 => (R => 255, G => 0, B => 0), 7460 => (R => 255, G => 0, B => 0), 7461 => (R => 255, G => 0, B => 0), 7462 => (R => 255, G => 0, B => 0), 7463 => (R => 255, G => 0, B => 0), 7464 => (R => 255, G => 0, B => 0), 7465 => (R => 255, G => 0, B => 0), 7466 => (R => 255, G => 0, B => 0), 7467 => (R => 255, G => 0, B => 0), 7468 => (R => 255, G => 0, B => 0), 7469 => (R => 255, G => 0, B => 0), 7470 => (R => 255, G => 0, B => 0), 7471 => (R => 255, G => 0, B => 0), 7472 => (R => 255, G => 0, B => 0), 7473 => (R => 255, G => 0, B => 0), 7474 => (R => 255, G => 0, B => 0), 7475 => (R => 255, G => 0, B => 0), 7476 => (R => 255, G => 0, B => 0), 7477 => (R => 255, G => 0, B => 0), 7478 => (R => 255, G => 0, B => 0), 7479 => (R => 255, G => 0, B => 0), 7480 => (R => 255, G => 0, B => 0), 7481 => (R => 255, G => 0, B => 0), 7482 => (R => 255, G => 0, B => 0), 7483 => (R => 255, G => 0, B => 0), 7484 => (R => 255, G => 0, B => 0), 7485 => (R => 255, G => 0, B => 0), 7486 => (R => 255, G => 0, B => 0), 7487 => (R => 255, G => 0, B => 0), 7488 => (R => 255, G => 0, B => 0), 7489 => (R => 255, G => 0, B => 0), 7490 => (R => 255, G => 0, B => 0), 7491 => (R => 255, G => 0, B => 0), 7492 => (R => 255, G => 0, B => 0), 7493 => (R => 255, G => 0, B => 0), 7494 => (R => 255, G => 0, B => 0), 7495 => (R => 255, G => 0, B => 0), 7496 => (R => 255, G => 0, B => 0), 7497 => (R => 255, G => 0, B => 0), 7498 => (R => 255, G => 0, B => 0), 7499 => (R => 255, G => 0, B => 0), 7500 => (R => 255, G => 0, B => 0), 7501 => (R => 255, G => 0, B => 0), 7502 => (R => 255, G => 0, B => 0), 7503 => (R => 255, G => 0, B => 0), 7504 => (R => 255, G => 0, B => 0), 7505 => (R => 255, G => 0, B => 0), 7506 => (R => 255, G => 0, B => 0), 7507 => (R => 255, G => 0, B => 0), 7508 => (R => 255, G => 0, B => 0), 7509 => (R => 255, G => 0, B => 0), 7510 => (R => 255, G => 0, B => 0), 7511 => (R => 255, G => 0, B => 0), 7512 => (R => 255, G => 0, B => 0), 7513 => (R => 255, G => 0, B => 0), 7514 => (R => 255, G => 0, B => 0), 7515 => (R => 255, G => 0, B => 0), 7516 => (R => 255, G => 0, B => 0), 7517 => (R => 255, G => 0, B => 0), 7518 => (R => 255, G => 0, B => 0), 7519 => (R => 255, G => 0, B => 0), 7520 => (R => 255, G => 0, B => 0), 7521 => (R => 255, G => 0, B => 0), 7522 => (R => 255, G => 0, B => 0), 7523 => (R => 255, G => 0, B => 0), 7524 => (R => 255, G => 0, B => 0), 7525 => (R => 255, G => 0, B => 0), 7526 => (R => 255, G => 0, B => 0), 7527 => (R => 255, G => 0, B => 0), 7528 => (R => 255, G => 0, B => 0), 7529 => (R => 255, G => 0, B => 0), 7530 => (R => 255, G => 0, B => 0), 7531 => (R => 255, G => 0, B => 0), 7532 => (R => 255, G => 0, B => 0), 7533 => (R => 255, G => 0, B => 0), 7534 => (R => 255, G => 0, B => 0), 7535 => (R => 255, G => 0, B => 0), 7536 => (R => 255, G => 0, B => 0), 7537 => (R => 255, G => 0, B => 0), 7538 => (R => 255, G => 0, B => 0), 7539 => (R => 255, G => 0, B => 0), 7540 => (R => 255, G => 0, B => 0), 7541 => (R => 255, G => 0, B => 0), 7542 => (R => 255, G => 0, B => 0), 7543 => (R => 255, G => 0, B => 0), 7544 => (R => 255, G => 0, B => 0), 7545 => (R => 255, G => 0, B => 0), 7546 => (R => 255, G => 0, B => 0), 7547 => (R => 255, G => 0, B => 0), 7548 => (R => 255, G => 0, B => 0), 7549 => (R => 255, G => 0, B => 0), 7550 => (R => 255, G => 0, B => 0), 7551 => (R => 255, G => 0, B => 0), 7552 => (R => 255, G => 0, B => 0), 7553 => (R => 255, G => 0, B => 0), 7554 => (R => 255, G => 0, B => 0), 7555 => (R => 255, G => 0, B => 0), 7556 => (R => 255, G => 0, B => 0), 7557 => (R => 255, G => 0, B => 0), 7558 => (R => 255, G => 0, B => 0), 7559 => (R => 255, G => 0, B => 0), 7560 => (R => 255, G => 0, B => 0), 7561 => (R => 255, G => 0, B => 0), 7562 => (R => 255, G => 0, B => 0), 7563 => (R => 255, G => 0, B => 0), 7564 => (R => 255, G => 0, B => 0), 7565 => (R => 255, G => 0, B => 0), 7566 => (R => 0, G => 0, B => 0), 7567 => (R => 0, G => 0, B => 0), 7568 => (R => 0, G => 0, B => 0), 7569 => (R => 0, G => 0, B => 0), 7570 => (R => 0, G => 0, B => 0), 7571 => (R => 0, G => 0, B => 0), 7572 => (R => 0, G => 0, B => 0), 7573 => (R => 0, G => 0, B => 0), 7574 => (R => 0, G => 0, B => 0), 7575 => (R => 0, G => 0, B => 0), 7576 => (R => 0, G => 0, B => 0), 7577 => (R => 0, G => 0, B => 0), 7578 => (R => 0, G => 0, B => 0), 7579 => (R => 0, G => 0, B => 0), 7580 => (R => 0, G => 0, B => 0), 7581 => (R => 0, G => 0, B => 0), 7582 => (R => 0, G => 0, B => 0), 7583 => (R => 0, G => 0, B => 0), 7584 => (R => 0, G => 0, B => 0), 7585 => (R => 0, G => 0, B => 0), 7586 => (R => 0, G => 0, B => 0), 7587 => (R => 0, G => 0, B => 0), 7588 => (R => 0, G => 0, B => 0), 7589 => (R => 0, G => 0, B => 0), 7590 => (R => 0, G => 0, B => 0), 7591 => (R => 0, G => 0, B => 0), 7592 => (R => 0, G => 0, B => 0), 7593 => (R => 0, G => 0, B => 0), 7594 => (R => 0, G => 0, B => 0), 7595 => (R => 0, G => 0, B => 0), 7596 => (R => 0, G => 0, B => 0), 7597 => (R => 0, G => 0, B => 0), 7598 => (R => 0, G => 0, B => 0), 7599 => (R => 0, G => 0, B => 0), 7600 => (R => 0, G => 0, B => 0), 7601 => (R => 0, G => 0, B => 0), 7602 => (R => 0, G => 0, B => 0), 7603 => (R => 0, G => 0, B => 0), 7604 => (R => 0, G => 0, B => 0), 7605 => (R => 0, G => 0, B => 0), 7606 => (R => 0, G => 0, B => 0), 7607 => (R => 0, G => 0, B => 0), 7608 => (R => 0, G => 0, B => 0), 7609 => (R => 0, G => 0, B => 0), 7610 => (R => 0, G => 0, B => 0), 7611 => (R => 0, G => 0, B => 0), 7612 => (R => 0, G => 0, B => 0), 7613 => (R => 0, G => 0, B => 0), 7614 => (R => 0, G => 0, B => 0), 7615 => (R => 0, G => 0, B => 0), 7616 => (R => 0, G => 0, B => 0), 7617 => (R => 0, G => 0, B => 0), 7618 => (R => 0, G => 0, B => 0), 7619 => (R => 0, G => 0, B => 0), 7620 => (R => 0, G => 0, B => 0), 7621 => (R => 0, G => 0, B => 0), 7622 => (R => 0, G => 0, B => 0), 7623 => (R => 0, G => 0, B => 0), 7624 => (R => 0, G => 0, B => 0), 7625 => (R => 0, G => 0, B => 0), 7626 => (R => 0, G => 0, B => 0), 7627 => (R => 0, G => 0, B => 0), 7628 => (R => 0, G => 0, B => 0), 7629 => (R => 0, G => 0, B => 0), 7630 => (R => 0, G => 0, B => 0), 7631 => (R => 0, G => 0, B => 0), 7632 => (R => 0, G => 0, B => 0), 7633 => (R => 0, G => 0, B => 0), 7634 => (R => 0, G => 0, B => 0), 7635 => (R => 0, G => 0, B => 0), 7636 => (R => 0, G => 0, B => 0), 7637 => (R => 255, G => 0, B => 0), 7638 => (R => 255, G => 0, B => 0), 7639 => (R => 255, G => 0, B => 0), 7640 => (R => 255, G => 0, B => 0), 7641 => (R => 255, G => 0, B => 0), 7642 => (R => 255, G => 0, B => 0), 7643 => (R => 255, G => 0, B => 0), 7644 => (R => 255, G => 0, B => 0), 7645 => (R => 255, G => 0, B => 0), 7646 => (R => 255, G => 0, B => 0), 7647 => (R => 255, G => 0, B => 0), 7648 => (R => 255, G => 0, B => 0), 7649 => (R => 255, G => 0, B => 0), 7650 => (R => 255, G => 0, B => 0), 7651 => (R => 255, G => 0, B => 0), 7652 => (R => 255, G => 0, B => 0), 7653 => (R => 255, G => 0, B => 0), 7654 => (R => 255, G => 0, B => 0), 7655 => (R => 255, G => 0, B => 0), 7656 => (R => 255, G => 0, B => 0), 7657 => (R => 255, G => 0, B => 0), 7658 => (R => 255, G => 0, B => 0), 7659 => (R => 255, G => 0, B => 0), 7660 => (R => 255, G => 0, B => 0), 7661 => (R => 255, G => 0, B => 0), 7662 => (R => 255, G => 0, B => 0), 7663 => (R => 255, G => 0, B => 0), 7664 => (R => 255, G => 0, B => 0), 7665 => (R => 255, G => 0, B => 0), 7666 => (R => 255, G => 0, B => 0), 7667 => (R => 255, G => 0, B => 0), 7668 => (R => 255, G => 0, B => 0), 7669 => (R => 255, G => 0, B => 0), 7670 => (R => 255, G => 0, B => 0), 7671 => (R => 255, G => 0, B => 0), 7672 => (R => 255, G => 0, B => 0), 7673 => (R => 255, G => 0, B => 0), 7674 => (R => 255, G => 0, B => 0), 7675 => (R => 255, G => 0, B => 0), 7676 => (R => 255, G => 0, B => 0), 7677 => (R => 255, G => 0, B => 0), 7678 => (R => 255, G => 0, B => 0), 7679 => (R => 255, G => 0, B => 0), 7680 => (R => 255, G => 0, B => 0), 7681 => (R => 255, G => 0, B => 0), 7682 => (R => 255, G => 0, B => 0), 7683 => (R => 255, G => 0, B => 0), 7684 => (R => 255, G => 0, B => 0), 7685 => (R => 255, G => 0, B => 0), 7686 => (R => 255, G => 0, B => 0), 7687 => (R => 255, G => 0, B => 0), 7688 => (R => 255, G => 0, B => 0), 7689 => (R => 255, G => 0, B => 0), 7690 => (R => 255, G => 0, B => 0), 7691 => (R => 255, G => 0, B => 0), 7692 => (R => 255, G => 0, B => 0), 7693 => (R => 255, G => 0, B => 0), 7694 => (R => 255, G => 0, B => 0), 7695 => (R => 255, G => 0, B => 0), 7696 => (R => 255, G => 0, B => 0), 7697 => (R => 255, G => 0, B => 0), 7698 => (R => 255, G => 0, B => 0), 7699 => (R => 255, G => 0, B => 0), 7700 => (R => 255, G => 0, B => 0), 7701 => (R => 255, G => 0, B => 0), 7702 => (R => 255, G => 0, B => 0), 7703 => (R => 255, G => 0, B => 0), 7704 => (R => 255, G => 0, B => 0), 7705 => (R => 255, G => 0, B => 0), 7706 => (R => 255, G => 0, B => 0), 7707 => (R => 255, G => 0, B => 0), 7708 => (R => 255, G => 0, B => 0), 7709 => (R => 255, G => 0, B => 0), 7710 => (R => 255, G => 0, B => 0), 7711 => (R => 255, G => 0, B => 0), 7712 => (R => 255, G => 0, B => 0), 7713 => (R => 255, G => 0, B => 0), 7714 => (R => 255, G => 0, B => 0), 7715 => (R => 255, G => 0, B => 0), 7716 => (R => 255, G => 0, B => 0), 7717 => (R => 255, G => 0, B => 0), 7718 => (R => 255, G => 0, B => 0), 7719 => (R => 255, G => 0, B => 0), 7720 => (R => 255, G => 0, B => 0), 7721 => (R => 255, G => 0, B => 0), 7722 => (R => 255, G => 0, B => 0), 7723 => (R => 255, G => 0, B => 0), 7724 => (R => 255, G => 0, B => 0), 7725 => (R => 255, G => 0, B => 0), 7726 => (R => 255, G => 0, B => 0), 7727 => (R => 255, G => 0, B => 0), 7728 => (R => 255, G => 0, B => 0), 7729 => (R => 255, G => 0, B => 0), 7730 => (R => 255, G => 0, B => 0), 7731 => (R => 255, G => 0, B => 0), 7732 => (R => 255, G => 0, B => 0), 7733 => (R => 255, G => 0, B => 0), 7734 => (R => 255, G => 0, B => 0), 7735 => (R => 255, G => 0, B => 0), 7736 => (R => 255, G => 0, B => 0), 7737 => (R => 255, G => 0, B => 0), 7738 => (R => 255, G => 0, B => 0), 7739 => (R => 255, G => 0, B => 0), 7740 => (R => 255, G => 0, B => 0), 7741 => (R => 255, G => 0, B => 0), 7742 => (R => 255, G => 0, B => 0), 7743 => (R => 255, G => 0, B => 0), 7744 => (R => 255, G => 0, B => 0), 7745 => (R => 255, G => 0, B => 0), 7746 => (R => 255, G => 0, B => 0), 7747 => (R => 255, G => 0, B => 0), 7748 => (R => 255, G => 0, B => 0), 7749 => (R => 255, G => 0, B => 0), 7750 => (R => 255, G => 0, B => 0), 7751 => (R => 255, G => 0, B => 0), 7752 => (R => 255, G => 0, B => 0), 7753 => (R => 255, G => 0, B => 0), 7754 => (R => 255, G => 0, B => 0), 7755 => (R => 255, G => 0, B => 0), 7756 => (R => 255, G => 0, B => 0), 7757 => (R => 255, G => 0, B => 0), 7758 => (R => 255, G => 0, B => 0), 7759 => (R => 255, G => 0, B => 0), 7760 => (R => 255, G => 0, B => 0), 7761 => (R => 255, G => 0, B => 0), 7762 => (R => 255, G => 0, B => 0), 7763 => (R => 255, G => 0, B => 0), 7764 => (R => 255, G => 0, B => 0), 7765 => (R => 0, G => 0, B => 0), 7766 => (R => 0, G => 0, B => 0), 7767 => (R => 0, G => 0, B => 0), 7768 => (R => 0, G => 0, B => 0), 7769 => (R => 0, G => 0, B => 0), 7770 => (R => 0, G => 0, B => 0), 7771 => (R => 0, G => 0, B => 0), 7772 => (R => 0, G => 0, B => 0), 7773 => (R => 0, G => 0, B => 0), 7774 => (R => 0, G => 0, B => 0), 7775 => (R => 0, G => 0, B => 0), 7776 => (R => 0, G => 0, B => 0), 7777 => (R => 0, G => 0, B => 0), 7778 => (R => 0, G => 0, B => 0), 7779 => (R => 0, G => 0, B => 0), 7780 => (R => 0, G => 0, B => 0), 7781 => (R => 0, G => 0, B => 0), 7782 => (R => 0, G => 0, B => 0), 7783 => (R => 0, G => 0, B => 0), 7784 => (R => 0, G => 0, B => 0), 7785 => (R => 0, G => 0, B => 0), 7786 => (R => 0, G => 0, B => 0), 7787 => (R => 0, G => 0, B => 0), 7788 => (R => 0, G => 0, B => 0), 7789 => (R => 0, G => 0, B => 0), 7790 => (R => 0, G => 0, B => 0), 7791 => (R => 0, G => 0, B => 0), 7792 => (R => 0, G => 0, B => 0), 7793 => (R => 0, G => 0, B => 0), 7794 => (R => 0, G => 0, B => 0), 7795 => (R => 0, G => 0, B => 0), 7796 => (R => 0, G => 0, B => 0), 7797 => (R => 0, G => 0, B => 0), 7798 => (R => 0, G => 0, B => 0), 7799 => (R => 0, G => 0, B => 0), 7800 => (R => 0, G => 0, B => 0), 7801 => (R => 0, G => 0, B => 0), 7802 => (R => 0, G => 0, B => 0), 7803 => (R => 0, G => 0, B => 0), 7804 => (R => 0, G => 0, B => 0), 7805 => (R => 0, G => 0, B => 0), 7806 => (R => 0, G => 0, B => 0), 7807 => (R => 0, G => 0, B => 0), 7808 => (R => 0, G => 0, B => 0), 7809 => (R => 0, G => 0, B => 0), 7810 => (R => 0, G => 0, B => 0), 7811 => (R => 0, G => 0, B => 0), 7812 => (R => 0, G => 0, B => 0), 7813 => (R => 0, G => 0, B => 0), 7814 => (R => 0, G => 0, B => 0), 7815 => (R => 0, G => 0, B => 0), 7816 => (R => 0, G => 0, B => 0), 7817 => (R => 0, G => 0, B => 0), 7818 => (R => 0, G => 0, B => 0), 7819 => (R => 0, G => 0, B => 0), 7820 => (R => 0, G => 0, B => 0), 7821 => (R => 0, G => 0, B => 0), 7822 => (R => 0, G => 0, B => 0), 7823 => (R => 0, G => 0, B => 0), 7824 => (R => 0, G => 0, B => 0), 7825 => (R => 0, G => 0, B => 0), 7826 => (R => 0, G => 0, B => 0), 7827 => (R => 0, G => 0, B => 0), 7828 => (R => 0, G => 0, B => 0), 7829 => (R => 0, G => 0, B => 0), 7830 => (R => 0, G => 0, B => 0), 7831 => (R => 0, G => 0, B => 0), 7832 => (R => 0, G => 0, B => 0), 7833 => (R => 0, G => 0, B => 0), 7834 => (R => 0, G => 0, B => 0), 7835 => (R => 0, G => 0, B => 0), 7836 => (R => 0, G => 0, B => 0), 7837 => (R => 0, G => 0, B => 0), 7838 => (R => 255, G => 0, B => 0), 7839 => (R => 255, G => 0, B => 0), 7840 => (R => 255, G => 0, B => 0), 7841 => (R => 255, G => 0, B => 0), 7842 => (R => 255, G => 0, B => 0), 7843 => (R => 255, G => 0, B => 0), 7844 => (R => 255, G => 0, B => 0), 7845 => (R => 255, G => 0, B => 0), 7846 => (R => 255, G => 0, B => 0), 7847 => (R => 255, G => 0, B => 0), 7848 => (R => 255, G => 0, B => 0), 7849 => (R => 255, G => 0, B => 0), 7850 => (R => 255, G => 0, B => 0), 7851 => (R => 255, G => 0, B => 0), 7852 => (R => 255, G => 0, B => 0), 7853 => (R => 255, G => 0, B => 0), 7854 => (R => 255, G => 0, B => 0), 7855 => (R => 255, G => 0, B => 0), 7856 => (R => 255, G => 0, B => 0), 7857 => (R => 255, G => 0, B => 0), 7858 => (R => 255, G => 0, B => 0), 7859 => (R => 255, G => 0, B => 0), 7860 => (R => 255, G => 0, B => 0), 7861 => (R => 255, G => 0, B => 0), 7862 => (R => 255, G => 0, B => 0), 7863 => (R => 255, G => 0, B => 0), 7864 => (R => 255, G => 0, B => 0), 7865 => (R => 255, G => 0, B => 0), 7866 => (R => 255, G => 0, B => 0), 7867 => (R => 255, G => 0, B => 0), 7868 => (R => 255, G => 0, B => 0), 7869 => (R => 255, G => 0, B => 0), 7870 => (R => 255, G => 0, B => 0), 7871 => (R => 255, G => 0, B => 0), 7872 => (R => 255, G => 0, B => 0), 7873 => (R => 255, G => 0, B => 0), 7874 => (R => 255, G => 0, B => 0), 7875 => (R => 255, G => 0, B => 0), 7876 => (R => 255, G => 0, B => 0), 7877 => (R => 255, G => 0, B => 0), 7878 => (R => 255, G => 0, B => 0), 7879 => (R => 255, G => 0, B => 0), 7880 => (R => 255, G => 0, B => 0), 7881 => (R => 255, G => 0, B => 0), 7882 => (R => 255, G => 0, B => 0), 7883 => (R => 255, G => 0, B => 0), 7884 => (R => 255, G => 0, B => 0), 7885 => (R => 255, G => 0, B => 0), 7886 => (R => 255, G => 0, B => 0), 7887 => (R => 255, G => 0, B => 0), 7888 => (R => 255, G => 0, B => 0), 7889 => (R => 255, G => 0, B => 0), 7890 => (R => 255, G => 0, B => 0), 7891 => (R => 255, G => 0, B => 0), 7892 => (R => 255, G => 0, B => 0), 7893 => (R => 255, G => 0, B => 0), 7894 => (R => 255, G => 0, B => 0), 7895 => (R => 255, G => 0, B => 0), 7896 => (R => 255, G => 0, B => 0), 7897 => (R => 255, G => 0, B => 0), 7898 => (R => 255, G => 0, B => 0), 7899 => (R => 255, G => 0, B => 0), 7900 => (R => 255, G => 0, B => 0), 7901 => (R => 255, G => 0, B => 0), 7902 => (R => 255, G => 0, B => 0), 7903 => (R => 255, G => 0, B => 0), 7904 => (R => 255, G => 0, B => 0), 7905 => (R => 255, G => 0, B => 0), 7906 => (R => 255, G => 0, B => 0), 7907 => (R => 255, G => 0, B => 0), 7908 => (R => 255, G => 0, B => 0), 7909 => (R => 255, G => 0, B => 0), 7910 => (R => 255, G => 0, B => 0), 7911 => (R => 255, G => 0, B => 0), 7912 => (R => 255, G => 0, B => 0), 7913 => (R => 255, G => 0, B => 0), 7914 => (R => 255, G => 0, B => 0), 7915 => (R => 255, G => 0, B => 0), 7916 => (R => 255, G => 0, B => 0), 7917 => (R => 255, G => 0, B => 0), 7918 => (R => 255, G => 0, B => 0), 7919 => (R => 255, G => 0, B => 0), 7920 => (R => 255, G => 0, B => 0), 7921 => (R => 255, G => 0, B => 0), 7922 => (R => 255, G => 0, B => 0), 7923 => (R => 255, G => 0, B => 0), 7924 => (R => 255, G => 0, B => 0), 7925 => (R => 255, G => 0, B => 0), 7926 => (R => 255, G => 0, B => 0), 7927 => (R => 255, G => 0, B => 0), 7928 => (R => 255, G => 0, B => 0), 7929 => (R => 255, G => 0, B => 0), 7930 => (R => 255, G => 0, B => 0), 7931 => (R => 255, G => 0, B => 0), 7932 => (R => 255, G => 0, B => 0), 7933 => (R => 255, G => 0, B => 0), 7934 => (R => 255, G => 0, B => 0), 7935 => (R => 255, G => 0, B => 0), 7936 => (R => 255, G => 0, B => 0), 7937 => (R => 255, G => 0, B => 0), 7938 => (R => 255, G => 0, B => 0), 7939 => (R => 255, G => 0, B => 0), 7940 => (R => 255, G => 0, B => 0), 7941 => (R => 255, G => 0, B => 0), 7942 => (R => 255, G => 0, B => 0), 7943 => (R => 255, G => 0, B => 0), 7944 => (R => 255, G => 0, B => 0), 7945 => (R => 255, G => 0, B => 0), 7946 => (R => 255, G => 0, B => 0), 7947 => (R => 255, G => 0, B => 0), 7948 => (R => 255, G => 0, B => 0), 7949 => (R => 255, G => 0, B => 0), 7950 => (R => 255, G => 0, B => 0), 7951 => (R => 255, G => 0, B => 0), 7952 => (R => 255, G => 0, B => 0), 7953 => (R => 255, G => 0, B => 0), 7954 => (R => 255, G => 0, B => 0), 7955 => (R => 255, G => 0, B => 0), 7956 => (R => 255, G => 0, B => 0), 7957 => (R => 255, G => 0, B => 0), 7958 => (R => 255, G => 0, B => 0), 7959 => (R => 255, G => 0, B => 0), 7960 => (R => 255, G => 0, B => 0), 7961 => (R => 255, G => 0, B => 0), 7962 => (R => 255, G => 0, B => 0), 7963 => (R => 255, G => 0, B => 0), 7964 => (R => 0, G => 0, B => 0), 7965 => (R => 0, G => 0, B => 0), 7966 => (R => 0, G => 0, B => 0), 7967 => (R => 0, G => 0, B => 0), 7968 => (R => 0, G => 0, B => 0), 7969 => (R => 0, G => 0, B => 0), 7970 => (R => 0, G => 0, B => 0), 7971 => (R => 0, G => 0, B => 0), 7972 => (R => 0, G => 0, B => 0), 7973 => (R => 0, G => 0, B => 0), 7974 => (R => 0, G => 0, B => 0), 7975 => (R => 0, G => 0, B => 0), 7976 => (R => 0, G => 0, B => 0), 7977 => (R => 0, G => 0, B => 0), 7978 => (R => 0, G => 0, B => 0), 7979 => (R => 0, G => 0, B => 0), 7980 => (R => 0, G => 0, B => 0), 7981 => (R => 0, G => 0, B => 0), 7982 => (R => 0, G => 0, B => 0), 7983 => (R => 0, G => 0, B => 0), 7984 => (R => 0, G => 0, B => 0), 7985 => (R => 0, G => 0, B => 0), 7986 => (R => 0, G => 0, B => 0), 7987 => (R => 0, G => 0, B => 0), 7988 => (R => 0, G => 0, B => 0), 7989 => (R => 0, G => 0, B => 0), 7990 => (R => 0, G => 0, B => 0), 7991 => (R => 0, G => 0, B => 0), 7992 => (R => 0, G => 0, B => 0), 7993 => (R => 0, G => 0, B => 0), 7994 => (R => 0, G => 0, B => 0), 7995 => (R => 0, G => 0, B => 0), 7996 => (R => 0, G => 0, B => 0), 7997 => (R => 0, G => 0, B => 0), 7998 => (R => 0, G => 0, B => 0), 7999 => (R => 0, G => 0, B => 0), 8000 => (R => 0, G => 0, B => 0), 8001 => (R => 0, G => 0, B => 0), 8002 => (R => 0, G => 0, B => 0), 8003 => (R => 0, G => 0, B => 0), 8004 => (R => 0, G => 0, B => 0), 8005 => (R => 0, G => 0, B => 0), 8006 => (R => 0, G => 0, B => 0), 8007 => (R => 0, G => 0, B => 0), 8008 => (R => 0, G => 0, B => 0), 8009 => (R => 0, G => 0, B => 0), 8010 => (R => 0, G => 0, B => 0), 8011 => (R => 0, G => 0, B => 0), 8012 => (R => 0, G => 0, B => 0), 8013 => (R => 0, G => 0, B => 0), 8014 => (R => 0, G => 0, B => 0), 8015 => (R => 0, G => 0, B => 0), 8016 => (R => 0, G => 0, B => 0), 8017 => (R => 0, G => 0, B => 0), 8018 => (R => 0, G => 0, B => 0), 8019 => (R => 0, G => 0, B => 0), 8020 => (R => 0, G => 0, B => 0), 8021 => (R => 0, G => 0, B => 0), 8022 => (R => 0, G => 0, B => 0), 8023 => (R => 0, G => 0, B => 0), 8024 => (R => 0, G => 0, B => 0), 8025 => (R => 0, G => 0, B => 0), 8026 => (R => 0, G => 0, B => 0), 8027 => (R => 0, G => 0, B => 0), 8028 => (R => 0, G => 0, B => 0), 8029 => (R => 0, G => 0, B => 0), 8030 => (R => 0, G => 0, B => 0), 8031 => (R => 0, G => 0, B => 0), 8032 => (R => 0, G => 0, B => 0), 8033 => (R => 0, G => 0, B => 0), 8034 => (R => 0, G => 0, B => 0), 8035 => (R => 0, G => 0, B => 0), 8036 => (R => 0, G => 0, B => 0), 8037 => (R => 0, G => 0, B => 0), 8038 => (R => 0, G => 0, B => 0), 8039 => (R => 255, G => 0, B => 0), 8040 => (R => 255, G => 0, B => 0), 8041 => (R => 255, G => 0, B => 0), 8042 => (R => 255, G => 0, B => 0), 8043 => (R => 255, G => 0, B => 0), 8044 => (R => 255, G => 0, B => 0), 8045 => (R => 255, G => 0, B => 0), 8046 => (R => 255, G => 0, B => 0), 8047 => (R => 255, G => 0, B => 0), 8048 => (R => 255, G => 0, B => 0), 8049 => (R => 255, G => 0, B => 0), 8050 => (R => 255, G => 0, B => 0), 8051 => (R => 255, G => 0, B => 0), 8052 => (R => 255, G => 0, B => 0), 8053 => (R => 255, G => 0, B => 0), 8054 => (R => 255, G => 0, B => 0), 8055 => (R => 255, G => 0, B => 0), 8056 => (R => 255, G => 0, B => 0), 8057 => (R => 255, G => 0, B => 0), 8058 => (R => 255, G => 0, B => 0), 8059 => (R => 255, G => 0, B => 0), 8060 => (R => 255, G => 0, B => 0), 8061 => (R => 255, G => 0, B => 0), 8062 => (R => 255, G => 0, B => 0), 8063 => (R => 255, G => 0, B => 0), 8064 => (R => 255, G => 0, B => 0), 8065 => (R => 255, G => 0, B => 0), 8066 => (R => 255, G => 0, B => 0), 8067 => (R => 255, G => 0, B => 0), 8068 => (R => 255, G => 0, B => 0), 8069 => (R => 255, G => 0, B => 0), 8070 => (R => 255, G => 0, B => 0), 8071 => (R => 255, G => 0, B => 0), 8072 => (R => 255, G => 0, B => 0), 8073 => (R => 255, G => 0, B => 0), 8074 => (R => 255, G => 0, B => 0), 8075 => (R => 255, G => 0, B => 0), 8076 => (R => 255, G => 0, B => 0), 8077 => (R => 255, G => 0, B => 0), 8078 => (R => 255, G => 0, B => 0), 8079 => (R => 255, G => 0, B => 0), 8080 => (R => 255, G => 0, B => 0), 8081 => (R => 255, G => 0, B => 0), 8082 => (R => 255, G => 0, B => 0), 8083 => (R => 255, G => 0, B => 0), 8084 => (R => 255, G => 0, B => 0), 8085 => (R => 255, G => 0, B => 0), 8086 => (R => 255, G => 0, B => 0), 8087 => (R => 255, G => 0, B => 0), 8088 => (R => 255, G => 0, B => 0), 8089 => (R => 255, G => 0, B => 0), 8090 => (R => 255, G => 0, B => 0), 8091 => (R => 255, G => 0, B => 0), 8092 => (R => 255, G => 0, B => 0), 8093 => (R => 255, G => 0, B => 0), 8094 => (R => 255, G => 0, B => 0), 8095 => (R => 255, G => 0, B => 0), 8096 => (R => 255, G => 0, B => 0), 8097 => (R => 255, G => 0, B => 0), 8098 => (R => 255, G => 0, B => 0), 8099 => (R => 255, G => 0, B => 0), 8100 => (R => 255, G => 0, B => 0), 8101 => (R => 255, G => 0, B => 0), 8102 => (R => 255, G => 0, B => 0), 8103 => (R => 255, G => 0, B => 0), 8104 => (R => 255, G => 0, B => 0), 8105 => (R => 255, G => 0, B => 0), 8106 => (R => 255, G => 0, B => 0), 8107 => (R => 255, G => 0, B => 0), 8108 => (R => 255, G => 0, B => 0), 8109 => (R => 255, G => 0, B => 0), 8110 => (R => 255, G => 0, B => 0), 8111 => (R => 255, G => 0, B => 0), 8112 => (R => 255, G => 0, B => 0), 8113 => (R => 255, G => 0, B => 0), 8114 => (R => 255, G => 0, B => 0), 8115 => (R => 255, G => 0, B => 0), 8116 => (R => 255, G => 0, B => 0), 8117 => (R => 255, G => 0, B => 0), 8118 => (R => 255, G => 0, B => 0), 8119 => (R => 255, G => 0, B => 0), 8120 => (R => 255, G => 0, B => 0), 8121 => (R => 255, G => 0, B => 0), 8122 => (R => 255, G => 0, B => 0), 8123 => (R => 255, G => 0, B => 0), 8124 => (R => 255, G => 0, B => 0), 8125 => (R => 255, G => 0, B => 0), 8126 => (R => 255, G => 0, B => 0), 8127 => (R => 255, G => 0, B => 0), 8128 => (R => 255, G => 0, B => 0), 8129 => (R => 255, G => 0, B => 0), 8130 => (R => 255, G => 0, B => 0), 8131 => (R => 255, G => 0, B => 0), 8132 => (R => 255, G => 0, B => 0), 8133 => (R => 255, G => 0, B => 0), 8134 => (R => 255, G => 0, B => 0), 8135 => (R => 255, G => 0, B => 0), 8136 => (R => 255, G => 0, B => 0), 8137 => (R => 255, G => 0, B => 0), 8138 => (R => 255, G => 0, B => 0), 8139 => (R => 255, G => 0, B => 0), 8140 => (R => 255, G => 0, B => 0), 8141 => (R => 255, G => 0, B => 0), 8142 => (R => 255, G => 0, B => 0), 8143 => (R => 255, G => 0, B => 0), 8144 => (R => 255, G => 0, B => 0), 8145 => (R => 255, G => 0, B => 0), 8146 => (R => 255, G => 0, B => 0), 8147 => (R => 255, G => 0, B => 0), 8148 => (R => 255, G => 0, B => 0), 8149 => (R => 255, G => 0, B => 0), 8150 => (R => 255, G => 0, B => 0), 8151 => (R => 255, G => 0, B => 0), 8152 => (R => 255, G => 0, B => 0), 8153 => (R => 255, G => 0, B => 0), 8154 => (R => 255, G => 0, B => 0), 8155 => (R => 255, G => 0, B => 0), 8156 => (R => 255, G => 0, B => 0), 8157 => (R => 255, G => 0, B => 0), 8158 => (R => 255, G => 0, B => 0), 8159 => (R => 255, G => 0, B => 0), 8160 => (R => 255, G => 0, B => 0), 8161 => (R => 255, G => 0, B => 0), 8162 => (R => 255, G => 0, B => 0), 8163 => (R => 0, G => 0, B => 0), 8164 => (R => 0, G => 0, B => 0), 8165 => (R => 0, G => 0, B => 0), 8166 => (R => 0, G => 0, B => 0), 8167 => (R => 0, G => 0, B => 0), 8168 => (R => 0, G => 0, B => 0), 8169 => (R => 0, G => 0, B => 0), 8170 => (R => 0, G => 0, B => 0), 8171 => (R => 0, G => 0, B => 0), 8172 => (R => 0, G => 0, B => 0), 8173 => (R => 0, G => 0, B => 0), 8174 => (R => 0, G => 0, B => 0), 8175 => (R => 0, G => 0, B => 0), 8176 => (R => 0, G => 0, B => 0), 8177 => (R => 0, G => 0, B => 0), 8178 => (R => 0, G => 0, B => 0), 8179 => (R => 0, G => 0, B => 0), 8180 => (R => 0, G => 0, B => 0), 8181 => (R => 0, G => 0, B => 0), 8182 => (R => 0, G => 0, B => 0), 8183 => (R => 0, G => 0, B => 0), 8184 => (R => 0, G => 0, B => 0), 8185 => (R => 0, G => 0, B => 0), 8186 => (R => 0, G => 0, B => 0), 8187 => (R => 0, G => 0, B => 0), 8188 => (R => 0, G => 0, B => 0), 8189 => (R => 0, G => 0, B => 0), 8190 => (R => 0, G => 0, B => 0), 8191 => (R => 0, G => 0, B => 0), 8192 => (R => 0, G => 0, B => 0), 8193 => (R => 0, G => 0, B => 0), 8194 => (R => 0, G => 0, B => 0), 8195 => (R => 0, G => 0, B => 0), 8196 => (R => 0, G => 0, B => 0), 8197 => (R => 0, G => 0, B => 0), 8198 => (R => 0, G => 0, B => 0), 8199 => (R => 0, G => 0, B => 0), 8200 => (R => 0, G => 0, B => 0), 8201 => (R => 0, G => 0, B => 0), 8202 => (R => 0, G => 0, B => 0), 8203 => (R => 0, G => 0, B => 0), 8204 => (R => 0, G => 0, B => 0), 8205 => (R => 0, G => 0, B => 0), 8206 => (R => 0, G => 0, B => 0), 8207 => (R => 0, G => 0, B => 0), 8208 => (R => 0, G => 0, B => 0), 8209 => (R => 0, G => 0, B => 0), 8210 => (R => 0, G => 0, B => 0), 8211 => (R => 0, G => 0, B => 0), 8212 => (R => 0, G => 0, B => 0), 8213 => (R => 0, G => 0, B => 0), 8214 => (R => 0, G => 0, B => 0), 8215 => (R => 0, G => 0, B => 0), 8216 => (R => 0, G => 0, B => 0), 8217 => (R => 0, G => 0, B => 0), 8218 => (R => 0, G => 0, B => 0), 8219 => (R => 0, G => 0, B => 0), 8220 => (R => 0, G => 0, B => 0), 8221 => (R => 0, G => 0, B => 0), 8222 => (R => 0, G => 0, B => 0), 8223 => (R => 0, G => 0, B => 0), 8224 => (R => 0, G => 0, B => 0), 8225 => (R => 0, G => 0, B => 0), 8226 => (R => 0, G => 0, B => 0), 8227 => (R => 0, G => 0, B => 0), 8228 => (R => 0, G => 0, B => 0), 8229 => (R => 0, G => 0, B => 0), 8230 => (R => 0, G => 0, B => 0), 8231 => (R => 0, G => 0, B => 0), 8232 => (R => 0, G => 0, B => 0), 8233 => (R => 0, G => 0, B => 0), 8234 => (R => 0, G => 0, B => 0), 8235 => (R => 0, G => 0, B => 0), 8236 => (R => 0, G => 0, B => 0), 8237 => (R => 0, G => 0, B => 0), 8238 => (R => 0, G => 0, B => 0), 8239 => (R => 0, G => 0, B => 0), 8240 => (R => 255, G => 0, B => 0), 8241 => (R => 255, G => 0, B => 0), 8242 => (R => 255, G => 0, B => 0), 8243 => (R => 255, G => 0, B => 0), 8244 => (R => 255, G => 0, B => 0), 8245 => (R => 255, G => 0, B => 0), 8246 => (R => 255, G => 0, B => 0), 8247 => (R => 255, G => 0, B => 0), 8248 => (R => 255, G => 0, B => 0), 8249 => (R => 255, G => 0, B => 0), 8250 => (R => 255, G => 0, B => 0), 8251 => (R => 255, G => 0, B => 0), 8252 => (R => 255, G => 0, B => 0), 8253 => (R => 255, G => 0, B => 0), 8254 => (R => 255, G => 0, B => 0), 8255 => (R => 255, G => 0, B => 0), 8256 => (R => 255, G => 0, B => 0), 8257 => (R => 255, G => 0, B => 0), 8258 => (R => 255, G => 0, B => 0), 8259 => (R => 255, G => 0, B => 0), 8260 => (R => 255, G => 0, B => 0), 8261 => (R => 255, G => 0, B => 0), 8262 => (R => 255, G => 0, B => 0), 8263 => (R => 255, G => 0, B => 0), 8264 => (R => 255, G => 0, B => 0), 8265 => (R => 255, G => 0, B => 0), 8266 => (R => 255, G => 0, B => 0), 8267 => (R => 255, G => 0, B => 0), 8268 => (R => 255, G => 0, B => 0), 8269 => (R => 255, G => 0, B => 0), 8270 => (R => 255, G => 0, B => 0), 8271 => (R => 255, G => 0, B => 0), 8272 => (R => 255, G => 0, B => 0), 8273 => (R => 255, G => 0, B => 0), 8274 => (R => 255, G => 0, B => 0), 8275 => (R => 255, G => 0, B => 0), 8276 => (R => 255, G => 0, B => 0), 8277 => (R => 255, G => 0, B => 0), 8278 => (R => 255, G => 0, B => 0), 8279 => (R => 255, G => 0, B => 0), 8280 => (R => 255, G => 0, B => 0), 8281 => (R => 255, G => 0, B => 0), 8282 => (R => 255, G => 0, B => 0), 8283 => (R => 255, G => 0, B => 0), 8284 => (R => 255, G => 0, B => 0), 8285 => (R => 255, G => 0, B => 0), 8286 => (R => 255, G => 0, B => 0), 8287 => (R => 255, G => 0, B => 0), 8288 => (R => 255, G => 0, B => 0), 8289 => (R => 255, G => 0, B => 0), 8290 => (R => 255, G => 0, B => 0), 8291 => (R => 255, G => 0, B => 0), 8292 => (R => 255, G => 0, B => 0), 8293 => (R => 255, G => 0, B => 0), 8294 => (R => 255, G => 0, B => 0), 8295 => (R => 255, G => 0, B => 0), 8296 => (R => 255, G => 0, B => 0), 8297 => (R => 255, G => 0, B => 0), 8298 => (R => 255, G => 0, B => 0), 8299 => (R => 255, G => 0, B => 0), 8300 => (R => 255, G => 0, B => 0), 8301 => (R => 255, G => 0, B => 0), 8302 => (R => 255, G => 0, B => 0), 8303 => (R => 255, G => 0, B => 0), 8304 => (R => 255, G => 0, B => 0), 8305 => (R => 255, G => 0, B => 0), 8306 => (R => 255, G => 0, B => 0), 8307 => (R => 255, G => 0, B => 0), 8308 => (R => 255, G => 0, B => 0), 8309 => (R => 255, G => 0, B => 0), 8310 => (R => 255, G => 0, B => 0), 8311 => (R => 255, G => 0, B => 0), 8312 => (R => 255, G => 0, B => 0), 8313 => (R => 255, G => 0, B => 0), 8314 => (R => 255, G => 0, B => 0), 8315 => (R => 255, G => 0, B => 0), 8316 => (R => 255, G => 0, B => 0), 8317 => (R => 255, G => 0, B => 0), 8318 => (R => 255, G => 0, B => 0), 8319 => (R => 255, G => 0, B => 0), 8320 => (R => 255, G => 0, B => 0), 8321 => (R => 255, G => 0, B => 0), 8322 => (R => 255, G => 0, B => 0), 8323 => (R => 255, G => 0, B => 0), 8324 => (R => 255, G => 0, B => 0), 8325 => (R => 255, G => 0, B => 0), 8326 => (R => 255, G => 0, B => 0), 8327 => (R => 255, G => 0, B => 0), 8328 => (R => 255, G => 0, B => 0), 8329 => (R => 255, G => 0, B => 0), 8330 => (R => 255, G => 0, B => 0), 8331 => (R => 255, G => 0, B => 0), 8332 => (R => 255, G => 0, B => 0), 8333 => (R => 255, G => 0, B => 0), 8334 => (R => 255, G => 0, B => 0), 8335 => (R => 255, G => 0, B => 0), 8336 => (R => 255, G => 0, B => 0), 8337 => (R => 255, G => 0, B => 0), 8338 => (R => 255, G => 0, B => 0), 8339 => (R => 255, G => 0, B => 0), 8340 => (R => 255, G => 0, B => 0), 8341 => (R => 255, G => 0, B => 0), 8342 => (R => 255, G => 0, B => 0), 8343 => (R => 255, G => 0, B => 0), 8344 => (R => 255, G => 0, B => 0), 8345 => (R => 255, G => 0, B => 0), 8346 => (R => 255, G => 0, B => 0), 8347 => (R => 255, G => 0, B => 0), 8348 => (R => 255, G => 0, B => 0), 8349 => (R => 255, G => 0, B => 0), 8350 => (R => 255, G => 0, B => 0), 8351 => (R => 255, G => 0, B => 0), 8352 => (R => 255, G => 0, B => 0), 8353 => (R => 255, G => 0, B => 0), 8354 => (R => 255, G => 0, B => 0), 8355 => (R => 255, G => 0, B => 0), 8356 => (R => 255, G => 0, B => 0), 8357 => (R => 255, G => 0, B => 0), 8358 => (R => 255, G => 0, B => 0), 8359 => (R => 255, G => 0, B => 0), 8360 => (R => 255, G => 0, B => 0), 8361 => (R => 255, G => 0, B => 0), 8362 => (R => 0, G => 0, B => 0), 8363 => (R => 0, G => 0, B => 0), 8364 => (R => 0, G => 0, B => 0), 8365 => (R => 0, G => 0, B => 0), 8366 => (R => 0, G => 0, B => 0), 8367 => (R => 0, G => 0, B => 0), 8368 => (R => 0, G => 0, B => 0), 8369 => (R => 0, G => 0, B => 0), 8370 => (R => 0, G => 0, B => 0), 8371 => (R => 0, G => 0, B => 0), 8372 => (R => 0, G => 0, B => 0), 8373 => (R => 0, G => 0, B => 0), 8374 => (R => 0, G => 0, B => 0), 8375 => (R => 0, G => 0, B => 0), 8376 => (R => 0, G => 0, B => 0), 8377 => (R => 0, G => 0, B => 0), 8378 => (R => 0, G => 0, B => 0), 8379 => (R => 0, G => 0, B => 0), 8380 => (R => 0, G => 0, B => 0), 8381 => (R => 0, G => 0, B => 0), 8382 => (R => 0, G => 0, B => 0), 8383 => (R => 0, G => 0, B => 0), 8384 => (R => 0, G => 0, B => 0), 8385 => (R => 0, G => 0, B => 0), 8386 => (R => 0, G => 0, B => 0), 8387 => (R => 0, G => 0, B => 0), 8388 => (R => 0, G => 0, B => 0), 8389 => (R => 0, G => 0, B => 0), 8390 => (R => 0, G => 0, B => 0), 8391 => (R => 0, G => 0, B => 0), 8392 => (R => 0, G => 0, B => 0), 8393 => (R => 0, G => 0, B => 0), 8394 => (R => 0, G => 0, B => 0), 8395 => (R => 0, G => 0, B => 0), 8396 => (R => 0, G => 0, B => 0), 8397 => (R => 0, G => 0, B => 0), 8398 => (R => 0, G => 0, B => 0), 8399 => (R => 0, G => 0, B => 0), 8400 => (R => 0, G => 0, B => 0), 8401 => (R => 0, G => 0, B => 0), 8402 => (R => 0, G => 0, B => 0), 8403 => (R => 0, G => 0, B => 0), 8404 => (R => 0, G => 0, B => 0), 8405 => (R => 0, G => 0, B => 0), 8406 => (R => 0, G => 0, B => 0), 8407 => (R => 0, G => 0, B => 0), 8408 => (R => 0, G => 0, B => 0), 8409 => (R => 0, G => 0, B => 0), 8410 => (R => 0, G => 0, B => 0), 8411 => (R => 0, G => 0, B => 0), 8412 => (R => 0, G => 0, B => 0), 8413 => (R => 0, G => 0, B => 0), 8414 => (R => 0, G => 0, B => 0), 8415 => (R => 0, G => 0, B => 0), 8416 => (R => 0, G => 0, B => 0), 8417 => (R => 0, G => 0, B => 0), 8418 => (R => 0, G => 0, B => 0), 8419 => (R => 0, G => 0, B => 0), 8420 => (R => 0, G => 0, B => 0), 8421 => (R => 0, G => 0, B => 0), 8422 => (R => 0, G => 0, B => 0), 8423 => (R => 0, G => 0, B => 0), 8424 => (R => 0, G => 0, B => 0), 8425 => (R => 0, G => 0, B => 0), 8426 => (R => 0, G => 0, B => 0), 8427 => (R => 0, G => 0, B => 0), 8428 => (R => 0, G => 0, B => 0), 8429 => (R => 0, G => 0, B => 0), 8430 => (R => 0, G => 0, B => 0), 8431 => (R => 0, G => 0, B => 0), 8432 => (R => 0, G => 0, B => 0), 8433 => (R => 0, G => 0, B => 0), 8434 => (R => 0, G => 0, B => 0), 8435 => (R => 0, G => 0, B => 0), 8436 => (R => 0, G => 0, B => 0), 8437 => (R => 0, G => 0, B => 0), 8438 => (R => 0, G => 0, B => 0), 8439 => (R => 0, G => 0, B => 0), 8440 => (R => 0, G => 0, B => 0), 8441 => (R => 255, G => 0, B => 0), 8442 => (R => 255, G => 0, B => 0), 8443 => (R => 255, G => 0, B => 0), 8444 => (R => 255, G => 0, B => 0), 8445 => (R => 255, G => 0, B => 0), 8446 => (R => 255, G => 0, B => 0), 8447 => (R => 255, G => 0, B => 0), 8448 => (R => 255, G => 0, B => 0), 8449 => (R => 255, G => 0, B => 0), 8450 => (R => 255, G => 0, B => 0), 8451 => (R => 255, G => 0, B => 0), 8452 => (R => 255, G => 0, B => 0), 8453 => (R => 255, G => 0, B => 0), 8454 => (R => 255, G => 0, B => 0), 8455 => (R => 255, G => 0, B => 0), 8456 => (R => 255, G => 0, B => 0), 8457 => (R => 255, G => 0, B => 0), 8458 => (R => 255, G => 0, B => 0), 8459 => (R => 255, G => 0, B => 0), 8460 => (R => 255, G => 0, B => 0), 8461 => (R => 255, G => 0, B => 0), 8462 => (R => 255, G => 0, B => 0), 8463 => (R => 255, G => 0, B => 0), 8464 => (R => 255, G => 0, B => 0), 8465 => (R => 255, G => 0, B => 0), 8466 => (R => 255, G => 0, B => 0), 8467 => (R => 255, G => 0, B => 0), 8468 => (R => 255, G => 0, B => 0), 8469 => (R => 255, G => 0, B => 0), 8470 => (R => 255, G => 0, B => 0), 8471 => (R => 255, G => 0, B => 0), 8472 => (R => 255, G => 0, B => 0), 8473 => (R => 255, G => 0, B => 0), 8474 => (R => 255, G => 0, B => 0), 8475 => (R => 255, G => 0, B => 0), 8476 => (R => 255, G => 0, B => 0), 8477 => (R => 255, G => 0, B => 0), 8478 => (R => 255, G => 0, B => 0), 8479 => (R => 255, G => 0, B => 0), 8480 => (R => 255, G => 0, B => 0), 8481 => (R => 255, G => 0, B => 0), 8482 => (R => 255, G => 0, B => 0), 8483 => (R => 255, G => 0, B => 0), 8484 => (R => 255, G => 0, B => 0), 8485 => (R => 255, G => 0, B => 0), 8486 => (R => 255, G => 0, B => 0), 8487 => (R => 255, G => 0, B => 0), 8488 => (R => 255, G => 0, B => 0), 8489 => (R => 255, G => 0, B => 0), 8490 => (R => 255, G => 0, B => 0), 8491 => (R => 255, G => 0, B => 0), 8492 => (R => 255, G => 0, B => 0), 8493 => (R => 255, G => 0, B => 0), 8494 => (R => 255, G => 0, B => 0), 8495 => (R => 255, G => 0, B => 0), 8496 => (R => 255, G => 0, B => 0), 8497 => (R => 255, G => 0, B => 0), 8498 => (R => 255, G => 0, B => 0), 8499 => (R => 255, G => 0, B => 0), 8500 => (R => 255, G => 0, B => 0), 8501 => (R => 255, G => 0, B => 0), 8502 => (R => 255, G => 0, B => 0), 8503 => (R => 255, G => 0, B => 0), 8504 => (R => 255, G => 0, B => 0), 8505 => (R => 255, G => 0, B => 0), 8506 => (R => 255, G => 0, B => 0), 8507 => (R => 255, G => 0, B => 0), 8508 => (R => 255, G => 0, B => 0), 8509 => (R => 255, G => 0, B => 0), 8510 => (R => 255, G => 0, B => 0), 8511 => (R => 255, G => 0, B => 0), 8512 => (R => 255, G => 0, B => 0), 8513 => (R => 255, G => 0, B => 0), 8514 => (R => 255, G => 0, B => 0), 8515 => (R => 255, G => 0, B => 0), 8516 => (R => 255, G => 0, B => 0), 8517 => (R => 255, G => 0, B => 0), 8518 => (R => 255, G => 0, B => 0), 8519 => (R => 255, G => 0, B => 0), 8520 => (R => 255, G => 0, B => 0), 8521 => (R => 255, G => 0, B => 0), 8522 => (R => 255, G => 0, B => 0), 8523 => (R => 255, G => 0, B => 0), 8524 => (R => 255, G => 0, B => 0), 8525 => (R => 255, G => 0, B => 0), 8526 => (R => 255, G => 0, B => 0), 8527 => (R => 255, G => 0, B => 0), 8528 => (R => 255, G => 0, B => 0), 8529 => (R => 255, G => 0, B => 0), 8530 => (R => 255, G => 0, B => 0), 8531 => (R => 255, G => 0, B => 0), 8532 => (R => 255, G => 0, B => 0), 8533 => (R => 255, G => 0, B => 0), 8534 => (R => 255, G => 0, B => 0), 8535 => (R => 255, G => 0, B => 0), 8536 => (R => 255, G => 0, B => 0), 8537 => (R => 255, G => 0, B => 0), 8538 => (R => 255, G => 0, B => 0), 8539 => (R => 255, G => 0, B => 0), 8540 => (R => 255, G => 0, B => 0), 8541 => (R => 255, G => 0, B => 0), 8542 => (R => 255, G => 0, B => 0), 8543 => (R => 255, G => 0, B => 0), 8544 => (R => 255, G => 0, B => 0), 8545 => (R => 255, G => 0, B => 0), 8546 => (R => 255, G => 0, B => 0), 8547 => (R => 255, G => 0, B => 0), 8548 => (R => 255, G => 0, B => 0), 8549 => (R => 255, G => 0, B => 0), 8550 => (R => 255, G => 0, B => 0), 8551 => (R => 255, G => 0, B => 0), 8552 => (R => 255, G => 0, B => 0), 8553 => (R => 255, G => 0, B => 0), 8554 => (R => 255, G => 0, B => 0), 8555 => (R => 255, G => 0, B => 0), 8556 => (R => 255, G => 0, B => 0), 8557 => (R => 255, G => 0, B => 0), 8558 => (R => 255, G => 0, B => 0), 8559 => (R => 255, G => 0, B => 0), 8560 => (R => 0, G => 0, B => 0), 8561 => (R => 0, G => 0, B => 0), 8562 => (R => 0, G => 0, B => 0), 8563 => (R => 0, G => 0, B => 0), 8564 => (R => 0, G => 0, B => 0), 8565 => (R => 0, G => 0, B => 0), 8566 => (R => 0, G => 0, B => 0), 8567 => (R => 0, G => 0, B => 0), 8568 => (R => 0, G => 0, B => 0), 8569 => (R => 0, G => 0, B => 0), 8570 => (R => 0, G => 0, B => 0), 8571 => (R => 0, G => 0, B => 0), 8572 => (R => 0, G => 0, B => 0), 8573 => (R => 0, G => 0, B => 0), 8574 => (R => 0, G => 0, B => 0), 8575 => (R => 0, G => 0, B => 0), 8576 => (R => 0, G => 0, B => 0), 8577 => (R => 0, G => 0, B => 0), 8578 => (R => 0, G => 0, B => 0), 8579 => (R => 0, G => 0, B => 0), 8580 => (R => 0, G => 0, B => 0), 8581 => (R => 0, G => 0, B => 0), 8582 => (R => 0, G => 0, B => 0), 8583 => (R => 0, G => 0, B => 0), 8584 => (R => 0, G => 0, B => 0), 8585 => (R => 0, G => 0, B => 0), 8586 => (R => 0, G => 0, B => 0), 8587 => (R => 0, G => 0, B => 0), 8588 => (R => 0, G => 0, B => 0), 8589 => (R => 0, G => 0, B => 0), 8590 => (R => 0, G => 0, B => 0), 8591 => (R => 0, G => 0, B => 0), 8592 => (R => 0, G => 0, B => 0), 8593 => (R => 0, G => 0, B => 0), 8594 => (R => 0, G => 0, B => 0), 8595 => (R => 0, G => 0, B => 0), 8596 => (R => 0, G => 0, B => 0), 8597 => (R => 0, G => 0, B => 0), 8598 => (R => 0, G => 0, B => 0), 8599 => (R => 0, G => 0, B => 0), 8600 => (R => 0, G => 0, B => 0), 8601 => (R => 0, G => 0, B => 0), 8602 => (R => 0, G => 0, B => 0), 8603 => (R => 0, G => 0, B => 0), 8604 => (R => 0, G => 0, B => 0), 8605 => (R => 0, G => 0, B => 0), 8606 => (R => 0, G => 0, B => 0), 8607 => (R => 0, G => 0, B => 0), 8608 => (R => 0, G => 0, B => 0), 8609 => (R => 0, G => 0, B => 0), 8610 => (R => 0, G => 0, B => 0), 8611 => (R => 0, G => 0, B => 0), 8612 => (R => 0, G => 0, B => 0), 8613 => (R => 0, G => 0, B => 0), 8614 => (R => 0, G => 0, B => 0), 8615 => (R => 0, G => 0, B => 0), 8616 => (R => 0, G => 0, B => 0), 8617 => (R => 0, G => 0, B => 0), 8618 => (R => 0, G => 0, B => 0), 8619 => (R => 0, G => 0, B => 0), 8620 => (R => 0, G => 0, B => 0), 8621 => (R => 0, G => 0, B => 0), 8622 => (R => 0, G => 0, B => 0), 8623 => (R => 0, G => 0, B => 0), 8624 => (R => 0, G => 0, B => 0), 8625 => (R => 0, G => 0, B => 0), 8626 => (R => 0, G => 0, B => 0), 8627 => (R => 0, G => 0, B => 0), 8628 => (R => 0, G => 0, B => 0), 8629 => (R => 0, G => 0, B => 0), 8630 => (R => 0, G => 0, B => 0), 8631 => (R => 0, G => 0, B => 0), 8632 => (R => 0, G => 0, B => 0), 8633 => (R => 0, G => 0, B => 0), 8634 => (R => 0, G => 0, B => 0), 8635 => (R => 0, G => 0, B => 0), 8636 => (R => 0, G => 0, B => 0), 8637 => (R => 0, G => 0, B => 0), 8638 => (R => 0, G => 0, B => 0), 8639 => (R => 0, G => 0, B => 0), 8640 => (R => 0, G => 0, B => 0), 8641 => (R => 0, G => 0, B => 0), 8642 => (R => 255, G => 0, B => 0), 8643 => (R => 255, G => 0, B => 0), 8644 => (R => 255, G => 0, B => 0), 8645 => (R => 255, G => 0, B => 0), 8646 => (R => 255, G => 0, B => 0), 8647 => (R => 255, G => 0, B => 0), 8648 => (R => 255, G => 0, B => 0), 8649 => (R => 255, G => 0, B => 0), 8650 => (R => 255, G => 0, B => 0), 8651 => (R => 255, G => 0, B => 0), 8652 => (R => 255, G => 0, B => 0), 8653 => (R => 255, G => 0, B => 0), 8654 => (R => 255, G => 0, B => 0), 8655 => (R => 255, G => 0, B => 0), 8656 => (R => 255, G => 0, B => 0), 8657 => (R => 255, G => 0, B => 0), 8658 => (R => 255, G => 0, B => 0), 8659 => (R => 255, G => 0, B => 0), 8660 => (R => 255, G => 0, B => 0), 8661 => (R => 255, G => 0, B => 0), 8662 => (R => 255, G => 0, B => 0), 8663 => (R => 255, G => 0, B => 0), 8664 => (R => 255, G => 0, B => 0), 8665 => (R => 255, G => 0, B => 0), 8666 => (R => 255, G => 0, B => 0), 8667 => (R => 255, G => 0, B => 0), 8668 => (R => 255, G => 0, B => 0), 8669 => (R => 255, G => 0, B => 0), 8670 => (R => 255, G => 0, B => 0), 8671 => (R => 255, G => 0, B => 0), 8672 => (R => 255, G => 0, B => 0), 8673 => (R => 255, G => 0, B => 0), 8674 => (R => 255, G => 0, B => 0), 8675 => (R => 255, G => 0, B => 0), 8676 => (R => 255, G => 0, B => 0), 8677 => (R => 255, G => 0, B => 0), 8678 => (R => 255, G => 0, B => 0), 8679 => (R => 255, G => 0, B => 0), 8680 => (R => 255, G => 0, B => 0), 8681 => (R => 255, G => 0, B => 0), 8682 => (R => 255, G => 0, B => 0), 8683 => (R => 255, G => 0, B => 0), 8684 => (R => 255, G => 0, B => 0), 8685 => (R => 255, G => 0, B => 0), 8686 => (R => 255, G => 0, B => 0), 8687 => (R => 255, G => 0, B => 0), 8688 => (R => 255, G => 0, B => 0), 8689 => (R => 255, G => 0, B => 0), 8690 => (R => 255, G => 0, B => 0), 8691 => (R => 255, G => 0, B => 0), 8692 => (R => 255, G => 0, B => 0), 8693 => (R => 255, G => 0, B => 0), 8694 => (R => 255, G => 0, B => 0), 8695 => (R => 255, G => 0, B => 0), 8696 => (R => 255, G => 0, B => 0), 8697 => (R => 255, G => 0, B => 0), 8698 => (R => 255, G => 0, B => 0), 8699 => (R => 255, G => 0, B => 0), 8700 => (R => 255, G => 0, B => 0), 8701 => (R => 255, G => 0, B => 0), 8702 => (R => 255, G => 0, B => 0), 8703 => (R => 255, G => 0, B => 0), 8704 => (R => 255, G => 0, B => 0), 8705 => (R => 255, G => 0, B => 0), 8706 => (R => 255, G => 0, B => 0), 8707 => (R => 255, G => 0, B => 0), 8708 => (R => 255, G => 0, B => 0), 8709 => (R => 255, G => 0, B => 0), 8710 => (R => 255, G => 0, B => 0), 8711 => (R => 255, G => 0, B => 0), 8712 => (R => 255, G => 0, B => 0), 8713 => (R => 255, G => 0, B => 0), 8714 => (R => 255, G => 0, B => 0), 8715 => (R => 255, G => 0, B => 0), 8716 => (R => 255, G => 0, B => 0), 8717 => (R => 255, G => 0, B => 0), 8718 => (R => 255, G => 0, B => 0), 8719 => (R => 255, G => 0, B => 0), 8720 => (R => 255, G => 0, B => 0), 8721 => (R => 255, G => 0, B => 0), 8722 => (R => 255, G => 0, B => 0), 8723 => (R => 255, G => 0, B => 0), 8724 => (R => 255, G => 0, B => 0), 8725 => (R => 255, G => 0, B => 0), 8726 => (R => 255, G => 0, B => 0), 8727 => (R => 255, G => 0, B => 0), 8728 => (R => 255, G => 0, B => 0), 8729 => (R => 255, G => 0, B => 0), 8730 => (R => 255, G => 0, B => 0), 8731 => (R => 255, G => 0, B => 0), 8732 => (R => 255, G => 0, B => 0), 8733 => (R => 255, G => 0, B => 0), 8734 => (R => 255, G => 0, B => 0), 8735 => (R => 255, G => 0, B => 0), 8736 => (R => 255, G => 0, B => 0), 8737 => (R => 255, G => 0, B => 0), 8738 => (R => 255, G => 0, B => 0), 8739 => (R => 255, G => 0, B => 0), 8740 => (R => 255, G => 0, B => 0), 8741 => (R => 255, G => 0, B => 0), 8742 => (R => 255, G => 0, B => 0), 8743 => (R => 255, G => 0, B => 0), 8744 => (R => 255, G => 0, B => 0), 8745 => (R => 255, G => 0, B => 0), 8746 => (R => 255, G => 0, B => 0), 8747 => (R => 255, G => 0, B => 0), 8748 => (R => 255, G => 0, B => 0), 8749 => (R => 255, G => 0, B => 0), 8750 => (R => 255, G => 0, B => 0), 8751 => (R => 255, G => 0, B => 0), 8752 => (R => 255, G => 0, B => 0), 8753 => (R => 255, G => 0, B => 0), 8754 => (R => 255, G => 0, B => 0), 8755 => (R => 255, G => 0, B => 0), 8756 => (R => 255, G => 0, B => 0), 8757 => (R => 255, G => 0, B => 0), 8758 => (R => 255, G => 0, B => 0), 8759 => (R => 0, G => 0, B => 0), 8760 => (R => 0, G => 0, B => 0), 8761 => (R => 0, G => 0, B => 0), 8762 => (R => 0, G => 0, B => 0), 8763 => (R => 0, G => 0, B => 0), 8764 => (R => 0, G => 0, B => 0), 8765 => (R => 0, G => 0, B => 0), 8766 => (R => 0, G => 0, B => 0), 8767 => (R => 0, G => 0, B => 0), 8768 => (R => 0, G => 0, B => 0), 8769 => (R => 0, G => 0, B => 0), 8770 => (R => 0, G => 0, B => 0), 8771 => (R => 0, G => 0, B => 0), 8772 => (R => 0, G => 0, B => 0), 8773 => (R => 0, G => 0, B => 0), 8774 => (R => 0, G => 0, B => 0), 8775 => (R => 0, G => 0, B => 0), 8776 => (R => 0, G => 0, B => 0), 8777 => (R => 0, G => 0, B => 0), 8778 => (R => 0, G => 0, B => 0), 8779 => (R => 0, G => 0, B => 0), 8780 => (R => 0, G => 0, B => 0), 8781 => (R => 0, G => 0, B => 0), 8782 => (R => 0, G => 0, B => 0), 8783 => (R => 0, G => 0, B => 0), 8784 => (R => 0, G => 0, B => 0), 8785 => (R => 0, G => 0, B => 0), 8786 => (R => 0, G => 0, B => 0), 8787 => (R => 0, G => 0, B => 0), 8788 => (R => 0, G => 0, B => 0), 8789 => (R => 0, G => 0, B => 0), 8790 => (R => 0, G => 0, B => 0), 8791 => (R => 0, G => 0, B => 0), 8792 => (R => 0, G => 0, B => 0), 8793 => (R => 0, G => 0, B => 0), 8794 => (R => 0, G => 0, B => 0), 8795 => (R => 0, G => 0, B => 0), 8796 => (R => 0, G => 0, B => 0), 8797 => (R => 0, G => 0, B => 0), 8798 => (R => 0, G => 0, B => 0), 8799 => (R => 0, G => 0, B => 0), 8800 => (R => 0, G => 0, B => 0), 8801 => (R => 0, G => 0, B => 0), 8802 => (R => 0, G => 0, B => 0), 8803 => (R => 0, G => 0, B => 0), 8804 => (R => 0, G => 0, B => 0), 8805 => (R => 0, G => 0, B => 0), 8806 => (R => 0, G => 0, B => 0), 8807 => (R => 0, G => 0, B => 0), 8808 => (R => 0, G => 0, B => 0), 8809 => (R => 0, G => 0, B => 0), 8810 => (R => 0, G => 0, B => 0), 8811 => (R => 0, G => 0, B => 0), 8812 => (R => 0, G => 0, B => 0), 8813 => (R => 0, G => 0, B => 0), 8814 => (R => 0, G => 0, B => 0), 8815 => (R => 0, G => 0, B => 0), 8816 => (R => 0, G => 0, B => 0), 8817 => (R => 0, G => 0, B => 0), 8818 => (R => 0, G => 0, B => 0), 8819 => (R => 0, G => 0, B => 0), 8820 => (R => 0, G => 0, B => 0), 8821 => (R => 0, G => 0, B => 0), 8822 => (R => 0, G => 0, B => 0), 8823 => (R => 0, G => 0, B => 0), 8824 => (R => 0, G => 0, B => 0), 8825 => (R => 0, G => 0, B => 0), 8826 => (R => 0, G => 0, B => 0), 8827 => (R => 0, G => 0, B => 0), 8828 => (R => 0, G => 0, B => 0), 8829 => (R => 0, G => 0, B => 0), 8830 => (R => 0, G => 0, B => 0), 8831 => (R => 0, G => 0, B => 0), 8832 => (R => 0, G => 0, B => 0), 8833 => (R => 0, G => 0, B => 0), 8834 => (R => 0, G => 0, B => 0), 8835 => (R => 0, G => 0, B => 0), 8836 => (R => 0, G => 0, B => 0), 8837 => (R => 0, G => 0, B => 0), 8838 => (R => 0, G => 0, B => 0), 8839 => (R => 0, G => 0, B => 0), 8840 => (R => 0, G => 0, B => 0), 8841 => (R => 0, G => 0, B => 0), 8842 => (R => 0, G => 0, B => 0), 8843 => (R => 255, G => 0, B => 0), 8844 => (R => 255, G => 0, B => 0), 8845 => (R => 255, G => 0, B => 0), 8846 => (R => 255, G => 0, B => 0), 8847 => (R => 255, G => 0, B => 0), 8848 => (R => 255, G => 0, B => 0), 8849 => (R => 255, G => 0, B => 0), 8850 => (R => 255, G => 0, B => 0), 8851 => (R => 255, G => 0, B => 0), 8852 => (R => 255, G => 0, B => 0), 8853 => (R => 255, G => 0, B => 0), 8854 => (R => 255, G => 0, B => 0), 8855 => (R => 255, G => 0, B => 0), 8856 => (R => 255, G => 0, B => 0), 8857 => (R => 255, G => 0, B => 0), 8858 => (R => 255, G => 0, B => 0), 8859 => (R => 255, G => 0, B => 0), 8860 => (R => 255, G => 0, B => 0), 8861 => (R => 255, G => 0, B => 0), 8862 => (R => 255, G => 0, B => 0), 8863 => (R => 255, G => 0, B => 0), 8864 => (R => 255, G => 0, B => 0), 8865 => (R => 255, G => 0, B => 0), 8866 => (R => 255, G => 0, B => 0), 8867 => (R => 255, G => 0, B => 0), 8868 => (R => 255, G => 0, B => 0), 8869 => (R => 255, G => 0, B => 0), 8870 => (R => 255, G => 0, B => 0), 8871 => (R => 255, G => 0, B => 0), 8872 => (R => 255, G => 0, B => 0), 8873 => (R => 255, G => 0, B => 0), 8874 => (R => 255, G => 0, B => 0), 8875 => (R => 255, G => 0, B => 0), 8876 => (R => 255, G => 0, B => 0), 8877 => (R => 255, G => 0, B => 0), 8878 => (R => 255, G => 0, B => 0), 8879 => (R => 255, G => 0, B => 0), 8880 => (R => 255, G => 0, B => 0), 8881 => (R => 255, G => 0, B => 0), 8882 => (R => 255, G => 0, B => 0), 8883 => (R => 255, G => 0, B => 0), 8884 => (R => 255, G => 0, B => 0), 8885 => (R => 255, G => 0, B => 0), 8886 => (R => 255, G => 0, B => 0), 8887 => (R => 255, G => 0, B => 0), 8888 => (R => 255, G => 0, B => 0), 8889 => (R => 255, G => 0, B => 0), 8890 => (R => 255, G => 0, B => 0), 8891 => (R => 255, G => 0, B => 0), 8892 => (R => 255, G => 0, B => 0), 8893 => (R => 255, G => 0, B => 0), 8894 => (R => 255, G => 0, B => 0), 8895 => (R => 255, G => 0, B => 0), 8896 => (R => 255, G => 0, B => 0), 8897 => (R => 255, G => 0, B => 0), 8898 => (R => 255, G => 0, B => 0), 8899 => (R => 255, G => 0, B => 0), 8900 => (R => 255, G => 0, B => 0), 8901 => (R => 255, G => 0, B => 0), 8902 => (R => 255, G => 0, B => 0), 8903 => (R => 255, G => 0, B => 0), 8904 => (R => 255, G => 0, B => 0), 8905 => (R => 255, G => 0, B => 0), 8906 => (R => 255, G => 0, B => 0), 8907 => (R => 255, G => 0, B => 0), 8908 => (R => 255, G => 0, B => 0), 8909 => (R => 255, G => 0, B => 0), 8910 => (R => 255, G => 0, B => 0), 8911 => (R => 255, G => 0, B => 0), 8912 => (R => 255, G => 0, B => 0), 8913 => (R => 255, G => 0, B => 0), 8914 => (R => 255, G => 0, B => 0), 8915 => (R => 255, G => 0, B => 0), 8916 => (R => 255, G => 0, B => 0), 8917 => (R => 255, G => 0, B => 0), 8918 => (R => 255, G => 0, B => 0), 8919 => (R => 255, G => 0, B => 0), 8920 => (R => 255, G => 0, B => 0), 8921 => (R => 255, G => 0, B => 0), 8922 => (R => 255, G => 0, B => 0), 8923 => (R => 255, G => 0, B => 0), 8924 => (R => 255, G => 0, B => 0), 8925 => (R => 255, G => 0, B => 0), 8926 => (R => 255, G => 0, B => 0), 8927 => (R => 255, G => 0, B => 0), 8928 => (R => 255, G => 0, B => 0), 8929 => (R => 255, G => 0, B => 0), 8930 => (R => 255, G => 0, B => 0), 8931 => (R => 255, G => 0, B => 0), 8932 => (R => 255, G => 0, B => 0), 8933 => (R => 255, G => 0, B => 0), 8934 => (R => 255, G => 0, B => 0), 8935 => (R => 255, G => 0, B => 0), 8936 => (R => 255, G => 0, B => 0), 8937 => (R => 255, G => 0, B => 0), 8938 => (R => 255, G => 0, B => 0), 8939 => (R => 255, G => 0, B => 0), 8940 => (R => 255, G => 0, B => 0), 8941 => (R => 255, G => 0, B => 0), 8942 => (R => 255, G => 0, B => 0), 8943 => (R => 255, G => 0, B => 0), 8944 => (R => 255, G => 0, B => 0), 8945 => (R => 255, G => 0, B => 0), 8946 => (R => 255, G => 0, B => 0), 8947 => (R => 255, G => 0, B => 0), 8948 => (R => 255, G => 0, B => 0), 8949 => (R => 255, G => 0, B => 0), 8950 => (R => 255, G => 0, B => 0), 8951 => (R => 255, G => 0, B => 0), 8952 => (R => 255, G => 0, B => 0), 8953 => (R => 255, G => 0, B => 0), 8954 => (R => 255, G => 0, B => 0), 8955 => (R => 255, G => 0, B => 0), 8956 => (R => 255, G => 0, B => 0), 8957 => (R => 255, G => 0, B => 0), 8958 => (R => 0, G => 0, B => 0), 8959 => (R => 0, G => 0, B => 0), 8960 => (R => 0, G => 0, B => 0), 8961 => (R => 0, G => 0, B => 0), 8962 => (R => 0, G => 0, B => 0), 8963 => (R => 0, G => 0, B => 0), 8964 => (R => 0, G => 0, B => 0), 8965 => (R => 0, G => 0, B => 0), 8966 => (R => 0, G => 0, B => 0), 8967 => (R => 0, G => 0, B => 0), 8968 => (R => 0, G => 0, B => 0), 8969 => (R => 0, G => 0, B => 0), 8970 => (R => 0, G => 0, B => 0), 8971 => (R => 0, G => 0, B => 0), 8972 => (R => 0, G => 0, B => 0), 8973 => (R => 0, G => 0, B => 0), 8974 => (R => 0, G => 0, B => 0), 8975 => (R => 0, G => 0, B => 0), 8976 => (R => 0, G => 0, B => 0), 8977 => (R => 0, G => 0, B => 0), 8978 => (R => 0, G => 0, B => 0), 8979 => (R => 0, G => 0, B => 0), 8980 => (R => 0, G => 0, B => 0), 8981 => (R => 0, G => 0, B => 0), 8982 => (R => 0, G => 0, B => 0), 8983 => (R => 0, G => 0, B => 0), 8984 => (R => 0, G => 0, B => 0), 8985 => (R => 0, G => 0, B => 0), 8986 => (R => 0, G => 0, B => 0), 8987 => (R => 0, G => 0, B => 0), 8988 => (R => 0, G => 0, B => 0), 8989 => (R => 0, G => 0, B => 0), 8990 => (R => 0, G => 0, B => 0), 8991 => (R => 0, G => 0, B => 0), 8992 => (R => 0, G => 0, B => 0), 8993 => (R => 0, G => 0, B => 0), 8994 => (R => 0, G => 0, B => 0), 8995 => (R => 0, G => 0, B => 0), 8996 => (R => 0, G => 0, B => 0), 8997 => (R => 0, G => 0, B => 0), 8998 => (R => 0, G => 0, B => 0), 8999 => (R => 0, G => 0, B => 0), 9000 => (R => 0, G => 0, B => 0), 9001 => (R => 0, G => 0, B => 0), 9002 => (R => 0, G => 0, B => 0), 9003 => (R => 0, G => 0, B => 0), 9004 => (R => 0, G => 0, B => 0), 9005 => (R => 0, G => 0, B => 0), 9006 => (R => 0, G => 0, B => 0), 9007 => (R => 0, G => 0, B => 0), 9008 => (R => 0, G => 0, B => 0), 9009 => (R => 0, G => 0, B => 0), 9010 => (R => 0, G => 0, B => 0), 9011 => (R => 0, G => 0, B => 0), 9012 => (R => 0, G => 0, B => 0), 9013 => (R => 0, G => 0, B => 0), 9014 => (R => 0, G => 0, B => 0), 9015 => (R => 0, G => 0, B => 0), 9016 => (R => 0, G => 0, B => 0), 9017 => (R => 0, G => 0, B => 0), 9018 => (R => 0, G => 0, B => 0), 9019 => (R => 0, G => 0, B => 0), 9020 => (R => 0, G => 0, B => 0), 9021 => (R => 0, G => 0, B => 0), 9022 => (R => 0, G => 0, B => 0), 9023 => (R => 0, G => 0, B => 0), 9024 => (R => 0, G => 0, B => 0), 9025 => (R => 0, G => 0, B => 0), 9026 => (R => 0, G => 0, B => 0), 9027 => (R => 0, G => 0, B => 0), 9028 => (R => 0, G => 0, B => 0), 9029 => (R => 0, G => 0, B => 0), 9030 => (R => 0, G => 0, B => 0), 9031 => (R => 0, G => 0, B => 0), 9032 => (R => 0, G => 0, B => 0), 9033 => (R => 0, G => 0, B => 0), 9034 => (R => 0, G => 0, B => 0), 9035 => (R => 0, G => 0, B => 0), 9036 => (R => 0, G => 0, B => 0), 9037 => (R => 0, G => 0, B => 0), 9038 => (R => 0, G => 0, B => 0), 9039 => (R => 0, G => 0, B => 0), 9040 => (R => 0, G => 0, B => 0), 9041 => (R => 0, G => 0, B => 0), 9042 => (R => 0, G => 0, B => 0), 9043 => (R => 0, G => 0, B => 0), 9044 => (R => 255, G => 0, B => 0), 9045 => (R => 255, G => 0, B => 0), 9046 => (R => 255, G => 0, B => 0), 9047 => (R => 255, G => 0, B => 0), 9048 => (R => 255, G => 0, B => 0), 9049 => (R => 255, G => 0, B => 0), 9050 => (R => 255, G => 0, B => 0), 9051 => (R => 255, G => 0, B => 0), 9052 => (R => 255, G => 0, B => 0), 9053 => (R => 255, G => 0, B => 0), 9054 => (R => 255, G => 0, B => 0), 9055 => (R => 255, G => 0, B => 0), 9056 => (R => 255, G => 0, B => 0), 9057 => (R => 255, G => 0, B => 0), 9058 => (R => 255, G => 0, B => 0), 9059 => (R => 255, G => 0, B => 0), 9060 => (R => 255, G => 0, B => 0), 9061 => (R => 255, G => 0, B => 0), 9062 => (R => 255, G => 0, B => 0), 9063 => (R => 255, G => 0, B => 0), 9064 => (R => 255, G => 0, B => 0), 9065 => (R => 255, G => 0, B => 0), 9066 => (R => 255, G => 0, B => 0), 9067 => (R => 255, G => 0, B => 0), 9068 => (R => 255, G => 0, B => 0), 9069 => (R => 255, G => 0, B => 0), 9070 => (R => 255, G => 0, B => 0), 9071 => (R => 255, G => 0, B => 0), 9072 => (R => 255, G => 0, B => 0), 9073 => (R => 255, G => 0, B => 0), 9074 => (R => 255, G => 0, B => 0), 9075 => (R => 255, G => 0, B => 0), 9076 => (R => 255, G => 0, B => 0), 9077 => (R => 255, G => 0, B => 0), 9078 => (R => 255, G => 0, B => 0), 9079 => (R => 255, G => 0, B => 0), 9080 => (R => 255, G => 0, B => 0), 9081 => (R => 255, G => 0, B => 0), 9082 => (R => 255, G => 0, B => 0), 9083 => (R => 255, G => 0, B => 0), 9084 => (R => 255, G => 0, B => 0), 9085 => (R => 255, G => 0, B => 0), 9086 => (R => 255, G => 0, B => 0), 9087 => (R => 255, G => 0, B => 0), 9088 => (R => 255, G => 0, B => 0), 9089 => (R => 255, G => 0, B => 0), 9090 => (R => 255, G => 0, B => 0), 9091 => (R => 255, G => 0, B => 0), 9092 => (R => 255, G => 0, B => 0), 9093 => (R => 255, G => 0, B => 0), 9094 => (R => 255, G => 0, B => 0), 9095 => (R => 255, G => 0, B => 0), 9096 => (R => 255, G => 0, B => 0), 9097 => (R => 255, G => 0, B => 0), 9098 => (R => 255, G => 0, B => 0), 9099 => (R => 255, G => 0, B => 0), 9100 => (R => 255, G => 0, B => 0), 9101 => (R => 255, G => 0, B => 0), 9102 => (R => 255, G => 0, B => 0), 9103 => (R => 255, G => 0, B => 0), 9104 => (R => 255, G => 0, B => 0), 9105 => (R => 255, G => 0, B => 0), 9106 => (R => 255, G => 0, B => 0), 9107 => (R => 255, G => 0, B => 0), 9108 => (R => 255, G => 0, B => 0), 9109 => (R => 255, G => 0, B => 0), 9110 => (R => 255, G => 0, B => 0), 9111 => (R => 255, G => 0, B => 0), 9112 => (R => 255, G => 0, B => 0), 9113 => (R => 255, G => 0, B => 0), 9114 => (R => 255, G => 0, B => 0), 9115 => (R => 255, G => 0, B => 0), 9116 => (R => 255, G => 0, B => 0), 9117 => (R => 255, G => 0, B => 0), 9118 => (R => 255, G => 0, B => 0), 9119 => (R => 255, G => 0, B => 0), 9120 => (R => 255, G => 0, B => 0), 9121 => (R => 255, G => 0, B => 0), 9122 => (R => 255, G => 0, B => 0), 9123 => (R => 255, G => 0, B => 0), 9124 => (R => 255, G => 0, B => 0), 9125 => (R => 255, G => 0, B => 0), 9126 => (R => 255, G => 0, B => 0), 9127 => (R => 255, G => 0, B => 0), 9128 => (R => 255, G => 0, B => 0), 9129 => (R => 255, G => 0, B => 0), 9130 => (R => 255, G => 0, B => 0), 9131 => (R => 255, G => 0, B => 0), 9132 => (R => 255, G => 0, B => 0), 9133 => (R => 255, G => 0, B => 0), 9134 => (R => 255, G => 0, B => 0), 9135 => (R => 255, G => 0, B => 0), 9136 => (R => 255, G => 0, B => 0), 9137 => (R => 255, G => 0, B => 0), 9138 => (R => 255, G => 0, B => 0), 9139 => (R => 255, G => 0, B => 0), 9140 => (R => 255, G => 0, B => 0), 9141 => (R => 255, G => 0, B => 0), 9142 => (R => 255, G => 0, B => 0), 9143 => (R => 255, G => 0, B => 0), 9144 => (R => 255, G => 0, B => 0), 9145 => (R => 255, G => 0, B => 0), 9146 => (R => 255, G => 0, B => 0), 9147 => (R => 255, G => 0, B => 0), 9148 => (R => 255, G => 0, B => 0), 9149 => (R => 255, G => 0, B => 0), 9150 => (R => 255, G => 0, B => 0), 9151 => (R => 255, G => 0, B => 0), 9152 => (R => 255, G => 0, B => 0), 9153 => (R => 255, G => 0, B => 0), 9154 => (R => 255, G => 0, B => 0), 9155 => (R => 255, G => 0, B => 0), 9156 => (R => 255, G => 0, B => 0), 9157 => (R => 0, G => 0, B => 0), 9158 => (R => 0, G => 0, B => 0), 9159 => (R => 0, G => 0, B => 0), 9160 => (R => 0, G => 0, B => 0), 9161 => (R => 0, G => 0, B => 0), 9162 => (R => 0, G => 0, B => 0), 9163 => (R => 0, G => 0, B => 0), 9164 => (R => 0, G => 0, B => 0), 9165 => (R => 0, G => 0, B => 0), 9166 => (R => 0, G => 0, B => 0), 9167 => (R => 0, G => 0, B => 0), 9168 => (R => 0, G => 0, B => 0), 9169 => (R => 0, G => 0, B => 0), 9170 => (R => 0, G => 0, B => 0), 9171 => (R => 0, G => 0, B => 0), 9172 => (R => 0, G => 0, B => 0), 9173 => (R => 0, G => 0, B => 0), 9174 => (R => 0, G => 0, B => 0), 9175 => (R => 0, G => 0, B => 0), 9176 => (R => 0, G => 0, B => 0), 9177 => (R => 0, G => 0, B => 0), 9178 => (R => 0, G => 0, B => 0), 9179 => (R => 0, G => 0, B => 0), 9180 => (R => 0, G => 0, B => 0), 9181 => (R => 0, G => 0, B => 0), 9182 => (R => 0, G => 0, B => 0), 9183 => (R => 0, G => 0, B => 0), 9184 => (R => 0, G => 0, B => 0), 9185 => (R => 0, G => 0, B => 0), 9186 => (R => 0, G => 0, B => 0), 9187 => (R => 0, G => 0, B => 0), 9188 => (R => 0, G => 0, B => 0), 9189 => (R => 0, G => 0, B => 0), 9190 => (R => 0, G => 0, B => 0), 9191 => (R => 0, G => 0, B => 0), 9192 => (R => 0, G => 0, B => 0), 9193 => (R => 0, G => 0, B => 0), 9194 => (R => 0, G => 0, B => 0), 9195 => (R => 0, G => 0, B => 0), 9196 => (R => 0, G => 0, B => 0), 9197 => (R => 0, G => 0, B => 0), 9198 => (R => 0, G => 0, B => 0), 9199 => (R => 0, G => 0, B => 0), 9200 => (R => 0, G => 0, B => 0), 9201 => (R => 0, G => 0, B => 0), 9202 => (R => 0, G => 0, B => 0), 9203 => (R => 0, G => 0, B => 0), 9204 => (R => 0, G => 0, B => 0), 9205 => (R => 0, G => 0, B => 0), 9206 => (R => 0, G => 0, B => 0), 9207 => (R => 0, G => 0, B => 0), 9208 => (R => 0, G => 0, B => 0), 9209 => (R => 0, G => 0, B => 0), 9210 => (R => 0, G => 0, B => 0), 9211 => (R => 0, G => 0, B => 0), 9212 => (R => 0, G => 0, B => 0), 9213 => (R => 0, G => 0, B => 0), 9214 => (R => 0, G => 0, B => 0), 9215 => (R => 0, G => 0, B => 0), 9216 => (R => 0, G => 0, B => 0), 9217 => (R => 0, G => 0, B => 0), 9218 => (R => 0, G => 0, B => 0), 9219 => (R => 0, G => 0, B => 0), 9220 => (R => 0, G => 0, B => 0), 9221 => (R => 0, G => 0, B => 0), 9222 => (R => 0, G => 0, B => 0), 9223 => (R => 0, G => 0, B => 0), 9224 => (R => 0, G => 0, B => 0), 9225 => (R => 0, G => 0, B => 0), 9226 => (R => 0, G => 0, B => 0), 9227 => (R => 0, G => 0, B => 0), 9228 => (R => 0, G => 0, B => 0), 9229 => (R => 0, G => 0, B => 0), 9230 => (R => 0, G => 0, B => 0), 9231 => (R => 0, G => 0, B => 0), 9232 => (R => 0, G => 0, B => 0), 9233 => (R => 0, G => 0, B => 0), 9234 => (R => 0, G => 0, B => 0), 9235 => (R => 0, G => 0, B => 0), 9236 => (R => 0, G => 0, B => 0), 9237 => (R => 0, G => 0, B => 0), 9238 => (R => 0, G => 0, B => 0), 9239 => (R => 0, G => 0, B => 0), 9240 => (R => 0, G => 0, B => 0), 9241 => (R => 0, G => 0, B => 0), 9242 => (R => 0, G => 0, B => 0), 9243 => (R => 0, G => 0, B => 0), 9244 => (R => 0, G => 0, B => 0), 9245 => (R => 255, G => 0, B => 0), 9246 => (R => 255, G => 0, B => 0), 9247 => (R => 255, G => 0, B => 0), 9248 => (R => 255, G => 0, B => 0), 9249 => (R => 255, G => 0, B => 0), 9250 => (R => 255, G => 0, B => 0), 9251 => (R => 255, G => 0, B => 0), 9252 => (R => 255, G => 0, B => 0), 9253 => (R => 255, G => 0, B => 0), 9254 => (R => 255, G => 0, B => 0), 9255 => (R => 255, G => 0, B => 0), 9256 => (R => 255, G => 0, B => 0), 9257 => (R => 255, G => 0, B => 0), 9258 => (R => 255, G => 0, B => 0), 9259 => (R => 255, G => 0, B => 0), 9260 => (R => 255, G => 0, B => 0), 9261 => (R => 255, G => 0, B => 0), 9262 => (R => 255, G => 0, B => 0), 9263 => (R => 255, G => 0, B => 0), 9264 => (R => 255, G => 0, B => 0), 9265 => (R => 255, G => 0, B => 0), 9266 => (R => 255, G => 0, B => 0), 9267 => (R => 255, G => 0, B => 0), 9268 => (R => 255, G => 0, B => 0), 9269 => (R => 255, G => 0, B => 0), 9270 => (R => 255, G => 0, B => 0), 9271 => (R => 255, G => 0, B => 0), 9272 => (R => 255, G => 0, B => 0), 9273 => (R => 255, G => 0, B => 0), 9274 => (R => 255, G => 0, B => 0), 9275 => (R => 255, G => 0, B => 0), 9276 => (R => 255, G => 0, B => 0), 9277 => (R => 255, G => 0, B => 0), 9278 => (R => 255, G => 0, B => 0), 9279 => (R => 255, G => 0, B => 0), 9280 => (R => 255, G => 0, B => 0), 9281 => (R => 255, G => 0, B => 0), 9282 => (R => 255, G => 0, B => 0), 9283 => (R => 255, G => 0, B => 0), 9284 => (R => 255, G => 0, B => 0), 9285 => (R => 255, G => 0, B => 0), 9286 => (R => 255, G => 0, B => 0), 9287 => (R => 255, G => 0, B => 0), 9288 => (R => 255, G => 0, B => 0), 9289 => (R => 255, G => 0, B => 0), 9290 => (R => 255, G => 0, B => 0), 9291 => (R => 255, G => 0, B => 0), 9292 => (R => 255, G => 0, B => 0), 9293 => (R => 255, G => 0, B => 0), 9294 => (R => 255, G => 0, B => 0), 9295 => (R => 255, G => 0, B => 0), 9296 => (R => 255, G => 0, B => 0), 9297 => (R => 255, G => 0, B => 0), 9298 => (R => 255, G => 0, B => 0), 9299 => (R => 255, G => 0, B => 0), 9300 => (R => 255, G => 0, B => 0), 9301 => (R => 255, G => 0, B => 0), 9302 => (R => 255, G => 0, B => 0), 9303 => (R => 255, G => 0, B => 0), 9304 => (R => 255, G => 0, B => 0), 9305 => (R => 255, G => 0, B => 0), 9306 => (R => 255, G => 0, B => 0), 9307 => (R => 255, G => 0, B => 0), 9308 => (R => 255, G => 0, B => 0), 9309 => (R => 255, G => 0, B => 0), 9310 => (R => 255, G => 0, B => 0), 9311 => (R => 255, G => 0, B => 0), 9312 => (R => 255, G => 0, B => 0), 9313 => (R => 255, G => 0, B => 0), 9314 => (R => 255, G => 0, B => 0), 9315 => (R => 255, G => 0, B => 0), 9316 => (R => 255, G => 0, B => 0), 9317 => (R => 255, G => 0, B => 0), 9318 => (R => 255, G => 0, B => 0), 9319 => (R => 255, G => 0, B => 0), 9320 => (R => 255, G => 0, B => 0), 9321 => (R => 255, G => 0, B => 0), 9322 => (R => 255, G => 0, B => 0), 9323 => (R => 255, G => 0, B => 0), 9324 => (R => 255, G => 0, B => 0), 9325 => (R => 255, G => 0, B => 0), 9326 => (R => 255, G => 0, B => 0), 9327 => (R => 255, G => 0, B => 0), 9328 => (R => 255, G => 0, B => 0), 9329 => (R => 255, G => 0, B => 0), 9330 => (R => 255, G => 0, B => 0), 9331 => (R => 255, G => 0, B => 0), 9332 => (R => 255, G => 0, B => 0), 9333 => (R => 255, G => 0, B => 0), 9334 => (R => 255, G => 0, B => 0), 9335 => (R => 255, G => 0, B => 0), 9336 => (R => 255, G => 0, B => 0), 9337 => (R => 255, G => 0, B => 0), 9338 => (R => 255, G => 0, B => 0), 9339 => (R => 255, G => 0, B => 0), 9340 => (R => 255, G => 0, B => 0), 9341 => (R => 255, G => 0, B => 0), 9342 => (R => 255, G => 0, B => 0), 9343 => (R => 255, G => 0, B => 0), 9344 => (R => 255, G => 0, B => 0), 9345 => (R => 255, G => 0, B => 0), 9346 => (R => 255, G => 0, B => 0), 9347 => (R => 255, G => 0, B => 0), 9348 => (R => 255, G => 0, B => 0), 9349 => (R => 255, G => 0, B => 0), 9350 => (R => 255, G => 0, B => 0), 9351 => (R => 255, G => 0, B => 0), 9352 => (R => 255, G => 0, B => 0), 9353 => (R => 255, G => 0, B => 0), 9354 => (R => 255, G => 0, B => 0), 9355 => (R => 255, G => 0, B => 0), 9356 => (R => 0, G => 0, B => 0), 9357 => (R => 0, G => 0, B => 0), 9358 => (R => 0, G => 0, B => 0), 9359 => (R => 0, G => 0, B => 0), 9360 => (R => 0, G => 0, B => 0), 9361 => (R => 0, G => 0, B => 0), 9362 => (R => 0, G => 0, B => 0), 9363 => (R => 0, G => 0, B => 0), 9364 => (R => 0, G => 0, B => 0), 9365 => (R => 0, G => 0, B => 0), 9366 => (R => 0, G => 0, B => 0), 9367 => (R => 0, G => 0, B => 0), 9368 => (R => 0, G => 0, B => 0), 9369 => (R => 0, G => 0, B => 0), 9370 => (R => 0, G => 0, B => 0), 9371 => (R => 0, G => 0, B => 0), 9372 => (R => 0, G => 0, B => 0), 9373 => (R => 0, G => 0, B => 0), 9374 => (R => 0, G => 0, B => 0), 9375 => (R => 0, G => 0, B => 0), 9376 => (R => 0, G => 0, B => 0), 9377 => (R => 0, G => 0, B => 0), 9378 => (R => 0, G => 0, B => 0), 9379 => (R => 0, G => 0, B => 0), 9380 => (R => 0, G => 0, B => 0), 9381 => (R => 0, G => 0, B => 0), 9382 => (R => 0, G => 0, B => 0), 9383 => (R => 0, G => 0, B => 0), 9384 => (R => 0, G => 0, B => 0), 9385 => (R => 0, G => 0, B => 0), 9386 => (R => 0, G => 0, B => 0), 9387 => (R => 0, G => 0, B => 0), 9388 => (R => 0, G => 0, B => 0), 9389 => (R => 0, G => 0, B => 0), 9390 => (R => 0, G => 0, B => 0), 9391 => (R => 0, G => 0, B => 0), 9392 => (R => 0, G => 0, B => 0), 9393 => (R => 0, G => 0, B => 0), 9394 => (R => 0, G => 0, B => 0), 9395 => (R => 0, G => 0, B => 0), 9396 => (R => 0, G => 0, B => 0), 9397 => (R => 0, G => 0, B => 0), 9398 => (R => 0, G => 0, B => 0), 9399 => (R => 0, G => 0, B => 0), 9400 => (R => 0, G => 0, B => 0), 9401 => (R => 0, G => 0, B => 0), 9402 => (R => 0, G => 0, B => 0), 9403 => (R => 0, G => 0, B => 0), 9404 => (R => 0, G => 0, B => 0), 9405 => (R => 0, G => 0, B => 0), 9406 => (R => 0, G => 0, B => 0), 9407 => (R => 0, G => 0, B => 0), 9408 => (R => 0, G => 0, B => 0), 9409 => (R => 0, G => 0, B => 0), 9410 => (R => 0, G => 0, B => 0), 9411 => (R => 0, G => 0, B => 0), 9412 => (R => 0, G => 0, B => 0), 9413 => (R => 0, G => 0, B => 0), 9414 => (R => 0, G => 0, B => 0), 9415 => (R => 0, G => 0, B => 0), 9416 => (R => 0, G => 0, B => 0), 9417 => (R => 0, G => 0, B => 0), 9418 => (R => 0, G => 0, B => 0), 9419 => (R => 0, G => 0, B => 0), 9420 => (R => 0, G => 0, B => 0), 9421 => (R => 0, G => 0, B => 0), 9422 => (R => 0, G => 0, B => 0), 9423 => (R => 0, G => 0, B => 0), 9424 => (R => 0, G => 0, B => 0), 9425 => (R => 0, G => 0, B => 0), 9426 => (R => 0, G => 0, B => 0), 9427 => (R => 0, G => 0, B => 0), 9428 => (R => 0, G => 0, B => 0), 9429 => (R => 0, G => 0, B => 0), 9430 => (R => 0, G => 0, B => 0), 9431 => (R => 0, G => 0, B => 0), 9432 => (R => 0, G => 0, B => 0), 9433 => (R => 0, G => 0, B => 0), 9434 => (R => 0, G => 0, B => 0), 9435 => (R => 0, G => 0, B => 0), 9436 => (R => 0, G => 0, B => 0), 9437 => (R => 0, G => 0, B => 0), 9438 => (R => 0, G => 0, B => 0), 9439 => (R => 0, G => 0, B => 0), 9440 => (R => 0, G => 0, B => 0), 9441 => (R => 0, G => 0, B => 0), 9442 => (R => 0, G => 0, B => 0), 9443 => (R => 0, G => 0, B => 0), 9444 => (R => 0, G => 0, B => 0), 9445 => (R => 0, G => 0, B => 0), 9446 => (R => 255, G => 0, B => 0), 9447 => (R => 255, G => 0, B => 0), 9448 => (R => 255, G => 0, B => 0), 9449 => (R => 255, G => 0, B => 0), 9450 => (R => 255, G => 0, B => 0), 9451 => (R => 255, G => 0, B => 0), 9452 => (R => 255, G => 0, B => 0), 9453 => (R => 255, G => 0, B => 0), 9454 => (R => 255, G => 0, B => 0), 9455 => (R => 255, G => 0, B => 0), 9456 => (R => 255, G => 0, B => 0), 9457 => (R => 255, G => 0, B => 0), 9458 => (R => 255, G => 0, B => 0), 9459 => (R => 255, G => 0, B => 0), 9460 => (R => 255, G => 0, B => 0), 9461 => (R => 255, G => 0, B => 0), 9462 => (R => 255, G => 0, B => 0), 9463 => (R => 255, G => 0, B => 0), 9464 => (R => 255, G => 0, B => 0), 9465 => (R => 255, G => 0, B => 0), 9466 => (R => 255, G => 0, B => 0), 9467 => (R => 255, G => 0, B => 0), 9468 => (R => 255, G => 0, B => 0), 9469 => (R => 255, G => 0, B => 0), 9470 => (R => 255, G => 0, B => 0), 9471 => (R => 255, G => 0, B => 0), 9472 => (R => 255, G => 0, B => 0), 9473 => (R => 255, G => 0, B => 0), 9474 => (R => 255, G => 0, B => 0), 9475 => (R => 255, G => 0, B => 0), 9476 => (R => 255, G => 0, B => 0), 9477 => (R => 255, G => 0, B => 0), 9478 => (R => 255, G => 0, B => 0), 9479 => (R => 255, G => 0, B => 0), 9480 => (R => 255, G => 0, B => 0), 9481 => (R => 255, G => 0, B => 0), 9482 => (R => 255, G => 0, B => 0), 9483 => (R => 255, G => 0, B => 0), 9484 => (R => 255, G => 0, B => 0), 9485 => (R => 255, G => 0, B => 0), 9486 => (R => 255, G => 0, B => 0), 9487 => (R => 255, G => 0, B => 0), 9488 => (R => 255, G => 0, B => 0), 9489 => (R => 255, G => 0, B => 0), 9490 => (R => 255, G => 0, B => 0), 9491 => (R => 255, G => 0, B => 0), 9492 => (R => 255, G => 0, B => 0), 9493 => (R => 255, G => 0, B => 0), 9494 => (R => 255, G => 0, B => 0), 9495 => (R => 255, G => 0, B => 0), 9496 => (R => 255, G => 0, B => 0), 9497 => (R => 255, G => 0, B => 0), 9498 => (R => 255, G => 0, B => 0), 9499 => (R => 255, G => 0, B => 0), 9500 => (R => 255, G => 0, B => 0), 9501 => (R => 255, G => 0, B => 0), 9502 => (R => 255, G => 0, B => 0), 9503 => (R => 255, G => 0, B => 0), 9504 => (R => 255, G => 0, B => 0), 9505 => (R => 255, G => 0, B => 0), 9506 => (R => 255, G => 0, B => 0), 9507 => (R => 255, G => 0, B => 0), 9508 => (R => 255, G => 0, B => 0), 9509 => (R => 255, G => 0, B => 0), 9510 => (R => 255, G => 0, B => 0), 9511 => (R => 255, G => 0, B => 0), 9512 => (R => 255, G => 0, B => 0), 9513 => (R => 255, G => 0, B => 0), 9514 => (R => 255, G => 0, B => 0), 9515 => (R => 255, G => 0, B => 0), 9516 => (R => 255, G => 0, B => 0), 9517 => (R => 255, G => 0, B => 0), 9518 => (R => 255, G => 0, B => 0), 9519 => (R => 255, G => 0, B => 0), 9520 => (R => 255, G => 0, B => 0), 9521 => (R => 255, G => 0, B => 0), 9522 => (R => 255, G => 0, B => 0), 9523 => (R => 255, G => 0, B => 0), 9524 => (R => 255, G => 0, B => 0), 9525 => (R => 255, G => 0, B => 0), 9526 => (R => 255, G => 0, B => 0), 9527 => (R => 255, G => 0, B => 0), 9528 => (R => 255, G => 0, B => 0), 9529 => (R => 255, G => 0, B => 0), 9530 => (R => 255, G => 0, B => 0), 9531 => (R => 255, G => 0, B => 0), 9532 => (R => 255, G => 0, B => 0), 9533 => (R => 255, G => 0, B => 0), 9534 => (R => 255, G => 0, B => 0), 9535 => (R => 255, G => 0, B => 0), 9536 => (R => 255, G => 0, B => 0), 9537 => (R => 255, G => 0, B => 0), 9538 => (R => 255, G => 0, B => 0), 9539 => (R => 255, G => 0, B => 0), 9540 => (R => 255, G => 0, B => 0), 9541 => (R => 255, G => 0, B => 0), 9542 => (R => 255, G => 0, B => 0), 9543 => (R => 255, G => 0, B => 0), 9544 => (R => 255, G => 0, B => 0), 9545 => (R => 255, G => 0, B => 0), 9546 => (R => 255, G => 0, B => 0), 9547 => (R => 255, G => 0, B => 0), 9548 => (R => 255, G => 0, B => 0), 9549 => (R => 255, G => 0, B => 0), 9550 => (R => 255, G => 0, B => 0), 9551 => (R => 255, G => 0, B => 0), 9552 => (R => 255, G => 0, B => 0), 9553 => (R => 255, G => 0, B => 0), 9554 => (R => 255, G => 0, B => 0), 9555 => (R => 0, G => 0, B => 0), 9556 => (R => 0, G => 0, B => 0), 9557 => (R => 0, G => 0, B => 0), 9558 => (R => 0, G => 0, B => 0), 9559 => (R => 0, G => 0, B => 0), 9560 => (R => 0, G => 0, B => 0), 9561 => (R => 0, G => 0, B => 0), 9562 => (R => 0, G => 0, B => 0), 9563 => (R => 0, G => 0, B => 0), 9564 => (R => 0, G => 0, B => 0), 9565 => (R => 0, G => 0, B => 0), 9566 => (R => 0, G => 0, B => 0), 9567 => (R => 0, G => 0, B => 0), 9568 => (R => 0, G => 0, B => 0), 9569 => (R => 0, G => 0, B => 0), 9570 => (R => 0, G => 0, B => 0), 9571 => (R => 0, G => 0, B => 0), 9572 => (R => 0, G => 0, B => 0), 9573 => (R => 0, G => 0, B => 0), 9574 => (R => 0, G => 0, B => 0), 9575 => (R => 0, G => 0, B => 0), 9576 => (R => 0, G => 0, B => 0), 9577 => (R => 0, G => 0, B => 0), 9578 => (R => 0, G => 0, B => 0), 9579 => (R => 0, G => 0, B => 0), 9580 => (R => 0, G => 0, B => 0), 9581 => (R => 0, G => 0, B => 0), 9582 => (R => 0, G => 0, B => 0), 9583 => (R => 0, G => 0, B => 0), 9584 => (R => 0, G => 0, B => 0), 9585 => (R => 0, G => 0, B => 0), 9586 => (R => 0, G => 0, B => 0), 9587 => (R => 0, G => 0, B => 0), 9588 => (R => 0, G => 0, B => 0), 9589 => (R => 0, G => 0, B => 0), 9590 => (R => 0, G => 0, B => 0), 9591 => (R => 0, G => 0, B => 0), 9592 => (R => 0, G => 0, B => 0), 9593 => (R => 0, G => 0, B => 0), 9594 => (R => 0, G => 0, B => 0), 9595 => (R => 0, G => 0, B => 0), 9596 => (R => 0, G => 0, B => 0), 9597 => (R => 0, G => 0, B => 0), 9598 => (R => 0, G => 0, B => 0), 9599 => (R => 0, G => 0, B => 0), 9600 => (R => 0, G => 0, B => 0), 9601 => (R => 0, G => 0, B => 0), 9602 => (R => 0, G => 0, B => 0), 9603 => (R => 0, G => 0, B => 0), 9604 => (R => 0, G => 0, B => 0), 9605 => (R => 0, G => 0, B => 0), 9606 => (R => 0, G => 0, B => 0), 9607 => (R => 0, G => 0, B => 0), 9608 => (R => 0, G => 0, B => 0), 9609 => (R => 0, G => 0, B => 0), 9610 => (R => 0, G => 0, B => 0), 9611 => (R => 0, G => 0, B => 0), 9612 => (R => 0, G => 0, B => 0), 9613 => (R => 0, G => 0, B => 0), 9614 => (R => 0, G => 0, B => 0), 9615 => (R => 0, G => 0, B => 0), 9616 => (R => 0, G => 0, B => 0), 9617 => (R => 0, G => 0, B => 0), 9618 => (R => 0, G => 0, B => 0), 9619 => (R => 0, G => 0, B => 0), 9620 => (R => 0, G => 0, B => 0), 9621 => (R => 0, G => 0, B => 0), 9622 => (R => 0, G => 0, B => 0), 9623 => (R => 0, G => 0, B => 0), 9624 => (R => 0, G => 0, B => 0), 9625 => (R => 0, G => 0, B => 0), 9626 => (R => 0, G => 0, B => 0), 9627 => (R => 0, G => 0, B => 0), 9628 => (R => 0, G => 0, B => 0), 9629 => (R => 0, G => 0, B => 0), 9630 => (R => 0, G => 0, B => 0), 9631 => (R => 0, G => 0, B => 0), 9632 => (R => 0, G => 0, B => 0), 9633 => (R => 0, G => 0, B => 0), 9634 => (R => 0, G => 0, B => 0), 9635 => (R => 0, G => 0, B => 0), 9636 => (R => 0, G => 0, B => 0), 9637 => (R => 0, G => 0, B => 0), 9638 => (R => 0, G => 0, B => 0), 9639 => (R => 0, G => 0, B => 0), 9640 => (R => 0, G => 0, B => 0), 9641 => (R => 0, G => 0, B => 0), 9642 => (R => 0, G => 0, B => 0), 9643 => (R => 0, G => 0, B => 0), 9644 => (R => 0, G => 0, B => 0), 9645 => (R => 0, G => 0, B => 0), 9646 => (R => 0, G => 0, B => 0), 9647 => (R => 0, G => 0, B => 0), 9648 => (R => 255, G => 0, B => 0), 9649 => (R => 255, G => 0, B => 0), 9650 => (R => 255, G => 0, B => 0), 9651 => (R => 255, G => 0, B => 0), 9652 => (R => 255, G => 0, B => 0), 9653 => (R => 255, G => 0, B => 0), 9654 => (R => 255, G => 0, B => 0), 9655 => (R => 255, G => 0, B => 0), 9656 => (R => 255, G => 0, B => 0), 9657 => (R => 255, G => 0, B => 0), 9658 => (R => 255, G => 0, B => 0), 9659 => (R => 255, G => 0, B => 0), 9660 => (R => 255, G => 0, B => 0), 9661 => (R => 255, G => 0, B => 0), 9662 => (R => 255, G => 0, B => 0), 9663 => (R => 255, G => 0, B => 0), 9664 => (R => 255, G => 0, B => 0), 9665 => (R => 255, G => 0, B => 0), 9666 => (R => 255, G => 0, B => 0), 9667 => (R => 255, G => 0, B => 0), 9668 => (R => 255, G => 0, B => 0), 9669 => (R => 255, G => 0, B => 0), 9670 => (R => 255, G => 0, B => 0), 9671 => (R => 255, G => 0, B => 0), 9672 => (R => 255, G => 0, B => 0), 9673 => (R => 255, G => 0, B => 0), 9674 => (R => 255, G => 0, B => 0), 9675 => (R => 255, G => 0, B => 0), 9676 => (R => 255, G => 0, B => 0), 9677 => (R => 255, G => 0, B => 0), 9678 => (R => 255, G => 0, B => 0), 9679 => (R => 255, G => 0, B => 0), 9680 => (R => 255, G => 0, B => 0), 9681 => (R => 255, G => 0, B => 0), 9682 => (R => 255, G => 0, B => 0), 9683 => (R => 255, G => 0, B => 0), 9684 => (R => 255, G => 0, B => 0), 9685 => (R => 255, G => 0, B => 0), 9686 => (R => 255, G => 0, B => 0), 9687 => (R => 255, G => 0, B => 0), 9688 => (R => 255, G => 0, B => 0), 9689 => (R => 255, G => 0, B => 0), 9690 => (R => 255, G => 0, B => 0), 9691 => (R => 255, G => 0, B => 0), 9692 => (R => 255, G => 0, B => 0), 9693 => (R => 255, G => 0, B => 0), 9694 => (R => 255, G => 0, B => 0), 9695 => (R => 255, G => 0, B => 0), 9696 => (R => 255, G => 0, B => 0), 9697 => (R => 255, G => 0, B => 0), 9698 => (R => 255, G => 0, B => 0), 9699 => (R => 255, G => 0, B => 0), 9700 => (R => 255, G => 0, B => 0), 9701 => (R => 255, G => 0, B => 0), 9702 => (R => 255, G => 0, B => 0), 9703 => (R => 255, G => 0, B => 0), 9704 => (R => 255, G => 0, B => 0), 9705 => (R => 255, G => 0, B => 0), 9706 => (R => 255, G => 0, B => 0), 9707 => (R => 255, G => 0, B => 0), 9708 => (R => 255, G => 0, B => 0), 9709 => (R => 255, G => 0, B => 0), 9710 => (R => 255, G => 0, B => 0), 9711 => (R => 255, G => 0, B => 0), 9712 => (R => 255, G => 0, B => 0), 9713 => (R => 255, G => 0, B => 0), 9714 => (R => 255, G => 0, B => 0), 9715 => (R => 255, G => 0, B => 0), 9716 => (R => 255, G => 0, B => 0), 9717 => (R => 255, G => 0, B => 0), 9718 => (R => 255, G => 0, B => 0), 9719 => (R => 255, G => 0, B => 0), 9720 => (R => 255, G => 0, B => 0), 9721 => (R => 255, G => 0, B => 0), 9722 => (R => 255, G => 0, B => 0), 9723 => (R => 255, G => 0, B => 0), 9724 => (R => 255, G => 0, B => 0), 9725 => (R => 255, G => 0, B => 0), 9726 => (R => 255, G => 0, B => 0), 9727 => (R => 255, G => 0, B => 0), 9728 => (R => 255, G => 0, B => 0), 9729 => (R => 255, G => 0, B => 0), 9730 => (R => 255, G => 0, B => 0), 9731 => (R => 255, G => 0, B => 0), 9732 => (R => 255, G => 0, B => 0), 9733 => (R => 255, G => 0, B => 0), 9734 => (R => 255, G => 0, B => 0), 9735 => (R => 255, G => 0, B => 0), 9736 => (R => 255, G => 0, B => 0), 9737 => (R => 255, G => 0, B => 0), 9738 => (R => 255, G => 0, B => 0), 9739 => (R => 255, G => 0, B => 0), 9740 => (R => 255, G => 0, B => 0), 9741 => (R => 255, G => 0, B => 0), 9742 => (R => 255, G => 0, B => 0), 9743 => (R => 255, G => 0, B => 0), 9744 => (R => 255, G => 0, B => 0), 9745 => (R => 255, G => 0, B => 0), 9746 => (R => 255, G => 0, B => 0), 9747 => (R => 255, G => 0, B => 0), 9748 => (R => 255, G => 0, B => 0), 9749 => (R => 255, G => 0, B => 0), 9750 => (R => 255, G => 0, B => 0), 9751 => (R => 255, G => 0, B => 0), 9752 => (R => 255, G => 0, B => 0), 9753 => (R => 255, G => 0, B => 0), 9754 => (R => 0, G => 0, B => 0), 9755 => (R => 0, G => 0, B => 0), 9756 => (R => 0, G => 0, B => 0), 9757 => (R => 0, G => 0, B => 0), 9758 => (R => 0, G => 0, B => 0), 9759 => (R => 0, G => 0, B => 0), 9760 => (R => 0, G => 0, B => 0), 9761 => (R => 0, G => 0, B => 0), 9762 => (R => 0, G => 0, B => 0), 9763 => (R => 0, G => 0, B => 0), 9764 => (R => 0, G => 0, B => 0), 9765 => (R => 0, G => 0, B => 0), 9766 => (R => 0, G => 0, B => 0), 9767 => (R => 0, G => 0, B => 0), 9768 => (R => 0, G => 0, B => 0), 9769 => (R => 0, G => 0, B => 0), 9770 => (R => 0, G => 0, B => 0), 9771 => (R => 0, G => 0, B => 0), 9772 => (R => 0, G => 0, B => 0), 9773 => (R => 0, G => 0, B => 0), 9774 => (R => 0, G => 0, B => 0), 9775 => (R => 0, G => 0, B => 0), 9776 => (R => 0, G => 0, B => 0), 9777 => (R => 0, G => 0, B => 0), 9778 => (R => 0, G => 0, B => 0), 9779 => (R => 0, G => 0, B => 0), 9780 => (R => 0, G => 0, B => 0), 9781 => (R => 0, G => 0, B => 0), 9782 => (R => 0, G => 0, B => 0), 9783 => (R => 0, G => 0, B => 0), 9784 => (R => 0, G => 0, B => 0), 9785 => (R => 0, G => 0, B => 0), 9786 => (R => 0, G => 0, B => 0), 9787 => (R => 0, G => 0, B => 0), 9788 => (R => 0, G => 0, B => 0), 9789 => (R => 0, G => 0, B => 0), 9790 => (R => 0, G => 0, B => 0), 9791 => (R => 0, G => 0, B => 0), 9792 => (R => 0, G => 0, B => 0), 9793 => (R => 0, G => 0, B => 0), 9794 => (R => 0, G => 0, B => 0), 9795 => (R => 0, G => 0, B => 0), 9796 => (R => 0, G => 0, B => 0), 9797 => (R => 0, G => 0, B => 0), 9798 => (R => 0, G => 0, B => 0), 9799 => (R => 0, G => 0, B => 0), 9800 => (R => 0, G => 0, B => 0), 9801 => (R => 0, G => 0, B => 0), 9802 => (R => 0, G => 0, B => 0), 9803 => (R => 0, G => 0, B => 0), 9804 => (R => 0, G => 0, B => 0), 9805 => (R => 0, G => 0, B => 0), 9806 => (R => 0, G => 0, B => 0), 9807 => (R => 0, G => 0, B => 0), 9808 => (R => 0, G => 0, B => 0), 9809 => (R => 0, G => 0, B => 0), 9810 => (R => 0, G => 0, B => 0), 9811 => (R => 0, G => 0, B => 0), 9812 => (R => 0, G => 0, B => 0), 9813 => (R => 0, G => 0, B => 0), 9814 => (R => 0, G => 0, B => 0), 9815 => (R => 0, G => 0, B => 0), 9816 => (R => 0, G => 0, B => 0), 9817 => (R => 0, G => 0, B => 0), 9818 => (R => 0, G => 0, B => 0), 9819 => (R => 0, G => 0, B => 0), 9820 => (R => 0, G => 0, B => 0), 9821 => (R => 0, G => 0, B => 0), 9822 => (R => 0, G => 0, B => 0), 9823 => (R => 0, G => 0, B => 0), 9824 => (R => 0, G => 0, B => 0), 9825 => (R => 0, G => 0, B => 0), 9826 => (R => 0, G => 0, B => 0), 9827 => (R => 0, G => 0, B => 0), 9828 => (R => 0, G => 0, B => 0), 9829 => (R => 0, G => 0, B => 0), 9830 => (R => 0, G => 0, B => 0), 9831 => (R => 0, G => 0, B => 0), 9832 => (R => 0, G => 0, B => 0), 9833 => (R => 0, G => 0, B => 0), 9834 => (R => 0, G => 0, B => 0), 9835 => (R => 0, G => 0, B => 0), 9836 => (R => 0, G => 0, B => 0), 9837 => (R => 0, G => 0, B => 0), 9838 => (R => 0, G => 0, B => 0), 9839 => (R => 0, G => 0, B => 0), 9840 => (R => 0, G => 0, B => 0), 9841 => (R => 0, G => 0, B => 0), 9842 => (R => 0, G => 0, B => 0), 9843 => (R => 0, G => 0, B => 0), 9844 => (R => 0, G => 0, B => 0), 9845 => (R => 0, G => 0, B => 0), 9846 => (R => 0, G => 0, B => 0), 9847 => (R => 0, G => 0, B => 0), 9848 => (R => 0, G => 0, B => 0), 9849 => (R => 255, G => 0, B => 0), 9850 => (R => 255, G => 0, B => 0), 9851 => (R => 255, G => 0, B => 0), 9852 => (R => 255, G => 0, B => 0), 9853 => (R => 255, G => 0, B => 0), 9854 => (R => 255, G => 0, B => 0), 9855 => (R => 255, G => 0, B => 0), 9856 => (R => 255, G => 0, B => 0), 9857 => (R => 255, G => 0, B => 0), 9858 => (R => 255, G => 0, B => 0), 9859 => (R => 255, G => 0, B => 0), 9860 => (R => 255, G => 0, B => 0), 9861 => (R => 255, G => 0, B => 0), 9862 => (R => 255, G => 0, B => 0), 9863 => (R => 255, G => 0, B => 0), 9864 => (R => 255, G => 0, B => 0), 9865 => (R => 255, G => 0, B => 0), 9866 => (R => 255, G => 0, B => 0), 9867 => (R => 255, G => 0, B => 0), 9868 => (R => 255, G => 0, B => 0), 9869 => (R => 255, G => 0, B => 0), 9870 => (R => 255, G => 0, B => 0), 9871 => (R => 255, G => 0, B => 0), 9872 => (R => 255, G => 0, B => 0), 9873 => (R => 255, G => 0, B => 0), 9874 => (R => 255, G => 0, B => 0), 9875 => (R => 255, G => 0, B => 0), 9876 => (R => 255, G => 0, B => 0), 9877 => (R => 255, G => 0, B => 0), 9878 => (R => 255, G => 0, B => 0), 9879 => (R => 255, G => 0, B => 0), 9880 => (R => 255, G => 0, B => 0), 9881 => (R => 255, G => 0, B => 0), 9882 => (R => 255, G => 0, B => 0), 9883 => (R => 255, G => 0, B => 0), 9884 => (R => 255, G => 0, B => 0), 9885 => (R => 255, G => 0, B => 0), 9886 => (R => 255, G => 0, B => 0), 9887 => (R => 255, G => 0, B => 0), 9888 => (R => 255, G => 0, B => 0), 9889 => (R => 255, G => 0, B => 0), 9890 => (R => 255, G => 0, B => 0), 9891 => (R => 255, G => 0, B => 0), 9892 => (R => 255, G => 0, B => 0), 9893 => (R => 255, G => 0, B => 0), 9894 => (R => 255, G => 0, B => 0), 9895 => (R => 255, G => 0, B => 0), 9896 => (R => 255, G => 0, B => 0), 9897 => (R => 255, G => 0, B => 0), 9898 => (R => 255, G => 0, B => 0), 9899 => (R => 255, G => 0, B => 0), 9900 => (R => 255, G => 0, B => 0), 9901 => (R => 255, G => 0, B => 0), 9902 => (R => 255, G => 0, B => 0), 9903 => (R => 255, G => 0, B => 0), 9904 => (R => 255, G => 0, B => 0), 9905 => (R => 255, G => 0, B => 0), 9906 => (R => 255, G => 0, B => 0), 9907 => (R => 255, G => 0, B => 0), 9908 => (R => 255, G => 0, B => 0), 9909 => (R => 255, G => 0, B => 0), 9910 => (R => 255, G => 0, B => 0), 9911 => (R => 255, G => 0, B => 0), 9912 => (R => 255, G => 0, B => 0), 9913 => (R => 255, G => 0, B => 0), 9914 => (R => 255, G => 0, B => 0), 9915 => (R => 255, G => 0, B => 0), 9916 => (R => 255, G => 0, B => 0), 9917 => (R => 255, G => 0, B => 0), 9918 => (R => 255, G => 0, B => 0), 9919 => (R => 255, G => 0, B => 0), 9920 => (R => 255, G => 0, B => 0), 9921 => (R => 255, G => 0, B => 0), 9922 => (R => 255, G => 0, B => 0), 9923 => (R => 255, G => 0, B => 0), 9924 => (R => 255, G => 0, B => 0), 9925 => (R => 255, G => 0, B => 0), 9926 => (R => 255, G => 0, B => 0), 9927 => (R => 255, G => 0, B => 0), 9928 => (R => 255, G => 0, B => 0), 9929 => (R => 255, G => 0, B => 0), 9930 => (R => 255, G => 0, B => 0), 9931 => (R => 255, G => 0, B => 0), 9932 => (R => 255, G => 0, B => 0), 9933 => (R => 255, G => 0, B => 0), 9934 => (R => 255, G => 0, B => 0), 9935 => (R => 255, G => 0, B => 0), 9936 => (R => 255, G => 0, B => 0), 9937 => (R => 255, G => 0, B => 0), 9938 => (R => 255, G => 0, B => 0), 9939 => (R => 255, G => 0, B => 0), 9940 => (R => 255, G => 0, B => 0), 9941 => (R => 255, G => 0, B => 0), 9942 => (R => 255, G => 0, B => 0), 9943 => (R => 255, G => 0, B => 0), 9944 => (R => 255, G => 0, B => 0), 9945 => (R => 255, G => 0, B => 0), 9946 => (R => 255, G => 0, B => 0), 9947 => (R => 255, G => 0, B => 0), 9948 => (R => 255, G => 0, B => 0), 9949 => (R => 255, G => 0, B => 0), 9950 => (R => 255, G => 0, B => 0), 9951 => (R => 255, G => 0, B => 0), 9952 => (R => 255, G => 0, B => 0), 9953 => (R => 0, G => 0, B => 0), 9954 => (R => 0, G => 0, B => 0), 9955 => (R => 0, G => 0, B => 0), 9956 => (R => 0, G => 0, B => 0), 9957 => (R => 0, G => 0, B => 0), 9958 => (R => 0, G => 0, B => 0), 9959 => (R => 0, G => 0, B => 0), 9960 => (R => 0, G => 0, B => 0), 9961 => (R => 0, G => 0, B => 0), 9962 => (R => 0, G => 0, B => 0), 9963 => (R => 0, G => 0, B => 0), 9964 => (R => 0, G => 0, B => 0), 9965 => (R => 0, G => 0, B => 0), 9966 => (R => 0, G => 0, B => 0), 9967 => (R => 0, G => 0, B => 0), 9968 => (R => 0, G => 0, B => 0), 9969 => (R => 0, G => 0, B => 0), 9970 => (R => 0, G => 0, B => 0), 9971 => (R => 0, G => 0, B => 0), 9972 => (R => 0, G => 0, B => 0), 9973 => (R => 0, G => 0, B => 0), 9974 => (R => 0, G => 0, B => 0), 9975 => (R => 0, G => 0, B => 0), 9976 => (R => 0, G => 0, B => 0), 9977 => (R => 0, G => 0, B => 0), 9978 => (R => 0, G => 0, B => 0), 9979 => (R => 0, G => 0, B => 0), 9980 => (R => 0, G => 0, B => 0), 9981 => (R => 0, G => 0, B => 0), 9982 => (R => 0, G => 0, B => 0), 9983 => (R => 0, G => 0, B => 0), 9984 => (R => 0, G => 0, B => 0), 9985 => (R => 0, G => 0, B => 0), 9986 => (R => 0, G => 0, B => 0), 9987 => (R => 0, G => 0, B => 0), 9988 => (R => 0, G => 0, B => 0), 9989 => (R => 0, G => 0, B => 0), 9990 => (R => 0, G => 0, B => 0), 9991 => (R => 0, G => 0, B => 0), 9992 => (R => 0, G => 0, B => 0), 9993 => (R => 0, G => 0, B => 0), 9994 => (R => 0, G => 0, B => 0), 9995 => (R => 0, G => 0, B => 0), 9996 => (R => 0, G => 0, B => 0), 9997 => (R => 0, G => 0, B => 0), 9998 => (R => 0, G => 0, B => 0), 9999 => (R => 0, G => 0, B => 0), 10000 => (R => 0, G => 0, B => 0), 10001 => (R => 0, G => 0, B => 0), 10002 => (R => 0, G => 0, B => 0), 10003 => (R => 0, G => 0, B => 0), 10004 => (R => 0, G => 0, B => 0), 10005 => (R => 0, G => 0, B => 0), 10006 => (R => 0, G => 0, B => 0), 10007 => (R => 0, G => 0, B => 0), 10008 => (R => 0, G => 0, B => 0), 10009 => (R => 0, G => 0, B => 0), 10010 => (R => 0, G => 0, B => 0), 10011 => (R => 0, G => 0, B => 0), 10012 => (R => 0, G => 0, B => 0), 10013 => (R => 0, G => 0, B => 0), 10014 => (R => 0, G => 0, B => 0), 10015 => (R => 0, G => 0, B => 0), 10016 => (R => 0, G => 0, B => 0), 10017 => (R => 0, G => 0, B => 0), 10018 => (R => 0, G => 0, B => 0), 10019 => (R => 0, G => 0, B => 0), 10020 => (R => 0, G => 0, B => 0), 10021 => (R => 0, G => 0, B => 0), 10022 => (R => 0, G => 0, B => 0), 10023 => (R => 0, G => 0, B => 0), 10024 => (R => 0, G => 0, B => 0), 10025 => (R => 0, G => 0, B => 0), 10026 => (R => 0, G => 0, B => 0), 10027 => (R => 0, G => 0, B => 0), 10028 => (R => 0, G => 0, B => 0), 10029 => (R => 0, G => 0, B => 0), 10030 => (R => 0, G => 0, B => 0), 10031 => (R => 0, G => 0, B => 0), 10032 => (R => 0, G => 0, B => 0), 10033 => (R => 0, G => 0, B => 0), 10034 => (R => 0, G => 0, B => 0), 10035 => (R => 0, G => 0, B => 0), 10036 => (R => 0, G => 0, B => 0), 10037 => (R => 0, G => 0, B => 0), 10038 => (R => 0, G => 0, B => 0), 10039 => (R => 0, G => 0, B => 0), 10040 => (R => 0, G => 0, B => 0), 10041 => (R => 0, G => 0, B => 0), 10042 => (R => 0, G => 0, B => 0), 10043 => (R => 0, G => 0, B => 0), 10044 => (R => 0, G => 0, B => 0), 10045 => (R => 0, G => 0, B => 0), 10046 => (R => 0, G => 0, B => 0), 10047 => (R => 0, G => 0, B => 0), 10048 => (R => 0, G => 0, B => 0), 10049 => (R => 0, G => 0, B => 0), 10050 => (R => 255, G => 0, B => 0), 10051 => (R => 255, G => 0, B => 0), 10052 => (R => 255, G => 0, B => 0), 10053 => (R => 255, G => 0, B => 0), 10054 => (R => 255, G => 0, B => 0), 10055 => (R => 255, G => 0, B => 0), 10056 => (R => 255, G => 0, B => 0), 10057 => (R => 255, G => 0, B => 0), 10058 => (R => 255, G => 0, B => 0), 10059 => (R => 255, G => 0, B => 0), 10060 => (R => 255, G => 0, B => 0), 10061 => (R => 255, G => 0, B => 0), 10062 => (R => 255, G => 0, B => 0), 10063 => (R => 255, G => 0, B => 0), 10064 => (R => 255, G => 0, B => 0), 10065 => (R => 255, G => 0, B => 0), 10066 => (R => 255, G => 0, B => 0), 10067 => (R => 255, G => 0, B => 0), 10068 => (R => 255, G => 0, B => 0), 10069 => (R => 255, G => 0, B => 0), 10070 => (R => 255, G => 0, B => 0), 10071 => (R => 255, G => 0, B => 0), 10072 => (R => 255, G => 0, B => 0), 10073 => (R => 255, G => 0, B => 0), 10074 => (R => 255, G => 0, B => 0), 10075 => (R => 255, G => 0, B => 0), 10076 => (R => 255, G => 0, B => 0), 10077 => (R => 255, G => 0, B => 0), 10078 => (R => 255, G => 0, B => 0), 10079 => (R => 255, G => 0, B => 0), 10080 => (R => 255, G => 0, B => 0), 10081 => (R => 255, G => 0, B => 0), 10082 => (R => 255, G => 0, B => 0), 10083 => (R => 255, G => 0, B => 0), 10084 => (R => 255, G => 0, B => 0), 10085 => (R => 255, G => 0, B => 0), 10086 => (R => 255, G => 0, B => 0), 10087 => (R => 255, G => 0, B => 0), 10088 => (R => 255, G => 0, B => 0), 10089 => (R => 255, G => 0, B => 0), 10090 => (R => 255, G => 0, B => 0), 10091 => (R => 255, G => 0, B => 0), 10092 => (R => 255, G => 0, B => 0), 10093 => (R => 255, G => 0, B => 0), 10094 => (R => 255, G => 0, B => 0), 10095 => (R => 255, G => 0, B => 0), 10096 => (R => 255, G => 0, B => 0), 10097 => (R => 255, G => 0, B => 0), 10098 => (R => 255, G => 0, B => 0), 10099 => (R => 255, G => 0, B => 0), 10100 => (R => 255, G => 0, B => 0), 10101 => (R => 255, G => 0, B => 0), 10102 => (R => 255, G => 0, B => 0), 10103 => (R => 255, G => 0, B => 0), 10104 => (R => 255, G => 0, B => 0), 10105 => (R => 255, G => 0, B => 0), 10106 => (R => 255, G => 0, B => 0), 10107 => (R => 255, G => 0, B => 0), 10108 => (R => 255, G => 0, B => 0), 10109 => (R => 255, G => 0, B => 0), 10110 => (R => 255, G => 0, B => 0), 10111 => (R => 255, G => 0, B => 0), 10112 => (R => 255, G => 0, B => 0), 10113 => (R => 255, G => 0, B => 0), 10114 => (R => 255, G => 0, B => 0), 10115 => (R => 255, G => 0, B => 0), 10116 => (R => 255, G => 0, B => 0), 10117 => (R => 255, G => 0, B => 0), 10118 => (R => 255, G => 0, B => 0), 10119 => (R => 255, G => 0, B => 0), 10120 => (R => 255, G => 0, B => 0), 10121 => (R => 255, G => 0, B => 0), 10122 => (R => 255, G => 0, B => 0), 10123 => (R => 255, G => 0, B => 0), 10124 => (R => 255, G => 0, B => 0), 10125 => (R => 255, G => 0, B => 0), 10126 => (R => 255, G => 0, B => 0), 10127 => (R => 255, G => 0, B => 0), 10128 => (R => 255, G => 0, B => 0), 10129 => (R => 255, G => 0, B => 0), 10130 => (R => 255, G => 0, B => 0), 10131 => (R => 255, G => 0, B => 0), 10132 => (R => 255, G => 0, B => 0), 10133 => (R => 255, G => 0, B => 0), 10134 => (R => 255, G => 0, B => 0), 10135 => (R => 255, G => 0, B => 0), 10136 => (R => 255, G => 0, B => 0), 10137 => (R => 255, G => 0, B => 0), 10138 => (R => 255, G => 0, B => 0), 10139 => (R => 255, G => 0, B => 0), 10140 => (R => 255, G => 0, B => 0), 10141 => (R => 255, G => 0, B => 0), 10142 => (R => 255, G => 0, B => 0), 10143 => (R => 255, G => 0, B => 0), 10144 => (R => 255, G => 0, B => 0), 10145 => (R => 255, G => 0, B => 0), 10146 => (R => 255, G => 0, B => 0), 10147 => (R => 255, G => 0, B => 0), 10148 => (R => 255, G => 0, B => 0), 10149 => (R => 255, G => 0, B => 0), 10150 => (R => 255, G => 0, B => 0), 10151 => (R => 255, G => 0, B => 0), 10152 => (R => 0, G => 0, B => 0), 10153 => (R => 0, G => 0, B => 0), 10154 => (R => 0, G => 0, B => 0), 10155 => (R => 0, G => 0, B => 0), 10156 => (R => 0, G => 0, B => 0), 10157 => (R => 0, G => 0, B => 0), 10158 => (R => 0, G => 0, B => 0), 10159 => (R => 0, G => 0, B => 0), 10160 => (R => 0, G => 0, B => 0), 10161 => (R => 0, G => 0, B => 0), 10162 => (R => 0, G => 0, B => 0), 10163 => (R => 0, G => 0, B => 0), 10164 => (R => 0, G => 0, B => 0), 10165 => (R => 0, G => 0, B => 0), 10166 => (R => 0, G => 0, B => 0), 10167 => (R => 0, G => 0, B => 0), 10168 => (R => 0, G => 0, B => 0), 10169 => (R => 0, G => 0, B => 0), 10170 => (R => 0, G => 0, B => 0), 10171 => (R => 0, G => 0, B => 0), 10172 => (R => 0, G => 0, B => 0), 10173 => (R => 0, G => 0, B => 0), 10174 => (R => 0, G => 0, B => 0), 10175 => (R => 0, G => 0, B => 0), 10176 => (R => 0, G => 0, B => 0), 10177 => (R => 0, G => 0, B => 0), 10178 => (R => 0, G => 0, B => 0), 10179 => (R => 0, G => 0, B => 0), 10180 => (R => 0, G => 0, B => 0), 10181 => (R => 0, G => 0, B => 0), 10182 => (R => 0, G => 0, B => 0), 10183 => (R => 0, G => 0, B => 0), 10184 => (R => 0, G => 0, B => 0), 10185 => (R => 0, G => 0, B => 0), 10186 => (R => 0, G => 0, B => 0), 10187 => (R => 0, G => 0, B => 0), 10188 => (R => 0, G => 0, B => 0), 10189 => (R => 0, G => 0, B => 0), 10190 => (R => 0, G => 0, B => 0), 10191 => (R => 0, G => 0, B => 0), 10192 => (R => 0, G => 0, B => 0), 10193 => (R => 0, G => 0, B => 0), 10194 => (R => 0, G => 0, B => 0), 10195 => (R => 0, G => 0, B => 0), 10196 => (R => 0, G => 0, B => 0), 10197 => (R => 0, G => 0, B => 0), 10198 => (R => 0, G => 0, B => 0), 10199 => (R => 0, G => 0, B => 0), 10200 => (R => 0, G => 0, B => 0), 10201 => (R => 0, G => 0, B => 0), 10202 => (R => 0, G => 0, B => 0), 10203 => (R => 0, G => 0, B => 0), 10204 => (R => 0, G => 0, B => 0), 10205 => (R => 0, G => 0, B => 0), 10206 => (R => 0, G => 0, B => 0), 10207 => (R => 0, G => 0, B => 0), 10208 => (R => 0, G => 0, B => 0), 10209 => (R => 0, G => 0, B => 0), 10210 => (R => 0, G => 0, B => 0), 10211 => (R => 0, G => 0, B => 0), 10212 => (R => 0, G => 0, B => 0), 10213 => (R => 0, G => 0, B => 0), 10214 => (R => 0, G => 0, B => 0), 10215 => (R => 0, G => 0, B => 0), 10216 => (R => 0, G => 0, B => 0), 10217 => (R => 0, G => 0, B => 0), 10218 => (R => 0, G => 0, B => 0), 10219 => (R => 0, G => 0, B => 0), 10220 => (R => 0, G => 0, B => 0), 10221 => (R => 0, G => 0, B => 0), 10222 => (R => 0, G => 0, B => 0), 10223 => (R => 0, G => 0, B => 0), 10224 => (R => 0, G => 0, B => 0), 10225 => (R => 0, G => 0, B => 0), 10226 => (R => 0, G => 0, B => 0), 10227 => (R => 0, G => 0, B => 0), 10228 => (R => 0, G => 0, B => 0), 10229 => (R => 0, G => 0, B => 0), 10230 => (R => 0, G => 0, B => 0), 10231 => (R => 0, G => 0, B => 0), 10232 => (R => 0, G => 0, B => 0), 10233 => (R => 0, G => 0, B => 0), 10234 => (R => 0, G => 0, B => 0), 10235 => (R => 0, G => 0, B => 0), 10236 => (R => 0, G => 0, B => 0), 10237 => (R => 0, G => 0, B => 0), 10238 => (R => 0, G => 0, B => 0), 10239 => (R => 0, G => 0, B => 0), 10240 => (R => 0, G => 0, B => 0), 10241 => (R => 0, G => 0, B => 0), 10242 => (R => 0, G => 0, B => 0), 10243 => (R => 0, G => 0, B => 0), 10244 => (R => 0, G => 0, B => 0), 10245 => (R => 0, G => 0, B => 0), 10246 => (R => 0, G => 0, B => 0), 10247 => (R => 0, G => 0, B => 0), 10248 => (R => 0, G => 0, B => 0), 10249 => (R => 0, G => 0, B => 0), 10250 => (R => 0, G => 0, B => 0), 10251 => (R => 255, G => 0, B => 0), 10252 => (R => 255, G => 0, B => 0), 10253 => (R => 255, G => 0, B => 0), 10254 => (R => 255, G => 0, B => 0), 10255 => (R => 255, G => 0, B => 0), 10256 => (R => 255, G => 0, B => 0), 10257 => (R => 255, G => 0, B => 0), 10258 => (R => 255, G => 0, B => 0), 10259 => (R => 255, G => 0, B => 0), 10260 => (R => 255, G => 0, B => 0), 10261 => (R => 255, G => 0, B => 0), 10262 => (R => 255, G => 0, B => 0), 10263 => (R => 255, G => 0, B => 0), 10264 => (R => 255, G => 0, B => 0), 10265 => (R => 255, G => 0, B => 0), 10266 => (R => 255, G => 0, B => 0), 10267 => (R => 255, G => 0, B => 0), 10268 => (R => 255, G => 0, B => 0), 10269 => (R => 255, G => 0, B => 0), 10270 => (R => 255, G => 0, B => 0), 10271 => (R => 255, G => 0, B => 0), 10272 => (R => 255, G => 0, B => 0), 10273 => (R => 255, G => 0, B => 0), 10274 => (R => 255, G => 0, B => 0), 10275 => (R => 255, G => 0, B => 0), 10276 => (R => 255, G => 0, B => 0), 10277 => (R => 255, G => 0, B => 0), 10278 => (R => 255, G => 0, B => 0), 10279 => (R => 255, G => 0, B => 0), 10280 => (R => 255, G => 0, B => 0), 10281 => (R => 255, G => 0, B => 0), 10282 => (R => 255, G => 0, B => 0), 10283 => (R => 255, G => 0, B => 0), 10284 => (R => 255, G => 0, B => 0), 10285 => (R => 255, G => 0, B => 0), 10286 => (R => 255, G => 0, B => 0), 10287 => (R => 255, G => 0, B => 0), 10288 => (R => 255, G => 0, B => 0), 10289 => (R => 255, G => 0, B => 0), 10290 => (R => 255, G => 0, B => 0), 10291 => (R => 255, G => 0, B => 0), 10292 => (R => 255, G => 0, B => 0), 10293 => (R => 255, G => 0, B => 0), 10294 => (R => 255, G => 0, B => 0), 10295 => (R => 255, G => 0, B => 0), 10296 => (R => 255, G => 0, B => 0), 10297 => (R => 255, G => 0, B => 0), 10298 => (R => 255, G => 0, B => 0), 10299 => (R => 255, G => 0, B => 0), 10300 => (R => 255, G => 0, B => 0), 10301 => (R => 255, G => 0, B => 0), 10302 => (R => 255, G => 0, B => 0), 10303 => (R => 255, G => 0, B => 0), 10304 => (R => 255, G => 0, B => 0), 10305 => (R => 255, G => 0, B => 0), 10306 => (R => 255, G => 0, B => 0), 10307 => (R => 255, G => 0, B => 0), 10308 => (R => 255, G => 0, B => 0), 10309 => (R => 255, G => 0, B => 0), 10310 => (R => 255, G => 0, B => 0), 10311 => (R => 255, G => 0, B => 0), 10312 => (R => 255, G => 0, B => 0), 10313 => (R => 255, G => 0, B => 0), 10314 => (R => 255, G => 0, B => 0), 10315 => (R => 255, G => 0, B => 0), 10316 => (R => 255, G => 0, B => 0), 10317 => (R => 255, G => 0, B => 0), 10318 => (R => 255, G => 0, B => 0), 10319 => (R => 255, G => 0, B => 0), 10320 => (R => 255, G => 0, B => 0), 10321 => (R => 255, G => 0, B => 0), 10322 => (R => 255, G => 0, B => 0), 10323 => (R => 255, G => 0, B => 0), 10324 => (R => 255, G => 0, B => 0), 10325 => (R => 255, G => 0, B => 0), 10326 => (R => 255, G => 0, B => 0), 10327 => (R => 255, G => 0, B => 0), 10328 => (R => 255, G => 0, B => 0), 10329 => (R => 255, G => 0, B => 0), 10330 => (R => 255, G => 0, B => 0), 10331 => (R => 255, G => 0, B => 0), 10332 => (R => 255, G => 0, B => 0), 10333 => (R => 255, G => 0, B => 0), 10334 => (R => 255, G => 0, B => 0), 10335 => (R => 255, G => 0, B => 0), 10336 => (R => 255, G => 0, B => 0), 10337 => (R => 255, G => 0, B => 0), 10338 => (R => 255, G => 0, B => 0), 10339 => (R => 255, G => 0, B => 0), 10340 => (R => 255, G => 0, B => 0), 10341 => (R => 255, G => 0, B => 0), 10342 => (R => 255, G => 0, B => 0), 10343 => (R => 255, G => 0, B => 0), 10344 => (R => 255, G => 0, B => 0), 10345 => (R => 255, G => 0, B => 0), 10346 => (R => 255, G => 0, B => 0), 10347 => (R => 255, G => 0, B => 0), 10348 => (R => 255, G => 0, B => 0), 10349 => (R => 255, G => 0, B => 0), 10350 => (R => 255, G => 0, B => 0), 10351 => (R => 0, G => 0, B => 0), 10352 => (R => 0, G => 0, B => 0), 10353 => (R => 0, G => 0, B => 0), 10354 => (R => 0, G => 0, B => 0), 10355 => (R => 0, G => 0, B => 0), 10356 => (R => 0, G => 0, B => 0), 10357 => (R => 0, G => 0, B => 0), 10358 => (R => 0, G => 0, B => 0), 10359 => (R => 0, G => 0, B => 0), 10360 => (R => 0, G => 0, B => 0), 10361 => (R => 0, G => 0, B => 0), 10362 => (R => 0, G => 0, B => 0), 10363 => (R => 0, G => 0, B => 0), 10364 => (R => 0, G => 0, B => 0), 10365 => (R => 0, G => 0, B => 0), 10366 => (R => 0, G => 0, B => 0), 10367 => (R => 0, G => 0, B => 0), 10368 => (R => 0, G => 0, B => 0), 10369 => (R => 0, G => 0, B => 0), 10370 => (R => 0, G => 0, B => 0), 10371 => (R => 0, G => 0, B => 0), 10372 => (R => 0, G => 0, B => 0), 10373 => (R => 0, G => 0, B => 0), 10374 => (R => 0, G => 0, B => 0), 10375 => (R => 0, G => 0, B => 0), 10376 => (R => 0, G => 0, B => 0), 10377 => (R => 0, G => 0, B => 0), 10378 => (R => 0, G => 0, B => 0), 10379 => (R => 0, G => 0, B => 0), 10380 => (R => 0, G => 0, B => 0), 10381 => (R => 0, G => 0, B => 0), 10382 => (R => 0, G => 0, B => 0), 10383 => (R => 0, G => 0, B => 0), 10384 => (R => 0, G => 0, B => 0), 10385 => (R => 0, G => 0, B => 0), 10386 => (R => 0, G => 0, B => 0), 10387 => (R => 0, G => 0, B => 0), 10388 => (R => 0, G => 0, B => 0), 10389 => (R => 0, G => 0, B => 0), 10390 => (R => 0, G => 0, B => 0), 10391 => (R => 0, G => 0, B => 0), 10392 => (R => 0, G => 0, B => 0), 10393 => (R => 0, G => 0, B => 0), 10394 => (R => 0, G => 0, B => 0), 10395 => (R => 0, G => 0, B => 0), 10396 => (R => 0, G => 0, B => 0), 10397 => (R => 0, G => 0, B => 0), 10398 => (R => 0, G => 0, B => 0), 10399 => (R => 0, G => 0, B => 0), 10400 => (R => 0, G => 0, B => 0), 10401 => (R => 0, G => 0, B => 0), 10402 => (R => 0, G => 0, B => 0), 10403 => (R => 0, G => 0, B => 0), 10404 => (R => 0, G => 0, B => 0), 10405 => (R => 0, G => 0, B => 0), 10406 => (R => 0, G => 0, B => 0), 10407 => (R => 0, G => 0, B => 0), 10408 => (R => 0, G => 0, B => 0), 10409 => (R => 0, G => 0, B => 0), 10410 => (R => 0, G => 0, B => 0), 10411 => (R => 0, G => 0, B => 0), 10412 => (R => 0, G => 0, B => 0), 10413 => (R => 0, G => 0, B => 0), 10414 => (R => 0, G => 0, B => 0), 10415 => (R => 0, G => 0, B => 0), 10416 => (R => 0, G => 0, B => 0), 10417 => (R => 0, G => 0, B => 0), 10418 => (R => 0, G => 0, B => 0), 10419 => (R => 0, G => 0, B => 0), 10420 => (R => 0, G => 0, B => 0), 10421 => (R => 0, G => 0, B => 0), 10422 => (R => 0, G => 0, B => 0), 10423 => (R => 0, G => 0, B => 0), 10424 => (R => 0, G => 0, B => 0), 10425 => (R => 0, G => 0, B => 0), 10426 => (R => 0, G => 0, B => 0), 10427 => (R => 0, G => 0, B => 0), 10428 => (R => 0, G => 0, B => 0), 10429 => (R => 0, G => 0, B => 0), 10430 => (R => 0, G => 0, B => 0), 10431 => (R => 0, G => 0, B => 0), 10432 => (R => 0, G => 0, B => 0), 10433 => (R => 0, G => 0, B => 0), 10434 => (R => 0, G => 0, B => 0), 10435 => (R => 0, G => 0, B => 0), 10436 => (R => 0, G => 0, B => 0), 10437 => (R => 0, G => 0, B => 0), 10438 => (R => 0, G => 0, B => 0), 10439 => (R => 0, G => 0, B => 0), 10440 => (R => 0, G => 0, B => 0), 10441 => (R => 0, G => 0, B => 0), 10442 => (R => 0, G => 0, B => 0), 10443 => (R => 0, G => 0, B => 0), 10444 => (R => 0, G => 0, B => 0), 10445 => (R => 0, G => 0, B => 0), 10446 => (R => 0, G => 0, B => 0), 10447 => (R => 0, G => 0, B => 0), 10448 => (R => 0, G => 0, B => 0), 10449 => (R => 0, G => 0, B => 0), 10450 => (R => 0, G => 0, B => 0), 10451 => (R => 0, G => 0, B => 0), 10452 => (R => 255, G => 0, B => 0), 10453 => (R => 255, G => 0, B => 0), 10454 => (R => 255, G => 0, B => 0), 10455 => (R => 255, G => 0, B => 0), 10456 => (R => 255, G => 0, B => 0), 10457 => (R => 255, G => 0, B => 0), 10458 => (R => 255, G => 0, B => 0), 10459 => (R => 255, G => 0, B => 0), 10460 => (R => 255, G => 0, B => 0), 10461 => (R => 255, G => 0, B => 0), 10462 => (R => 255, G => 0, B => 0), 10463 => (R => 255, G => 0, B => 0), 10464 => (R => 255, G => 0, B => 0), 10465 => (R => 255, G => 0, B => 0), 10466 => (R => 255, G => 0, B => 0), 10467 => (R => 255, G => 0, B => 0), 10468 => (R => 255, G => 0, B => 0), 10469 => (R => 255, G => 0, B => 0), 10470 => (R => 255, G => 0, B => 0), 10471 => (R => 255, G => 0, B => 0), 10472 => (R => 255, G => 0, B => 0), 10473 => (R => 255, G => 0, B => 0), 10474 => (R => 255, G => 0, B => 0), 10475 => (R => 255, G => 0, B => 0), 10476 => (R => 255, G => 0, B => 0), 10477 => (R => 255, G => 0, B => 0), 10478 => (R => 255, G => 0, B => 0), 10479 => (R => 255, G => 0, B => 0), 10480 => (R => 255, G => 0, B => 0), 10481 => (R => 255, G => 0, B => 0), 10482 => (R => 255, G => 0, B => 0), 10483 => (R => 255, G => 0, B => 0), 10484 => (R => 255, G => 0, B => 0), 10485 => (R => 255, G => 0, B => 0), 10486 => (R => 255, G => 0, B => 0), 10487 => (R => 255, G => 0, B => 0), 10488 => (R => 255, G => 0, B => 0), 10489 => (R => 255, G => 0, B => 0), 10490 => (R => 255, G => 0, B => 0), 10491 => (R => 255, G => 0, B => 0), 10492 => (R => 255, G => 0, B => 0), 10493 => (R => 255, G => 0, B => 0), 10494 => (R => 255, G => 0, B => 0), 10495 => (R => 255, G => 0, B => 0), 10496 => (R => 255, G => 0, B => 0), 10497 => (R => 255, G => 0, B => 0), 10498 => (R => 255, G => 0, B => 0), 10499 => (R => 255, G => 0, B => 0), 10500 => (R => 255, G => 0, B => 0), 10501 => (R => 255, G => 0, B => 0), 10502 => (R => 255, G => 0, B => 0), 10503 => (R => 255, G => 0, B => 0), 10504 => (R => 255, G => 0, B => 0), 10505 => (R => 255, G => 0, B => 0), 10506 => (R => 255, G => 0, B => 0), 10507 => (R => 255, G => 0, B => 0), 10508 => (R => 255, G => 0, B => 0), 10509 => (R => 255, G => 0, B => 0), 10510 => (R => 255, G => 0, B => 0), 10511 => (R => 255, G => 0, B => 0), 10512 => (R => 255, G => 0, B => 0), 10513 => (R => 255, G => 0, B => 0), 10514 => (R => 255, G => 0, B => 0), 10515 => (R => 255, G => 0, B => 0), 10516 => (R => 255, G => 0, B => 0), 10517 => (R => 255, G => 0, B => 0), 10518 => (R => 255, G => 0, B => 0), 10519 => (R => 255, G => 0, B => 0), 10520 => (R => 255, G => 0, B => 0), 10521 => (R => 255, G => 0, B => 0), 10522 => (R => 255, G => 0, B => 0), 10523 => (R => 255, G => 0, B => 0), 10524 => (R => 255, G => 0, B => 0), 10525 => (R => 255, G => 0, B => 0), 10526 => (R => 255, G => 0, B => 0), 10527 => (R => 255, G => 0, B => 0), 10528 => (R => 255, G => 0, B => 0), 10529 => (R => 255, G => 0, B => 0), 10530 => (R => 255, G => 0, B => 0), 10531 => (R => 255, G => 0, B => 0), 10532 => (R => 255, G => 0, B => 0), 10533 => (R => 255, G => 0, B => 0), 10534 => (R => 255, G => 0, B => 0), 10535 => (R => 255, G => 0, B => 0), 10536 => (R => 255, G => 0, B => 0), 10537 => (R => 255, G => 0, B => 0), 10538 => (R => 255, G => 0, B => 0), 10539 => (R => 255, G => 0, B => 0), 10540 => (R => 255, G => 0, B => 0), 10541 => (R => 255, G => 0, B => 0), 10542 => (R => 255, G => 0, B => 0), 10543 => (R => 255, G => 0, B => 0), 10544 => (R => 255, G => 0, B => 0), 10545 => (R => 255, G => 0, B => 0), 10546 => (R => 255, G => 0, B => 0), 10547 => (R => 255, G => 0, B => 0), 10548 => (R => 255, G => 0, B => 0), 10549 => (R => 255, G => 0, B => 0), 10550 => (R => 0, G => 0, B => 0), 10551 => (R => 0, G => 0, B => 0), 10552 => (R => 0, G => 0, B => 0), 10553 => (R => 0, G => 0, B => 0), 10554 => (R => 0, G => 0, B => 0), 10555 => (R => 0, G => 0, B => 0), 10556 => (R => 0, G => 0, B => 0), 10557 => (R => 0, G => 0, B => 0), 10558 => (R => 0, G => 0, B => 0), 10559 => (R => 0, G => 0, B => 0), 10560 => (R => 0, G => 0, B => 0), 10561 => (R => 0, G => 0, B => 0), 10562 => (R => 0, G => 0, B => 0), 10563 => (R => 0, G => 0, B => 0), 10564 => (R => 0, G => 0, B => 0), 10565 => (R => 0, G => 0, B => 0), 10566 => (R => 0, G => 0, B => 0), 10567 => (R => 0, G => 0, B => 0), 10568 => (R => 0, G => 0, B => 0), 10569 => (R => 0, G => 0, B => 0), 10570 => (R => 0, G => 0, B => 0), 10571 => (R => 0, G => 0, B => 0), 10572 => (R => 0, G => 0, B => 0), 10573 => (R => 0, G => 0, B => 0), 10574 => (R => 0, G => 0, B => 0), 10575 => (R => 0, G => 0, B => 0), 10576 => (R => 0, G => 0, B => 0), 10577 => (R => 0, G => 0, B => 0), 10578 => (R => 0, G => 0, B => 0), 10579 => (R => 0, G => 0, B => 0), 10580 => (R => 0, G => 0, B => 0), 10581 => (R => 0, G => 0, B => 0), 10582 => (R => 0, G => 0, B => 0), 10583 => (R => 0, G => 0, B => 0), 10584 => (R => 0, G => 0, B => 0), 10585 => (R => 0, G => 0, B => 0), 10586 => (R => 0, G => 0, B => 0), 10587 => (R => 0, G => 0, B => 0), 10588 => (R => 0, G => 0, B => 0), 10589 => (R => 0, G => 0, B => 0), 10590 => (R => 0, G => 0, B => 0), 10591 => (R => 0, G => 0, B => 0), 10592 => (R => 0, G => 0, B => 0), 10593 => (R => 0, G => 0, B => 0), 10594 => (R => 0, G => 0, B => 0), 10595 => (R => 0, G => 0, B => 0), 10596 => (R => 0, G => 0, B => 0), 10597 => (R => 0, G => 0, B => 0), 10598 => (R => 0, G => 0, B => 0), 10599 => (R => 0, G => 0, B => 0), 10600 => (R => 0, G => 0, B => 0), 10601 => (R => 0, G => 0, B => 0), 10602 => (R => 0, G => 0, B => 0), 10603 => (R => 0, G => 0, B => 0), 10604 => (R => 0, G => 0, B => 0), 10605 => (R => 0, G => 0, B => 0), 10606 => (R => 0, G => 0, B => 0), 10607 => (R => 0, G => 0, B => 0), 10608 => (R => 0, G => 0, B => 0), 10609 => (R => 0, G => 0, B => 0), 10610 => (R => 0, G => 0, B => 0), 10611 => (R => 0, G => 0, B => 0), 10612 => (R => 0, G => 0, B => 0), 10613 => (R => 0, G => 0, B => 0), 10614 => (R => 0, G => 0, B => 0), 10615 => (R => 0, G => 0, B => 0), 10616 => (R => 0, G => 0, B => 0), 10617 => (R => 0, G => 0, B => 0), 10618 => (R => 0, G => 0, B => 0), 10619 => (R => 0, G => 0, B => 0), 10620 => (R => 0, G => 0, B => 0), 10621 => (R => 0, G => 0, B => 0), 10622 => (R => 0, G => 0, B => 0), 10623 => (R => 0, G => 0, B => 0), 10624 => (R => 0, G => 0, B => 0), 10625 => (R => 0, G => 0, B => 0), 10626 => (R => 0, G => 0, B => 0), 10627 => (R => 0, G => 0, B => 0), 10628 => (R => 0, G => 0, B => 0), 10629 => (R => 0, G => 0, B => 0), 10630 => (R => 0, G => 0, B => 0), 10631 => (R => 0, G => 0, B => 0), 10632 => (R => 0, G => 0, B => 0), 10633 => (R => 0, G => 0, B => 0), 10634 => (R => 0, G => 0, B => 0), 10635 => (R => 0, G => 0, B => 0), 10636 => (R => 0, G => 0, B => 0), 10637 => (R => 0, G => 0, B => 0), 10638 => (R => 0, G => 0, B => 0), 10639 => (R => 0, G => 0, B => 0), 10640 => (R => 0, G => 0, B => 0), 10641 => (R => 0, G => 0, B => 0), 10642 => (R => 0, G => 0, B => 0), 10643 => (R => 0, G => 0, B => 0), 10644 => (R => 0, G => 0, B => 0), 10645 => (R => 0, G => 0, B => 0), 10646 => (R => 0, G => 0, B => 0), 10647 => (R => 0, G => 0, B => 0), 10648 => (R => 0, G => 0, B => 0), 10649 => (R => 0, G => 0, B => 0), 10650 => (R => 0, G => 0, B => 0), 10651 => (R => 0, G => 0, B => 0), 10652 => (R => 0, G => 0, B => 0), 10653 => (R => 255, G => 0, B => 0), 10654 => (R => 255, G => 0, B => 0), 10655 => (R => 255, G => 0, B => 0), 10656 => (R => 255, G => 0, B => 0), 10657 => (R => 255, G => 0, B => 0), 10658 => (R => 255, G => 0, B => 0), 10659 => (R => 255, G => 0, B => 0), 10660 => (R => 255, G => 0, B => 0), 10661 => (R => 255, G => 0, B => 0), 10662 => (R => 255, G => 0, B => 0), 10663 => (R => 255, G => 0, B => 0), 10664 => (R => 255, G => 0, B => 0), 10665 => (R => 255, G => 0, B => 0), 10666 => (R => 255, G => 0, B => 0), 10667 => (R => 255, G => 0, B => 0), 10668 => (R => 255, G => 0, B => 0), 10669 => (R => 255, G => 0, B => 0), 10670 => (R => 255, G => 0, B => 0), 10671 => (R => 255, G => 0, B => 0), 10672 => (R => 255, G => 0, B => 0), 10673 => (R => 255, G => 0, B => 0), 10674 => (R => 255, G => 0, B => 0), 10675 => (R => 255, G => 0, B => 0), 10676 => (R => 255, G => 0, B => 0), 10677 => (R => 255, G => 0, B => 0), 10678 => (R => 255, G => 0, B => 0), 10679 => (R => 255, G => 0, B => 0), 10680 => (R => 255, G => 0, B => 0), 10681 => (R => 255, G => 0, B => 0), 10682 => (R => 255, G => 0, B => 0), 10683 => (R => 255, G => 0, B => 0), 10684 => (R => 255, G => 0, B => 0), 10685 => (R => 255, G => 0, B => 0), 10686 => (R => 255, G => 0, B => 0), 10687 => (R => 255, G => 0, B => 0), 10688 => (R => 255, G => 0, B => 0), 10689 => (R => 255, G => 0, B => 0), 10690 => (R => 255, G => 0, B => 0), 10691 => (R => 255, G => 0, B => 0), 10692 => (R => 255, G => 0, B => 0), 10693 => (R => 255, G => 0, B => 0), 10694 => (R => 255, G => 0, B => 0), 10695 => (R => 255, G => 0, B => 0), 10696 => (R => 255, G => 0, B => 0), 10697 => (R => 255, G => 0, B => 0), 10698 => (R => 255, G => 0, B => 0), 10699 => (R => 255, G => 0, B => 0), 10700 => (R => 255, G => 0, B => 0), 10701 => (R => 255, G => 0, B => 0), 10702 => (R => 255, G => 0, B => 0), 10703 => (R => 255, G => 0, B => 0), 10704 => (R => 255, G => 0, B => 0), 10705 => (R => 255, G => 0, B => 0), 10706 => (R => 255, G => 0, B => 0), 10707 => (R => 255, G => 0, B => 0), 10708 => (R => 255, G => 0, B => 0), 10709 => (R => 255, G => 0, B => 0), 10710 => (R => 255, G => 0, B => 0), 10711 => (R => 255, G => 0, B => 0), 10712 => (R => 255, G => 0, B => 0), 10713 => (R => 255, G => 0, B => 0), 10714 => (R => 255, G => 0, B => 0), 10715 => (R => 255, G => 0, B => 0), 10716 => (R => 255, G => 0, B => 0), 10717 => (R => 255, G => 0, B => 0), 10718 => (R => 255, G => 0, B => 0), 10719 => (R => 255, G => 0, B => 0), 10720 => (R => 255, G => 0, B => 0), 10721 => (R => 255, G => 0, B => 0), 10722 => (R => 255, G => 0, B => 0), 10723 => (R => 255, G => 0, B => 0), 10724 => (R => 255, G => 0, B => 0), 10725 => (R => 255, G => 0, B => 0), 10726 => (R => 255, G => 0, B => 0), 10727 => (R => 255, G => 0, B => 0), 10728 => (R => 255, G => 0, B => 0), 10729 => (R => 255, G => 0, B => 0), 10730 => (R => 255, G => 0, B => 0), 10731 => (R => 255, G => 0, B => 0), 10732 => (R => 255, G => 0, B => 0), 10733 => (R => 255, G => 0, B => 0), 10734 => (R => 255, G => 0, B => 0), 10735 => (R => 255, G => 0, B => 0), 10736 => (R => 255, G => 0, B => 0), 10737 => (R => 255, G => 0, B => 0), 10738 => (R => 255, G => 0, B => 0), 10739 => (R => 255, G => 0, B => 0), 10740 => (R => 255, G => 0, B => 0), 10741 => (R => 255, G => 0, B => 0), 10742 => (R => 255, G => 0, B => 0), 10743 => (R => 255, G => 0, B => 0), 10744 => (R => 255, G => 0, B => 0), 10745 => (R => 255, G => 0, B => 0), 10746 => (R => 255, G => 0, B => 0), 10747 => (R => 255, G => 0, B => 0), 10748 => (R => 0, G => 0, B => 0), 10749 => (R => 0, G => 0, B => 0), 10750 => (R => 0, G => 0, B => 0), 10751 => (R => 0, G => 0, B => 0), 10752 => (R => 0, G => 0, B => 0), 10753 => (R => 0, G => 0, B => 0), 10754 => (R => 0, G => 0, B => 0), 10755 => (R => 0, G => 0, B => 0), 10756 => (R => 0, G => 0, B => 0), 10757 => (R => 0, G => 0, B => 0), 10758 => (R => 0, G => 0, B => 0), 10759 => (R => 0, G => 0, B => 0), 10760 => (R => 0, G => 0, B => 0), 10761 => (R => 0, G => 0, B => 0), 10762 => (R => 0, G => 0, B => 0), 10763 => (R => 0, G => 0, B => 0), 10764 => (R => 0, G => 0, B => 0), 10765 => (R => 0, G => 0, B => 0), 10766 => (R => 0, G => 0, B => 0), 10767 => (R => 0, G => 0, B => 0), 10768 => (R => 0, G => 0, B => 0), 10769 => (R => 0, G => 0, B => 0), 10770 => (R => 0, G => 0, B => 0), 10771 => (R => 0, G => 0, B => 0), 10772 => (R => 0, G => 0, B => 0), 10773 => (R => 0, G => 0, B => 0), 10774 => (R => 0, G => 0, B => 0), 10775 => (R => 0, G => 0, B => 0), 10776 => (R => 0, G => 0, B => 0), 10777 => (R => 0, G => 0, B => 0), 10778 => (R => 0, G => 0, B => 0), 10779 => (R => 0, G => 0, B => 0), 10780 => (R => 0, G => 0, B => 0), 10781 => (R => 0, G => 0, B => 0), 10782 => (R => 0, G => 0, B => 0), 10783 => (R => 0, G => 0, B => 0), 10784 => (R => 0, G => 0, B => 0), 10785 => (R => 0, G => 0, B => 0), 10786 => (R => 0, G => 0, B => 0), 10787 => (R => 0, G => 0, B => 0), 10788 => (R => 0, G => 0, B => 0), 10789 => (R => 0, G => 0, B => 0), 10790 => (R => 0, G => 0, B => 0), 10791 => (R => 0, G => 0, B => 0), 10792 => (R => 0, G => 0, B => 0), 10793 => (R => 0, G => 0, B => 0), 10794 => (R => 0, G => 0, B => 0), 10795 => (R => 0, G => 0, B => 0), 10796 => (R => 0, G => 0, B => 0), 10797 => (R => 0, G => 0, B => 0), 10798 => (R => 0, G => 0, B => 0), 10799 => (R => 0, G => 0, B => 0), 10800 => (R => 0, G => 0, B => 0), 10801 => (R => 0, G => 0, B => 0), 10802 => (R => 0, G => 0, B => 0), 10803 => (R => 0, G => 0, B => 0), 10804 => (R => 0, G => 0, B => 0), 10805 => (R => 0, G => 0, B => 0), 10806 => (R => 0, G => 0, B => 0), 10807 => (R => 0, G => 0, B => 0), 10808 => (R => 0, G => 0, B => 0), 10809 => (R => 0, G => 0, B => 0), 10810 => (R => 0, G => 0, B => 0), 10811 => (R => 0, G => 0, B => 0), 10812 => (R => 0, G => 0, B => 0), 10813 => (R => 0, G => 0, B => 0), 10814 => (R => 0, G => 0, B => 0), 10815 => (R => 0, G => 0, B => 0), 10816 => (R => 0, G => 0, B => 0), 10817 => (R => 0, G => 0, B => 0), 10818 => (R => 0, G => 0, B => 0), 10819 => (R => 0, G => 0, B => 0), 10820 => (R => 0, G => 0, B => 0), 10821 => (R => 0, G => 0, B => 0), 10822 => (R => 0, G => 0, B => 0), 10823 => (R => 0, G => 0, B => 0), 10824 => (R => 0, G => 0, B => 0), 10825 => (R => 0, G => 0, B => 0), 10826 => (R => 0, G => 0, B => 0), 10827 => (R => 0, G => 0, B => 0), 10828 => (R => 0, G => 0, B => 0), 10829 => (R => 0, G => 0, B => 0), 10830 => (R => 0, G => 0, B => 0), 10831 => (R => 0, G => 0, B => 0), 10832 => (R => 0, G => 0, B => 0), 10833 => (R => 0, G => 0, B => 0), 10834 => (R => 0, G => 0, B => 0), 10835 => (R => 0, G => 0, B => 0), 10836 => (R => 0, G => 0, B => 0), 10837 => (R => 0, G => 0, B => 0), 10838 => (R => 0, G => 0, B => 0), 10839 => (R => 0, G => 0, B => 0), 10840 => (R => 0, G => 0, B => 0), 10841 => (R => 0, G => 0, B => 0), 10842 => (R => 0, G => 0, B => 0), 10843 => (R => 0, G => 0, B => 0), 10844 => (R => 0, G => 0, B => 0), 10845 => (R => 0, G => 0, B => 0), 10846 => (R => 0, G => 0, B => 0), 10847 => (R => 0, G => 0, B => 0), 10848 => (R => 0, G => 0, B => 0), 10849 => (R => 0, G => 0, B => 0), 10850 => (R => 0, G => 0, B => 0), 10851 => (R => 0, G => 0, B => 0), 10852 => (R => 0, G => 0, B => 0), 10853 => (R => 0, G => 0, B => 0), 10854 => (R => 255, G => 0, B => 0), 10855 => (R => 255, G => 0, B => 0), 10856 => (R => 255, G => 0, B => 0), 10857 => (R => 255, G => 0, B => 0), 10858 => (R => 255, G => 0, B => 0), 10859 => (R => 255, G => 0, B => 0), 10860 => (R => 255, G => 0, B => 0), 10861 => (R => 255, G => 0, B => 0), 10862 => (R => 255, G => 0, B => 0), 10863 => (R => 255, G => 0, B => 0), 10864 => (R => 255, G => 0, B => 0), 10865 => (R => 255, G => 0, B => 0), 10866 => (R => 255, G => 0, B => 0), 10867 => (R => 255, G => 0, B => 0), 10868 => (R => 255, G => 0, B => 0), 10869 => (R => 255, G => 0, B => 0), 10870 => (R => 255, G => 0, B => 0), 10871 => (R => 255, G => 0, B => 0), 10872 => (R => 255, G => 0, B => 0), 10873 => (R => 255, G => 0, B => 0), 10874 => (R => 255, G => 0, B => 0), 10875 => (R => 255, G => 0, B => 0), 10876 => (R => 255, G => 0, B => 0), 10877 => (R => 255, G => 0, B => 0), 10878 => (R => 255, G => 0, B => 0), 10879 => (R => 255, G => 0, B => 0), 10880 => (R => 255, G => 0, B => 0), 10881 => (R => 255, G => 0, B => 0), 10882 => (R => 255, G => 0, B => 0), 10883 => (R => 255, G => 0, B => 0), 10884 => (R => 255, G => 0, B => 0), 10885 => (R => 255, G => 0, B => 0), 10886 => (R => 255, G => 0, B => 0), 10887 => (R => 255, G => 0, B => 0), 10888 => (R => 255, G => 0, B => 0), 10889 => (R => 255, G => 0, B => 0), 10890 => (R => 255, G => 0, B => 0), 10891 => (R => 255, G => 0, B => 0), 10892 => (R => 255, G => 0, B => 0), 10893 => (R => 255, G => 0, B => 0), 10894 => (R => 255, G => 0, B => 0), 10895 => (R => 255, G => 0, B => 0), 10896 => (R => 255, G => 0, B => 0), 10897 => (R => 255, G => 0, B => 0), 10898 => (R => 255, G => 0, B => 0), 10899 => (R => 255, G => 0, B => 0), 10900 => (R => 255, G => 0, B => 0), 10901 => (R => 255, G => 0, B => 0), 10902 => (R => 255, G => 0, B => 0), 10903 => (R => 255, G => 0, B => 0), 10904 => (R => 255, G => 0, B => 0), 10905 => (R => 255, G => 0, B => 0), 10906 => (R => 255, G => 0, B => 0), 10907 => (R => 255, G => 0, B => 0), 10908 => (R => 255, G => 0, B => 0), 10909 => (R => 255, G => 0, B => 0), 10910 => (R => 255, G => 0, B => 0), 10911 => (R => 255, G => 0, B => 0), 10912 => (R => 255, G => 0, B => 0), 10913 => (R => 255, G => 0, B => 0), 10914 => (R => 255, G => 0, B => 0), 10915 => (R => 255, G => 0, B => 0), 10916 => (R => 255, G => 0, B => 0), 10917 => (R => 255, G => 0, B => 0), 10918 => (R => 255, G => 0, B => 0), 10919 => (R => 255, G => 0, B => 0), 10920 => (R => 255, G => 0, B => 0), 10921 => (R => 255, G => 0, B => 0), 10922 => (R => 255, G => 0, B => 0), 10923 => (R => 255, G => 0, B => 0), 10924 => (R => 255, G => 0, B => 0), 10925 => (R => 255, G => 0, B => 0), 10926 => (R => 255, G => 0, B => 0), 10927 => (R => 255, G => 0, B => 0), 10928 => (R => 255, G => 0, B => 0), 10929 => (R => 255, G => 0, B => 0), 10930 => (R => 255, G => 0, B => 0), 10931 => (R => 255, G => 0, B => 0), 10932 => (R => 255, G => 0, B => 0), 10933 => (R => 255, G => 0, B => 0), 10934 => (R => 255, G => 0, B => 0), 10935 => (R => 255, G => 0, B => 0), 10936 => (R => 255, G => 0, B => 0), 10937 => (R => 255, G => 0, B => 0), 10938 => (R => 255, G => 0, B => 0), 10939 => (R => 255, G => 0, B => 0), 10940 => (R => 255, G => 0, B => 0), 10941 => (R => 255, G => 0, B => 0), 10942 => (R => 255, G => 0, B => 0), 10943 => (R => 255, G => 0, B => 0), 10944 => (R => 255, G => 0, B => 0), 10945 => (R => 255, G => 0, B => 0), 10946 => (R => 255, G => 0, B => 0), 10947 => (R => 0, G => 0, B => 0), 10948 => (R => 0, G => 0, B => 0), 10949 => (R => 0, G => 0, B => 0), 10950 => (R => 0, G => 0, B => 0), 10951 => (R => 0, G => 0, B => 0), 10952 => (R => 0, G => 0, B => 0), 10953 => (R => 0, G => 0, B => 0), 10954 => (R => 0, G => 0, B => 0), 10955 => (R => 0, G => 0, B => 0), 10956 => (R => 0, G => 0, B => 0), 10957 => (R => 0, G => 0, B => 0), 10958 => (R => 0, G => 0, B => 0), 10959 => (R => 0, G => 0, B => 0), 10960 => (R => 0, G => 0, B => 0), 10961 => (R => 0, G => 0, B => 0), 10962 => (R => 0, G => 0, B => 0), 10963 => (R => 0, G => 0, B => 0), 10964 => (R => 0, G => 0, B => 0), 10965 => (R => 0, G => 0, B => 0), 10966 => (R => 0, G => 0, B => 0), 10967 => (R => 0, G => 0, B => 0), 10968 => (R => 0, G => 0, B => 0), 10969 => (R => 0, G => 0, B => 0), 10970 => (R => 0, G => 0, B => 0), 10971 => (R => 0, G => 0, B => 0), 10972 => (R => 0, G => 0, B => 0), 10973 => (R => 0, G => 0, B => 0), 10974 => (R => 0, G => 0, B => 0), 10975 => (R => 0, G => 0, B => 0), 10976 => (R => 0, G => 0, B => 0), 10977 => (R => 0, G => 0, B => 0), 10978 => (R => 0, G => 0, B => 0), 10979 => (R => 0, G => 0, B => 0), 10980 => (R => 0, G => 0, B => 0), 10981 => (R => 0, G => 0, B => 0), 10982 => (R => 0, G => 0, B => 0), 10983 => (R => 0, G => 0, B => 0), 10984 => (R => 0, G => 0, B => 0), 10985 => (R => 0, G => 0, B => 0), 10986 => (R => 0, G => 0, B => 0), 10987 => (R => 0, G => 0, B => 0), 10988 => (R => 0, G => 0, B => 0), 10989 => (R => 0, G => 0, B => 0), 10990 => (R => 0, G => 0, B => 0), 10991 => (R => 0, G => 0, B => 0), 10992 => (R => 0, G => 0, B => 0), 10993 => (R => 0, G => 0, B => 0), 10994 => (R => 0, G => 0, B => 0), 10995 => (R => 0, G => 0, B => 0), 10996 => (R => 0, G => 0, B => 0), 10997 => (R => 0, G => 0, B => 0), 10998 => (R => 0, G => 0, B => 0), 10999 => (R => 0, G => 0, B => 0), 11000 => (R => 0, G => 0, B => 0), 11001 => (R => 0, G => 0, B => 0), 11002 => (R => 0, G => 0, B => 0), 11003 => (R => 0, G => 0, B => 0), 11004 => (R => 0, G => 0, B => 0), 11005 => (R => 0, G => 0, B => 0), 11006 => (R => 0, G => 0, B => 0), 11007 => (R => 0, G => 0, B => 0), 11008 => (R => 0, G => 0, B => 0), 11009 => (R => 0, G => 0, B => 0), 11010 => (R => 0, G => 0, B => 0), 11011 => (R => 0, G => 0, B => 0), 11012 => (R => 0, G => 0, B => 0), 11013 => (R => 0, G => 0, B => 0), 11014 => (R => 0, G => 0, B => 0), 11015 => (R => 0, G => 0, B => 0), 11016 => (R => 0, G => 0, B => 0), 11017 => (R => 0, G => 0, B => 0), 11018 => (R => 0, G => 0, B => 0), 11019 => (R => 0, G => 0, B => 0), 11020 => (R => 0, G => 0, B => 0), 11021 => (R => 0, G => 0, B => 0), 11022 => (R => 0, G => 0, B => 0), 11023 => (R => 0, G => 0, B => 0), 11024 => (R => 0, G => 0, B => 0), 11025 => (R => 0, G => 0, B => 0), 11026 => (R => 0, G => 0, B => 0), 11027 => (R => 0, G => 0, B => 0), 11028 => (R => 0, G => 0, B => 0), 11029 => (R => 0, G => 0, B => 0), 11030 => (R => 0, G => 0, B => 0), 11031 => (R => 0, G => 0, B => 0), 11032 => (R => 0, G => 0, B => 0), 11033 => (R => 0, G => 0, B => 0), 11034 => (R => 0, G => 0, B => 0), 11035 => (R => 0, G => 0, B => 0), 11036 => (R => 0, G => 0, B => 0), 11037 => (R => 0, G => 0, B => 0), 11038 => (R => 0, G => 0, B => 0), 11039 => (R => 0, G => 0, B => 0), 11040 => (R => 0, G => 0, B => 0), 11041 => (R => 0, G => 0, B => 0), 11042 => (R => 0, G => 0, B => 0), 11043 => (R => 0, G => 0, B => 0), 11044 => (R => 0, G => 0, B => 0), 11045 => (R => 0, G => 0, B => 0), 11046 => (R => 0, G => 0, B => 0), 11047 => (R => 0, G => 0, B => 0), 11048 => (R => 0, G => 0, B => 0), 11049 => (R => 0, G => 0, B => 0), 11050 => (R => 0, G => 0, B => 0), 11051 => (R => 0, G => 0, B => 0), 11052 => (R => 0, G => 0, B => 0), 11053 => (R => 0, G => 0, B => 0), 11054 => (R => 0, G => 0, B => 0), 11055 => (R => 255, G => 0, B => 0), 11056 => (R => 255, G => 0, B => 0), 11057 => (R => 255, G => 0, B => 0), 11058 => (R => 255, G => 0, B => 0), 11059 => (R => 255, G => 0, B => 0), 11060 => (R => 255, G => 0, B => 0), 11061 => (R => 255, G => 0, B => 0), 11062 => (R => 255, G => 0, B => 0), 11063 => (R => 255, G => 0, B => 0), 11064 => (R => 255, G => 0, B => 0), 11065 => (R => 255, G => 0, B => 0), 11066 => (R => 255, G => 0, B => 0), 11067 => (R => 255, G => 0, B => 0), 11068 => (R => 255, G => 0, B => 0), 11069 => (R => 255, G => 0, B => 0), 11070 => (R => 255, G => 0, B => 0), 11071 => (R => 255, G => 0, B => 0), 11072 => (R => 255, G => 0, B => 0), 11073 => (R => 255, G => 0, B => 0), 11074 => (R => 255, G => 0, B => 0), 11075 => (R => 255, G => 0, B => 0), 11076 => (R => 255, G => 0, B => 0), 11077 => (R => 255, G => 0, B => 0), 11078 => (R => 255, G => 0, B => 0), 11079 => (R => 255, G => 0, B => 0), 11080 => (R => 255, G => 0, B => 0), 11081 => (R => 255, G => 0, B => 0), 11082 => (R => 255, G => 0, B => 0), 11083 => (R => 255, G => 0, B => 0), 11084 => (R => 255, G => 0, B => 0), 11085 => (R => 255, G => 0, B => 0), 11086 => (R => 255, G => 0, B => 0), 11087 => (R => 255, G => 0, B => 0), 11088 => (R => 255, G => 0, B => 0), 11089 => (R => 255, G => 0, B => 0), 11090 => (R => 255, G => 0, B => 0), 11091 => (R => 255, G => 0, B => 0), 11092 => (R => 255, G => 0, B => 0), 11093 => (R => 255, G => 0, B => 0), 11094 => (R => 255, G => 0, B => 0), 11095 => (R => 255, G => 0, B => 0), 11096 => (R => 255, G => 0, B => 0), 11097 => (R => 255, G => 0, B => 0), 11098 => (R => 255, G => 0, B => 0), 11099 => (R => 255, G => 0, B => 0), 11100 => (R => 255, G => 0, B => 0), 11101 => (R => 255, G => 0, B => 0), 11102 => (R => 255, G => 0, B => 0), 11103 => (R => 255, G => 0, B => 0), 11104 => (R => 255, G => 0, B => 0), 11105 => (R => 255, G => 0, B => 0), 11106 => (R => 255, G => 0, B => 0), 11107 => (R => 255, G => 0, B => 0), 11108 => (R => 255, G => 0, B => 0), 11109 => (R => 255, G => 0, B => 0), 11110 => (R => 255, G => 0, B => 0), 11111 => (R => 255, G => 0, B => 0), 11112 => (R => 255, G => 0, B => 0), 11113 => (R => 255, G => 0, B => 0), 11114 => (R => 255, G => 0, B => 0), 11115 => (R => 255, G => 0, B => 0), 11116 => (R => 255, G => 0, B => 0), 11117 => (R => 255, G => 0, B => 0), 11118 => (R => 255, G => 0, B => 0), 11119 => (R => 255, G => 0, B => 0), 11120 => (R => 255, G => 0, B => 0), 11121 => (R => 255, G => 0, B => 0), 11122 => (R => 255, G => 0, B => 0), 11123 => (R => 255, G => 0, B => 0), 11124 => (R => 255, G => 0, B => 0), 11125 => (R => 255, G => 0, B => 0), 11126 => (R => 255, G => 0, B => 0), 11127 => (R => 255, G => 0, B => 0), 11128 => (R => 255, G => 0, B => 0), 11129 => (R => 255, G => 0, B => 0), 11130 => (R => 255, G => 0, B => 0), 11131 => (R => 255, G => 0, B => 0), 11132 => (R => 255, G => 0, B => 0), 11133 => (R => 255, G => 0, B => 0), 11134 => (R => 255, G => 0, B => 0), 11135 => (R => 255, G => 0, B => 0), 11136 => (R => 255, G => 0, B => 0), 11137 => (R => 255, G => 0, B => 0), 11138 => (R => 255, G => 0, B => 0), 11139 => (R => 255, G => 0, B => 0), 11140 => (R => 255, G => 0, B => 0), 11141 => (R => 255, G => 0, B => 0), 11142 => (R => 255, G => 0, B => 0), 11143 => (R => 255, G => 0, B => 0), 11144 => (R => 255, G => 0, B => 0), 11145 => (R => 255, G => 0, B => 0), 11146 => (R => 0, G => 0, B => 0), 11147 => (R => 0, G => 0, B => 0), 11148 => (R => 0, G => 0, B => 0), 11149 => (R => 0, G => 0, B => 0), 11150 => (R => 0, G => 0, B => 0), 11151 => (R => 0, G => 0, B => 0), 11152 => (R => 0, G => 0, B => 0), 11153 => (R => 0, G => 0, B => 0), 11154 => (R => 0, G => 0, B => 0), 11155 => (R => 0, G => 0, B => 0), 11156 => (R => 0, G => 0, B => 0), 11157 => (R => 0, G => 0, B => 0), 11158 => (R => 0, G => 0, B => 0), 11159 => (R => 0, G => 0, B => 0), 11160 => (R => 0, G => 0, B => 0), 11161 => (R => 0, G => 0, B => 0), 11162 => (R => 0, G => 0, B => 0), 11163 => (R => 0, G => 0, B => 0), 11164 => (R => 0, G => 0, B => 0), 11165 => (R => 0, G => 0, B => 0), 11166 => (R => 0, G => 0, B => 0), 11167 => (R => 0, G => 0, B => 0), 11168 => (R => 0, G => 0, B => 0), 11169 => (R => 0, G => 0, B => 0), 11170 => (R => 0, G => 0, B => 0), 11171 => (R => 0, G => 0, B => 0), 11172 => (R => 0, G => 0, B => 0), 11173 => (R => 0, G => 0, B => 0), 11174 => (R => 0, G => 0, B => 0), 11175 => (R => 0, G => 0, B => 0), 11176 => (R => 0, G => 0, B => 0), 11177 => (R => 0, G => 0, B => 0), 11178 => (R => 0, G => 0, B => 0), 11179 => (R => 0, G => 0, B => 0), 11180 => (R => 0, G => 0, B => 0), 11181 => (R => 0, G => 0, B => 0), 11182 => (R => 0, G => 0, B => 0), 11183 => (R => 0, G => 0, B => 0), 11184 => (R => 0, G => 0, B => 0), 11185 => (R => 0, G => 0, B => 0), 11186 => (R => 0, G => 0, B => 0), 11187 => (R => 0, G => 0, B => 0), 11188 => (R => 0, G => 0, B => 0), 11189 => (R => 0, G => 0, B => 0), 11190 => (R => 0, G => 0, B => 0), 11191 => (R => 0, G => 0, B => 0), 11192 => (R => 0, G => 0, B => 0), 11193 => (R => 0, G => 0, B => 0), 11194 => (R => 0, G => 0, B => 0), 11195 => (R => 0, G => 0, B => 0), 11196 => (R => 0, G => 0, B => 0), 11197 => (R => 0, G => 0, B => 0), 11198 => (R => 0, G => 0, B => 0), 11199 => (R => 0, G => 0, B => 0), 11200 => (R => 0, G => 0, B => 0), 11201 => (R => 0, G => 0, B => 0), 11202 => (R => 0, G => 0, B => 0), 11203 => (R => 0, G => 0, B => 0), 11204 => (R => 0, G => 0, B => 0), 11205 => (R => 0, G => 0, B => 0), 11206 => (R => 0, G => 0, B => 0), 11207 => (R => 0, G => 0, B => 0), 11208 => (R => 0, G => 0, B => 0), 11209 => (R => 0, G => 0, B => 0), 11210 => (R => 0, G => 0, B => 0), 11211 => (R => 0, G => 0, B => 0), 11212 => (R => 0, G => 0, B => 0), 11213 => (R => 0, G => 0, B => 0), 11214 => (R => 0, G => 0, B => 0), 11215 => (R => 0, G => 0, B => 0), 11216 => (R => 0, G => 0, B => 0), 11217 => (R => 0, G => 0, B => 0), 11218 => (R => 0, G => 0, B => 0), 11219 => (R => 0, G => 0, B => 0), 11220 => (R => 0, G => 0, B => 0), 11221 => (R => 0, G => 0, B => 0), 11222 => (R => 0, G => 0, B => 0), 11223 => (R => 0, G => 0, B => 0), 11224 => (R => 0, G => 0, B => 0), 11225 => (R => 0, G => 0, B => 0), 11226 => (R => 0, G => 0, B => 0), 11227 => (R => 0, G => 0, B => 0), 11228 => (R => 0, G => 0, B => 0), 11229 => (R => 0, G => 0, B => 0), 11230 => (R => 0, G => 0, B => 0), 11231 => (R => 0, G => 0, B => 0), 11232 => (R => 0, G => 0, B => 0), 11233 => (R => 0, G => 0, B => 0), 11234 => (R => 0, G => 0, B => 0), 11235 => (R => 0, G => 0, B => 0), 11236 => (R => 0, G => 0, B => 0), 11237 => (R => 0, G => 0, B => 0), 11238 => (R => 0, G => 0, B => 0), 11239 => (R => 0, G => 0, B => 0), 11240 => (R => 0, G => 0, B => 0), 11241 => (R => 0, G => 0, B => 0), 11242 => (R => 0, G => 0, B => 0), 11243 => (R => 0, G => 0, B => 0), 11244 => (R => 0, G => 0, B => 0), 11245 => (R => 0, G => 0, B => 0), 11246 => (R => 0, G => 0, B => 0), 11247 => (R => 0, G => 0, B => 0), 11248 => (R => 0, G => 0, B => 0), 11249 => (R => 0, G => 0, B => 0), 11250 => (R => 0, G => 0, B => 0), 11251 => (R => 0, G => 0, B => 0), 11252 => (R => 0, G => 0, B => 0), 11253 => (R => 0, G => 0, B => 0), 11254 => (R => 0, G => 0, B => 0), 11255 => (R => 0, G => 0, B => 0), 11256 => (R => 255, G => 0, B => 0), 11257 => (R => 255, G => 0, B => 0), 11258 => (R => 255, G => 0, B => 0), 11259 => (R => 255, G => 0, B => 0), 11260 => (R => 255, G => 0, B => 0), 11261 => (R => 255, G => 0, B => 0), 11262 => (R => 255, G => 0, B => 0), 11263 => (R => 255, G => 0, B => 0), 11264 => (R => 255, G => 0, B => 0), 11265 => (R => 255, G => 0, B => 0), 11266 => (R => 255, G => 0, B => 0), 11267 => (R => 255, G => 0, B => 0), 11268 => (R => 255, G => 0, B => 0), 11269 => (R => 255, G => 0, B => 0), 11270 => (R => 255, G => 0, B => 0), 11271 => (R => 255, G => 0, B => 0), 11272 => (R => 255, G => 0, B => 0), 11273 => (R => 255, G => 0, B => 0), 11274 => (R => 255, G => 0, B => 0), 11275 => (R => 255, G => 0, B => 0), 11276 => (R => 255, G => 0, B => 0), 11277 => (R => 255, G => 0, B => 0), 11278 => (R => 255, G => 0, B => 0), 11279 => (R => 255, G => 0, B => 0), 11280 => (R => 255, G => 0, B => 0), 11281 => (R => 255, G => 0, B => 0), 11282 => (R => 255, G => 0, B => 0), 11283 => (R => 255, G => 0, B => 0), 11284 => (R => 255, G => 0, B => 0), 11285 => (R => 255, G => 0, B => 0), 11286 => (R => 255, G => 0, B => 0), 11287 => (R => 255, G => 0, B => 0), 11288 => (R => 255, G => 0, B => 0), 11289 => (R => 255, G => 0, B => 0), 11290 => (R => 255, G => 0, B => 0), 11291 => (R => 255, G => 0, B => 0), 11292 => (R => 255, G => 0, B => 0), 11293 => (R => 255, G => 0, B => 0), 11294 => (R => 255, G => 0, B => 0), 11295 => (R => 255, G => 0, B => 0), 11296 => (R => 255, G => 0, B => 0), 11297 => (R => 255, G => 0, B => 0), 11298 => (R => 255, G => 0, B => 0), 11299 => (R => 255, G => 0, B => 0), 11300 => (R => 255, G => 0, B => 0), 11301 => (R => 255, G => 0, B => 0), 11302 => (R => 255, G => 0, B => 0), 11303 => (R => 255, G => 0, B => 0), 11304 => (R => 255, G => 0, B => 0), 11305 => (R => 255, G => 0, B => 0), 11306 => (R => 255, G => 0, B => 0), 11307 => (R => 255, G => 0, B => 0), 11308 => (R => 255, G => 0, B => 0), 11309 => (R => 255, G => 0, B => 0), 11310 => (R => 255, G => 0, B => 0), 11311 => (R => 255, G => 0, B => 0), 11312 => (R => 255, G => 0, B => 0), 11313 => (R => 255, G => 0, B => 0), 11314 => (R => 255, G => 0, B => 0), 11315 => (R => 255, G => 0, B => 0), 11316 => (R => 255, G => 0, B => 0), 11317 => (R => 255, G => 0, B => 0), 11318 => (R => 255, G => 0, B => 0), 11319 => (R => 255, G => 0, B => 0), 11320 => (R => 255, G => 0, B => 0), 11321 => (R => 255, G => 0, B => 0), 11322 => (R => 255, G => 0, B => 0), 11323 => (R => 255, G => 0, B => 0), 11324 => (R => 255, G => 0, B => 0), 11325 => (R => 255, G => 0, B => 0), 11326 => (R => 255, G => 0, B => 0), 11327 => (R => 255, G => 0, B => 0), 11328 => (R => 255, G => 0, B => 0), 11329 => (R => 255, G => 0, B => 0), 11330 => (R => 255, G => 0, B => 0), 11331 => (R => 255, G => 0, B => 0), 11332 => (R => 255, G => 0, B => 0), 11333 => (R => 255, G => 0, B => 0), 11334 => (R => 255, G => 0, B => 0), 11335 => (R => 255, G => 0, B => 0), 11336 => (R => 255, G => 0, B => 0), 11337 => (R => 255, G => 0, B => 0), 11338 => (R => 255, G => 0, B => 0), 11339 => (R => 255, G => 0, B => 0), 11340 => (R => 255, G => 0, B => 0), 11341 => (R => 255, G => 0, B => 0), 11342 => (R => 255, G => 0, B => 0), 11343 => (R => 255, G => 0, B => 0), 11344 => (R => 255, G => 0, B => 0), 11345 => (R => 0, G => 0, B => 0), 11346 => (R => 0, G => 0, B => 0), 11347 => (R => 0, G => 0, B => 0), 11348 => (R => 0, G => 0, B => 0), 11349 => (R => 0, G => 0, B => 0), 11350 => (R => 0, G => 0, B => 0), 11351 => (R => 0, G => 0, B => 0), 11352 => (R => 0, G => 0, B => 0), 11353 => (R => 0, G => 0, B => 0), 11354 => (R => 0, G => 0, B => 0), 11355 => (R => 0, G => 0, B => 0), 11356 => (R => 0, G => 0, B => 0), 11357 => (R => 0, G => 0, B => 0), 11358 => (R => 0, G => 0, B => 0), 11359 => (R => 0, G => 0, B => 0), 11360 => (R => 0, G => 0, B => 0), 11361 => (R => 0, G => 0, B => 0), 11362 => (R => 0, G => 0, B => 0), 11363 => (R => 0, G => 0, B => 0), 11364 => (R => 0, G => 0, B => 0), 11365 => (R => 0, G => 0, B => 0), 11366 => (R => 0, G => 0, B => 0), 11367 => (R => 0, G => 0, B => 0), 11368 => (R => 0, G => 0, B => 0), 11369 => (R => 0, G => 0, B => 0), 11370 => (R => 0, G => 0, B => 0), 11371 => (R => 0, G => 0, B => 0), 11372 => (R => 0, G => 0, B => 0), 11373 => (R => 0, G => 0, B => 0), 11374 => (R => 0, G => 0, B => 0), 11375 => (R => 0, G => 0, B => 0), 11376 => (R => 0, G => 0, B => 0), 11377 => (R => 0, G => 0, B => 0), 11378 => (R => 0, G => 0, B => 0), 11379 => (R => 0, G => 0, B => 0), 11380 => (R => 0, G => 0, B => 0), 11381 => (R => 0, G => 0, B => 0), 11382 => (R => 0, G => 0, B => 0), 11383 => (R => 0, G => 0, B => 0), 11384 => (R => 0, G => 0, B => 0), 11385 => (R => 0, G => 0, B => 0), 11386 => (R => 0, G => 0, B => 0), 11387 => (R => 0, G => 0, B => 0), 11388 => (R => 0, G => 0, B => 0), 11389 => (R => 0, G => 0, B => 0), 11390 => (R => 0, G => 0, B => 0), 11391 => (R => 0, G => 0, B => 0), 11392 => (R => 0, G => 0, B => 0), 11393 => (R => 0, G => 0, B => 0), 11394 => (R => 0, G => 0, B => 0), 11395 => (R => 0, G => 0, B => 0), 11396 => (R => 0, G => 0, B => 0), 11397 => (R => 0, G => 0, B => 0), 11398 => (R => 0, G => 0, B => 0), 11399 => (R => 0, G => 0, B => 0), 11400 => (R => 0, G => 0, B => 0), 11401 => (R => 0, G => 0, B => 0), 11402 => (R => 0, G => 0, B => 0), 11403 => (R => 0, G => 0, B => 0), 11404 => (R => 0, G => 0, B => 0), 11405 => (R => 0, G => 0, B => 0), 11406 => (R => 0, G => 0, B => 0), 11407 => (R => 0, G => 0, B => 0), 11408 => (R => 0, G => 0, B => 0), 11409 => (R => 0, G => 0, B => 0), 11410 => (R => 0, G => 0, B => 0), 11411 => (R => 0, G => 0, B => 0), 11412 => (R => 0, G => 0, B => 0), 11413 => (R => 0, G => 0, B => 0), 11414 => (R => 0, G => 0, B => 0), 11415 => (R => 0, G => 0, B => 0), 11416 => (R => 0, G => 0, B => 0), 11417 => (R => 0, G => 0, B => 0), 11418 => (R => 0, G => 0, B => 0), 11419 => (R => 0, G => 0, B => 0), 11420 => (R => 0, G => 0, B => 0), 11421 => (R => 0, G => 0, B => 0), 11422 => (R => 0, G => 0, B => 0), 11423 => (R => 0, G => 0, B => 0), 11424 => (R => 0, G => 0, B => 0), 11425 => (R => 0, G => 0, B => 0), 11426 => (R => 0, G => 0, B => 0), 11427 => (R => 0, G => 0, B => 0), 11428 => (R => 0, G => 0, B => 0), 11429 => (R => 0, G => 0, B => 0), 11430 => (R => 0, G => 0, B => 0), 11431 => (R => 0, G => 0, B => 0), 11432 => (R => 0, G => 0, B => 0), 11433 => (R => 0, G => 0, B => 0), 11434 => (R => 0, G => 0, B => 0), 11435 => (R => 0, G => 0, B => 0), 11436 => (R => 0, G => 0, B => 0), 11437 => (R => 0, G => 0, B => 0), 11438 => (R => 0, G => 0, B => 0), 11439 => (R => 0, G => 0, B => 0), 11440 => (R => 0, G => 0, B => 0), 11441 => (R => 0, G => 0, B => 0), 11442 => (R => 0, G => 0, B => 0), 11443 => (R => 0, G => 0, B => 0), 11444 => (R => 0, G => 0, B => 0), 11445 => (R => 0, G => 0, B => 0), 11446 => (R => 0, G => 0, B => 0), 11447 => (R => 0, G => 0, B => 0), 11448 => (R => 0, G => 0, B => 0), 11449 => (R => 0, G => 0, B => 0), 11450 => (R => 0, G => 0, B => 0), 11451 => (R => 0, G => 0, B => 0), 11452 => (R => 0, G => 0, B => 0), 11453 => (R => 0, G => 0, B => 0), 11454 => (R => 0, G => 0, B => 0), 11455 => (R => 0, G => 0, B => 0), 11456 => (R => 0, G => 0, B => 0), 11457 => (R => 255, G => 0, B => 0), 11458 => (R => 255, G => 0, B => 0), 11459 => (R => 255, G => 0, B => 0), 11460 => (R => 255, G => 0, B => 0), 11461 => (R => 255, G => 0, B => 0), 11462 => (R => 255, G => 0, B => 0), 11463 => (R => 255, G => 0, B => 0), 11464 => (R => 255, G => 0, B => 0), 11465 => (R => 255, G => 0, B => 0), 11466 => (R => 255, G => 0, B => 0), 11467 => (R => 255, G => 0, B => 0), 11468 => (R => 255, G => 0, B => 0), 11469 => (R => 255, G => 0, B => 0), 11470 => (R => 255, G => 0, B => 0), 11471 => (R => 255, G => 0, B => 0), 11472 => (R => 255, G => 0, B => 0), 11473 => (R => 255, G => 0, B => 0), 11474 => (R => 255, G => 0, B => 0), 11475 => (R => 255, G => 0, B => 0), 11476 => (R => 255, G => 0, B => 0), 11477 => (R => 255, G => 0, B => 0), 11478 => (R => 255, G => 0, B => 0), 11479 => (R => 255, G => 0, B => 0), 11480 => (R => 255, G => 0, B => 0), 11481 => (R => 255, G => 0, B => 0), 11482 => (R => 255, G => 0, B => 0), 11483 => (R => 255, G => 0, B => 0), 11484 => (R => 255, G => 0, B => 0), 11485 => (R => 255, G => 0, B => 0), 11486 => (R => 255, G => 0, B => 0), 11487 => (R => 255, G => 0, B => 0), 11488 => (R => 255, G => 0, B => 0), 11489 => (R => 255, G => 0, B => 0), 11490 => (R => 255, G => 0, B => 0), 11491 => (R => 255, G => 0, B => 0), 11492 => (R => 255, G => 0, B => 0), 11493 => (R => 255, G => 0, B => 0), 11494 => (R => 255, G => 0, B => 0), 11495 => (R => 255, G => 0, B => 0), 11496 => (R => 255, G => 0, B => 0), 11497 => (R => 255, G => 0, B => 0), 11498 => (R => 255, G => 0, B => 0), 11499 => (R => 255, G => 0, B => 0), 11500 => (R => 255, G => 0, B => 0), 11501 => (R => 255, G => 0, B => 0), 11502 => (R => 255, G => 0, B => 0), 11503 => (R => 255, G => 0, B => 0), 11504 => (R => 255, G => 0, B => 0), 11505 => (R => 255, G => 0, B => 0), 11506 => (R => 255, G => 0, B => 0), 11507 => (R => 255, G => 0, B => 0), 11508 => (R => 255, G => 0, B => 0), 11509 => (R => 255, G => 0, B => 0), 11510 => (R => 255, G => 0, B => 0), 11511 => (R => 255, G => 0, B => 0), 11512 => (R => 255, G => 0, B => 0), 11513 => (R => 255, G => 0, B => 0), 11514 => (R => 255, G => 0, B => 0), 11515 => (R => 255, G => 0, B => 0), 11516 => (R => 255, G => 0, B => 0), 11517 => (R => 255, G => 0, B => 0), 11518 => (R => 255, G => 0, B => 0), 11519 => (R => 255, G => 0, B => 0), 11520 => (R => 255, G => 0, B => 0), 11521 => (R => 255, G => 0, B => 0), 11522 => (R => 255, G => 0, B => 0), 11523 => (R => 255, G => 0, B => 0), 11524 => (R => 255, G => 0, B => 0), 11525 => (R => 255, G => 0, B => 0), 11526 => (R => 255, G => 0, B => 0), 11527 => (R => 255, G => 0, B => 0), 11528 => (R => 255, G => 0, B => 0), 11529 => (R => 255, G => 0, B => 0), 11530 => (R => 255, G => 0, B => 0), 11531 => (R => 255, G => 0, B => 0), 11532 => (R => 255, G => 0, B => 0), 11533 => (R => 255, G => 0, B => 0), 11534 => (R => 255, G => 0, B => 0), 11535 => (R => 255, G => 0, B => 0), 11536 => (R => 255, G => 0, B => 0), 11537 => (R => 255, G => 0, B => 0), 11538 => (R => 255, G => 0, B => 0), 11539 => (R => 255, G => 0, B => 0), 11540 => (R => 255, G => 0, B => 0), 11541 => (R => 255, G => 0, B => 0), 11542 => (R => 255, G => 0, B => 0), 11543 => (R => 255, G => 0, B => 0), 11544 => (R => 0, G => 0, B => 0), 11545 => (R => 0, G => 0, B => 0), 11546 => (R => 0, G => 0, B => 0), 11547 => (R => 0, G => 0, B => 0), 11548 => (R => 0, G => 0, B => 0), 11549 => (R => 0, G => 0, B => 0), 11550 => (R => 0, G => 0, B => 0), 11551 => (R => 0, G => 0, B => 0), 11552 => (R => 0, G => 0, B => 0), 11553 => (R => 0, G => 0, B => 0), 11554 => (R => 0, G => 0, B => 0), 11555 => (R => 0, G => 0, B => 0), 11556 => (R => 0, G => 0, B => 0), 11557 => (R => 0, G => 0, B => 0), 11558 => (R => 0, G => 0, B => 0), 11559 => (R => 0, G => 0, B => 0), 11560 => (R => 0, G => 0, B => 0), 11561 => (R => 0, G => 0, B => 0), 11562 => (R => 0, G => 0, B => 0), 11563 => (R => 0, G => 0, B => 0), 11564 => (R => 0, G => 0, B => 0), 11565 => (R => 0, G => 0, B => 0), 11566 => (R => 0, G => 0, B => 0), 11567 => (R => 0, G => 0, B => 0), 11568 => (R => 0, G => 0, B => 0), 11569 => (R => 0, G => 0, B => 0), 11570 => (R => 0, G => 0, B => 0), 11571 => (R => 0, G => 0, B => 0), 11572 => (R => 0, G => 0, B => 0), 11573 => (R => 0, G => 0, B => 0), 11574 => (R => 0, G => 0, B => 0), 11575 => (R => 0, G => 0, B => 0), 11576 => (R => 0, G => 0, B => 0), 11577 => (R => 0, G => 0, B => 0), 11578 => (R => 0, G => 0, B => 0), 11579 => (R => 0, G => 0, B => 0), 11580 => (R => 0, G => 0, B => 0), 11581 => (R => 0, G => 0, B => 0), 11582 => (R => 0, G => 0, B => 0), 11583 => (R => 0, G => 0, B => 0), 11584 => (R => 0, G => 0, B => 0), 11585 => (R => 0, G => 0, B => 0), 11586 => (R => 0, G => 0, B => 0), 11587 => (R => 0, G => 0, B => 0), 11588 => (R => 0, G => 0, B => 0), 11589 => (R => 0, G => 0, B => 0), 11590 => (R => 0, G => 0, B => 0), 11591 => (R => 0, G => 0, B => 0), 11592 => (R => 0, G => 0, B => 0), 11593 => (R => 0, G => 0, B => 0), 11594 => (R => 0, G => 0, B => 0), 11595 => (R => 0, G => 0, B => 0), 11596 => (R => 0, G => 0, B => 0), 11597 => (R => 0, G => 0, B => 0), 11598 => (R => 0, G => 0, B => 0), 11599 => (R => 0, G => 0, B => 0), 11600 => (R => 0, G => 0, B => 0), 11601 => (R => 0, G => 0, B => 0), 11602 => (R => 0, G => 0, B => 0), 11603 => (R => 0, G => 0, B => 0), 11604 => (R => 0, G => 0, B => 0), 11605 => (R => 0, G => 0, B => 0), 11606 => (R => 0, G => 0, B => 0), 11607 => (R => 0, G => 0, B => 0), 11608 => (R => 0, G => 0, B => 0), 11609 => (R => 0, G => 0, B => 0), 11610 => (R => 0, G => 0, B => 0), 11611 => (R => 0, G => 0, B => 0), 11612 => (R => 0, G => 0, B => 0), 11613 => (R => 0, G => 0, B => 0), 11614 => (R => 0, G => 0, B => 0), 11615 => (R => 0, G => 0, B => 0), 11616 => (R => 0, G => 0, B => 0), 11617 => (R => 0, G => 0, B => 0), 11618 => (R => 0, G => 0, B => 0), 11619 => (R => 0, G => 0, B => 0), 11620 => (R => 0, G => 0, B => 0), 11621 => (R => 0, G => 0, B => 0), 11622 => (R => 0, G => 0, B => 0), 11623 => (R => 0, G => 0, B => 0), 11624 => (R => 0, G => 0, B => 0), 11625 => (R => 0, G => 0, B => 0), 11626 => (R => 0, G => 0, B => 0), 11627 => (R => 0, G => 0, B => 0), 11628 => (R => 0, G => 0, B => 0), 11629 => (R => 0, G => 0, B => 0), 11630 => (R => 0, G => 0, B => 0), 11631 => (R => 0, G => 0, B => 0), 11632 => (R => 0, G => 0, B => 0), 11633 => (R => 0, G => 0, B => 0), 11634 => (R => 0, G => 0, B => 0), 11635 => (R => 0, G => 0, B => 0), 11636 => (R => 0, G => 0, B => 0), 11637 => (R => 0, G => 0, B => 0), 11638 => (R => 0, G => 0, B => 0), 11639 => (R => 0, G => 0, B => 0), 11640 => (R => 0, G => 0, B => 0), 11641 => (R => 0, G => 0, B => 0), 11642 => (R => 0, G => 0, B => 0), 11643 => (R => 0, G => 0, B => 0), 11644 => (R => 0, G => 0, B => 0), 11645 => (R => 0, G => 0, B => 0), 11646 => (R => 0, G => 0, B => 0), 11647 => (R => 0, G => 0, B => 0), 11648 => (R => 0, G => 0, B => 0), 11649 => (R => 0, G => 0, B => 0), 11650 => (R => 0, G => 0, B => 0), 11651 => (R => 0, G => 0, B => 0), 11652 => (R => 0, G => 0, B => 0), 11653 => (R => 0, G => 0, B => 0), 11654 => (R => 0, G => 0, B => 0), 11655 => (R => 0, G => 0, B => 0), 11656 => (R => 0, G => 0, B => 0), 11657 => (R => 0, G => 0, B => 0), 11658 => (R => 255, G => 0, B => 0), 11659 => (R => 255, G => 0, B => 0), 11660 => (R => 255, G => 0, B => 0), 11661 => (R => 255, G => 0, B => 0), 11662 => (R => 255, G => 0, B => 0), 11663 => (R => 255, G => 0, B => 0), 11664 => (R => 255, G => 0, B => 0), 11665 => (R => 255, G => 0, B => 0), 11666 => (R => 255, G => 0, B => 0), 11667 => (R => 255, G => 0, B => 0), 11668 => (R => 255, G => 0, B => 0), 11669 => (R => 255, G => 0, B => 0), 11670 => (R => 255, G => 0, B => 0), 11671 => (R => 255, G => 0, B => 0), 11672 => (R => 255, G => 0, B => 0), 11673 => (R => 255, G => 0, B => 0), 11674 => (R => 255, G => 0, B => 0), 11675 => (R => 255, G => 0, B => 0), 11676 => (R => 255, G => 0, B => 0), 11677 => (R => 255, G => 0, B => 0), 11678 => (R => 255, G => 0, B => 0), 11679 => (R => 255, G => 0, B => 0), 11680 => (R => 255, G => 0, B => 0), 11681 => (R => 255, G => 0, B => 0), 11682 => (R => 255, G => 0, B => 0), 11683 => (R => 255, G => 0, B => 0), 11684 => (R => 255, G => 0, B => 0), 11685 => (R => 255, G => 0, B => 0), 11686 => (R => 255, G => 0, B => 0), 11687 => (R => 255, G => 0, B => 0), 11688 => (R => 255, G => 0, B => 0), 11689 => (R => 255, G => 0, B => 0), 11690 => (R => 255, G => 0, B => 0), 11691 => (R => 255, G => 0, B => 0), 11692 => (R => 255, G => 0, B => 0), 11693 => (R => 255, G => 0, B => 0), 11694 => (R => 255, G => 0, B => 0), 11695 => (R => 255, G => 0, B => 0), 11696 => (R => 255, G => 0, B => 0), 11697 => (R => 255, G => 0, B => 0), 11698 => (R => 255, G => 0, B => 0), 11699 => (R => 255, G => 0, B => 0), 11700 => (R => 255, G => 0, B => 0), 11701 => (R => 255, G => 0, B => 0), 11702 => (R => 255, G => 0, B => 0), 11703 => (R => 255, G => 0, B => 0), 11704 => (R => 255, G => 0, B => 0), 11705 => (R => 255, G => 0, B => 0), 11706 => (R => 255, G => 0, B => 0), 11707 => (R => 255, G => 0, B => 0), 11708 => (R => 255, G => 0, B => 0), 11709 => (R => 255, G => 0, B => 0), 11710 => (R => 255, G => 0, B => 0), 11711 => (R => 255, G => 0, B => 0), 11712 => (R => 255, G => 0, B => 0), 11713 => (R => 255, G => 0, B => 0), 11714 => (R => 255, G => 0, B => 0), 11715 => (R => 255, G => 0, B => 0), 11716 => (R => 255, G => 0, B => 0), 11717 => (R => 255, G => 0, B => 0), 11718 => (R => 255, G => 0, B => 0), 11719 => (R => 255, G => 0, B => 0), 11720 => (R => 255, G => 0, B => 0), 11721 => (R => 255, G => 0, B => 0), 11722 => (R => 255, G => 0, B => 0), 11723 => (R => 255, G => 0, B => 0), 11724 => (R => 255, G => 0, B => 0), 11725 => (R => 255, G => 0, B => 0), 11726 => (R => 255, G => 0, B => 0), 11727 => (R => 255, G => 0, B => 0), 11728 => (R => 255, G => 0, B => 0), 11729 => (R => 255, G => 0, B => 0), 11730 => (R => 255, G => 0, B => 0), 11731 => (R => 255, G => 0, B => 0), 11732 => (R => 255, G => 0, B => 0), 11733 => (R => 255, G => 0, B => 0), 11734 => (R => 255, G => 0, B => 0), 11735 => (R => 255, G => 0, B => 0), 11736 => (R => 255, G => 0, B => 0), 11737 => (R => 255, G => 0, B => 0), 11738 => (R => 255, G => 0, B => 0), 11739 => (R => 255, G => 0, B => 0), 11740 => (R => 255, G => 0, B => 0), 11741 => (R => 255, G => 0, B => 0), 11742 => (R => 255, G => 0, B => 0), 11743 => (R => 0, G => 0, B => 0), 11744 => (R => 0, G => 0, B => 0), 11745 => (R => 0, G => 0, B => 0), 11746 => (R => 0, G => 0, B => 0), 11747 => (R => 0, G => 0, B => 0), 11748 => (R => 0, G => 0, B => 0), 11749 => (R => 0, G => 0, B => 0), 11750 => (R => 0, G => 0, B => 0), 11751 => (R => 0, G => 0, B => 0), 11752 => (R => 0, G => 0, B => 0), 11753 => (R => 0, G => 0, B => 0), 11754 => (R => 0, G => 0, B => 0), 11755 => (R => 0, G => 0, B => 0), 11756 => (R => 0, G => 0, B => 0), 11757 => (R => 0, G => 0, B => 0), 11758 => (R => 0, G => 0, B => 0), 11759 => (R => 0, G => 0, B => 0), 11760 => (R => 0, G => 0, B => 0), 11761 => (R => 0, G => 0, B => 0), 11762 => (R => 0, G => 0, B => 0), 11763 => (R => 0, G => 0, B => 0), 11764 => (R => 0, G => 0, B => 0), 11765 => (R => 0, G => 0, B => 0), 11766 => (R => 0, G => 0, B => 0), 11767 => (R => 0, G => 0, B => 0), 11768 => (R => 0, G => 0, B => 0), 11769 => (R => 0, G => 0, B => 0), 11770 => (R => 0, G => 0, B => 0), 11771 => (R => 0, G => 0, B => 0), 11772 => (R => 0, G => 0, B => 0), 11773 => (R => 0, G => 0, B => 0), 11774 => (R => 0, G => 0, B => 0), 11775 => (R => 0, G => 0, B => 0), 11776 => (R => 0, G => 0, B => 0), 11777 => (R => 0, G => 0, B => 0), 11778 => (R => 0, G => 0, B => 0), 11779 => (R => 0, G => 0, B => 0), 11780 => (R => 0, G => 0, B => 0), 11781 => (R => 0, G => 0, B => 0), 11782 => (R => 0, G => 0, B => 0), 11783 => (R => 0, G => 0, B => 0), 11784 => (R => 0, G => 0, B => 0), 11785 => (R => 0, G => 0, B => 0), 11786 => (R => 0, G => 0, B => 0), 11787 => (R => 0, G => 0, B => 0), 11788 => (R => 0, G => 0, B => 0), 11789 => (R => 0, G => 0, B => 0), 11790 => (R => 0, G => 0, B => 0), 11791 => (R => 0, G => 0, B => 0), 11792 => (R => 0, G => 0, B => 0), 11793 => (R => 0, G => 0, B => 0), 11794 => (R => 0, G => 0, B => 0), 11795 => (R => 0, G => 0, B => 0), 11796 => (R => 0, G => 0, B => 0), 11797 => (R => 0, G => 0, B => 0), 11798 => (R => 0, G => 0, B => 0), 11799 => (R => 0, G => 0, B => 0), 11800 => (R => 0, G => 0, B => 0), 11801 => (R => 0, G => 0, B => 0), 11802 => (R => 0, G => 0, B => 0), 11803 => (R => 0, G => 0, B => 0), 11804 => (R => 0, G => 0, B => 0), 11805 => (R => 0, G => 0, B => 0), 11806 => (R => 0, G => 0, B => 0), 11807 => (R => 0, G => 0, B => 0), 11808 => (R => 0, G => 0, B => 0), 11809 => (R => 0, G => 0, B => 0), 11810 => (R => 0, G => 0, B => 0), 11811 => (R => 0, G => 0, B => 0), 11812 => (R => 0, G => 0, B => 0), 11813 => (R => 0, G => 0, B => 0), 11814 => (R => 0, G => 0, B => 0), 11815 => (R => 0, G => 0, B => 0), 11816 => (R => 0, G => 0, B => 0), 11817 => (R => 0, G => 0, B => 0), 11818 => (R => 0, G => 0, B => 0), 11819 => (R => 0, G => 0, B => 0), 11820 => (R => 0, G => 0, B => 0), 11821 => (R => 0, G => 0, B => 0), 11822 => (R => 0, G => 0, B => 0), 11823 => (R => 0, G => 0, B => 0), 11824 => (R => 0, G => 0, B => 0), 11825 => (R => 0, G => 0, B => 0), 11826 => (R => 0, G => 0, B => 0), 11827 => (R => 0, G => 0, B => 0), 11828 => (R => 0, G => 0, B => 0), 11829 => (R => 0, G => 0, B => 0), 11830 => (R => 0, G => 0, B => 0), 11831 => (R => 0, G => 0, B => 0), 11832 => (R => 0, G => 0, B => 0), 11833 => (R => 0, G => 0, B => 0), 11834 => (R => 0, G => 0, B => 0), 11835 => (R => 0, G => 0, B => 0), 11836 => (R => 0, G => 0, B => 0), 11837 => (R => 0, G => 0, B => 0), 11838 => (R => 0, G => 0, B => 0), 11839 => (R => 0, G => 0, B => 0), 11840 => (R => 0, G => 0, B => 0), 11841 => (R => 0, G => 0, B => 0), 11842 => (R => 0, G => 0, B => 0), 11843 => (R => 0, G => 0, B => 0), 11844 => (R => 0, G => 0, B => 0), 11845 => (R => 0, G => 0, B => 0), 11846 => (R => 0, G => 0, B => 0), 11847 => (R => 0, G => 0, B => 0), 11848 => (R => 0, G => 0, B => 0), 11849 => (R => 0, G => 0, B => 0), 11850 => (R => 0, G => 0, B => 0), 11851 => (R => 0, G => 0, B => 0), 11852 => (R => 0, G => 0, B => 0), 11853 => (R => 0, G => 0, B => 0), 11854 => (R => 0, G => 0, B => 0), 11855 => (R => 0, G => 0, B => 0), 11856 => (R => 0, G => 0, B => 0), 11857 => (R => 0, G => 0, B => 0), 11858 => (R => 0, G => 0, B => 0), 11859 => (R => 255, G => 0, B => 0), 11860 => (R => 255, G => 0, B => 0), 11861 => (R => 255, G => 0, B => 0), 11862 => (R => 255, G => 0, B => 0), 11863 => (R => 255, G => 0, B => 0), 11864 => (R => 255, G => 0, B => 0), 11865 => (R => 255, G => 0, B => 0), 11866 => (R => 255, G => 0, B => 0), 11867 => (R => 255, G => 0, B => 0), 11868 => (R => 255, G => 0, B => 0), 11869 => (R => 255, G => 0, B => 0), 11870 => (R => 255, G => 0, B => 0), 11871 => (R => 255, G => 0, B => 0), 11872 => (R => 255, G => 0, B => 0), 11873 => (R => 255, G => 0, B => 0), 11874 => (R => 255, G => 0, B => 0), 11875 => (R => 255, G => 0, B => 0), 11876 => (R => 255, G => 0, B => 0), 11877 => (R => 255, G => 0, B => 0), 11878 => (R => 255, G => 0, B => 0), 11879 => (R => 255, G => 0, B => 0), 11880 => (R => 255, G => 0, B => 0), 11881 => (R => 255, G => 0, B => 0), 11882 => (R => 255, G => 0, B => 0), 11883 => (R => 255, G => 0, B => 0), 11884 => (R => 255, G => 0, B => 0), 11885 => (R => 255, G => 0, B => 0), 11886 => (R => 255, G => 0, B => 0), 11887 => (R => 255, G => 0, B => 0), 11888 => (R => 255, G => 0, B => 0), 11889 => (R => 255, G => 0, B => 0), 11890 => (R => 255, G => 0, B => 0), 11891 => (R => 255, G => 0, B => 0), 11892 => (R => 255, G => 0, B => 0), 11893 => (R => 255, G => 0, B => 0), 11894 => (R => 255, G => 0, B => 0), 11895 => (R => 255, G => 0, B => 0), 11896 => (R => 255, G => 0, B => 0), 11897 => (R => 255, G => 0, B => 0), 11898 => (R => 255, G => 0, B => 0), 11899 => (R => 255, G => 0, B => 0), 11900 => (R => 255, G => 0, B => 0), 11901 => (R => 255, G => 0, B => 0), 11902 => (R => 255, G => 0, B => 0), 11903 => (R => 255, G => 0, B => 0), 11904 => (R => 255, G => 0, B => 0), 11905 => (R => 255, G => 0, B => 0), 11906 => (R => 255, G => 0, B => 0), 11907 => (R => 255, G => 0, B => 0), 11908 => (R => 255, G => 0, B => 0), 11909 => (R => 255, G => 0, B => 0), 11910 => (R => 255, G => 0, B => 0), 11911 => (R => 255, G => 0, B => 0), 11912 => (R => 255, G => 0, B => 0), 11913 => (R => 255, G => 0, B => 0), 11914 => (R => 255, G => 0, B => 0), 11915 => (R => 255, G => 0, B => 0), 11916 => (R => 255, G => 0, B => 0), 11917 => (R => 255, G => 0, B => 0), 11918 => (R => 255, G => 0, B => 0), 11919 => (R => 255, G => 0, B => 0), 11920 => (R => 255, G => 0, B => 0), 11921 => (R => 255, G => 0, B => 0), 11922 => (R => 255, G => 0, B => 0), 11923 => (R => 255, G => 0, B => 0), 11924 => (R => 255, G => 0, B => 0), 11925 => (R => 255, G => 0, B => 0), 11926 => (R => 255, G => 0, B => 0), 11927 => (R => 255, G => 0, B => 0), 11928 => (R => 255, G => 0, B => 0), 11929 => (R => 255, G => 0, B => 0), 11930 => (R => 255, G => 0, B => 0), 11931 => (R => 255, G => 0, B => 0), 11932 => (R => 255, G => 0, B => 0), 11933 => (R => 255, G => 0, B => 0), 11934 => (R => 255, G => 0, B => 0), 11935 => (R => 255, G => 0, B => 0), 11936 => (R => 255, G => 0, B => 0), 11937 => (R => 255, G => 0, B => 0), 11938 => (R => 255, G => 0, B => 0), 11939 => (R => 255, G => 0, B => 0), 11940 => (R => 255, G => 0, B => 0), 11941 => (R => 255, G => 0, B => 0), 11942 => (R => 0, G => 0, B => 0), 11943 => (R => 0, G => 0, B => 0), 11944 => (R => 0, G => 0, B => 0), 11945 => (R => 0, G => 0, B => 0), 11946 => (R => 0, G => 0, B => 0), 11947 => (R => 0, G => 0, B => 0), 11948 => (R => 0, G => 0, B => 0), 11949 => (R => 0, G => 0, B => 0), 11950 => (R => 0, G => 0, B => 0), 11951 => (R => 0, G => 0, B => 0), 11952 => (R => 0, G => 0, B => 0), 11953 => (R => 0, G => 0, B => 0), 11954 => (R => 0, G => 0, B => 0), 11955 => (R => 0, G => 0, B => 0), 11956 => (R => 0, G => 0, B => 0), 11957 => (R => 0, G => 0, B => 0), 11958 => (R => 0, G => 0, B => 0), 11959 => (R => 0, G => 0, B => 0), 11960 => (R => 0, G => 0, B => 0), 11961 => (R => 0, G => 0, B => 0), 11962 => (R => 0, G => 0, B => 0), 11963 => (R => 0, G => 0, B => 0), 11964 => (R => 0, G => 0, B => 0), 11965 => (R => 0, G => 0, B => 0), 11966 => (R => 0, G => 0, B => 0), 11967 => (R => 0, G => 0, B => 0), 11968 => (R => 0, G => 0, B => 0), 11969 => (R => 0, G => 0, B => 0), 11970 => (R => 0, G => 0, B => 0), 11971 => (R => 0, G => 0, B => 0), 11972 => (R => 0, G => 0, B => 0), 11973 => (R => 0, G => 0, B => 0), 11974 => (R => 0, G => 0, B => 0), 11975 => (R => 0, G => 0, B => 0), 11976 => (R => 0, G => 0, B => 0), 11977 => (R => 0, G => 0, B => 0), 11978 => (R => 0, G => 0, B => 0), 11979 => (R => 0, G => 0, B => 0), 11980 => (R => 0, G => 0, B => 0), 11981 => (R => 0, G => 0, B => 0), 11982 => (R => 0, G => 0, B => 0), 11983 => (R => 0, G => 0, B => 0), 11984 => (R => 0, G => 0, B => 0), 11985 => (R => 0, G => 0, B => 0), 11986 => (R => 0, G => 0, B => 0), 11987 => (R => 0, G => 0, B => 0), 11988 => (R => 0, G => 0, B => 0), 11989 => (R => 0, G => 0, B => 0), 11990 => (R => 0, G => 0, B => 0), 11991 => (R => 0, G => 0, B => 0), 11992 => (R => 0, G => 0, B => 0), 11993 => (R => 0, G => 0, B => 0), 11994 => (R => 0, G => 0, B => 0), 11995 => (R => 0, G => 0, B => 0), 11996 => (R => 0, G => 0, B => 0), 11997 => (R => 0, G => 0, B => 0), 11998 => (R => 0, G => 0, B => 0), 11999 => (R => 0, G => 0, B => 0), 12000 => (R => 0, G => 0, B => 0), 12001 => (R => 0, G => 0, B => 0), 12002 => (R => 0, G => 0, B => 0), 12003 => (R => 0, G => 0, B => 0), 12004 => (R => 0, G => 0, B => 0), 12005 => (R => 0, G => 0, B => 0), 12006 => (R => 0, G => 0, B => 0), 12007 => (R => 0, G => 0, B => 0), 12008 => (R => 0, G => 0, B => 0), 12009 => (R => 0, G => 0, B => 0), 12010 => (R => 0, G => 0, B => 0), 12011 => (R => 0, G => 0, B => 0), 12012 => (R => 0, G => 0, B => 0), 12013 => (R => 0, G => 0, B => 0), 12014 => (R => 0, G => 0, B => 0), 12015 => (R => 0, G => 0, B => 0), 12016 => (R => 0, G => 0, B => 0), 12017 => (R => 0, G => 0, B => 0), 12018 => (R => 0, G => 0, B => 0), 12019 => (R => 0, G => 0, B => 0), 12020 => (R => 0, G => 0, B => 0), 12021 => (R => 0, G => 0, B => 0), 12022 => (R => 0, G => 0, B => 0), 12023 => (R => 0, G => 0, B => 0), 12024 => (R => 0, G => 0, B => 0), 12025 => (R => 0, G => 0, B => 0), 12026 => (R => 0, G => 0, B => 0), 12027 => (R => 0, G => 0, B => 0), 12028 => (R => 0, G => 0, B => 0), 12029 => (R => 0, G => 0, B => 0), 12030 => (R => 0, G => 0, B => 0), 12031 => (R => 0, G => 0, B => 0), 12032 => (R => 0, G => 0, B => 0), 12033 => (R => 0, G => 0, B => 0), 12034 => (R => 0, G => 0, B => 0), 12035 => (R => 0, G => 0, B => 0), 12036 => (R => 0, G => 0, B => 0), 12037 => (R => 0, G => 0, B => 0), 12038 => (R => 0, G => 0, B => 0), 12039 => (R => 0, G => 0, B => 0), 12040 => (R => 0, G => 0, B => 0), 12041 => (R => 0, G => 0, B => 0), 12042 => (R => 0, G => 0, B => 0), 12043 => (R => 0, G => 0, B => 0), 12044 => (R => 0, G => 0, B => 0), 12045 => (R => 0, G => 0, B => 0), 12046 => (R => 0, G => 0, B => 0), 12047 => (R => 0, G => 0, B => 0), 12048 => (R => 0, G => 0, B => 0), 12049 => (R => 0, G => 0, B => 0), 12050 => (R => 0, G => 0, B => 0), 12051 => (R => 0, G => 0, B => 0), 12052 => (R => 0, G => 0, B => 0), 12053 => (R => 0, G => 0, B => 0), 12054 => (R => 0, G => 0, B => 0), 12055 => (R => 0, G => 0, B => 0), 12056 => (R => 0, G => 0, B => 0), 12057 => (R => 0, G => 0, B => 0), 12058 => (R => 0, G => 0, B => 0), 12059 => (R => 0, G => 0, B => 0), 12060 => (R => 0, G => 0, B => 0), 12061 => (R => 255, G => 0, B => 0), 12062 => (R => 255, G => 0, B => 0), 12063 => (R => 255, G => 0, B => 0), 12064 => (R => 255, G => 0, B => 0), 12065 => (R => 255, G => 0, B => 0), 12066 => (R => 255, G => 0, B => 0), 12067 => (R => 255, G => 0, B => 0), 12068 => (R => 255, G => 0, B => 0), 12069 => (R => 255, G => 0, B => 0), 12070 => (R => 255, G => 0, B => 0), 12071 => (R => 255, G => 0, B => 0), 12072 => (R => 255, G => 0, B => 0), 12073 => (R => 255, G => 0, B => 0), 12074 => (R => 255, G => 0, B => 0), 12075 => (R => 255, G => 0, B => 0), 12076 => (R => 255, G => 0, B => 0), 12077 => (R => 255, G => 0, B => 0), 12078 => (R => 255, G => 0, B => 0), 12079 => (R => 255, G => 0, B => 0), 12080 => (R => 255, G => 0, B => 0), 12081 => (R => 255, G => 0, B => 0), 12082 => (R => 255, G => 0, B => 0), 12083 => (R => 255, G => 0, B => 0), 12084 => (R => 255, G => 0, B => 0), 12085 => (R => 255, G => 0, B => 0), 12086 => (R => 255, G => 0, B => 0), 12087 => (R => 255, G => 0, B => 0), 12088 => (R => 255, G => 0, B => 0), 12089 => (R => 255, G => 0, B => 0), 12090 => (R => 255, G => 0, B => 0), 12091 => (R => 255, G => 0, B => 0), 12092 => (R => 255, G => 0, B => 0), 12093 => (R => 255, G => 0, B => 0), 12094 => (R => 255, G => 0, B => 0), 12095 => (R => 255, G => 0, B => 0), 12096 => (R => 255, G => 0, B => 0), 12097 => (R => 255, G => 0, B => 0), 12098 => (R => 255, G => 0, B => 0), 12099 => (R => 255, G => 0, B => 0), 12100 => (R => 255, G => 0, B => 0), 12101 => (R => 255, G => 0, B => 0), 12102 => (R => 255, G => 0, B => 0), 12103 => (R => 255, G => 0, B => 0), 12104 => (R => 255, G => 0, B => 0), 12105 => (R => 255, G => 0, B => 0), 12106 => (R => 255, G => 0, B => 0), 12107 => (R => 255, G => 0, B => 0), 12108 => (R => 255, G => 0, B => 0), 12109 => (R => 255, G => 0, B => 0), 12110 => (R => 255, G => 0, B => 0), 12111 => (R => 255, G => 0, B => 0), 12112 => (R => 255, G => 0, B => 0), 12113 => (R => 255, G => 0, B => 0), 12114 => (R => 255, G => 0, B => 0), 12115 => (R => 255, G => 0, B => 0), 12116 => (R => 255, G => 0, B => 0), 12117 => (R => 255, G => 0, B => 0), 12118 => (R => 255, G => 0, B => 0), 12119 => (R => 255, G => 0, B => 0), 12120 => (R => 255, G => 0, B => 0), 12121 => (R => 255, G => 0, B => 0), 12122 => (R => 255, G => 0, B => 0), 12123 => (R => 255, G => 0, B => 0), 12124 => (R => 255, G => 0, B => 0), 12125 => (R => 255, G => 0, B => 0), 12126 => (R => 255, G => 0, B => 0), 12127 => (R => 255, G => 0, B => 0), 12128 => (R => 255, G => 0, B => 0), 12129 => (R => 255, G => 0, B => 0), 12130 => (R => 255, G => 0, B => 0), 12131 => (R => 255, G => 0, B => 0), 12132 => (R => 255, G => 0, B => 0), 12133 => (R => 255, G => 0, B => 0), 12134 => (R => 255, G => 0, B => 0), 12135 => (R => 255, G => 0, B => 0), 12136 => (R => 255, G => 0, B => 0), 12137 => (R => 255, G => 0, B => 0), 12138 => (R => 255, G => 0, B => 0), 12139 => (R => 255, G => 0, B => 0), 12140 => (R => 255, G => 0, B => 0), 12141 => (R => 0, G => 0, B => 0), 12142 => (R => 0, G => 0, B => 0), 12143 => (R => 0, G => 0, B => 0), 12144 => (R => 0, G => 0, B => 0), 12145 => (R => 0, G => 0, B => 0), 12146 => (R => 0, G => 0, B => 0), 12147 => (R => 0, G => 0, B => 0), 12148 => (R => 0, G => 0, B => 0), 12149 => (R => 0, G => 0, B => 0), 12150 => (R => 0, G => 0, B => 0), 12151 => (R => 0, G => 0, B => 0), 12152 => (R => 0, G => 0, B => 0), 12153 => (R => 0, G => 0, B => 0), 12154 => (R => 0, G => 0, B => 0), 12155 => (R => 0, G => 0, B => 0), 12156 => (R => 0, G => 0, B => 0), 12157 => (R => 0, G => 0, B => 0), 12158 => (R => 0, G => 0, B => 0), 12159 => (R => 0, G => 0, B => 0), 12160 => (R => 0, G => 0, B => 0), 12161 => (R => 0, G => 0, B => 0), 12162 => (R => 0, G => 0, B => 0), 12163 => (R => 0, G => 0, B => 0), 12164 => (R => 0, G => 0, B => 0), 12165 => (R => 0, G => 0, B => 0), 12166 => (R => 0, G => 0, B => 0), 12167 => (R => 0, G => 0, B => 0), 12168 => (R => 0, G => 0, B => 0), 12169 => (R => 0, G => 0, B => 0), 12170 => (R => 0, G => 0, B => 0), 12171 => (R => 0, G => 0, B => 0), 12172 => (R => 0, G => 0, B => 0), 12173 => (R => 0, G => 0, B => 0), 12174 => (R => 0, G => 0, B => 0), 12175 => (R => 0, G => 0, B => 0), 12176 => (R => 0, G => 0, B => 0), 12177 => (R => 0, G => 0, B => 0), 12178 => (R => 0, G => 0, B => 0), 12179 => (R => 0, G => 0, B => 0), 12180 => (R => 0, G => 0, B => 0), 12181 => (R => 0, G => 0, B => 0), 12182 => (R => 0, G => 0, B => 0), 12183 => (R => 0, G => 0, B => 0), 12184 => (R => 0, G => 0, B => 0), 12185 => (R => 0, G => 0, B => 0), 12186 => (R => 0, G => 0, B => 0), 12187 => (R => 0, G => 0, B => 0), 12188 => (R => 0, G => 0, B => 0), 12189 => (R => 0, G => 0, B => 0), 12190 => (R => 0, G => 0, B => 0), 12191 => (R => 0, G => 0, B => 0), 12192 => (R => 0, G => 0, B => 0), 12193 => (R => 0, G => 0, B => 0), 12194 => (R => 0, G => 0, B => 0), 12195 => (R => 0, G => 0, B => 0), 12196 => (R => 0, G => 0, B => 0), 12197 => (R => 0, G => 0, B => 0), 12198 => (R => 0, G => 0, B => 0), 12199 => (R => 0, G => 0, B => 0), 12200 => (R => 0, G => 0, B => 0), 12201 => (R => 0, G => 0, B => 0), 12202 => (R => 0, G => 0, B => 0), 12203 => (R => 0, G => 0, B => 0), 12204 => (R => 0, G => 0, B => 0), 12205 => (R => 0, G => 0, B => 0), 12206 => (R => 0, G => 0, B => 0), 12207 => (R => 0, G => 0, B => 0), 12208 => (R => 0, G => 0, B => 0), 12209 => (R => 0, G => 0, B => 0), 12210 => (R => 0, G => 0, B => 0), 12211 => (R => 0, G => 0, B => 0), 12212 => (R => 0, G => 0, B => 0), 12213 => (R => 0, G => 0, B => 0), 12214 => (R => 0, G => 0, B => 0), 12215 => (R => 0, G => 0, B => 0), 12216 => (R => 0, G => 0, B => 0), 12217 => (R => 0, G => 0, B => 0), 12218 => (R => 0, G => 0, B => 0), 12219 => (R => 0, G => 0, B => 0), 12220 => (R => 0, G => 0, B => 0), 12221 => (R => 0, G => 0, B => 0), 12222 => (R => 0, G => 0, B => 0), 12223 => (R => 0, G => 0, B => 0), 12224 => (R => 0, G => 0, B => 0), 12225 => (R => 0, G => 0, B => 0), 12226 => (R => 0, G => 0, B => 0), 12227 => (R => 0, G => 0, B => 0), 12228 => (R => 0, G => 0, B => 0), 12229 => (R => 0, G => 0, B => 0), 12230 => (R => 0, G => 0, B => 0), 12231 => (R => 0, G => 0, B => 0), 12232 => (R => 0, G => 0, B => 0), 12233 => (R => 0, G => 0, B => 0), 12234 => (R => 0, G => 0, B => 0), 12235 => (R => 0, G => 0, B => 0), 12236 => (R => 0, G => 0, B => 0), 12237 => (R => 0, G => 0, B => 0), 12238 => (R => 0, G => 0, B => 0), 12239 => (R => 0, G => 0, B => 0), 12240 => (R => 0, G => 0, B => 0), 12241 => (R => 0, G => 0, B => 0), 12242 => (R => 0, G => 0, B => 0), 12243 => (R => 0, G => 0, B => 0), 12244 => (R => 0, G => 0, B => 0), 12245 => (R => 0, G => 0, B => 0), 12246 => (R => 0, G => 0, B => 0), 12247 => (R => 0, G => 0, B => 0), 12248 => (R => 0, G => 0, B => 0), 12249 => (R => 0, G => 0, B => 0), 12250 => (R => 0, G => 0, B => 0), 12251 => (R => 0, G => 0, B => 0), 12252 => (R => 0, G => 0, B => 0), 12253 => (R => 0, G => 0, B => 0), 12254 => (R => 0, G => 0, B => 0), 12255 => (R => 0, G => 0, B => 0), 12256 => (R => 0, G => 0, B => 0), 12257 => (R => 0, G => 0, B => 0), 12258 => (R => 0, G => 0, B => 0), 12259 => (R => 0, G => 0, B => 0), 12260 => (R => 0, G => 0, B => 0), 12261 => (R => 0, G => 0, B => 0), 12262 => (R => 255, G => 0, B => 0), 12263 => (R => 255, G => 0, B => 0), 12264 => (R => 255, G => 0, B => 0), 12265 => (R => 255, G => 0, B => 0), 12266 => (R => 255, G => 0, B => 0), 12267 => (R => 255, G => 0, B => 0), 12268 => (R => 255, G => 0, B => 0), 12269 => (R => 255, G => 0, B => 0), 12270 => (R => 255, G => 0, B => 0), 12271 => (R => 255, G => 0, B => 0), 12272 => (R => 255, G => 0, B => 0), 12273 => (R => 255, G => 0, B => 0), 12274 => (R => 255, G => 0, B => 0), 12275 => (R => 255, G => 0, B => 0), 12276 => (R => 255, G => 0, B => 0), 12277 => (R => 255, G => 0, B => 0), 12278 => (R => 255, G => 0, B => 0), 12279 => (R => 255, G => 0, B => 0), 12280 => (R => 255, G => 0, B => 0), 12281 => (R => 255, G => 0, B => 0), 12282 => (R => 255, G => 0, B => 0), 12283 => (R => 255, G => 0, B => 0), 12284 => (R => 255, G => 0, B => 0), 12285 => (R => 255, G => 0, B => 0), 12286 => (R => 255, G => 0, B => 0), 12287 => (R => 255, G => 0, B => 0), 12288 => (R => 255, G => 0, B => 0), 12289 => (R => 255, G => 0, B => 0), 12290 => (R => 255, G => 0, B => 0), 12291 => (R => 255, G => 0, B => 0), 12292 => (R => 255, G => 0, B => 0), 12293 => (R => 255, G => 0, B => 0), 12294 => (R => 255, G => 0, B => 0), 12295 => (R => 255, G => 0, B => 0), 12296 => (R => 255, G => 0, B => 0), 12297 => (R => 255, G => 0, B => 0), 12298 => (R => 255, G => 0, B => 0), 12299 => (R => 255, G => 0, B => 0), 12300 => (R => 255, G => 0, B => 0), 12301 => (R => 255, G => 0, B => 0), 12302 => (R => 255, G => 0, B => 0), 12303 => (R => 255, G => 0, B => 0), 12304 => (R => 255, G => 0, B => 0), 12305 => (R => 255, G => 0, B => 0), 12306 => (R => 255, G => 0, B => 0), 12307 => (R => 255, G => 0, B => 0), 12308 => (R => 255, G => 0, B => 0), 12309 => (R => 255, G => 0, B => 0), 12310 => (R => 255, G => 0, B => 0), 12311 => (R => 255, G => 0, B => 0), 12312 => (R => 255, G => 0, B => 0), 12313 => (R => 255, G => 0, B => 0), 12314 => (R => 255, G => 0, B => 0), 12315 => (R => 255, G => 0, B => 0), 12316 => (R => 255, G => 0, B => 0), 12317 => (R => 255, G => 0, B => 0), 12318 => (R => 255, G => 0, B => 0), 12319 => (R => 255, G => 0, B => 0), 12320 => (R => 255, G => 0, B => 0), 12321 => (R => 255, G => 0, B => 0), 12322 => (R => 255, G => 0, B => 0), 12323 => (R => 255, G => 0, B => 0), 12324 => (R => 255, G => 0, B => 0), 12325 => (R => 255, G => 0, B => 0), 12326 => (R => 255, G => 0, B => 0), 12327 => (R => 255, G => 0, B => 0), 12328 => (R => 255, G => 0, B => 0), 12329 => (R => 255, G => 0, B => 0), 12330 => (R => 255, G => 0, B => 0), 12331 => (R => 255, G => 0, B => 0), 12332 => (R => 255, G => 0, B => 0), 12333 => (R => 255, G => 0, B => 0), 12334 => (R => 255, G => 0, B => 0), 12335 => (R => 255, G => 0, B => 0), 12336 => (R => 255, G => 0, B => 0), 12337 => (R => 255, G => 0, B => 0), 12338 => (R => 255, G => 0, B => 0), 12339 => (R => 255, G => 0, B => 0), 12340 => (R => 0, G => 0, B => 0), 12341 => (R => 0, G => 0, B => 0), 12342 => (R => 0, G => 0, B => 0), 12343 => (R => 0, G => 0, B => 0), 12344 => (R => 0, G => 0, B => 0), 12345 => (R => 0, G => 0, B => 0), 12346 => (R => 0, G => 0, B => 0), 12347 => (R => 0, G => 0, B => 0), 12348 => (R => 0, G => 0, B => 0), 12349 => (R => 0, G => 0, B => 0), 12350 => (R => 0, G => 0, B => 0), 12351 => (R => 0, G => 0, B => 0), 12352 => (R => 0, G => 0, B => 0), 12353 => (R => 0, G => 0, B => 0), 12354 => (R => 0, G => 0, B => 0), 12355 => (R => 0, G => 0, B => 0), 12356 => (R => 0, G => 0, B => 0), 12357 => (R => 0, G => 0, B => 0), 12358 => (R => 0, G => 0, B => 0), 12359 => (R => 0, G => 0, B => 0), 12360 => (R => 0, G => 0, B => 0), 12361 => (R => 0, G => 0, B => 0), 12362 => (R => 0, G => 0, B => 0), 12363 => (R => 0, G => 0, B => 0), 12364 => (R => 0, G => 0, B => 0), 12365 => (R => 0, G => 0, B => 0), 12366 => (R => 0, G => 0, B => 0), 12367 => (R => 0, G => 0, B => 0), 12368 => (R => 0, G => 0, B => 0), 12369 => (R => 0, G => 0, B => 0), 12370 => (R => 0, G => 0, B => 0), 12371 => (R => 0, G => 0, B => 0), 12372 => (R => 0, G => 0, B => 0), 12373 => (R => 0, G => 0, B => 0), 12374 => (R => 0, G => 0, B => 0), 12375 => (R => 0, G => 0, B => 0), 12376 => (R => 0, G => 0, B => 0), 12377 => (R => 0, G => 0, B => 0), 12378 => (R => 0, G => 0, B => 0), 12379 => (R => 0, G => 0, B => 0), 12380 => (R => 0, G => 0, B => 0), 12381 => (R => 0, G => 0, B => 0), 12382 => (R => 0, G => 0, B => 0), 12383 => (R => 0, G => 0, B => 0), 12384 => (R => 0, G => 0, B => 0), 12385 => (R => 0, G => 0, B => 0), 12386 => (R => 0, G => 0, B => 0), 12387 => (R => 0, G => 0, B => 0), 12388 => (R => 0, G => 0, B => 0), 12389 => (R => 0, G => 0, B => 0), 12390 => (R => 0, G => 0, B => 0), 12391 => (R => 0, G => 0, B => 0), 12392 => (R => 0, G => 0, B => 0), 12393 => (R => 0, G => 0, B => 0), 12394 => (R => 0, G => 0, B => 0), 12395 => (R => 0, G => 0, B => 0), 12396 => (R => 0, G => 0, B => 0), 12397 => (R => 0, G => 0, B => 0), 12398 => (R => 0, G => 0, B => 0), 12399 => (R => 0, G => 0, B => 0), 12400 => (R => 0, G => 0, B => 0), 12401 => (R => 0, G => 0, B => 0), 12402 => (R => 0, G => 0, B => 0), 12403 => (R => 0, G => 0, B => 0), 12404 => (R => 0, G => 0, B => 0), 12405 => (R => 0, G => 0, B => 0), 12406 => (R => 0, G => 0, B => 0), 12407 => (R => 0, G => 0, B => 0), 12408 => (R => 0, G => 0, B => 0), 12409 => (R => 0, G => 0, B => 0), 12410 => (R => 0, G => 0, B => 0), 12411 => (R => 0, G => 0, B => 0), 12412 => (R => 0, G => 0, B => 0), 12413 => (R => 0, G => 0, B => 0), 12414 => (R => 0, G => 0, B => 0), 12415 => (R => 0, G => 0, B => 0), 12416 => (R => 0, G => 0, B => 0), 12417 => (R => 0, G => 0, B => 0), 12418 => (R => 0, G => 0, B => 0), 12419 => (R => 0, G => 0, B => 0), 12420 => (R => 0, G => 0, B => 0), 12421 => (R => 0, G => 0, B => 0), 12422 => (R => 0, G => 0, B => 0), 12423 => (R => 0, G => 0, B => 0), 12424 => (R => 0, G => 0, B => 0), 12425 => (R => 0, G => 0, B => 0), 12426 => (R => 0, G => 0, B => 0), 12427 => (R => 0, G => 0, B => 0), 12428 => (R => 0, G => 0, B => 0), 12429 => (R => 0, G => 0, B => 0), 12430 => (R => 0, G => 0, B => 0), 12431 => (R => 0, G => 0, B => 0), 12432 => (R => 0, G => 0, B => 0), 12433 => (R => 0, G => 0, B => 0), 12434 => (R => 0, G => 0, B => 0), 12435 => (R => 0, G => 0, B => 0), 12436 => (R => 0, G => 0, B => 0), 12437 => (R => 0, G => 0, B => 0), 12438 => (R => 0, G => 0, B => 0), 12439 => (R => 0, G => 0, B => 0), 12440 => (R => 0, G => 0, B => 0), 12441 => (R => 0, G => 0, B => 0), 12442 => (R => 0, G => 0, B => 0), 12443 => (R => 0, G => 0, B => 0), 12444 => (R => 0, G => 0, B => 0), 12445 => (R => 0, G => 0, B => 0), 12446 => (R => 0, G => 0, B => 0), 12447 => (R => 0, G => 0, B => 0), 12448 => (R => 0, G => 0, B => 0), 12449 => (R => 0, G => 0, B => 0), 12450 => (R => 0, G => 0, B => 0), 12451 => (R => 0, G => 0, B => 0), 12452 => (R => 0, G => 0, B => 0), 12453 => (R => 0, G => 0, B => 0), 12454 => (R => 0, G => 0, B => 0), 12455 => (R => 0, G => 0, B => 0), 12456 => (R => 0, G => 0, B => 0), 12457 => (R => 0, G => 0, B => 0), 12458 => (R => 0, G => 0, B => 0), 12459 => (R => 0, G => 0, B => 0), 12460 => (R => 0, G => 0, B => 0), 12461 => (R => 0, G => 0, B => 0), 12462 => (R => 0, G => 0, B => 0), 12463 => (R => 255, G => 0, B => 0), 12464 => (R => 255, G => 0, B => 0), 12465 => (R => 255, G => 0, B => 0), 12466 => (R => 255, G => 0, B => 0), 12467 => (R => 255, G => 0, B => 0), 12468 => (R => 255, G => 0, B => 0), 12469 => (R => 255, G => 0, B => 0), 12470 => (R => 255, G => 0, B => 0), 12471 => (R => 255, G => 0, B => 0), 12472 => (R => 255, G => 0, B => 0), 12473 => (R => 255, G => 0, B => 0), 12474 => (R => 255, G => 0, B => 0), 12475 => (R => 255, G => 0, B => 0), 12476 => (R => 255, G => 0, B => 0), 12477 => (R => 255, G => 0, B => 0), 12478 => (R => 255, G => 0, B => 0), 12479 => (R => 255, G => 0, B => 0), 12480 => (R => 255, G => 0, B => 0), 12481 => (R => 255, G => 0, B => 0), 12482 => (R => 255, G => 0, B => 0), 12483 => (R => 255, G => 0, B => 0), 12484 => (R => 255, G => 0, B => 0), 12485 => (R => 255, G => 0, B => 0), 12486 => (R => 255, G => 0, B => 0), 12487 => (R => 255, G => 0, B => 0), 12488 => (R => 255, G => 0, B => 0), 12489 => (R => 255, G => 0, B => 0), 12490 => (R => 255, G => 0, B => 0), 12491 => (R => 255, G => 0, B => 0), 12492 => (R => 255, G => 0, B => 0), 12493 => (R => 255, G => 0, B => 0), 12494 => (R => 255, G => 0, B => 0), 12495 => (R => 255, G => 0, B => 0), 12496 => (R => 255, G => 0, B => 0), 12497 => (R => 255, G => 0, B => 0), 12498 => (R => 255, G => 0, B => 0), 12499 => (R => 255, G => 0, B => 0), 12500 => (R => 255, G => 0, B => 0), 12501 => (R => 255, G => 0, B => 0), 12502 => (R => 255, G => 0, B => 0), 12503 => (R => 255, G => 0, B => 0), 12504 => (R => 255, G => 0, B => 0), 12505 => (R => 255, G => 0, B => 0), 12506 => (R => 255, G => 0, B => 0), 12507 => (R => 255, G => 0, B => 0), 12508 => (R => 255, G => 0, B => 0), 12509 => (R => 255, G => 0, B => 0), 12510 => (R => 255, G => 0, B => 0), 12511 => (R => 255, G => 0, B => 0), 12512 => (R => 255, G => 0, B => 0), 12513 => (R => 255, G => 0, B => 0), 12514 => (R => 255, G => 0, B => 0), 12515 => (R => 255, G => 0, B => 0), 12516 => (R => 255, G => 0, B => 0), 12517 => (R => 255, G => 0, B => 0), 12518 => (R => 255, G => 0, B => 0), 12519 => (R => 255, G => 0, B => 0), 12520 => (R => 255, G => 0, B => 0), 12521 => (R => 255, G => 0, B => 0), 12522 => (R => 255, G => 0, B => 0), 12523 => (R => 255, G => 0, B => 0), 12524 => (R => 255, G => 0, B => 0), 12525 => (R => 255, G => 0, B => 0), 12526 => (R => 255, G => 0, B => 0), 12527 => (R => 255, G => 0, B => 0), 12528 => (R => 255, G => 0, B => 0), 12529 => (R => 255, G => 0, B => 0), 12530 => (R => 255, G => 0, B => 0), 12531 => (R => 255, G => 0, B => 0), 12532 => (R => 255, G => 0, B => 0), 12533 => (R => 255, G => 0, B => 0), 12534 => (R => 255, G => 0, B => 0), 12535 => (R => 255, G => 0, B => 0), 12536 => (R => 255, G => 0, B => 0), 12537 => (R => 255, G => 0, B => 0), 12538 => (R => 255, G => 0, B => 0), 12539 => (R => 0, G => 0, B => 0), 12540 => (R => 0, G => 0, B => 0), 12541 => (R => 0, G => 0, B => 0), 12542 => (R => 0, G => 0, B => 0), 12543 => (R => 0, G => 0, B => 0), 12544 => (R => 0, G => 0, B => 0), 12545 => (R => 0, G => 0, B => 0), 12546 => (R => 0, G => 0, B => 0), 12547 => (R => 0, G => 0, B => 0), 12548 => (R => 0, G => 0, B => 0), 12549 => (R => 0, G => 0, B => 0), 12550 => (R => 0, G => 0, B => 0), 12551 => (R => 0, G => 0, B => 0), 12552 => (R => 0, G => 0, B => 0), 12553 => (R => 0, G => 0, B => 0), 12554 => (R => 0, G => 0, B => 0), 12555 => (R => 0, G => 0, B => 0), 12556 => (R => 0, G => 0, B => 0), 12557 => (R => 0, G => 0, B => 0), 12558 => (R => 0, G => 0, B => 0), 12559 => (R => 0, G => 0, B => 0), 12560 => (R => 0, G => 0, B => 0), 12561 => (R => 0, G => 0, B => 0), 12562 => (R => 0, G => 0, B => 0), 12563 => (R => 0, G => 0, B => 0), 12564 => (R => 0, G => 0, B => 0), 12565 => (R => 0, G => 0, B => 0), 12566 => (R => 0, G => 0, B => 0), 12567 => (R => 0, G => 0, B => 0), 12568 => (R => 0, G => 0, B => 0), 12569 => (R => 0, G => 0, B => 0), 12570 => (R => 0, G => 0, B => 0), 12571 => (R => 0, G => 0, B => 0), 12572 => (R => 0, G => 0, B => 0), 12573 => (R => 0, G => 0, B => 0), 12574 => (R => 0, G => 0, B => 0), 12575 => (R => 0, G => 0, B => 0), 12576 => (R => 0, G => 0, B => 0), 12577 => (R => 0, G => 0, B => 0), 12578 => (R => 0, G => 0, B => 0), 12579 => (R => 0, G => 0, B => 0), 12580 => (R => 0, G => 0, B => 0), 12581 => (R => 0, G => 0, B => 0), 12582 => (R => 0, G => 0, B => 0), 12583 => (R => 0, G => 0, B => 0), 12584 => (R => 0, G => 0, B => 0), 12585 => (R => 0, G => 0, B => 0), 12586 => (R => 0, G => 0, B => 0), 12587 => (R => 0, G => 0, B => 0), 12588 => (R => 0, G => 0, B => 0), 12589 => (R => 0, G => 0, B => 0), 12590 => (R => 0, G => 0, B => 0), 12591 => (R => 0, G => 0, B => 0), 12592 => (R => 0, G => 0, B => 0), 12593 => (R => 0, G => 0, B => 0), 12594 => (R => 0, G => 0, B => 0), 12595 => (R => 0, G => 0, B => 0), 12596 => (R => 0, G => 0, B => 0), 12597 => (R => 0, G => 0, B => 0), 12598 => (R => 0, G => 0, B => 0), 12599 => (R => 0, G => 0, B => 0), 12600 => (R => 0, G => 0, B => 0), 12601 => (R => 0, G => 0, B => 0), 12602 => (R => 0, G => 0, B => 0), 12603 => (R => 0, G => 0, B => 0), 12604 => (R => 0, G => 0, B => 0), 12605 => (R => 0, G => 0, B => 0), 12606 => (R => 0, G => 0, B => 0), 12607 => (R => 0, G => 0, B => 0), 12608 => (R => 0, G => 0, B => 0), 12609 => (R => 0, G => 0, B => 0), 12610 => (R => 0, G => 0, B => 0), 12611 => (R => 0, G => 0, B => 0), 12612 => (R => 0, G => 0, B => 0), 12613 => (R => 0, G => 0, B => 0), 12614 => (R => 0, G => 0, B => 0), 12615 => (R => 0, G => 0, B => 0), 12616 => (R => 0, G => 0, B => 0), 12617 => (R => 0, G => 0, B => 0), 12618 => (R => 0, G => 0, B => 0), 12619 => (R => 0, G => 0, B => 0), 12620 => (R => 0, G => 0, B => 0), 12621 => (R => 0, G => 0, B => 0), 12622 => (R => 0, G => 0, B => 0), 12623 => (R => 0, G => 0, B => 0), 12624 => (R => 0, G => 0, B => 0), 12625 => (R => 0, G => 0, B => 0), 12626 => (R => 0, G => 0, B => 0), 12627 => (R => 0, G => 0, B => 0), 12628 => (R => 0, G => 0, B => 0), 12629 => (R => 0, G => 0, B => 0), 12630 => (R => 0, G => 0, B => 0), 12631 => (R => 0, G => 0, B => 0), 12632 => (R => 0, G => 0, B => 0), 12633 => (R => 0, G => 0, B => 0), 12634 => (R => 0, G => 0, B => 0), 12635 => (R => 0, G => 0, B => 0), 12636 => (R => 0, G => 0, B => 0), 12637 => (R => 0, G => 0, B => 0), 12638 => (R => 0, G => 0, B => 0), 12639 => (R => 0, G => 0, B => 0), 12640 => (R => 0, G => 0, B => 0), 12641 => (R => 0, G => 0, B => 0), 12642 => (R => 0, G => 0, B => 0), 12643 => (R => 0, G => 0, B => 0), 12644 => (R => 0, G => 0, B => 0), 12645 => (R => 0, G => 0, B => 0), 12646 => (R => 0, G => 0, B => 0), 12647 => (R => 0, G => 0, B => 0), 12648 => (R => 0, G => 0, B => 0), 12649 => (R => 0, G => 0, B => 0), 12650 => (R => 0, G => 0, B => 0), 12651 => (R => 0, G => 0, B => 0), 12652 => (R => 0, G => 0, B => 0), 12653 => (R => 0, G => 0, B => 0), 12654 => (R => 0, G => 0, B => 0), 12655 => (R => 0, G => 0, B => 0), 12656 => (R => 0, G => 0, B => 0), 12657 => (R => 0, G => 0, B => 0), 12658 => (R => 0, G => 0, B => 0), 12659 => (R => 0, G => 0, B => 0), 12660 => (R => 0, G => 0, B => 0), 12661 => (R => 0, G => 0, B => 0), 12662 => (R => 0, G => 0, B => 0), 12663 => (R => 0, G => 0, B => 0), 12664 => (R => 255, G => 0, B => 0), 12665 => (R => 255, G => 0, B => 0), 12666 => (R => 255, G => 0, B => 0), 12667 => (R => 255, G => 0, B => 0), 12668 => (R => 255, G => 0, B => 0), 12669 => (R => 255, G => 0, B => 0), 12670 => (R => 255, G => 0, B => 0), 12671 => (R => 255, G => 0, B => 0), 12672 => (R => 255, G => 0, B => 0), 12673 => (R => 255, G => 0, B => 0), 12674 => (R => 255, G => 0, B => 0), 12675 => (R => 255, G => 0, B => 0), 12676 => (R => 255, G => 0, B => 0), 12677 => (R => 255, G => 0, B => 0), 12678 => (R => 255, G => 0, B => 0), 12679 => (R => 255, G => 0, B => 0), 12680 => (R => 255, G => 0, B => 0), 12681 => (R => 255, G => 0, B => 0), 12682 => (R => 255, G => 0, B => 0), 12683 => (R => 255, G => 0, B => 0), 12684 => (R => 255, G => 0, B => 0), 12685 => (R => 255, G => 0, B => 0), 12686 => (R => 255, G => 0, B => 0), 12687 => (R => 255, G => 0, B => 0), 12688 => (R => 255, G => 0, B => 0), 12689 => (R => 255, G => 0, B => 0), 12690 => (R => 255, G => 0, B => 0), 12691 => (R => 255, G => 0, B => 0), 12692 => (R => 255, G => 0, B => 0), 12693 => (R => 255, G => 0, B => 0), 12694 => (R => 255, G => 0, B => 0), 12695 => (R => 255, G => 0, B => 0), 12696 => (R => 255, G => 0, B => 0), 12697 => (R => 255, G => 0, B => 0), 12698 => (R => 255, G => 0, B => 0), 12699 => (R => 255, G => 0, B => 0), 12700 => (R => 255, G => 0, B => 0), 12701 => (R => 255, G => 0, B => 0), 12702 => (R => 255, G => 0, B => 0), 12703 => (R => 255, G => 0, B => 0), 12704 => (R => 255, G => 0, B => 0), 12705 => (R => 255, G => 0, B => 0), 12706 => (R => 255, G => 0, B => 0), 12707 => (R => 255, G => 0, B => 0), 12708 => (R => 255, G => 0, B => 0), 12709 => (R => 255, G => 0, B => 0), 12710 => (R => 255, G => 0, B => 0), 12711 => (R => 255, G => 0, B => 0), 12712 => (R => 255, G => 0, B => 0), 12713 => (R => 255, G => 0, B => 0), 12714 => (R => 255, G => 0, B => 0), 12715 => (R => 255, G => 0, B => 0), 12716 => (R => 255, G => 0, B => 0), 12717 => (R => 255, G => 0, B => 0), 12718 => (R => 255, G => 0, B => 0), 12719 => (R => 255, G => 0, B => 0), 12720 => (R => 255, G => 0, B => 0), 12721 => (R => 255, G => 0, B => 0), 12722 => (R => 255, G => 0, B => 0), 12723 => (R => 255, G => 0, B => 0), 12724 => (R => 255, G => 0, B => 0), 12725 => (R => 255, G => 0, B => 0), 12726 => (R => 255, G => 0, B => 0), 12727 => (R => 255, G => 0, B => 0), 12728 => (R => 255, G => 0, B => 0), 12729 => (R => 255, G => 0, B => 0), 12730 => (R => 255, G => 0, B => 0), 12731 => (R => 255, G => 0, B => 0), 12732 => (R => 255, G => 0, B => 0), 12733 => (R => 255, G => 0, B => 0), 12734 => (R => 255, G => 0, B => 0), 12735 => (R => 255, G => 0, B => 0), 12736 => (R => 255, G => 0, B => 0), 12737 => (R => 255, G => 0, B => 0), 12738 => (R => 0, G => 0, B => 0), 12739 => (R => 0, G => 0, B => 0), 12740 => (R => 0, G => 0, B => 0), 12741 => (R => 0, G => 0, B => 0), 12742 => (R => 0, G => 0, B => 0), 12743 => (R => 0, G => 0, B => 0), 12744 => (R => 0, G => 0, B => 0), 12745 => (R => 0, G => 0, B => 0), 12746 => (R => 0, G => 0, B => 0), 12747 => (R => 0, G => 0, B => 0), 12748 => (R => 0, G => 0, B => 0), 12749 => (R => 0, G => 0, B => 0), 12750 => (R => 0, G => 0, B => 0), 12751 => (R => 0, G => 0, B => 0), 12752 => (R => 0, G => 0, B => 0), 12753 => (R => 0, G => 0, B => 0), 12754 => (R => 0, G => 0, B => 0), 12755 => (R => 0, G => 0, B => 0), 12756 => (R => 0, G => 0, B => 0), 12757 => (R => 0, G => 0, B => 0), 12758 => (R => 0, G => 0, B => 0), 12759 => (R => 0, G => 0, B => 0), 12760 => (R => 0, G => 0, B => 0), 12761 => (R => 0, G => 0, B => 0), 12762 => (R => 0, G => 0, B => 0), 12763 => (R => 0, G => 0, B => 0), 12764 => (R => 0, G => 0, B => 0), 12765 => (R => 0, G => 0, B => 0), 12766 => (R => 0, G => 0, B => 0), 12767 => (R => 0, G => 0, B => 0), 12768 => (R => 0, G => 0, B => 0), 12769 => (R => 0, G => 0, B => 0), 12770 => (R => 0, G => 0, B => 0), 12771 => (R => 0, G => 0, B => 0), 12772 => (R => 0, G => 0, B => 0), 12773 => (R => 0, G => 0, B => 0), 12774 => (R => 0, G => 0, B => 0), 12775 => (R => 0, G => 0, B => 0), 12776 => (R => 0, G => 0, B => 0), 12777 => (R => 0, G => 0, B => 0), 12778 => (R => 0, G => 0, B => 0), 12779 => (R => 0, G => 0, B => 0), 12780 => (R => 0, G => 0, B => 0), 12781 => (R => 0, G => 0, B => 0), 12782 => (R => 0, G => 0, B => 0), 12783 => (R => 0, G => 0, B => 0), 12784 => (R => 0, G => 0, B => 0), 12785 => (R => 0, G => 0, B => 0), 12786 => (R => 0, G => 0, B => 0), 12787 => (R => 0, G => 0, B => 0), 12788 => (R => 0, G => 0, B => 0), 12789 => (R => 0, G => 0, B => 0), 12790 => (R => 0, G => 0, B => 0), 12791 => (R => 0, G => 0, B => 0), 12792 => (R => 0, G => 0, B => 0), 12793 => (R => 0, G => 0, B => 0), 12794 => (R => 0, G => 0, B => 0), 12795 => (R => 0, G => 0, B => 0), 12796 => (R => 0, G => 0, B => 0), 12797 => (R => 0, G => 0, B => 0), 12798 => (R => 0, G => 0, B => 0), 12799 => (R => 0, G => 0, B => 0), 12800 => (R => 0, G => 0, B => 0), 12801 => (R => 0, G => 0, B => 0), 12802 => (R => 0, G => 0, B => 0), 12803 => (R => 0, G => 0, B => 0), 12804 => (R => 0, G => 0, B => 0), 12805 => (R => 0, G => 0, B => 0), 12806 => (R => 0, G => 0, B => 0), 12807 => (R => 0, G => 0, B => 0), 12808 => (R => 0, G => 0, B => 0), 12809 => (R => 0, G => 0, B => 0), 12810 => (R => 0, G => 0, B => 0), 12811 => (R => 0, G => 0, B => 0), 12812 => (R => 0, G => 0, B => 0), 12813 => (R => 0, G => 0, B => 0), 12814 => (R => 0, G => 0, B => 0), 12815 => (R => 0, G => 0, B => 0), 12816 => (R => 0, G => 0, B => 0), 12817 => (R => 0, G => 0, B => 0), 12818 => (R => 0, G => 0, B => 0), 12819 => (R => 0, G => 0, B => 0), 12820 => (R => 0, G => 0, B => 0), 12821 => (R => 0, G => 0, B => 0), 12822 => (R => 0, G => 0, B => 0), 12823 => (R => 0, G => 0, B => 0), 12824 => (R => 0, G => 0, B => 0), 12825 => (R => 0, G => 0, B => 0), 12826 => (R => 0, G => 0, B => 0), 12827 => (R => 0, G => 0, B => 0), 12828 => (R => 0, G => 0, B => 0), 12829 => (R => 0, G => 0, B => 0), 12830 => (R => 0, G => 0, B => 0), 12831 => (R => 0, G => 0, B => 0), 12832 => (R => 0, G => 0, B => 0), 12833 => (R => 0, G => 0, B => 0), 12834 => (R => 0, G => 0, B => 0), 12835 => (R => 0, G => 0, B => 0), 12836 => (R => 0, G => 0, B => 0), 12837 => (R => 0, G => 0, B => 0), 12838 => (R => 0, G => 0, B => 0), 12839 => (R => 0, G => 0, B => 0), 12840 => (R => 0, G => 0, B => 0), 12841 => (R => 0, G => 0, B => 0), 12842 => (R => 0, G => 0, B => 0), 12843 => (R => 0, G => 0, B => 0), 12844 => (R => 0, G => 0, B => 0), 12845 => (R => 0, G => 0, B => 0), 12846 => (R => 0, G => 0, B => 0), 12847 => (R => 0, G => 0, B => 0), 12848 => (R => 0, G => 0, B => 0), 12849 => (R => 0, G => 0, B => 0), 12850 => (R => 0, G => 0, B => 0), 12851 => (R => 0, G => 0, B => 0), 12852 => (R => 0, G => 0, B => 0), 12853 => (R => 0, G => 0, B => 0), 12854 => (R => 0, G => 0, B => 0), 12855 => (R => 0, G => 0, B => 0), 12856 => (R => 0, G => 0, B => 0), 12857 => (R => 0, G => 0, B => 0), 12858 => (R => 0, G => 0, B => 0), 12859 => (R => 0, G => 0, B => 0), 12860 => (R => 0, G => 0, B => 0), 12861 => (R => 0, G => 0, B => 0), 12862 => (R => 0, G => 0, B => 0), 12863 => (R => 0, G => 0, B => 0), 12864 => (R => 0, G => 0, B => 0), 12865 => (R => 255, G => 0, B => 0), 12866 => (R => 255, G => 0, B => 0), 12867 => (R => 255, G => 0, B => 0), 12868 => (R => 255, G => 0, B => 0), 12869 => (R => 255, G => 0, B => 0), 12870 => (R => 255, G => 0, B => 0), 12871 => (R => 255, G => 0, B => 0), 12872 => (R => 255, G => 0, B => 0), 12873 => (R => 255, G => 0, B => 0), 12874 => (R => 255, G => 0, B => 0), 12875 => (R => 255, G => 0, B => 0), 12876 => (R => 255, G => 0, B => 0), 12877 => (R => 255, G => 0, B => 0), 12878 => (R => 255, G => 0, B => 0), 12879 => (R => 255, G => 0, B => 0), 12880 => (R => 255, G => 0, B => 0), 12881 => (R => 255, G => 0, B => 0), 12882 => (R => 255, G => 0, B => 0), 12883 => (R => 255, G => 0, B => 0), 12884 => (R => 255, G => 0, B => 0), 12885 => (R => 255, G => 0, B => 0), 12886 => (R => 255, G => 0, B => 0), 12887 => (R => 255, G => 0, B => 0), 12888 => (R => 255, G => 0, B => 0), 12889 => (R => 255, G => 0, B => 0), 12890 => (R => 255, G => 0, B => 0), 12891 => (R => 255, G => 0, B => 0), 12892 => (R => 255, G => 0, B => 0), 12893 => (R => 255, G => 0, B => 0), 12894 => (R => 255, G => 0, B => 0), 12895 => (R => 255, G => 0, B => 0), 12896 => (R => 255, G => 0, B => 0), 12897 => (R => 255, G => 0, B => 0), 12898 => (R => 255, G => 0, B => 0), 12899 => (R => 255, G => 0, B => 0), 12900 => (R => 255, G => 0, B => 0), 12901 => (R => 255, G => 0, B => 0), 12902 => (R => 255, G => 0, B => 0), 12903 => (R => 255, G => 0, B => 0), 12904 => (R => 255, G => 0, B => 0), 12905 => (R => 255, G => 0, B => 0), 12906 => (R => 255, G => 0, B => 0), 12907 => (R => 255, G => 0, B => 0), 12908 => (R => 255, G => 0, B => 0), 12909 => (R => 255, G => 0, B => 0), 12910 => (R => 255, G => 0, B => 0), 12911 => (R => 255, G => 0, B => 0), 12912 => (R => 255, G => 0, B => 0), 12913 => (R => 255, G => 0, B => 0), 12914 => (R => 255, G => 0, B => 0), 12915 => (R => 255, G => 0, B => 0), 12916 => (R => 255, G => 0, B => 0), 12917 => (R => 255, G => 0, B => 0), 12918 => (R => 255, G => 0, B => 0), 12919 => (R => 255, G => 0, B => 0), 12920 => (R => 255, G => 0, B => 0), 12921 => (R => 255, G => 0, B => 0), 12922 => (R => 255, G => 0, B => 0), 12923 => (R => 255, G => 0, B => 0), 12924 => (R => 255, G => 0, B => 0), 12925 => (R => 255, G => 0, B => 0), 12926 => (R => 255, G => 0, B => 0), 12927 => (R => 255, G => 0, B => 0), 12928 => (R => 255, G => 0, B => 0), 12929 => (R => 255, G => 0, B => 0), 12930 => (R => 255, G => 0, B => 0), 12931 => (R => 255, G => 0, B => 0), 12932 => (R => 255, G => 0, B => 0), 12933 => (R => 255, G => 0, B => 0), 12934 => (R => 255, G => 0, B => 0), 12935 => (R => 255, G => 0, B => 0), 12936 => (R => 0, G => 0, B => 0), 12937 => (R => 0, G => 0, B => 0), 12938 => (R => 0, G => 0, B => 0), 12939 => (R => 0, G => 0, B => 0), 12940 => (R => 0, G => 0, B => 0), 12941 => (R => 0, G => 0, B => 0), 12942 => (R => 0, G => 0, B => 0), 12943 => (R => 0, G => 0, B => 0), 12944 => (R => 0, G => 0, B => 0), 12945 => (R => 0, G => 0, B => 0), 12946 => (R => 0, G => 0, B => 0), 12947 => (R => 0, G => 0, B => 0), 12948 => (R => 0, G => 0, B => 0), 12949 => (R => 0, G => 0, B => 0), 12950 => (R => 0, G => 0, B => 0), 12951 => (R => 0, G => 0, B => 0), 12952 => (R => 0, G => 0, B => 0), 12953 => (R => 0, G => 0, B => 0), 12954 => (R => 0, G => 0, B => 0), 12955 => (R => 0, G => 0, B => 0), 12956 => (R => 0, G => 0, B => 0), 12957 => (R => 0, G => 0, B => 0), 12958 => (R => 0, G => 0, B => 0), 12959 => (R => 0, G => 0, B => 0), 12960 => (R => 0, G => 0, B => 0), 12961 => (R => 0, G => 0, B => 0), 12962 => (R => 0, G => 0, B => 0), 12963 => (R => 0, G => 0, B => 0), 12964 => (R => 0, G => 0, B => 0), 12965 => (R => 0, G => 0, B => 0), 12966 => (R => 0, G => 0, B => 0), 12967 => (R => 0, G => 0, B => 0), 12968 => (R => 0, G => 0, B => 0), 12969 => (R => 0, G => 0, B => 0), 12970 => (R => 0, G => 0, B => 0), 12971 => (R => 0, G => 0, B => 0), 12972 => (R => 0, G => 0, B => 0), 12973 => (R => 0, G => 0, B => 0), 12974 => (R => 0, G => 0, B => 0), 12975 => (R => 0, G => 0, B => 0), 12976 => (R => 0, G => 0, B => 0), 12977 => (R => 0, G => 0, B => 0), 12978 => (R => 0, G => 0, B => 0), 12979 => (R => 0, G => 0, B => 0), 12980 => (R => 0, G => 0, B => 0), 12981 => (R => 0, G => 0, B => 0), 12982 => (R => 0, G => 0, B => 0), 12983 => (R => 0, G => 0, B => 0), 12984 => (R => 0, G => 0, B => 0), 12985 => (R => 0, G => 0, B => 0), 12986 => (R => 0, G => 0, B => 0), 12987 => (R => 0, G => 0, B => 0), 12988 => (R => 0, G => 0, B => 0), 12989 => (R => 0, G => 0, B => 0), 12990 => (R => 0, G => 0, B => 0), 12991 => (R => 0, G => 0, B => 0), 12992 => (R => 0, G => 0, B => 0), 12993 => (R => 0, G => 0, B => 0), 12994 => (R => 0, G => 0, B => 0), 12995 => (R => 0, G => 0, B => 0), 12996 => (R => 0, G => 0, B => 0), 12997 => (R => 0, G => 0, B => 0), 12998 => (R => 0, G => 0, B => 0), 12999 => (R => 0, G => 0, B => 0), 13000 => (R => 0, G => 0, B => 0), 13001 => (R => 0, G => 0, B => 0), 13002 => (R => 0, G => 0, B => 0), 13003 => (R => 0, G => 0, B => 0), 13004 => (R => 0, G => 0, B => 0), 13005 => (R => 0, G => 0, B => 0), 13006 => (R => 0, G => 0, B => 0), 13007 => (R => 0, G => 0, B => 0), 13008 => (R => 0, G => 0, B => 0), 13009 => (R => 0, G => 0, B => 0), 13010 => (R => 0, G => 0, B => 0), 13011 => (R => 0, G => 0, B => 0), 13012 => (R => 0, G => 0, B => 0), 13013 => (R => 0, G => 0, B => 0), 13014 => (R => 0, G => 0, B => 0), 13015 => (R => 0, G => 0, B => 0), 13016 => (R => 0, G => 0, B => 0), 13017 => (R => 0, G => 0, B => 0), 13018 => (R => 0, G => 0, B => 0), 13019 => (R => 0, G => 0, B => 0), 13020 => (R => 0, G => 0, B => 0), 13021 => (R => 0, G => 0, B => 0), 13022 => (R => 0, G => 0, B => 0), 13023 => (R => 0, G => 0, B => 0), 13024 => (R => 0, G => 0, B => 0), 13025 => (R => 0, G => 0, B => 0), 13026 => (R => 0, G => 0, B => 0), 13027 => (R => 0, G => 0, B => 0), 13028 => (R => 0, G => 0, B => 0), 13029 => (R => 0, G => 0, B => 0), 13030 => (R => 0, G => 0, B => 0), 13031 => (R => 0, G => 0, B => 0), 13032 => (R => 0, G => 0, B => 0), 13033 => (R => 0, G => 0, B => 0), 13034 => (R => 0, G => 0, B => 0), 13035 => (R => 0, G => 0, B => 0), 13036 => (R => 0, G => 0, B => 0), 13037 => (R => 0, G => 0, B => 0), 13038 => (R => 0, G => 0, B => 0), 13039 => (R => 0, G => 0, B => 0), 13040 => (R => 0, G => 0, B => 0), 13041 => (R => 0, G => 0, B => 0), 13042 => (R => 0, G => 0, B => 0), 13043 => (R => 0, G => 0, B => 0), 13044 => (R => 0, G => 0, B => 0), 13045 => (R => 0, G => 0, B => 0), 13046 => (R => 0, G => 0, B => 0), 13047 => (R => 0, G => 0, B => 0), 13048 => (R => 0, G => 0, B => 0), 13049 => (R => 0, G => 0, B => 0), 13050 => (R => 0, G => 0, B => 0), 13051 => (R => 0, G => 0, B => 0), 13052 => (R => 0, G => 0, B => 0), 13053 => (R => 0, G => 0, B => 0), 13054 => (R => 0, G => 0, B => 0), 13055 => (R => 0, G => 0, B => 0), 13056 => (R => 0, G => 0, B => 0), 13057 => (R => 0, G => 0, B => 0), 13058 => (R => 0, G => 0, B => 0), 13059 => (R => 0, G => 0, B => 0), 13060 => (R => 0, G => 0, B => 0), 13061 => (R => 0, G => 0, B => 0), 13062 => (R => 0, G => 0, B => 0), 13063 => (R => 0, G => 0, B => 0), 13064 => (R => 0, G => 0, B => 0), 13065 => (R => 0, G => 0, B => 0), 13066 => (R => 255, G => 0, B => 0), 13067 => (R => 255, G => 0, B => 0), 13068 => (R => 255, G => 0, B => 0), 13069 => (R => 255, G => 0, B => 0), 13070 => (R => 255, G => 0, B => 0), 13071 => (R => 255, G => 0, B => 0), 13072 => (R => 255, G => 0, B => 0), 13073 => (R => 255, G => 0, B => 0), 13074 => (R => 255, G => 0, B => 0), 13075 => (R => 255, G => 0, B => 0), 13076 => (R => 255, G => 0, B => 0), 13077 => (R => 255, G => 0, B => 0), 13078 => (R => 255, G => 0, B => 0), 13079 => (R => 255, G => 0, B => 0), 13080 => (R => 255, G => 0, B => 0), 13081 => (R => 255, G => 0, B => 0), 13082 => (R => 255, G => 0, B => 0), 13083 => (R => 255, G => 0, B => 0), 13084 => (R => 255, G => 0, B => 0), 13085 => (R => 255, G => 0, B => 0), 13086 => (R => 255, G => 0, B => 0), 13087 => (R => 255, G => 0, B => 0), 13088 => (R => 255, G => 0, B => 0), 13089 => (R => 255, G => 0, B => 0), 13090 => (R => 255, G => 0, B => 0), 13091 => (R => 255, G => 0, B => 0), 13092 => (R => 255, G => 0, B => 0), 13093 => (R => 255, G => 0, B => 0), 13094 => (R => 255, G => 0, B => 0), 13095 => (R => 255, G => 0, B => 0), 13096 => (R => 255, G => 0, B => 0), 13097 => (R => 255, G => 0, B => 0), 13098 => (R => 255, G => 0, B => 0), 13099 => (R => 255, G => 0, B => 0), 13100 => (R => 255, G => 0, B => 0), 13101 => (R => 255, G => 0, B => 0), 13102 => (R => 255, G => 0, B => 0), 13103 => (R => 255, G => 0, B => 0), 13104 => (R => 255, G => 0, B => 0), 13105 => (R => 255, G => 0, B => 0), 13106 => (R => 255, G => 0, B => 0), 13107 => (R => 255, G => 0, B => 0), 13108 => (R => 255, G => 0, B => 0), 13109 => (R => 255, G => 0, B => 0), 13110 => (R => 255, G => 0, B => 0), 13111 => (R => 255, G => 0, B => 0), 13112 => (R => 255, G => 0, B => 0), 13113 => (R => 255, G => 0, B => 0), 13114 => (R => 255, G => 0, B => 0), 13115 => (R => 255, G => 0, B => 0), 13116 => (R => 255, G => 0, B => 0), 13117 => (R => 255, G => 0, B => 0), 13118 => (R => 255, G => 0, B => 0), 13119 => (R => 255, G => 0, B => 0), 13120 => (R => 255, G => 0, B => 0), 13121 => (R => 255, G => 0, B => 0), 13122 => (R => 255, G => 0, B => 0), 13123 => (R => 255, G => 0, B => 0), 13124 => (R => 255, G => 0, B => 0), 13125 => (R => 255, G => 0, B => 0), 13126 => (R => 255, G => 0, B => 0), 13127 => (R => 255, G => 0, B => 0), 13128 => (R => 255, G => 0, B => 0), 13129 => (R => 255, G => 0, B => 0), 13130 => (R => 255, G => 0, B => 0), 13131 => (R => 255, G => 0, B => 0), 13132 => (R => 255, G => 0, B => 0), 13133 => (R => 255, G => 0, B => 0), 13134 => (R => 255, G => 0, B => 0), 13135 => (R => 0, G => 0, B => 0), 13136 => (R => 0, G => 0, B => 0), 13137 => (R => 0, G => 0, B => 0), 13138 => (R => 0, G => 0, B => 0), 13139 => (R => 0, G => 0, B => 0), 13140 => (R => 0, G => 0, B => 0), 13141 => (R => 0, G => 0, B => 0), 13142 => (R => 0, G => 0, B => 0), 13143 => (R => 0, G => 0, B => 0), 13144 => (R => 0, G => 0, B => 0), 13145 => (R => 0, G => 0, B => 0), 13146 => (R => 0, G => 0, B => 0), 13147 => (R => 0, G => 0, B => 0), 13148 => (R => 0, G => 0, B => 0), 13149 => (R => 0, G => 0, B => 0), 13150 => (R => 0, G => 0, B => 0), 13151 => (R => 0, G => 0, B => 0), 13152 => (R => 0, G => 0, B => 0), 13153 => (R => 0, G => 0, B => 0), 13154 => (R => 0, G => 0, B => 0), 13155 => (R => 0, G => 0, B => 0), 13156 => (R => 0, G => 0, B => 0), 13157 => (R => 0, G => 0, B => 0), 13158 => (R => 0, G => 0, B => 0), 13159 => (R => 0, G => 0, B => 0), 13160 => (R => 0, G => 0, B => 0), 13161 => (R => 0, G => 0, B => 0), 13162 => (R => 0, G => 0, B => 0), 13163 => (R => 0, G => 0, B => 0), 13164 => (R => 0, G => 0, B => 0), 13165 => (R => 0, G => 0, B => 0), 13166 => (R => 0, G => 0, B => 0), 13167 => (R => 0, G => 0, B => 0), 13168 => (R => 0, G => 0, B => 0), 13169 => (R => 0, G => 0, B => 0), 13170 => (R => 0, G => 0, B => 0), 13171 => (R => 0, G => 0, B => 0), 13172 => (R => 0, G => 0, B => 0), 13173 => (R => 0, G => 0, B => 0), 13174 => (R => 0, G => 0, B => 0), 13175 => (R => 0, G => 0, B => 0), 13176 => (R => 0, G => 0, B => 0), 13177 => (R => 0, G => 0, B => 0), 13178 => (R => 0, G => 0, B => 0), 13179 => (R => 0, G => 0, B => 0), 13180 => (R => 0, G => 0, B => 0), 13181 => (R => 0, G => 0, B => 0), 13182 => (R => 0, G => 0, B => 0), 13183 => (R => 0, G => 0, B => 0), 13184 => (R => 0, G => 0, B => 0), 13185 => (R => 0, G => 0, B => 0), 13186 => (R => 0, G => 0, B => 0), 13187 => (R => 0, G => 0, B => 0), 13188 => (R => 0, G => 0, B => 0), 13189 => (R => 0, G => 0, B => 0), 13190 => (R => 0, G => 0, B => 0), 13191 => (R => 0, G => 0, B => 0), 13192 => (R => 0, G => 0, B => 0), 13193 => (R => 0, G => 0, B => 0), 13194 => (R => 0, G => 0, B => 0), 13195 => (R => 0, G => 0, B => 0), 13196 => (R => 0, G => 0, B => 0), 13197 => (R => 0, G => 0, B => 0), 13198 => (R => 0, G => 0, B => 0), 13199 => (R => 0, G => 0, B => 0), 13200 => (R => 0, G => 0, B => 0), 13201 => (R => 0, G => 0, B => 0), 13202 => (R => 0, G => 0, B => 0), 13203 => (R => 0, G => 0, B => 0), 13204 => (R => 0, G => 0, B => 0), 13205 => (R => 0, G => 0, B => 0), 13206 => (R => 0, G => 0, B => 0), 13207 => (R => 0, G => 0, B => 0), 13208 => (R => 0, G => 0, B => 0), 13209 => (R => 0, G => 0, B => 0), 13210 => (R => 0, G => 0, B => 0), 13211 => (R => 0, G => 0, B => 0), 13212 => (R => 0, G => 0, B => 0), 13213 => (R => 0, G => 0, B => 0), 13214 => (R => 0, G => 0, B => 0), 13215 => (R => 0, G => 0, B => 0), 13216 => (R => 0, G => 0, B => 0), 13217 => (R => 0, G => 0, B => 0), 13218 => (R => 0, G => 0, B => 0), 13219 => (R => 0, G => 0, B => 0), 13220 => (R => 0, G => 0, B => 0), 13221 => (R => 0, G => 0, B => 0), 13222 => (R => 0, G => 0, B => 0), 13223 => (R => 0, G => 0, B => 0), 13224 => (R => 0, G => 0, B => 0), 13225 => (R => 0, G => 0, B => 0), 13226 => (R => 0, G => 0, B => 0), 13227 => (R => 0, G => 0, B => 0), 13228 => (R => 0, G => 0, B => 0), 13229 => (R => 0, G => 0, B => 0), 13230 => (R => 0, G => 0, B => 0), 13231 => (R => 0, G => 0, B => 0), 13232 => (R => 0, G => 0, B => 0), 13233 => (R => 0, G => 0, B => 0), 13234 => (R => 0, G => 0, B => 0), 13235 => (R => 0, G => 0, B => 0), 13236 => (R => 0, G => 0, B => 0), 13237 => (R => 0, G => 0, B => 0), 13238 => (R => 0, G => 0, B => 0), 13239 => (R => 0, G => 0, B => 0), 13240 => (R => 0, G => 0, B => 0), 13241 => (R => 0, G => 0, B => 0), 13242 => (R => 0, G => 0, B => 0), 13243 => (R => 0, G => 0, B => 0), 13244 => (R => 0, G => 0, B => 0), 13245 => (R => 0, G => 0, B => 0), 13246 => (R => 0, G => 0, B => 0), 13247 => (R => 0, G => 0, B => 0), 13248 => (R => 0, G => 0, B => 0), 13249 => (R => 0, G => 0, B => 0), 13250 => (R => 0, G => 0, B => 0), 13251 => (R => 0, G => 0, B => 0), 13252 => (R => 0, G => 0, B => 0), 13253 => (R => 0, G => 0, B => 0), 13254 => (R => 0, G => 0, B => 0), 13255 => (R => 0, G => 0, B => 0), 13256 => (R => 0, G => 0, B => 0), 13257 => (R => 0, G => 0, B => 0), 13258 => (R => 0, G => 0, B => 0), 13259 => (R => 0, G => 0, B => 0), 13260 => (R => 0, G => 0, B => 0), 13261 => (R => 0, G => 0, B => 0), 13262 => (R => 0, G => 0, B => 0), 13263 => (R => 0, G => 0, B => 0), 13264 => (R => 0, G => 0, B => 0), 13265 => (R => 0, G => 0, B => 0), 13266 => (R => 0, G => 0, B => 0), 13267 => (R => 255, G => 0, B => 0), 13268 => (R => 255, G => 0, B => 0), 13269 => (R => 255, G => 0, B => 0), 13270 => (R => 255, G => 0, B => 0), 13271 => (R => 255, G => 0, B => 0), 13272 => (R => 255, G => 0, B => 0), 13273 => (R => 255, G => 0, B => 0), 13274 => (R => 255, G => 0, B => 0), 13275 => (R => 255, G => 0, B => 0), 13276 => (R => 255, G => 0, B => 0), 13277 => (R => 255, G => 0, B => 0), 13278 => (R => 255, G => 0, B => 0), 13279 => (R => 255, G => 0, B => 0), 13280 => (R => 255, G => 0, B => 0), 13281 => (R => 255, G => 0, B => 0), 13282 => (R => 255, G => 0, B => 0), 13283 => (R => 255, G => 0, B => 0), 13284 => (R => 255, G => 0, B => 0), 13285 => (R => 255, G => 0, B => 0), 13286 => (R => 255, G => 0, B => 0), 13287 => (R => 255, G => 0, B => 0), 13288 => (R => 255, G => 0, B => 0), 13289 => (R => 255, G => 0, B => 0), 13290 => (R => 255, G => 0, B => 0), 13291 => (R => 255, G => 0, B => 0), 13292 => (R => 255, G => 0, B => 0), 13293 => (R => 255, G => 0, B => 0), 13294 => (R => 255, G => 0, B => 0), 13295 => (R => 255, G => 0, B => 0), 13296 => (R => 255, G => 0, B => 0), 13297 => (R => 255, G => 0, B => 0), 13298 => (R => 255, G => 0, B => 0), 13299 => (R => 255, G => 0, B => 0), 13300 => (R => 255, G => 0, B => 0), 13301 => (R => 255, G => 0, B => 0), 13302 => (R => 255, G => 0, B => 0), 13303 => (R => 255, G => 0, B => 0), 13304 => (R => 255, G => 0, B => 0), 13305 => (R => 255, G => 0, B => 0), 13306 => (R => 255, G => 0, B => 0), 13307 => (R => 255, G => 0, B => 0), 13308 => (R => 255, G => 0, B => 0), 13309 => (R => 255, G => 0, B => 0), 13310 => (R => 255, G => 0, B => 0), 13311 => (R => 255, G => 0, B => 0), 13312 => (R => 255, G => 0, B => 0), 13313 => (R => 255, G => 0, B => 0), 13314 => (R => 255, G => 0, B => 0), 13315 => (R => 255, G => 0, B => 0), 13316 => (R => 255, G => 0, B => 0), 13317 => (R => 255, G => 0, B => 0), 13318 => (R => 255, G => 0, B => 0), 13319 => (R => 255, G => 0, B => 0), 13320 => (R => 255, G => 0, B => 0), 13321 => (R => 255, G => 0, B => 0), 13322 => (R => 255, G => 0, B => 0), 13323 => (R => 255, G => 0, B => 0), 13324 => (R => 255, G => 0, B => 0), 13325 => (R => 255, G => 0, B => 0), 13326 => (R => 255, G => 0, B => 0), 13327 => (R => 255, G => 0, B => 0), 13328 => (R => 255, G => 0, B => 0), 13329 => (R => 255, G => 0, B => 0), 13330 => (R => 255, G => 0, B => 0), 13331 => (R => 255, G => 0, B => 0), 13332 => (R => 255, G => 0, B => 0), 13333 => (R => 255, G => 0, B => 0), 13334 => (R => 0, G => 0, B => 0), 13335 => (R => 0, G => 0, B => 0), 13336 => (R => 0, G => 0, B => 0), 13337 => (R => 0, G => 0, B => 0), 13338 => (R => 0, G => 0, B => 0), 13339 => (R => 0, G => 0, B => 0), 13340 => (R => 0, G => 0, B => 0), 13341 => (R => 0, G => 0, B => 0), 13342 => (R => 0, G => 0, B => 0), 13343 => (R => 0, G => 0, B => 0), 13344 => (R => 0, G => 0, B => 0), 13345 => (R => 0, G => 0, B => 0), 13346 => (R => 0, G => 0, B => 0), 13347 => (R => 0, G => 0, B => 0), 13348 => (R => 0, G => 0, B => 0), 13349 => (R => 0, G => 0, B => 0), 13350 => (R => 0, G => 0, B => 0), 13351 => (R => 0, G => 0, B => 0), 13352 => (R => 0, G => 0, B => 0), 13353 => (R => 0, G => 0, B => 0), 13354 => (R => 0, G => 0, B => 0), 13355 => (R => 0, G => 0, B => 0), 13356 => (R => 0, G => 0, B => 0), 13357 => (R => 0, G => 0, B => 0), 13358 => (R => 0, G => 0, B => 0), 13359 => (R => 0, G => 0, B => 0), 13360 => (R => 0, G => 0, B => 0), 13361 => (R => 0, G => 0, B => 0), 13362 => (R => 0, G => 0, B => 0), 13363 => (R => 0, G => 0, B => 0), 13364 => (R => 0, G => 0, B => 0), 13365 => (R => 0, G => 0, B => 0), 13366 => (R => 0, G => 0, B => 0), 13367 => (R => 0, G => 0, B => 0), 13368 => (R => 0, G => 0, B => 0), 13369 => (R => 0, G => 0, B => 0), 13370 => (R => 0, G => 0, B => 0), 13371 => (R => 0, G => 0, B => 0), 13372 => (R => 0, G => 0, B => 0), 13373 => (R => 0, G => 0, B => 0), 13374 => (R => 0, G => 0, B => 0), 13375 => (R => 0, G => 0, B => 0), 13376 => (R => 0, G => 0, B => 0), 13377 => (R => 0, G => 0, B => 0), 13378 => (R => 0, G => 0, B => 0), 13379 => (R => 0, G => 0, B => 0), 13380 => (R => 0, G => 0, B => 0), 13381 => (R => 0, G => 0, B => 0), 13382 => (R => 0, G => 0, B => 0), 13383 => (R => 0, G => 0, B => 0), 13384 => (R => 0, G => 0, B => 0), 13385 => (R => 0, G => 0, B => 0), 13386 => (R => 0, G => 0, B => 0), 13387 => (R => 0, G => 0, B => 0), 13388 => (R => 0, G => 0, B => 0), 13389 => (R => 0, G => 0, B => 0), 13390 => (R => 0, G => 0, B => 0), 13391 => (R => 0, G => 0, B => 0), 13392 => (R => 0, G => 0, B => 0), 13393 => (R => 0, G => 0, B => 0), 13394 => (R => 0, G => 0, B => 0), 13395 => (R => 0, G => 0, B => 0), 13396 => (R => 0, G => 0, B => 0), 13397 => (R => 0, G => 0, B => 0), 13398 => (R => 0, G => 0, B => 0), 13399 => (R => 0, G => 0, B => 0), 13400 => (R => 0, G => 0, B => 0), 13401 => (R => 0, G => 0, B => 0), 13402 => (R => 0, G => 0, B => 0), 13403 => (R => 0, G => 0, B => 0), 13404 => (R => 0, G => 0, B => 0), 13405 => (R => 0, G => 0, B => 0), 13406 => (R => 0, G => 0, B => 0), 13407 => (R => 0, G => 0, B => 0), 13408 => (R => 0, G => 0, B => 0), 13409 => (R => 0, G => 0, B => 0), 13410 => (R => 0, G => 0, B => 0), 13411 => (R => 0, G => 0, B => 0), 13412 => (R => 0, G => 0, B => 0), 13413 => (R => 0, G => 0, B => 0), 13414 => (R => 0, G => 0, B => 0), 13415 => (R => 0, G => 0, B => 0), 13416 => (R => 0, G => 0, B => 0), 13417 => (R => 0, G => 0, B => 0), 13418 => (R => 0, G => 0, B => 0), 13419 => (R => 0, G => 0, B => 0), 13420 => (R => 0, G => 0, B => 0), 13421 => (R => 0, G => 0, B => 0), 13422 => (R => 0, G => 0, B => 0), 13423 => (R => 0, G => 0, B => 0), 13424 => (R => 0, G => 0, B => 0), 13425 => (R => 0, G => 0, B => 0), 13426 => (R => 0, G => 0, B => 0), 13427 => (R => 0, G => 0, B => 0), 13428 => (R => 0, G => 0, B => 0), 13429 => (R => 0, G => 0, B => 0), 13430 => (R => 0, G => 0, B => 0), 13431 => (R => 0, G => 0, B => 0), 13432 => (R => 0, G => 0, B => 0), 13433 => (R => 0, G => 0, B => 0), 13434 => (R => 0, G => 0, B => 0), 13435 => (R => 0, G => 0, B => 0), 13436 => (R => 0, G => 0, B => 0), 13437 => (R => 0, G => 0, B => 0), 13438 => (R => 0, G => 0, B => 0), 13439 => (R => 0, G => 0, B => 0), 13440 => (R => 0, G => 0, B => 0), 13441 => (R => 0, G => 0, B => 0), 13442 => (R => 0, G => 0, B => 0), 13443 => (R => 0, G => 0, B => 0), 13444 => (R => 0, G => 0, B => 0), 13445 => (R => 0, G => 0, B => 0), 13446 => (R => 0, G => 0, B => 0), 13447 => (R => 0, G => 0, B => 0), 13448 => (R => 0, G => 0, B => 0), 13449 => (R => 0, G => 0, B => 0), 13450 => (R => 0, G => 0, B => 0), 13451 => (R => 0, G => 0, B => 0), 13452 => (R => 0, G => 0, B => 0), 13453 => (R => 0, G => 0, B => 0), 13454 => (R => 0, G => 0, B => 0), 13455 => (R => 0, G => 0, B => 0), 13456 => (R => 0, G => 0, B => 0), 13457 => (R => 0, G => 0, B => 0), 13458 => (R => 0, G => 0, B => 0), 13459 => (R => 0, G => 0, B => 0), 13460 => (R => 0, G => 0, B => 0), 13461 => (R => 0, G => 0, B => 0), 13462 => (R => 0, G => 0, B => 0), 13463 => (R => 0, G => 0, B => 0), 13464 => (R => 0, G => 0, B => 0), 13465 => (R => 0, G => 0, B => 0), 13466 => (R => 0, G => 0, B => 0), 13467 => (R => 0, G => 0, B => 0), 13468 => (R => 255, G => 0, B => 0), 13469 => (R => 255, G => 0, B => 0), 13470 => (R => 255, G => 0, B => 0), 13471 => (R => 255, G => 0, B => 0), 13472 => (R => 255, G => 0, B => 0), 13473 => (R => 255, G => 0, B => 0), 13474 => (R => 255, G => 0, B => 0), 13475 => (R => 255, G => 0, B => 0), 13476 => (R => 255, G => 0, B => 0), 13477 => (R => 255, G => 0, B => 0), 13478 => (R => 255, G => 0, B => 0), 13479 => (R => 255, G => 0, B => 0), 13480 => (R => 255, G => 0, B => 0), 13481 => (R => 255, G => 0, B => 0), 13482 => (R => 255, G => 0, B => 0), 13483 => (R => 255, G => 0, B => 0), 13484 => (R => 255, G => 0, B => 0), 13485 => (R => 255, G => 0, B => 0), 13486 => (R => 255, G => 0, B => 0), 13487 => (R => 255, G => 0, B => 0), 13488 => (R => 255, G => 0, B => 0), 13489 => (R => 255, G => 0, B => 0), 13490 => (R => 255, G => 0, B => 0), 13491 => (R => 255, G => 0, B => 0), 13492 => (R => 255, G => 0, B => 0), 13493 => (R => 255, G => 0, B => 0), 13494 => (R => 255, G => 0, B => 0), 13495 => (R => 255, G => 0, B => 0), 13496 => (R => 255, G => 0, B => 0), 13497 => (R => 255, G => 0, B => 0), 13498 => (R => 255, G => 0, B => 0), 13499 => (R => 255, G => 0, B => 0), 13500 => (R => 255, G => 0, B => 0), 13501 => (R => 255, G => 0, B => 0), 13502 => (R => 255, G => 0, B => 0), 13503 => (R => 255, G => 0, B => 0), 13504 => (R => 255, G => 0, B => 0), 13505 => (R => 255, G => 0, B => 0), 13506 => (R => 255, G => 0, B => 0), 13507 => (R => 255, G => 0, B => 0), 13508 => (R => 255, G => 0, B => 0), 13509 => (R => 255, G => 0, B => 0), 13510 => (R => 255, G => 0, B => 0), 13511 => (R => 255, G => 0, B => 0), 13512 => (R => 255, G => 0, B => 0), 13513 => (R => 255, G => 0, B => 0), 13514 => (R => 255, G => 0, B => 0), 13515 => (R => 255, G => 0, B => 0), 13516 => (R => 255, G => 0, B => 0), 13517 => (R => 255, G => 0, B => 0), 13518 => (R => 255, G => 0, B => 0), 13519 => (R => 255, G => 0, B => 0), 13520 => (R => 255, G => 0, B => 0), 13521 => (R => 255, G => 0, B => 0), 13522 => (R => 255, G => 0, B => 0), 13523 => (R => 255, G => 0, B => 0), 13524 => (R => 255, G => 0, B => 0), 13525 => (R => 255, G => 0, B => 0), 13526 => (R => 255, G => 0, B => 0), 13527 => (R => 255, G => 0, B => 0), 13528 => (R => 255, G => 0, B => 0), 13529 => (R => 255, G => 0, B => 0), 13530 => (R => 255, G => 0, B => 0), 13531 => (R => 255, G => 0, B => 0), 13532 => (R => 255, G => 0, B => 0), 13533 => (R => 0, G => 0, B => 0), 13534 => (R => 0, G => 0, B => 0), 13535 => (R => 0, G => 0, B => 0), 13536 => (R => 0, G => 0, B => 0), 13537 => (R => 0, G => 0, B => 0), 13538 => (R => 0, G => 0, B => 0), 13539 => (R => 0, G => 0, B => 0), 13540 => (R => 0, G => 0, B => 0), 13541 => (R => 0, G => 0, B => 0), 13542 => (R => 0, G => 0, B => 0), 13543 => (R => 0, G => 0, B => 0), 13544 => (R => 0, G => 0, B => 0), 13545 => (R => 0, G => 0, B => 0), 13546 => (R => 0, G => 0, B => 0), 13547 => (R => 0, G => 0, B => 0), 13548 => (R => 0, G => 0, B => 0), 13549 => (R => 0, G => 0, B => 0), 13550 => (R => 0, G => 0, B => 0), 13551 => (R => 0, G => 0, B => 0), 13552 => (R => 0, G => 0, B => 0), 13553 => (R => 0, G => 0, B => 0), 13554 => (R => 0, G => 0, B => 0), 13555 => (R => 0, G => 0, B => 0), 13556 => (R => 0, G => 0, B => 0), 13557 => (R => 0, G => 0, B => 0), 13558 => (R => 0, G => 0, B => 0), 13559 => (R => 0, G => 0, B => 0), 13560 => (R => 0, G => 0, B => 0), 13561 => (R => 0, G => 0, B => 0), 13562 => (R => 0, G => 0, B => 0), 13563 => (R => 0, G => 0, B => 0), 13564 => (R => 0, G => 0, B => 0), 13565 => (R => 0, G => 0, B => 0), 13566 => (R => 0, G => 0, B => 0), 13567 => (R => 0, G => 0, B => 0), 13568 => (R => 0, G => 0, B => 0), 13569 => (R => 0, G => 0, B => 0), 13570 => (R => 0, G => 0, B => 0), 13571 => (R => 0, G => 0, B => 0), 13572 => (R => 0, G => 0, B => 0), 13573 => (R => 0, G => 0, B => 0), 13574 => (R => 0, G => 0, B => 0), 13575 => (R => 0, G => 0, B => 0), 13576 => (R => 0, G => 0, B => 0), 13577 => (R => 0, G => 0, B => 0), 13578 => (R => 0, G => 0, B => 0), 13579 => (R => 0, G => 0, B => 0), 13580 => (R => 0, G => 0, B => 0), 13581 => (R => 0, G => 0, B => 0), 13582 => (R => 0, G => 0, B => 0), 13583 => (R => 0, G => 0, B => 0), 13584 => (R => 0, G => 0, B => 0), 13585 => (R => 0, G => 0, B => 0), 13586 => (R => 0, G => 0, B => 0), 13587 => (R => 0, G => 0, B => 0), 13588 => (R => 0, G => 0, B => 0), 13589 => (R => 0, G => 0, B => 0), 13590 => (R => 0, G => 0, B => 0), 13591 => (R => 0, G => 0, B => 0), 13592 => (R => 0, G => 0, B => 0), 13593 => (R => 0, G => 0, B => 0), 13594 => (R => 0, G => 0, B => 0), 13595 => (R => 0, G => 0, B => 0), 13596 => (R => 0, G => 0, B => 0), 13597 => (R => 0, G => 0, B => 0), 13598 => (R => 0, G => 0, B => 0), 13599 => (R => 0, G => 0, B => 0), 13600 => (R => 0, G => 0, B => 0), 13601 => (R => 0, G => 0, B => 0), 13602 => (R => 0, G => 0, B => 0), 13603 => (R => 0, G => 0, B => 0), 13604 => (R => 0, G => 0, B => 0), 13605 => (R => 0, G => 0, B => 0), 13606 => (R => 0, G => 0, B => 0), 13607 => (R => 0, G => 0, B => 0), 13608 => (R => 0, G => 0, B => 0), 13609 => (R => 0, G => 0, B => 0), 13610 => (R => 0, G => 0, B => 0), 13611 => (R => 0, G => 0, B => 0), 13612 => (R => 0, G => 0, B => 0), 13613 => (R => 0, G => 0, B => 0), 13614 => (R => 0, G => 0, B => 0), 13615 => (R => 0, G => 0, B => 0), 13616 => (R => 0, G => 0, B => 0), 13617 => (R => 0, G => 0, B => 0), 13618 => (R => 0, G => 0, B => 0), 13619 => (R => 0, G => 0, B => 0), 13620 => (R => 0, G => 0, B => 0), 13621 => (R => 0, G => 0, B => 0), 13622 => (R => 0, G => 0, B => 0), 13623 => (R => 0, G => 0, B => 0), 13624 => (R => 0, G => 0, B => 0), 13625 => (R => 0, G => 0, B => 0), 13626 => (R => 0, G => 0, B => 0), 13627 => (R => 0, G => 0, B => 0), 13628 => (R => 0, G => 0, B => 0), 13629 => (R => 0, G => 0, B => 0), 13630 => (R => 0, G => 0, B => 0), 13631 => (R => 0, G => 0, B => 0), 13632 => (R => 0, G => 0, B => 0), 13633 => (R => 0, G => 0, B => 0), 13634 => (R => 0, G => 0, B => 0), 13635 => (R => 0, G => 0, B => 0), 13636 => (R => 0, G => 0, B => 0), 13637 => (R => 0, G => 0, B => 0), 13638 => (R => 0, G => 0, B => 0), 13639 => (R => 0, G => 0, B => 0), 13640 => (R => 0, G => 0, B => 0), 13641 => (R => 0, G => 0, B => 0), 13642 => (R => 0, G => 0, B => 0), 13643 => (R => 0, G => 0, B => 0), 13644 => (R => 0, G => 0, B => 0), 13645 => (R => 0, G => 0, B => 0), 13646 => (R => 0, G => 0, B => 0), 13647 => (R => 0, G => 0, B => 0), 13648 => (R => 0, G => 0, B => 0), 13649 => (R => 0, G => 0, B => 0), 13650 => (R => 0, G => 0, B => 0), 13651 => (R => 0, G => 0, B => 0), 13652 => (R => 0, G => 0, B => 0), 13653 => (R => 0, G => 0, B => 0), 13654 => (R => 0, G => 0, B => 0), 13655 => (R => 0, G => 0, B => 0), 13656 => (R => 0, G => 0, B => 0), 13657 => (R => 0, G => 0, B => 0), 13658 => (R => 0, G => 0, B => 0), 13659 => (R => 0, G => 0, B => 0), 13660 => (R => 0, G => 0, B => 0), 13661 => (R => 0, G => 0, B => 0), 13662 => (R => 0, G => 0, B => 0), 13663 => (R => 0, G => 0, B => 0), 13664 => (R => 0, G => 0, B => 0), 13665 => (R => 0, G => 0, B => 0), 13666 => (R => 0, G => 0, B => 0), 13667 => (R => 0, G => 0, B => 0), 13668 => (R => 0, G => 0, B => 0), 13669 => (R => 255, G => 0, B => 0), 13670 => (R => 255, G => 0, B => 0), 13671 => (R => 255, G => 0, B => 0), 13672 => (R => 255, G => 0, B => 0), 13673 => (R => 255, G => 0, B => 0), 13674 => (R => 255, G => 0, B => 0), 13675 => (R => 255, G => 0, B => 0), 13676 => (R => 255, G => 0, B => 0), 13677 => (R => 255, G => 0, B => 0), 13678 => (R => 255, G => 0, B => 0), 13679 => (R => 255, G => 0, B => 0), 13680 => (R => 255, G => 0, B => 0), 13681 => (R => 255, G => 0, B => 0), 13682 => (R => 255, G => 0, B => 0), 13683 => (R => 255, G => 0, B => 0), 13684 => (R => 255, G => 0, B => 0), 13685 => (R => 255, G => 0, B => 0), 13686 => (R => 255, G => 0, B => 0), 13687 => (R => 255, G => 0, B => 0), 13688 => (R => 255, G => 0, B => 0), 13689 => (R => 255, G => 0, B => 0), 13690 => (R => 255, G => 0, B => 0), 13691 => (R => 255, G => 0, B => 0), 13692 => (R => 255, G => 0, B => 0), 13693 => (R => 255, G => 0, B => 0), 13694 => (R => 255, G => 0, B => 0), 13695 => (R => 255, G => 0, B => 0), 13696 => (R => 255, G => 0, B => 0), 13697 => (R => 255, G => 0, B => 0), 13698 => (R => 255, G => 0, B => 0), 13699 => (R => 255, G => 0, B => 0), 13700 => (R => 255, G => 0, B => 0), 13701 => (R => 255, G => 0, B => 0), 13702 => (R => 255, G => 0, B => 0), 13703 => (R => 255, G => 0, B => 0), 13704 => (R => 255, G => 0, B => 0), 13705 => (R => 255, G => 0, B => 0), 13706 => (R => 255, G => 0, B => 0), 13707 => (R => 255, G => 0, B => 0), 13708 => (R => 255, G => 0, B => 0), 13709 => (R => 255, G => 0, B => 0), 13710 => (R => 255, G => 0, B => 0), 13711 => (R => 255, G => 0, B => 0), 13712 => (R => 255, G => 0, B => 0), 13713 => (R => 255, G => 0, B => 0), 13714 => (R => 255, G => 0, B => 0), 13715 => (R => 255, G => 0, B => 0), 13716 => (R => 255, G => 0, B => 0), 13717 => (R => 255, G => 0, B => 0), 13718 => (R => 255, G => 0, B => 0), 13719 => (R => 255, G => 0, B => 0), 13720 => (R => 255, G => 0, B => 0), 13721 => (R => 255, G => 0, B => 0), 13722 => (R => 255, G => 0, B => 0), 13723 => (R => 255, G => 0, B => 0), 13724 => (R => 255, G => 0, B => 0), 13725 => (R => 255, G => 0, B => 0), 13726 => (R => 255, G => 0, B => 0), 13727 => (R => 255, G => 0, B => 0), 13728 => (R => 255, G => 0, B => 0), 13729 => (R => 255, G => 0, B => 0), 13730 => (R => 255, G => 0, B => 0), 13731 => (R => 255, G => 0, B => 0), 13732 => (R => 0, G => 0, B => 0), 13733 => (R => 0, G => 0, B => 0), 13734 => (R => 0, G => 0, B => 0), 13735 => (R => 0, G => 0, B => 0), 13736 => (R => 0, G => 0, B => 0), 13737 => (R => 0, G => 0, B => 0), 13738 => (R => 0, G => 0, B => 0), 13739 => (R => 0, G => 0, B => 0), 13740 => (R => 0, G => 0, B => 0), 13741 => (R => 0, G => 0, B => 0), 13742 => (R => 0, G => 0, B => 0), 13743 => (R => 0, G => 0, B => 0), 13744 => (R => 0, G => 0, B => 0), 13745 => (R => 0, G => 0, B => 0), 13746 => (R => 0, G => 0, B => 0), 13747 => (R => 0, G => 0, B => 0), 13748 => (R => 0, G => 0, B => 0), 13749 => (R => 0, G => 0, B => 0), 13750 => (R => 0, G => 0, B => 0), 13751 => (R => 0, G => 0, B => 0), 13752 => (R => 0, G => 0, B => 0), 13753 => (R => 0, G => 0, B => 0), 13754 => (R => 0, G => 0, B => 0), 13755 => (R => 0, G => 0, B => 0), 13756 => (R => 0, G => 0, B => 0), 13757 => (R => 0, G => 0, B => 0), 13758 => (R => 0, G => 0, B => 0), 13759 => (R => 0, G => 0, B => 0), 13760 => (R => 0, G => 0, B => 0), 13761 => (R => 0, G => 0, B => 0), 13762 => (R => 0, G => 0, B => 0), 13763 => (R => 0, G => 0, B => 0), 13764 => (R => 0, G => 0, B => 0), 13765 => (R => 0, G => 0, B => 0), 13766 => (R => 0, G => 0, B => 0), 13767 => (R => 0, G => 0, B => 0), 13768 => (R => 0, G => 0, B => 0), 13769 => (R => 0, G => 0, B => 0), 13770 => (R => 0, G => 0, B => 0), 13771 => (R => 0, G => 0, B => 0), 13772 => (R => 0, G => 0, B => 0), 13773 => (R => 0, G => 0, B => 0), 13774 => (R => 0, G => 0, B => 0), 13775 => (R => 0, G => 0, B => 0), 13776 => (R => 0, G => 0, B => 0), 13777 => (R => 0, G => 0, B => 0), 13778 => (R => 0, G => 0, B => 0), 13779 => (R => 0, G => 0, B => 0), 13780 => (R => 0, G => 0, B => 0), 13781 => (R => 0, G => 0, B => 0), 13782 => (R => 0, G => 0, B => 0), 13783 => (R => 0, G => 0, B => 0), 13784 => (R => 0, G => 0, B => 0), 13785 => (R => 0, G => 0, B => 0), 13786 => (R => 0, G => 0, B => 0), 13787 => (R => 0, G => 0, B => 0), 13788 => (R => 0, G => 0, B => 0), 13789 => (R => 0, G => 0, B => 0), 13790 => (R => 0, G => 0, B => 0), 13791 => (R => 0, G => 0, B => 0), 13792 => (R => 0, G => 0, B => 0), 13793 => (R => 0, G => 0, B => 0), 13794 => (R => 0, G => 0, B => 0), 13795 => (R => 0, G => 0, B => 0), 13796 => (R => 0, G => 0, B => 0), 13797 => (R => 0, G => 0, B => 0), 13798 => (R => 0, G => 0, B => 0), 13799 => (R => 0, G => 0, B => 0), 13800 => (R => 0, G => 0, B => 0), 13801 => (R => 0, G => 0, B => 0), 13802 => (R => 0, G => 0, B => 0), 13803 => (R => 0, G => 0, B => 0), 13804 => (R => 0, G => 0, B => 0), 13805 => (R => 0, G => 0, B => 0), 13806 => (R => 0, G => 0, B => 0), 13807 => (R => 0, G => 0, B => 0), 13808 => (R => 0, G => 0, B => 0), 13809 => (R => 0, G => 0, B => 0), 13810 => (R => 0, G => 0, B => 0), 13811 => (R => 0, G => 0, B => 0), 13812 => (R => 0, G => 0, B => 0), 13813 => (R => 0, G => 0, B => 0), 13814 => (R => 0, G => 0, B => 0), 13815 => (R => 0, G => 0, B => 0), 13816 => (R => 0, G => 0, B => 0), 13817 => (R => 0, G => 0, B => 0), 13818 => (R => 0, G => 0, B => 0), 13819 => (R => 0, G => 0, B => 0), 13820 => (R => 0, G => 0, B => 0), 13821 => (R => 0, G => 0, B => 0), 13822 => (R => 0, G => 0, B => 0), 13823 => (R => 0, G => 0, B => 0), 13824 => (R => 0, G => 0, B => 0), 13825 => (R => 0, G => 0, B => 0), 13826 => (R => 0, G => 0, B => 0), 13827 => (R => 0, G => 0, B => 0), 13828 => (R => 0, G => 0, B => 0), 13829 => (R => 0, G => 0, B => 0), 13830 => (R => 0, G => 0, B => 0), 13831 => (R => 0, G => 0, B => 0), 13832 => (R => 0, G => 0, B => 0), 13833 => (R => 0, G => 0, B => 0), 13834 => (R => 0, G => 0, B => 0), 13835 => (R => 0, G => 0, B => 0), 13836 => (R => 0, G => 0, B => 0), 13837 => (R => 0, G => 0, B => 0), 13838 => (R => 0, G => 0, B => 0), 13839 => (R => 0, G => 0, B => 0), 13840 => (R => 0, G => 0, B => 0), 13841 => (R => 0, G => 0, B => 0), 13842 => (R => 0, G => 0, B => 0), 13843 => (R => 0, G => 0, B => 0), 13844 => (R => 0, G => 0, B => 0), 13845 => (R => 0, G => 0, B => 0), 13846 => (R => 0, G => 0, B => 0), 13847 => (R => 0, G => 0, B => 0), 13848 => (R => 0, G => 0, B => 0), 13849 => (R => 0, G => 0, B => 0), 13850 => (R => 0, G => 0, B => 0), 13851 => (R => 0, G => 0, B => 0), 13852 => (R => 0, G => 0, B => 0), 13853 => (R => 0, G => 0, B => 0), 13854 => (R => 0, G => 0, B => 0), 13855 => (R => 0, G => 0, B => 0), 13856 => (R => 0, G => 0, B => 0), 13857 => (R => 0, G => 0, B => 0), 13858 => (R => 0, G => 0, B => 0), 13859 => (R => 0, G => 0, B => 0), 13860 => (R => 0, G => 0, B => 0), 13861 => (R => 0, G => 0, B => 0), 13862 => (R => 0, G => 0, B => 0), 13863 => (R => 0, G => 0, B => 0), 13864 => (R => 0, G => 0, B => 0), 13865 => (R => 0, G => 0, B => 0), 13866 => (R => 0, G => 0, B => 0), 13867 => (R => 0, G => 0, B => 0), 13868 => (R => 0, G => 0, B => 0), 13869 => (R => 0, G => 0, B => 0), 13870 => (R => 255, G => 0, B => 0), 13871 => (R => 255, G => 0, B => 0), 13872 => (R => 255, G => 0, B => 0), 13873 => (R => 255, G => 0, B => 0), 13874 => (R => 255, G => 0, B => 0), 13875 => (R => 255, G => 0, B => 0), 13876 => (R => 255, G => 0, B => 0), 13877 => (R => 255, G => 0, B => 0), 13878 => (R => 255, G => 0, B => 0), 13879 => (R => 255, G => 0, B => 0), 13880 => (R => 255, G => 0, B => 0), 13881 => (R => 255, G => 0, B => 0), 13882 => (R => 255, G => 0, B => 0), 13883 => (R => 255, G => 0, B => 0), 13884 => (R => 255, G => 0, B => 0), 13885 => (R => 255, G => 0, B => 0), 13886 => (R => 255, G => 0, B => 0), 13887 => (R => 255, G => 0, B => 0), 13888 => (R => 255, G => 0, B => 0), 13889 => (R => 255, G => 0, B => 0), 13890 => (R => 255, G => 0, B => 0), 13891 => (R => 255, G => 0, B => 0), 13892 => (R => 255, G => 0, B => 0), 13893 => (R => 255, G => 0, B => 0), 13894 => (R => 255, G => 0, B => 0), 13895 => (R => 255, G => 0, B => 0), 13896 => (R => 255, G => 0, B => 0), 13897 => (R => 255, G => 0, B => 0), 13898 => (R => 255, G => 0, B => 0), 13899 => (R => 255, G => 0, B => 0), 13900 => (R => 255, G => 0, B => 0), 13901 => (R => 255, G => 0, B => 0), 13902 => (R => 255, G => 0, B => 0), 13903 => (R => 255, G => 0, B => 0), 13904 => (R => 255, G => 0, B => 0), 13905 => (R => 255, G => 0, B => 0), 13906 => (R => 255, G => 0, B => 0), 13907 => (R => 255, G => 0, B => 0), 13908 => (R => 255, G => 0, B => 0), 13909 => (R => 255, G => 0, B => 0), 13910 => (R => 255, G => 0, B => 0), 13911 => (R => 255, G => 0, B => 0), 13912 => (R => 255, G => 0, B => 0), 13913 => (R => 255, G => 0, B => 0), 13914 => (R => 255, G => 0, B => 0), 13915 => (R => 255, G => 0, B => 0), 13916 => (R => 255, G => 0, B => 0), 13917 => (R => 255, G => 0, B => 0), 13918 => (R => 255, G => 0, B => 0), 13919 => (R => 255, G => 0, B => 0), 13920 => (R => 255, G => 0, B => 0), 13921 => (R => 255, G => 0, B => 0), 13922 => (R => 255, G => 0, B => 0), 13923 => (R => 255, G => 0, B => 0), 13924 => (R => 255, G => 0, B => 0), 13925 => (R => 255, G => 0, B => 0), 13926 => (R => 255, G => 0, B => 0), 13927 => (R => 255, G => 0, B => 0), 13928 => (R => 255, G => 0, B => 0), 13929 => (R => 255, G => 0, B => 0), 13930 => (R => 255, G => 0, B => 0), 13931 => (R => 0, G => 0, B => 0), 13932 => (R => 0, G => 0, B => 0), 13933 => (R => 0, G => 0, B => 0), 13934 => (R => 0, G => 0, B => 0), 13935 => (R => 0, G => 0, B => 0), 13936 => (R => 0, G => 0, B => 0), 13937 => (R => 0, G => 0, B => 0), 13938 => (R => 0, G => 0, B => 0), 13939 => (R => 0, G => 0, B => 0), 13940 => (R => 0, G => 0, B => 0), 13941 => (R => 0, G => 0, B => 0), 13942 => (R => 0, G => 0, B => 0), 13943 => (R => 0, G => 0, B => 0), 13944 => (R => 0, G => 0, B => 0), 13945 => (R => 0, G => 0, B => 0), 13946 => (R => 0, G => 0, B => 0), 13947 => (R => 0, G => 0, B => 0), 13948 => (R => 0, G => 0, B => 0), 13949 => (R => 0, G => 0, B => 0), 13950 => (R => 0, G => 0, B => 0), 13951 => (R => 0, G => 0, B => 0), 13952 => (R => 0, G => 0, B => 0), 13953 => (R => 0, G => 0, B => 0), 13954 => (R => 0, G => 0, B => 0), 13955 => (R => 0, G => 0, B => 0), 13956 => (R => 0, G => 0, B => 0), 13957 => (R => 0, G => 0, B => 0), 13958 => (R => 0, G => 0, B => 0), 13959 => (R => 0, G => 0, B => 0), 13960 => (R => 0, G => 0, B => 0), 13961 => (R => 0, G => 0, B => 0), 13962 => (R => 0, G => 0, B => 0), 13963 => (R => 0, G => 0, B => 0), 13964 => (R => 0, G => 0, B => 0), 13965 => (R => 0, G => 0, B => 0), 13966 => (R => 0, G => 0, B => 0), 13967 => (R => 0, G => 0, B => 0), 13968 => (R => 0, G => 0, B => 0), 13969 => (R => 0, G => 0, B => 0), 13970 => (R => 0, G => 0, B => 0), 13971 => (R => 0, G => 0, B => 0), 13972 => (R => 0, G => 0, B => 0), 13973 => (R => 0, G => 0, B => 0), 13974 => (R => 0, G => 0, B => 0), 13975 => (R => 0, G => 0, B => 0), 13976 => (R => 0, G => 0, B => 0), 13977 => (R => 0, G => 0, B => 0), 13978 => (R => 0, G => 0, B => 0), 13979 => (R => 0, G => 0, B => 0), 13980 => (R => 0, G => 0, B => 0), 13981 => (R => 0, G => 0, B => 0), 13982 => (R => 0, G => 0, B => 0), 13983 => (R => 0, G => 0, B => 0), 13984 => (R => 0, G => 0, B => 0), 13985 => (R => 0, G => 0, B => 0), 13986 => (R => 0, G => 0, B => 0), 13987 => (R => 0, G => 0, B => 0), 13988 => (R => 0, G => 0, B => 0), 13989 => (R => 0, G => 0, B => 0), 13990 => (R => 0, G => 0, B => 0), 13991 => (R => 0, G => 0, B => 0), 13992 => (R => 0, G => 0, B => 0), 13993 => (R => 0, G => 0, B => 0), 13994 => (R => 0, G => 0, B => 0), 13995 => (R => 0, G => 0, B => 0), 13996 => (R => 0, G => 0, B => 0), 13997 => (R => 0, G => 0, B => 0), 13998 => (R => 0, G => 0, B => 0), 13999 => (R => 0, G => 0, B => 0), 14000 => (R => 0, G => 0, B => 0), 14001 => (R => 0, G => 0, B => 0), 14002 => (R => 0, G => 0, B => 0), 14003 => (R => 0, G => 0, B => 0), 14004 => (R => 0, G => 0, B => 0), 14005 => (R => 0, G => 0, B => 0), 14006 => (R => 0, G => 0, B => 0), 14007 => (R => 0, G => 0, B => 0), 14008 => (R => 0, G => 0, B => 0), 14009 => (R => 0, G => 0, B => 0), 14010 => (R => 0, G => 0, B => 0), 14011 => (R => 0, G => 0, B => 0), 14012 => (R => 0, G => 0, B => 0), 14013 => (R => 0, G => 0, B => 0), 14014 => (R => 0, G => 0, B => 0), 14015 => (R => 0, G => 0, B => 0), 14016 => (R => 0, G => 0, B => 0), 14017 => (R => 0, G => 0, B => 0), 14018 => (R => 0, G => 0, B => 0), 14019 => (R => 0, G => 0, B => 0), 14020 => (R => 0, G => 0, B => 0), 14021 => (R => 0, G => 0, B => 0), 14022 => (R => 0, G => 0, B => 0), 14023 => (R => 0, G => 0, B => 0), 14024 => (R => 0, G => 0, B => 0), 14025 => (R => 0, G => 0, B => 0), 14026 => (R => 0, G => 0, B => 0), 14027 => (R => 0, G => 0, B => 0), 14028 => (R => 0, G => 0, B => 0), 14029 => (R => 0, G => 0, B => 0), 14030 => (R => 0, G => 0, B => 0), 14031 => (R => 0, G => 0, B => 0), 14032 => (R => 0, G => 0, B => 0), 14033 => (R => 0, G => 0, B => 0), 14034 => (R => 0, G => 0, B => 0), 14035 => (R => 0, G => 0, B => 0), 14036 => (R => 0, G => 0, B => 0), 14037 => (R => 0, G => 0, B => 0), 14038 => (R => 0, G => 0, B => 0), 14039 => (R => 0, G => 0, B => 0), 14040 => (R => 0, G => 0, B => 0), 14041 => (R => 0, G => 0, B => 0), 14042 => (R => 0, G => 0, B => 0), 14043 => (R => 0, G => 0, B => 0), 14044 => (R => 0, G => 0, B => 0), 14045 => (R => 0, G => 0, B => 0), 14046 => (R => 0, G => 0, B => 0), 14047 => (R => 0, G => 0, B => 0), 14048 => (R => 0, G => 0, B => 0), 14049 => (R => 0, G => 0, B => 0), 14050 => (R => 0, G => 0, B => 0), 14051 => (R => 0, G => 0, B => 0), 14052 => (R => 0, G => 0, B => 0), 14053 => (R => 0, G => 0, B => 0), 14054 => (R => 0, G => 0, B => 0), 14055 => (R => 0, G => 0, B => 0), 14056 => (R => 0, G => 0, B => 0), 14057 => (R => 0, G => 0, B => 0), 14058 => (R => 0, G => 0, B => 0), 14059 => (R => 0, G => 0, B => 0), 14060 => (R => 0, G => 0, B => 0), 14061 => (R => 0, G => 0, B => 0), 14062 => (R => 0, G => 0, B => 0), 14063 => (R => 0, G => 0, B => 0), 14064 => (R => 0, G => 0, B => 0), 14065 => (R => 0, G => 0, B => 0), 14066 => (R => 0, G => 0, B => 0), 14067 => (R => 0, G => 0, B => 0), 14068 => (R => 0, G => 0, B => 0), 14069 => (R => 0, G => 0, B => 0), 14070 => (R => 0, G => 0, B => 0), 14071 => (R => 255, G => 0, B => 0), 14072 => (R => 255, G => 0, B => 0), 14073 => (R => 255, G => 0, B => 0), 14074 => (R => 255, G => 0, B => 0), 14075 => (R => 255, G => 0, B => 0), 14076 => (R => 255, G => 0, B => 0), 14077 => (R => 255, G => 0, B => 0), 14078 => (R => 255, G => 0, B => 0), 14079 => (R => 255, G => 0, B => 0), 14080 => (R => 255, G => 0, B => 0), 14081 => (R => 255, G => 0, B => 0), 14082 => (R => 255, G => 0, B => 0), 14083 => (R => 255, G => 0, B => 0), 14084 => (R => 255, G => 0, B => 0), 14085 => (R => 255, G => 0, B => 0), 14086 => (R => 255, G => 0, B => 0), 14087 => (R => 255, G => 0, B => 0), 14088 => (R => 255, G => 0, B => 0), 14089 => (R => 255, G => 0, B => 0), 14090 => (R => 255, G => 0, B => 0), 14091 => (R => 255, G => 0, B => 0), 14092 => (R => 255, G => 0, B => 0), 14093 => (R => 255, G => 0, B => 0), 14094 => (R => 255, G => 0, B => 0), 14095 => (R => 255, G => 0, B => 0), 14096 => (R => 255, G => 0, B => 0), 14097 => (R => 255, G => 0, B => 0), 14098 => (R => 255, G => 0, B => 0), 14099 => (R => 255, G => 0, B => 0), 14100 => (R => 255, G => 0, B => 0), 14101 => (R => 255, G => 0, B => 0), 14102 => (R => 255, G => 0, B => 0), 14103 => (R => 255, G => 0, B => 0), 14104 => (R => 255, G => 0, B => 0), 14105 => (R => 255, G => 0, B => 0), 14106 => (R => 255, G => 0, B => 0), 14107 => (R => 255, G => 0, B => 0), 14108 => (R => 255, G => 0, B => 0), 14109 => (R => 255, G => 0, B => 0), 14110 => (R => 255, G => 0, B => 0), 14111 => (R => 255, G => 0, B => 0), 14112 => (R => 255, G => 0, B => 0), 14113 => (R => 255, G => 0, B => 0), 14114 => (R => 255, G => 0, B => 0), 14115 => (R => 255, G => 0, B => 0), 14116 => (R => 255, G => 0, B => 0), 14117 => (R => 255, G => 0, B => 0), 14118 => (R => 255, G => 0, B => 0), 14119 => (R => 255, G => 0, B => 0), 14120 => (R => 255, G => 0, B => 0), 14121 => (R => 255, G => 0, B => 0), 14122 => (R => 255, G => 0, B => 0), 14123 => (R => 255, G => 0, B => 0), 14124 => (R => 255, G => 0, B => 0), 14125 => (R => 255, G => 0, B => 0), 14126 => (R => 255, G => 0, B => 0), 14127 => (R => 255, G => 0, B => 0), 14128 => (R => 255, G => 0, B => 0), 14129 => (R => 255, G => 0, B => 0), 14130 => (R => 0, G => 0, B => 0), 14131 => (R => 0, G => 0, B => 0), 14132 => (R => 0, G => 0, B => 0), 14133 => (R => 0, G => 0, B => 0), 14134 => (R => 0, G => 0, B => 0), 14135 => (R => 0, G => 0, B => 0), 14136 => (R => 0, G => 0, B => 0), 14137 => (R => 0, G => 0, B => 0), 14138 => (R => 0, G => 0, B => 0), 14139 => (R => 0, G => 0, B => 0), 14140 => (R => 0, G => 0, B => 0), 14141 => (R => 0, G => 0, B => 0), 14142 => (R => 0, G => 0, B => 0), 14143 => (R => 0, G => 0, B => 0), 14144 => (R => 0, G => 0, B => 0), 14145 => (R => 0, G => 0, B => 0), 14146 => (R => 0, G => 0, B => 0), 14147 => (R => 0, G => 0, B => 0), 14148 => (R => 0, G => 0, B => 0), 14149 => (R => 0, G => 0, B => 0), 14150 => (R => 0, G => 0, B => 0), 14151 => (R => 0, G => 0, B => 0), 14152 => (R => 0, G => 0, B => 0), 14153 => (R => 0, G => 0, B => 0), 14154 => (R => 0, G => 0, B => 0), 14155 => (R => 0, G => 0, B => 0), 14156 => (R => 0, G => 0, B => 0), 14157 => (R => 0, G => 0, B => 0), 14158 => (R => 0, G => 0, B => 0), 14159 => (R => 0, G => 0, B => 0), 14160 => (R => 0, G => 0, B => 0), 14161 => (R => 0, G => 0, B => 0), 14162 => (R => 0, G => 0, B => 0), 14163 => (R => 0, G => 0, B => 0), 14164 => (R => 0, G => 0, B => 0), 14165 => (R => 0, G => 0, B => 0), 14166 => (R => 0, G => 0, B => 0), 14167 => (R => 0, G => 0, B => 0), 14168 => (R => 0, G => 0, B => 0), 14169 => (R => 0, G => 0, B => 0), 14170 => (R => 0, G => 0, B => 0), 14171 => (R => 0, G => 0, B => 0), 14172 => (R => 0, G => 0, B => 0), 14173 => (R => 0, G => 0, B => 0), 14174 => (R => 0, G => 0, B => 0), 14175 => (R => 0, G => 0, B => 0), 14176 => (R => 0, G => 0, B => 0), 14177 => (R => 0, G => 0, B => 0), 14178 => (R => 0, G => 0, B => 0), 14179 => (R => 0, G => 0, B => 0), 14180 => (R => 0, G => 0, B => 0), 14181 => (R => 0, G => 0, B => 0), 14182 => (R => 0, G => 0, B => 0), 14183 => (R => 0, G => 0, B => 0), 14184 => (R => 0, G => 0, B => 0), 14185 => (R => 0, G => 0, B => 0), 14186 => (R => 0, G => 0, B => 0), 14187 => (R => 0, G => 0, B => 0), 14188 => (R => 0, G => 0, B => 0), 14189 => (R => 0, G => 0, B => 0), 14190 => (R => 0, G => 0, B => 0), 14191 => (R => 0, G => 0, B => 0), 14192 => (R => 0, G => 0, B => 0), 14193 => (R => 0, G => 0, B => 0), 14194 => (R => 0, G => 0, B => 0), 14195 => (R => 0, G => 0, B => 0), 14196 => (R => 0, G => 0, B => 0), 14197 => (R => 0, G => 0, B => 0), 14198 => (R => 0, G => 0, B => 0), 14199 => (R => 0, G => 0, B => 0), 14200 => (R => 0, G => 0, B => 0), 14201 => (R => 0, G => 0, B => 0), 14202 => (R => 0, G => 0, B => 0), 14203 => (R => 0, G => 0, B => 0), 14204 => (R => 0, G => 0, B => 0), 14205 => (R => 0, G => 0, B => 0), 14206 => (R => 0, G => 0, B => 0), 14207 => (R => 0, G => 0, B => 0), 14208 => (R => 0, G => 0, B => 0), 14209 => (R => 0, G => 0, B => 0), 14210 => (R => 0, G => 0, B => 0), 14211 => (R => 0, G => 0, B => 0), 14212 => (R => 0, G => 0, B => 0), 14213 => (R => 0, G => 0, B => 0), 14214 => (R => 0, G => 0, B => 0), 14215 => (R => 0, G => 0, B => 0), 14216 => (R => 0, G => 0, B => 0), 14217 => (R => 0, G => 0, B => 0), 14218 => (R => 0, G => 0, B => 0), 14219 => (R => 0, G => 0, B => 0), 14220 => (R => 0, G => 0, B => 0), 14221 => (R => 0, G => 0, B => 0), 14222 => (R => 0, G => 0, B => 0), 14223 => (R => 0, G => 0, B => 0), 14224 => (R => 0, G => 0, B => 0), 14225 => (R => 0, G => 0, B => 0), 14226 => (R => 0, G => 0, B => 0), 14227 => (R => 0, G => 0, B => 0), 14228 => (R => 0, G => 0, B => 0), 14229 => (R => 0, G => 0, B => 0), 14230 => (R => 0, G => 0, B => 0), 14231 => (R => 0, G => 0, B => 0), 14232 => (R => 0, G => 0, B => 0), 14233 => (R => 0, G => 0, B => 0), 14234 => (R => 0, G => 0, B => 0), 14235 => (R => 0, G => 0, B => 0), 14236 => (R => 0, G => 0, B => 0), 14237 => (R => 0, G => 0, B => 0), 14238 => (R => 0, G => 0, B => 0), 14239 => (R => 0, G => 0, B => 0), 14240 => (R => 0, G => 0, B => 0), 14241 => (R => 0, G => 0, B => 0), 14242 => (R => 0, G => 0, B => 0), 14243 => (R => 0, G => 0, B => 0), 14244 => (R => 0, G => 0, B => 0), 14245 => (R => 0, G => 0, B => 0), 14246 => (R => 0, G => 0, B => 0), 14247 => (R => 0, G => 0, B => 0), 14248 => (R => 0, G => 0, B => 0), 14249 => (R => 0, G => 0, B => 0), 14250 => (R => 0, G => 0, B => 0), 14251 => (R => 0, G => 0, B => 0), 14252 => (R => 0, G => 0, B => 0), 14253 => (R => 0, G => 0, B => 0), 14254 => (R => 0, G => 0, B => 0), 14255 => (R => 0, G => 0, B => 0), 14256 => (R => 0, G => 0, B => 0), 14257 => (R => 0, G => 0, B => 0), 14258 => (R => 0, G => 0, B => 0), 14259 => (R => 0, G => 0, B => 0), 14260 => (R => 0, G => 0, B => 0), 14261 => (R => 0, G => 0, B => 0), 14262 => (R => 0, G => 0, B => 0), 14263 => (R => 0, G => 0, B => 0), 14264 => (R => 0, G => 0, B => 0), 14265 => (R => 0, G => 0, B => 0), 14266 => (R => 0, G => 0, B => 0), 14267 => (R => 0, G => 0, B => 0), 14268 => (R => 0, G => 0, B => 0), 14269 => (R => 0, G => 0, B => 0), 14270 => (R => 0, G => 0, B => 0), 14271 => (R => 0, G => 0, B => 0), 14272 => (R => 255, G => 0, B => 0), 14273 => (R => 255, G => 0, B => 0), 14274 => (R => 255, G => 0, B => 0), 14275 => (R => 255, G => 0, B => 0), 14276 => (R => 255, G => 0, B => 0), 14277 => (R => 255, G => 0, B => 0), 14278 => (R => 255, G => 0, B => 0), 14279 => (R => 255, G => 0, B => 0), 14280 => (R => 255, G => 0, B => 0), 14281 => (R => 255, G => 0, B => 0), 14282 => (R => 255, G => 0, B => 0), 14283 => (R => 255, G => 0, B => 0), 14284 => (R => 255, G => 0, B => 0), 14285 => (R => 255, G => 0, B => 0), 14286 => (R => 255, G => 0, B => 0), 14287 => (R => 255, G => 0, B => 0), 14288 => (R => 255, G => 0, B => 0), 14289 => (R => 255, G => 0, B => 0), 14290 => (R => 255, G => 0, B => 0), 14291 => (R => 255, G => 0, B => 0), 14292 => (R => 255, G => 0, B => 0), 14293 => (R => 255, G => 0, B => 0), 14294 => (R => 255, G => 0, B => 0), 14295 => (R => 255, G => 0, B => 0), 14296 => (R => 255, G => 0, B => 0), 14297 => (R => 255, G => 0, B => 0), 14298 => (R => 255, G => 0, B => 0), 14299 => (R => 255, G => 0, B => 0), 14300 => (R => 255, G => 0, B => 0), 14301 => (R => 255, G => 0, B => 0), 14302 => (R => 255, G => 0, B => 0), 14303 => (R => 255, G => 0, B => 0), 14304 => (R => 255, G => 0, B => 0), 14305 => (R => 255, G => 0, B => 0), 14306 => (R => 255, G => 0, B => 0), 14307 => (R => 255, G => 0, B => 0), 14308 => (R => 255, G => 0, B => 0), 14309 => (R => 255, G => 0, B => 0), 14310 => (R => 255, G => 0, B => 0), 14311 => (R => 255, G => 0, B => 0), 14312 => (R => 255, G => 0, B => 0), 14313 => (R => 255, G => 0, B => 0), 14314 => (R => 255, G => 0, B => 0), 14315 => (R => 255, G => 0, B => 0), 14316 => (R => 255, G => 0, B => 0), 14317 => (R => 255, G => 0, B => 0), 14318 => (R => 255, G => 0, B => 0), 14319 => (R => 255, G => 0, B => 0), 14320 => (R => 255, G => 0, B => 0), 14321 => (R => 255, G => 0, B => 0), 14322 => (R => 255, G => 0, B => 0), 14323 => (R => 255, G => 0, B => 0), 14324 => (R => 255, G => 0, B => 0), 14325 => (R => 255, G => 0, B => 0), 14326 => (R => 255, G => 0, B => 0), 14327 => (R => 255, G => 0, B => 0), 14328 => (R => 255, G => 0, B => 0), 14329 => (R => 0, G => 0, B => 0), 14330 => (R => 0, G => 0, B => 0), 14331 => (R => 0, G => 0, B => 0), 14332 => (R => 0, G => 0, B => 0), 14333 => (R => 0, G => 0, B => 0), 14334 => (R => 0, G => 0, B => 0), 14335 => (R => 0, G => 0, B => 0), 14336 => (R => 0, G => 0, B => 0), 14337 => (R => 0, G => 0, B => 0), 14338 => (R => 0, G => 0, B => 0), 14339 => (R => 0, G => 0, B => 0), 14340 => (R => 0, G => 0, B => 0), 14341 => (R => 0, G => 0, B => 0), 14342 => (R => 0, G => 0, B => 0), 14343 => (R => 0, G => 0, B => 0), 14344 => (R => 0, G => 0, B => 0), 14345 => (R => 0, G => 0, B => 0), 14346 => (R => 0, G => 0, B => 0), 14347 => (R => 0, G => 0, B => 0), 14348 => (R => 0, G => 0, B => 0), 14349 => (R => 0, G => 0, B => 0), 14350 => (R => 0, G => 0, B => 0), 14351 => (R => 0, G => 0, B => 0), 14352 => (R => 0, G => 0, B => 0), 14353 => (R => 0, G => 0, B => 0), 14354 => (R => 0, G => 0, B => 0), 14355 => (R => 0, G => 0, B => 0), 14356 => (R => 0, G => 0, B => 0), 14357 => (R => 0, G => 0, B => 0), 14358 => (R => 0, G => 0, B => 0), 14359 => (R => 0, G => 0, B => 0), 14360 => (R => 0, G => 0, B => 0), 14361 => (R => 0, G => 0, B => 0), 14362 => (R => 0, G => 0, B => 0), 14363 => (R => 0, G => 0, B => 0), 14364 => (R => 0, G => 0, B => 0), 14365 => (R => 0, G => 0, B => 0), 14366 => (R => 0, G => 0, B => 0), 14367 => (R => 0, G => 0, B => 0), 14368 => (R => 0, G => 0, B => 0), 14369 => (R => 0, G => 0, B => 0), 14370 => (R => 0, G => 0, B => 0), 14371 => (R => 0, G => 0, B => 0), 14372 => (R => 0, G => 0, B => 0), 14373 => (R => 0, G => 0, B => 0), 14374 => (R => 0, G => 0, B => 0), 14375 => (R => 0, G => 0, B => 0), 14376 => (R => 0, G => 0, B => 0), 14377 => (R => 0, G => 0, B => 0), 14378 => (R => 0, G => 0, B => 0), 14379 => (R => 0, G => 0, B => 0), 14380 => (R => 0, G => 0, B => 0), 14381 => (R => 0, G => 0, B => 0), 14382 => (R => 0, G => 0, B => 0), 14383 => (R => 0, G => 0, B => 0), 14384 => (R => 0, G => 0, B => 0), 14385 => (R => 0, G => 0, B => 0), 14386 => (R => 0, G => 0, B => 0), 14387 => (R => 0, G => 0, B => 0), 14388 => (R => 0, G => 0, B => 0), 14389 => (R => 0, G => 0, B => 0), 14390 => (R => 0, G => 0, B => 0), 14391 => (R => 0, G => 0, B => 0), 14392 => (R => 0, G => 0, B => 0), 14393 => (R => 0, G => 0, B => 0), 14394 => (R => 0, G => 0, B => 0), 14395 => (R => 0, G => 0, B => 0), 14396 => (R => 0, G => 0, B => 0), 14397 => (R => 0, G => 0, B => 0), 14398 => (R => 0, G => 0, B => 0), 14399 => (R => 0, G => 0, B => 0), 14400 => (R => 0, G => 0, B => 0), 14401 => (R => 0, G => 0, B => 0), 14402 => (R => 0, G => 0, B => 0), 14403 => (R => 0, G => 0, B => 0), 14404 => (R => 0, G => 0, B => 0), 14405 => (R => 0, G => 0, B => 0), 14406 => (R => 0, G => 0, B => 0), 14407 => (R => 0, G => 0, B => 0), 14408 => (R => 0, G => 0, B => 0), 14409 => (R => 0, G => 0, B => 0), 14410 => (R => 0, G => 0, B => 0), 14411 => (R => 0, G => 0, B => 0), 14412 => (R => 0, G => 0, B => 0), 14413 => (R => 0, G => 0, B => 0), 14414 => (R => 0, G => 0, B => 0), 14415 => (R => 0, G => 0, B => 0), 14416 => (R => 0, G => 0, B => 0), 14417 => (R => 0, G => 0, B => 0), 14418 => (R => 0, G => 0, B => 0), 14419 => (R => 0, G => 0, B => 0), 14420 => (R => 0, G => 0, B => 0), 14421 => (R => 0, G => 0, B => 0), 14422 => (R => 0, G => 0, B => 0), 14423 => (R => 0, G => 0, B => 0), 14424 => (R => 0, G => 0, B => 0), 14425 => (R => 0, G => 0, B => 0), 14426 => (R => 0, G => 0, B => 0), 14427 => (R => 0, G => 0, B => 0), 14428 => (R => 0, G => 0, B => 0), 14429 => (R => 0, G => 0, B => 0), 14430 => (R => 0, G => 0, B => 0), 14431 => (R => 0, G => 0, B => 0), 14432 => (R => 0, G => 0, B => 0), 14433 => (R => 0, G => 0, B => 0), 14434 => (R => 0, G => 0, B => 0), 14435 => (R => 0, G => 0, B => 0), 14436 => (R => 0, G => 0, B => 0), 14437 => (R => 0, G => 0, B => 0), 14438 => (R => 0, G => 0, B => 0), 14439 => (R => 0, G => 0, B => 0), 14440 => (R => 0, G => 0, B => 0), 14441 => (R => 0, G => 0, B => 0), 14442 => (R => 0, G => 0, B => 0), 14443 => (R => 0, G => 0, B => 0), 14444 => (R => 0, G => 0, B => 0), 14445 => (R => 0, G => 0, B => 0), 14446 => (R => 0, G => 0, B => 0), 14447 => (R => 0, G => 0, B => 0), 14448 => (R => 0, G => 0, B => 0), 14449 => (R => 0, G => 0, B => 0), 14450 => (R => 0, G => 0, B => 0), 14451 => (R => 0, G => 0, B => 0), 14452 => (R => 0, G => 0, B => 0), 14453 => (R => 0, G => 0, B => 0), 14454 => (R => 0, G => 0, B => 0), 14455 => (R => 0, G => 0, B => 0), 14456 => (R => 0, G => 0, B => 0), 14457 => (R => 0, G => 0, B => 0), 14458 => (R => 0, G => 0, B => 0), 14459 => (R => 0, G => 0, B => 0), 14460 => (R => 0, G => 0, B => 0), 14461 => (R => 0, G => 0, B => 0), 14462 => (R => 0, G => 0, B => 0), 14463 => (R => 0, G => 0, B => 0), 14464 => (R => 0, G => 0, B => 0), 14465 => (R => 0, G => 0, B => 0), 14466 => (R => 0, G => 0, B => 0), 14467 => (R => 0, G => 0, B => 0), 14468 => (R => 0, G => 0, B => 0), 14469 => (R => 0, G => 0, B => 0), 14470 => (R => 0, G => 0, B => 0), 14471 => (R => 0, G => 0, B => 0), 14472 => (R => 0, G => 0, B => 0), 14473 => (R => 255, G => 0, B => 0), 14474 => (R => 255, G => 0, B => 0), 14475 => (R => 255, G => 0, B => 0), 14476 => (R => 255, G => 0, B => 0), 14477 => (R => 255, G => 0, B => 0), 14478 => (R => 255, G => 0, B => 0), 14479 => (R => 255, G => 0, B => 0), 14480 => (R => 255, G => 0, B => 0), 14481 => (R => 255, G => 0, B => 0), 14482 => (R => 255, G => 0, B => 0), 14483 => (R => 255, G => 0, B => 0), 14484 => (R => 255, G => 0, B => 0), 14485 => (R => 255, G => 0, B => 0), 14486 => (R => 255, G => 0, B => 0), 14487 => (R => 255, G => 0, B => 0), 14488 => (R => 255, G => 0, B => 0), 14489 => (R => 255, G => 0, B => 0), 14490 => (R => 255, G => 0, B => 0), 14491 => (R => 255, G => 0, B => 0), 14492 => (R => 255, G => 0, B => 0), 14493 => (R => 255, G => 0, B => 0), 14494 => (R => 255, G => 0, B => 0), 14495 => (R => 255, G => 0, B => 0), 14496 => (R => 255, G => 0, B => 0), 14497 => (R => 255, G => 0, B => 0), 14498 => (R => 255, G => 0, B => 0), 14499 => (R => 255, G => 0, B => 0), 14500 => (R => 255, G => 0, B => 0), 14501 => (R => 255, G => 0, B => 0), 14502 => (R => 255, G => 0, B => 0), 14503 => (R => 255, G => 0, B => 0), 14504 => (R => 255, G => 0, B => 0), 14505 => (R => 255, G => 0, B => 0), 14506 => (R => 255, G => 0, B => 0), 14507 => (R => 255, G => 0, B => 0), 14508 => (R => 255, G => 0, B => 0), 14509 => (R => 255, G => 0, B => 0), 14510 => (R => 255, G => 0, B => 0), 14511 => (R => 255, G => 0, B => 0), 14512 => (R => 255, G => 0, B => 0), 14513 => (R => 255, G => 0, B => 0), 14514 => (R => 255, G => 0, B => 0), 14515 => (R => 255, G => 0, B => 0), 14516 => (R => 255, G => 0, B => 0), 14517 => (R => 255, G => 0, B => 0), 14518 => (R => 255, G => 0, B => 0), 14519 => (R => 255, G => 0, B => 0), 14520 => (R => 255, G => 0, B => 0), 14521 => (R => 255, G => 0, B => 0), 14522 => (R => 255, G => 0, B => 0), 14523 => (R => 255, G => 0, B => 0), 14524 => (R => 255, G => 0, B => 0), 14525 => (R => 255, G => 0, B => 0), 14526 => (R => 255, G => 0, B => 0), 14527 => (R => 255, G => 0, B => 0), 14528 => (R => 0, G => 0, B => 0), 14529 => (R => 0, G => 0, B => 0), 14530 => (R => 0, G => 0, B => 0), 14531 => (R => 0, G => 0, B => 0), 14532 => (R => 0, G => 0, B => 0), 14533 => (R => 0, G => 0, B => 0), 14534 => (R => 0, G => 0, B => 0), 14535 => (R => 0, G => 0, B => 0), 14536 => (R => 0, G => 0, B => 0), 14537 => (R => 0, G => 0, B => 0), 14538 => (R => 0, G => 0, B => 0), 14539 => (R => 0, G => 0, B => 0), 14540 => (R => 0, G => 0, B => 0), 14541 => (R => 0, G => 0, B => 0), 14542 => (R => 0, G => 0, B => 0), 14543 => (R => 0, G => 0, B => 0), 14544 => (R => 0, G => 0, B => 0), 14545 => (R => 0, G => 0, B => 0), 14546 => (R => 0, G => 0, B => 0), 14547 => (R => 0, G => 0, B => 0), 14548 => (R => 0, G => 0, B => 0), 14549 => (R => 0, G => 0, B => 0), 14550 => (R => 0, G => 0, B => 0), 14551 => (R => 0, G => 0, B => 0), 14552 => (R => 0, G => 0, B => 0), 14553 => (R => 0, G => 0, B => 0), 14554 => (R => 0, G => 0, B => 0), 14555 => (R => 0, G => 0, B => 0), 14556 => (R => 0, G => 0, B => 0), 14557 => (R => 0, G => 0, B => 0), 14558 => (R => 0, G => 0, B => 0), 14559 => (R => 0, G => 0, B => 0), 14560 => (R => 0, G => 0, B => 0), 14561 => (R => 0, G => 0, B => 0), 14562 => (R => 0, G => 0, B => 0), 14563 => (R => 0, G => 0, B => 0), 14564 => (R => 0, G => 0, B => 0), 14565 => (R => 0, G => 0, B => 0), 14566 => (R => 0, G => 0, B => 0), 14567 => (R => 0, G => 0, B => 0), 14568 => (R => 0, G => 0, B => 0), 14569 => (R => 0, G => 0, B => 0), 14570 => (R => 0, G => 0, B => 0), 14571 => (R => 0, G => 0, B => 0), 14572 => (R => 0, G => 0, B => 0), 14573 => (R => 0, G => 0, B => 0), 14574 => (R => 0, G => 0, B => 0), 14575 => (R => 0, G => 0, B => 0), 14576 => (R => 0, G => 0, B => 0), 14577 => (R => 0, G => 0, B => 0), 14578 => (R => 0, G => 0, B => 0), 14579 => (R => 0, G => 0, B => 0), 14580 => (R => 0, G => 0, B => 0), 14581 => (R => 0, G => 0, B => 0), 14582 => (R => 0, G => 0, B => 0), 14583 => (R => 0, G => 0, B => 0), 14584 => (R => 0, G => 0, B => 0), 14585 => (R => 0, G => 0, B => 0), 14586 => (R => 0, G => 0, B => 0), 14587 => (R => 0, G => 0, B => 0), 14588 => (R => 0, G => 0, B => 0), 14589 => (R => 0, G => 0, B => 0), 14590 => (R => 0, G => 0, B => 0), 14591 => (R => 0, G => 0, B => 0), 14592 => (R => 0, G => 0, B => 0), 14593 => (R => 0, G => 0, B => 0), 14594 => (R => 0, G => 0, B => 0), 14595 => (R => 0, G => 0, B => 0), 14596 => (R => 0, G => 0, B => 0), 14597 => (R => 0, G => 0, B => 0), 14598 => (R => 0, G => 0, B => 0), 14599 => (R => 0, G => 0, B => 0), 14600 => (R => 0, G => 0, B => 0), 14601 => (R => 0, G => 0, B => 0), 14602 => (R => 0, G => 0, B => 0), 14603 => (R => 0, G => 0, B => 0), 14604 => (R => 0, G => 0, B => 0), 14605 => (R => 0, G => 0, B => 0), 14606 => (R => 0, G => 0, B => 0), 14607 => (R => 0, G => 0, B => 0), 14608 => (R => 0, G => 0, B => 0), 14609 => (R => 0, G => 0, B => 0), 14610 => (R => 0, G => 0, B => 0), 14611 => (R => 0, G => 0, B => 0), 14612 => (R => 0, G => 0, B => 0), 14613 => (R => 0, G => 0, B => 0), 14614 => (R => 0, G => 0, B => 0), 14615 => (R => 0, G => 0, B => 0), 14616 => (R => 0, G => 0, B => 0), 14617 => (R => 0, G => 0, B => 0), 14618 => (R => 0, G => 0, B => 0), 14619 => (R => 0, G => 0, B => 0), 14620 => (R => 0, G => 0, B => 0), 14621 => (R => 0, G => 0, B => 0), 14622 => (R => 0, G => 0, B => 0), 14623 => (R => 0, G => 0, B => 0), 14624 => (R => 0, G => 0, B => 0), 14625 => (R => 0, G => 0, B => 0), 14626 => (R => 0, G => 0, B => 0), 14627 => (R => 0, G => 0, B => 0), 14628 => (R => 0, G => 0, B => 0), 14629 => (R => 0, G => 0, B => 0), 14630 => (R => 0, G => 0, B => 0), 14631 => (R => 0, G => 0, B => 0), 14632 => (R => 0, G => 0, B => 0), 14633 => (R => 0, G => 0, B => 0), 14634 => (R => 0, G => 0, B => 0), 14635 => (R => 0, G => 0, B => 0), 14636 => (R => 0, G => 0, B => 0), 14637 => (R => 0, G => 0, B => 0), 14638 => (R => 0, G => 0, B => 0), 14639 => (R => 0, G => 0, B => 0), 14640 => (R => 0, G => 0, B => 0), 14641 => (R => 0, G => 0, B => 0), 14642 => (R => 0, G => 0, B => 0), 14643 => (R => 0, G => 0, B => 0), 14644 => (R => 0, G => 0, B => 0), 14645 => (R => 0, G => 0, B => 0), 14646 => (R => 0, G => 0, B => 0), 14647 => (R => 0, G => 0, B => 0), 14648 => (R => 0, G => 0, B => 0), 14649 => (R => 0, G => 0, B => 0), 14650 => (R => 0, G => 0, B => 0), 14651 => (R => 0, G => 0, B => 0), 14652 => (R => 0, G => 0, B => 0), 14653 => (R => 0, G => 0, B => 0), 14654 => (R => 0, G => 0, B => 0), 14655 => (R => 0, G => 0, B => 0), 14656 => (R => 0, G => 0, B => 0), 14657 => (R => 0, G => 0, B => 0), 14658 => (R => 0, G => 0, B => 0), 14659 => (R => 0, G => 0, B => 0), 14660 => (R => 0, G => 0, B => 0), 14661 => (R => 0, G => 0, B => 0), 14662 => (R => 0, G => 0, B => 0), 14663 => (R => 0, G => 0, B => 0), 14664 => (R => 0, G => 0, B => 0), 14665 => (R => 0, G => 0, B => 0), 14666 => (R => 0, G => 0, B => 0), 14667 => (R => 0, G => 0, B => 0), 14668 => (R => 0, G => 0, B => 0), 14669 => (R => 0, G => 0, B => 0), 14670 => (R => 0, G => 0, B => 0), 14671 => (R => 0, G => 0, B => 0), 14672 => (R => 0, G => 0, B => 0), 14673 => (R => 0, G => 0, B => 0), 14674 => (R => 0, G => 0, B => 0), 14675 => (R => 255, G => 0, B => 0), 14676 => (R => 255, G => 0, B => 0), 14677 => (R => 255, G => 0, B => 0), 14678 => (R => 255, G => 0, B => 0), 14679 => (R => 255, G => 0, B => 0), 14680 => (R => 255, G => 0, B => 0), 14681 => (R => 255, G => 0, B => 0), 14682 => (R => 255, G => 0, B => 0), 14683 => (R => 255, G => 0, B => 0), 14684 => (R => 255, G => 0, B => 0), 14685 => (R => 255, G => 0, B => 0), 14686 => (R => 255, G => 0, B => 0), 14687 => (R => 255, G => 0, B => 0), 14688 => (R => 255, G => 0, B => 0), 14689 => (R => 255, G => 0, B => 0), 14690 => (R => 255, G => 0, B => 0), 14691 => (R => 255, G => 0, B => 0), 14692 => (R => 255, G => 0, B => 0), 14693 => (R => 255, G => 0, B => 0), 14694 => (R => 255, G => 0, B => 0), 14695 => (R => 255, G => 0, B => 0), 14696 => (R => 255, G => 0, B => 0), 14697 => (R => 255, G => 0, B => 0), 14698 => (R => 255, G => 0, B => 0), 14699 => (R => 255, G => 0, B => 0), 14700 => (R => 255, G => 0, B => 0), 14701 => (R => 255, G => 0, B => 0), 14702 => (R => 255, G => 0, B => 0), 14703 => (R => 255, G => 0, B => 0), 14704 => (R => 255, G => 0, B => 0), 14705 => (R => 255, G => 0, B => 0), 14706 => (R => 255, G => 0, B => 0), 14707 => (R => 255, G => 0, B => 0), 14708 => (R => 255, G => 0, B => 0), 14709 => (R => 255, G => 0, B => 0), 14710 => (R => 255, G => 0, B => 0), 14711 => (R => 255, G => 0, B => 0), 14712 => (R => 255, G => 0, B => 0), 14713 => (R => 255, G => 0, B => 0), 14714 => (R => 255, G => 0, B => 0), 14715 => (R => 255, G => 0, B => 0), 14716 => (R => 255, G => 0, B => 0), 14717 => (R => 255, G => 0, B => 0), 14718 => (R => 255, G => 0, B => 0), 14719 => (R => 255, G => 0, B => 0), 14720 => (R => 255, G => 0, B => 0), 14721 => (R => 255, G => 0, B => 0), 14722 => (R => 255, G => 0, B => 0), 14723 => (R => 255, G => 0, B => 0), 14724 => (R => 255, G => 0, B => 0), 14725 => (R => 255, G => 0, B => 0), 14726 => (R => 255, G => 0, B => 0), 14727 => (R => 0, G => 0, B => 0), 14728 => (R => 0, G => 0, B => 0), 14729 => (R => 0, G => 0, B => 0), 14730 => (R => 0, G => 0, B => 0), 14731 => (R => 0, G => 0, B => 0), 14732 => (R => 0, G => 0, B => 0), 14733 => (R => 0, G => 0, B => 0), 14734 => (R => 0, G => 0, B => 0), 14735 => (R => 0, G => 0, B => 0), 14736 => (R => 0, G => 0, B => 0), 14737 => (R => 0, G => 0, B => 0), 14738 => (R => 0, G => 0, B => 0), 14739 => (R => 0, G => 0, B => 0), 14740 => (R => 0, G => 0, B => 0), 14741 => (R => 0, G => 0, B => 0), 14742 => (R => 0, G => 0, B => 0), 14743 => (R => 0, G => 0, B => 0), 14744 => (R => 0, G => 0, B => 0), 14745 => (R => 0, G => 0, B => 0), 14746 => (R => 0, G => 0, B => 0), 14747 => (R => 0, G => 0, B => 0), 14748 => (R => 0, G => 0, B => 0), 14749 => (R => 0, G => 0, B => 0), 14750 => (R => 0, G => 0, B => 0), 14751 => (R => 0, G => 0, B => 0), 14752 => (R => 0, G => 0, B => 0), 14753 => (R => 0, G => 0, B => 0), 14754 => (R => 0, G => 0, B => 0), 14755 => (R => 0, G => 0, B => 0), 14756 => (R => 0, G => 0, B => 0), 14757 => (R => 0, G => 0, B => 0), 14758 => (R => 0, G => 0, B => 0), 14759 => (R => 0, G => 0, B => 0), 14760 => (R => 0, G => 0, B => 0), 14761 => (R => 0, G => 0, B => 0), 14762 => (R => 0, G => 0, B => 0), 14763 => (R => 0, G => 0, B => 0), 14764 => (R => 0, G => 0, B => 0), 14765 => (R => 0, G => 0, B => 0), 14766 => (R => 0, G => 0, B => 0), 14767 => (R => 0, G => 0, B => 0), 14768 => (R => 0, G => 0, B => 0), 14769 => (R => 0, G => 0, B => 0), 14770 => (R => 0, G => 0, B => 0), 14771 => (R => 0, G => 0, B => 0), 14772 => (R => 0, G => 0, B => 0), 14773 => (R => 0, G => 0, B => 0), 14774 => (R => 0, G => 0, B => 0), 14775 => (R => 0, G => 0, B => 0), 14776 => (R => 0, G => 0, B => 0), 14777 => (R => 0, G => 0, B => 0), 14778 => (R => 0, G => 0, B => 0), 14779 => (R => 0, G => 0, B => 0), 14780 => (R => 0, G => 0, B => 0), 14781 => (R => 0, G => 0, B => 0), 14782 => (R => 0, G => 0, B => 0), 14783 => (R => 0, G => 0, B => 0), 14784 => (R => 0, G => 0, B => 0), 14785 => (R => 0, G => 0, B => 0), 14786 => (R => 0, G => 0, B => 0), 14787 => (R => 0, G => 0, B => 0), 14788 => (R => 0, G => 0, B => 0), 14789 => (R => 0, G => 0, B => 0), 14790 => (R => 0, G => 0, B => 0), 14791 => (R => 0, G => 0, B => 0), 14792 => (R => 0, G => 0, B => 0), 14793 => (R => 0, G => 0, B => 0), 14794 => (R => 0, G => 0, B => 0), 14795 => (R => 0, G => 0, B => 0), 14796 => (R => 0, G => 0, B => 0), 14797 => (R => 0, G => 0, B => 0), 14798 => (R => 0, G => 0, B => 0), 14799 => (R => 0, G => 0, B => 0), 14800 => (R => 0, G => 0, B => 0), 14801 => (R => 0, G => 0, B => 0), 14802 => (R => 0, G => 0, B => 0), 14803 => (R => 0, G => 0, B => 0), 14804 => (R => 0, G => 0, B => 0), 14805 => (R => 0, G => 0, B => 0), 14806 => (R => 0, G => 0, B => 0), 14807 => (R => 0, G => 0, B => 0), 14808 => (R => 0, G => 0, B => 0), 14809 => (R => 0, G => 0, B => 0), 14810 => (R => 0, G => 0, B => 0), 14811 => (R => 0, G => 0, B => 0), 14812 => (R => 0, G => 0, B => 0), 14813 => (R => 0, G => 0, B => 0), 14814 => (R => 0, G => 0, B => 0), 14815 => (R => 0, G => 0, B => 0), 14816 => (R => 0, G => 0, B => 0), 14817 => (R => 0, G => 0, B => 0), 14818 => (R => 0, G => 0, B => 0), 14819 => (R => 0, G => 0, B => 0), 14820 => (R => 0, G => 0, B => 0), 14821 => (R => 0, G => 0, B => 0), 14822 => (R => 0, G => 0, B => 0), 14823 => (R => 0, G => 0, B => 0), 14824 => (R => 0, G => 0, B => 0), 14825 => (R => 0, G => 0, B => 0), 14826 => (R => 0, G => 0, B => 0), 14827 => (R => 0, G => 0, B => 0), 14828 => (R => 0, G => 0, B => 0), 14829 => (R => 0, G => 0, B => 0), 14830 => (R => 0, G => 0, B => 0), 14831 => (R => 0, G => 0, B => 0), 14832 => (R => 0, G => 0, B => 0), 14833 => (R => 0, G => 0, B => 0), 14834 => (R => 0, G => 0, B => 0), 14835 => (R => 0, G => 0, B => 0), 14836 => (R => 0, G => 0, B => 0), 14837 => (R => 0, G => 0, B => 0), 14838 => (R => 0, G => 0, B => 0), 14839 => (R => 0, G => 0, B => 0), 14840 => (R => 0, G => 0, B => 0), 14841 => (R => 0, G => 0, B => 0), 14842 => (R => 0, G => 0, B => 0), 14843 => (R => 0, G => 0, B => 0), 14844 => (R => 0, G => 0, B => 0), 14845 => (R => 0, G => 0, B => 0), 14846 => (R => 0, G => 0, B => 0), 14847 => (R => 0, G => 0, B => 0), 14848 => (R => 0, G => 0, B => 0), 14849 => (R => 0, G => 0, B => 0), 14850 => (R => 0, G => 0, B => 0), 14851 => (R => 0, G => 0, B => 0), 14852 => (R => 0, G => 0, B => 0), 14853 => (R => 0, G => 0, B => 0), 14854 => (R => 0, G => 0, B => 0), 14855 => (R => 0, G => 0, B => 0), 14856 => (R => 0, G => 0, B => 0), 14857 => (R => 0, G => 0, B => 0), 14858 => (R => 0, G => 0, B => 0), 14859 => (R => 0, G => 0, B => 0), 14860 => (R => 0, G => 0, B => 0), 14861 => (R => 0, G => 0, B => 0), 14862 => (R => 0, G => 0, B => 0), 14863 => (R => 0, G => 0, B => 0), 14864 => (R => 0, G => 0, B => 0), 14865 => (R => 0, G => 0, B => 0), 14866 => (R => 0, G => 0, B => 0), 14867 => (R => 0, G => 0, B => 0), 14868 => (R => 0, G => 0, B => 0), 14869 => (R => 0, G => 0, B => 0), 14870 => (R => 0, G => 0, B => 0), 14871 => (R => 0, G => 0, B => 0), 14872 => (R => 0, G => 0, B => 0), 14873 => (R => 0, G => 0, B => 0), 14874 => (R => 0, G => 0, B => 0), 14875 => (R => 0, G => 0, B => 0), 14876 => (R => 255, G => 0, B => 0), 14877 => (R => 255, G => 0, B => 0), 14878 => (R => 255, G => 0, B => 0), 14879 => (R => 255, G => 0, B => 0), 14880 => (R => 255, G => 0, B => 0), 14881 => (R => 255, G => 0, B => 0), 14882 => (R => 255, G => 0, B => 0), 14883 => (R => 255, G => 0, B => 0), 14884 => (R => 255, G => 0, B => 0), 14885 => (R => 255, G => 0, B => 0), 14886 => (R => 255, G => 0, B => 0), 14887 => (R => 255, G => 0, B => 0), 14888 => (R => 255, G => 0, B => 0), 14889 => (R => 255, G => 0, B => 0), 14890 => (R => 255, G => 0, B => 0), 14891 => (R => 255, G => 0, B => 0), 14892 => (R => 255, G => 0, B => 0), 14893 => (R => 255, G => 0, B => 0), 14894 => (R => 255, G => 0, B => 0), 14895 => (R => 255, G => 0, B => 0), 14896 => (R => 255, G => 0, B => 0), 14897 => (R => 255, G => 0, B => 0), 14898 => (R => 255, G => 0, B => 0), 14899 => (R => 255, G => 0, B => 0), 14900 => (R => 255, G => 0, B => 0), 14901 => (R => 255, G => 0, B => 0), 14902 => (R => 255, G => 0, B => 0), 14903 => (R => 255, G => 0, B => 0), 14904 => (R => 255, G => 0, B => 0), 14905 => (R => 255, G => 0, B => 0), 14906 => (R => 255, G => 0, B => 0), 14907 => (R => 255, G => 0, B => 0), 14908 => (R => 255, G => 0, B => 0), 14909 => (R => 255, G => 0, B => 0), 14910 => (R => 255, G => 0, B => 0), 14911 => (R => 255, G => 0, B => 0), 14912 => (R => 255, G => 0, B => 0), 14913 => (R => 255, G => 0, B => 0), 14914 => (R => 255, G => 0, B => 0), 14915 => (R => 255, G => 0, B => 0), 14916 => (R => 255, G => 0, B => 0), 14917 => (R => 255, G => 0, B => 0), 14918 => (R => 255, G => 0, B => 0), 14919 => (R => 255, G => 0, B => 0), 14920 => (R => 255, G => 0, B => 0), 14921 => (R => 255, G => 0, B => 0), 14922 => (R => 255, G => 0, B => 0), 14923 => (R => 255, G => 0, B => 0), 14924 => (R => 255, G => 0, B => 0), 14925 => (R => 255, G => 0, B => 0), 14926 => (R => 0, G => 0, B => 0), 14927 => (R => 0, G => 0, B => 0), 14928 => (R => 0, G => 0, B => 0), 14929 => (R => 0, G => 0, B => 0), 14930 => (R => 0, G => 0, B => 0), 14931 => (R => 0, G => 0, B => 0), 14932 => (R => 0, G => 0, B => 0), 14933 => (R => 0, G => 0, B => 0), 14934 => (R => 0, G => 0, B => 0), 14935 => (R => 0, G => 0, B => 0), 14936 => (R => 0, G => 0, B => 0), 14937 => (R => 0, G => 0, B => 0), 14938 => (R => 0, G => 0, B => 0), 14939 => (R => 0, G => 0, B => 0), 14940 => (R => 0, G => 0, B => 0), 14941 => (R => 0, G => 0, B => 0), 14942 => (R => 0, G => 0, B => 0), 14943 => (R => 0, G => 0, B => 0), 14944 => (R => 0, G => 0, B => 0), 14945 => (R => 0, G => 0, B => 0), 14946 => (R => 0, G => 0, B => 0), 14947 => (R => 0, G => 0, B => 0), 14948 => (R => 0, G => 0, B => 0), 14949 => (R => 0, G => 0, B => 0), 14950 => (R => 0, G => 0, B => 0), 14951 => (R => 0, G => 0, B => 0), 14952 => (R => 0, G => 0, B => 0), 14953 => (R => 0, G => 0, B => 0), 14954 => (R => 0, G => 0, B => 0), 14955 => (R => 0, G => 0, B => 0), 14956 => (R => 0, G => 0, B => 0), 14957 => (R => 0, G => 0, B => 0), 14958 => (R => 0, G => 0, B => 0), 14959 => (R => 0, G => 0, B => 0), 14960 => (R => 0, G => 0, B => 0), 14961 => (R => 0, G => 0, B => 0), 14962 => (R => 0, G => 0, B => 0), 14963 => (R => 0, G => 0, B => 0), 14964 => (R => 0, G => 0, B => 0), 14965 => (R => 0, G => 0, B => 0), 14966 => (R => 0, G => 0, B => 0), 14967 => (R => 0, G => 0, B => 0), 14968 => (R => 0, G => 0, B => 0), 14969 => (R => 0, G => 0, B => 0), 14970 => (R => 0, G => 0, B => 0), 14971 => (R => 0, G => 0, B => 0), 14972 => (R => 0, G => 0, B => 0), 14973 => (R => 0, G => 0, B => 0), 14974 => (R => 0, G => 0, B => 0), 14975 => (R => 0, G => 0, B => 0), 14976 => (R => 0, G => 0, B => 0), 14977 => (R => 0, G => 0, B => 0), 14978 => (R => 0, G => 0, B => 0), 14979 => (R => 0, G => 0, B => 0), 14980 => (R => 0, G => 0, B => 0), 14981 => (R => 0, G => 0, B => 0), 14982 => (R => 0, G => 0, B => 0), 14983 => (R => 0, G => 0, B => 0), 14984 => (R => 0, G => 0, B => 0), 14985 => (R => 0, G => 0, B => 0), 14986 => (R => 0, G => 0, B => 0), 14987 => (R => 0, G => 0, B => 0), 14988 => (R => 0, G => 0, B => 0), 14989 => (R => 0, G => 0, B => 0), 14990 => (R => 0, G => 0, B => 0), 14991 => (R => 0, G => 0, B => 0), 14992 => (R => 0, G => 0, B => 0), 14993 => (R => 0, G => 0, B => 0), 14994 => (R => 0, G => 0, B => 0), 14995 => (R => 0, G => 0, B => 0), 14996 => (R => 0, G => 0, B => 0), 14997 => (R => 0, G => 0, B => 0), 14998 => (R => 0, G => 0, B => 0), 14999 => (R => 0, G => 0, B => 0), 15000 => (R => 0, G => 0, B => 0), 15001 => (R => 0, G => 0, B => 0), 15002 => (R => 0, G => 0, B => 0), 15003 => (R => 0, G => 0, B => 0), 15004 => (R => 0, G => 0, B => 0), 15005 => (R => 0, G => 0, B => 0), 15006 => (R => 0, G => 0, B => 0), 15007 => (R => 0, G => 0, B => 0), 15008 => (R => 0, G => 0, B => 0), 15009 => (R => 0, G => 0, B => 0), 15010 => (R => 0, G => 0, B => 0), 15011 => (R => 0, G => 0, B => 0), 15012 => (R => 0, G => 0, B => 0), 15013 => (R => 0, G => 0, B => 0), 15014 => (R => 0, G => 0, B => 0), 15015 => (R => 0, G => 0, B => 0), 15016 => (R => 0, G => 0, B => 0), 15017 => (R => 0, G => 0, B => 0), 15018 => (R => 0, G => 0, B => 0), 15019 => (R => 0, G => 0, B => 0), 15020 => (R => 0, G => 0, B => 0), 15021 => (R => 0, G => 0, B => 0), 15022 => (R => 0, G => 0, B => 0), 15023 => (R => 0, G => 0, B => 0), 15024 => (R => 0, G => 0, B => 0), 15025 => (R => 0, G => 0, B => 0), 15026 => (R => 0, G => 0, B => 0), 15027 => (R => 0, G => 0, B => 0), 15028 => (R => 0, G => 0, B => 0), 15029 => (R => 0, G => 0, B => 0), 15030 => (R => 0, G => 0, B => 0), 15031 => (R => 0, G => 0, B => 0), 15032 => (R => 0, G => 0, B => 0), 15033 => (R => 0, G => 0, B => 0), 15034 => (R => 0, G => 0, B => 0), 15035 => (R => 0, G => 0, B => 0), 15036 => (R => 0, G => 0, B => 0), 15037 => (R => 0, G => 0, B => 0), 15038 => (R => 0, G => 0, B => 0), 15039 => (R => 0, G => 0, B => 0), 15040 => (R => 0, G => 0, B => 0), 15041 => (R => 0, G => 0, B => 0), 15042 => (R => 0, G => 0, B => 0), 15043 => (R => 0, G => 0, B => 0), 15044 => (R => 0, G => 0, B => 0), 15045 => (R => 0, G => 0, B => 0), 15046 => (R => 0, G => 0, B => 0), 15047 => (R => 0, G => 0, B => 0), 15048 => (R => 0, G => 0, B => 0), 15049 => (R => 0, G => 0, B => 0), 15050 => (R => 0, G => 0, B => 0), 15051 => (R => 0, G => 0, B => 0), 15052 => (R => 0, G => 0, B => 0), 15053 => (R => 0, G => 0, B => 0), 15054 => (R => 0, G => 0, B => 0), 15055 => (R => 0, G => 0, B => 0), 15056 => (R => 0, G => 0, B => 0), 15057 => (R => 0, G => 0, B => 0), 15058 => (R => 0, G => 0, B => 0), 15059 => (R => 0, G => 0, B => 0), 15060 => (R => 0, G => 0, B => 0), 15061 => (R => 0, G => 0, B => 0), 15062 => (R => 0, G => 0, B => 0), 15063 => (R => 0, G => 0, B => 0), 15064 => (R => 0, G => 0, B => 0), 15065 => (R => 0, G => 0, B => 0), 15066 => (R => 0, G => 0, B => 0), 15067 => (R => 0, G => 0, B => 0), 15068 => (R => 0, G => 0, B => 0), 15069 => (R => 0, G => 0, B => 0), 15070 => (R => 0, G => 0, B => 0), 15071 => (R => 0, G => 0, B => 0), 15072 => (R => 0, G => 0, B => 0), 15073 => (R => 0, G => 0, B => 0), 15074 => (R => 0, G => 0, B => 0), 15075 => (R => 0, G => 0, B => 0), 15076 => (R => 0, G => 0, B => 0), 15077 => (R => 255, G => 0, B => 0), 15078 => (R => 255, G => 0, B => 0), 15079 => (R => 255, G => 0, B => 0), 15080 => (R => 255, G => 0, B => 0), 15081 => (R => 255, G => 0, B => 0), 15082 => (R => 255, G => 0, B => 0), 15083 => (R => 255, G => 0, B => 0), 15084 => (R => 255, G => 0, B => 0), 15085 => (R => 255, G => 0, B => 0), 15086 => (R => 255, G => 0, B => 0), 15087 => (R => 255, G => 0, B => 0), 15088 => (R => 255, G => 0, B => 0), 15089 => (R => 255, G => 0, B => 0), 15090 => (R => 255, G => 0, B => 0), 15091 => (R => 255, G => 0, B => 0), 15092 => (R => 255, G => 0, B => 0), 15093 => (R => 255, G => 0, B => 0), 15094 => (R => 255, G => 0, B => 0), 15095 => (R => 255, G => 0, B => 0), 15096 => (R => 255, G => 0, B => 0), 15097 => (R => 255, G => 0, B => 0), 15098 => (R => 255, G => 0, B => 0), 15099 => (R => 255, G => 0, B => 0), 15100 => (R => 255, G => 0, B => 0), 15101 => (R => 255, G => 0, B => 0), 15102 => (R => 255, G => 0, B => 0), 15103 => (R => 255, G => 0, B => 0), 15104 => (R => 255, G => 0, B => 0), 15105 => (R => 255, G => 0, B => 0), 15106 => (R => 255, G => 0, B => 0), 15107 => (R => 255, G => 0, B => 0), 15108 => (R => 255, G => 0, B => 0), 15109 => (R => 255, G => 0, B => 0), 15110 => (R => 255, G => 0, B => 0), 15111 => (R => 255, G => 0, B => 0), 15112 => (R => 255, G => 0, B => 0), 15113 => (R => 255, G => 0, B => 0), 15114 => (R => 255, G => 0, B => 0), 15115 => (R => 255, G => 0, B => 0), 15116 => (R => 255, G => 0, B => 0), 15117 => (R => 255, G => 0, B => 0), 15118 => (R => 255, G => 0, B => 0), 15119 => (R => 255, G => 0, B => 0), 15120 => (R => 255, G => 0, B => 0), 15121 => (R => 255, G => 0, B => 0), 15122 => (R => 255, G => 0, B => 0), 15123 => (R => 255, G => 0, B => 0), 15124 => (R => 0, G => 0, B => 0), 15125 => (R => 0, G => 0, B => 0), 15126 => (R => 0, G => 0, B => 0), 15127 => (R => 0, G => 0, B => 0), 15128 => (R => 0, G => 0, B => 0), 15129 => (R => 0, G => 0, B => 0), 15130 => (R => 0, G => 0, B => 0), 15131 => (R => 0, G => 0, B => 0), 15132 => (R => 0, G => 0, B => 0), 15133 => (R => 0, G => 0, B => 0), 15134 => (R => 0, G => 0, B => 0), 15135 => (R => 0, G => 0, B => 0), 15136 => (R => 0, G => 0, B => 0), 15137 => (R => 0, G => 0, B => 0), 15138 => (R => 0, G => 0, B => 0), 15139 => (R => 0, G => 0, B => 0), 15140 => (R => 0, G => 0, B => 0), 15141 => (R => 0, G => 0, B => 0), 15142 => (R => 0, G => 0, B => 0), 15143 => (R => 0, G => 0, B => 0), 15144 => (R => 0, G => 0, B => 0), 15145 => (R => 0, G => 0, B => 0), 15146 => (R => 0, G => 0, B => 0), 15147 => (R => 0, G => 0, B => 0), 15148 => (R => 0, G => 0, B => 0), 15149 => (R => 0, G => 0, B => 0), 15150 => (R => 0, G => 0, B => 0), 15151 => (R => 0, G => 0, B => 0), 15152 => (R => 0, G => 0, B => 0), 15153 => (R => 0, G => 0, B => 0), 15154 => (R => 0, G => 0, B => 0), 15155 => (R => 0, G => 0, B => 0), 15156 => (R => 0, G => 0, B => 0), 15157 => (R => 0, G => 0, B => 0), 15158 => (R => 0, G => 0, B => 0), 15159 => (R => 0, G => 0, B => 0), 15160 => (R => 0, G => 0, B => 0), 15161 => (R => 0, G => 0, B => 0), 15162 => (R => 0, G => 0, B => 0), 15163 => (R => 0, G => 0, B => 0), 15164 => (R => 0, G => 0, B => 0), 15165 => (R => 0, G => 0, B => 0), 15166 => (R => 0, G => 0, B => 0), 15167 => (R => 0, G => 0, B => 0), 15168 => (R => 0, G => 0, B => 0), 15169 => (R => 0, G => 0, B => 0), 15170 => (R => 0, G => 0, B => 0), 15171 => (R => 0, G => 0, B => 0), 15172 => (R => 0, G => 0, B => 0), 15173 => (R => 0, G => 0, B => 0), 15174 => (R => 0, G => 0, B => 0), 15175 => (R => 0, G => 0, B => 0), 15176 => (R => 0, G => 0, B => 0), 15177 => (R => 0, G => 0, B => 0), 15178 => (R => 0, G => 0, B => 0), 15179 => (R => 0, G => 0, B => 0), 15180 => (R => 0, G => 0, B => 0), 15181 => (R => 0, G => 0, B => 0), 15182 => (R => 0, G => 0, B => 0), 15183 => (R => 0, G => 0, B => 0), 15184 => (R => 0, G => 0, B => 0), 15185 => (R => 0, G => 0, B => 0), 15186 => (R => 0, G => 0, B => 0), 15187 => (R => 0, G => 0, B => 0), 15188 => (R => 0, G => 0, B => 0), 15189 => (R => 0, G => 0, B => 0), 15190 => (R => 0, G => 0, B => 0), 15191 => (R => 0, G => 0, B => 0), 15192 => (R => 0, G => 0, B => 0), 15193 => (R => 0, G => 0, B => 0), 15194 => (R => 0, G => 0, B => 0), 15195 => (R => 0, G => 0, B => 0), 15196 => (R => 0, G => 0, B => 0), 15197 => (R => 0, G => 0, B => 0), 15198 => (R => 0, G => 0, B => 0), 15199 => (R => 0, G => 0, B => 0), 15200 => (R => 0, G => 0, B => 0), 15201 => (R => 0, G => 0, B => 0), 15202 => (R => 0, G => 0, B => 0), 15203 => (R => 0, G => 0, B => 0), 15204 => (R => 0, G => 0, B => 0), 15205 => (R => 0, G => 0, B => 0), 15206 => (R => 0, G => 0, B => 0), 15207 => (R => 0, G => 0, B => 0), 15208 => (R => 0, G => 0, B => 0), 15209 => (R => 0, G => 0, B => 0), 15210 => (R => 0, G => 0, B => 0), 15211 => (R => 0, G => 0, B => 0), 15212 => (R => 0, G => 0, B => 0), 15213 => (R => 0, G => 0, B => 0), 15214 => (R => 0, G => 0, B => 0), 15215 => (R => 0, G => 0, B => 0), 15216 => (R => 0, G => 0, B => 0), 15217 => (R => 0, G => 0, B => 0), 15218 => (R => 0, G => 0, B => 0), 15219 => (R => 0, G => 0, B => 0), 15220 => (R => 0, G => 0, B => 0), 15221 => (R => 0, G => 0, B => 0), 15222 => (R => 0, G => 0, B => 0), 15223 => (R => 0, G => 0, B => 0), 15224 => (R => 0, G => 0, B => 0), 15225 => (R => 0, G => 0, B => 0), 15226 => (R => 0, G => 0, B => 0), 15227 => (R => 0, G => 0, B => 0), 15228 => (R => 0, G => 0, B => 0), 15229 => (R => 0, G => 0, B => 0), 15230 => (R => 0, G => 0, B => 0), 15231 => (R => 0, G => 0, B => 0), 15232 => (R => 0, G => 0, B => 0), 15233 => (R => 0, G => 0, B => 0), 15234 => (R => 0, G => 0, B => 0), 15235 => (R => 0, G => 0, B => 0), 15236 => (R => 0, G => 0, B => 0), 15237 => (R => 0, G => 0, B => 0), 15238 => (R => 0, G => 0, B => 0), 15239 => (R => 0, G => 0, B => 0), 15240 => (R => 0, G => 0, B => 0), 15241 => (R => 0, G => 0, B => 0), 15242 => (R => 0, G => 0, B => 0), 15243 => (R => 0, G => 0, B => 0), 15244 => (R => 0, G => 0, B => 0), 15245 => (R => 0, G => 0, B => 0), 15246 => (R => 0, G => 0, B => 0), 15247 => (R => 0, G => 0, B => 0), 15248 => (R => 0, G => 0, B => 0), 15249 => (R => 0, G => 0, B => 0), 15250 => (R => 0, G => 0, B => 0), 15251 => (R => 0, G => 0, B => 0), 15252 => (R => 0, G => 0, B => 0), 15253 => (R => 0, G => 0, B => 0), 15254 => (R => 0, G => 0, B => 0), 15255 => (R => 0, G => 0, B => 0), 15256 => (R => 0, G => 0, B => 0), 15257 => (R => 0, G => 0, B => 0), 15258 => (R => 0, G => 0, B => 0), 15259 => (R => 0, G => 0, B => 0), 15260 => (R => 0, G => 0, B => 0), 15261 => (R => 0, G => 0, B => 0), 15262 => (R => 0, G => 0, B => 0), 15263 => (R => 0, G => 0, B => 0), 15264 => (R => 0, G => 0, B => 0), 15265 => (R => 0, G => 0, B => 0), 15266 => (R => 0, G => 0, B => 0), 15267 => (R => 0, G => 0, B => 0), 15268 => (R => 0, G => 0, B => 0), 15269 => (R => 0, G => 0, B => 0), 15270 => (R => 0, G => 0, B => 0), 15271 => (R => 0, G => 0, B => 0), 15272 => (R => 0, G => 0, B => 0), 15273 => (R => 0, G => 0, B => 0), 15274 => (R => 0, G => 0, B => 0), 15275 => (R => 0, G => 0, B => 0), 15276 => (R => 0, G => 0, B => 0), 15277 => (R => 0, G => 0, B => 0), 15278 => (R => 255, G => 0, B => 0), 15279 => (R => 255, G => 0, B => 0), 15280 => (R => 255, G => 0, B => 0), 15281 => (R => 255, G => 0, B => 0), 15282 => (R => 255, G => 0, B => 0), 15283 => (R => 255, G => 0, B => 0), 15284 => (R => 255, G => 0, B => 0), 15285 => (R => 255, G => 0, B => 0), 15286 => (R => 255, G => 0, B => 0), 15287 => (R => 255, G => 0, B => 0), 15288 => (R => 255, G => 0, B => 0), 15289 => (R => 255, G => 0, B => 0), 15290 => (R => 255, G => 0, B => 0), 15291 => (R => 255, G => 0, B => 0), 15292 => (R => 255, G => 0, B => 0), 15293 => (R => 255, G => 0, B => 0), 15294 => (R => 255, G => 0, B => 0), 15295 => (R => 255, G => 0, B => 0), 15296 => (R => 255, G => 0, B => 0), 15297 => (R => 255, G => 0, B => 0), 15298 => (R => 255, G => 0, B => 0), 15299 => (R => 255, G => 0, B => 0), 15300 => (R => 255, G => 0, B => 0), 15301 => (R => 255, G => 0, B => 0), 15302 => (R => 255, G => 0, B => 0), 15303 => (R => 255, G => 0, B => 0), 15304 => (R => 255, G => 0, B => 0), 15305 => (R => 255, G => 0, B => 0), 15306 => (R => 255, G => 0, B => 0), 15307 => (R => 255, G => 0, B => 0), 15308 => (R => 255, G => 0, B => 0), 15309 => (R => 255, G => 0, B => 0), 15310 => (R => 255, G => 0, B => 0), 15311 => (R => 255, G => 0, B => 0), 15312 => (R => 255, G => 0, B => 0), 15313 => (R => 255, G => 0, B => 0), 15314 => (R => 255, G => 0, B => 0), 15315 => (R => 255, G => 0, B => 0), 15316 => (R => 255, G => 0, B => 0), 15317 => (R => 255, G => 0, B => 0), 15318 => (R => 255, G => 0, B => 0), 15319 => (R => 255, G => 0, B => 0), 15320 => (R => 255, G => 0, B => 0), 15321 => (R => 255, G => 0, B => 0), 15322 => (R => 255, G => 0, B => 0), 15323 => (R => 0, G => 0, B => 0), 15324 => (R => 0, G => 0, B => 0), 15325 => (R => 0, G => 0, B => 0), 15326 => (R => 0, G => 0, B => 0), 15327 => (R => 0, G => 0, B => 0), 15328 => (R => 0, G => 0, B => 0), 15329 => (R => 0, G => 0, B => 0), 15330 => (R => 0, G => 0, B => 0), 15331 => (R => 0, G => 0, B => 0), 15332 => (R => 0, G => 0, B => 0), 15333 => (R => 0, G => 0, B => 0), 15334 => (R => 0, G => 0, B => 0), 15335 => (R => 0, G => 0, B => 0), 15336 => (R => 0, G => 0, B => 0), 15337 => (R => 0, G => 0, B => 0), 15338 => (R => 0, G => 0, B => 0), 15339 => (R => 0, G => 0, B => 0), 15340 => (R => 0, G => 0, B => 0), 15341 => (R => 0, G => 0, B => 0), 15342 => (R => 0, G => 0, B => 0), 15343 => (R => 0, G => 0, B => 0), 15344 => (R => 0, G => 0, B => 0), 15345 => (R => 0, G => 0, B => 0), 15346 => (R => 0, G => 0, B => 0), 15347 => (R => 0, G => 0, B => 0), 15348 => (R => 0, G => 0, B => 0), 15349 => (R => 0, G => 0, B => 0), 15350 => (R => 0, G => 0, B => 0), 15351 => (R => 0, G => 0, B => 0), 15352 => (R => 0, G => 0, B => 0), 15353 => (R => 0, G => 0, B => 0), 15354 => (R => 0, G => 0, B => 0), 15355 => (R => 0, G => 0, B => 0), 15356 => (R => 0, G => 0, B => 0), 15357 => (R => 0, G => 0, B => 0), 15358 => (R => 0, G => 0, B => 0), 15359 => (R => 0, G => 0, B => 0), 15360 => (R => 0, G => 0, B => 0), 15361 => (R => 0, G => 0, B => 0), 15362 => (R => 0, G => 0, B => 0), 15363 => (R => 0, G => 0, B => 0), 15364 => (R => 0, G => 0, B => 0), 15365 => (R => 0, G => 0, B => 0), 15366 => (R => 0, G => 0, B => 0), 15367 => (R => 0, G => 0, B => 0), 15368 => (R => 0, G => 0, B => 0), 15369 => (R => 0, G => 0, B => 0), 15370 => (R => 0, G => 0, B => 0), 15371 => (R => 0, G => 0, B => 0), 15372 => (R => 0, G => 0, B => 0), 15373 => (R => 0, G => 0, B => 0), 15374 => (R => 0, G => 0, B => 0), 15375 => (R => 0, G => 0, B => 0), 15376 => (R => 0, G => 0, B => 0), 15377 => (R => 0, G => 0, B => 0), 15378 => (R => 0, G => 0, B => 0), 15379 => (R => 0, G => 0, B => 0), 15380 => (R => 0, G => 0, B => 0), 15381 => (R => 0, G => 0, B => 0), 15382 => (R => 0, G => 0, B => 0), 15383 => (R => 0, G => 0, B => 0), 15384 => (R => 0, G => 0, B => 0), 15385 => (R => 0, G => 0, B => 0), 15386 => (R => 0, G => 0, B => 0), 15387 => (R => 0, G => 0, B => 0), 15388 => (R => 0, G => 0, B => 0), 15389 => (R => 0, G => 0, B => 0), 15390 => (R => 0, G => 0, B => 0), 15391 => (R => 0, G => 0, B => 0), 15392 => (R => 0, G => 0, B => 0), 15393 => (R => 0, G => 0, B => 0), 15394 => (R => 0, G => 0, B => 0), 15395 => (R => 0, G => 0, B => 0), 15396 => (R => 0, G => 0, B => 0), 15397 => (R => 0, G => 0, B => 0), 15398 => (R => 0, G => 0, B => 0), 15399 => (R => 0, G => 0, B => 0), 15400 => (R => 0, G => 0, B => 0), 15401 => (R => 0, G => 0, B => 0), 15402 => (R => 0, G => 0, B => 0), 15403 => (R => 0, G => 0, B => 0), 15404 => (R => 0, G => 0, B => 0), 15405 => (R => 0, G => 0, B => 0), 15406 => (R => 0, G => 0, B => 0), 15407 => (R => 0, G => 0, B => 0), 15408 => (R => 0, G => 0, B => 0), 15409 => (R => 0, G => 0, B => 0), 15410 => (R => 0, G => 0, B => 0), 15411 => (R => 0, G => 0, B => 0), 15412 => (R => 0, G => 0, B => 0), 15413 => (R => 0, G => 0, B => 0), 15414 => (R => 0, G => 0, B => 0), 15415 => (R => 0, G => 0, B => 0), 15416 => (R => 0, G => 0, B => 0), 15417 => (R => 0, G => 0, B => 0), 15418 => (R => 0, G => 0, B => 0), 15419 => (R => 0, G => 0, B => 0), 15420 => (R => 0, G => 0, B => 0), 15421 => (R => 0, G => 0, B => 0), 15422 => (R => 0, G => 0, B => 0), 15423 => (R => 0, G => 0, B => 0), 15424 => (R => 0, G => 0, B => 0), 15425 => (R => 0, G => 0, B => 0), 15426 => (R => 0, G => 0, B => 0), 15427 => (R => 0, G => 0, B => 0), 15428 => (R => 0, G => 0, B => 0), 15429 => (R => 0, G => 0, B => 0), 15430 => (R => 0, G => 0, B => 0), 15431 => (R => 0, G => 0, B => 0), 15432 => (R => 0, G => 0, B => 0), 15433 => (R => 0, G => 0, B => 0), 15434 => (R => 0, G => 0, B => 0), 15435 => (R => 0, G => 0, B => 0), 15436 => (R => 0, G => 0, B => 0), 15437 => (R => 0, G => 0, B => 0), 15438 => (R => 0, G => 0, B => 0), 15439 => (R => 0, G => 0, B => 0), 15440 => (R => 0, G => 0, B => 0), 15441 => (R => 0, G => 0, B => 0), 15442 => (R => 0, G => 0, B => 0), 15443 => (R => 0, G => 0, B => 0), 15444 => (R => 0, G => 0, B => 0), 15445 => (R => 0, G => 0, B => 0), 15446 => (R => 0, G => 0, B => 0), 15447 => (R => 0, G => 0, B => 0), 15448 => (R => 0, G => 0, B => 0), 15449 => (R => 0, G => 0, B => 0), 15450 => (R => 0, G => 0, B => 0), 15451 => (R => 0, G => 0, B => 0), 15452 => (R => 0, G => 0, B => 0), 15453 => (R => 0, G => 0, B => 0), 15454 => (R => 0, G => 0, B => 0), 15455 => (R => 0, G => 0, B => 0), 15456 => (R => 0, G => 0, B => 0), 15457 => (R => 0, G => 0, B => 0), 15458 => (R => 0, G => 0, B => 0), 15459 => (R => 0, G => 0, B => 0), 15460 => (R => 0, G => 0, B => 0), 15461 => (R => 0, G => 0, B => 0), 15462 => (R => 0, G => 0, B => 0), 15463 => (R => 0, G => 0, B => 0), 15464 => (R => 0, G => 0, B => 0), 15465 => (R => 0, G => 0, B => 0), 15466 => (R => 0, G => 0, B => 0), 15467 => (R => 0, G => 0, B => 0), 15468 => (R => 0, G => 0, B => 0), 15469 => (R => 0, G => 0, B => 0), 15470 => (R => 0, G => 0, B => 0), 15471 => (R => 0, G => 0, B => 0), 15472 => (R => 0, G => 0, B => 0), 15473 => (R => 0, G => 0, B => 0), 15474 => (R => 0, G => 0, B => 0), 15475 => (R => 0, G => 0, B => 0), 15476 => (R => 0, G => 0, B => 0), 15477 => (R => 0, G => 0, B => 0), 15478 => (R => 0, G => 0, B => 0), 15479 => (R => 255, G => 0, B => 0), 15480 => (R => 255, G => 0, B => 0), 15481 => (R => 255, G => 0, B => 0), 15482 => (R => 255, G => 0, B => 0), 15483 => (R => 255, G => 0, B => 0), 15484 => (R => 255, G => 0, B => 0), 15485 => (R => 255, G => 0, B => 0), 15486 => (R => 255, G => 0, B => 0), 15487 => (R => 255, G => 0, B => 0), 15488 => (R => 255, G => 0, B => 0), 15489 => (R => 255, G => 0, B => 0), 15490 => (R => 255, G => 0, B => 0), 15491 => (R => 255, G => 0, B => 0), 15492 => (R => 255, G => 0, B => 0), 15493 => (R => 255, G => 0, B => 0), 15494 => (R => 255, G => 0, B => 0), 15495 => (R => 255, G => 0, B => 0), 15496 => (R => 255, G => 0, B => 0), 15497 => (R => 255, G => 0, B => 0), 15498 => (R => 255, G => 0, B => 0), 15499 => (R => 255, G => 0, B => 0), 15500 => (R => 255, G => 0, B => 0), 15501 => (R => 255, G => 0, B => 0), 15502 => (R => 255, G => 0, B => 0), 15503 => (R => 255, G => 0, B => 0), 15504 => (R => 255, G => 0, B => 0), 15505 => (R => 255, G => 0, B => 0), 15506 => (R => 255, G => 0, B => 0), 15507 => (R => 255, G => 0, B => 0), 15508 => (R => 255, G => 0, B => 0), 15509 => (R => 255, G => 0, B => 0), 15510 => (R => 255, G => 0, B => 0), 15511 => (R => 255, G => 0, B => 0), 15512 => (R => 255, G => 0, B => 0), 15513 => (R => 255, G => 0, B => 0), 15514 => (R => 255, G => 0, B => 0), 15515 => (R => 255, G => 0, B => 0), 15516 => (R => 255, G => 0, B => 0), 15517 => (R => 255, G => 0, B => 0), 15518 => (R => 255, G => 0, B => 0), 15519 => (R => 255, G => 0, B => 0), 15520 => (R => 255, G => 0, B => 0), 15521 => (R => 255, G => 0, B => 0), 15522 => (R => 0, G => 0, B => 0), 15523 => (R => 0, G => 0, B => 0), 15524 => (R => 0, G => 0, B => 0), 15525 => (R => 0, G => 0, B => 0), 15526 => (R => 0, G => 0, B => 0), 15527 => (R => 0, G => 0, B => 0), 15528 => (R => 0, G => 0, B => 0), 15529 => (R => 0, G => 0, B => 0), 15530 => (R => 0, G => 0, B => 0), 15531 => (R => 0, G => 0, B => 0), 15532 => (R => 0, G => 0, B => 0), 15533 => (R => 0, G => 0, B => 0), 15534 => (R => 0, G => 0, B => 0), 15535 => (R => 0, G => 0, B => 0), 15536 => (R => 0, G => 0, B => 0), 15537 => (R => 0, G => 0, B => 0), 15538 => (R => 0, G => 0, B => 0), 15539 => (R => 0, G => 0, B => 0), 15540 => (R => 0, G => 0, B => 0), 15541 => (R => 0, G => 0, B => 0), 15542 => (R => 0, G => 0, B => 0), 15543 => (R => 0, G => 0, B => 0), 15544 => (R => 0, G => 0, B => 0), 15545 => (R => 0, G => 0, B => 0), 15546 => (R => 0, G => 0, B => 0), 15547 => (R => 0, G => 0, B => 0), 15548 => (R => 0, G => 0, B => 0), 15549 => (R => 0, G => 0, B => 0), 15550 => (R => 0, G => 0, B => 0), 15551 => (R => 0, G => 0, B => 0), 15552 => (R => 0, G => 0, B => 0), 15553 => (R => 0, G => 0, B => 0), 15554 => (R => 0, G => 0, B => 0), 15555 => (R => 0, G => 0, B => 0), 15556 => (R => 0, G => 0, B => 0), 15557 => (R => 0, G => 0, B => 0), 15558 => (R => 0, G => 0, B => 0), 15559 => (R => 0, G => 0, B => 0), 15560 => (R => 0, G => 0, B => 0), 15561 => (R => 0, G => 0, B => 0), 15562 => (R => 0, G => 0, B => 0), 15563 => (R => 0, G => 0, B => 0), 15564 => (R => 0, G => 0, B => 0), 15565 => (R => 0, G => 0, B => 0), 15566 => (R => 0, G => 0, B => 0), 15567 => (R => 0, G => 0, B => 0), 15568 => (R => 0, G => 0, B => 0), 15569 => (R => 0, G => 0, B => 0), 15570 => (R => 0, G => 0, B => 0), 15571 => (R => 0, G => 0, B => 0), 15572 => (R => 0, G => 0, B => 0), 15573 => (R => 0, G => 0, B => 0), 15574 => (R => 0, G => 0, B => 0), 15575 => (R => 0, G => 0, B => 0), 15576 => (R => 0, G => 0, B => 0), 15577 => (R => 0, G => 0, B => 0), 15578 => (R => 0, G => 0, B => 0), 15579 => (R => 0, G => 0, B => 0), 15580 => (R => 0, G => 0, B => 0), 15581 => (R => 0, G => 0, B => 0), 15582 => (R => 0, G => 0, B => 0), 15583 => (R => 0, G => 0, B => 0), 15584 => (R => 0, G => 0, B => 0), 15585 => (R => 0, G => 0, B => 0), 15586 => (R => 0, G => 0, B => 0), 15587 => (R => 0, G => 0, B => 0), 15588 => (R => 0, G => 0, B => 0), 15589 => (R => 0, G => 0, B => 0), 15590 => (R => 0, G => 0, B => 0), 15591 => (R => 0, G => 0, B => 0), 15592 => (R => 0, G => 0, B => 0), 15593 => (R => 0, G => 0, B => 0), 15594 => (R => 0, G => 0, B => 0), 15595 => (R => 0, G => 0, B => 0), 15596 => (R => 0, G => 0, B => 0), 15597 => (R => 0, G => 0, B => 0), 15598 => (R => 0, G => 0, B => 0), 15599 => (R => 0, G => 0, B => 0), 15600 => (R => 0, G => 0, B => 0), 15601 => (R => 0, G => 0, B => 0), 15602 => (R => 0, G => 0, B => 0), 15603 => (R => 0, G => 0, B => 0), 15604 => (R => 0, G => 0, B => 0), 15605 => (R => 0, G => 0, B => 0), 15606 => (R => 0, G => 0, B => 0), 15607 => (R => 0, G => 0, B => 0), 15608 => (R => 0, G => 0, B => 0), 15609 => (R => 0, G => 0, B => 0), 15610 => (R => 0, G => 0, B => 0), 15611 => (R => 0, G => 0, B => 0), 15612 => (R => 0, G => 0, B => 0), 15613 => (R => 0, G => 0, B => 0), 15614 => (R => 0, G => 0, B => 0), 15615 => (R => 0, G => 0, B => 0), 15616 => (R => 0, G => 0, B => 0), 15617 => (R => 0, G => 0, B => 0), 15618 => (R => 0, G => 0, B => 0), 15619 => (R => 0, G => 0, B => 0), 15620 => (R => 0, G => 0, B => 0), 15621 => (R => 0, G => 0, B => 0), 15622 => (R => 0, G => 0, B => 0), 15623 => (R => 0, G => 0, B => 0), 15624 => (R => 0, G => 0, B => 0), 15625 => (R => 0, G => 0, B => 0), 15626 => (R => 0, G => 0, B => 0), 15627 => (R => 0, G => 0, B => 0), 15628 => (R => 0, G => 0, B => 0), 15629 => (R => 0, G => 0, B => 0), 15630 => (R => 0, G => 0, B => 0), 15631 => (R => 0, G => 0, B => 0), 15632 => (R => 0, G => 0, B => 0), 15633 => (R => 0, G => 0, B => 0), 15634 => (R => 0, G => 0, B => 0), 15635 => (R => 0, G => 0, B => 0), 15636 => (R => 0, G => 0, B => 0), 15637 => (R => 0, G => 0, B => 0), 15638 => (R => 0, G => 0, B => 0), 15639 => (R => 0, G => 0, B => 0), 15640 => (R => 0, G => 0, B => 0), 15641 => (R => 0, G => 0, B => 0), 15642 => (R => 0, G => 0, B => 0), 15643 => (R => 0, G => 0, B => 0), 15644 => (R => 0, G => 0, B => 0), 15645 => (R => 0, G => 0, B => 0), 15646 => (R => 0, G => 0, B => 0), 15647 => (R => 0, G => 0, B => 0), 15648 => (R => 0, G => 0, B => 0), 15649 => (R => 0, G => 0, B => 0), 15650 => (R => 0, G => 0, B => 0), 15651 => (R => 0, G => 0, B => 0), 15652 => (R => 0, G => 0, B => 0), 15653 => (R => 0, G => 0, B => 0), 15654 => (R => 0, G => 0, B => 0), 15655 => (R => 0, G => 0, B => 0), 15656 => (R => 0, G => 0, B => 0), 15657 => (R => 0, G => 0, B => 0), 15658 => (R => 0, G => 0, B => 0), 15659 => (R => 0, G => 0, B => 0), 15660 => (R => 0, G => 0, B => 0), 15661 => (R => 0, G => 0, B => 0), 15662 => (R => 0, G => 0, B => 0), 15663 => (R => 0, G => 0, B => 0), 15664 => (R => 0, G => 0, B => 0), 15665 => (R => 0, G => 0, B => 0), 15666 => (R => 0, G => 0, B => 0), 15667 => (R => 0, G => 0, B => 0), 15668 => (R => 0, G => 0, B => 0), 15669 => (R => 0, G => 0, B => 0), 15670 => (R => 0, G => 0, B => 0), 15671 => (R => 0, G => 0, B => 0), 15672 => (R => 0, G => 0, B => 0), 15673 => (R => 0, G => 0, B => 0), 15674 => (R => 0, G => 0, B => 0), 15675 => (R => 0, G => 0, B => 0), 15676 => (R => 0, G => 0, B => 0), 15677 => (R => 0, G => 0, B => 0), 15678 => (R => 0, G => 0, B => 0), 15679 => (R => 0, G => 0, B => 0), 15680 => (R => 255, G => 0, B => 0), 15681 => (R => 255, G => 0, B => 0), 15682 => (R => 255, G => 0, B => 0), 15683 => (R => 255, G => 0, B => 0), 15684 => (R => 255, G => 0, B => 0), 15685 => (R => 255, G => 0, B => 0), 15686 => (R => 255, G => 0, B => 0), 15687 => (R => 255, G => 0, B => 0), 15688 => (R => 255, G => 0, B => 0), 15689 => (R => 255, G => 0, B => 0), 15690 => (R => 255, G => 0, B => 0), 15691 => (R => 255, G => 0, B => 0), 15692 => (R => 255, G => 0, B => 0), 15693 => (R => 255, G => 0, B => 0), 15694 => (R => 255, G => 0, B => 0), 15695 => (R => 255, G => 0, B => 0), 15696 => (R => 255, G => 0, B => 0), 15697 => (R => 255, G => 0, B => 0), 15698 => (R => 255, G => 0, B => 0), 15699 => (R => 255, G => 0, B => 0), 15700 => (R => 255, G => 0, B => 0), 15701 => (R => 255, G => 0, B => 0), 15702 => (R => 255, G => 0, B => 0), 15703 => (R => 255, G => 0, B => 0), 15704 => (R => 255, G => 0, B => 0), 15705 => (R => 255, G => 0, B => 0), 15706 => (R => 255, G => 0, B => 0), 15707 => (R => 255, G => 0, B => 0), 15708 => (R => 255, G => 0, B => 0), 15709 => (R => 255, G => 0, B => 0), 15710 => (R => 255, G => 0, B => 0), 15711 => (R => 255, G => 0, B => 0), 15712 => (R => 255, G => 0, B => 0), 15713 => (R => 255, G => 0, B => 0), 15714 => (R => 255, G => 0, B => 0), 15715 => (R => 255, G => 0, B => 0), 15716 => (R => 255, G => 0, B => 0), 15717 => (R => 255, G => 0, B => 0), 15718 => (R => 255, G => 0, B => 0), 15719 => (R => 255, G => 0, B => 0), 15720 => (R => 255, G => 0, B => 0), 15721 => (R => 0, G => 0, B => 0), 15722 => (R => 0, G => 0, B => 0), 15723 => (R => 0, G => 0, B => 0), 15724 => (R => 0, G => 0, B => 0), 15725 => (R => 0, G => 0, B => 0), 15726 => (R => 0, G => 0, B => 0), 15727 => (R => 0, G => 0, B => 0), 15728 => (R => 0, G => 0, B => 0), 15729 => (R => 0, G => 0, B => 0), 15730 => (R => 0, G => 0, B => 0), 15731 => (R => 0, G => 0, B => 0), 15732 => (R => 0, G => 0, B => 0), 15733 => (R => 0, G => 0, B => 0), 15734 => (R => 0, G => 0, B => 0), 15735 => (R => 0, G => 0, B => 0), 15736 => (R => 0, G => 0, B => 0), 15737 => (R => 0, G => 0, B => 0), 15738 => (R => 0, G => 0, B => 0), 15739 => (R => 0, G => 0, B => 0), 15740 => (R => 0, G => 0, B => 0), 15741 => (R => 0, G => 0, B => 0), 15742 => (R => 0, G => 0, B => 0), 15743 => (R => 0, G => 0, B => 0), 15744 => (R => 0, G => 0, B => 0), 15745 => (R => 0, G => 0, B => 0), 15746 => (R => 0, G => 0, B => 0), 15747 => (R => 0, G => 0, B => 0), 15748 => (R => 0, G => 0, B => 0), 15749 => (R => 0, G => 0, B => 0), 15750 => (R => 0, G => 0, B => 0), 15751 => (R => 0, G => 0, B => 0), 15752 => (R => 0, G => 0, B => 0), 15753 => (R => 0, G => 0, B => 0), 15754 => (R => 0, G => 0, B => 0), 15755 => (R => 0, G => 0, B => 0), 15756 => (R => 0, G => 0, B => 0), 15757 => (R => 0, G => 0, B => 0), 15758 => (R => 0, G => 0, B => 0), 15759 => (R => 0, G => 0, B => 0), 15760 => (R => 0, G => 0, B => 0), 15761 => (R => 0, G => 0, B => 0), 15762 => (R => 0, G => 0, B => 0), 15763 => (R => 0, G => 0, B => 0), 15764 => (R => 0, G => 0, B => 0), 15765 => (R => 0, G => 0, B => 0), 15766 => (R => 0, G => 0, B => 0), 15767 => (R => 0, G => 0, B => 0), 15768 => (R => 0, G => 0, B => 0), 15769 => (R => 0, G => 0, B => 0), 15770 => (R => 0, G => 0, B => 0), 15771 => (R => 0, G => 0, B => 0), 15772 => (R => 0, G => 0, B => 0), 15773 => (R => 0, G => 0, B => 0), 15774 => (R => 0, G => 0, B => 0), 15775 => (R => 0, G => 0, B => 0), 15776 => (R => 0, G => 0, B => 0), 15777 => (R => 0, G => 0, B => 0), 15778 => (R => 0, G => 0, B => 0), 15779 => (R => 0, G => 0, B => 0), 15780 => (R => 0, G => 0, B => 0), 15781 => (R => 0, G => 0, B => 0), 15782 => (R => 0, G => 0, B => 0), 15783 => (R => 0, G => 0, B => 0), 15784 => (R => 0, G => 0, B => 0), 15785 => (R => 0, G => 0, B => 0), 15786 => (R => 0, G => 0, B => 0), 15787 => (R => 0, G => 0, B => 0), 15788 => (R => 0, G => 0, B => 0), 15789 => (R => 0, G => 0, B => 0), 15790 => (R => 0, G => 0, B => 0), 15791 => (R => 0, G => 0, B => 0), 15792 => (R => 0, G => 0, B => 0), 15793 => (R => 0, G => 0, B => 0), 15794 => (R => 0, G => 0, B => 0), 15795 => (R => 0, G => 0, B => 0), 15796 => (R => 0, G => 0, B => 0), 15797 => (R => 0, G => 0, B => 0), 15798 => (R => 0, G => 0, B => 0), 15799 => (R => 0, G => 0, B => 0), 15800 => (R => 0, G => 0, B => 0), 15801 => (R => 0, G => 0, B => 0), 15802 => (R => 0, G => 0, B => 0), 15803 => (R => 0, G => 0, B => 0), 15804 => (R => 0, G => 0, B => 0), 15805 => (R => 0, G => 0, B => 0), 15806 => (R => 0, G => 0, B => 0), 15807 => (R => 0, G => 0, B => 0), 15808 => (R => 0, G => 0, B => 0), 15809 => (R => 0, G => 0, B => 0), 15810 => (R => 0, G => 0, B => 0), 15811 => (R => 0, G => 0, B => 0), 15812 => (R => 0, G => 0, B => 0), 15813 => (R => 0, G => 0, B => 0), 15814 => (R => 0, G => 0, B => 0), 15815 => (R => 0, G => 0, B => 0), 15816 => (R => 0, G => 0, B => 0), 15817 => (R => 0, G => 0, B => 0), 15818 => (R => 0, G => 0, B => 0), 15819 => (R => 0, G => 0, B => 0), 15820 => (R => 0, G => 0, B => 0), 15821 => (R => 0, G => 0, B => 0), 15822 => (R => 0, G => 0, B => 0), 15823 => (R => 0, G => 0, B => 0), 15824 => (R => 0, G => 0, B => 0), 15825 => (R => 0, G => 0, B => 0), 15826 => (R => 0, G => 0, B => 0), 15827 => (R => 0, G => 0, B => 0), 15828 => (R => 0, G => 0, B => 0), 15829 => (R => 0, G => 0, B => 0), 15830 => (R => 0, G => 0, B => 0), 15831 => (R => 0, G => 0, B => 0), 15832 => (R => 0, G => 0, B => 0), 15833 => (R => 0, G => 0, B => 0), 15834 => (R => 0, G => 0, B => 0), 15835 => (R => 0, G => 0, B => 0), 15836 => (R => 0, G => 0, B => 0), 15837 => (R => 0, G => 0, B => 0), 15838 => (R => 0, G => 0, B => 0), 15839 => (R => 0, G => 0, B => 0), 15840 => (R => 0, G => 0, B => 0), 15841 => (R => 0, G => 0, B => 0), 15842 => (R => 0, G => 0, B => 0), 15843 => (R => 0, G => 0, B => 0), 15844 => (R => 0, G => 0, B => 0), 15845 => (R => 0, G => 0, B => 0), 15846 => (R => 0, G => 0, B => 0), 15847 => (R => 0, G => 0, B => 0), 15848 => (R => 0, G => 0, B => 0), 15849 => (R => 0, G => 0, B => 0), 15850 => (R => 0, G => 0, B => 0), 15851 => (R => 0, G => 0, B => 0), 15852 => (R => 0, G => 0, B => 0), 15853 => (R => 0, G => 0, B => 0), 15854 => (R => 0, G => 0, B => 0), 15855 => (R => 0, G => 0, B => 0), 15856 => (R => 0, G => 0, B => 0), 15857 => (R => 0, G => 0, B => 0), 15858 => (R => 0, G => 0, B => 0), 15859 => (R => 0, G => 0, B => 0), 15860 => (R => 0, G => 0, B => 0), 15861 => (R => 0, G => 0, B => 0), 15862 => (R => 0, G => 0, B => 0), 15863 => (R => 0, G => 0, B => 0), 15864 => (R => 0, G => 0, B => 0), 15865 => (R => 0, G => 0, B => 0), 15866 => (R => 0, G => 0, B => 0), 15867 => (R => 0, G => 0, B => 0), 15868 => (R => 0, G => 0, B => 0), 15869 => (R => 0, G => 0, B => 0), 15870 => (R => 0, G => 0, B => 0), 15871 => (R => 0, G => 0, B => 0), 15872 => (R => 0, G => 0, B => 0), 15873 => (R => 0, G => 0, B => 0), 15874 => (R => 0, G => 0, B => 0), 15875 => (R => 0, G => 0, B => 0), 15876 => (R => 0, G => 0, B => 0), 15877 => (R => 0, G => 0, B => 0), 15878 => (R => 0, G => 0, B => 0), 15879 => (R => 0, G => 0, B => 0), 15880 => (R => 0, G => 0, B => 0), 15881 => (R => 255, G => 0, B => 0), 15882 => (R => 255, G => 0, B => 0), 15883 => (R => 255, G => 0, B => 0), 15884 => (R => 255, G => 0, B => 0), 15885 => (R => 255, G => 0, B => 0), 15886 => (R => 255, G => 0, B => 0), 15887 => (R => 255, G => 0, B => 0), 15888 => (R => 255, G => 0, B => 0), 15889 => (R => 255, G => 0, B => 0), 15890 => (R => 255, G => 0, B => 0), 15891 => (R => 255, G => 0, B => 0), 15892 => (R => 255, G => 0, B => 0), 15893 => (R => 255, G => 0, B => 0), 15894 => (R => 255, G => 0, B => 0), 15895 => (R => 255, G => 0, B => 0), 15896 => (R => 255, G => 0, B => 0), 15897 => (R => 255, G => 0, B => 0), 15898 => (R => 255, G => 0, B => 0), 15899 => (R => 255, G => 0, B => 0), 15900 => (R => 255, G => 0, B => 0), 15901 => (R => 255, G => 0, B => 0), 15902 => (R => 255, G => 0, B => 0), 15903 => (R => 255, G => 0, B => 0), 15904 => (R => 255, G => 0, B => 0), 15905 => (R => 255, G => 0, B => 0), 15906 => (R => 255, G => 0, B => 0), 15907 => (R => 255, G => 0, B => 0), 15908 => (R => 255, G => 0, B => 0), 15909 => (R => 255, G => 0, B => 0), 15910 => (R => 255, G => 0, B => 0), 15911 => (R => 255, G => 0, B => 0), 15912 => (R => 255, G => 0, B => 0), 15913 => (R => 255, G => 0, B => 0), 15914 => (R => 255, G => 0, B => 0), 15915 => (R => 255, G => 0, B => 0), 15916 => (R => 255, G => 0, B => 0), 15917 => (R => 255, G => 0, B => 0), 15918 => (R => 255, G => 0, B => 0), 15919 => (R => 255, G => 0, B => 0), 15920 => (R => 0, G => 0, B => 0), 15921 => (R => 0, G => 0, B => 0), 15922 => (R => 0, G => 0, B => 0), 15923 => (R => 0, G => 0, B => 0), 15924 => (R => 0, G => 0, B => 0), 15925 => (R => 0, G => 0, B => 0), 15926 => (R => 0, G => 0, B => 0), 15927 => (R => 0, G => 0, B => 0), 15928 => (R => 0, G => 0, B => 0), 15929 => (R => 0, G => 0, B => 0), 15930 => (R => 0, G => 0, B => 0), 15931 => (R => 0, G => 0, B => 0), 15932 => (R => 0, G => 0, B => 0), 15933 => (R => 0, G => 0, B => 0), 15934 => (R => 0, G => 0, B => 0), 15935 => (R => 0, G => 0, B => 0), 15936 => (R => 0, G => 0, B => 0), 15937 => (R => 0, G => 0, B => 0), 15938 => (R => 0, G => 0, B => 0), 15939 => (R => 0, G => 0, B => 0), 15940 => (R => 0, G => 0, B => 0), 15941 => (R => 0, G => 0, B => 0), 15942 => (R => 0, G => 0, B => 0), 15943 => (R => 0, G => 0, B => 0), 15944 => (R => 0, G => 0, B => 0), 15945 => (R => 0, G => 0, B => 0), 15946 => (R => 0, G => 0, B => 0), 15947 => (R => 0, G => 0, B => 0), 15948 => (R => 0, G => 0, B => 0), 15949 => (R => 0, G => 0, B => 0), 15950 => (R => 0, G => 0, B => 0), 15951 => (R => 0, G => 0, B => 0), 15952 => (R => 0, G => 0, B => 0), 15953 => (R => 0, G => 0, B => 0), 15954 => (R => 0, G => 0, B => 0), 15955 => (R => 0, G => 0, B => 0), 15956 => (R => 0, G => 0, B => 0), 15957 => (R => 0, G => 0, B => 0), 15958 => (R => 0, G => 0, B => 0), 15959 => (R => 0, G => 0, B => 0), 15960 => (R => 0, G => 0, B => 0), 15961 => (R => 0, G => 0, B => 0), 15962 => (R => 0, G => 0, B => 0), 15963 => (R => 0, G => 0, B => 0), 15964 => (R => 0, G => 0, B => 0), 15965 => (R => 0, G => 0, B => 0), 15966 => (R => 0, G => 0, B => 0), 15967 => (R => 0, G => 0, B => 0), 15968 => (R => 0, G => 0, B => 0), 15969 => (R => 0, G => 0, B => 0), 15970 => (R => 0, G => 0, B => 0), 15971 => (R => 0, G => 0, B => 0), 15972 => (R => 0, G => 0, B => 0), 15973 => (R => 0, G => 0, B => 0), 15974 => (R => 0, G => 0, B => 0), 15975 => (R => 0, G => 0, B => 0), 15976 => (R => 0, G => 0, B => 0), 15977 => (R => 0, G => 0, B => 0), 15978 => (R => 0, G => 0, B => 0), 15979 => (R => 0, G => 0, B => 0), 15980 => (R => 0, G => 0, B => 0), 15981 => (R => 0, G => 0, B => 0), 15982 => (R => 0, G => 0, B => 0), 15983 => (R => 0, G => 0, B => 0), 15984 => (R => 0, G => 0, B => 0), 15985 => (R => 0, G => 0, B => 0), 15986 => (R => 0, G => 0, B => 0), 15987 => (R => 0, G => 0, B => 0), 15988 => (R => 0, G => 0, B => 0), 15989 => (R => 0, G => 0, B => 0), 15990 => (R => 0, G => 0, B => 0), 15991 => (R => 0, G => 0, B => 0), 15992 => (R => 0, G => 0, B => 0), 15993 => (R => 0, G => 0, B => 0), 15994 => (R => 0, G => 0, B => 0), 15995 => (R => 0, G => 0, B => 0), 15996 => (R => 0, G => 0, B => 0), 15997 => (R => 0, G => 0, B => 0), 15998 => (R => 0, G => 0, B => 0), 15999 => (R => 0, G => 0, B => 0), 16000 => (R => 0, G => 0, B => 0), 16001 => (R => 0, G => 0, B => 0), 16002 => (R => 0, G => 0, B => 0), 16003 => (R => 0, G => 0, B => 0), 16004 => (R => 0, G => 0, B => 0), 16005 => (R => 0, G => 0, B => 0), 16006 => (R => 0, G => 0, B => 0), 16007 => (R => 0, G => 0, B => 0), 16008 => (R => 0, G => 0, B => 0), 16009 => (R => 0, G => 0, B => 0), 16010 => (R => 0, G => 0, B => 0), 16011 => (R => 0, G => 0, B => 0), 16012 => (R => 0, G => 0, B => 0), 16013 => (R => 0, G => 0, B => 0), 16014 => (R => 0, G => 0, B => 0), 16015 => (R => 0, G => 0, B => 0), 16016 => (R => 0, G => 0, B => 0), 16017 => (R => 0, G => 0, B => 0), 16018 => (R => 0, G => 0, B => 0), 16019 => (R => 0, G => 0, B => 0), 16020 => (R => 0, G => 0, B => 0), 16021 => (R => 0, G => 0, B => 0), 16022 => (R => 0, G => 0, B => 0), 16023 => (R => 0, G => 0, B => 0), 16024 => (R => 0, G => 0, B => 0), 16025 => (R => 0, G => 0, B => 0), 16026 => (R => 0, G => 0, B => 0), 16027 => (R => 0, G => 0, B => 0), 16028 => (R => 0, G => 0, B => 0), 16029 => (R => 0, G => 0, B => 0), 16030 => (R => 0, G => 0, B => 0), 16031 => (R => 0, G => 0, B => 0), 16032 => (R => 0, G => 0, B => 0), 16033 => (R => 0, G => 0, B => 0), 16034 => (R => 0, G => 0, B => 0), 16035 => (R => 0, G => 0, B => 0), 16036 => (R => 0, G => 0, B => 0), 16037 => (R => 0, G => 0, B => 0), 16038 => (R => 0, G => 0, B => 0), 16039 => (R => 0, G => 0, B => 0), 16040 => (R => 0, G => 0, B => 0), 16041 => (R => 0, G => 0, B => 0), 16042 => (R => 0, G => 0, B => 0), 16043 => (R => 0, G => 0, B => 0), 16044 => (R => 0, G => 0, B => 0), 16045 => (R => 0, G => 0, B => 0), 16046 => (R => 0, G => 0, B => 0), 16047 => (R => 0, G => 0, B => 0), 16048 => (R => 0, G => 0, B => 0), 16049 => (R => 0, G => 0, B => 0), 16050 => (R => 0, G => 0, B => 0), 16051 => (R => 0, G => 0, B => 0), 16052 => (R => 0, G => 0, B => 0), 16053 => (R => 0, G => 0, B => 0), 16054 => (R => 0, G => 0, B => 0), 16055 => (R => 0, G => 0, B => 0), 16056 => (R => 0, G => 0, B => 0), 16057 => (R => 0, G => 0, B => 0), 16058 => (R => 0, G => 0, B => 0), 16059 => (R => 0, G => 0, B => 0), 16060 => (R => 0, G => 0, B => 0), 16061 => (R => 0, G => 0, B => 0), 16062 => (R => 0, G => 0, B => 0), 16063 => (R => 0, G => 0, B => 0), 16064 => (R => 0, G => 0, B => 0), 16065 => (R => 0, G => 0, B => 0), 16066 => (R => 0, G => 0, B => 0), 16067 => (R => 0, G => 0, B => 0), 16068 => (R => 0, G => 0, B => 0), 16069 => (R => 0, G => 0, B => 0), 16070 => (R => 0, G => 0, B => 0), 16071 => (R => 0, G => 0, B => 0), 16072 => (R => 0, G => 0, B => 0), 16073 => (R => 0, G => 0, B => 0), 16074 => (R => 0, G => 0, B => 0), 16075 => (R => 0, G => 0, B => 0), 16076 => (R => 0, G => 0, B => 0), 16077 => (R => 0, G => 0, B => 0), 16078 => (R => 0, G => 0, B => 0), 16079 => (R => 0, G => 0, B => 0), 16080 => (R => 0, G => 0, B => 0), 16081 => (R => 0, G => 0, B => 0), 16082 => (R => 255, G => 0, B => 0), 16083 => (R => 255, G => 0, B => 0), 16084 => (R => 255, G => 0, B => 0), 16085 => (R => 255, G => 0, B => 0), 16086 => (R => 255, G => 0, B => 0), 16087 => (R => 255, G => 0, B => 0), 16088 => (R => 255, G => 0, B => 0), 16089 => (R => 255, G => 0, B => 0), 16090 => (R => 255, G => 0, B => 0), 16091 => (R => 255, G => 0, B => 0), 16092 => (R => 255, G => 0, B => 0), 16093 => (R => 255, G => 0, B => 0), 16094 => (R => 255, G => 0, B => 0), 16095 => (R => 255, G => 0, B => 0), 16096 => (R => 255, G => 0, B => 0), 16097 => (R => 255, G => 0, B => 0), 16098 => (R => 255, G => 0, B => 0), 16099 => (R => 255, G => 0, B => 0), 16100 => (R => 255, G => 0, B => 0), 16101 => (R => 255, G => 0, B => 0), 16102 => (R => 255, G => 0, B => 0), 16103 => (R => 255, G => 0, B => 0), 16104 => (R => 255, G => 0, B => 0), 16105 => (R => 255, G => 0, B => 0), 16106 => (R => 255, G => 0, B => 0), 16107 => (R => 255, G => 0, B => 0), 16108 => (R => 255, G => 0, B => 0), 16109 => (R => 255, G => 0, B => 0), 16110 => (R => 255, G => 0, B => 0), 16111 => (R => 255, G => 0, B => 0), 16112 => (R => 255, G => 0, B => 0), 16113 => (R => 255, G => 0, B => 0), 16114 => (R => 255, G => 0, B => 0), 16115 => (R => 255, G => 0, B => 0), 16116 => (R => 255, G => 0, B => 0), 16117 => (R => 255, G => 0, B => 0), 16118 => (R => 255, G => 0, B => 0), 16119 => (R => 0, G => 0, B => 0), 16120 => (R => 0, G => 0, B => 0), 16121 => (R => 0, G => 0, B => 0), 16122 => (R => 0, G => 0, B => 0), 16123 => (R => 0, G => 0, B => 0), 16124 => (R => 0, G => 0, B => 0), 16125 => (R => 0, G => 0, B => 0), 16126 => (R => 0, G => 0, B => 0), 16127 => (R => 0, G => 0, B => 0), 16128 => (R => 0, G => 0, B => 0), 16129 => (R => 0, G => 0, B => 0), 16130 => (R => 0, G => 0, B => 0), 16131 => (R => 0, G => 0, B => 0), 16132 => (R => 0, G => 0, B => 0), 16133 => (R => 0, G => 0, B => 0), 16134 => (R => 0, G => 0, B => 0), 16135 => (R => 0, G => 0, B => 0), 16136 => (R => 0, G => 0, B => 0), 16137 => (R => 0, G => 0, B => 0), 16138 => (R => 0, G => 0, B => 0), 16139 => (R => 0, G => 0, B => 0), 16140 => (R => 0, G => 0, B => 0), 16141 => (R => 0, G => 0, B => 0), 16142 => (R => 0, G => 0, B => 0), 16143 => (R => 0, G => 0, B => 0), 16144 => (R => 0, G => 0, B => 0), 16145 => (R => 0, G => 0, B => 0), 16146 => (R => 0, G => 0, B => 0), 16147 => (R => 0, G => 0, B => 0), 16148 => (R => 0, G => 0, B => 0), 16149 => (R => 0, G => 0, B => 0), 16150 => (R => 0, G => 0, B => 0), 16151 => (R => 0, G => 0, B => 0), 16152 => (R => 0, G => 0, B => 0), 16153 => (R => 0, G => 0, B => 0), 16154 => (R => 0, G => 0, B => 0), 16155 => (R => 0, G => 0, B => 0), 16156 => (R => 0, G => 0, B => 0), 16157 => (R => 0, G => 0, B => 0), 16158 => (R => 0, G => 0, B => 0), 16159 => (R => 0, G => 0, B => 0), 16160 => (R => 0, G => 0, B => 0), 16161 => (R => 0, G => 0, B => 0), 16162 => (R => 0, G => 0, B => 0), 16163 => (R => 0, G => 0, B => 0), 16164 => (R => 0, G => 0, B => 0), 16165 => (R => 0, G => 0, B => 0), 16166 => (R => 0, G => 0, B => 0), 16167 => (R => 0, G => 0, B => 0), 16168 => (R => 0, G => 0, B => 0), 16169 => (R => 0, G => 0, B => 0), 16170 => (R => 0, G => 0, B => 0), 16171 => (R => 0, G => 0, B => 0), 16172 => (R => 0, G => 0, B => 0), 16173 => (R => 0, G => 0, B => 0), 16174 => (R => 0, G => 0, B => 0), 16175 => (R => 0, G => 0, B => 0), 16176 => (R => 0, G => 0, B => 0), 16177 => (R => 0, G => 0, B => 0), 16178 => (R => 0, G => 0, B => 0), 16179 => (R => 0, G => 0, B => 0), 16180 => (R => 0, G => 0, B => 0), 16181 => (R => 0, G => 0, B => 0), 16182 => (R => 0, G => 0, B => 0), 16183 => (R => 0, G => 0, B => 0), 16184 => (R => 0, G => 0, B => 0), 16185 => (R => 0, G => 0, B => 0), 16186 => (R => 0, G => 0, B => 0), 16187 => (R => 0, G => 0, B => 0), 16188 => (R => 0, G => 0, B => 0), 16189 => (R => 0, G => 0, B => 0), 16190 => (R => 0, G => 0, B => 0), 16191 => (R => 0, G => 0, B => 0), 16192 => (R => 0, G => 0, B => 0), 16193 => (R => 0, G => 0, B => 0), 16194 => (R => 0, G => 0, B => 0), 16195 => (R => 0, G => 0, B => 0), 16196 => (R => 0, G => 0, B => 0), 16197 => (R => 0, G => 0, B => 0), 16198 => (R => 0, G => 0, B => 0), 16199 => (R => 0, G => 0, B => 0), 16200 => (R => 0, G => 0, B => 0), 16201 => (R => 0, G => 0, B => 0), 16202 => (R => 0, G => 0, B => 0), 16203 => (R => 0, G => 0, B => 0), 16204 => (R => 0, G => 0, B => 0), 16205 => (R => 0, G => 0, B => 0), 16206 => (R => 0, G => 0, B => 0), 16207 => (R => 0, G => 0, B => 0), 16208 => (R => 0, G => 0, B => 0), 16209 => (R => 0, G => 0, B => 0), 16210 => (R => 0, G => 0, B => 0), 16211 => (R => 0, G => 0, B => 0), 16212 => (R => 0, G => 0, B => 0), 16213 => (R => 0, G => 0, B => 0), 16214 => (R => 0, G => 0, B => 0), 16215 => (R => 0, G => 0, B => 0), 16216 => (R => 0, G => 0, B => 0), 16217 => (R => 0, G => 0, B => 0), 16218 => (R => 0, G => 0, B => 0), 16219 => (R => 0, G => 0, B => 0), 16220 => (R => 0, G => 0, B => 0), 16221 => (R => 0, G => 0, B => 0), 16222 => (R => 0, G => 0, B => 0), 16223 => (R => 0, G => 0, B => 0), 16224 => (R => 0, G => 0, B => 0), 16225 => (R => 0, G => 0, B => 0), 16226 => (R => 0, G => 0, B => 0), 16227 => (R => 0, G => 0, B => 0), 16228 => (R => 0, G => 0, B => 0), 16229 => (R => 0, G => 0, B => 0), 16230 => (R => 0, G => 0, B => 0), 16231 => (R => 0, G => 0, B => 0), 16232 => (R => 0, G => 0, B => 0), 16233 => (R => 0, G => 0, B => 0), 16234 => (R => 0, G => 0, B => 0), 16235 => (R => 0, G => 0, B => 0), 16236 => (R => 0, G => 0, B => 0), 16237 => (R => 0, G => 0, B => 0), 16238 => (R => 0, G => 0, B => 0), 16239 => (R => 0, G => 0, B => 0), 16240 => (R => 0, G => 0, B => 0), 16241 => (R => 0, G => 0, B => 0), 16242 => (R => 0, G => 0, B => 0), 16243 => (R => 0, G => 0, B => 0), 16244 => (R => 0, G => 0, B => 0), 16245 => (R => 0, G => 0, B => 0), 16246 => (R => 0, G => 0, B => 0), 16247 => (R => 0, G => 0, B => 0), 16248 => (R => 0, G => 0, B => 0), 16249 => (R => 0, G => 0, B => 0), 16250 => (R => 0, G => 0, B => 0), 16251 => (R => 0, G => 0, B => 0), 16252 => (R => 0, G => 0, B => 0), 16253 => (R => 0, G => 0, B => 0), 16254 => (R => 0, G => 0, B => 0), 16255 => (R => 0, G => 0, B => 0), 16256 => (R => 0, G => 0, B => 0), 16257 => (R => 0, G => 0, B => 0), 16258 => (R => 0, G => 0, B => 0), 16259 => (R => 0, G => 0, B => 0), 16260 => (R => 0, G => 0, B => 0), 16261 => (R => 0, G => 0, B => 0), 16262 => (R => 0, G => 0, B => 0), 16263 => (R => 0, G => 0, B => 0), 16264 => (R => 0, G => 0, B => 0), 16265 => (R => 0, G => 0, B => 0), 16266 => (R => 0, G => 0, B => 0), 16267 => (R => 0, G => 0, B => 0), 16268 => (R => 0, G => 0, B => 0), 16269 => (R => 0, G => 0, B => 0), 16270 => (R => 0, G => 0, B => 0), 16271 => (R => 0, G => 0, B => 0), 16272 => (R => 0, G => 0, B => 0), 16273 => (R => 0, G => 0, B => 0), 16274 => (R => 0, G => 0, B => 0), 16275 => (R => 0, G => 0, B => 0), 16276 => (R => 0, G => 0, B => 0), 16277 => (R => 0, G => 0, B => 0), 16278 => (R => 0, G => 0, B => 0), 16279 => (R => 0, G => 0, B => 0), 16280 => (R => 0, G => 0, B => 0), 16281 => (R => 0, G => 0, B => 0), 16282 => (R => 0, G => 0, B => 0), 16283 => (R => 255, G => 0, B => 0), 16284 => (R => 255, G => 0, B => 0), 16285 => (R => 255, G => 0, B => 0), 16286 => (R => 255, G => 0, B => 0), 16287 => (R => 255, G => 0, B => 0), 16288 => (R => 255, G => 0, B => 0), 16289 => (R => 255, G => 0, B => 0), 16290 => (R => 255, G => 0, B => 0), 16291 => (R => 255, G => 0, B => 0), 16292 => (R => 255, G => 0, B => 0), 16293 => (R => 255, G => 0, B => 0), 16294 => (R => 255, G => 0, B => 0), 16295 => (R => 255, G => 0, B => 0), 16296 => (R => 255, G => 0, B => 0), 16297 => (R => 255, G => 0, B => 0), 16298 => (R => 255, G => 0, B => 0), 16299 => (R => 255, G => 0, B => 0), 16300 => (R => 255, G => 0, B => 0), 16301 => (R => 255, G => 0, B => 0), 16302 => (R => 255, G => 0, B => 0), 16303 => (R => 255, G => 0, B => 0), 16304 => (R => 255, G => 0, B => 0), 16305 => (R => 255, G => 0, B => 0), 16306 => (R => 255, G => 0, B => 0), 16307 => (R => 255, G => 0, B => 0), 16308 => (R => 255, G => 0, B => 0), 16309 => (R => 255, G => 0, B => 0), 16310 => (R => 255, G => 0, B => 0), 16311 => (R => 255, G => 0, B => 0), 16312 => (R => 255, G => 0, B => 0), 16313 => (R => 255, G => 0, B => 0), 16314 => (R => 255, G => 0, B => 0), 16315 => (R => 255, G => 0, B => 0), 16316 => (R => 255, G => 0, B => 0), 16317 => (R => 255, G => 0, B => 0), 16318 => (R => 0, G => 0, B => 0), 16319 => (R => 0, G => 0, B => 0), 16320 => (R => 0, G => 0, B => 0), 16321 => (R => 0, G => 0, B => 0), 16322 => (R => 0, G => 0, B => 0), 16323 => (R => 0, G => 0, B => 0), 16324 => (R => 0, G => 0, B => 0), 16325 => (R => 0, G => 0, B => 0), 16326 => (R => 0, G => 0, B => 0), 16327 => (R => 0, G => 0, B => 0), 16328 => (R => 0, G => 0, B => 0), 16329 => (R => 0, G => 0, B => 0), 16330 => (R => 0, G => 0, B => 0), 16331 => (R => 0, G => 0, B => 0), 16332 => (R => 0, G => 0, B => 0), 16333 => (R => 0, G => 0, B => 0), 16334 => (R => 0, G => 0, B => 0), 16335 => (R => 0, G => 0, B => 0), 16336 => (R => 0, G => 0, B => 0), 16337 => (R => 0, G => 0, B => 0), 16338 => (R => 0, G => 0, B => 0), 16339 => (R => 0, G => 0, B => 0), 16340 => (R => 0, G => 0, B => 0), 16341 => (R => 0, G => 0, B => 0), 16342 => (R => 0, G => 0, B => 0), 16343 => (R => 0, G => 0, B => 0), 16344 => (R => 0, G => 0, B => 0), 16345 => (R => 0, G => 0, B => 0), 16346 => (R => 0, G => 0, B => 0), 16347 => (R => 0, G => 0, B => 0), 16348 => (R => 0, G => 0, B => 0), 16349 => (R => 0, G => 0, B => 0), 16350 => (R => 0, G => 0, B => 0), 16351 => (R => 0, G => 0, B => 0), 16352 => (R => 0, G => 0, B => 0), 16353 => (R => 0, G => 0, B => 0), 16354 => (R => 0, G => 0, B => 0), 16355 => (R => 0, G => 0, B => 0), 16356 => (R => 0, G => 0, B => 0), 16357 => (R => 0, G => 0, B => 0), 16358 => (R => 0, G => 0, B => 0), 16359 => (R => 0, G => 0, B => 0), 16360 => (R => 0, G => 0, B => 0), 16361 => (R => 0, G => 0, B => 0), 16362 => (R => 0, G => 0, B => 0), 16363 => (R => 0, G => 0, B => 0), 16364 => (R => 0, G => 0, B => 0), 16365 => (R => 0, G => 0, B => 0), 16366 => (R => 0, G => 0, B => 0), 16367 => (R => 0, G => 0, B => 0), 16368 => (R => 0, G => 0, B => 0), 16369 => (R => 0, G => 0, B => 0), 16370 => (R => 0, G => 0, B => 0), 16371 => (R => 0, G => 0, B => 0), 16372 => (R => 0, G => 0, B => 0), 16373 => (R => 0, G => 0, B => 0), 16374 => (R => 0, G => 0, B => 0), 16375 => (R => 0, G => 0, B => 0), 16376 => (R => 0, G => 0, B => 0), 16377 => (R => 0, G => 0, B => 0), 16378 => (R => 0, G => 0, B => 0), 16379 => (R => 0, G => 0, B => 0), 16380 => (R => 0, G => 0, B => 0), 16381 => (R => 0, G => 0, B => 0), 16382 => (R => 0, G => 0, B => 0), 16383 => (R => 0, G => 0, B => 0), 16384 => (R => 0, G => 0, B => 0), 16385 => (R => 0, G => 0, B => 0), 16386 => (R => 0, G => 0, B => 0), 16387 => (R => 0, G => 0, B => 0), 16388 => (R => 0, G => 0, B => 0), 16389 => (R => 0, G => 0, B => 0), 16390 => (R => 0, G => 0, B => 0), 16391 => (R => 0, G => 0, B => 0), 16392 => (R => 0, G => 0, B => 0), 16393 => (R => 0, G => 0, B => 0), 16394 => (R => 0, G => 0, B => 0), 16395 => (R => 0, G => 0, B => 0), 16396 => (R => 0, G => 0, B => 0), 16397 => (R => 0, G => 0, B => 0), 16398 => (R => 0, G => 0, B => 0), 16399 => (R => 0, G => 0, B => 0), 16400 => (R => 0, G => 0, B => 0), 16401 => (R => 0, G => 0, B => 0), 16402 => (R => 0, G => 0, B => 0), 16403 => (R => 0, G => 0, B => 0), 16404 => (R => 0, G => 0, B => 0), 16405 => (R => 0, G => 0, B => 0), 16406 => (R => 0, G => 0, B => 0), 16407 => (R => 0, G => 0, B => 0), 16408 => (R => 0, G => 0, B => 0), 16409 => (R => 0, G => 0, B => 0), 16410 => (R => 0, G => 0, B => 0), 16411 => (R => 0, G => 0, B => 0), 16412 => (R => 0, G => 0, B => 0), 16413 => (R => 0, G => 0, B => 0), 16414 => (R => 0, G => 0, B => 0), 16415 => (R => 0, G => 0, B => 0), 16416 => (R => 0, G => 0, B => 0), 16417 => (R => 0, G => 0, B => 0), 16418 => (R => 0, G => 0, B => 0), 16419 => (R => 0, G => 0, B => 0), 16420 => (R => 0, G => 0, B => 0), 16421 => (R => 0, G => 0, B => 0), 16422 => (R => 0, G => 0, B => 0), 16423 => (R => 0, G => 0, B => 0), 16424 => (R => 0, G => 0, B => 0), 16425 => (R => 0, G => 0, B => 0), 16426 => (R => 0, G => 0, B => 0), 16427 => (R => 0, G => 0, B => 0), 16428 => (R => 0, G => 0, B => 0), 16429 => (R => 0, G => 0, B => 0), 16430 => (R => 0, G => 0, B => 0), 16431 => (R => 0, G => 0, B => 0), 16432 => (R => 0, G => 0, B => 0), 16433 => (R => 0, G => 0, B => 0), 16434 => (R => 0, G => 0, B => 0), 16435 => (R => 0, G => 0, B => 0), 16436 => (R => 0, G => 0, B => 0), 16437 => (R => 0, G => 0, B => 0), 16438 => (R => 0, G => 0, B => 0), 16439 => (R => 0, G => 0, B => 0), 16440 => (R => 0, G => 0, B => 0), 16441 => (R => 0, G => 0, B => 0), 16442 => (R => 0, G => 0, B => 0), 16443 => (R => 0, G => 0, B => 0), 16444 => (R => 0, G => 0, B => 0), 16445 => (R => 0, G => 0, B => 0), 16446 => (R => 0, G => 0, B => 0), 16447 => (R => 0, G => 0, B => 0), 16448 => (R => 0, G => 0, B => 0), 16449 => (R => 0, G => 0, B => 0), 16450 => (R => 0, G => 0, B => 0), 16451 => (R => 0, G => 0, B => 0), 16452 => (R => 0, G => 0, B => 0), 16453 => (R => 0, G => 0, B => 0), 16454 => (R => 0, G => 0, B => 0), 16455 => (R => 0, G => 0, B => 0), 16456 => (R => 0, G => 0, B => 0), 16457 => (R => 0, G => 0, B => 0), 16458 => (R => 0, G => 0, B => 0), 16459 => (R => 0, G => 0, B => 0), 16460 => (R => 0, G => 0, B => 0), 16461 => (R => 0, G => 0, B => 0), 16462 => (R => 0, G => 0, B => 0), 16463 => (R => 0, G => 0, B => 0), 16464 => (R => 0, G => 0, B => 0), 16465 => (R => 0, G => 0, B => 0), 16466 => (R => 0, G => 0, B => 0), 16467 => (R => 0, G => 0, B => 0), 16468 => (R => 0, G => 0, B => 0), 16469 => (R => 0, G => 0, B => 0), 16470 => (R => 0, G => 0, B => 0), 16471 => (R => 0, G => 0, B => 0), 16472 => (R => 0, G => 0, B => 0), 16473 => (R => 0, G => 0, B => 0), 16474 => (R => 0, G => 0, B => 0), 16475 => (R => 0, G => 0, B => 0), 16476 => (R => 0, G => 0, B => 0), 16477 => (R => 0, G => 0, B => 0), 16478 => (R => 0, G => 0, B => 0), 16479 => (R => 0, G => 0, B => 0), 16480 => (R => 0, G => 0, B => 0), 16481 => (R => 0, G => 0, B => 0), 16482 => (R => 0, G => 0, B => 0), 16483 => (R => 0, G => 0, B => 0), 16484 => (R => 255, G => 0, B => 0), 16485 => (R => 255, G => 0, B => 0), 16486 => (R => 255, G => 0, B => 0), 16487 => (R => 255, G => 0, B => 0), 16488 => (R => 255, G => 0, B => 0), 16489 => (R => 255, G => 0, B => 0), 16490 => (R => 255, G => 0, B => 0), 16491 => (R => 255, G => 0, B => 0), 16492 => (R => 255, G => 0, B => 0), 16493 => (R => 255, G => 0, B => 0), 16494 => (R => 255, G => 0, B => 0), 16495 => (R => 255, G => 0, B => 0), 16496 => (R => 255, G => 0, B => 0), 16497 => (R => 255, G => 0, B => 0), 16498 => (R => 255, G => 0, B => 0), 16499 => (R => 255, G => 0, B => 0), 16500 => (R => 255, G => 0, B => 0), 16501 => (R => 255, G => 0, B => 0), 16502 => (R => 255, G => 0, B => 0), 16503 => (R => 255, G => 0, B => 0), 16504 => (R => 255, G => 0, B => 0), 16505 => (R => 255, G => 0, B => 0), 16506 => (R => 255, G => 0, B => 0), 16507 => (R => 255, G => 0, B => 0), 16508 => (R => 255, G => 0, B => 0), 16509 => (R => 255, G => 0, B => 0), 16510 => (R => 255, G => 0, B => 0), 16511 => (R => 255, G => 0, B => 0), 16512 => (R => 255, G => 0, B => 0), 16513 => (R => 255, G => 0, B => 0), 16514 => (R => 255, G => 0, B => 0), 16515 => (R => 255, G => 0, B => 0), 16516 => (R => 255, G => 0, B => 0), 16517 => (R => 0, G => 0, B => 0), 16518 => (R => 0, G => 0, B => 0), 16519 => (R => 0, G => 0, B => 0), 16520 => (R => 0, G => 0, B => 0), 16521 => (R => 0, G => 0, B => 0), 16522 => (R => 0, G => 0, B => 0), 16523 => (R => 0, G => 0, B => 0), 16524 => (R => 0, G => 0, B => 0), 16525 => (R => 0, G => 0, B => 0), 16526 => (R => 0, G => 0, B => 0), 16527 => (R => 0, G => 0, B => 0), 16528 => (R => 0, G => 0, B => 0), 16529 => (R => 0, G => 0, B => 0), 16530 => (R => 0, G => 0, B => 0), 16531 => (R => 0, G => 0, B => 0), 16532 => (R => 0, G => 0, B => 0), 16533 => (R => 0, G => 0, B => 0), 16534 => (R => 0, G => 0, B => 0), 16535 => (R => 0, G => 0, B => 0), 16536 => (R => 0, G => 0, B => 0), 16537 => (R => 0, G => 0, B => 0), 16538 => (R => 0, G => 0, B => 0), 16539 => (R => 0, G => 0, B => 0), 16540 => (R => 0, G => 0, B => 0), 16541 => (R => 0, G => 0, B => 0), 16542 => (R => 0, G => 0, B => 0), 16543 => (R => 0, G => 0, B => 0), 16544 => (R => 0, G => 0, B => 0), 16545 => (R => 0, G => 0, B => 0), 16546 => (R => 0, G => 0, B => 0), 16547 => (R => 0, G => 0, B => 0), 16548 => (R => 0, G => 0, B => 0), 16549 => (R => 0, G => 0, B => 0), 16550 => (R => 0, G => 0, B => 0), 16551 => (R => 0, G => 0, B => 0), 16552 => (R => 0, G => 0, B => 0), 16553 => (R => 0, G => 0, B => 0), 16554 => (R => 0, G => 0, B => 0), 16555 => (R => 0, G => 0, B => 0), 16556 => (R => 0, G => 0, B => 0), 16557 => (R => 0, G => 0, B => 0), 16558 => (R => 0, G => 0, B => 0), 16559 => (R => 0, G => 0, B => 0), 16560 => (R => 0, G => 0, B => 0), 16561 => (R => 0, G => 0, B => 0), 16562 => (R => 0, G => 0, B => 0), 16563 => (R => 0, G => 0, B => 0), 16564 => (R => 0, G => 0, B => 0), 16565 => (R => 0, G => 0, B => 0), 16566 => (R => 0, G => 0, B => 0), 16567 => (R => 0, G => 0, B => 0), 16568 => (R => 0, G => 0, B => 0), 16569 => (R => 0, G => 0, B => 0), 16570 => (R => 0, G => 0, B => 0), 16571 => (R => 0, G => 0, B => 0), 16572 => (R => 0, G => 0, B => 0), 16573 => (R => 0, G => 0, B => 0), 16574 => (R => 0, G => 0, B => 0), 16575 => (R => 0, G => 0, B => 0), 16576 => (R => 0, G => 0, B => 0), 16577 => (R => 0, G => 0, B => 0), 16578 => (R => 0, G => 0, B => 0), 16579 => (R => 0, G => 0, B => 0), 16580 => (R => 0, G => 0, B => 0), 16581 => (R => 0, G => 0, B => 0), 16582 => (R => 0, G => 0, B => 0), 16583 => (R => 0, G => 0, B => 0), 16584 => (R => 0, G => 0, B => 0), 16585 => (R => 0, G => 0, B => 0), 16586 => (R => 0, G => 0, B => 0), 16587 => (R => 0, G => 0, B => 0), 16588 => (R => 0, G => 0, B => 0), 16589 => (R => 0, G => 0, B => 0), 16590 => (R => 0, G => 0, B => 0), 16591 => (R => 0, G => 0, B => 0), 16592 => (R => 0, G => 0, B => 0), 16593 => (R => 0, G => 0, B => 0), 16594 => (R => 0, G => 0, B => 0), 16595 => (R => 0, G => 0, B => 0), 16596 => (R => 0, G => 0, B => 0), 16597 => (R => 0, G => 0, B => 0), 16598 => (R => 0, G => 0, B => 0), 16599 => (R => 0, G => 0, B => 0), 16600 => (R => 0, G => 0, B => 0), 16601 => (R => 0, G => 0, B => 0), 16602 => (R => 0, G => 0, B => 0), 16603 => (R => 0, G => 0, B => 0), 16604 => (R => 0, G => 0, B => 0), 16605 => (R => 0, G => 0, B => 0), 16606 => (R => 0, G => 0, B => 0), 16607 => (R => 0, G => 0, B => 0), 16608 => (R => 0, G => 0, B => 0), 16609 => (R => 0, G => 0, B => 0), 16610 => (R => 0, G => 0, B => 0), 16611 => (R => 0, G => 0, B => 0), 16612 => (R => 0, G => 0, B => 0), 16613 => (R => 0, G => 0, B => 0), 16614 => (R => 0, G => 0, B => 0), 16615 => (R => 0, G => 0, B => 0), 16616 => (R => 0, G => 0, B => 0), 16617 => (R => 0, G => 0, B => 0), 16618 => (R => 0, G => 0, B => 0), 16619 => (R => 0, G => 0, B => 0), 16620 => (R => 0, G => 0, B => 0), 16621 => (R => 0, G => 0, B => 0), 16622 => (R => 0, G => 0, B => 0), 16623 => (R => 0, G => 0, B => 0), 16624 => (R => 0, G => 0, B => 0), 16625 => (R => 0, G => 0, B => 0), 16626 => (R => 0, G => 0, B => 0), 16627 => (R => 0, G => 0, B => 0), 16628 => (R => 0, G => 0, B => 0), 16629 => (R => 0, G => 0, B => 0), 16630 => (R => 0, G => 0, B => 0), 16631 => (R => 0, G => 0, B => 0), 16632 => (R => 0, G => 0, B => 0), 16633 => (R => 0, G => 0, B => 0), 16634 => (R => 0, G => 0, B => 0), 16635 => (R => 0, G => 0, B => 0), 16636 => (R => 0, G => 0, B => 0), 16637 => (R => 0, G => 0, B => 0), 16638 => (R => 0, G => 0, B => 0), 16639 => (R => 0, G => 0, B => 0), 16640 => (R => 0, G => 0, B => 0), 16641 => (R => 0, G => 0, B => 0), 16642 => (R => 0, G => 0, B => 0), 16643 => (R => 0, G => 0, B => 0), 16644 => (R => 0, G => 0, B => 0), 16645 => (R => 0, G => 0, B => 0), 16646 => (R => 0, G => 0, B => 0), 16647 => (R => 0, G => 0, B => 0), 16648 => (R => 0, G => 0, B => 0), 16649 => (R => 0, G => 0, B => 0), 16650 => (R => 0, G => 0, B => 0), 16651 => (R => 0, G => 0, B => 0), 16652 => (R => 0, G => 0, B => 0), 16653 => (R => 0, G => 0, B => 0), 16654 => (R => 0, G => 0, B => 0), 16655 => (R => 0, G => 0, B => 0), 16656 => (R => 0, G => 0, B => 0), 16657 => (R => 0, G => 0, B => 0), 16658 => (R => 0, G => 0, B => 0), 16659 => (R => 0, G => 0, B => 0), 16660 => (R => 0, G => 0, B => 0), 16661 => (R => 0, G => 0, B => 0), 16662 => (R => 0, G => 0, B => 0), 16663 => (R => 0, G => 0, B => 0), 16664 => (R => 0, G => 0, B => 0), 16665 => (R => 0, G => 0, B => 0), 16666 => (R => 0, G => 0, B => 0), 16667 => (R => 0, G => 0, B => 0), 16668 => (R => 0, G => 0, B => 0), 16669 => (R => 0, G => 0, B => 0), 16670 => (R => 0, G => 0, B => 0), 16671 => (R => 0, G => 0, B => 0), 16672 => (R => 0, G => 0, B => 0), 16673 => (R => 0, G => 0, B => 0), 16674 => (R => 0, G => 0, B => 0), 16675 => (R => 0, G => 0, B => 0), 16676 => (R => 0, G => 0, B => 0), 16677 => (R => 0, G => 0, B => 0), 16678 => (R => 0, G => 0, B => 0), 16679 => (R => 0, G => 0, B => 0), 16680 => (R => 0, G => 0, B => 0), 16681 => (R => 0, G => 0, B => 0), 16682 => (R => 0, G => 0, B => 0), 16683 => (R => 0, G => 0, B => 0), 16684 => (R => 0, G => 0, B => 0), 16685 => (R => 255, G => 0, B => 0), 16686 => (R => 255, G => 0, B => 0), 16687 => (R => 255, G => 0, B => 0), 16688 => (R => 255, G => 0, B => 0), 16689 => (R => 255, G => 0, B => 0), 16690 => (R => 255, G => 0, B => 0), 16691 => (R => 255, G => 0, B => 0), 16692 => (R => 255, G => 0, B => 0), 16693 => (R => 255, G => 0, B => 0), 16694 => (R => 255, G => 0, B => 0), 16695 => (R => 255, G => 0, B => 0), 16696 => (R => 255, G => 0, B => 0), 16697 => (R => 255, G => 0, B => 0), 16698 => (R => 255, G => 0, B => 0), 16699 => (R => 255, G => 0, B => 0), 16700 => (R => 255, G => 0, B => 0), 16701 => (R => 255, G => 0, B => 0), 16702 => (R => 255, G => 0, B => 0), 16703 => (R => 255, G => 0, B => 0), 16704 => (R => 255, G => 0, B => 0), 16705 => (R => 255, G => 0, B => 0), 16706 => (R => 255, G => 0, B => 0), 16707 => (R => 255, G => 0, B => 0), 16708 => (R => 255, G => 0, B => 0), 16709 => (R => 255, G => 0, B => 0), 16710 => (R => 255, G => 0, B => 0), 16711 => (R => 255, G => 0, B => 0), 16712 => (R => 255, G => 0, B => 0), 16713 => (R => 255, G => 0, B => 0), 16714 => (R => 255, G => 0, B => 0), 16715 => (R => 255, G => 0, B => 0), 16716 => (R => 0, G => 0, B => 0), 16717 => (R => 0, G => 0, B => 0), 16718 => (R => 0, G => 0, B => 0), 16719 => (R => 0, G => 0, B => 0), 16720 => (R => 0, G => 0, B => 0), 16721 => (R => 0, G => 0, B => 0), 16722 => (R => 0, G => 0, B => 0), 16723 => (R => 0, G => 0, B => 0), 16724 => (R => 0, G => 0, B => 0), 16725 => (R => 0, G => 0, B => 0), 16726 => (R => 0, G => 0, B => 0), 16727 => (R => 0, G => 0, B => 0), 16728 => (R => 0, G => 0, B => 0), 16729 => (R => 0, G => 0, B => 0), 16730 => (R => 0, G => 0, B => 0), 16731 => (R => 0, G => 0, B => 0), 16732 => (R => 0, G => 0, B => 0), 16733 => (R => 0, G => 0, B => 0), 16734 => (R => 0, G => 0, B => 0), 16735 => (R => 0, G => 0, B => 0), 16736 => (R => 0, G => 0, B => 0), 16737 => (R => 0, G => 0, B => 0), 16738 => (R => 0, G => 0, B => 0), 16739 => (R => 0, G => 0, B => 0), 16740 => (R => 0, G => 0, B => 0), 16741 => (R => 0, G => 0, B => 0), 16742 => (R => 0, G => 0, B => 0), 16743 => (R => 0, G => 0, B => 0), 16744 => (R => 0, G => 0, B => 0), 16745 => (R => 0, G => 0, B => 0), 16746 => (R => 0, G => 0, B => 0), 16747 => (R => 0, G => 0, B => 0), 16748 => (R => 0, G => 0, B => 0), 16749 => (R => 0, G => 0, B => 0), 16750 => (R => 0, G => 0, B => 0), 16751 => (R => 0, G => 0, B => 0), 16752 => (R => 0, G => 0, B => 0), 16753 => (R => 0, G => 0, B => 0), 16754 => (R => 0, G => 0, B => 0), 16755 => (R => 0, G => 0, B => 0), 16756 => (R => 0, G => 0, B => 0), 16757 => (R => 0, G => 0, B => 0), 16758 => (R => 0, G => 0, B => 0), 16759 => (R => 0, G => 0, B => 0), 16760 => (R => 0, G => 0, B => 0), 16761 => (R => 0, G => 0, B => 0), 16762 => (R => 0, G => 0, B => 0), 16763 => (R => 0, G => 0, B => 0), 16764 => (R => 0, G => 0, B => 0), 16765 => (R => 0, G => 0, B => 0), 16766 => (R => 0, G => 0, B => 0), 16767 => (R => 0, G => 0, B => 0), 16768 => (R => 0, G => 0, B => 0), 16769 => (R => 0, G => 0, B => 0), 16770 => (R => 0, G => 0, B => 0), 16771 => (R => 0, G => 0, B => 0), 16772 => (R => 0, G => 0, B => 0), 16773 => (R => 0, G => 0, B => 0), 16774 => (R => 0, G => 0, B => 0), 16775 => (R => 0, G => 0, B => 0), 16776 => (R => 0, G => 0, B => 0), 16777 => (R => 0, G => 0, B => 0), 16778 => (R => 0, G => 0, B => 0), 16779 => (R => 0, G => 0, B => 0), 16780 => (R => 0, G => 0, B => 0), 16781 => (R => 0, G => 0, B => 0), 16782 => (R => 0, G => 0, B => 0), 16783 => (R => 0, G => 0, B => 0), 16784 => (R => 0, G => 0, B => 0), 16785 => (R => 0, G => 0, B => 0), 16786 => (R => 0, G => 0, B => 0), 16787 => (R => 0, G => 0, B => 0), 16788 => (R => 0, G => 0, B => 0), 16789 => (R => 0, G => 0, B => 0), 16790 => (R => 0, G => 0, B => 0), 16791 => (R => 0, G => 0, B => 0), 16792 => (R => 0, G => 0, B => 0), 16793 => (R => 0, G => 0, B => 0), 16794 => (R => 0, G => 0, B => 0), 16795 => (R => 0, G => 0, B => 0), 16796 => (R => 0, G => 0, B => 0), 16797 => (R => 0, G => 0, B => 0), 16798 => (R => 0, G => 0, B => 0), 16799 => (R => 0, G => 0, B => 0), 16800 => (R => 0, G => 0, B => 0), 16801 => (R => 0, G => 0, B => 0), 16802 => (R => 0, G => 0, B => 0), 16803 => (R => 0, G => 0, B => 0), 16804 => (R => 0, G => 0, B => 0), 16805 => (R => 0, G => 0, B => 0), 16806 => (R => 0, G => 0, B => 0), 16807 => (R => 0, G => 0, B => 0), 16808 => (R => 0, G => 0, B => 0), 16809 => (R => 0, G => 0, B => 0), 16810 => (R => 0, G => 0, B => 0), 16811 => (R => 0, G => 0, B => 0), 16812 => (R => 0, G => 0, B => 0), 16813 => (R => 0, G => 0, B => 0), 16814 => (R => 0, G => 0, B => 0), 16815 => (R => 0, G => 0, B => 0), 16816 => (R => 0, G => 0, B => 0), 16817 => (R => 0, G => 0, B => 0), 16818 => (R => 0, G => 0, B => 0), 16819 => (R => 0, G => 0, B => 0), 16820 => (R => 0, G => 0, B => 0), 16821 => (R => 0, G => 0, B => 0), 16822 => (R => 0, G => 0, B => 0), 16823 => (R => 0, G => 0, B => 0), 16824 => (R => 0, G => 0, B => 0), 16825 => (R => 0, G => 0, B => 0), 16826 => (R => 0, G => 0, B => 0), 16827 => (R => 0, G => 0, B => 0), 16828 => (R => 0, G => 0, B => 0), 16829 => (R => 0, G => 0, B => 0), 16830 => (R => 0, G => 0, B => 0), 16831 => (R => 0, G => 0, B => 0), 16832 => (R => 0, G => 0, B => 0), 16833 => (R => 0, G => 0, B => 0), 16834 => (R => 0, G => 0, B => 0), 16835 => (R => 0, G => 0, B => 0), 16836 => (R => 0, G => 0, B => 0), 16837 => (R => 0, G => 0, B => 0), 16838 => (R => 0, G => 0, B => 0), 16839 => (R => 0, G => 0, B => 0), 16840 => (R => 0, G => 0, B => 0), 16841 => (R => 0, G => 0, B => 0), 16842 => (R => 0, G => 0, B => 0), 16843 => (R => 0, G => 0, B => 0), 16844 => (R => 0, G => 0, B => 0), 16845 => (R => 0, G => 0, B => 0), 16846 => (R => 0, G => 0, B => 0), 16847 => (R => 0, G => 0, B => 0), 16848 => (R => 0, G => 0, B => 0), 16849 => (R => 0, G => 0, B => 0), 16850 => (R => 0, G => 0, B => 0), 16851 => (R => 0, G => 0, B => 0), 16852 => (R => 0, G => 0, B => 0), 16853 => (R => 0, G => 0, B => 0), 16854 => (R => 0, G => 0, B => 0), 16855 => (R => 0, G => 0, B => 0), 16856 => (R => 0, G => 0, B => 0), 16857 => (R => 0, G => 0, B => 0), 16858 => (R => 0, G => 0, B => 0), 16859 => (R => 0, G => 0, B => 0), 16860 => (R => 0, G => 0, B => 0), 16861 => (R => 0, G => 0, B => 0), 16862 => (R => 0, G => 0, B => 0), 16863 => (R => 0, G => 0, B => 0), 16864 => (R => 0, G => 0, B => 0), 16865 => (R => 0, G => 0, B => 0), 16866 => (R => 0, G => 0, B => 0), 16867 => (R => 0, G => 0, B => 0), 16868 => (R => 0, G => 0, B => 0), 16869 => (R => 0, G => 0, B => 0), 16870 => (R => 0, G => 0, B => 0), 16871 => (R => 0, G => 0, B => 0), 16872 => (R => 0, G => 0, B => 0), 16873 => (R => 0, G => 0, B => 0), 16874 => (R => 0, G => 0, B => 0), 16875 => (R => 0, G => 0, B => 0), 16876 => (R => 0, G => 0, B => 0), 16877 => (R => 0, G => 0, B => 0), 16878 => (R => 0, G => 0, B => 0), 16879 => (R => 0, G => 0, B => 0), 16880 => (R => 0, G => 0, B => 0), 16881 => (R => 0, G => 0, B => 0), 16882 => (R => 0, G => 0, B => 0), 16883 => (R => 0, G => 0, B => 0), 16884 => (R => 0, G => 0, B => 0), 16885 => (R => 0, G => 0, B => 0), 16886 => (R => 255, G => 0, B => 0), 16887 => (R => 255, G => 0, B => 0), 16888 => (R => 255, G => 0, B => 0), 16889 => (R => 255, G => 0, B => 0), 16890 => (R => 255, G => 0, B => 0), 16891 => (R => 255, G => 0, B => 0), 16892 => (R => 255, G => 0, B => 0), 16893 => (R => 255, G => 0, B => 0), 16894 => (R => 255, G => 0, B => 0), 16895 => (R => 255, G => 0, B => 0), 16896 => (R => 255, G => 0, B => 0), 16897 => (R => 255, G => 0, B => 0), 16898 => (R => 255, G => 0, B => 0), 16899 => (R => 255, G => 0, B => 0), 16900 => (R => 255, G => 0, B => 0), 16901 => (R => 255, G => 0, B => 0), 16902 => (R => 255, G => 0, B => 0), 16903 => (R => 255, G => 0, B => 0), 16904 => (R => 255, G => 0, B => 0), 16905 => (R => 255, G => 0, B => 0), 16906 => (R => 255, G => 0, B => 0), 16907 => (R => 255, G => 0, B => 0), 16908 => (R => 255, G => 0, B => 0), 16909 => (R => 255, G => 0, B => 0), 16910 => (R => 255, G => 0, B => 0), 16911 => (R => 255, G => 0, B => 0), 16912 => (R => 255, G => 0, B => 0), 16913 => (R => 255, G => 0, B => 0), 16914 => (R => 255, G => 0, B => 0), 16915 => (R => 0, G => 0, B => 0), 16916 => (R => 0, G => 0, B => 0), 16917 => (R => 0, G => 0, B => 0), 16918 => (R => 0, G => 0, B => 0), 16919 => (R => 0, G => 0, B => 0), 16920 => (R => 0, G => 0, B => 0), 16921 => (R => 0, G => 0, B => 0), 16922 => (R => 0, G => 0, B => 0), 16923 => (R => 0, G => 0, B => 0), 16924 => (R => 0, G => 0, B => 0), 16925 => (R => 0, G => 0, B => 0), 16926 => (R => 0, G => 0, B => 0), 16927 => (R => 0, G => 0, B => 0), 16928 => (R => 0, G => 0, B => 0), 16929 => (R => 0, G => 0, B => 0), 16930 => (R => 0, G => 0, B => 0), 16931 => (R => 0, G => 0, B => 0), 16932 => (R => 0, G => 0, B => 0), 16933 => (R => 0, G => 0, B => 0), 16934 => (R => 0, G => 0, B => 0), 16935 => (R => 0, G => 0, B => 0), 16936 => (R => 0, G => 0, B => 0), 16937 => (R => 0, G => 0, B => 0), 16938 => (R => 0, G => 0, B => 0), 16939 => (R => 0, G => 0, B => 0), 16940 => (R => 0, G => 0, B => 0), 16941 => (R => 0, G => 0, B => 0), 16942 => (R => 0, G => 0, B => 0), 16943 => (R => 0, G => 0, B => 0), 16944 => (R => 0, G => 0, B => 0), 16945 => (R => 0, G => 0, B => 0), 16946 => (R => 0, G => 0, B => 0), 16947 => (R => 0, G => 0, B => 0), 16948 => (R => 0, G => 0, B => 0), 16949 => (R => 0, G => 0, B => 0), 16950 => (R => 0, G => 0, B => 0), 16951 => (R => 0, G => 0, B => 0), 16952 => (R => 0, G => 0, B => 0), 16953 => (R => 0, G => 0, B => 0), 16954 => (R => 0, G => 0, B => 0), 16955 => (R => 0, G => 0, B => 0), 16956 => (R => 0, G => 0, B => 0), 16957 => (R => 0, G => 0, B => 0), 16958 => (R => 0, G => 0, B => 0), 16959 => (R => 0, G => 0, B => 0), 16960 => (R => 0, G => 0, B => 0), 16961 => (R => 0, G => 0, B => 0), 16962 => (R => 0, G => 0, B => 0), 16963 => (R => 0, G => 0, B => 0), 16964 => (R => 0, G => 0, B => 0), 16965 => (R => 0, G => 0, B => 0), 16966 => (R => 0, G => 0, B => 0), 16967 => (R => 0, G => 0, B => 0), 16968 => (R => 0, G => 0, B => 0), 16969 => (R => 0, G => 0, B => 0), 16970 => (R => 0, G => 0, B => 0), 16971 => (R => 0, G => 0, B => 0), 16972 => (R => 0, G => 0, B => 0), 16973 => (R => 0, G => 0, B => 0), 16974 => (R => 0, G => 0, B => 0), 16975 => (R => 0, G => 0, B => 0), 16976 => (R => 0, G => 0, B => 0), 16977 => (R => 0, G => 0, B => 0), 16978 => (R => 0, G => 0, B => 0), 16979 => (R => 0, G => 0, B => 0), 16980 => (R => 0, G => 0, B => 0), 16981 => (R => 0, G => 0, B => 0), 16982 => (R => 0, G => 0, B => 0), 16983 => (R => 0, G => 0, B => 0), 16984 => (R => 0, G => 0, B => 0), 16985 => (R => 0, G => 0, B => 0), 16986 => (R => 0, G => 0, B => 0), 16987 => (R => 0, G => 0, B => 0), 16988 => (R => 0, G => 0, B => 0), 16989 => (R => 0, G => 0, B => 0), 16990 => (R => 0, G => 0, B => 0), 16991 => (R => 0, G => 0, B => 0), 16992 => (R => 0, G => 0, B => 0), 16993 => (R => 0, G => 0, B => 0), 16994 => (R => 0, G => 0, B => 0), 16995 => (R => 0, G => 0, B => 0), 16996 => (R => 0, G => 0, B => 0), 16997 => (R => 0, G => 0, B => 0), 16998 => (R => 0, G => 0, B => 0), 16999 => (R => 0, G => 0, B => 0), 17000 => (R => 0, G => 0, B => 0), 17001 => (R => 0, G => 0, B => 0), 17002 => (R => 0, G => 0, B => 0), 17003 => (R => 0, G => 0, B => 0), 17004 => (R => 0, G => 0, B => 0), 17005 => (R => 0, G => 0, B => 0), 17006 => (R => 0, G => 0, B => 0), 17007 => (R => 0, G => 0, B => 0), 17008 => (R => 0, G => 0, B => 0), 17009 => (R => 0, G => 0, B => 0), 17010 => (R => 0, G => 0, B => 0), 17011 => (R => 0, G => 0, B => 0), 17012 => (R => 0, G => 0, B => 0), 17013 => (R => 0, G => 0, B => 0), 17014 => (R => 0, G => 0, B => 0), 17015 => (R => 0, G => 0, B => 0), 17016 => (R => 0, G => 0, B => 0), 17017 => (R => 0, G => 0, B => 0), 17018 => (R => 0, G => 0, B => 0), 17019 => (R => 0, G => 0, B => 0), 17020 => (R => 0, G => 0, B => 0), 17021 => (R => 0, G => 0, B => 0), 17022 => (R => 0, G => 0, B => 0), 17023 => (R => 0, G => 0, B => 0), 17024 => (R => 0, G => 0, B => 0), 17025 => (R => 0, G => 0, B => 0), 17026 => (R => 0, G => 0, B => 0), 17027 => (R => 0, G => 0, B => 0), 17028 => (R => 0, G => 0, B => 0), 17029 => (R => 0, G => 0, B => 0), 17030 => (R => 0, G => 0, B => 0), 17031 => (R => 0, G => 0, B => 0), 17032 => (R => 0, G => 0, B => 0), 17033 => (R => 0, G => 0, B => 0), 17034 => (R => 0, G => 0, B => 0), 17035 => (R => 0, G => 0, B => 0), 17036 => (R => 0, G => 0, B => 0), 17037 => (R => 0, G => 0, B => 0), 17038 => (R => 0, G => 0, B => 0), 17039 => (R => 0, G => 0, B => 0), 17040 => (R => 0, G => 0, B => 0), 17041 => (R => 0, G => 0, B => 0), 17042 => (R => 0, G => 0, B => 0), 17043 => (R => 0, G => 0, B => 0), 17044 => (R => 0, G => 0, B => 0), 17045 => (R => 0, G => 0, B => 0), 17046 => (R => 0, G => 0, B => 0), 17047 => (R => 0, G => 0, B => 0), 17048 => (R => 0, G => 0, B => 0), 17049 => (R => 0, G => 0, B => 0), 17050 => (R => 0, G => 0, B => 0), 17051 => (R => 0, G => 0, B => 0), 17052 => (R => 0, G => 0, B => 0), 17053 => (R => 0, G => 0, B => 0), 17054 => (R => 0, G => 0, B => 0), 17055 => (R => 0, G => 0, B => 0), 17056 => (R => 0, G => 0, B => 0), 17057 => (R => 0, G => 0, B => 0), 17058 => (R => 0, G => 0, B => 0), 17059 => (R => 0, G => 0, B => 0), 17060 => (R => 0, G => 0, B => 0), 17061 => (R => 0, G => 0, B => 0), 17062 => (R => 0, G => 0, B => 0), 17063 => (R => 0, G => 0, B => 0), 17064 => (R => 0, G => 0, B => 0), 17065 => (R => 0, G => 0, B => 0), 17066 => (R => 0, G => 0, B => 0), 17067 => (R => 0, G => 0, B => 0), 17068 => (R => 0, G => 0, B => 0), 17069 => (R => 0, G => 0, B => 0), 17070 => (R => 0, G => 0, B => 0), 17071 => (R => 0, G => 0, B => 0), 17072 => (R => 0, G => 0, B => 0), 17073 => (R => 0, G => 0, B => 0), 17074 => (R => 0, G => 0, B => 0), 17075 => (R => 0, G => 0, B => 0), 17076 => (R => 0, G => 0, B => 0), 17077 => (R => 0, G => 0, B => 0), 17078 => (R => 0, G => 0, B => 0), 17079 => (R => 0, G => 0, B => 0), 17080 => (R => 0, G => 0, B => 0), 17081 => (R => 0, G => 0, B => 0), 17082 => (R => 0, G => 0, B => 0), 17083 => (R => 0, G => 0, B => 0), 17084 => (R => 0, G => 0, B => 0), 17085 => (R => 0, G => 0, B => 0), 17086 => (R => 0, G => 0, B => 0), 17087 => (R => 255, G => 0, B => 0), 17088 => (R => 255, G => 0, B => 0), 17089 => (R => 255, G => 0, B => 0), 17090 => (R => 255, G => 0, B => 0), 17091 => (R => 255, G => 0, B => 0), 17092 => (R => 255, G => 0, B => 0), 17093 => (R => 255, G => 0, B => 0), 17094 => (R => 255, G => 0, B => 0), 17095 => (R => 255, G => 0, B => 0), 17096 => (R => 255, G => 0, B => 0), 17097 => (R => 255, G => 0, B => 0), 17098 => (R => 255, G => 0, B => 0), 17099 => (R => 255, G => 0, B => 0), 17100 => (R => 255, G => 0, B => 0), 17101 => (R => 255, G => 0, B => 0), 17102 => (R => 255, G => 0, B => 0), 17103 => (R => 255, G => 0, B => 0), 17104 => (R => 255, G => 0, B => 0), 17105 => (R => 255, G => 0, B => 0), 17106 => (R => 255, G => 0, B => 0), 17107 => (R => 255, G => 0, B => 0), 17108 => (R => 255, G => 0, B => 0), 17109 => (R => 255, G => 0, B => 0), 17110 => (R => 255, G => 0, B => 0), 17111 => (R => 255, G => 0, B => 0), 17112 => (R => 255, G => 0, B => 0), 17113 => (R => 255, G => 0, B => 0), 17114 => (R => 0, G => 0, B => 0), 17115 => (R => 0, G => 0, B => 0), 17116 => (R => 0, G => 0, B => 0), 17117 => (R => 0, G => 0, B => 0), 17118 => (R => 0, G => 0, B => 0), 17119 => (R => 0, G => 0, B => 0), 17120 => (R => 0, G => 0, B => 0), 17121 => (R => 0, G => 0, B => 0), 17122 => (R => 0, G => 0, B => 0), 17123 => (R => 0, G => 0, B => 0), 17124 => (R => 0, G => 0, B => 0), 17125 => (R => 0, G => 0, B => 0), 17126 => (R => 0, G => 0, B => 0), 17127 => (R => 0, G => 0, B => 0), 17128 => (R => 0, G => 0, B => 0), 17129 => (R => 0, G => 0, B => 0), 17130 => (R => 0, G => 0, B => 0), 17131 => (R => 0, G => 0, B => 0), 17132 => (R => 0, G => 0, B => 0), 17133 => (R => 0, G => 0, B => 0), 17134 => (R => 0, G => 0, B => 0), 17135 => (R => 0, G => 0, B => 0), 17136 => (R => 0, G => 0, B => 0), 17137 => (R => 0, G => 0, B => 0), 17138 => (R => 0, G => 0, B => 0), 17139 => (R => 0, G => 0, B => 0), 17140 => (R => 0, G => 0, B => 0), 17141 => (R => 0, G => 0, B => 0), 17142 => (R => 0, G => 0, B => 0), 17143 => (R => 0, G => 0, B => 0), 17144 => (R => 0, G => 0, B => 0), 17145 => (R => 0, G => 0, B => 0), 17146 => (R => 0, G => 0, B => 0), 17147 => (R => 0, G => 0, B => 0), 17148 => (R => 0, G => 0, B => 0), 17149 => (R => 0, G => 0, B => 0), 17150 => (R => 0, G => 0, B => 0), 17151 => (R => 0, G => 0, B => 0), 17152 => (R => 0, G => 0, B => 0), 17153 => (R => 0, G => 0, B => 0), 17154 => (R => 0, G => 0, B => 0), 17155 => (R => 0, G => 0, B => 0), 17156 => (R => 0, G => 0, B => 0), 17157 => (R => 0, G => 0, B => 0), 17158 => (R => 0, G => 0, B => 0), 17159 => (R => 0, G => 0, B => 0), 17160 => (R => 0, G => 0, B => 0), 17161 => (R => 0, G => 0, B => 0), 17162 => (R => 0, G => 0, B => 0), 17163 => (R => 0, G => 0, B => 0), 17164 => (R => 0, G => 0, B => 0), 17165 => (R => 0, G => 0, B => 0), 17166 => (R => 0, G => 0, B => 0), 17167 => (R => 0, G => 0, B => 0), 17168 => (R => 0, G => 0, B => 0), 17169 => (R => 0, G => 0, B => 0), 17170 => (R => 0, G => 0, B => 0), 17171 => (R => 0, G => 0, B => 0), 17172 => (R => 0, G => 0, B => 0), 17173 => (R => 0, G => 0, B => 0), 17174 => (R => 0, G => 0, B => 0), 17175 => (R => 0, G => 0, B => 0), 17176 => (R => 0, G => 0, B => 0), 17177 => (R => 0, G => 0, B => 0), 17178 => (R => 0, G => 0, B => 0), 17179 => (R => 0, G => 0, B => 0), 17180 => (R => 0, G => 0, B => 0), 17181 => (R => 0, G => 0, B => 0), 17182 => (R => 0, G => 0, B => 0), 17183 => (R => 0, G => 0, B => 0), 17184 => (R => 0, G => 0, B => 0), 17185 => (R => 0, G => 0, B => 0), 17186 => (R => 0, G => 0, B => 0), 17187 => (R => 0, G => 0, B => 0), 17188 => (R => 0, G => 0, B => 0), 17189 => (R => 0, G => 0, B => 0), 17190 => (R => 0, G => 0, B => 0), 17191 => (R => 0, G => 0, B => 0), 17192 => (R => 0, G => 0, B => 0), 17193 => (R => 0, G => 0, B => 0), 17194 => (R => 0, G => 0, B => 0), 17195 => (R => 0, G => 0, B => 0), 17196 => (R => 0, G => 0, B => 0), 17197 => (R => 0, G => 0, B => 0), 17198 => (R => 0, G => 0, B => 0), 17199 => (R => 0, G => 0, B => 0), 17200 => (R => 0, G => 0, B => 0), 17201 => (R => 0, G => 0, B => 0), 17202 => (R => 0, G => 0, B => 0), 17203 => (R => 0, G => 0, B => 0), 17204 => (R => 0, G => 0, B => 0), 17205 => (R => 0, G => 0, B => 0), 17206 => (R => 0, G => 0, B => 0), 17207 => (R => 0, G => 0, B => 0), 17208 => (R => 0, G => 0, B => 0), 17209 => (R => 0, G => 0, B => 0), 17210 => (R => 0, G => 0, B => 0), 17211 => (R => 0, G => 0, B => 0), 17212 => (R => 0, G => 0, B => 0), 17213 => (R => 0, G => 0, B => 0), 17214 => (R => 0, G => 0, B => 0), 17215 => (R => 0, G => 0, B => 0), 17216 => (R => 0, G => 0, B => 0), 17217 => (R => 0, G => 0, B => 0), 17218 => (R => 0, G => 0, B => 0), 17219 => (R => 0, G => 0, B => 0), 17220 => (R => 0, G => 0, B => 0), 17221 => (R => 0, G => 0, B => 0), 17222 => (R => 0, G => 0, B => 0), 17223 => (R => 0, G => 0, B => 0), 17224 => (R => 0, G => 0, B => 0), 17225 => (R => 0, G => 0, B => 0), 17226 => (R => 0, G => 0, B => 0), 17227 => (R => 0, G => 0, B => 0), 17228 => (R => 0, G => 0, B => 0), 17229 => (R => 0, G => 0, B => 0), 17230 => (R => 0, G => 0, B => 0), 17231 => (R => 0, G => 0, B => 0), 17232 => (R => 0, G => 0, B => 0), 17233 => (R => 0, G => 0, B => 0), 17234 => (R => 0, G => 0, B => 0), 17235 => (R => 0, G => 0, B => 0), 17236 => (R => 0, G => 0, B => 0), 17237 => (R => 0, G => 0, B => 0), 17238 => (R => 0, G => 0, B => 0), 17239 => (R => 0, G => 0, B => 0), 17240 => (R => 0, G => 0, B => 0), 17241 => (R => 0, G => 0, B => 0), 17242 => (R => 0, G => 0, B => 0), 17243 => (R => 0, G => 0, B => 0), 17244 => (R => 0, G => 0, B => 0), 17245 => (R => 0, G => 0, B => 0), 17246 => (R => 0, G => 0, B => 0), 17247 => (R => 0, G => 0, B => 0), 17248 => (R => 0, G => 0, B => 0), 17249 => (R => 0, G => 0, B => 0), 17250 => (R => 0, G => 0, B => 0), 17251 => (R => 0, G => 0, B => 0), 17252 => (R => 0, G => 0, B => 0), 17253 => (R => 0, G => 0, B => 0), 17254 => (R => 0, G => 0, B => 0), 17255 => (R => 0, G => 0, B => 0), 17256 => (R => 0, G => 0, B => 0), 17257 => (R => 0, G => 0, B => 0), 17258 => (R => 0, G => 0, B => 0), 17259 => (R => 0, G => 0, B => 0), 17260 => (R => 0, G => 0, B => 0), 17261 => (R => 0, G => 0, B => 0), 17262 => (R => 0, G => 0, B => 0), 17263 => (R => 0, G => 0, B => 0), 17264 => (R => 0, G => 0, B => 0), 17265 => (R => 0, G => 0, B => 0), 17266 => (R => 0, G => 0, B => 0), 17267 => (R => 0, G => 0, B => 0), 17268 => (R => 0, G => 0, B => 0), 17269 => (R => 0, G => 0, B => 0), 17270 => (R => 0, G => 0, B => 0), 17271 => (R => 0, G => 0, B => 0), 17272 => (R => 0, G => 0, B => 0), 17273 => (R => 0, G => 0, B => 0), 17274 => (R => 0, G => 0, B => 0), 17275 => (R => 0, G => 0, B => 0), 17276 => (R => 0, G => 0, B => 0), 17277 => (R => 0, G => 0, B => 0), 17278 => (R => 0, G => 0, B => 0), 17279 => (R => 0, G => 0, B => 0), 17280 => (R => 0, G => 0, B => 0), 17281 => (R => 0, G => 0, B => 0), 17282 => (R => 0, G => 0, B => 0), 17283 => (R => 0, G => 0, B => 0), 17284 => (R => 0, G => 0, B => 0), 17285 => (R => 0, G => 0, B => 0), 17286 => (R => 0, G => 0, B => 0), 17287 => (R => 0, G => 0, B => 0), 17288 => (R => 0, G => 0, B => 0), 17289 => (R => 255, G => 0, B => 0), 17290 => (R => 255, G => 0, B => 0), 17291 => (R => 255, G => 0, B => 0), 17292 => (R => 255, G => 0, B => 0), 17293 => (R => 255, G => 0, B => 0), 17294 => (R => 255, G => 0, B => 0), 17295 => (R => 255, G => 0, B => 0), 17296 => (R => 255, G => 0, B => 0), 17297 => (R => 255, G => 0, B => 0), 17298 => (R => 255, G => 0, B => 0), 17299 => (R => 255, G => 0, B => 0), 17300 => (R => 255, G => 0, B => 0), 17301 => (R => 255, G => 0, B => 0), 17302 => (R => 255, G => 0, B => 0), 17303 => (R => 255, G => 0, B => 0), 17304 => (R => 255, G => 0, B => 0), 17305 => (R => 255, G => 0, B => 0), 17306 => (R => 255, G => 0, B => 0), 17307 => (R => 255, G => 0, B => 0), 17308 => (R => 255, G => 0, B => 0), 17309 => (R => 255, G => 0, B => 0), 17310 => (R => 255, G => 0, B => 0), 17311 => (R => 255, G => 0, B => 0), 17312 => (R => 0, G => 0, B => 0), 17313 => (R => 0, G => 0, B => 0), 17314 => (R => 0, G => 0, B => 0), 17315 => (R => 0, G => 0, B => 0), 17316 => (R => 0, G => 0, B => 0), 17317 => (R => 0, G => 0, B => 0), 17318 => (R => 0, G => 0, B => 0), 17319 => (R => 0, G => 0, B => 0), 17320 => (R => 0, G => 0, B => 0), 17321 => (R => 0, G => 0, B => 0), 17322 => (R => 0, G => 0, B => 0), 17323 => (R => 0, G => 0, B => 0), 17324 => (R => 0, G => 0, B => 0), 17325 => (R => 0, G => 0, B => 0), 17326 => (R => 0, G => 0, B => 0), 17327 => (R => 0, G => 0, B => 0), 17328 => (R => 0, G => 0, B => 0), 17329 => (R => 0, G => 0, B => 0), 17330 => (R => 0, G => 0, B => 0), 17331 => (R => 0, G => 0, B => 0), 17332 => (R => 0, G => 0, B => 0), 17333 => (R => 0, G => 0, B => 0), 17334 => (R => 0, G => 0, B => 0), 17335 => (R => 0, G => 0, B => 0), 17336 => (R => 0, G => 0, B => 0), 17337 => (R => 0, G => 0, B => 0), 17338 => (R => 0, G => 0, B => 0), 17339 => (R => 0, G => 0, B => 0), 17340 => (R => 0, G => 0, B => 0), 17341 => (R => 0, G => 0, B => 0), 17342 => (R => 0, G => 0, B => 0), 17343 => (R => 0, G => 0, B => 0), 17344 => (R => 0, G => 0, B => 0), 17345 => (R => 0, G => 0, B => 0), 17346 => (R => 0, G => 0, B => 0), 17347 => (R => 0, G => 0, B => 0), 17348 => (R => 0, G => 0, B => 0), 17349 => (R => 0, G => 0, B => 0), 17350 => (R => 0, G => 0, B => 0), 17351 => (R => 0, G => 0, B => 0), 17352 => (R => 0, G => 0, B => 0), 17353 => (R => 0, G => 0, B => 0), 17354 => (R => 0, G => 0, B => 0), 17355 => (R => 0, G => 0, B => 0), 17356 => (R => 0, G => 0, B => 0), 17357 => (R => 0, G => 0, B => 0), 17358 => (R => 0, G => 0, B => 0), 17359 => (R => 0, G => 0, B => 0), 17360 => (R => 0, G => 0, B => 0), 17361 => (R => 0, G => 0, B => 0), 17362 => (R => 0, G => 0, B => 0), 17363 => (R => 0, G => 0, B => 0), 17364 => (R => 0, G => 0, B => 0), 17365 => (R => 0, G => 0, B => 0), 17366 => (R => 0, G => 0, B => 0), 17367 => (R => 0, G => 0, B => 0), 17368 => (R => 0, G => 0, B => 0), 17369 => (R => 0, G => 0, B => 0), 17370 => (R => 0, G => 0, B => 0), 17371 => (R => 0, G => 0, B => 0), 17372 => (R => 0, G => 0, B => 0), 17373 => (R => 0, G => 0, B => 0), 17374 => (R => 0, G => 0, B => 0), 17375 => (R => 0, G => 0, B => 0), 17376 => (R => 0, G => 0, B => 0), 17377 => (R => 0, G => 0, B => 0), 17378 => (R => 0, G => 0, B => 0), 17379 => (R => 0, G => 0, B => 0), 17380 => (R => 0, G => 0, B => 0), 17381 => (R => 0, G => 0, B => 0), 17382 => (R => 0, G => 0, B => 0), 17383 => (R => 0, G => 0, B => 0), 17384 => (R => 0, G => 0, B => 0), 17385 => (R => 0, G => 0, B => 0), 17386 => (R => 0, G => 0, B => 0), 17387 => (R => 0, G => 0, B => 0), 17388 => (R => 0, G => 0, B => 0), 17389 => (R => 0, G => 0, B => 0), 17390 => (R => 0, G => 0, B => 0), 17391 => (R => 0, G => 0, B => 0), 17392 => (R => 0, G => 0, B => 0), 17393 => (R => 0, G => 0, B => 0), 17394 => (R => 0, G => 0, B => 0), 17395 => (R => 0, G => 0, B => 0), 17396 => (R => 0, G => 0, B => 0), 17397 => (R => 0, G => 0, B => 0), 17398 => (R => 0, G => 0, B => 0), 17399 => (R => 0, G => 0, B => 0), 17400 => (R => 0, G => 0, B => 0), 17401 => (R => 0, G => 0, B => 0), 17402 => (R => 0, G => 0, B => 0), 17403 => (R => 0, G => 0, B => 0), 17404 => (R => 0, G => 0, B => 0), 17405 => (R => 0, G => 0, B => 0), 17406 => (R => 0, G => 0, B => 0), 17407 => (R => 0, G => 0, B => 0), 17408 => (R => 0, G => 0, B => 0), 17409 => (R => 0, G => 0, B => 0), 17410 => (R => 0, G => 0, B => 0), 17411 => (R => 0, G => 0, B => 0), 17412 => (R => 0, G => 0, B => 0), 17413 => (R => 0, G => 0, B => 0), 17414 => (R => 0, G => 0, B => 0), 17415 => (R => 0, G => 0, B => 0), 17416 => (R => 0, G => 0, B => 0), 17417 => (R => 0, G => 0, B => 0), 17418 => (R => 0, G => 0, B => 0), 17419 => (R => 0, G => 0, B => 0), 17420 => (R => 0, G => 0, B => 0), 17421 => (R => 0, G => 0, B => 0), 17422 => (R => 0, G => 0, B => 0), 17423 => (R => 0, G => 0, B => 0), 17424 => (R => 0, G => 0, B => 0), 17425 => (R => 0, G => 0, B => 0), 17426 => (R => 0, G => 0, B => 0), 17427 => (R => 0, G => 0, B => 0), 17428 => (R => 0, G => 0, B => 0), 17429 => (R => 0, G => 0, B => 0), 17430 => (R => 0, G => 0, B => 0), 17431 => (R => 0, G => 0, B => 0), 17432 => (R => 0, G => 0, B => 0), 17433 => (R => 0, G => 0, B => 0), 17434 => (R => 0, G => 0, B => 0), 17435 => (R => 0, G => 0, B => 0), 17436 => (R => 0, G => 0, B => 0), 17437 => (R => 0, G => 0, B => 0), 17438 => (R => 0, G => 0, B => 0), 17439 => (R => 0, G => 0, B => 0), 17440 => (R => 0, G => 0, B => 0), 17441 => (R => 0, G => 0, B => 0), 17442 => (R => 0, G => 0, B => 0), 17443 => (R => 0, G => 0, B => 0), 17444 => (R => 0, G => 0, B => 0), 17445 => (R => 0, G => 0, B => 0), 17446 => (R => 0, G => 0, B => 0), 17447 => (R => 0, G => 0, B => 0), 17448 => (R => 0, G => 0, B => 0), 17449 => (R => 0, G => 0, B => 0), 17450 => (R => 0, G => 0, B => 0), 17451 => (R => 0, G => 0, B => 0), 17452 => (R => 0, G => 0, B => 0), 17453 => (R => 0, G => 0, B => 0), 17454 => (R => 0, G => 0, B => 0), 17455 => (R => 0, G => 0, B => 0), 17456 => (R => 0, G => 0, B => 0), 17457 => (R => 0, G => 0, B => 0), 17458 => (R => 0, G => 0, B => 0), 17459 => (R => 0, G => 0, B => 0), 17460 => (R => 0, G => 0, B => 0), 17461 => (R => 0, G => 0, B => 0), 17462 => (R => 0, G => 0, B => 0), 17463 => (R => 0, G => 0, B => 0), 17464 => (R => 0, G => 0, B => 0), 17465 => (R => 0, G => 0, B => 0), 17466 => (R => 0, G => 0, B => 0), 17467 => (R => 0, G => 0, B => 0), 17468 => (R => 0, G => 0, B => 0), 17469 => (R => 0, G => 0, B => 0), 17470 => (R => 0, G => 0, B => 0), 17471 => (R => 0, G => 0, B => 0), 17472 => (R => 0, G => 0, B => 0), 17473 => (R => 0, G => 0, B => 0), 17474 => (R => 0, G => 0, B => 0), 17475 => (R => 0, G => 0, B => 0), 17476 => (R => 0, G => 0, B => 0), 17477 => (R => 0, G => 0, B => 0), 17478 => (R => 0, G => 0, B => 0), 17479 => (R => 0, G => 0, B => 0), 17480 => (R => 0, G => 0, B => 0), 17481 => (R => 0, G => 0, B => 0), 17482 => (R => 0, G => 0, B => 0), 17483 => (R => 0, G => 0, B => 0), 17484 => (R => 0, G => 0, B => 0), 17485 => (R => 0, G => 0, B => 0), 17486 => (R => 0, G => 0, B => 0), 17487 => (R => 0, G => 0, B => 0), 17488 => (R => 0, G => 0, B => 0), 17489 => (R => 0, G => 0, B => 0), 17490 => (R => 255, G => 0, B => 0), 17491 => (R => 255, G => 0, B => 0), 17492 => (R => 255, G => 0, B => 0), 17493 => (R => 255, G => 0, B => 0), 17494 => (R => 255, G => 0, B => 0), 17495 => (R => 255, G => 0, B => 0), 17496 => (R => 255, G => 0, B => 0), 17497 => (R => 255, G => 0, B => 0), 17498 => (R => 255, G => 0, B => 0), 17499 => (R => 255, G => 0, B => 0), 17500 => (R => 255, G => 0, B => 0), 17501 => (R => 255, G => 0, B => 0), 17502 => (R => 255, G => 0, B => 0), 17503 => (R => 255, G => 0, B => 0), 17504 => (R => 255, G => 0, B => 0), 17505 => (R => 255, G => 0, B => 0), 17506 => (R => 255, G => 0, B => 0), 17507 => (R => 255, G => 0, B => 0), 17508 => (R => 255, G => 0, B => 0), 17509 => (R => 255, G => 0, B => 0), 17510 => (R => 255, G => 0, B => 0), 17511 => (R => 0, G => 0, B => 0), 17512 => (R => 0, G => 0, B => 0), 17513 => (R => 0, G => 0, B => 0), 17514 => (R => 0, G => 0, B => 0), 17515 => (R => 0, G => 0, B => 0), 17516 => (R => 0, G => 0, B => 0), 17517 => (R => 0, G => 0, B => 0), 17518 => (R => 0, G => 0, B => 0), 17519 => (R => 0, G => 0, B => 0), 17520 => (R => 0, G => 0, B => 0), 17521 => (R => 0, G => 0, B => 0), 17522 => (R => 0, G => 0, B => 0), 17523 => (R => 0, G => 0, B => 0), 17524 => (R => 0, G => 0, B => 0), 17525 => (R => 0, G => 0, B => 0), 17526 => (R => 0, G => 0, B => 0), 17527 => (R => 0, G => 0, B => 0), 17528 => (R => 0, G => 0, B => 0), 17529 => (R => 0, G => 0, B => 0), 17530 => (R => 0, G => 0, B => 0), 17531 => (R => 0, G => 0, B => 0), 17532 => (R => 0, G => 0, B => 0), 17533 => (R => 0, G => 0, B => 0), 17534 => (R => 0, G => 0, B => 0), 17535 => (R => 0, G => 0, B => 0), 17536 => (R => 0, G => 0, B => 0), 17537 => (R => 0, G => 0, B => 0), 17538 => (R => 0, G => 0, B => 0), 17539 => (R => 0, G => 0, B => 0), 17540 => (R => 0, G => 0, B => 0), 17541 => (R => 0, G => 0, B => 0), 17542 => (R => 0, G => 0, B => 0), 17543 => (R => 0, G => 0, B => 0), 17544 => (R => 0, G => 0, B => 0), 17545 => (R => 0, G => 0, B => 0), 17546 => (R => 0, G => 0, B => 0), 17547 => (R => 0, G => 0, B => 0), 17548 => (R => 0, G => 0, B => 0), 17549 => (R => 0, G => 0, B => 0), 17550 => (R => 0, G => 0, B => 0), 17551 => (R => 0, G => 0, B => 0), 17552 => (R => 0, G => 0, B => 0), 17553 => (R => 0, G => 0, B => 0), 17554 => (R => 0, G => 0, B => 0), 17555 => (R => 0, G => 0, B => 0), 17556 => (R => 0, G => 0, B => 0), 17557 => (R => 0, G => 0, B => 0), 17558 => (R => 0, G => 0, B => 0), 17559 => (R => 0, G => 0, B => 0), 17560 => (R => 0, G => 0, B => 0), 17561 => (R => 0, G => 0, B => 0), 17562 => (R => 0, G => 0, B => 0), 17563 => (R => 0, G => 0, B => 0), 17564 => (R => 0, G => 0, B => 0), 17565 => (R => 0, G => 0, B => 0), 17566 => (R => 0, G => 0, B => 0), 17567 => (R => 0, G => 0, B => 0), 17568 => (R => 0, G => 0, B => 0), 17569 => (R => 0, G => 0, B => 0), 17570 => (R => 0, G => 0, B => 0), 17571 => (R => 0, G => 0, B => 0), 17572 => (R => 0, G => 0, B => 0), 17573 => (R => 0, G => 0, B => 0), 17574 => (R => 0, G => 0, B => 0), 17575 => (R => 0, G => 0, B => 0), 17576 => (R => 0, G => 0, B => 0), 17577 => (R => 0, G => 0, B => 0), 17578 => (R => 0, G => 0, B => 0), 17579 => (R => 0, G => 0, B => 0), 17580 => (R => 0, G => 0, B => 0), 17581 => (R => 0, G => 0, B => 0), 17582 => (R => 0, G => 0, B => 0), 17583 => (R => 0, G => 0, B => 0), 17584 => (R => 0, G => 0, B => 0), 17585 => (R => 0, G => 0, B => 0), 17586 => (R => 0, G => 0, B => 0), 17587 => (R => 0, G => 0, B => 0), 17588 => (R => 0, G => 0, B => 0), 17589 => (R => 0, G => 0, B => 0), 17590 => (R => 0, G => 0, B => 0), 17591 => (R => 0, G => 0, B => 0), 17592 => (R => 0, G => 0, B => 0), 17593 => (R => 0, G => 0, B => 0), 17594 => (R => 0, G => 0, B => 0), 17595 => (R => 0, G => 0, B => 0), 17596 => (R => 0, G => 0, B => 0), 17597 => (R => 0, G => 0, B => 0), 17598 => (R => 0, G => 0, B => 0), 17599 => (R => 0, G => 0, B => 0), 17600 => (R => 0, G => 0, B => 0), 17601 => (R => 0, G => 0, B => 0), 17602 => (R => 0, G => 0, B => 0), 17603 => (R => 0, G => 0, B => 0), 17604 => (R => 0, G => 0, B => 0), 17605 => (R => 0, G => 0, B => 0), 17606 => (R => 0, G => 0, B => 0), 17607 => (R => 0, G => 0, B => 0), 17608 => (R => 0, G => 0, B => 0), 17609 => (R => 0, G => 0, B => 0), 17610 => (R => 0, G => 0, B => 0), 17611 => (R => 0, G => 0, B => 0), 17612 => (R => 0, G => 0, B => 0), 17613 => (R => 0, G => 0, B => 0), 17614 => (R => 0, G => 0, B => 0), 17615 => (R => 0, G => 0, B => 0), 17616 => (R => 0, G => 0, B => 0), 17617 => (R => 0, G => 0, B => 0), 17618 => (R => 0, G => 0, B => 0), 17619 => (R => 0, G => 0, B => 0), 17620 => (R => 0, G => 0, B => 0), 17621 => (R => 0, G => 0, B => 0), 17622 => (R => 0, G => 0, B => 0), 17623 => (R => 0, G => 0, B => 0), 17624 => (R => 0, G => 0, B => 0), 17625 => (R => 0, G => 0, B => 0), 17626 => (R => 0, G => 0, B => 0), 17627 => (R => 0, G => 0, B => 0), 17628 => (R => 0, G => 0, B => 0), 17629 => (R => 0, G => 0, B => 0), 17630 => (R => 0, G => 0, B => 0), 17631 => (R => 0, G => 0, B => 0), 17632 => (R => 0, G => 0, B => 0), 17633 => (R => 0, G => 0, B => 0), 17634 => (R => 0, G => 0, B => 0), 17635 => (R => 0, G => 0, B => 0), 17636 => (R => 0, G => 0, B => 0), 17637 => (R => 0, G => 0, B => 0), 17638 => (R => 0, G => 0, B => 0), 17639 => (R => 0, G => 0, B => 0), 17640 => (R => 0, G => 0, B => 0), 17641 => (R => 0, G => 0, B => 0), 17642 => (R => 0, G => 0, B => 0), 17643 => (R => 0, G => 0, B => 0), 17644 => (R => 0, G => 0, B => 0), 17645 => (R => 0, G => 0, B => 0), 17646 => (R => 0, G => 0, B => 0), 17647 => (R => 0, G => 0, B => 0), 17648 => (R => 0, G => 0, B => 0), 17649 => (R => 0, G => 0, B => 0), 17650 => (R => 0, G => 0, B => 0), 17651 => (R => 0, G => 0, B => 0), 17652 => (R => 0, G => 0, B => 0), 17653 => (R => 0, G => 0, B => 0), 17654 => (R => 0, G => 0, B => 0), 17655 => (R => 0, G => 0, B => 0), 17656 => (R => 0, G => 0, B => 0), 17657 => (R => 0, G => 0, B => 0), 17658 => (R => 0, G => 0, B => 0), 17659 => (R => 0, G => 0, B => 0), 17660 => (R => 0, G => 0, B => 0), 17661 => (R => 0, G => 0, B => 0), 17662 => (R => 0, G => 0, B => 0), 17663 => (R => 0, G => 0, B => 0), 17664 => (R => 0, G => 0, B => 0), 17665 => (R => 0, G => 0, B => 0), 17666 => (R => 0, G => 0, B => 0), 17667 => (R => 0, G => 0, B => 0), 17668 => (R => 0, G => 0, B => 0), 17669 => (R => 0, G => 0, B => 0), 17670 => (R => 0, G => 0, B => 0), 17671 => (R => 0, G => 0, B => 0), 17672 => (R => 0, G => 0, B => 0), 17673 => (R => 0, G => 0, B => 0), 17674 => (R => 0, G => 0, B => 0), 17675 => (R => 0, G => 0, B => 0), 17676 => (R => 0, G => 0, B => 0), 17677 => (R => 0, G => 0, B => 0), 17678 => (R => 0, G => 0, B => 0), 17679 => (R => 0, G => 0, B => 0), 17680 => (R => 0, G => 0, B => 0), 17681 => (R => 0, G => 0, B => 0), 17682 => (R => 0, G => 0, B => 0), 17683 => (R => 0, G => 0, B => 0), 17684 => (R => 0, G => 0, B => 0), 17685 => (R => 0, G => 0, B => 0), 17686 => (R => 0, G => 0, B => 0), 17687 => (R => 0, G => 0, B => 0), 17688 => (R => 0, G => 0, B => 0), 17689 => (R => 0, G => 0, B => 0), 17690 => (R => 0, G => 0, B => 0), 17691 => (R => 255, G => 0, B => 0), 17692 => (R => 255, G => 0, B => 0), 17693 => (R => 255, G => 0, B => 0), 17694 => (R => 255, G => 0, B => 0), 17695 => (R => 255, G => 0, B => 0), 17696 => (R => 255, G => 0, B => 0), 17697 => (R => 255, G => 0, B => 0), 17698 => (R => 255, G => 0, B => 0), 17699 => (R => 255, G => 0, B => 0), 17700 => (R => 255, G => 0, B => 0), 17701 => (R => 255, G => 0, B => 0), 17702 => (R => 255, G => 0, B => 0), 17703 => (R => 255, G => 0, B => 0), 17704 => (R => 255, G => 0, B => 0), 17705 => (R => 255, G => 0, B => 0), 17706 => (R => 255, G => 0, B => 0), 17707 => (R => 255, G => 0, B => 0), 17708 => (R => 255, G => 0, B => 0), 17709 => (R => 255, G => 0, B => 0), 17710 => (R => 0, G => 0, B => 0), 17711 => (R => 0, G => 0, B => 0), 17712 => (R => 0, G => 0, B => 0), 17713 => (R => 0, G => 0, B => 0), 17714 => (R => 0, G => 0, B => 0), 17715 => (R => 0, G => 0, B => 0), 17716 => (R => 0, G => 0, B => 0), 17717 => (R => 0, G => 0, B => 0), 17718 => (R => 0, G => 0, B => 0), 17719 => (R => 0, G => 0, B => 0), 17720 => (R => 0, G => 0, B => 0), 17721 => (R => 0, G => 0, B => 0), 17722 => (R => 0, G => 0, B => 0), 17723 => (R => 0, G => 0, B => 0), 17724 => (R => 0, G => 0, B => 0), 17725 => (R => 0, G => 0, B => 0), 17726 => (R => 0, G => 0, B => 0), 17727 => (R => 0, G => 0, B => 0), 17728 => (R => 0, G => 0, B => 0), 17729 => (R => 0, G => 0, B => 0), 17730 => (R => 0, G => 0, B => 0), 17731 => (R => 0, G => 0, B => 0), 17732 => (R => 0, G => 0, B => 0), 17733 => (R => 0, G => 0, B => 0), 17734 => (R => 0, G => 0, B => 0), 17735 => (R => 0, G => 0, B => 0), 17736 => (R => 0, G => 0, B => 0), 17737 => (R => 0, G => 0, B => 0), 17738 => (R => 0, G => 0, B => 0), 17739 => (R => 0, G => 0, B => 0), 17740 => (R => 0, G => 0, B => 0), 17741 => (R => 0, G => 0, B => 0), 17742 => (R => 0, G => 0, B => 0), 17743 => (R => 0, G => 0, B => 0), 17744 => (R => 0, G => 0, B => 0), 17745 => (R => 0, G => 0, B => 0), 17746 => (R => 0, G => 0, B => 0), 17747 => (R => 0, G => 0, B => 0), 17748 => (R => 0, G => 0, B => 0), 17749 => (R => 0, G => 0, B => 0), 17750 => (R => 0, G => 0, B => 0), 17751 => (R => 0, G => 0, B => 0), 17752 => (R => 0, G => 0, B => 0), 17753 => (R => 0, G => 0, B => 0), 17754 => (R => 0, G => 0, B => 0), 17755 => (R => 0, G => 0, B => 0), 17756 => (R => 0, G => 0, B => 0), 17757 => (R => 0, G => 0, B => 0), 17758 => (R => 0, G => 0, B => 0), 17759 => (R => 0, G => 0, B => 0), 17760 => (R => 0, G => 0, B => 0), 17761 => (R => 0, G => 0, B => 0), 17762 => (R => 0, G => 0, B => 0), 17763 => (R => 0, G => 0, B => 0), 17764 => (R => 0, G => 0, B => 0), 17765 => (R => 0, G => 0, B => 0), 17766 => (R => 0, G => 0, B => 0), 17767 => (R => 0, G => 0, B => 0), 17768 => (R => 0, G => 0, B => 0), 17769 => (R => 0, G => 0, B => 0), 17770 => (R => 0, G => 0, B => 0), 17771 => (R => 0, G => 0, B => 0), 17772 => (R => 0, G => 0, B => 0), 17773 => (R => 0, G => 0, B => 0), 17774 => (R => 0, G => 0, B => 0), 17775 => (R => 0, G => 0, B => 0), 17776 => (R => 0, G => 0, B => 0), 17777 => (R => 0, G => 0, B => 0), 17778 => (R => 0, G => 0, B => 0), 17779 => (R => 0, G => 0, B => 0), 17780 => (R => 0, G => 0, B => 0), 17781 => (R => 0, G => 0, B => 0), 17782 => (R => 0, G => 0, B => 0), 17783 => (R => 0, G => 0, B => 0), 17784 => (R => 0, G => 0, B => 0), 17785 => (R => 0, G => 0, B => 0), 17786 => (R => 0, G => 0, B => 0), 17787 => (R => 0, G => 0, B => 0), 17788 => (R => 0, G => 0, B => 0), 17789 => (R => 0, G => 0, B => 0), 17790 => (R => 0, G => 0, B => 0), 17791 => (R => 0, G => 0, B => 0), 17792 => (R => 0, G => 0, B => 0), 17793 => (R => 0, G => 0, B => 0), 17794 => (R => 0, G => 0, B => 0), 17795 => (R => 0, G => 0, B => 0), 17796 => (R => 0, G => 0, B => 0), 17797 => (R => 0, G => 0, B => 0), 17798 => (R => 0, G => 0, B => 0), 17799 => (R => 0, G => 0, B => 0), 17800 => (R => 0, G => 0, B => 0), 17801 => (R => 0, G => 0, B => 0), 17802 => (R => 0, G => 0, B => 0), 17803 => (R => 0, G => 0, B => 0), 17804 => (R => 0, G => 0, B => 0), 17805 => (R => 0, G => 0, B => 0), 17806 => (R => 0, G => 0, B => 0), 17807 => (R => 0, G => 0, B => 0), 17808 => (R => 0, G => 0, B => 0), 17809 => (R => 0, G => 0, B => 0), 17810 => (R => 0, G => 0, B => 0), 17811 => (R => 0, G => 0, B => 0), 17812 => (R => 0, G => 0, B => 0), 17813 => (R => 0, G => 0, B => 0), 17814 => (R => 0, G => 0, B => 0), 17815 => (R => 0, G => 0, B => 0), 17816 => (R => 0, G => 0, B => 0), 17817 => (R => 0, G => 0, B => 0), 17818 => (R => 0, G => 0, B => 0), 17819 => (R => 0, G => 0, B => 0), 17820 => (R => 0, G => 0, B => 0), 17821 => (R => 0, G => 0, B => 0), 17822 => (R => 0, G => 0, B => 0), 17823 => (R => 0, G => 0, B => 0), 17824 => (R => 0, G => 0, B => 0), 17825 => (R => 0, G => 0, B => 0), 17826 => (R => 0, G => 0, B => 0), 17827 => (R => 0, G => 0, B => 0), 17828 => (R => 0, G => 0, B => 0), 17829 => (R => 0, G => 0, B => 0), 17830 => (R => 0, G => 0, B => 0), 17831 => (R => 0, G => 0, B => 0), 17832 => (R => 0, G => 0, B => 0), 17833 => (R => 0, G => 0, B => 0), 17834 => (R => 0, G => 0, B => 0), 17835 => (R => 0, G => 0, B => 0), 17836 => (R => 0, G => 0, B => 0), 17837 => (R => 0, G => 0, B => 0), 17838 => (R => 0, G => 0, B => 0), 17839 => (R => 0, G => 0, B => 0), 17840 => (R => 0, G => 0, B => 0), 17841 => (R => 0, G => 0, B => 0), 17842 => (R => 0, G => 0, B => 0), 17843 => (R => 0, G => 0, B => 0), 17844 => (R => 0, G => 0, B => 0), 17845 => (R => 0, G => 0, B => 0), 17846 => (R => 0, G => 0, B => 0), 17847 => (R => 0, G => 0, B => 0), 17848 => (R => 0, G => 0, B => 0), 17849 => (R => 0, G => 0, B => 0), 17850 => (R => 0, G => 0, B => 0), 17851 => (R => 0, G => 0, B => 0), 17852 => (R => 0, G => 0, B => 0), 17853 => (R => 0, G => 0, B => 0), 17854 => (R => 0, G => 0, B => 0), 17855 => (R => 0, G => 0, B => 0), 17856 => (R => 0, G => 0, B => 0), 17857 => (R => 0, G => 0, B => 0), 17858 => (R => 0, G => 0, B => 0), 17859 => (R => 0, G => 0, B => 0), 17860 => (R => 0, G => 0, B => 0), 17861 => (R => 0, G => 0, B => 0), 17862 => (R => 0, G => 0, B => 0), 17863 => (R => 0, G => 0, B => 0), 17864 => (R => 0, G => 0, B => 0), 17865 => (R => 0, G => 0, B => 0), 17866 => (R => 0, G => 0, B => 0), 17867 => (R => 0, G => 0, B => 0), 17868 => (R => 0, G => 0, B => 0), 17869 => (R => 0, G => 0, B => 0), 17870 => (R => 0, G => 0, B => 0), 17871 => (R => 0, G => 0, B => 0), 17872 => (R => 0, G => 0, B => 0), 17873 => (R => 0, G => 0, B => 0), 17874 => (R => 0, G => 0, B => 0), 17875 => (R => 0, G => 0, B => 0), 17876 => (R => 0, G => 0, B => 0), 17877 => (R => 0, G => 0, B => 0), 17878 => (R => 0, G => 0, B => 0), 17879 => (R => 0, G => 0, B => 0), 17880 => (R => 0, G => 0, B => 0), 17881 => (R => 0, G => 0, B => 0), 17882 => (R => 0, G => 0, B => 0), 17883 => (R => 0, G => 0, B => 0), 17884 => (R => 0, G => 0, B => 0), 17885 => (R => 0, G => 0, B => 0), 17886 => (R => 0, G => 0, B => 0), 17887 => (R => 0, G => 0, B => 0), 17888 => (R => 0, G => 0, B => 0), 17889 => (R => 0, G => 0, B => 0), 17890 => (R => 0, G => 0, B => 0), 17891 => (R => 0, G => 0, B => 0), 17892 => (R => 255, G => 0, B => 0), 17893 => (R => 255, G => 0, B => 0), 17894 => (R => 255, G => 0, B => 0), 17895 => (R => 255, G => 0, B => 0), 17896 => (R => 255, G => 0, B => 0), 17897 => (R => 255, G => 0, B => 0), 17898 => (R => 255, G => 0, B => 0), 17899 => (R => 255, G => 0, B => 0), 17900 => (R => 255, G => 0, B => 0), 17901 => (R => 255, G => 0, B => 0), 17902 => (R => 255, G => 0, B => 0), 17903 => (R => 255, G => 0, B => 0), 17904 => (R => 255, G => 0, B => 0), 17905 => (R => 255, G => 0, B => 0), 17906 => (R => 255, G => 0, B => 0), 17907 => (R => 255, G => 0, B => 0), 17908 => (R => 255, G => 0, B => 0), 17909 => (R => 0, G => 0, B => 0), 17910 => (R => 0, G => 0, B => 0), 17911 => (R => 0, G => 0, B => 0), 17912 => (R => 0, G => 0, B => 0), 17913 => (R => 0, G => 0, B => 0), 17914 => (R => 0, G => 0, B => 0), 17915 => (R => 0, G => 0, B => 0), 17916 => (R => 0, G => 0, B => 0), 17917 => (R => 0, G => 0, B => 0), 17918 => (R => 0, G => 0, B => 0), 17919 => (R => 0, G => 0, B => 0), 17920 => (R => 0, G => 0, B => 0), 17921 => (R => 0, G => 0, B => 0), 17922 => (R => 0, G => 0, B => 0), 17923 => (R => 0, G => 0, B => 0), 17924 => (R => 0, G => 0, B => 0), 17925 => (R => 0, G => 0, B => 0), 17926 => (R => 0, G => 0, B => 0), 17927 => (R => 0, G => 0, B => 0), 17928 => (R => 0, G => 0, B => 0), 17929 => (R => 0, G => 0, B => 0), 17930 => (R => 0, G => 0, B => 0), 17931 => (R => 0, G => 0, B => 0), 17932 => (R => 0, G => 0, B => 0), 17933 => (R => 0, G => 0, B => 0), 17934 => (R => 0, G => 0, B => 0), 17935 => (R => 0, G => 0, B => 0), 17936 => (R => 0, G => 0, B => 0), 17937 => (R => 0, G => 0, B => 0), 17938 => (R => 0, G => 0, B => 0), 17939 => (R => 0, G => 0, B => 0), 17940 => (R => 0, G => 0, B => 0), 17941 => (R => 0, G => 0, B => 0), 17942 => (R => 0, G => 0, B => 0), 17943 => (R => 0, G => 0, B => 0), 17944 => (R => 0, G => 0, B => 0), 17945 => (R => 0, G => 0, B => 0), 17946 => (R => 0, G => 0, B => 0), 17947 => (R => 0, G => 0, B => 0), 17948 => (R => 0, G => 0, B => 0), 17949 => (R => 0, G => 0, B => 0), 17950 => (R => 0, G => 0, B => 0), 17951 => (R => 0, G => 0, B => 0), 17952 => (R => 0, G => 0, B => 0), 17953 => (R => 0, G => 0, B => 0), 17954 => (R => 0, G => 0, B => 0), 17955 => (R => 0, G => 0, B => 0), 17956 => (R => 0, G => 0, B => 0), 17957 => (R => 0, G => 0, B => 0), 17958 => (R => 0, G => 0, B => 0), 17959 => (R => 0, G => 0, B => 0), 17960 => (R => 0, G => 0, B => 0), 17961 => (R => 0, G => 0, B => 0), 17962 => (R => 0, G => 0, B => 0), 17963 => (R => 0, G => 0, B => 0), 17964 => (R => 0, G => 0, B => 0), 17965 => (R => 0, G => 0, B => 0), 17966 => (R => 0, G => 0, B => 0), 17967 => (R => 0, G => 0, B => 0), 17968 => (R => 0, G => 0, B => 0), 17969 => (R => 0, G => 0, B => 0), 17970 => (R => 0, G => 0, B => 0), 17971 => (R => 0, G => 0, B => 0), 17972 => (R => 0, G => 0, B => 0), 17973 => (R => 0, G => 0, B => 0), 17974 => (R => 0, G => 0, B => 0), 17975 => (R => 0, G => 0, B => 0), 17976 => (R => 0, G => 0, B => 0), 17977 => (R => 0, G => 0, B => 0), 17978 => (R => 0, G => 0, B => 0), 17979 => (R => 0, G => 0, B => 0), 17980 => (R => 0, G => 0, B => 0), 17981 => (R => 0, G => 0, B => 0), 17982 => (R => 0, G => 0, B => 0), 17983 => (R => 0, G => 0, B => 0), 17984 => (R => 0, G => 0, B => 0), 17985 => (R => 0, G => 0, B => 0), 17986 => (R => 0, G => 0, B => 0), 17987 => (R => 0, G => 0, B => 0), 17988 => (R => 0, G => 0, B => 0), 17989 => (R => 0, G => 0, B => 0), 17990 => (R => 0, G => 0, B => 0), 17991 => (R => 0, G => 0, B => 0), 17992 => (R => 0, G => 0, B => 0), 17993 => (R => 0, G => 0, B => 0), 17994 => (R => 0, G => 0, B => 0), 17995 => (R => 0, G => 0, B => 0), 17996 => (R => 0, G => 0, B => 0), 17997 => (R => 0, G => 0, B => 0), 17998 => (R => 0, G => 0, B => 0), 17999 => (R => 0, G => 0, B => 0), 18000 => (R => 0, G => 0, B => 0), 18001 => (R => 0, G => 0, B => 0), 18002 => (R => 0, G => 0, B => 0), 18003 => (R => 0, G => 0, B => 0), 18004 => (R => 0, G => 0, B => 0), 18005 => (R => 0, G => 0, B => 0), 18006 => (R => 0, G => 0, B => 0), 18007 => (R => 0, G => 0, B => 0), 18008 => (R => 0, G => 0, B => 0), 18009 => (R => 0, G => 0, B => 0), 18010 => (R => 0, G => 0, B => 0), 18011 => (R => 0, G => 0, B => 0), 18012 => (R => 0, G => 0, B => 0), 18013 => (R => 0, G => 0, B => 0), 18014 => (R => 0, G => 0, B => 0), 18015 => (R => 0, G => 0, B => 0), 18016 => (R => 0, G => 0, B => 0), 18017 => (R => 0, G => 0, B => 0), 18018 => (R => 0, G => 0, B => 0), 18019 => (R => 0, G => 0, B => 0), 18020 => (R => 0, G => 0, B => 0), 18021 => (R => 0, G => 0, B => 0), 18022 => (R => 0, G => 0, B => 0), 18023 => (R => 0, G => 0, B => 0), 18024 => (R => 0, G => 0, B => 0), 18025 => (R => 0, G => 0, B => 0), 18026 => (R => 0, G => 0, B => 0), 18027 => (R => 0, G => 0, B => 0), 18028 => (R => 0, G => 0, B => 0), 18029 => (R => 0, G => 0, B => 0), 18030 => (R => 0, G => 0, B => 0), 18031 => (R => 0, G => 0, B => 0), 18032 => (R => 0, G => 0, B => 0), 18033 => (R => 0, G => 0, B => 0), 18034 => (R => 0, G => 0, B => 0), 18035 => (R => 0, G => 0, B => 0), 18036 => (R => 0, G => 0, B => 0), 18037 => (R => 0, G => 0, B => 0), 18038 => (R => 0, G => 0, B => 0), 18039 => (R => 0, G => 0, B => 0), 18040 => (R => 0, G => 0, B => 0), 18041 => (R => 0, G => 0, B => 0), 18042 => (R => 0, G => 0, B => 0), 18043 => (R => 0, G => 0, B => 0), 18044 => (R => 0, G => 0, B => 0), 18045 => (R => 0, G => 0, B => 0), 18046 => (R => 0, G => 0, B => 0), 18047 => (R => 0, G => 0, B => 0), 18048 => (R => 0, G => 0, B => 0), 18049 => (R => 0, G => 0, B => 0), 18050 => (R => 0, G => 0, B => 0), 18051 => (R => 0, G => 0, B => 0), 18052 => (R => 0, G => 0, B => 0), 18053 => (R => 0, G => 0, B => 0), 18054 => (R => 0, G => 0, B => 0), 18055 => (R => 0, G => 0, B => 0), 18056 => (R => 0, G => 0, B => 0), 18057 => (R => 0, G => 0, B => 0), 18058 => (R => 0, G => 0, B => 0), 18059 => (R => 0, G => 0, B => 0), 18060 => (R => 0, G => 0, B => 0), 18061 => (R => 0, G => 0, B => 0), 18062 => (R => 0, G => 0, B => 0), 18063 => (R => 0, G => 0, B => 0), 18064 => (R => 0, G => 0, B => 0), 18065 => (R => 0, G => 0, B => 0), 18066 => (R => 0, G => 0, B => 0), 18067 => (R => 0, G => 0, B => 0), 18068 => (R => 0, G => 0, B => 0), 18069 => (R => 0, G => 0, B => 0), 18070 => (R => 0, G => 0, B => 0), 18071 => (R => 0, G => 0, B => 0), 18072 => (R => 0, G => 0, B => 0), 18073 => (R => 0, G => 0, B => 0), 18074 => (R => 0, G => 0, B => 0), 18075 => (R => 0, G => 0, B => 0), 18076 => (R => 0, G => 0, B => 0), 18077 => (R => 0, G => 0, B => 0), 18078 => (R => 0, G => 0, B => 0), 18079 => (R => 0, G => 0, B => 0), 18080 => (R => 0, G => 0, B => 0), 18081 => (R => 0, G => 0, B => 0), 18082 => (R => 0, G => 0, B => 0), 18083 => (R => 0, G => 0, B => 0), 18084 => (R => 0, G => 0, B => 0), 18085 => (R => 0, G => 0, B => 0), 18086 => (R => 0, G => 0, B => 0), 18087 => (R => 0, G => 0, B => 0), 18088 => (R => 0, G => 0, B => 0), 18089 => (R => 0, G => 0, B => 0), 18090 => (R => 0, G => 0, B => 0), 18091 => (R => 0, G => 0, B => 0), 18092 => (R => 0, G => 0, B => 0), 18093 => (R => 255, G => 0, B => 0), 18094 => (R => 255, G => 0, B => 0), 18095 => (R => 255, G => 0, B => 0), 18096 => (R => 255, G => 0, B => 0), 18097 => (R => 255, G => 0, B => 0), 18098 => (R => 255, G => 0, B => 0), 18099 => (R => 255, G => 0, B => 0), 18100 => (R => 255, G => 0, B => 0), 18101 => (R => 255, G => 0, B => 0), 18102 => (R => 255, G => 0, B => 0), 18103 => (R => 255, G => 0, B => 0), 18104 => (R => 255, G => 0, B => 0), 18105 => (R => 255, G => 0, B => 0), 18106 => (R => 255, G => 0, B => 0), 18107 => (R => 255, G => 0, B => 0), 18108 => (R => 0, G => 0, B => 0), 18109 => (R => 0, G => 0, B => 0), 18110 => (R => 0, G => 0, B => 0), 18111 => (R => 0, G => 0, B => 0), 18112 => (R => 0, G => 0, B => 0), 18113 => (R => 0, G => 0, B => 0), 18114 => (R => 0, G => 0, B => 0), 18115 => (R => 0, G => 0, B => 0), 18116 => (R => 0, G => 0, B => 0), 18117 => (R => 0, G => 0, B => 0), 18118 => (R => 0, G => 0, B => 0), 18119 => (R => 0, G => 0, B => 0), 18120 => (R => 0, G => 0, B => 0), 18121 => (R => 0, G => 0, B => 0), 18122 => (R => 0, G => 0, B => 0), 18123 => (R => 0, G => 0, B => 0), 18124 => (R => 0, G => 0, B => 0), 18125 => (R => 0, G => 0, B => 0), 18126 => (R => 0, G => 0, B => 0), 18127 => (R => 0, G => 0, B => 0), 18128 => (R => 0, G => 0, B => 0), 18129 => (R => 0, G => 0, B => 0), 18130 => (R => 0, G => 0, B => 0), 18131 => (R => 0, G => 0, B => 0), 18132 => (R => 0, G => 0, B => 0), 18133 => (R => 0, G => 0, B => 0), 18134 => (R => 0, G => 0, B => 0), 18135 => (R => 0, G => 0, B => 0), 18136 => (R => 0, G => 0, B => 0), 18137 => (R => 0, G => 0, B => 0), 18138 => (R => 0, G => 0, B => 0), 18139 => (R => 0, G => 0, B => 0), 18140 => (R => 0, G => 0, B => 0), 18141 => (R => 0, G => 0, B => 0), 18142 => (R => 0, G => 0, B => 0), 18143 => (R => 0, G => 0, B => 0), 18144 => (R => 0, G => 0, B => 0), 18145 => (R => 0, G => 0, B => 0), 18146 => (R => 0, G => 0, B => 0), 18147 => (R => 0, G => 0, B => 0), 18148 => (R => 0, G => 0, B => 0), 18149 => (R => 0, G => 0, B => 0), 18150 => (R => 0, G => 0, B => 0), 18151 => (R => 0, G => 0, B => 0), 18152 => (R => 0, G => 0, B => 0), 18153 => (R => 0, G => 0, B => 0), 18154 => (R => 0, G => 0, B => 0), 18155 => (R => 0, G => 0, B => 0), 18156 => (R => 0, G => 0, B => 0), 18157 => (R => 0, G => 0, B => 0), 18158 => (R => 0, G => 0, B => 0), 18159 => (R => 0, G => 0, B => 0), 18160 => (R => 0, G => 0, B => 0), 18161 => (R => 0, G => 0, B => 0), 18162 => (R => 0, G => 0, B => 0), 18163 => (R => 0, G => 0, B => 0), 18164 => (R => 0, G => 0, B => 0), 18165 => (R => 0, G => 0, B => 0), 18166 => (R => 0, G => 0, B => 0), 18167 => (R => 0, G => 0, B => 0), 18168 => (R => 0, G => 0, B => 0), 18169 => (R => 0, G => 0, B => 0), 18170 => (R => 0, G => 0, B => 0), 18171 => (R => 0, G => 0, B => 0), 18172 => (R => 0, G => 0, B => 0), 18173 => (R => 0, G => 0, B => 0), 18174 => (R => 0, G => 0, B => 0), 18175 => (R => 0, G => 0, B => 0), 18176 => (R => 0, G => 0, B => 0), 18177 => (R => 0, G => 0, B => 0), 18178 => (R => 0, G => 0, B => 0), 18179 => (R => 0, G => 0, B => 0), 18180 => (R => 0, G => 0, B => 0), 18181 => (R => 0, G => 0, B => 0), 18182 => (R => 0, G => 0, B => 0), 18183 => (R => 0, G => 0, B => 0), 18184 => (R => 0, G => 0, B => 0), 18185 => (R => 0, G => 0, B => 0), 18186 => (R => 0, G => 0, B => 0), 18187 => (R => 0, G => 0, B => 0), 18188 => (R => 0, G => 0, B => 0), 18189 => (R => 0, G => 0, B => 0), 18190 => (R => 0, G => 0, B => 0), 18191 => (R => 0, G => 0, B => 0), 18192 => (R => 0, G => 0, B => 0), 18193 => (R => 0, G => 0, B => 0), 18194 => (R => 0, G => 0, B => 0), 18195 => (R => 0, G => 0, B => 0), 18196 => (R => 0, G => 0, B => 0), 18197 => (R => 0, G => 0, B => 0), 18198 => (R => 0, G => 0, B => 0), 18199 => (R => 0, G => 0, B => 0), 18200 => (R => 0, G => 0, B => 0), 18201 => (R => 0, G => 0, B => 0), 18202 => (R => 0, G => 0, B => 0), 18203 => (R => 0, G => 0, B => 0), 18204 => (R => 0, G => 0, B => 0), 18205 => (R => 0, G => 0, B => 0), 18206 => (R => 0, G => 0, B => 0), 18207 => (R => 0, G => 0, B => 0), 18208 => (R => 0, G => 0, B => 0), 18209 => (R => 0, G => 0, B => 0), 18210 => (R => 0, G => 0, B => 0), 18211 => (R => 0, G => 0, B => 0), 18212 => (R => 0, G => 0, B => 0), 18213 => (R => 0, G => 0, B => 0), 18214 => (R => 0, G => 0, B => 0), 18215 => (R => 0, G => 0, B => 0), 18216 => (R => 0, G => 0, B => 0), 18217 => (R => 0, G => 0, B => 0), 18218 => (R => 0, G => 0, B => 0), 18219 => (R => 0, G => 0, B => 0), 18220 => (R => 0, G => 0, B => 0), 18221 => (R => 0, G => 0, B => 0), 18222 => (R => 0, G => 0, B => 0), 18223 => (R => 0, G => 0, B => 0), 18224 => (R => 0, G => 0, B => 0), 18225 => (R => 0, G => 0, B => 0), 18226 => (R => 0, G => 0, B => 0), 18227 => (R => 0, G => 0, B => 0), 18228 => (R => 0, G => 0, B => 0), 18229 => (R => 0, G => 0, B => 0), 18230 => (R => 0, G => 0, B => 0), 18231 => (R => 0, G => 0, B => 0), 18232 => (R => 0, G => 0, B => 0), 18233 => (R => 0, G => 0, B => 0), 18234 => (R => 0, G => 0, B => 0), 18235 => (R => 0, G => 0, B => 0), 18236 => (R => 0, G => 0, B => 0), 18237 => (R => 0, G => 0, B => 0), 18238 => (R => 0, G => 0, B => 0), 18239 => (R => 0, G => 0, B => 0), 18240 => (R => 0, G => 0, B => 0), 18241 => (R => 0, G => 0, B => 0), 18242 => (R => 0, G => 0, B => 0), 18243 => (R => 0, G => 0, B => 0), 18244 => (R => 0, G => 0, B => 0), 18245 => (R => 0, G => 0, B => 0), 18246 => (R => 0, G => 0, B => 0), 18247 => (R => 0, G => 0, B => 0), 18248 => (R => 0, G => 0, B => 0), 18249 => (R => 0, G => 0, B => 0), 18250 => (R => 0, G => 0, B => 0), 18251 => (R => 0, G => 0, B => 0), 18252 => (R => 0, G => 0, B => 0), 18253 => (R => 0, G => 0, B => 0), 18254 => (R => 0, G => 0, B => 0), 18255 => (R => 0, G => 0, B => 0), 18256 => (R => 0, G => 0, B => 0), 18257 => (R => 0, G => 0, B => 0), 18258 => (R => 0, G => 0, B => 0), 18259 => (R => 0, G => 0, B => 0), 18260 => (R => 0, G => 0, B => 0), 18261 => (R => 0, G => 0, B => 0), 18262 => (R => 0, G => 0, B => 0), 18263 => (R => 0, G => 0, B => 0), 18264 => (R => 0, G => 0, B => 0), 18265 => (R => 0, G => 0, B => 0), 18266 => (R => 0, G => 0, B => 0), 18267 => (R => 0, G => 0, B => 0), 18268 => (R => 0, G => 0, B => 0), 18269 => (R => 0, G => 0, B => 0), 18270 => (R => 0, G => 0, B => 0), 18271 => (R => 0, G => 0, B => 0), 18272 => (R => 0, G => 0, B => 0), 18273 => (R => 0, G => 0, B => 0), 18274 => (R => 0, G => 0, B => 0), 18275 => (R => 0, G => 0, B => 0), 18276 => (R => 0, G => 0, B => 0), 18277 => (R => 0, G => 0, B => 0), 18278 => (R => 0, G => 0, B => 0), 18279 => (R => 0, G => 0, B => 0), 18280 => (R => 0, G => 0, B => 0), 18281 => (R => 0, G => 0, B => 0), 18282 => (R => 0, G => 0, B => 0), 18283 => (R => 0, G => 0, B => 0), 18284 => (R => 0, G => 0, B => 0), 18285 => (R => 0, G => 0, B => 0), 18286 => (R => 0, G => 0, B => 0), 18287 => (R => 0, G => 0, B => 0), 18288 => (R => 0, G => 0, B => 0), 18289 => (R => 0, G => 0, B => 0), 18290 => (R => 0, G => 0, B => 0), 18291 => (R => 0, G => 0, B => 0), 18292 => (R => 0, G => 0, B => 0), 18293 => (R => 0, G => 0, B => 0), 18294 => (R => 255, G => 0, B => 0), 18295 => (R => 255, G => 0, B => 0), 18296 => (R => 255, G => 0, B => 0), 18297 => (R => 255, G => 0, B => 0), 18298 => (R => 255, G => 0, B => 0), 18299 => (R => 255, G => 0, B => 0), 18300 => (R => 255, G => 0, B => 0), 18301 => (R => 255, G => 0, B => 0), 18302 => (R => 255, G => 0, B => 0), 18303 => (R => 255, G => 0, B => 0), 18304 => (R => 255, G => 0, B => 0), 18305 => (R => 255, G => 0, B => 0), 18306 => (R => 255, G => 0, B => 0), 18307 => (R => 0, G => 0, B => 0), 18308 => (R => 0, G => 0, B => 0), 18309 => (R => 0, G => 0, B => 0), 18310 => (R => 0, G => 0, B => 0), 18311 => (R => 0, G => 0, B => 0), 18312 => (R => 0, G => 0, B => 0), 18313 => (R => 0, G => 0, B => 0), 18314 => (R => 0, G => 0, B => 0), 18315 => (R => 0, G => 0, B => 0), 18316 => (R => 0, G => 0, B => 0), 18317 => (R => 0, G => 0, B => 0), 18318 => (R => 0, G => 0, B => 0), 18319 => (R => 0, G => 0, B => 0), 18320 => (R => 0, G => 0, B => 0), 18321 => (R => 0, G => 0, B => 0), 18322 => (R => 0, G => 0, B => 0), 18323 => (R => 0, G => 0, B => 0), 18324 => (R => 0, G => 0, B => 0), 18325 => (R => 0, G => 0, B => 0), 18326 => (R => 0, G => 0, B => 0), 18327 => (R => 0, G => 0, B => 0), 18328 => (R => 0, G => 0, B => 0), 18329 => (R => 0, G => 0, B => 0), 18330 => (R => 0, G => 0, B => 0), 18331 => (R => 0, G => 0, B => 0), 18332 => (R => 0, G => 0, B => 0), 18333 => (R => 0, G => 0, B => 0), 18334 => (R => 0, G => 0, B => 0), 18335 => (R => 0, G => 0, B => 0), 18336 => (R => 0, G => 0, B => 0), 18337 => (R => 0, G => 0, B => 0), 18338 => (R => 0, G => 0, B => 0), 18339 => (R => 0, G => 0, B => 0), 18340 => (R => 0, G => 0, B => 0), 18341 => (R => 0, G => 0, B => 0), 18342 => (R => 0, G => 0, B => 0), 18343 => (R => 0, G => 0, B => 0), 18344 => (R => 0, G => 0, B => 0), 18345 => (R => 0, G => 0, B => 0), 18346 => (R => 0, G => 0, B => 0), 18347 => (R => 0, G => 0, B => 0), 18348 => (R => 0, G => 0, B => 0), 18349 => (R => 0, G => 0, B => 0), 18350 => (R => 0, G => 0, B => 0), 18351 => (R => 0, G => 0, B => 0), 18352 => (R => 0, G => 0, B => 0), 18353 => (R => 0, G => 0, B => 0), 18354 => (R => 0, G => 0, B => 0), 18355 => (R => 0, G => 0, B => 0), 18356 => (R => 0, G => 0, B => 0), 18357 => (R => 0, G => 0, B => 0), 18358 => (R => 0, G => 0, B => 0), 18359 => (R => 0, G => 0, B => 0), 18360 => (R => 0, G => 0, B => 0), 18361 => (R => 0, G => 0, B => 0), 18362 => (R => 0, G => 0, B => 0), 18363 => (R => 0, G => 0, B => 0), 18364 => (R => 0, G => 0, B => 0), 18365 => (R => 0, G => 0, B => 0), 18366 => (R => 0, G => 0, B => 0), 18367 => (R => 0, G => 0, B => 0), 18368 => (R => 0, G => 0, B => 0), 18369 => (R => 0, G => 0, B => 0), 18370 => (R => 0, G => 0, B => 0), 18371 => (R => 0, G => 0, B => 0), 18372 => (R => 0, G => 0, B => 0), 18373 => (R => 0, G => 0, B => 0), 18374 => (R => 0, G => 0, B => 0), 18375 => (R => 0, G => 0, B => 0), 18376 => (R => 0, G => 0, B => 0), 18377 => (R => 0, G => 0, B => 0), 18378 => (R => 0, G => 0, B => 0), 18379 => (R => 0, G => 0, B => 0), 18380 => (R => 0, G => 0, B => 0), 18381 => (R => 0, G => 0, B => 0), 18382 => (R => 0, G => 0, B => 0), 18383 => (R => 0, G => 0, B => 0), 18384 => (R => 0, G => 0, B => 0), 18385 => (R => 0, G => 0, B => 0), 18386 => (R => 0, G => 0, B => 0), 18387 => (R => 0, G => 0, B => 0), 18388 => (R => 0, G => 0, B => 0), 18389 => (R => 0, G => 0, B => 0), 18390 => (R => 0, G => 0, B => 0), 18391 => (R => 0, G => 0, B => 0), 18392 => (R => 0, G => 0, B => 0), 18393 => (R => 0, G => 0, B => 0), 18394 => (R => 0, G => 0, B => 0), 18395 => (R => 0, G => 0, B => 0), 18396 => (R => 0, G => 0, B => 0), 18397 => (R => 0, G => 0, B => 0), 18398 => (R => 0, G => 0, B => 0), 18399 => (R => 0, G => 0, B => 0), 18400 => (R => 0, G => 0, B => 0), 18401 => (R => 0, G => 0, B => 0), 18402 => (R => 0, G => 0, B => 0), 18403 => (R => 0, G => 0, B => 0), 18404 => (R => 0, G => 0, B => 0), 18405 => (R => 0, G => 0, B => 0), 18406 => (R => 0, G => 0, B => 0), 18407 => (R => 0, G => 0, B => 0), 18408 => (R => 0, G => 0, B => 0), 18409 => (R => 0, G => 0, B => 0), 18410 => (R => 0, G => 0, B => 0), 18411 => (R => 0, G => 0, B => 0), 18412 => (R => 0, G => 0, B => 0), 18413 => (R => 0, G => 0, B => 0), 18414 => (R => 0, G => 0, B => 0), 18415 => (R => 0, G => 0, B => 0), 18416 => (R => 0, G => 0, B => 0), 18417 => (R => 0, G => 0, B => 0), 18418 => (R => 0, G => 0, B => 0), 18419 => (R => 0, G => 0, B => 0), 18420 => (R => 0, G => 0, B => 0), 18421 => (R => 0, G => 0, B => 0), 18422 => (R => 0, G => 0, B => 0), 18423 => (R => 0, G => 0, B => 0), 18424 => (R => 0, G => 0, B => 0), 18425 => (R => 0, G => 0, B => 0), 18426 => (R => 0, G => 0, B => 0), 18427 => (R => 0, G => 0, B => 0), 18428 => (R => 0, G => 0, B => 0), 18429 => (R => 0, G => 0, B => 0), 18430 => (R => 0, G => 0, B => 0), 18431 => (R => 0, G => 0, B => 0), 18432 => (R => 0, G => 0, B => 0), 18433 => (R => 0, G => 0, B => 0), 18434 => (R => 0, G => 0, B => 0), 18435 => (R => 0, G => 0, B => 0), 18436 => (R => 0, G => 0, B => 0), 18437 => (R => 0, G => 0, B => 0), 18438 => (R => 0, G => 0, B => 0), 18439 => (R => 0, G => 0, B => 0), 18440 => (R => 0, G => 0, B => 0), 18441 => (R => 0, G => 0, B => 0), 18442 => (R => 0, G => 0, B => 0), 18443 => (R => 0, G => 0, B => 0), 18444 => (R => 0, G => 0, B => 0), 18445 => (R => 0, G => 0, B => 0), 18446 => (R => 0, G => 0, B => 0), 18447 => (R => 0, G => 0, B => 0), 18448 => (R => 0, G => 0, B => 0), 18449 => (R => 0, G => 0, B => 0), 18450 => (R => 0, G => 0, B => 0), 18451 => (R => 0, G => 0, B => 0), 18452 => (R => 0, G => 0, B => 0), 18453 => (R => 0, G => 0, B => 0), 18454 => (R => 0, G => 0, B => 0), 18455 => (R => 0, G => 0, B => 0), 18456 => (R => 0, G => 0, B => 0), 18457 => (R => 0, G => 0, B => 0), 18458 => (R => 0, G => 0, B => 0), 18459 => (R => 0, G => 0, B => 0), 18460 => (R => 0, G => 0, B => 0), 18461 => (R => 0, G => 0, B => 0), 18462 => (R => 0, G => 0, B => 0), 18463 => (R => 0, G => 0, B => 0), 18464 => (R => 0, G => 0, B => 0), 18465 => (R => 0, G => 0, B => 0), 18466 => (R => 0, G => 0, B => 0), 18467 => (R => 0, G => 0, B => 0), 18468 => (R => 0, G => 0, B => 0), 18469 => (R => 0, G => 0, B => 0), 18470 => (R => 0, G => 0, B => 0), 18471 => (R => 0, G => 0, B => 0), 18472 => (R => 0, G => 0, B => 0), 18473 => (R => 0, G => 0, B => 0), 18474 => (R => 0, G => 0, B => 0), 18475 => (R => 0, G => 0, B => 0), 18476 => (R => 0, G => 0, B => 0), 18477 => (R => 0, G => 0, B => 0), 18478 => (R => 0, G => 0, B => 0), 18479 => (R => 0, G => 0, B => 0), 18480 => (R => 0, G => 0, B => 0), 18481 => (R => 0, G => 0, B => 0), 18482 => (R => 0, G => 0, B => 0), 18483 => (R => 0, G => 0, B => 0), 18484 => (R => 0, G => 0, B => 0), 18485 => (R => 0, G => 0, B => 0), 18486 => (R => 0, G => 0, B => 0), 18487 => (R => 0, G => 0, B => 0), 18488 => (R => 0, G => 0, B => 0), 18489 => (R => 0, G => 0, B => 0), 18490 => (R => 0, G => 0, B => 0), 18491 => (R => 0, G => 0, B => 0), 18492 => (R => 0, G => 0, B => 0), 18493 => (R => 0, G => 0, B => 0), 18494 => (R => 0, G => 0, B => 0), 18495 => (R => 255, G => 0, B => 0), 18496 => (R => 255, G => 0, B => 0), 18497 => (R => 255, G => 0, B => 0), 18498 => (R => 255, G => 0, B => 0), 18499 => (R => 255, G => 0, B => 0), 18500 => (R => 255, G => 0, B => 0), 18501 => (R => 255, G => 0, B => 0), 18502 => (R => 255, G => 0, B => 0), 18503 => (R => 255, G => 0, B => 0), 18504 => (R => 255, G => 0, B => 0), 18505 => (R => 255, G => 0, B => 0), 18506 => (R => 0, G => 0, B => 0), 18507 => (R => 0, G => 0, B => 0), 18508 => (R => 0, G => 0, B => 0), 18509 => (R => 0, G => 0, B => 0), 18510 => (R => 0, G => 0, B => 0), 18511 => (R => 0, G => 0, B => 0), 18512 => (R => 0, G => 0, B => 0), 18513 => (R => 0, G => 0, B => 0), 18514 => (R => 0, G => 0, B => 0), 18515 => (R => 0, G => 0, B => 0), 18516 => (R => 0, G => 0, B => 0), 18517 => (R => 0, G => 0, B => 0), 18518 => (R => 0, G => 0, B => 0), 18519 => (R => 0, G => 0, B => 0), 18520 => (R => 0, G => 0, B => 0), 18521 => (R => 0, G => 0, B => 0), 18522 => (R => 0, G => 0, B => 0), 18523 => (R => 0, G => 0, B => 0), 18524 => (R => 0, G => 0, B => 0), 18525 => (R => 0, G => 0, B => 0), 18526 => (R => 0, G => 0, B => 0), 18527 => (R => 0, G => 0, B => 0), 18528 => (R => 0, G => 0, B => 0), 18529 => (R => 0, G => 0, B => 0), 18530 => (R => 0, G => 0, B => 0), 18531 => (R => 0, G => 0, B => 0), 18532 => (R => 0, G => 0, B => 0), 18533 => (R => 0, G => 0, B => 0), 18534 => (R => 0, G => 0, B => 0), 18535 => (R => 0, G => 0, B => 0), 18536 => (R => 0, G => 0, B => 0), 18537 => (R => 0, G => 0, B => 0), 18538 => (R => 0, G => 0, B => 0), 18539 => (R => 0, G => 0, B => 0), 18540 => (R => 0, G => 0, B => 0), 18541 => (R => 0, G => 0, B => 0), 18542 => (R => 0, G => 0, B => 0), 18543 => (R => 0, G => 0, B => 0), 18544 => (R => 0, G => 0, B => 0), 18545 => (R => 0, G => 0, B => 0), 18546 => (R => 0, G => 0, B => 0), 18547 => (R => 0, G => 0, B => 0), 18548 => (R => 0, G => 0, B => 0), 18549 => (R => 0, G => 0, B => 0), 18550 => (R => 0, G => 0, B => 0), 18551 => (R => 0, G => 0, B => 0), 18552 => (R => 0, G => 0, B => 0), 18553 => (R => 0, G => 0, B => 0), 18554 => (R => 0, G => 0, B => 0), 18555 => (R => 0, G => 0, B => 0), 18556 => (R => 0, G => 0, B => 0), 18557 => (R => 0, G => 0, B => 0), 18558 => (R => 0, G => 0, B => 0), 18559 => (R => 0, G => 0, B => 0), 18560 => (R => 0, G => 0, B => 0), 18561 => (R => 0, G => 0, B => 0), 18562 => (R => 0, G => 0, B => 0), 18563 => (R => 0, G => 0, B => 0), 18564 => (R => 0, G => 0, B => 0), 18565 => (R => 0, G => 0, B => 0), 18566 => (R => 0, G => 0, B => 0), 18567 => (R => 0, G => 0, B => 0), 18568 => (R => 0, G => 0, B => 0), 18569 => (R => 0, G => 0, B => 0), 18570 => (R => 0, G => 0, B => 0), 18571 => (R => 0, G => 0, B => 0), 18572 => (R => 0, G => 0, B => 0), 18573 => (R => 0, G => 0, B => 0), 18574 => (R => 0, G => 0, B => 0), 18575 => (R => 0, G => 0, B => 0), 18576 => (R => 0, G => 0, B => 0), 18577 => (R => 0, G => 0, B => 0), 18578 => (R => 0, G => 0, B => 0), 18579 => (R => 0, G => 0, B => 0), 18580 => (R => 0, G => 0, B => 0), 18581 => (R => 0, G => 0, B => 0), 18582 => (R => 0, G => 0, B => 0), 18583 => (R => 0, G => 0, B => 0), 18584 => (R => 0, G => 0, B => 0), 18585 => (R => 0, G => 0, B => 0), 18586 => (R => 0, G => 0, B => 0), 18587 => (R => 0, G => 0, B => 0), 18588 => (R => 0, G => 0, B => 0), 18589 => (R => 0, G => 0, B => 0), 18590 => (R => 0, G => 0, B => 0), 18591 => (R => 0, G => 0, B => 0), 18592 => (R => 0, G => 0, B => 0), 18593 => (R => 0, G => 0, B => 0), 18594 => (R => 0, G => 0, B => 0), 18595 => (R => 0, G => 0, B => 0), 18596 => (R => 0, G => 0, B => 0), 18597 => (R => 0, G => 0, B => 0), 18598 => (R => 0, G => 0, B => 0), 18599 => (R => 0, G => 0, B => 0), 18600 => (R => 0, G => 0, B => 0), 18601 => (R => 0, G => 0, B => 0), 18602 => (R => 0, G => 0, B => 0), 18603 => (R => 0, G => 0, B => 0), 18604 => (R => 0, G => 0, B => 0), 18605 => (R => 0, G => 0, B => 0), 18606 => (R => 0, G => 0, B => 0), 18607 => (R => 0, G => 0, B => 0), 18608 => (R => 0, G => 0, B => 0), 18609 => (R => 0, G => 0, B => 0), 18610 => (R => 0, G => 0, B => 0), 18611 => (R => 0, G => 0, B => 0), 18612 => (R => 0, G => 0, B => 0), 18613 => (R => 0, G => 0, B => 0), 18614 => (R => 0, G => 0, B => 0), 18615 => (R => 0, G => 0, B => 0), 18616 => (R => 0, G => 0, B => 0), 18617 => (R => 0, G => 0, B => 0), 18618 => (R => 0, G => 0, B => 0), 18619 => (R => 0, G => 0, B => 0), 18620 => (R => 0, G => 0, B => 0), 18621 => (R => 0, G => 0, B => 0), 18622 => (R => 0, G => 0, B => 0), 18623 => (R => 0, G => 0, B => 0), 18624 => (R => 0, G => 0, B => 0), 18625 => (R => 0, G => 0, B => 0), 18626 => (R => 0, G => 0, B => 0), 18627 => (R => 0, G => 0, B => 0), 18628 => (R => 0, G => 0, B => 0), 18629 => (R => 0, G => 0, B => 0), 18630 => (R => 0, G => 0, B => 0), 18631 => (R => 0, G => 0, B => 0), 18632 => (R => 0, G => 0, B => 0), 18633 => (R => 0, G => 0, B => 0), 18634 => (R => 0, G => 0, B => 0), 18635 => (R => 0, G => 0, B => 0), 18636 => (R => 0, G => 0, B => 0), 18637 => (R => 0, G => 0, B => 0), 18638 => (R => 0, G => 0, B => 0), 18639 => (R => 0, G => 0, B => 0), 18640 => (R => 0, G => 0, B => 0), 18641 => (R => 0, G => 0, B => 0), 18642 => (R => 0, G => 0, B => 0), 18643 => (R => 0, G => 0, B => 0), 18644 => (R => 0, G => 0, B => 0), 18645 => (R => 0, G => 0, B => 0), 18646 => (R => 0, G => 0, B => 0), 18647 => (R => 0, G => 0, B => 0), 18648 => (R => 0, G => 0, B => 0), 18649 => (R => 0, G => 0, B => 0), 18650 => (R => 0, G => 0, B => 0), 18651 => (R => 0, G => 0, B => 0), 18652 => (R => 0, G => 0, B => 0), 18653 => (R => 0, G => 0, B => 0), 18654 => (R => 0, G => 0, B => 0), 18655 => (R => 0, G => 0, B => 0), 18656 => (R => 0, G => 0, B => 0), 18657 => (R => 0, G => 0, B => 0), 18658 => (R => 0, G => 0, B => 0), 18659 => (R => 0, G => 0, B => 0), 18660 => (R => 0, G => 0, B => 0), 18661 => (R => 0, G => 0, B => 0), 18662 => (R => 0, G => 0, B => 0), 18663 => (R => 0, G => 0, B => 0), 18664 => (R => 0, G => 0, B => 0), 18665 => (R => 0, G => 0, B => 0), 18666 => (R => 0, G => 0, B => 0), 18667 => (R => 0, G => 0, B => 0), 18668 => (R => 0, G => 0, B => 0), 18669 => (R => 0, G => 0, B => 0), 18670 => (R => 0, G => 0, B => 0), 18671 => (R => 0, G => 0, B => 0), 18672 => (R => 0, G => 0, B => 0), 18673 => (R => 0, G => 0, B => 0), 18674 => (R => 0, G => 0, B => 0), 18675 => (R => 0, G => 0, B => 0), 18676 => (R => 0, G => 0, B => 0), 18677 => (R => 0, G => 0, B => 0), 18678 => (R => 0, G => 0, B => 0), 18679 => (R => 0, G => 0, B => 0), 18680 => (R => 0, G => 0, B => 0), 18681 => (R => 0, G => 0, B => 0), 18682 => (R => 0, G => 0, B => 0), 18683 => (R => 0, G => 0, B => 0), 18684 => (R => 0, G => 0, B => 0), 18685 => (R => 0, G => 0, B => 0), 18686 => (R => 0, G => 0, B => 0), 18687 => (R => 0, G => 0, B => 0), 18688 => (R => 0, G => 0, B => 0), 18689 => (R => 0, G => 0, B => 0), 18690 => (R => 0, G => 0, B => 0), 18691 => (R => 0, G => 0, B => 0), 18692 => (R => 0, G => 0, B => 0), 18693 => (R => 0, G => 0, B => 0), 18694 => (R => 0, G => 0, B => 0), 18695 => (R => 0, G => 0, B => 0), 18696 => (R => 255, G => 0, B => 0), 18697 => (R => 255, G => 0, B => 0), 18698 => (R => 255, G => 0, B => 0), 18699 => (R => 255, G => 0, B => 0), 18700 => (R => 255, G => 0, B => 0), 18701 => (R => 255, G => 0, B => 0), 18702 => (R => 255, G => 0, B => 0), 18703 => (R => 255, G => 0, B => 0), 18704 => (R => 255, G => 0, B => 0), 18705 => (R => 0, G => 0, B => 0), 18706 => (R => 0, G => 0, B => 0), 18707 => (R => 0, G => 0, B => 0), 18708 => (R => 0, G => 0, B => 0), 18709 => (R => 0, G => 0, B => 0), 18710 => (R => 0, G => 0, B => 0), 18711 => (R => 0, G => 0, B => 0), 18712 => (R => 0, G => 0, B => 0), 18713 => (R => 0, G => 0, B => 0), 18714 => (R => 0, G => 0, B => 0), 18715 => (R => 0, G => 0, B => 0), 18716 => (R => 0, G => 0, B => 0), 18717 => (R => 0, G => 0, B => 0), 18718 => (R => 0, G => 0, B => 0), 18719 => (R => 0, G => 0, B => 0), 18720 => (R => 0, G => 0, B => 0), 18721 => (R => 0, G => 0, B => 0), 18722 => (R => 0, G => 0, B => 0), 18723 => (R => 0, G => 0, B => 0), 18724 => (R => 0, G => 0, B => 0), 18725 => (R => 0, G => 0, B => 0), 18726 => (R => 0, G => 0, B => 0), 18727 => (R => 0, G => 0, B => 0), 18728 => (R => 0, G => 0, B => 0), 18729 => (R => 0, G => 0, B => 0), 18730 => (R => 0, G => 0, B => 0), 18731 => (R => 0, G => 0, B => 0), 18732 => (R => 0, G => 0, B => 0), 18733 => (R => 0, G => 0, B => 0), 18734 => (R => 0, G => 0, B => 0), 18735 => (R => 0, G => 0, B => 0), 18736 => (R => 0, G => 0, B => 0), 18737 => (R => 0, G => 0, B => 0), 18738 => (R => 0, G => 0, B => 0), 18739 => (R => 0, G => 0, B => 0), 18740 => (R => 0, G => 0, B => 0), 18741 => (R => 0, G => 0, B => 0), 18742 => (R => 0, G => 0, B => 0), 18743 => (R => 0, G => 0, B => 0), 18744 => (R => 0, G => 0, B => 0), 18745 => (R => 0, G => 0, B => 0), 18746 => (R => 0, G => 0, B => 0), 18747 => (R => 0, G => 0, B => 0), 18748 => (R => 0, G => 0, B => 0), 18749 => (R => 0, G => 0, B => 0), 18750 => (R => 0, G => 0, B => 0), 18751 => (R => 0, G => 0, B => 0), 18752 => (R => 0, G => 0, B => 0), 18753 => (R => 0, G => 0, B => 0), 18754 => (R => 0, G => 0, B => 0), 18755 => (R => 0, G => 0, B => 0), 18756 => (R => 0, G => 0, B => 0), 18757 => (R => 0, G => 0, B => 0), 18758 => (R => 0, G => 0, B => 0), 18759 => (R => 0, G => 0, B => 0), 18760 => (R => 0, G => 0, B => 0), 18761 => (R => 0, G => 0, B => 0), 18762 => (R => 0, G => 0, B => 0), 18763 => (R => 0, G => 0, B => 0), 18764 => (R => 0, G => 0, B => 0), 18765 => (R => 0, G => 0, B => 0), 18766 => (R => 0, G => 0, B => 0), 18767 => (R => 0, G => 0, B => 0), 18768 => (R => 0, G => 0, B => 0), 18769 => (R => 0, G => 0, B => 0), 18770 => (R => 0, G => 0, B => 0), 18771 => (R => 0, G => 0, B => 0), 18772 => (R => 0, G => 0, B => 0), 18773 => (R => 0, G => 0, B => 0), 18774 => (R => 0, G => 0, B => 0), 18775 => (R => 0, G => 0, B => 0), 18776 => (R => 0, G => 0, B => 0), 18777 => (R => 0, G => 0, B => 0), 18778 => (R => 0, G => 0, B => 0), 18779 => (R => 0, G => 0, B => 0), 18780 => (R => 0, G => 0, B => 0), 18781 => (R => 0, G => 0, B => 0), 18782 => (R => 0, G => 0, B => 0), 18783 => (R => 0, G => 0, B => 0), 18784 => (R => 0, G => 0, B => 0), 18785 => (R => 0, G => 0, B => 0), 18786 => (R => 0, G => 0, B => 0), 18787 => (R => 0, G => 0, B => 0), 18788 => (R => 0, G => 0, B => 0), 18789 => (R => 0, G => 0, B => 0), 18790 => (R => 0, G => 0, B => 0), 18791 => (R => 0, G => 0, B => 0), 18792 => (R => 0, G => 0, B => 0), 18793 => (R => 0, G => 0, B => 0), 18794 => (R => 0, G => 0, B => 0), 18795 => (R => 0, G => 0, B => 0), 18796 => (R => 0, G => 0, B => 0), 18797 => (R => 0, G => 0, B => 0), 18798 => (R => 0, G => 0, B => 0), 18799 => (R => 0, G => 0, B => 0), 18800 => (R => 0, G => 0, B => 0), 18801 => (R => 0, G => 0, B => 0), 18802 => (R => 0, G => 0, B => 0), 18803 => (R => 0, G => 0, B => 0), 18804 => (R => 0, G => 0, B => 0), 18805 => (R => 0, G => 0, B => 0), 18806 => (R => 0, G => 0, B => 0), 18807 => (R => 0, G => 0, B => 0), 18808 => (R => 0, G => 0, B => 0), 18809 => (R => 0, G => 0, B => 0), 18810 => (R => 0, G => 0, B => 0), 18811 => (R => 0, G => 0, B => 0), 18812 => (R => 0, G => 0, B => 0), 18813 => (R => 0, G => 0, B => 0), 18814 => (R => 0, G => 0, B => 0), 18815 => (R => 0, G => 0, B => 0), 18816 => (R => 0, G => 0, B => 0), 18817 => (R => 0, G => 0, B => 0), 18818 => (R => 0, G => 0, B => 0), 18819 => (R => 0, G => 0, B => 0), 18820 => (R => 0, G => 0, B => 0), 18821 => (R => 0, G => 0, B => 0), 18822 => (R => 0, G => 0, B => 0), 18823 => (R => 0, G => 0, B => 0), 18824 => (R => 0, G => 0, B => 0), 18825 => (R => 0, G => 0, B => 0), 18826 => (R => 0, G => 0, B => 0), 18827 => (R => 0, G => 0, B => 0), 18828 => (R => 0, G => 0, B => 0), 18829 => (R => 0, G => 0, B => 0), 18830 => (R => 0, G => 0, B => 0), 18831 => (R => 0, G => 0, B => 0), 18832 => (R => 0, G => 0, B => 0), 18833 => (R => 0, G => 0, B => 0), 18834 => (R => 0, G => 0, B => 0), 18835 => (R => 0, G => 0, B => 0), 18836 => (R => 0, G => 0, B => 0), 18837 => (R => 0, G => 0, B => 0), 18838 => (R => 0, G => 0, B => 0), 18839 => (R => 0, G => 0, B => 0), 18840 => (R => 0, G => 0, B => 0), 18841 => (R => 0, G => 0, B => 0), 18842 => (R => 0, G => 0, B => 0), 18843 => (R => 0, G => 0, B => 0), 18844 => (R => 0, G => 0, B => 0), 18845 => (R => 0, G => 0, B => 0), 18846 => (R => 0, G => 0, B => 0), 18847 => (R => 0, G => 0, B => 0), 18848 => (R => 0, G => 0, B => 0), 18849 => (R => 0, G => 0, B => 0), 18850 => (R => 0, G => 0, B => 0), 18851 => (R => 0, G => 0, B => 0), 18852 => (R => 0, G => 0, B => 0), 18853 => (R => 0, G => 0, B => 0), 18854 => (R => 0, G => 0, B => 0), 18855 => (R => 0, G => 0, B => 0), 18856 => (R => 0, G => 0, B => 0), 18857 => (R => 0, G => 0, B => 0), 18858 => (R => 0, G => 0, B => 0), 18859 => (R => 0, G => 0, B => 0), 18860 => (R => 0, G => 0, B => 0), 18861 => (R => 0, G => 0, B => 0), 18862 => (R => 0, G => 0, B => 0), 18863 => (R => 0, G => 0, B => 0), 18864 => (R => 0, G => 0, B => 0), 18865 => (R => 0, G => 0, B => 0), 18866 => (R => 0, G => 0, B => 0), 18867 => (R => 0, G => 0, B => 0), 18868 => (R => 0, G => 0, B => 0), 18869 => (R => 0, G => 0, B => 0), 18870 => (R => 0, G => 0, B => 0), 18871 => (R => 0, G => 0, B => 0), 18872 => (R => 0, G => 0, B => 0), 18873 => (R => 0, G => 0, B => 0), 18874 => (R => 0, G => 0, B => 0), 18875 => (R => 0, G => 0, B => 0), 18876 => (R => 0, G => 0, B => 0), 18877 => (R => 0, G => 0, B => 0), 18878 => (R => 0, G => 0, B => 0), 18879 => (R => 0, G => 0, B => 0), 18880 => (R => 0, G => 0, B => 0), 18881 => (R => 0, G => 0, B => 0), 18882 => (R => 0, G => 0, B => 0), 18883 => (R => 0, G => 0, B => 0), 18884 => (R => 0, G => 0, B => 0), 18885 => (R => 0, G => 0, B => 0), 18886 => (R => 0, G => 0, B => 0), 18887 => (R => 0, G => 0, B => 0), 18888 => (R => 0, G => 0, B => 0), 18889 => (R => 0, G => 0, B => 0), 18890 => (R => 0, G => 0, B => 0), 18891 => (R => 0, G => 0, B => 0), 18892 => (R => 0, G => 0, B => 0), 18893 => (R => 0, G => 0, B => 0), 18894 => (R => 0, G => 0, B => 0), 18895 => (R => 0, G => 0, B => 0), 18896 => (R => 0, G => 0, B => 0), 18897 => (R => 255, G => 0, B => 0), 18898 => (R => 255, G => 0, B => 0), 18899 => (R => 255, G => 0, B => 0), 18900 => (R => 255, G => 0, B => 0), 18901 => (R => 255, G => 0, B => 0), 18902 => (R => 255, G => 0, B => 0), 18903 => (R => 255, G => 0, B => 0), 18904 => (R => 0, G => 0, B => 0), 18905 => (R => 0, G => 0, B => 0), 18906 => (R => 0, G => 0, B => 0), 18907 => (R => 0, G => 0, B => 0), 18908 => (R => 0, G => 0, B => 0), 18909 => (R => 0, G => 0, B => 0), 18910 => (R => 0, G => 0, B => 0), 18911 => (R => 0, G => 0, B => 0), 18912 => (R => 0, G => 0, B => 0), 18913 => (R => 0, G => 0, B => 0), 18914 => (R => 0, G => 0, B => 0), 18915 => (R => 0, G => 0, B => 0), 18916 => (R => 0, G => 0, B => 0), 18917 => (R => 0, G => 0, B => 0), 18918 => (R => 0, G => 0, B => 0), 18919 => (R => 0, G => 0, B => 0), 18920 => (R => 0, G => 0, B => 0), 18921 => (R => 0, G => 0, B => 0), 18922 => (R => 0, G => 0, B => 0), 18923 => (R => 0, G => 0, B => 0), 18924 => (R => 0, G => 0, B => 0), 18925 => (R => 0, G => 0, B => 0), 18926 => (R => 0, G => 0, B => 0), 18927 => (R => 0, G => 0, B => 0), 18928 => (R => 0, G => 0, B => 0), 18929 => (R => 0, G => 0, B => 0), 18930 => (R => 0, G => 0, B => 0), 18931 => (R => 0, G => 0, B => 0), 18932 => (R => 0, G => 0, B => 0), 18933 => (R => 0, G => 0, B => 0), 18934 => (R => 0, G => 0, B => 0), 18935 => (R => 0, G => 0, B => 0), 18936 => (R => 0, G => 0, B => 0), 18937 => (R => 0, G => 0, B => 0), 18938 => (R => 0, G => 0, B => 0), 18939 => (R => 0, G => 0, B => 0), 18940 => (R => 0, G => 0, B => 0), 18941 => (R => 0, G => 0, B => 0), 18942 => (R => 0, G => 0, B => 0), 18943 => (R => 0, G => 0, B => 0), 18944 => (R => 0, G => 0, B => 0), 18945 => (R => 0, G => 0, B => 0), 18946 => (R => 0, G => 0, B => 0), 18947 => (R => 0, G => 0, B => 0), 18948 => (R => 0, G => 0, B => 0), 18949 => (R => 0, G => 0, B => 0), 18950 => (R => 0, G => 0, B => 0), 18951 => (R => 0, G => 0, B => 0), 18952 => (R => 0, G => 0, B => 0), 18953 => (R => 0, G => 0, B => 0), 18954 => (R => 0, G => 0, B => 0), 18955 => (R => 0, G => 0, B => 0), 18956 => (R => 0, G => 0, B => 0), 18957 => (R => 0, G => 0, B => 0), 18958 => (R => 0, G => 0, B => 0), 18959 => (R => 0, G => 0, B => 0), 18960 => (R => 0, G => 0, B => 0), 18961 => (R => 0, G => 0, B => 0), 18962 => (R => 0, G => 0, B => 0), 18963 => (R => 0, G => 0, B => 0), 18964 => (R => 0, G => 0, B => 0), 18965 => (R => 0, G => 0, B => 0), 18966 => (R => 0, G => 0, B => 0), 18967 => (R => 0, G => 0, B => 0), 18968 => (R => 0, G => 0, B => 0), 18969 => (R => 0, G => 0, B => 0), 18970 => (R => 0, G => 0, B => 0), 18971 => (R => 0, G => 0, B => 0), 18972 => (R => 0, G => 0, B => 0), 18973 => (R => 0, G => 0, B => 0), 18974 => (R => 0, G => 0, B => 0), 18975 => (R => 0, G => 0, B => 0), 18976 => (R => 0, G => 0, B => 0), 18977 => (R => 0, G => 0, B => 0), 18978 => (R => 0, G => 0, B => 0), 18979 => (R => 0, G => 0, B => 0), 18980 => (R => 0, G => 0, B => 0), 18981 => (R => 0, G => 0, B => 0), 18982 => (R => 0, G => 0, B => 0), 18983 => (R => 0, G => 0, B => 0), 18984 => (R => 0, G => 0, B => 0), 18985 => (R => 0, G => 0, B => 0), 18986 => (R => 0, G => 0, B => 0), 18987 => (R => 0, G => 0, B => 0), 18988 => (R => 0, G => 0, B => 0), 18989 => (R => 0, G => 0, B => 0), 18990 => (R => 0, G => 0, B => 0), 18991 => (R => 0, G => 0, B => 0), 18992 => (R => 0, G => 0, B => 0), 18993 => (R => 0, G => 0, B => 0), 18994 => (R => 0, G => 0, B => 0), 18995 => (R => 0, G => 0, B => 0), 18996 => (R => 0, G => 0, B => 0), 18997 => (R => 0, G => 0, B => 0), 18998 => (R => 0, G => 0, B => 0), 18999 => (R => 0, G => 0, B => 0), 19000 => (R => 0, G => 0, B => 0), 19001 => (R => 0, G => 0, B => 0), 19002 => (R => 0, G => 0, B => 0), 19003 => (R => 0, G => 0, B => 0), 19004 => (R => 0, G => 0, B => 0), 19005 => (R => 0, G => 0, B => 0), 19006 => (R => 0, G => 0, B => 0), 19007 => (R => 0, G => 0, B => 0), 19008 => (R => 0, G => 0, B => 0), 19009 => (R => 0, G => 0, B => 0), 19010 => (R => 0, G => 0, B => 0), 19011 => (R => 0, G => 0, B => 0), 19012 => (R => 0, G => 0, B => 0), 19013 => (R => 0, G => 0, B => 0), 19014 => (R => 0, G => 0, B => 0), 19015 => (R => 0, G => 0, B => 0), 19016 => (R => 0, G => 0, B => 0), 19017 => (R => 0, G => 0, B => 0), 19018 => (R => 0, G => 0, B => 0), 19019 => (R => 0, G => 0, B => 0), 19020 => (R => 0, G => 0, B => 0), 19021 => (R => 0, G => 0, B => 0), 19022 => (R => 0, G => 0, B => 0), 19023 => (R => 0, G => 0, B => 0), 19024 => (R => 0, G => 0, B => 0), 19025 => (R => 0, G => 0, B => 0), 19026 => (R => 0, G => 0, B => 0), 19027 => (R => 0, G => 0, B => 0), 19028 => (R => 0, G => 0, B => 0), 19029 => (R => 0, G => 0, B => 0), 19030 => (R => 0, G => 0, B => 0), 19031 => (R => 0, G => 0, B => 0), 19032 => (R => 0, G => 0, B => 0), 19033 => (R => 0, G => 0, B => 0), 19034 => (R => 0, G => 0, B => 0), 19035 => (R => 0, G => 0, B => 0), 19036 => (R => 0, G => 0, B => 0), 19037 => (R => 0, G => 0, B => 0), 19038 => (R => 0, G => 0, B => 0), 19039 => (R => 0, G => 0, B => 0), 19040 => (R => 0, G => 0, B => 0), 19041 => (R => 0, G => 0, B => 0), 19042 => (R => 0, G => 0, B => 0), 19043 => (R => 0, G => 0, B => 0), 19044 => (R => 0, G => 0, B => 0), 19045 => (R => 0, G => 0, B => 0), 19046 => (R => 0, G => 0, B => 0), 19047 => (R => 0, G => 0, B => 0), 19048 => (R => 0, G => 0, B => 0), 19049 => (R => 0, G => 0, B => 0), 19050 => (R => 0, G => 0, B => 0), 19051 => (R => 0, G => 0, B => 0), 19052 => (R => 0, G => 0, B => 0), 19053 => (R => 0, G => 0, B => 0), 19054 => (R => 0, G => 0, B => 0), 19055 => (R => 0, G => 0, B => 0), 19056 => (R => 0, G => 0, B => 0), 19057 => (R => 0, G => 0, B => 0), 19058 => (R => 0, G => 0, B => 0), 19059 => (R => 0, G => 0, B => 0), 19060 => (R => 0, G => 0, B => 0), 19061 => (R => 0, G => 0, B => 0), 19062 => (R => 0, G => 0, B => 0), 19063 => (R => 0, G => 0, B => 0), 19064 => (R => 0, G => 0, B => 0), 19065 => (R => 0, G => 0, B => 0), 19066 => (R => 0, G => 0, B => 0), 19067 => (R => 0, G => 0, B => 0), 19068 => (R => 0, G => 0, B => 0), 19069 => (R => 0, G => 0, B => 0), 19070 => (R => 0, G => 0, B => 0), 19071 => (R => 0, G => 0, B => 0), 19072 => (R => 0, G => 0, B => 0), 19073 => (R => 0, G => 0, B => 0), 19074 => (R => 0, G => 0, B => 0), 19075 => (R => 0, G => 0, B => 0), 19076 => (R => 0, G => 0, B => 0), 19077 => (R => 0, G => 0, B => 0), 19078 => (R => 0, G => 0, B => 0), 19079 => (R => 0, G => 0, B => 0), 19080 => (R => 0, G => 0, B => 0), 19081 => (R => 0, G => 0, B => 0), 19082 => (R => 0, G => 0, B => 0), 19083 => (R => 0, G => 0, B => 0), 19084 => (R => 0, G => 0, B => 0), 19085 => (R => 0, G => 0, B => 0), 19086 => (R => 0, G => 0, B => 0), 19087 => (R => 0, G => 0, B => 0), 19088 => (R => 0, G => 0, B => 0), 19089 => (R => 0, G => 0, B => 0), 19090 => (R => 0, G => 0, B => 0), 19091 => (R => 0, G => 0, B => 0), 19092 => (R => 0, G => 0, B => 0), 19093 => (R => 0, G => 0, B => 0), 19094 => (R => 0, G => 0, B => 0), 19095 => (R => 0, G => 0, B => 0), 19096 => (R => 0, G => 0, B => 0), 19097 => (R => 0, G => 0, B => 0), 19098 => (R => 255, G => 0, B => 0), 19099 => (R => 255, G => 0, B => 0), 19100 => (R => 255, G => 0, B => 0), 19101 => (R => 255, G => 0, B => 0), 19102 => (R => 255, G => 0, B => 0), 19103 => (R => 0, G => 0, B => 0), 19104 => (R => 0, G => 0, B => 0), 19105 => (R => 0, G => 0, B => 0), 19106 => (R => 0, G => 0, B => 0), 19107 => (R => 0, G => 0, B => 0), 19108 => (R => 0, G => 0, B => 0), 19109 => (R => 0, G => 0, B => 0), 19110 => (R => 0, G => 0, B => 0), 19111 => (R => 0, G => 0, B => 0), 19112 => (R => 0, G => 0, B => 0), 19113 => (R => 0, G => 0, B => 0), 19114 => (R => 0, G => 0, B => 0), 19115 => (R => 0, G => 0, B => 0), 19116 => (R => 0, G => 0, B => 0), 19117 => (R => 0, G => 0, B => 0), 19118 => (R => 0, G => 0, B => 0), 19119 => (R => 0, G => 0, B => 0), 19120 => (R => 0, G => 0, B => 0), 19121 => (R => 0, G => 0, B => 0), 19122 => (R => 0, G => 0, B => 0), 19123 => (R => 0, G => 0, B => 0), 19124 => (R => 0, G => 0, B => 0), 19125 => (R => 0, G => 0, B => 0), 19126 => (R => 0, G => 0, B => 0), 19127 => (R => 0, G => 0, B => 0), 19128 => (R => 0, G => 0, B => 0), 19129 => (R => 0, G => 0, B => 0), 19130 => (R => 0, G => 0, B => 0), 19131 => (R => 0, G => 0, B => 0), 19132 => (R => 0, G => 0, B => 0), 19133 => (R => 0, G => 0, B => 0), 19134 => (R => 0, G => 0, B => 0), 19135 => (R => 0, G => 0, B => 0), 19136 => (R => 0, G => 0, B => 0), 19137 => (R => 0, G => 0, B => 0), 19138 => (R => 0, G => 0, B => 0), 19139 => (R => 0, G => 0, B => 0), 19140 => (R => 0, G => 0, B => 0), 19141 => (R => 0, G => 0, B => 0), 19142 => (R => 0, G => 0, B => 0), 19143 => (R => 0, G => 0, B => 0), 19144 => (R => 0, G => 0, B => 0), 19145 => (R => 0, G => 0, B => 0), 19146 => (R => 0, G => 0, B => 0), 19147 => (R => 0, G => 0, B => 0), 19148 => (R => 0, G => 0, B => 0), 19149 => (R => 0, G => 0, B => 0), 19150 => (R => 0, G => 0, B => 0), 19151 => (R => 0, G => 0, B => 0), 19152 => (R => 0, G => 0, B => 0), 19153 => (R => 0, G => 0, B => 0), 19154 => (R => 0, G => 0, B => 0), 19155 => (R => 0, G => 0, B => 0), 19156 => (R => 0, G => 0, B => 0), 19157 => (R => 0, G => 0, B => 0), 19158 => (R => 0, G => 0, B => 0), 19159 => (R => 0, G => 0, B => 0), 19160 => (R => 0, G => 0, B => 0), 19161 => (R => 0, G => 0, B => 0), 19162 => (R => 0, G => 0, B => 0), 19163 => (R => 0, G => 0, B => 0), 19164 => (R => 0, G => 0, B => 0), 19165 => (R => 0, G => 0, B => 0), 19166 => (R => 0, G => 0, B => 0), 19167 => (R => 0, G => 0, B => 0), 19168 => (R => 0, G => 0, B => 0), 19169 => (R => 0, G => 0, B => 0), 19170 => (R => 0, G => 0, B => 0), 19171 => (R => 0, G => 0, B => 0), 19172 => (R => 0, G => 0, B => 0), 19173 => (R => 0, G => 0, B => 0), 19174 => (R => 0, G => 0, B => 0), 19175 => (R => 0, G => 0, B => 0), 19176 => (R => 0, G => 0, B => 0), 19177 => (R => 0, G => 0, B => 0), 19178 => (R => 0, G => 0, B => 0), 19179 => (R => 0, G => 0, B => 0), 19180 => (R => 0, G => 0, B => 0), 19181 => (R => 0, G => 0, B => 0), 19182 => (R => 0, G => 0, B => 0), 19183 => (R => 0, G => 0, B => 0), 19184 => (R => 0, G => 0, B => 0), 19185 => (R => 0, G => 0, B => 0), 19186 => (R => 0, G => 0, B => 0), 19187 => (R => 0, G => 0, B => 0), 19188 => (R => 0, G => 0, B => 0), 19189 => (R => 0, G => 0, B => 0), 19190 => (R => 0, G => 0, B => 0), 19191 => (R => 0, G => 0, B => 0), 19192 => (R => 0, G => 0, B => 0), 19193 => (R => 0, G => 0, B => 0), 19194 => (R => 0, G => 0, B => 0), 19195 => (R => 0, G => 0, B => 0), 19196 => (R => 0, G => 0, B => 0), 19197 => (R => 0, G => 0, B => 0), 19198 => (R => 0, G => 0, B => 0), 19199 => (R => 0, G => 0, B => 0), 19200 => (R => 0, G => 0, B => 0), 19201 => (R => 0, G => 0, B => 0), 19202 => (R => 0, G => 0, B => 0), 19203 => (R => 0, G => 0, B => 0), 19204 => (R => 0, G => 0, B => 0), 19205 => (R => 0, G => 0, B => 0), 19206 => (R => 0, G => 0, B => 0), 19207 => (R => 0, G => 0, B => 0), 19208 => (R => 0, G => 0, B => 0), 19209 => (R => 0, G => 0, B => 0), 19210 => (R => 0, G => 0, B => 0), 19211 => (R => 0, G => 0, B => 0), 19212 => (R => 0, G => 0, B => 0), 19213 => (R => 0, G => 0, B => 0), 19214 => (R => 0, G => 0, B => 0), 19215 => (R => 0, G => 0, B => 0), 19216 => (R => 0, G => 0, B => 0), 19217 => (R => 0, G => 0, B => 0), 19218 => (R => 0, G => 0, B => 0), 19219 => (R => 0, G => 0, B => 0), 19220 => (R => 0, G => 0, B => 0), 19221 => (R => 0, G => 0, B => 0), 19222 => (R => 0, G => 0, B => 0), 19223 => (R => 0, G => 0, B => 0), 19224 => (R => 0, G => 0, B => 0), 19225 => (R => 0, G => 0, B => 0), 19226 => (R => 0, G => 0, B => 0), 19227 => (R => 0, G => 0, B => 0), 19228 => (R => 0, G => 0, B => 0), 19229 => (R => 0, G => 0, B => 0), 19230 => (R => 0, G => 0, B => 0), 19231 => (R => 0, G => 0, B => 0), 19232 => (R => 0, G => 0, B => 0), 19233 => (R => 0, G => 0, B => 0), 19234 => (R => 0, G => 0, B => 0), 19235 => (R => 0, G => 0, B => 0), 19236 => (R => 0, G => 0, B => 0), 19237 => (R => 0, G => 0, B => 0), 19238 => (R => 0, G => 0, B => 0), 19239 => (R => 0, G => 0, B => 0), 19240 => (R => 0, G => 0, B => 0), 19241 => (R => 0, G => 0, B => 0), 19242 => (R => 0, G => 0, B => 0), 19243 => (R => 0, G => 0, B => 0), 19244 => (R => 0, G => 0, B => 0), 19245 => (R => 0, G => 0, B => 0), 19246 => (R => 0, G => 0, B => 0), 19247 => (R => 0, G => 0, B => 0), 19248 => (R => 0, G => 0, B => 0), 19249 => (R => 0, G => 0, B => 0), 19250 => (R => 0, G => 0, B => 0), 19251 => (R => 0, G => 0, B => 0), 19252 => (R => 0, G => 0, B => 0), 19253 => (R => 0, G => 0, B => 0), 19254 => (R => 0, G => 0, B => 0), 19255 => (R => 0, G => 0, B => 0), 19256 => (R => 0, G => 0, B => 0), 19257 => (R => 0, G => 0, B => 0), 19258 => (R => 0, G => 0, B => 0), 19259 => (R => 0, G => 0, B => 0), 19260 => (R => 0, G => 0, B => 0), 19261 => (R => 0, G => 0, B => 0), 19262 => (R => 0, G => 0, B => 0), 19263 => (R => 0, G => 0, B => 0), 19264 => (R => 0, G => 0, B => 0), 19265 => (R => 0, G => 0, B => 0), 19266 => (R => 0, G => 0, B => 0), 19267 => (R => 0, G => 0, B => 0), 19268 => (R => 0, G => 0, B => 0), 19269 => (R => 0, G => 0, B => 0), 19270 => (R => 0, G => 0, B => 0), 19271 => (R => 0, G => 0, B => 0), 19272 => (R => 0, G => 0, B => 0), 19273 => (R => 0, G => 0, B => 0), 19274 => (R => 0, G => 0, B => 0), 19275 => (R => 0, G => 0, B => 0), 19276 => (R => 0, G => 0, B => 0), 19277 => (R => 0, G => 0, B => 0), 19278 => (R => 0, G => 0, B => 0), 19279 => (R => 0, G => 0, B => 0), 19280 => (R => 0, G => 0, B => 0), 19281 => (R => 0, G => 0, B => 0), 19282 => (R => 0, G => 0, B => 0), 19283 => (R => 0, G => 0, B => 0), 19284 => (R => 0, G => 0, B => 0), 19285 => (R => 0, G => 0, B => 0), 19286 => (R => 0, G => 0, B => 0), 19287 => (R => 0, G => 0, B => 0), 19288 => (R => 0, G => 0, B => 0), 19289 => (R => 0, G => 0, B => 0), 19290 => (R => 0, G => 0, B => 0), 19291 => (R => 0, G => 0, B => 0), 19292 => (R => 0, G => 0, B => 0), 19293 => (R => 0, G => 0, B => 0), 19294 => (R => 0, G => 0, B => 0), 19295 => (R => 0, G => 0, B => 0), 19296 => (R => 0, G => 0, B => 0), 19297 => (R => 0, G => 0, B => 0), 19298 => (R => 0, G => 0, B => 0), 19299 => (R => 255, G => 0, B => 0), 19300 => (R => 255, G => 0, B => 0), 19301 => (R => 255, G => 0, B => 0), 19302 => (R => 0, G => 0, B => 0), 19303 => (R => 0, G => 0, B => 0), 19304 => (R => 0, G => 0, B => 0), 19305 => (R => 0, G => 0, B => 0), 19306 => (R => 0, G => 0, B => 0), 19307 => (R => 0, G => 0, B => 0), 19308 => (R => 0, G => 0, B => 0), 19309 => (R => 0, G => 0, B => 0), 19310 => (R => 0, G => 0, B => 0), 19311 => (R => 0, G => 0, B => 0), 19312 => (R => 0, G => 0, B => 0), 19313 => (R => 0, G => 0, B => 0), 19314 => (R => 0, G => 0, B => 0), 19315 => (R => 0, G => 0, B => 0), 19316 => (R => 0, G => 0, B => 0), 19317 => (R => 0, G => 0, B => 0), 19318 => (R => 0, G => 0, B => 0), 19319 => (R => 0, G => 0, B => 0), 19320 => (R => 0, G => 0, B => 0), 19321 => (R => 0, G => 0, B => 0), 19322 => (R => 0, G => 0, B => 0), 19323 => (R => 0, G => 0, B => 0), 19324 => (R => 0, G => 0, B => 0), 19325 => (R => 0, G => 0, B => 0), 19326 => (R => 0, G => 0, B => 0), 19327 => (R => 0, G => 0, B => 0), 19328 => (R => 0, G => 0, B => 0), 19329 => (R => 0, G => 0, B => 0), 19330 => (R => 0, G => 0, B => 0), 19331 => (R => 0, G => 0, B => 0), 19332 => (R => 0, G => 0, B => 0), 19333 => (R => 0, G => 0, B => 0), 19334 => (R => 0, G => 0, B => 0), 19335 => (R => 0, G => 0, B => 0), 19336 => (R => 0, G => 0, B => 0), 19337 => (R => 0, G => 0, B => 0), 19338 => (R => 0, G => 0, B => 0), 19339 => (R => 0, G => 0, B => 0), 19340 => (R => 0, G => 0, B => 0), 19341 => (R => 0, G => 0, B => 0), 19342 => (R => 0, G => 0, B => 0), 19343 => (R => 0, G => 0, B => 0), 19344 => (R => 0, G => 0, B => 0), 19345 => (R => 0, G => 0, B => 0), 19346 => (R => 0, G => 0, B => 0), 19347 => (R => 0, G => 0, B => 0), 19348 => (R => 0, G => 0, B => 0), 19349 => (R => 0, G => 0, B => 0), 19350 => (R => 0, G => 0, B => 0), 19351 => (R => 0, G => 0, B => 0), 19352 => (R => 0, G => 0, B => 0), 19353 => (R => 0, G => 0, B => 0), 19354 => (R => 0, G => 0, B => 0), 19355 => (R => 0, G => 0, B => 0), 19356 => (R => 0, G => 0, B => 0), 19357 => (R => 0, G => 0, B => 0), 19358 => (R => 0, G => 0, B => 0), 19359 => (R => 0, G => 0, B => 0), 19360 => (R => 0, G => 0, B => 0), 19361 => (R => 0, G => 0, B => 0), 19362 => (R => 0, G => 0, B => 0), 19363 => (R => 0, G => 0, B => 0), 19364 => (R => 0, G => 0, B => 0), 19365 => (R => 0, G => 0, B => 0), 19366 => (R => 0, G => 0, B => 0), 19367 => (R => 0, G => 0, B => 0), 19368 => (R => 0, G => 0, B => 0), 19369 => (R => 0, G => 0, B => 0), 19370 => (R => 0, G => 0, B => 0), 19371 => (R => 0, G => 0, B => 0), 19372 => (R => 0, G => 0, B => 0), 19373 => (R => 0, G => 0, B => 0), 19374 => (R => 0, G => 0, B => 0), 19375 => (R => 0, G => 0, B => 0), 19376 => (R => 0, G => 0, B => 0), 19377 => (R => 0, G => 0, B => 0), 19378 => (R => 0, G => 0, B => 0), 19379 => (R => 0, G => 0, B => 0), 19380 => (R => 0, G => 0, B => 0), 19381 => (R => 0, G => 0, B => 0), 19382 => (R => 0, G => 0, B => 0), 19383 => (R => 0, G => 0, B => 0), 19384 => (R => 0, G => 0, B => 0), 19385 => (R => 0, G => 0, B => 0), 19386 => (R => 0, G => 0, B => 0), 19387 => (R => 0, G => 0, B => 0), 19388 => (R => 0, G => 0, B => 0), 19389 => (R => 0, G => 0, B => 0), 19390 => (R => 0, G => 0, B => 0), 19391 => (R => 0, G => 0, B => 0), 19392 => (R => 0, G => 0, B => 0), 19393 => (R => 0, G => 0, B => 0), 19394 => (R => 0, G => 0, B => 0), 19395 => (R => 0, G => 0, B => 0), 19396 => (R => 0, G => 0, B => 0), 19397 => (R => 0, G => 0, B => 0), 19398 => (R => 0, G => 0, B => 0), 19399 => (R => 0, G => 0, B => 0), 19400 => (R => 0, G => 0, B => 0), 19401 => (R => 0, G => 0, B => 0), 19402 => (R => 0, G => 0, B => 0), 19403 => (R => 0, G => 0, B => 0), 19404 => (R => 0, G => 0, B => 0), 19405 => (R => 0, G => 0, B => 0), 19406 => (R => 0, G => 0, B => 0), 19407 => (R => 0, G => 0, B => 0), 19408 => (R => 0, G => 0, B => 0), 19409 => (R => 0, G => 0, B => 0), 19410 => (R => 0, G => 0, B => 0), 19411 => (R => 0, G => 0, B => 0), 19412 => (R => 0, G => 0, B => 0), 19413 => (R => 0, G => 0, B => 0), 19414 => (R => 0, G => 0, B => 0), 19415 => (R => 0, G => 0, B => 0), 19416 => (R => 0, G => 0, B => 0), 19417 => (R => 0, G => 0, B => 0), 19418 => (R => 0, G => 0, B => 0), 19419 => (R => 0, G => 0, B => 0), 19420 => (R => 0, G => 0, B => 0), 19421 => (R => 0, G => 0, B => 0), 19422 => (R => 0, G => 0, B => 0), 19423 => (R => 0, G => 0, B => 0), 19424 => (R => 0, G => 0, B => 0), 19425 => (R => 0, G => 0, B => 0), 19426 => (R => 0, G => 0, B => 0), 19427 => (R => 0, G => 0, B => 0), 19428 => (R => 0, G => 0, B => 0), 19429 => (R => 0, G => 0, B => 0), 19430 => (R => 0, G => 0, B => 0), 19431 => (R => 0, G => 0, B => 0), 19432 => (R => 0, G => 0, B => 0), 19433 => (R => 0, G => 0, B => 0), 19434 => (R => 0, G => 0, B => 0), 19435 => (R => 0, G => 0, B => 0), 19436 => (R => 0, G => 0, B => 0), 19437 => (R => 0, G => 0, B => 0), 19438 => (R => 0, G => 0, B => 0), 19439 => (R => 0, G => 0, B => 0), 19440 => (R => 0, G => 0, B => 0), 19441 => (R => 0, G => 0, B => 0), 19442 => (R => 0, G => 0, B => 0), 19443 => (R => 0, G => 0, B => 0), 19444 => (R => 0, G => 0, B => 0), 19445 => (R => 0, G => 0, B => 0), 19446 => (R => 0, G => 0, B => 0), 19447 => (R => 0, G => 0, B => 0), 19448 => (R => 0, G => 0, B => 0), 19449 => (R => 0, G => 0, B => 0), 19450 => (R => 0, G => 0, B => 0), 19451 => (R => 0, G => 0, B => 0), 19452 => (R => 0, G => 0, B => 0), 19453 => (R => 0, G => 0, B => 0), 19454 => (R => 0, G => 0, B => 0), 19455 => (R => 0, G => 0, B => 0), 19456 => (R => 0, G => 0, B => 0), 19457 => (R => 0, G => 0, B => 0), 19458 => (R => 0, G => 0, B => 0), 19459 => (R => 0, G => 0, B => 0), 19460 => (R => 0, G => 0, B => 0), 19461 => (R => 0, G => 0, B => 0), 19462 => (R => 0, G => 0, B => 0), 19463 => (R => 0, G => 0, B => 0), 19464 => (R => 0, G => 0, B => 0), 19465 => (R => 0, G => 0, B => 0), 19466 => (R => 0, G => 0, B => 0), 19467 => (R => 0, G => 0, B => 0), 19468 => (R => 0, G => 0, B => 0), 19469 => (R => 0, G => 0, B => 0), 19470 => (R => 0, G => 0, B => 0), 19471 => (R => 0, G => 0, B => 0), 19472 => (R => 0, G => 0, B => 0), 19473 => (R => 0, G => 0, B => 0), 19474 => (R => 0, G => 0, B => 0), 19475 => (R => 0, G => 0, B => 0), 19476 => (R => 0, G => 0, B => 0), 19477 => (R => 0, G => 0, B => 0), 19478 => (R => 0, G => 0, B => 0), 19479 => (R => 0, G => 0, B => 0), 19480 => (R => 0, G => 0, B => 0), 19481 => (R => 0, G => 0, B => 0), 19482 => (R => 0, G => 0, B => 0), 19483 => (R => 0, G => 0, B => 0), 19484 => (R => 0, G => 0, B => 0), 19485 => (R => 0, G => 0, B => 0), 19486 => (R => 0, G => 0, B => 0), 19487 => (R => 0, G => 0, B => 0), 19488 => (R => 0, G => 0, B => 0), 19489 => (R => 0, G => 0, B => 0), 19490 => (R => 0, G => 0, B => 0), 19491 => (R => 0, G => 0, B => 0), 19492 => (R => 0, G => 0, B => 0), 19493 => (R => 0, G => 0, B => 0), 19494 => (R => 0, G => 0, B => 0), 19495 => (R => 0, G => 0, B => 0), 19496 => (R => 0, G => 0, B => 0), 19497 => (R => 0, G => 0, B => 0), 19498 => (R => 0, G => 0, B => 0), 19499 => (R => 0, G => 0, B => 0), 19500 => (R => 0, G => 0, B => 0), 19501 => (R => 0, G => 0, B => 0), 19502 => (R => 0, G => 0, B => 0), 19503 => (R => 0, G => 0, B => 0), 19504 => (R => 0, G => 0, B => 0), 19505 => (R => 0, G => 0, B => 0), 19506 => (R => 0, G => 0, B => 0), 19507 => (R => 0, G => 0, B => 0), 19508 => (R => 0, G => 0, B => 0), 19509 => (R => 0, G => 0, B => 0), 19510 => (R => 0, G => 0, B => 0), 19511 => (R => 0, G => 0, B => 0), 19512 => (R => 0, G => 0, B => 0), 19513 => (R => 0, G => 0, B => 0), 19514 => (R => 0, G => 0, B => 0), 19515 => (R => 0, G => 0, B => 0), 19516 => (R => 0, G => 0, B => 0), 19517 => (R => 0, G => 0, B => 0), 19518 => (R => 0, G => 0, B => 0), 19519 => (R => 0, G => 0, B => 0), 19520 => (R => 0, G => 0, B => 0), 19521 => (R => 0, G => 0, B => 0), 19522 => (R => 0, G => 0, B => 0), 19523 => (R => 0, G => 0, B => 0), 19524 => (R => 0, G => 0, B => 0), 19525 => (R => 0, G => 0, B => 0), 19526 => (R => 0, G => 0, B => 0), 19527 => (R => 0, G => 0, B => 0), 19528 => (R => 0, G => 0, B => 0), 19529 => (R => 0, G => 0, B => 0), 19530 => (R => 0, G => 0, B => 0), 19531 => (R => 0, G => 0, B => 0), 19532 => (R => 0, G => 0, B => 0), 19533 => (R => 0, G => 0, B => 0), 19534 => (R => 0, G => 0, B => 0), 19535 => (R => 0, G => 0, B => 0), 19536 => (R => 0, G => 0, B => 0), 19537 => (R => 0, G => 0, B => 0), 19538 => (R => 0, G => 0, B => 0), 19539 => (R => 0, G => 0, B => 0), 19540 => (R => 0, G => 0, B => 0), 19541 => (R => 0, G => 0, B => 0), 19542 => (R => 0, G => 0, B => 0), 19543 => (R => 0, G => 0, B => 0), 19544 => (R => 0, G => 0, B => 0), 19545 => (R => 0, G => 0, B => 0), 19546 => (R => 0, G => 0, B => 0), 19547 => (R => 0, G => 0, B => 0), 19548 => (R => 0, G => 0, B => 0), 19549 => (R => 0, G => 0, B => 0), 19550 => (R => 0, G => 0, B => 0), 19551 => (R => 0, G => 0, B => 0), 19552 => (R => 0, G => 0, B => 0), 19553 => (R => 0, G => 0, B => 0), 19554 => (R => 0, G => 0, B => 0), 19555 => (R => 0, G => 0, B => 0), 19556 => (R => 0, G => 0, B => 0), 19557 => (R => 0, G => 0, B => 0), 19558 => (R => 0, G => 0, B => 0), 19559 => (R => 0, G => 0, B => 0), 19560 => (R => 0, G => 0, B => 0), 19561 => (R => 0, G => 0, B => 0), 19562 => (R => 0, G => 0, B => 0), 19563 => (R => 0, G => 0, B => 0), 19564 => (R => 0, G => 0, B => 0), 19565 => (R => 0, G => 0, B => 0), 19566 => (R => 0, G => 0, B => 0), 19567 => (R => 0, G => 0, B => 0), 19568 => (R => 0, G => 0, B => 0), 19569 => (R => 0, G => 0, B => 0), 19570 => (R => 0, G => 0, B => 0), 19571 => (R => 0, G => 0, B => 0), 19572 => (R => 0, G => 0, B => 0), 19573 => (R => 0, G => 0, B => 0), 19574 => (R => 0, G => 0, B => 0), 19575 => (R => 0, G => 0, B => 0), 19576 => (R => 0, G => 0, B => 0), 19577 => (R => 0, G => 0, B => 0), 19578 => (R => 0, G => 0, B => 0), 19579 => (R => 0, G => 0, B => 0), 19580 => (R => 0, G => 0, B => 0), 19581 => (R => 0, G => 0, B => 0), 19582 => (R => 0, G => 0, B => 0), 19583 => (R => 0, G => 0, B => 0), 19584 => (R => 0, G => 0, B => 0), 19585 => (R => 0, G => 0, B => 0), 19586 => (R => 0, G => 0, B => 0), 19587 => (R => 0, G => 0, B => 0), 19588 => (R => 0, G => 0, B => 0), 19589 => (R => 0, G => 0, B => 0), 19590 => (R => 0, G => 0, B => 0), 19591 => (R => 0, G => 0, B => 0), 19592 => (R => 0, G => 0, B => 0), 19593 => (R => 0, G => 0, B => 0), 19594 => (R => 0, G => 0, B => 0), 19595 => (R => 0, G => 0, B => 0), 19596 => (R => 0, G => 0, B => 0), 19597 => (R => 0, G => 0, B => 0), 19598 => (R => 0, G => 0, B => 0), 19599 => (R => 0, G => 0, B => 0), 19600 => (R => 0, G => 0, B => 0), 19601 => (R => 0, G => 0, B => 0), 19602 => (R => 0, G => 0, B => 0), 19603 => (R => 0, G => 0, B => 0), 19604 => (R => 0, G => 0, B => 0), 19605 => (R => 0, G => 0, B => 0), 19606 => (R => 0, G => 0, B => 0), 19607 => (R => 0, G => 0, B => 0), 19608 => (R => 0, G => 0, B => 0), 19609 => (R => 0, G => 0, B => 0), 19610 => (R => 0, G => 0, B => 0), 19611 => (R => 0, G => 0, B => 0), 19612 => (R => 0, G => 0, B => 0), 19613 => (R => 0, G => 0, B => 0), 19614 => (R => 0, G => 0, B => 0), 19615 => (R => 0, G => 0, B => 0), 19616 => (R => 0, G => 0, B => 0), 19617 => (R => 0, G => 0, B => 0), 19618 => (R => 0, G => 0, B => 0), 19619 => (R => 0, G => 0, B => 0), 19620 => (R => 0, G => 0, B => 0), 19621 => (R => 0, G => 0, B => 0), 19622 => (R => 0, G => 0, B => 0), 19623 => (R => 0, G => 0, B => 0), 19624 => (R => 0, G => 0, B => 0), 19625 => (R => 0, G => 0, B => 0), 19626 => (R => 0, G => 0, B => 0), 19627 => (R => 0, G => 0, B => 0), 19628 => (R => 0, G => 0, B => 0), 19629 => (R => 0, G => 0, B => 0), 19630 => (R => 0, G => 0, B => 0), 19631 => (R => 0, G => 0, B => 0), 19632 => (R => 0, G => 0, B => 0), 19633 => (R => 0, G => 0, B => 0), 19634 => (R => 0, G => 0, B => 0), 19635 => (R => 0, G => 0, B => 0), 19636 => (R => 0, G => 0, B => 0), 19637 => (R => 0, G => 0, B => 0), 19638 => (R => 0, G => 0, B => 0), 19639 => (R => 0, G => 0, B => 0), 19640 => (R => 0, G => 0, B => 0), 19641 => (R => 0, G => 0, B => 0), 19642 => (R => 0, G => 0, B => 0), 19643 => (R => 0, G => 0, B => 0), 19644 => (R => 0, G => 0, B => 0), 19645 => (R => 0, G => 0, B => 0), 19646 => (R => 0, G => 0, B => 0), 19647 => (R => 0, G => 0, B => 0), 19648 => (R => 0, G => 0, B => 0), 19649 => (R => 0, G => 0, B => 0), 19650 => (R => 0, G => 0, B => 0), 19651 => (R => 0, G => 0, B => 0), 19652 => (R => 0, G => 0, B => 0), 19653 => (R => 0, G => 0, B => 0), 19654 => (R => 0, G => 0, B => 0), 19655 => (R => 0, G => 0, B => 0), 19656 => (R => 0, G => 0, B => 0), 19657 => (R => 0, G => 0, B => 0), 19658 => (R => 0, G => 0, B => 0), 19659 => (R => 0, G => 0, B => 0), 19660 => (R => 0, G => 0, B => 0), 19661 => (R => 0, G => 0, B => 0), 19662 => (R => 0, G => 0, B => 0), 19663 => (R => 0, G => 0, B => 0), 19664 => (R => 0, G => 0, B => 0), 19665 => (R => 0, G => 0, B => 0), 19666 => (R => 0, G => 0, B => 0), 19667 => (R => 0, G => 0, B => 0), 19668 => (R => 0, G => 0, B => 0), 19669 => (R => 0, G => 0, B => 0), 19670 => (R => 0, G => 0, B => 0), 19671 => (R => 0, G => 0, B => 0), 19672 => (R => 0, G => 0, B => 0), 19673 => (R => 0, G => 0, B => 0), 19674 => (R => 0, G => 0, B => 0), 19675 => (R => 0, G => 0, B => 0), 19676 => (R => 0, G => 0, B => 0), 19677 => (R => 0, G => 0, B => 0), 19678 => (R => 0, G => 0, B => 0), 19679 => (R => 0, G => 0, B => 0), 19680 => (R => 0, G => 0, B => 0), 19681 => (R => 0, G => 0, B => 0), 19682 => (R => 0, G => 0, B => 0), 19683 => (R => 0, G => 0, B => 0), 19684 => (R => 0, G => 0, B => 0), 19685 => (R => 0, G => 0, B => 0), 19686 => (R => 0, G => 0, B => 0), 19687 => (R => 0, G => 0, B => 0), 19688 => (R => 0, G => 0, B => 0), 19689 => (R => 0, G => 0, B => 0), 19690 => (R => 0, G => 0, B => 0), 19691 => (R => 0, G => 0, B => 0), 19692 => (R => 0, G => 0, B => 0), 19693 => (R => 0, G => 0, B => 0), 19694 => (R => 0, G => 0, B => 0), 19695 => (R => 0, G => 0, B => 0), 19696 => (R => 0, G => 0, B => 0), 19697 => (R => 0, G => 0, B => 0), 19698 => (R => 0, G => 0, B => 0), 19699 => (R => 0, G => 0, B => 0), 19700 => (R => 0, G => 0, B => 0), 19701 => (R => 0, G => 0, B => 0), 19702 => (R => 0, G => 0, B => 0), 19703 => (R => 0, G => 0, B => 0), 19704 => (R => 0, G => 0, B => 0), 19705 => (R => 0, G => 0, B => 0), 19706 => (R => 0, G => 0, B => 0), 19707 => (R => 0, G => 0, B => 0), 19708 => (R => 0, G => 0, B => 0), 19709 => (R => 0, G => 0, B => 0), 19710 => (R => 0, G => 0, B => 0), 19711 => (R => 0, G => 0, B => 0), 19712 => (R => 0, G => 0, B => 0), 19713 => (R => 0, G => 0, B => 0), 19714 => (R => 0, G => 0, B => 0), 19715 => (R => 0, G => 0, B => 0), 19716 => (R => 0, G => 0, B => 0), 19717 => (R => 0, G => 0, B => 0), 19718 => (R => 0, G => 0, B => 0), 19719 => (R => 0, G => 0, B => 0), 19720 => (R => 0, G => 0, B => 0), 19721 => (R => 0, G => 0, B => 0), 19722 => (R => 0, G => 0, B => 0), 19723 => (R => 0, G => 0, B => 0), 19724 => (R => 0, G => 0, B => 0), 19725 => (R => 0, G => 0, B => 0), 19726 => (R => 0, G => 0, B => 0), 19727 => (R => 0, G => 0, B => 0), 19728 => (R => 0, G => 0, B => 0), 19729 => (R => 0, G => 0, B => 0), 19730 => (R => 0, G => 0, B => 0), 19731 => (R => 0, G => 0, B => 0), 19732 => (R => 0, G => 0, B => 0), 19733 => (R => 0, G => 0, B => 0), 19734 => (R => 0, G => 0, B => 0), 19735 => (R => 0, G => 0, B => 0), 19736 => (R => 0, G => 0, B => 0), 19737 => (R => 0, G => 0, B => 0), 19738 => (R => 0, G => 0, B => 0), 19739 => (R => 0, G => 0, B => 0), 19740 => (R => 0, G => 0, B => 0), 19741 => (R => 0, G => 0, B => 0), 19742 => (R => 0, G => 0, B => 0), 19743 => (R => 0, G => 0, B => 0), 19744 => (R => 0, G => 0, B => 0), 19745 => (R => 0, G => 0, B => 0), 19746 => (R => 0, G => 0, B => 0), 19747 => (R => 0, G => 0, B => 0), 19748 => (R => 0, G => 0, B => 0), 19749 => (R => 0, G => 0, B => 0), 19750 => (R => 0, G => 0, B => 0), 19751 => (R => 0, G => 0, B => 0), 19752 => (R => 0, G => 0, B => 0), 19753 => (R => 0, G => 0, B => 0), 19754 => (R => 0, G => 0, B => 0), 19755 => (R => 0, G => 0, B => 0), 19756 => (R => 0, G => 0, B => 0), 19757 => (R => 0, G => 0, B => 0), 19758 => (R => 0, G => 0, B => 0), 19759 => (R => 0, G => 0, B => 0), 19760 => (R => 0, G => 0, B => 0), 19761 => (R => 0, G => 0, B => 0), 19762 => (R => 0, G => 0, B => 0), 19763 => (R => 0, G => 0, B => 0), 19764 => (R => 0, G => 0, B => 0), 19765 => (R => 0, G => 0, B => 0), 19766 => (R => 0, G => 0, B => 0), 19767 => (R => 0, G => 0, B => 0), 19768 => (R => 0, G => 0, B => 0), 19769 => (R => 0, G => 0, B => 0), 19770 => (R => 0, G => 0, B => 0), 19771 => (R => 0, G => 0, B => 0), 19772 => (R => 0, G => 0, B => 0), 19773 => (R => 0, G => 0, B => 0), 19774 => (R => 0, G => 0, B => 0), 19775 => (R => 0, G => 0, B => 0), 19776 => (R => 0, G => 0, B => 0), 19777 => (R => 0, G => 0, B => 0), 19778 => (R => 0, G => 0, B => 0), 19779 => (R => 0, G => 0, B => 0), 19780 => (R => 0, G => 0, B => 0), 19781 => (R => 0, G => 0, B => 0), 19782 => (R => 0, G => 0, B => 0), 19783 => (R => 0, G => 0, B => 0), 19784 => (R => 0, G => 0, B => 0), 19785 => (R => 0, G => 0, B => 0), 19786 => (R => 0, G => 0, B => 0), 19787 => (R => 0, G => 0, B => 0), 19788 => (R => 0, G => 0, B => 0), 19789 => (R => 0, G => 0, B => 0), 19790 => (R => 0, G => 0, B => 0), 19791 => (R => 0, G => 0, B => 0), 19792 => (R => 0, G => 0, B => 0), 19793 => (R => 0, G => 0, B => 0), 19794 => (R => 0, G => 0, B => 0), 19795 => (R => 0, G => 0, B => 0), 19796 => (R => 0, G => 0, B => 0), 19797 => (R => 0, G => 0, B => 0), 19798 => (R => 0, G => 0, B => 0), 19799 => (R => 0, G => 0, B => 0), 19800 => (R => 0, G => 0, B => 0), 19801 => (R => 0, G => 0, B => 0), 19802 => (R => 0, G => 0, B => 0), 19803 => (R => 0, G => 0, B => 0), 19804 => (R => 0, G => 0, B => 0), 19805 => (R => 0, G => 0, B => 0), 19806 => (R => 0, G => 0, B => 0), 19807 => (R => 0, G => 0, B => 0), 19808 => (R => 0, G => 0, B => 0), 19809 => (R => 0, G => 0, B => 0), 19810 => (R => 0, G => 0, B => 0), 19811 => (R => 0, G => 0, B => 0), 19812 => (R => 0, G => 0, B => 0), 19813 => (R => 0, G => 0, B => 0), 19814 => (R => 0, G => 0, B => 0), 19815 => (R => 0, G => 0, B => 0), 19816 => (R => 0, G => 0, B => 0), 19817 => (R => 0, G => 0, B => 0), 19818 => (R => 0, G => 0, B => 0), 19819 => (R => 0, G => 0, B => 0), 19820 => (R => 0, G => 0, B => 0), 19821 => (R => 0, G => 0, B => 0), 19822 => (R => 0, G => 0, B => 0), 19823 => (R => 0, G => 0, B => 0), 19824 => (R => 0, G => 0, B => 0), 19825 => (R => 0, G => 0, B => 0), 19826 => (R => 0, G => 0, B => 0), 19827 => (R => 0, G => 0, B => 0), 19828 => (R => 0, G => 0, B => 0), 19829 => (R => 0, G => 0, B => 0), 19830 => (R => 0, G => 0, B => 0), 19831 => (R => 0, G => 0, B => 0), 19832 => (R => 0, G => 0, B => 0), 19833 => (R => 0, G => 0, B => 0), 19834 => (R => 0, G => 0, B => 0), 19835 => (R => 0, G => 0, B => 0), 19836 => (R => 0, G => 0, B => 0), 19837 => (R => 0, G => 0, B => 0), 19838 => (R => 0, G => 0, B => 0), 19839 => (R => 0, G => 0, B => 0), 19840 => (R => 0, G => 0, B => 0), 19841 => (R => 0, G => 0, B => 0), 19842 => (R => 0, G => 0, B => 0), 19843 => (R => 0, G => 0, B => 0), 19844 => (R => 0, G => 0, B => 0), 19845 => (R => 0, G => 0, B => 0), 19846 => (R => 0, G => 0, B => 0), 19847 => (R => 0, G => 0, B => 0), 19848 => (R => 0, G => 0, B => 0), 19849 => (R => 0, G => 0, B => 0), 19850 => (R => 0, G => 0, B => 0), 19851 => (R => 0, G => 0, B => 0), 19852 => (R => 0, G => 0, B => 0), 19853 => (R => 0, G => 0, B => 0), 19854 => (R => 0, G => 0, B => 0), 19855 => (R => 0, G => 0, B => 0), 19856 => (R => 0, G => 0, B => 0), 19857 => (R => 0, G => 0, B => 0), 19858 => (R => 0, G => 0, B => 0), 19859 => (R => 0, G => 0, B => 0), 19860 => (R => 0, G => 0, B => 0), 19861 => (R => 0, G => 0, B => 0), 19862 => (R => 0, G => 0, B => 0), 19863 => (R => 0, G => 0, B => 0), 19864 => (R => 0, G => 0, B => 0), 19865 => (R => 0, G => 0, B => 0), 19866 => (R => 0, G => 0, B => 0), 19867 => (R => 0, G => 0, B => 0), 19868 => (R => 0, G => 0, B => 0), 19869 => (R => 0, G => 0, B => 0), 19870 => (R => 0, G => 0, B => 0), 19871 => (R => 0, G => 0, B => 0), 19872 => (R => 0, G => 0, B => 0), 19873 => (R => 0, G => 0, B => 0), 19874 => (R => 0, G => 0, B => 0), 19875 => (R => 0, G => 0, B => 0), 19876 => (R => 0, G => 0, B => 0), 19877 => (R => 0, G => 0, B => 0), 19878 => (R => 0, G => 0, B => 0), 19879 => (R => 0, G => 0, B => 0), 19880 => (R => 0, G => 0, B => 0), 19881 => (R => 0, G => 0, B => 0), 19882 => (R => 0, G => 0, B => 0), 19883 => (R => 0, G => 0, B => 0), 19884 => (R => 0, G => 0, B => 0), 19885 => (R => 0, G => 0, B => 0), 19886 => (R => 0, G => 0, B => 0), 19887 => (R => 0, G => 0, B => 0), 19888 => (R => 0, G => 0, B => 0), 19889 => (R => 0, G => 0, B => 0), 19890 => (R => 0, G => 0, B => 0), 19891 => (R => 0, G => 0, B => 0), 19892 => (R => 0, G => 0, B => 0), 19893 => (R => 0, G => 0, B => 0), 19894 => (R => 0, G => 0, B => 0), 19895 => (R => 0, G => 0, B => 0), 19896 => (R => 0, G => 0, B => 0), 19897 => (R => 0, G => 0, B => 0), 19898 => (R => 0, G => 0, B => 0), 19899 => (R => 0, G => 0, B => 0), 19900 => (R => 0, G => 0, B => 0), 19901 => (R => 0, G => 0, B => 0), 19902 => (R => 0, G => 0, B => 0), 19903 => (R => 0, G => 0, B => 0), 19904 => (R => 0, G => 0, B => 0), 19905 => (R => 0, G => 0, B => 0), 19906 => (R => 0, G => 0, B => 0), 19907 => (R => 0, G => 0, B => 0), 19908 => (R => 0, G => 0, B => 0), 19909 => (R => 0, G => 0, B => 0), 19910 => (R => 0, G => 0, B => 0), 19911 => (R => 0, G => 0, B => 0), 19912 => (R => 0, G => 0, B => 0), 19913 => (R => 0, G => 0, B => 0), 19914 => (R => 0, G => 0, B => 0), 19915 => (R => 0, G => 0, B => 0), 19916 => (R => 0, G => 0, B => 0), 19917 => (R => 0, G => 0, B => 0), 19918 => (R => 0, G => 0, B => 0), 19919 => (R => 0, G => 0, B => 0), 19920 => (R => 0, G => 0, B => 0), 19921 => (R => 0, G => 0, B => 0), 19922 => (R => 0, G => 0, B => 0), 19923 => (R => 0, G => 0, B => 0), 19924 => (R => 0, G => 0, B => 0), 19925 => (R => 0, G => 0, B => 0), 19926 => (R => 0, G => 0, B => 0), 19927 => (R => 0, G => 0, B => 0), 19928 => (R => 0, G => 0, B => 0), 19929 => (R => 0, G => 0, B => 0), 19930 => (R => 0, G => 0, B => 0), 19931 => (R => 0, G => 0, B => 0), 19932 => (R => 0, G => 0, B => 0), 19933 => (R => 0, G => 0, B => 0), 19934 => (R => 0, G => 0, B => 0), 19935 => (R => 0, G => 0, B => 0), 19936 => (R => 0, G => 0, B => 0), 19937 => (R => 0, G => 0, B => 0), 19938 => (R => 0, G => 0, B => 0), 19939 => (R => 0, G => 0, B => 0), 19940 => (R => 0, G => 0, B => 0), 19941 => (R => 0, G => 0, B => 0), 19942 => (R => 0, G => 0, B => 0), 19943 => (R => 0, G => 0, B => 0), 19944 => (R => 0, G => 0, B => 0), 19945 => (R => 0, G => 0, B => 0), 19946 => (R => 0, G => 0, B => 0), 19947 => (R => 0, G => 0, B => 0), 19948 => (R => 0, G => 0, B => 0), 19949 => (R => 0, G => 0, B => 0), 19950 => (R => 0, G => 0, B => 0), 19951 => (R => 0, G => 0, B => 0), 19952 => (R => 0, G => 0, B => 0), 19953 => (R => 0, G => 0, B => 0), 19954 => (R => 0, G => 0, B => 0), 19955 => (R => 0, G => 0, B => 0), 19956 => (R => 0, G => 0, B => 0), 19957 => (R => 0, G => 0, B => 0), 19958 => (R => 0, G => 0, B => 0), 19959 => (R => 0, G => 0, B => 0), 19960 => (R => 0, G => 0, B => 0), 19961 => (R => 0, G => 0, B => 0), 19962 => (R => 0, G => 0, B => 0), 19963 => (R => 0, G => 0, B => 0), 19964 => (R => 0, G => 0, B => 0), 19965 => (R => 0, G => 0, B => 0), 19966 => (R => 0, G => 0, B => 0), 19967 => (R => 0, G => 0, B => 0), 19968 => (R => 0, G => 0, B => 0), 19969 => (R => 0, G => 0, B => 0), 19970 => (R => 0, G => 0, B => 0), 19971 => (R => 0, G => 0, B => 0), 19972 => (R => 0, G => 0, B => 0), 19973 => (R => 0, G => 0, B => 0), 19974 => (R => 0, G => 0, B => 0), 19975 => (R => 0, G => 0, B => 0), 19976 => (R => 0, G => 0, B => 0), 19977 => (R => 0, G => 0, B => 0), 19978 => (R => 0, G => 0, B => 0), 19979 => (R => 0, G => 0, B => 0), 19980 => (R => 0, G => 0, B => 0), 19981 => (R => 0, G => 0, B => 0), 19982 => (R => 0, G => 0, B => 0), 19983 => (R => 0, G => 0, B => 0), 19984 => (R => 0, G => 0, B => 0), 19985 => (R => 0, G => 0, B => 0), 19986 => (R => 0, G => 0, B => 0), 19987 => (R => 0, G => 0, B => 0), 19988 => (R => 0, G => 0, B => 0), 19989 => (R => 0, G => 0, B => 0), 19990 => (R => 0, G => 0, B => 0), 19991 => (R => 0, G => 0, B => 0), 19992 => (R => 0, G => 0, B => 0), 19993 => (R => 0, G => 0, B => 0), 19994 => (R => 0, G => 0, B => 0), 19995 => (R => 0, G => 0, B => 0), 19996 => (R => 0, G => 0, B => 0), 19997 => (R => 0, G => 0, B => 0), 19998 => (R => 0, G => 0, B => 0), 19999 => (R => 0, G => 0, B => 0), 20000 => (R => 0, G => 0, B => 0)); Image : constant Giza.Image.Ref := new Giza.Image.DMA2D.Instance' (Mode => RGB888, W => 200, H => 100, Length => 20000, RGB888_Data => Data'Access); pragma Style_Checks (On); end down_200x100;
45.33733
87
0.250525
fbecf2e99ab47ee58018b26da16186497b20301e
4,852
adb
Ada
source/nodes/program-nodes-pragmas.adb
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-pragmas.adb
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/nodes/program-nodes-pragmas.adb
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
2
2019-09-14T23:18:50.000Z
2019-10-02T10:11:40.000Z
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Pragmas is function Create (Pragma_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Name : not null Program.Elements.Identifiers .Identifier_Access; Left_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access; Arguments : Program.Elements.Parameter_Associations .Parameter_Association_Vector_Access; Right_Bracket_Token : Program.Lexical_Elements.Lexical_Element_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Pragma_Element is begin return Result : Pragma_Element := (Pragma_Token => Pragma_Token, Name => Name, Left_Bracket_Token => Left_Bracket_Token, Arguments => Arguments, Right_Bracket_Token => Right_Bracket_Token, Semicolon_Token => Semicolon_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Name : not null Program.Elements.Identifiers .Identifier_Access; Arguments : Program.Elements.Parameter_Associations .Parameter_Association_Vector_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Pragma is begin return Result : Implicit_Pragma := (Name => Name, Arguments => Arguments, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Name (Self : Base_Pragma) return not null Program.Elements.Identifiers.Identifier_Access is begin return Self.Name; end Name; overriding function Arguments (Self : Base_Pragma) return Program.Elements.Parameter_Associations .Parameter_Association_Vector_Access is begin return Self.Arguments; end Arguments; overriding function Pragma_Token (Self : Pragma_Element) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Pragma_Token; end Pragma_Token; overriding function Left_Bracket_Token (Self : Pragma_Element) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Left_Bracket_Token; end Left_Bracket_Token; overriding function Right_Bracket_Token (Self : Pragma_Element) return Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Right_Bracket_Token; end Right_Bracket_Token; overriding function Semicolon_Token (Self : Pragma_Element) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Semicolon_Token; end Semicolon_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Pragma) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Pragma) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Pragma) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Pragma'Class) is begin Set_Enclosing_Element (Self.Name, Self'Unchecked_Access); for Item in Self.Arguments.Each_Element loop Set_Enclosing_Element (Item.Element, Self'Unchecked_Access); end loop; null; end Initialize; overriding function Is_Pragma_Element (Self : Base_Pragma) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Pragma_Element; overriding procedure Visit (Self : not null access Base_Pragma; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Pragma_Element (Self); end Visit; overriding function To_Pragma_Text (Self : aliased in out Pragma_Element) return Program.Elements.Pragmas.Pragma_Text_Access is begin return Self'Unchecked_Access; end To_Pragma_Text; overriding function To_Pragma_Text (Self : aliased in out Implicit_Pragma) return Program.Elements.Pragmas.Pragma_Text_Access is pragma Unreferenced (Self); begin return null; end To_Pragma_Text; end Program.Nodes.Pragmas;
31.506494
79
0.704658
23c4eea3de16fa0a1279e1521b84a5e573d2009b
572
ads
Ada
tests/halloffame-test_data.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
80
2017-04-08T23:14:07.000Z
2022-02-10T22:30:51.000Z
tests/halloffame-test_data.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
89
2017-06-24T08:18:26.000Z
2021-11-12T04:37:36.000Z
tests/halloffame-test_data.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
9
2018-04-14T16:37:25.000Z
2020-03-21T14:33:49.000Z
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. with AUnit.Test_Fixtures; package HallOfFame.Test_Data is -- begin read only type Test is new AUnit.Test_Fixtures.Test_Fixture -- end read only with null record; procedure Set_Up(Gnattest_T: in out Test); procedure Tear_Down(Gnattest_T: in out Test); end HallOfFame.Test_Data;
30.105263
75
0.758741
1c15d98065e9d74258ec0c5c3dcff28c9318f0e0
216
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/inline2.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/inline2.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/inline2.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { dg-do compile } -- { dg-options "-O -gnatn -Winline" } with Inline2_Pkg; use Inline2_Pkg; procedure Inline2 is F : Float := Invalid_Real; begin if Valid_Real (F) then F := F + 1.0; end if; end;
16.615385
38
0.611111
201ef4fd9329a721e5830c652d6802e9c0eef781
4,375
adb
Ada
testsuite/league/additional_normalization_test.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
testsuite/league/additional_normalization_test.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
testsuite/league/additional_normalization_test.adb
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Testsuite Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2009-2011, 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.Text_IO; with League.Application; with League.Strings.Debug; procedure Additional_Normalization_Test is use League.Strings; use League.Strings.Debug; S : Universal_String := To_Universal_String (Wide_Wide_Character'Val (16#0FB2#) & Wide_Wide_Character'Val (16#0591#) & Wide_Wide_Character'Val (16#0F81#) & Wide_Wide_Character'Val (16#0061#)); D : Universal_String := S.To_NFD; E : Universal_String := To_Universal_String (Wide_Wide_Character'Val (16#0FB2#) & Wide_Wide_Character'Val (16#0F71#) & Wide_Wide_Character'Val (16#0F80#) & Wide_Wide_Character'Val (16#0591#) & Wide_Wide_Character'Val (16#0061#)); begin if D /= E then Ada.Text_IO.Put_Line ("S => " & Debug_Image (S)); Ada.Text_IO.Put_Line ("NFD (S) => " & Debug_Image (D)); Ada.Text_IO.Put_Line ("Expected => " & Debug_Image (E)); raise Program_Error; end if; end Additional_Normalization_Test;
56.089744
78
0.452114
39f5a14e4cc0e7bc048456d92c901d2903ad0805
10,440
ads
Ada
src/gen/gstreamer-gst_low_level-gstreamer_0_10_gst_app_gstappsrc_h.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
1
2018-01-18T00:51:00.000Z
2018-01-18T00:51:00.000Z
src/gen/gstreamer-gst_low_level-gstreamer_0_10_gst_app_gstappsrc_h.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
null
null
null
src/gen/gstreamer-gst_low_level-gstreamer_0_10_gst_app_gstappsrc_h.ads
persan/A-gst
7a39693d105617adea52680424c862a1a08f7368
[ "Apache-2.0" ]
null
null
null
pragma Ada_2005; pragma Style_Checks (Off); pragma Warnings (Off); with Interfaces.C; use Interfaces.C; with glib; with glib.Values; with System; with GLIB; -- with GStreamer.GST_Low_Level.glibconfig_h; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_base_gstbasesrc_h; with System; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h; with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h; with glib; limited with GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstcaps_h; package GStreamer.GST_Low_Level.gstreamer_0_10_gst_app_gstappsrc_h is -- unsupported macro: GST_TYPE_APP_SRC (gst_app_src_get_type()) -- arg-macro: function GST_APP_SRC (obj) -- return G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_APP_SRC,GstAppSrc); -- arg-macro: function GST_APP_SRC_CLASS (klass) -- return G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_APP_SRC,GstAppSrcClass); -- arg-macro: function GST_IS_APP_SRC (obj) -- return G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_APP_SRC); -- arg-macro: function GST_IS_APP_SRC_CLASS (klass) -- return G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_APP_SRC); -- arg-macro: function GST_APP_SRC_CAST (obj) -- return (GstAppSrc*)(obj); -- unsupported macro: GST_TYPE_APP_STREAM_TYPE (gst_app_stream_type_get_type ()) -- GStreamer -- * Copyright (C) 2007 David Schleef <[email protected]> -- * -- * This library is free software; you can redistribute it and/or -- * modify it under the terms of the GNU Library 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 -- * Library General Public License for more details. -- * -- * You should have received a copy of the GNU Library 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. -- -- Since 0.10.23 type GstAppSrc; type u_GstAppSrc_u_gst_reserved_array is array (0 .. 3) of System.Address; --subtype GstAppSrc is u_GstAppSrc; -- gst/app/gstappsrc.h:42 type GstAppSrcClass; type u_GstAppSrcClass_u_gst_reserved_array is array (0 .. 3) of System.Address; --subtype GstAppSrcClass is u_GstAppSrcClass; -- gst/app/gstappsrc.h:43 -- skipped empty struct u_GstAppSrcPrivate -- skipped empty struct GstAppSrcPrivate --* -- * GstAppSrcCallbacks: -- * @need_data: Called when the appsrc needs more data. A buffer or EOS should be -- * pushed to appsrc from this thread or another thread. @length is just a hint -- * and when it is set to -1, any number of bytes can be pushed into @appsrc. -- * @enough_data: Called when appsrc has enough data. It is recommended that the -- * application stops calling push-buffer until the need_data callback is -- * emitted again to avoid excessive buffer queueing. -- * @seek_data: Called when a seek should be performed to the offset. -- * The next push-buffer should produce buffers from the new @offset. -- * This callback is only called for seekable stream types. -- * -- * A set of callbacks that can be installed on the appsrc with -- * gst_app_src_set_callbacks(). -- * -- * Since: 0.10.23 -- type GstAppSrcCallbacks_u_gst_reserved_array is array (0 .. 3) of System.Address; type GstAppSrcCallbacks is record need_data : access procedure (arg1 : access GstAppSrc; arg2 : GLIB.guint; arg3 : System.Address); -- gst/app/gstappsrc.h:64 enough_data : access procedure (arg1 : access GstAppSrc; arg2 : System.Address); -- gst/app/gstappsrc.h:65 seek_data : access function (arg1 : access GstAppSrc; arg2 : GLIB.guint64; arg3 : System.Address) return GLIB.gboolean; -- gst/app/gstappsrc.h:66 u_gst_reserved : GstAppSrcCallbacks_u_gst_reserved_array; -- gst/app/gstappsrc.h:69 end record; pragma Convention (C_Pass_By_Copy, GstAppSrcCallbacks); -- gst/app/gstappsrc.h:70 -- skipped anonymous struct anon_371 --< private > --* -- * GstAppStreamType: -- * @GST_APP_STREAM_TYPE_STREAM: No seeking is supported in the stream, such as a -- * live stream. -- * @GST_APP_STREAM_TYPE_SEEKABLE: The stream is seekable but seeking might not -- * be very fast, such as data from a webserver. -- * @GST_APP_STREAM_TYPE_RANDOM_ACCESS: The stream is seekable and seeking is fast, -- * such as in a local file. -- * -- * The stream type. -- type GstAppStreamType is (GST_APP_STREAM_TYPE_STREAM, GST_APP_STREAM_TYPE_SEEKABLE, GST_APP_STREAM_TYPE_RANDOM_ACCESS); pragma Convention (C, GstAppStreamType); -- gst/app/gstappsrc.h:88 type GstAppSrc is record basesrc : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_base_gstbasesrc_h.GstBaseSrc; -- gst/app/gstappsrc.h:92 priv : System.Address; -- gst/app/gstappsrc.h:95 u_gst_reserved : u_GstAppSrc_u_gst_reserved_array; -- gst/app/gstappsrc.h:98 end record; pragma Convention (C_Pass_By_Copy, GstAppSrc); -- gst/app/gstappsrc.h:90 --< private > --< private > type GstAppSrcClass is record basesrc_class : aliased GStreamer.GST_Low_Level.gstreamer_0_10_gst_base_gstbasesrc_h.GstBaseSrcClass; -- gst/app/gstappsrc.h:103 need_data : access procedure (arg1 : access GstAppSrc; arg2 : GLIB.guint); -- gst/app/gstappsrc.h:106 enough_data : access procedure (arg1 : access GstAppSrc); -- gst/app/gstappsrc.h:107 seek_data : access function (arg1 : access GstAppSrc; arg2 : GLIB.guint64) return GLIB.gboolean; -- gst/app/gstappsrc.h:108 push_buffer : access function (arg1 : access GstAppSrc; arg2 : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBuffer) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/app/gstappsrc.h:111 end_of_stream : access function (arg1 : access GstAppSrc) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/app/gstappsrc.h:112 u_gst_reserved : u_GstAppSrcClass_u_gst_reserved_array; -- gst/app/gstappsrc.h:115 end record; pragma Convention (C_Pass_By_Copy, GstAppSrcClass); -- gst/app/gstappsrc.h:101 -- signals -- actions --< private > function gst_app_src_get_type return GLIB.GType; -- gst/app/gstappsrc.h:118 pragma Import (C, gst_app_src_get_type, "gst_app_src_get_type"); -- GType getter for GstAppStreamType, since 0.10.32 function gst_app_stream_type_get_type return GLIB.GType; -- gst/app/gstappsrc.h:122 pragma Import (C, gst_app_stream_type_get_type, "gst_app_stream_type_get_type"); procedure gst_app_src_set_caps (appsrc : access GstAppSrc; caps : access constant GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstcaps_h.GstCaps); -- gst/app/gstappsrc.h:124 pragma Import (C, gst_app_src_set_caps, "gst_app_src_set_caps"); function gst_app_src_get_caps (appsrc : access GstAppSrc) return access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstcaps_h.GstCaps; -- gst/app/gstappsrc.h:125 pragma Import (C, gst_app_src_get_caps, "gst_app_src_get_caps"); procedure gst_app_src_set_size (appsrc : access GstAppSrc; size : GLIB.gint64); -- gst/app/gstappsrc.h:127 pragma Import (C, gst_app_src_set_size, "gst_app_src_set_size"); function gst_app_src_get_size (appsrc : access GstAppSrc) return GLIB.gint64; -- gst/app/gstappsrc.h:128 pragma Import (C, gst_app_src_get_size, "gst_app_src_get_size"); procedure gst_app_src_set_stream_type (appsrc : access GstAppSrc; c_type : GstAppStreamType); -- gst/app/gstappsrc.h:130 pragma Import (C, gst_app_src_set_stream_type, "gst_app_src_set_stream_type"); function gst_app_src_get_stream_type (appsrc : access GstAppSrc) return GstAppStreamType; -- gst/app/gstappsrc.h:131 pragma Import (C, gst_app_src_get_stream_type, "gst_app_src_get_stream_type"); procedure gst_app_src_set_max_bytes (appsrc : access GstAppSrc; max : GLIB.guint64); -- gst/app/gstappsrc.h:133 pragma Import (C, gst_app_src_set_max_bytes, "gst_app_src_set_max_bytes"); function gst_app_src_get_max_bytes (appsrc : access GstAppSrc) return GLIB.guint64; -- gst/app/gstappsrc.h:134 pragma Import (C, gst_app_src_get_max_bytes, "gst_app_src_get_max_bytes"); procedure gst_app_src_set_latency (appsrc : access GstAppSrc; min : GLIB.guint64; max : GLIB.guint64); -- gst/app/gstappsrc.h:136 pragma Import (C, gst_app_src_set_latency, "gst_app_src_set_latency"); procedure gst_app_src_get_latency (appsrc : access GstAppSrc; min : access GLIB.guint64; max : access GLIB.guint64); -- gst/app/gstappsrc.h:137 pragma Import (C, gst_app_src_get_latency, "gst_app_src_get_latency"); procedure gst_app_src_set_emit_signals (appsrc : access GstAppSrc; emit : GLIB.gboolean); -- gst/app/gstappsrc.h:139 pragma Import (C, gst_app_src_set_emit_signals, "gst_app_src_set_emit_signals"); function gst_app_src_get_emit_signals (appsrc : access GstAppSrc) return GLIB.gboolean; -- gst/app/gstappsrc.h:140 pragma Import (C, gst_app_src_get_emit_signals, "gst_app_src_get_emit_signals"); function gst_app_src_push_buffer (appsrc : access GstAppSrc; buffer : access GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstbuffer_h.GstBuffer) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/app/gstappsrc.h:142 pragma Import (C, gst_app_src_push_buffer, "gst_app_src_push_buffer"); function gst_app_src_end_of_stream (appsrc : access GstAppSrc) return GStreamer.GST_Low_Level.gstreamer_0_10_gst_gstpad_h.GstFlowReturn; -- gst/app/gstappsrc.h:143 pragma Import (C, gst_app_src_end_of_stream, "gst_app_src_end_of_stream"); procedure gst_app_src_set_callbacks (appsrc : access GstAppSrc; callbacks : access GstAppSrcCallbacks; user_data : System.Address; notify : GStreamer.GST_Low_Level.glib_2_0_glib_gtypes_h.GDestroyNotify); -- gst/app/gstappsrc.h:145 pragma Import (C, gst_app_src_set_callbacks, "gst_app_src_set_callbacks"); end GStreamer.GST_Low_Level.gstreamer_0_10_gst_app_gstappsrc_h;
51.428571
247
0.744061
500129e97b9f7162618c40e780807bcf72fdd613
393
ads
Ada
src/aco-protocols-network_management-slaves.ads
jonashaggstrom/ada-canopen
8e0f32323a0f09b41e8b51ef7123738bbf29f194
[ "Apache-2.0" ]
6
2018-05-12T22:08:04.000Z
2021-07-25T20:55:12.000Z
src/aco-protocols-network_management-slaves.ads
jonashaggstrom/ada-canopen
8e0f32323a0f09b41e8b51ef7123738bbf29f194
[ "Apache-2.0" ]
null
null
null
src/aco-protocols-network_management-slaves.ads
jonashaggstrom/ada-canopen
8e0f32323a0f09b41e8b51ef7123738bbf29f194
[ "Apache-2.0" ]
2
2021-06-15T11:56:46.000Z
2021-06-21T13:56:01.000Z
package ACO.Protocols.Network_Management.Slaves is type Slave (Id : ACO.Messages.Node_Nr; Od : not null access ACO.OD.Object_Dictionary'Class) is new NMT with private; private type Slave (Id : ACO.Messages.Node_Nr; Od : not null access ACO.OD.Object_Dictionary'Class) is new NMT (Id, Od) with null record; end ACO.Protocols.Network_Management.Slaves;
24.5625
59
0.707379
fb3ab7ca51796ee74fc3459181410d409678459d
3,886
ads
Ada
awa/plugins/awa-mail/src/aws/awa-mail-clients-aws_smtp.ads
Letractively/ada-awa
3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-mail/src/aws/awa-mail-clients-aws_smtp.ads
Letractively/ada-awa
3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-mail/src/aws/awa-mail-clients-aws_smtp.ads
Letractively/ada-awa
3c82a4d29ed6c1209a2ac7d5fe123c142f3cffbe
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- awa-mail-clients-aws_smtp -- Mail client implementation on top of AWS SMTP client -- 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. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Finalization; with Util.Properties; with AWS.SMTP; -- The <b>AWA.Mail.Clients.AWS_SMTP</b> package provides an implementation of the -- mail client interfaces on top of AWS SMTP client API. package AWA.Mail.Clients.AWS_SMTP is NAME : constant String := "smtp"; -- ------------------------------ -- Mail Message -- ------------------------------ -- The <b>Mail_Message</b> represents an abstract mail message that can be initialized -- before being sent. type AWS_Mail_Message is new Ada.Finalization.Limited_Controlled and Mail_Message with private; type AWS_Mail_Message_Access is access all AWS_Mail_Message'Class; -- Set the <tt>From</tt> part of the message. overriding procedure Set_From (Message : in out AWS_Mail_Message; Name : in String; Address : in String); -- Add a recipient for the message. overriding procedure Add_Recipient (Message : in out AWS_Mail_Message; Kind : in Recipient_Type; Name : in String; Address : in String); -- Set the subject of the message. overriding procedure Set_Subject (Message : in out AWS_Mail_Message; Subject : in String); -- Set the body of the message. overriding procedure Set_Body (Message : in out AWS_Mail_Message; Content : in String); -- Send the email message. overriding procedure Send (Message : in out AWS_Mail_Message); -- Deletes the mail message. overriding procedure Finalize (Message : in out AWS_Mail_Message); -- ------------------------------ -- Mail Manager -- ------------------------------ -- The <b>Mail_Manager</b> is the entry point to create a new mail message -- and be able to send it. type AWS_Mail_Manager is new Mail_Manager with private; type AWS_Mail_Manager_Access is access all AWS_Mail_Manager'Class; -- Create a SMTP based mail manager and configure it according to the properties. function Create_Manager (Props : in Util.Properties.Manager'Class) return Mail_Manager_Access; -- Create a new mail message. overriding function Create_Message (Manager : in AWS_Mail_Manager) return Mail_Message_Access; private type Recipients_Access is access all AWS.SMTP.Recipients; type AWS_Mail_Message is new Ada.Finalization.Limited_Controlled and Mail_Message with record Manager : AWS_Mail_Manager_Access; From : AWS.SMTP.E_Mail_Data; Subject : Ada.Strings.Unbounded.Unbounded_String; Content : Ada.Strings.Unbounded.Unbounded_String; To : Recipients_Access := null; end record; type AWS_Mail_Manager is new Mail_Manager with record Self : AWS_Mail_Manager_Access; Server : AWS.SMTP.Receiver; Enable : Boolean := True; end record; end AWA.Mail.Clients.AWS_SMTP;
37.009524
98
0.641791
505cf4293f2e53027186cbe71ba4b903bc4661b1
847
ads
Ada
test/unit/src/test_streams.ads
Statkus/json-ada
5f0d6a62e1f8adcc534fa90b763f033c5421b493
[ "Apache-2.0" ]
null
null
null
test/unit/src/test_streams.ads
Statkus/json-ada
5f0d6a62e1f8adcc534fa90b763f033c5421b493
[ "Apache-2.0" ]
null
null
null
test/unit/src/test_streams.ads
Statkus/json-ada
5f0d6a62e1f8adcc534fa90b763f033c5421b493
[ "Apache-2.0" ]
null
null
null
-- 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 Ahven.Framework; package Test_Streams is type Test is new Ahven.Framework.Test_Case with null record; overriding procedure Initialize (T : in out Test); private procedure Test_Stream_IO; end Test_Streams;
29.206897
76
0.736718
0b685031cc620eeb4863ca6540c3cc0b925fe21c
2,634
ads
Ada
tools/uaflex/macros.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
tools/uaflex/macros.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
tools/uaflex/macros.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- G E L A A S I S -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of this file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Regular_Expressions; use Regular_Expressions; package Macros is procedure Add (Name : String; Expr : Expression); function Find (Name : String) return Expression; Not_Found : exception; end Macros; ------------------------------------------------------------------------------ -- Copyright (c) 2006-2013, Maxim Reznik -- 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 Maxim Reznik, 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 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. ------------------------------------------------------------------------------
48.777778
79
0.582005
0b4288784c2cd6aa202b37e6b72a85cb928ea685
446
ads
Ada
tests/random.ads
yannickmoy/SPARKNaCl
c27fa811bf38b3706c1dc242f30e82967ad8f1c6
[ "BSD-2-Clause" ]
76
2020-02-24T20:30:15.000Z
2022-02-16T15:10:56.000Z
tests/random.ads
yannickmoy/SPARKNaCl
c27fa811bf38b3706c1dc242f30e82967ad8f1c6
[ "BSD-2-Clause" ]
10
2020-04-15T10:02:49.000Z
2022-02-24T20:10:46.000Z
tests/random.ads
yannickmoy/SPARKNaCl
c27fa811bf38b3706c1dc242f30e82967ad8f1c6
[ "BSD-2-Clause" ]
4
2020-03-10T15:19:45.000Z
2022-02-17T09:46:20.000Z
with Interfaces; with SPARKNaCl; package Random with SPARK_Mode => On, Abstract_State => (Entropy with External => Async_Writers) is --=========================== -- Exported subprograms --=========================== function Random_Byte return Interfaces.Unsigned_8 with Global => Entropy, Volatile_Function; procedure Random_Bytes (R : out SPARKNaCl.Byte_Seq) with Global => Entropy; end Random;
23.473684
65
0.605381
39a58b3b13b8f34fb876a96b8b6d8cb208bf282b
959
ads
Ada
src/fltk-widgets-inputs-float.ads
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
1
2020-12-18T15:20:13.000Z
2020-12-18T15:20:13.000Z
src/fltk-widgets-inputs-float.ads
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
null
null
null
src/fltk-widgets-inputs-float.ads
micahwelf/FLTK-Ada
83e0c58ea98e5ede2cbbb158b42eae44196c3ba7
[ "Unlicense" ]
null
null
null
package FLTK.Widgets.Inputs.Float is type Float_Input is new Input with private; type Float_Input_Reference (Data : not null access Float_Input'Class) is limited null record with Implicit_Dereference => Data; package Forge is function Create (X, Y, W, H : in Integer; Text : in String) return Float_Input; end Forge; function Get_Value (This : in Float_Input) return Standard.Float; procedure Draw (This : in out Float_Input); function Handle (This : in out Float_Input; Event : in Event_Kind) return Event_Outcome; private type Float_Input is new Input with null record; overriding procedure Finalize (This : in out Float_Input); pragma Inline (Get_Value); pragma Inline (Draw); pragma Inline (Handle); end FLTK.Widgets.Inputs.Float;
15.467742
76
0.603754
fb852b28a241d7b91d4eef36014c8ded0009e6ec
705
ads
Ada
source/required/s-caun64.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/required/s-caun64.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/required/s-caun64.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
pragma License (Unrestricted); -- implementation unit required by compiler with System.Packed_Arrays; package System.Compare_Array_Unsigned_64 is pragma Preelaborate; -- It can not be Pure, subprograms would become __attribute__((const)). type Unsigned_64 is mod 2 ** 64; for Unsigned_64'Size use 64; for Unsigned_64'Alignment use 1; package Ordering is new Packed_Arrays.Ordering (Unsigned_64); -- required to compare arrays by compiler (s-caun64.ads) function Compare_Array_U64 ( Left : Address; Right : Address; Left_Len : Natural; Right_Len : Natural) return Integer renames Ordering.Compare; end System.Compare_Array_Unsigned_64;
29.375
78
0.726241
1cfe480cb982322d223be3214397f1e32edb2a54
4,234
adb
Ada
17/1/src/main.adb
Heziode/aoc-ada-2021
fd2fcb177a930d16a16da888e89aeca8946cc615
[ "BSD-2-Clause" ]
3
2021-12-02T10:21:33.000Z
2021-12-25T13:31:55.000Z
17/1/src/main.adb
Heziode/aoc-ada-2021
fd2fcb177a930d16a16da888e89aeca8946cc615
[ "BSD-2-Clause" ]
null
null
null
17/1/src/main.adb
Heziode/aoc-ada-2021
fd2fcb177a930d16a16da888e89aeca8946cc615
[ "BSD-2-Clause" ]
1
2021-12-06T22:47:02.000Z
2021-12-06T22:47:02.000Z
with Ada.Execution_Time, Ada.Integer_Text_IO, Ada.Real_Time, Ada.Strings.Fixed, Ada.Text_IO; with Utils, Coordinates_2D; procedure Main is use Ada.Execution_Time, Ada.Real_Time, Ada.Text_IO; use Utils; package My_Coordinates is new Coordinates_2D (Integer); use My_Coordinates; File : File_Type; Start_Time, End_Time : CPU_Time; Execution_Duration : Time_Span; Result : Integer := Integer'First; X_Min, X_Max, Y_Min, Y_Max : Integer; begin Get_File (File); -- Get all values declare procedure Split_Range (Str : String; Lower, Upper : out Integer); procedure Split_Range (Str : String; Lower, Upper : out Integer) is use Ada.Integer_Text_IO; Pattern : constant String := ".."; Separator_Index : constant Natural := Ada.Strings.Fixed.Index (Source => Str, Pattern => Pattern); Left_Str : constant String := Str (Str'First .. Separator_Index - 1); Right_Str : constant String := Str (Separator_Index + Pattern'Length .. Str'Last); Last : Positive; begin Get (Left_Str, Lower, Last); Get (Right_Str, Upper, Last); end Split_Range; Str : constant String := Get_Line (File); Pattern : constant String := ","; Separator_Index : constant Natural := Ada.Strings.Fixed.Index (Source => Str (1 .. Str'Last), Pattern => Pattern); Left_Str : constant String := Str (16 .. Separator_Index - 1); Right_Str : constant String := Str (Separator_Index + Pattern'Length + 3 .. Str'Last); begin Split_Range (Left_Str, X_Min, X_Max); Split_Range (Right_Str, Y_Min, Y_Max); end; -- Do the puzzle Start_Time := Ada.Execution_Time.Clock; Solve_Puzzle : declare subtype X_Velocity_Range is Integer range X_Min .. X_Max; subtype Y_Velocity_Range is Integer range Y_Min .. Y_Max; subtype Sign_Values is Integer range -1 .. 1; -- Returns either a positive or negative +/- 1, indicating the sign of a number passed in argument. -- If the number passed is 0, it will return 0. function Sign (Value : Integer) return Sign_Values; function Sign (Value : Integer) return Sign_Values is begin if Value < 0 then return -1; elsif Value > 0 then return 1; end if; return 0; end Sign; begin for Y_Velocity in Y_Min .. Integer'Max (0, Integer'Max (abs Y_Min, abs Y_Max)) loop for X_Velocity in Integer'Min (0, X_Min) .. Integer'Max (0, X_Max) loop Simulate_Probe_Launch : declare Highest_Y : Integer := Integer'First; Current_Point : Coordinate_2D := (Line => 0, Column => 0); Velocity : Coordinate_2D := (Line => Y_Velocity, Column => X_Velocity); begin Simulation : loop Current_Point := Current_Point + Velocity; Velocity := Velocity - (Line => 1, Column => Sign (Velocity.Column)); Highest_Y := Integer'Max (Highest_Y, Current_Point.Line); if Current_Point.Line in Y_Velocity_Range and Current_Point.Column in X_Velocity_Range then Result := Integer'Max (Result, Highest_Y); exit Simulation; elsif Current_Point.Line < Y_Velocity_Range'First or Current_Point.Column > X_Velocity_Range'Last then exit Simulation; end if; end loop Simulation; end Simulate_Probe_Launch; end loop; end loop; end Solve_Puzzle; End_Time := Ada.Execution_Time.Clock; Execution_Duration := End_Time - Start_Time; Put ("Result: "); Ada.Integer_Text_IO.Put (Item => Result, Width => 0); New_Line; Put_Line ("(Took " & Duration'Image (To_Duration (Execution_Duration) * 1_000_000) & "µs)"); exception when others => Close_If_Open (File); raise; end Main;
33.872
109
0.583373
1069dea02287068a0e07fe02cb89904a9cbdfa5b
7,045
ads
Ada
src/bitmap-soft_drawing.ads
ellamosi/Ada_BMP_Library
c1de8ce0127dd6b264a6e5abcd721a26bf005c3f
[ "BSD-3-Clause" ]
null
null
null
src/bitmap-soft_drawing.ads
ellamosi/Ada_BMP_Library
c1de8ce0127dd6b264a6e5abcd721a26bf005c3f
[ "BSD-3-Clause" ]
null
null
null
src/bitmap-soft_drawing.ads
ellamosi/Ada_BMP_Library
c1de8ce0127dd6b264a6e5abcd721a26bf005c3f
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2017, 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. -- -- -- ------------------------------------------------------------------------------ -- This package provides a software implementation of the Bitmap.Buffer drawing -- primitives. with Bitmap.Buffer; use Bitmap.Buffer; package Bitmap.Soft_Drawing is subtype Parent is Bitmap_Buffer; type Soft_Drawing_Bitmap_Buffer is abstract new Parent with null record; type Any_Soft_Drawing_Bitmap_Buffer is access all Soft_Drawing_Bitmap_Buffer'Class; overriding procedure Draw_Line (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : UInt32; Start, Stop : Point; Thickness : Natural := 1; Fast : Boolean := True); overriding procedure Draw_Line (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Start, Stop : Point; Thickness : Natural := 1; Fast : Boolean := True); overriding procedure Fill (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color); -- Fill the specified buffer with 'Color' overriding procedure Fill (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : UInt32); -- Same as above, using the destination buffer native color representation overriding procedure Fill_Rect (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Area : Rect); -- Fill the specified area of the buffer with 'Color' overriding procedure Fill_Rect (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : UInt32; Area : Rect); -- Same as above, using the destination buffer native color representation overriding procedure Copy_Rect (Src_Buffer : Bitmap_Buffer'Class; Src_Pt : Point; Dst_Buffer : in out Soft_Drawing_Bitmap_Buffer; Dst_Pt : Point; Bg_Buffer : Bitmap_Buffer'Class; Bg_Pt : Point; Width : Natural; Height : Natural; Synchronous : Boolean); overriding procedure Copy_Rect (Src_Buffer : Bitmap_Buffer'Class; Src_Pt : Point; Dst_Buffer : in out Soft_Drawing_Bitmap_Buffer; Dst_Pt : Point; Width : Natural; Height : Natural; Synchronous : Boolean); overriding procedure Copy_Rect_Blend (Src_Buffer : Soft_Drawing_Bitmap_Buffer; Src_Pt : Point; Dst_Buffer : in out Bitmap_Buffer'Class; Dst_Pt : Point; Width : Natural; Height : Natural; Synchronous : Boolean); overriding procedure Draw_Vertical_Line (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : UInt32; Pt : Point; Height : Integer); overriding procedure Draw_Vertical_Line (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Pt : Point; Height : Integer); overriding procedure Draw_Horizontal_Line (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : UInt32; Pt : Point; Width : Integer); overriding procedure Draw_Horizontal_Line (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Pt : Point; Width : Integer); overriding procedure Draw_Rect (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Area : Rect; Thickness : Natural := 1); -- Draws a rectangle overriding procedure Draw_Rounded_Rect (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Area : Rect; Radius : Natural; Thickness : Natural := 1); overriding procedure Fill_Rounded_Rect (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Area : Rect; Radius : Natural); overriding procedure Draw_Circle (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : UInt32; Center : Point; Radius : Natural); overriding procedure Draw_Circle (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Center : Point; Radius : Natural); overriding procedure Fill_Circle (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : UInt32; Center : Point; Radius : Natural); overriding procedure Fill_Circle (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; Center : Point; Radius : Natural); overriding procedure Cubic_Bezier (Buffer : in out Soft_Drawing_Bitmap_Buffer; Color : Bitmap_Color; P1, P2, P3, P4 : Point; N : Positive := 20; Thickness : Natural := 1); end Bitmap.Soft_Drawing;
33.870192
80
0.589354
507dc0d218bcc45596a3e6edcfaf022b31fd6c7b
12,688
adb
Ada
src/bintoasc-base32.adb
jhumphry/Ada_BinToAsc
b1aa44263d03c46ffe32b766ea01a7710dabbd63
[ "0BSD" ]
null
null
null
src/bintoasc-base32.adb
jhumphry/Ada_BinToAsc
b1aa44263d03c46ffe32b766ea01a7710dabbd63
[ "0BSD" ]
null
null
null
src/bintoasc-base32.adb
jhumphry/Ada_BinToAsc
b1aa44263d03c46ffe32b766ea01a7710dabbd63
[ "0BSD" ]
null
null
null
-- BinToAsc.Base32 -- Binary data to ASCII codecs - Base64 codec as in RFC4648 -- Copyright (c) 2015, James Humphry - see LICENSE file for details with Ada.Characters.Handling; package body BinToAsc.Base32 is use Ada.Characters.Handling; function Make_Base32_Reverse_Alphabet return Reverse_Alphabet_Lookup is begin return R : Reverse_Alphabet_Lookup := Make_Reverse_Alphabet(Alphabet, Case_Sensitive) do if Allow_Homoglyphs then if R('1') = Invalid_Character_Input then if R('l') /= Invalid_Character_Input then R('1') := R('l'); elsif R('I') /= Invalid_Character_Input then R('1') := R('I'); end if; end if; if R('0') = Invalid_Character_Input then if R('O') /= Invalid_Character_Input then R('0') := R('O'); elsif R('o') /= Invalid_Character_Input then R('0') := R('o'); end if; end if; end if; end return; end Make_Base32_Reverse_Alphabet; Reverse_Alphabet : constant Reverse_Alphabet_Lookup := Make_Base32_Reverse_Alphabet; -- -- Base32_To_String -- procedure Reset (C : out Base32_To_String) is begin C := (State => Ready, Next_Index => 0, Buffer => (others => 0)); end Reset; procedure Process (C : in out Base32_To_String; Input : in Bin; Output : out String; Output_Length : out Natural) is begin C.Buffer(C.Next_Index) := Input; if C.Next_Index /= 4 then Output := (others => ' '); Output_Length := 0; C.Next_Index := C.Next_Index + 1; else C.Next_Index := 0; Output := ( Alphabet(C.Buffer(0) / 8), Alphabet((C.Buffer(0) and 2#00000111#) * 4 or C.Buffer(1) / 64), Alphabet((C.Buffer(1) and 2#00111111#) / 2), Alphabet((C.Buffer(1) and 2#00000001#) * 16 or C.Buffer(2) / 16), Alphabet((C.Buffer(2) and 2#00001111#) * 2 or C.Buffer(3) / 128), Alphabet((C.Buffer(3) and 2#01111111#) / 4), Alphabet((C.Buffer(3) and 2#00000011#) * 8 or C.Buffer(4) / 32), Alphabet(C.Buffer(4) and 2#00011111#), others => ' ' ); Output_Length := 8; end if; end Process; procedure Process (C : in out Base32_To_String; Input : in Bin_Array; Output : out String; Output_Length : out Natural) is Output_Index : Integer := Output'First; begin for I in Input'Range loop C.Buffer(C.Next_Index) := Input(I); if C.Next_Index /= 4 then C.Next_Index := C.Next_Index + 1; else C.Next_Index := 0; Output (Output_Index .. Output_Index + 7) := ( Alphabet(C.Buffer(0) / 8), Alphabet((C.Buffer(0) and 2#00000111#) * 4 or C.Buffer(1) / 64), Alphabet((C.Buffer(1) and 2#00111111#) / 2), Alphabet((C.Buffer(1) and 2#00000001#) * 16 or C.Buffer(2) / 16), Alphabet((C.Buffer(2) and 2#00001111#) * 2 or C.Buffer(3) / 128), Alphabet((C.Buffer(3) and 2#01111111#) / 4), Alphabet((C.Buffer(3) and 2#00000011#) * 8 or C.Buffer(4) / 32), Alphabet(C.Buffer(4) and 2#00011111#) ); Output_Index := Output_Index + 8; end if; end loop; Output_Length := Output_Index - Output'First; end Process; procedure Complete (C : in out Base32_To_String; Output : out String; Output_Length : out Natural) is begin C.State := Completed; case C.Next_Index is when 0 => Output := (others => ' '); Output_Length := 0; when 1 => Output := ( Alphabet(C.Buffer(0) / 8), Alphabet((C.Buffer(0) and 2#00000111#) * 4), Padding, Padding, Padding, Padding, Padding, Padding, others => ' '); Output_Length := 8; when 2 => Output := ( Alphabet(C.Buffer(0) / 8), Alphabet((C.Buffer(0) and 2#00000111#) * 4 or C.Buffer(1) / 64), Alphabet((C.Buffer(1) and 2#00111111#) / 2), Alphabet((C.Buffer(1) and 2#00000001#) * 16), Padding, Padding, Padding, Padding, others => ' '); Output_Length := 8; when 3 => Output := ( Alphabet(C.Buffer(0) / 8), Alphabet((C.Buffer(0) and 2#00000111#) * 4 or C.Buffer(1) / 64), Alphabet((C.Buffer(1) and 2#00111111#) / 2), Alphabet((C.Buffer(1) and 2#00000001#) * 16 or C.Buffer(2) / 16), Alphabet((C.Buffer(2) and 2#00001111#) * 2), Padding, Padding, Padding, others => ' '); Output_Length := 8; when 4 => Output := ( Alphabet(C.Buffer(0) / 8), Alphabet((C.Buffer(0) and 2#00000111#) * 4 or C.Buffer(1) / 64), Alphabet((C.Buffer(1) and 2#00111111#) / 2), Alphabet((C.Buffer(1) and 2#00000001#) * 16 or C.Buffer(2) / 16), Alphabet((C.Buffer(2) and 2#00001111#) * 2 or C.Buffer(3) / 128), Alphabet((C.Buffer(3) and 2#01111111#) / 4), Alphabet((C.Buffer(3) and 2#00000011#) * 8), Padding, others => ' '); Output_Length := 8; end case; end Complete; function To_String_Private is new BinToAsc.To_String(Codec => Base32_To_String); function To_String (Input : in Bin_Array) return String renames To_String_Private; -- -- Base32_To_Bin -- function Padding_Characters_Effect(X : Bin_Array_Index) return Bin_Array_Index is (case X is when 0 => 0, when 1 => 1, when 3 => 2, when 4 => 3, when 6 => 4, when others => 0); -- The Process routines should have caught invalid padding lengths and set -- the status to 'Failed' so the 'others' clause is not a problem here. procedure Reset (C : out Base32_To_Bin) is begin C := (State => Ready, Next_Index => 0, Buffer => (others => 0), Padding_Length => 0); end Reset; procedure Process (C : in out Base32_To_Bin; Input : in Character; Output : out Bin_Array; Output_Length : out Bin_Array_Index) is Input_Bin : Bin; begin if Input = Padding then Input_Bin := 0; C.Padding_Length := C.Padding_Length + 1; if C.Padding_Length > 6 then -- No reason to ever have more than six padding characters in Base32 -- input C.State := Failed; end if; elsif C.Padding_Length > 0 then -- After the first padding character, only a second padding character -- can be valid C.State := Failed; else Input_Bin := Reverse_Alphabet(Input); if Input_Bin = Invalid_Character_Input then C.State := Failed; end if; end if; if not (C.State = Failed) then C.Buffer(C.Next_Index) := Input_Bin; if C.Next_Index /= 7 then Output := (others => 0); Output_Length := 0; C.Next_Index := C.Next_Index + 1; elsif C.Padding_Length = 2 or C.Padding_Length = 5 then Output := (others => 0); Output_Length := 0; C.State := Failed; else C.Next_Index := 0; Output := ( C.Buffer(0) * 8 + C.Buffer(1) / 4, (C.Buffer(1) and 2#00011#) * 64 or C.Buffer(2) * 2 or C.Buffer(3) / 16, (C.Buffer(3) and 2#01111#) * 16 or C.Buffer(4) / 2, (C.Buffer(4) and 2#00001#) * 128 or C.Buffer(5) * 4 or C.Buffer(6) / 8, (C.Buffer(6) and 2#00111#) * 32 or C.Buffer(7), others => 0); Output_Length := 5 - Padding_Characters_Effect(C.Padding_Length); end if; else Output := (others => 0); Output_Length := 0; end if; end Process; procedure Process (C : in out Base32_To_Bin; Input : in String; Output : out Bin_Array; Output_Length : out Bin_Array_Index) is Input_Bin : Bin; Output_Index : Bin_Array_Index := Output'First; begin for I in Input'Range loop if Input(I) = Padding then Input_Bin := 0; C.Padding_Length := C.Padding_Length + 1; if C.Padding_Length > 6 then -- No reason to ever have more than six padding characters in -- Base64 input C.State := Failed; exit; end if; elsif C.Padding_Length > 0 then -- After the first padding character, only a second padding -- character can be valid C.State := Failed; exit; else Input_Bin := Reverse_Alphabet(Input(I)); if Input_Bin = Invalid_Character_Input then C.State := Failed; exit; end if; end if; C.Buffer(C.Next_Index) := Input_Bin; if C.Next_Index /= 7 then C.Next_Index := C.Next_Index + 1; elsif C.Padding_Length = 2 or C.Padding_Length = 5 then C.State := Failed; else C.Next_Index := 0; Output(Output_Index .. Output_Index + 4) := ( C.Buffer(0) * 8 + C.Buffer(1) / 4, (C.Buffer(1) and 2#00011#) * 64 or C.Buffer(2) * 2 or C.Buffer(3) / 16, (C.Buffer(3) and 2#01111#) * 16 or C.Buffer(4) / 2, (C.Buffer(4) and 2#00001#) * 128 or C.Buffer(5) * 4 or C.Buffer(6) / 8, (C.Buffer(6) and 2#00111#) * 32 or C.Buffer(7)); Output_Index := Output_Index + 5; end if; end loop; if C.State = Failed then Output := (others => 0); Output_Length := 0; else Output(Output_Index .. Output'Last) := (others => 0); Output_Length := Bin_Array_Index'Max(0, Output_Index - Output'First - Padding_Characters_Effect(C.Padding_Length)); end if; end Process; procedure Complete (C : in out Base32_To_Bin; Output : out Bin_Array; Output_Length : out Bin_Array_Index) is begin if C.Next_Index /= 0 then C.State := Failed; elsif C.State = Ready then C.State := Completed; end if; Output := (others => 0); Output_Length := 0; end Complete; function To_Bin_Private is new BinToAsc.To_Bin(Codec => Base32_To_Bin); function To_Bin (Input : in String) return Bin_Array renames To_Bin_Private; begin -- The following Compile_Time_Error test is silently ignored by GNAT GPL 2015, -- although it does appear to be a static boolean expression as required by -- the user guide. It works if converted to a run-time test so it has been -- left in, in the hope that in a future version of GNAT it will actually be -- tested. pragma Warnings (GNATprove, Off, "Compile_Time_Error"); pragma Compile_Time_Error ((for some X in 1..Alphabet'Last => (for some Y in 0..X-1 => (Alphabet(Y) = Alphabet(X) or (not Case_Sensitive and To_Lower(Alphabet(Y)) = To_Lower(Alphabet(X))) ) ) ), "Duplicate letter in alphabet for Base32 codec."); pragma Warnings (GNATprove, On, "Compile_Time_Error"); end BinToAsc.Base32;
36.251429
95
0.492985
fbf22d2b4e0efb3c49011cf9b3eb8e5513705e77
3,629
ads
Ada
source/amf/uml/amf-uml-communication_paths-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-communication_paths-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-communication_paths-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- 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.Elements.Generic_Hash; function AMF.UML.Communication_Paths.Hash is new AMF.Elements.Generic_Hash (UML_Communication_Path, UML_Communication_Path_Access);
72.58
88
0.405346
50ba549285a6bcb484433d9e0645a32ce992de93
17,911
ads
Ada
llvm-gcc-4.2-2.9/gcc/ada/a-textio.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/a-textio.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/a-textio.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- 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 2, 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 COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, 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. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Note: the generic subpackages of Text_IO (Integer_IO, Float_IO, Fixed_IO, -- Modular_IO, Decimal_IO and Enumeration_IO) appear as private children in -- GNAT. These children are with'ed automatically if they are referenced, so -- this rearrangement is invisible to user programs, but has the advantage -- that only the needed parts of Text_IO are processed and loaded. with Ada.IO_Exceptions; with Ada.Streams; with System; with System.File_Control_Block; package Ada.Text_IO is pragma Elaborate_Body; type File_Type is limited private; type File_Mode is (In_File, Out_File, Append_File); -- The following representation clause allows the use of unchecked -- conversion for rapid translation between the File_Mode type -- used in this package and System.File_IO. for File_Mode use (In_File => 0, -- System.FIle_IO.File_Mode'Pos (In_File) Out_File => 2, -- System.File_IO.File_Mode'Pos (Out_File) Append_File => 3); -- System.File_IO.File_Mode'Pos (Append_File) type Count is range 0 .. Natural'Last; -- The value of Count'Last must be large enough so that the assumption -- enough so that the assumption that the Line, Column and Page -- counts can never exceed this value is a valid assumption. subtype Positive_Count is Count range 1 .. Count'Last; Unbounded : constant Count := 0; -- Line and page length subtype Field is Integer range 0 .. 255; -- Note: if for any reason, there is a need to increase this value, -- then it will be necessary to change the corresponding value in -- System.Img_Real in file s-imgrea.adb. subtype Number_Base is Integer range 2 .. 16; type Type_Set is (Lower_Case, Upper_Case); --------------------- -- File Management -- --------------------- procedure Create (File : in out File_Type; Mode : File_Mode := Out_File; Name : String := ""; Form : String := ""); procedure Open (File : in out File_Type; Mode : File_Mode; Name : String; Form : String := ""); procedure Close (File : in out File_Type); procedure Delete (File : in out File_Type); procedure Reset (File : in out File_Type; Mode : File_Mode); procedure Reset (File : in out File_Type); function Mode (File : File_Type) return File_Mode; function Name (File : File_Type) return String; function Form (File : File_Type) return String; function Is_Open (File : File_Type) return Boolean; ------------------------------------------------------ -- Control of default input, output and error files -- ------------------------------------------------------ procedure Set_Input (File : File_Type); procedure Set_Output (File : File_Type); procedure Set_Error (File : File_Type); function Standard_Input return File_Type; function Standard_Output return File_Type; function Standard_Error return File_Type; function Current_Input return File_Type; function Current_Output return File_Type; function Current_Error return File_Type; type File_Access is access constant File_Type; function Standard_Input return File_Access; function Standard_Output return File_Access; function Standard_Error return File_Access; function Current_Input return File_Access; function Current_Output return File_Access; function Current_Error return File_Access; -------------------- -- Buffer control -- -------------------- -- Note: The parameter file is IN OUT in the RM, but this is clearly -- an oversight, and was intended to be IN, see AI95-00057. procedure Flush (File : File_Type); procedure Flush; -------------------------------------------- -- Specification of line and page lengths -- -------------------------------------------- procedure Set_Line_Length (File : File_Type; To : Count); procedure Set_Line_Length (To : Count); procedure Set_Page_Length (File : File_Type; To : Count); procedure Set_Page_Length (To : Count); function Line_Length (File : File_Type) return Count; function Line_Length return Count; function Page_Length (File : File_Type) return Count; function Page_Length return Count; ------------------------------------ -- Column, Line, and Page Control -- ------------------------------------ procedure New_Line (File : File_Type; Spacing : Positive_Count := 1); procedure New_Line (Spacing : Positive_Count := 1); procedure Skip_Line (File : File_Type; Spacing : Positive_Count := 1); procedure Skip_Line (Spacing : Positive_Count := 1); function End_Of_Line (File : File_Type) return Boolean; function End_Of_Line return Boolean; procedure New_Page (File : File_Type); procedure New_Page; procedure Skip_Page (File : File_Type); procedure Skip_Page; function End_Of_Page (File : File_Type) return Boolean; function End_Of_Page return Boolean; function End_Of_File (File : File_Type) return Boolean; function End_Of_File return Boolean; procedure Set_Col (File : File_Type; To : Positive_Count); procedure Set_Col (To : Positive_Count); procedure Set_Line (File : File_Type; To : Positive_Count); procedure Set_Line (To : Positive_Count); function Col (File : File_Type) return Positive_Count; function Col return Positive_Count; function Line (File : File_Type) return Positive_Count; function Line return Positive_Count; function Page (File : File_Type) return Positive_Count; function Page return Positive_Count; ---------------------------- -- Character Input-Output -- ---------------------------- procedure Get (File : File_Type; Item : out Character); procedure Get (Item : out Character); procedure Put (File : File_Type; Item : Character); procedure Put (Item : Character); procedure Look_Ahead (File : File_Type; Item : out Character; End_Of_Line : out Boolean); procedure Look_Ahead (Item : out Character; End_Of_Line : out Boolean); procedure Get_Immediate (File : File_Type; Item : out Character); procedure Get_Immediate (Item : out Character); procedure Get_Immediate (File : File_Type; Item : out Character; Available : out Boolean); procedure Get_Immediate (Item : out Character; Available : out Boolean); ------------------------- -- String Input-Output -- ------------------------- procedure Get (File : File_Type; Item : out String); procedure Get (Item : out String); procedure Put (File : File_Type; Item : String); procedure Put (Item : String); procedure Get_Line (File : File_Type; Item : out String; Last : out Natural); procedure Get_Line (Item : out String; Last : out Natural); function Get_Line (File : File_Type) return String; pragma Ada_05 (Get_Line); function Get_Line return String; pragma Ada_05 (Get_Line); procedure Put_Line (File : File_Type; Item : String); procedure Put_Line (Item : String); --------------------------------------- -- Generic packages for Input-Output -- --------------------------------------- -- The generic packages: -- Ada.Text_IO.Integer_IO -- Ada.Text_IO.Modular_IO -- Ada.Text_IO.Float_IO -- Ada.Text_IO.Fixed_IO -- Ada.Text_IO.Decimal_IO -- Ada.Text_IO.Enumeration_IO -- are implemented as separate child packages in GNAT, so the -- spec and body of these packages are to be found in separate -- child units. This implementation detail is hidden from the -- Ada programmer by special circuitry in the compiler that -- treats these child packages as though they were nested in -- Text_IO. The advantage of this special processing is that -- the subsidiary routines needed if these generics are used -- are not loaded when they are not used. ---------------- -- Exceptions -- ---------------- Status_Error : exception renames IO_Exceptions.Status_Error; Mode_Error : exception renames IO_Exceptions.Mode_Error; Name_Error : exception renames IO_Exceptions.Name_Error; Use_Error : exception renames IO_Exceptions.Use_Error; Device_Error : exception renames IO_Exceptions.Device_Error; End_Error : exception renames IO_Exceptions.End_Error; Data_Error : exception renames IO_Exceptions.Data_Error; Layout_Error : exception renames IO_Exceptions.Layout_Error; private ----------------------------------- -- Handling of Format Characters -- ----------------------------------- -- Line marks are represented by the single character ASCII.LF (16#0A#). -- In DOS and similar systems, underlying file translation takes care -- of translating this to and from the standard CR/LF sequences used in -- these operating systems to mark the end of a line. On output there is -- always a line mark at the end of the last line, but on input, this -- line mark can be omitted, and is implied by the end of file. -- Page marks are represented by the single character ASCII.FF (16#0C#), -- The page mark at the end of the file may be omitted, and is normally -- omitted on output unless an explicit New_Page call is made before -- closing the file. No page mark is added when a file is appended to, -- so, in accordance with the permission in (RM A.10.2(4)), there may -- or may not be a page mark separating preexising text in the file -- from the new text to be written. -- A file mark is marked by the physical end of file. In DOS translation -- mode on input, an EOF character (SUB = 16#1A#) gets translated to the -- physical end of file, so in effect this character is recognized as -- marking the end of file in DOS and similar systems. LM : constant := Character'Pos (ASCII.LF); -- Used as line mark PM : constant := Character'Pos (ASCII.FF); -- Used as page mark, except at end of file where it is implied -------------------------------- -- Text_IO File Control Block -- -------------------------------- package FCB renames System.File_Control_Block; type Text_AFCB; type File_Type is access all Text_AFCB; type Text_AFCB is new FCB.AFCB with record Page : Count := 1; Line : Count := 1; Col : Count := 1; Line_Length : Count := 0; Page_Length : Count := 0; Self : aliased File_Type; -- Set to point to the containing Text_AFCB block. This is used to -- implement the Current_{Error,Input,Ouput} functions which return -- a File_Access, the file access value returned is a pointer to -- the Self field of the corresponding file. Before_LM : Boolean := False; -- This flag is used to deal with the anomolies introduced by the -- peculiar definition of End_Of_File and End_Of_Page in Ada. These -- functions require looking ahead more than one character. Since -- there is no convenient way of backing up more than one character, -- what we do is to leave ourselves positioned past the LM, but set -- this flag, so that we know that from an Ada point of view we are -- in front of the LM, not after it. A bit of a kludge, but it works! Before_LM_PM : Boolean := False; -- This flag similarly handles the case of being physically positioned -- after a LM-PM sequence when logically we are before the LM-PM. This -- flag can only be set if Before_LM is also set. end record; function AFCB_Allocate (Control_Block : Text_AFCB) return FCB.AFCB_Ptr; procedure AFCB_Close (File : access Text_AFCB); procedure AFCB_Free (File : access Text_AFCB); procedure Read (File : in out Text_AFCB; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); -- Read operation used when Text_IO file is treated directly as Stream procedure Write (File : in out Text_AFCB; Item : Ada.Streams.Stream_Element_Array); -- Write operation used when Text_IO file is treated directly as Stream ------------------------ -- The Standard Files -- ------------------------ Null_Str : aliased constant String := ""; -- Used as name and form of standard files Standard_Err_AFCB : aliased Text_AFCB; Standard_In_AFCB : aliased Text_AFCB; Standard_Out_AFCB : aliased Text_AFCB; Standard_Err : aliased File_Type := Standard_Err_AFCB'Access; Standard_In : aliased File_Type := Standard_In_AFCB'Access; Standard_Out : aliased File_Type := Standard_Out_AFCB'Access; -- Standard files Current_In : aliased File_Type := Standard_In; Current_Out : aliased File_Type := Standard_Out; Current_Err : aliased File_Type := Standard_Err; -- Current files ----------------------- -- Local Subprograms -- ----------------------- -- These subprograms are in the private part of the spec so that they can -- be shared by the routines in the body of Ada.Text_IO.Wide_Text_IO. -- Note: we use Integer in these declarations instead of the more accurate -- Interfaces.C_Streams.int, because we do not want to drag in the spec of -- this interfaces package with the spec of Ada.Text_IO, and we know that -- in fact these types are identical function EOF_Char return Integer; -- Returns the system-specific character indicating the end of a text file. -- This is exported for use by child packages such as Enumeration_Aux to -- eliminate their needing to depend directly on Interfaces.C_Streams. function Getc (File : File_Type) return Integer; -- Gets next character from file, which has already been checked for -- being in read status, and returns the character read if no error -- occurs. The result is EOF if the end of file was read. function Nextc (File : File_Type) return Integer; -- Returns next character from file without skipping past it (i.e. it -- is a combination of Getc followed by an Ungetc). procedure Putc (ch : Integer; File : File_Type); -- Outputs the given character to the file, which has already been -- checked for being in output status. Device_Error is raised if the -- character cannot be written. procedure Terminate_Line (File : File_Type); -- If the file is in Write_File or Append_File mode, and the current -- line is not terminated, then a line terminator is written using -- New_Line. Note that there is no Terminate_Page routine, because -- the page mark at the end of the file is implied if necessary. procedure Ungetc (ch : Integer; File : File_Type); -- Pushes back character into stream, using ungetc. The caller has -- checked that the file is in read status. Device_Error is raised -- if the character cannot be pushed back. An attempt to push back -- and end of file character (EOF) is ignored. end Ada.Text_IO;
39.626106
79
0.62269
1050f5f8b870b752b61dd6d1a37319da52a75685
1,238
ads
Ada
resources/scripts/cert/crtsh.ads
MoisesTapia/Amass
30f786aae86e44751f3ebbe2cebb9b25638c1934
[ "Apache-2.0" ]
2
2022-02-12T20:24:32.000Z
2022-02-27T16:14:56.000Z
resources/scripts/cert/crtsh.ads
Dheerajmadhukar/Amass
30f786aae86e44751f3ebbe2cebb9b25638c1934
[ "Apache-2.0" ]
1
2021-02-15T09:01:23.000Z
2021-02-15T09:01:23.000Z
resources/scripts/cert/crtsh.ads
Dheerajmadhukar/Amass
30f786aae86e44751f3ebbe2cebb9b25638c1934
[ "Apache-2.0" ]
1
2021-03-31T06:27:53.000Z
2021-03-31T06:27:53.000Z
-- Copyright 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 = "Crtsh" type = "cert" function start() setratelimit(2) end function vertical(ctx, domain) local resp, err = request(ctx, { ['url']=buildurl(domain), headers={['Content-Type']="application/json"}, }) if (err ~= nil and err ~= "") then return end dec = json.decode(resp) if (dec == nil or #dec == 0) then return end for i, r in pairs(dec) do local parts = split(r.name_value, "\n") if #parts == 0 then table.insert(parts, r.name_value) end for j, name in pairs(parts) do newname(ctx, name) end end end function buildurl(domain) return "https://crt.sh/?q=%25." .. domain .. "&output=json" end function split(str, delim) local result = {} local pattern = "[^%" .. delim .. "]+" local matches = find(str, pattern) if (matches == nil or #matches == 0) then return result end for i, match in pairs(matches) do table.insert(result, match) end return result end
21.344828
97
0.581583
23219b2f99466eb87620ef224c81636f1fcd1def
3,266
ads
Ada
tools-src/gnu/gcc/gcc/ada/s-pack05.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/s-pack05.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/s-pack05.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 0 5 -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-1999 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 2, 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 COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-0507, 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. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 5 package System.Pack_05 is pragma Preelaborate (Pack_05); Bits : constant := 5; type Bits_05 is mod 2 ** Bits; for Bits_05'Size use Bits; function Get_05 (Arr : System.Address; N : Natural) return Bits_05; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_05 (Arr : System.Address; N : Natural; E : Bits_05); -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. end System.Pack_05;
59.381818
78
0.448561
1cca90e1a457dfa2e6515b74595628507f4b5858
3,689
ads
Ada
source/amf/uml/amf-uml-remove_structural_feature_value_actions-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-remove_structural_feature_value_actions-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-remove_structural_feature_value_actions-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- 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.Elements.Generic_Hash; function AMF.UML.Remove_Structural_Feature_Value_Actions.Hash is new AMF.Elements.Generic_Hash (UML_Remove_Structural_Feature_Value_Action, UML_Remove_Structural_Feature_Value_Action_Access);
73.78
128
0.415018
50fd5c7effcc5584f51843b2e598eb1a4e3aff34
14,236
adb
Ada
tests/auto_counters_suite-refcounted_kvflyweights_tests.adb
jhumphry/auto_counters
bc7dfabf82febd09facf90371c8c11a628a06266
[ "0BSD" ]
5
2016-02-22T10:29:26.000Z
2021-12-18T08:20:12.000Z
tests/auto_counters_suite-refcounted_kvflyweights_tests.adb
jhumphry/auto_counters
bc7dfabf82febd09facf90371c8c11a628a06266
[ "0BSD" ]
1
2022-02-16T03:38:08.000Z
2022-02-20T21:11:30.000Z
tests/auto_counters_suite-refcounted_kvflyweights_tests.adb
jhumphry/auto_counters
bc7dfabf82febd09facf90371c8c11a628a06266
[ "0BSD" ]
null
null
null
-- Auto_Counters_Suite.Refcounted_KVFlyweights_Tests -- Unit tests for Auto_Counters Refcounted KVFlyweights packages -- Copyright (c) 2016, James Humphry - see LICENSE file for details with Ada.Containers, Ada.Finalization; with AUnit.Assertions; with Basic_Refcounted_KVFlyweights; with Protected_Refcounted_KVFlyweights; package body Auto_Counters_Suite.Refcounted_KVFlyweights_Tests is subtype Hash_Type is Ada.Containers.Hash_Type; use type Ada.Containers.Hash_Type; use AUnit.Assertions; Resources_Released : Natural := 0; subtype TestKey_Type is Hash_Type; type TestValue_Type is new Ada.Finalization.Controlled with record Value : Hash_Type; end record; type TestValue_Access is access TestValue_Type; function Hash (E : TestKey_Type) return Ada.Containers.Hash_Type is (E); pragma Warnings (Off, "not dispatching"); function Factory (E : in TestKey_Type) return TestValue_Access is (new TestValue_Type'(Ada.Finalization.Controlled with Value => E)); pragma Warnings (On, "not dispatching"); overriding procedure Finalize (Object : in out TestValue_Type) is begin Resources_Released := Resources_Released + 1; Object.Value := 999; end Finalize; package TestObj_Basic_KVFlyweights is new Basic_Refcounted_KVFlyweights(Key => TestKey_Type, Value => TestValue_Type, Value_Access => TestValue_Access, Factory => Factory, Hash => Hash, Capacity => 4); use type TestObj_Basic_KVFlyweights.Value_Ptr; use type TestObj_Basic_KVFlyweights.Value_Ref; package TestObj_Protected_KVFlyweights is new Protected_Refcounted_KVFlyweights(Key => TestKey_Type, Value => TestValue_Type, Value_Access => TestValue_Access, Factory => Factory, Hash => Hash, Capacity => 4); use type TestObj_Protected_KVFlyweights.Value_Ptr; use type TestObj_Protected_KVFlyweights.Value_Ref; -------------------- -- Register_Tests -- -------------------- procedure Register_Tests (T: in out Refcounted_KVFlyweights_Test) is use AUnit.Test_Cases.Registration; begin Register_Routine (T, Check_Basic_Usage'Access, "Check Basic_Refcounted_KVFlyweights"); Register_Routine (T, Check_Basic_Refs_Usage'Access, "Check Basic_Refcounted_KVFlyweights Element_Refs"); Register_Routine (T, Check_Protected_Usage'Access, "Check Protected_Refcounted_KVFlyweights"); Register_Routine (T, Check_Protected_Refs_Usage'Access, "Check Protected_Refcounted_KVFlyweights Element_Refs"); end Register_Tests; ---------- -- Name -- ---------- function Name (T : Refcounted_KVFlyweights_Test) return Test_String is pragma Unreferenced (T); begin return Format ("Tests of Refcounted FKVlyweights packages"); end Name; ------------ -- Set_Up -- ------------ procedure Set_Up (T : in out Refcounted_KVFlyweights_Test) is begin null; end Set_Up; ----------------------- -- Check_Basic_Usage -- ----------------------- procedure Check_Basic_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Basic_KVFlyweights; F : aliased KVFlyweight; P : array (Integer range 0..3) of Value_Ptr; begin -- Tests where elements are spread between buckets. Resources_Released := 0; for I in 0..3 loop P(I) := Insert_Ptr(F => F, K => Hash_Type(I)); end loop; Assert(Resources_Released = 0, "Resources being released on insertion into an empty KVFlyweight."); for I in 0..3 loop Assert(P(I).Get.Value = Hash_Type(I), "Flyweight not storing values correctly."); Assert(P(I).P.Value = Hash_Type(I), "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare Q : Value_Ptr := Insert_Ptr(F, 0); pragma Unreferenced(Q); begin Assert(Resources_Released = 0, "Resources being released on inserting duplicate key into a " & "KVFlyweight."); end; Resources_Released := 0; declare R : Value_Ptr := Insert_Ptr(F, 4); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into a " & "KVFlyweight despite it not being a duplicate key."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare Q : constant Value_Ptr := Insert_Ptr(F, P(1).Get.Value); begin Assert(Q = P(1), "Inserting a key value that is already in the KVFlyweight " & "does not return the same Element_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting a key value that is already in the KVFlyweight " & "deallocates something."); end; -- Tests where all values hit same hash bucket for I in 0..3 loop P(I) := Insert_Ptr(F, Hash_Type(I * 4)); end loop; for I in 0..3 loop Assert(P(I).P.Value = Hash_Type(I * 4), "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare Q : Value_Ptr := Insert_Ptr(F, 0); pragma Unreferenced(Q); begin Assert(Resources_Released = 0, "Resources being released on inserting duplicate key into a " & "KVFlyweight."); end; Resources_Released := 0; declare R : Value_Ptr := Insert_Ptr(F, 99); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into a " & "KVFlyweight despite it not being a duplicate key."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare Q : constant Value_Ptr := Insert_Ptr(F,P(1).Get.Value); begin Assert(Q = P(1), "Inserting a key value that is already in the KVFlyweight " & "does not return the same Value_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting a key value that is already in the KVFlyweight " & "deallocates something."); end; end Check_Basic_Usage; ---------------------------- -- Check_Basic_Refs_Usage -- ---------------------------- procedure Check_Basic_Refs_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Basic_KVFlyweights; F : aliased KVFlyweight; begin declare P1 : constant Value_Ptr := Insert_Ptr(F, 0); R1 : constant Value_Ref := Make_Ref(P1); begin Assert(P1.Get = R1.Get, "Value_Ref created from Value_Ptr does not point to the" & "same value"); Assert(P1.Get.all = R1, "Value_Ref created from Value_Ptr does not dereference to " & "the same value"); end; declare R2 : constant Value_Ref := Insert_Ref(F, 1); P2 : constant Value_Ptr := Make_Ptr(R2); begin Assert(P2.Get = R2.Get, "Value_Ptr created from Value_Ref does not point to the" & "same value"); Assert(P2.Get.all = R2, "Value_Ptr created from Value_Ref does not dereference to " & "the same value"); end; Resources_Released := 0; declare R : Value_Ref := Insert_Ref(F, 4); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "KVFlyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last Value_Ref is destroyed."); end Check_Basic_Refs_Usage; --------------------------- -- Check_Protected_Usage -- --------------------------- procedure Check_Protected_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Protected_KVFlyweights; F : aliased KVFlyweight; P : array (Integer range 0..3) of Value_Ptr; begin -- Tests where elements are spread between buckets. Resources_Released := 0; for I in 0..3 loop P(I) := Insert_Ptr(F => F, K => Hash_Type(I)); end loop; Assert(Resources_Released = 0, "Resources being released on insertion into an empty KVFlyweight."); for I in 0..3 loop Assert(P(I).Get.Value = Hash_Type(I), "Flyweight not storing values correctly."); Assert(P(I).P.Value = Hash_Type(I), "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare Q : Value_Ptr := Insert_Ptr(F, 0); pragma Unreferenced(Q); begin Assert(Resources_Released = 0, "Resources being released on inserting duplicate key into a " & "KVFlyweight."); end; Resources_Released := 0; declare R : Value_Ptr := Insert_Ptr(F, 4); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into a " & "KVFlyweight despite it not being a duplicate key."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare Q : constant Value_Ptr := Insert_Ptr(F, P(1).Get.Value); begin Assert(Q = P(1), "Inserting a key value that is already in the KVFlyweight " & "does not return the same Element_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting a key value that is already in the KVFlyweight " & "deallocates something."); end; -- Tests where all values hit same hash bucket for I in 0..3 loop P(I) := Insert_Ptr(F, Hash_Type(I * 4)); end loop; for I in 0..3 loop Assert(P(I).P.Value = Hash_Type(I * 4), "Flyweight not storing values correctly."); end loop; Resources_Released := 0; declare Q : Value_Ptr := Insert_Ptr(F, 0); pragma Unreferenced(Q); begin Assert(Resources_Released = 0, "Resources being released on inserting duplicate key into a " & "KVFlyweight."); end; Resources_Released := 0; declare R : Value_Ptr := Insert_Ptr(F, 99); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into a " & "KVFlyweight despite it not being a duplicate key."); end; Assert(Resources_Released = 1, "Resources not being released when last pointer is destroyed."); Resources_Released := 0; declare Q : constant Value_Ptr := Insert_Ptr(F,P(1).Get.Value); begin Assert(Q = P(1), "Inserting a key value that is already in the KVFlyweight " & "does not return the same Value_Ptr as already exists."); Assert(Resources_Released = 0, "Inserting a key value that is already in the KVFlyweight " & "deallocates something."); end; end Check_Protected_Usage; -------------------------------- -- Check_Protected_Refs_Usage -- -------------------------------- procedure Check_Protected_Refs_Usage (T : in out Test_Cases.Test_Case'Class) is pragma Unreferenced(T); use TestObj_Protected_KVFlyweights; F : aliased KVFlyweight; begin declare P1 : constant Value_Ptr := Insert_Ptr(F, 0); R1 : constant Value_Ref := Make_Ref(P1); begin Assert(P1.Get = R1.Get, "Value_Ref created from Value_Ptr does not point to the" & "same value"); Assert(P1.Get.all = R1, "Value_Ref created from Value_Ptr does not dereference to " & "the same value"); end; declare R2 : constant Value_Ref := Insert_Ref(F, 1); P2 : constant Value_Ptr := Make_Ptr(R2); begin Assert(P2.Get = R2.Get, "Value_Ptr created from Value_Ref does not point to the" & "same value"); Assert(P2.Get.all = R2, "Value_Ptr created from Value_Ref does not dereference to " & "the same value"); end; Resources_Released := 0; declare R : Value_Ref := Insert_Ref(F, 4); pragma Unreferenced (R); begin Assert(Resources_Released = 0, "Resources being released on inserting resource into " & "KVFlyweight despite it not being a duplicate."); end; Assert(Resources_Released = 1, "Resources not being released when last Value_Ref is destroyed."); end Check_Protected_Refs_Usage; end Auto_Counters_Suite.Refcounted_KVFlyweights_Tests;
31.776786
82
0.569963
0be3b7f9a0be35138b66f155e85aba8fad172c7d
1,002
ads
Ada
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/disc_arr_bound/pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
3
2021-05-04T17:09:06.000Z
2021-10-04T07:19:26.000Z
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/disc_arr_bound/pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
contrib/gnu/gdb/dist/gdb/testsuite/gdb.ada/disc_arr_bound/pck.ads
TheSledgeHammer/2.11BSD
fe61f0b9aaa273783cd027c7b5ec77e95ead2153
[ "BSD-3-Clause" ]
null
null
null
-- Copyright 2015-2020 Free Software Foundation, Inc. -- -- This program 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 3 of the License, or -- (at your option) any later version. -- -- This program 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 program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is type Array_Type is array (Integer range <>) of Integer; type Record_Type (N : Integer) is record A : Array_Type (1 .. N); end record; function Get (N : Integer) return Record_Type; procedure Do_Nothing (A : System.Address); end Pck;
33.4
73
0.718563
500f72afd0f55a928d463a5b5e05003362ea8f05
3,064
ads
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/g-md5.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/g-md5.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/g-md5.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . M D 5 -- -- -- -- S p e c -- -- -- -- Copyright (C) 2009-2021, 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. -- -- -- -- -- -- -- -- -- -- -- -- 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 implements the MD5 Message-Digest Algorithm as described in -- RFC 1321. The complete text of RFC 1321 can be found at: -- http://www.ietf.org/rfc/rfc1321.txt -- See the declaration of GNAT.Secure_Hashes.H in g-sechas.ads for complete -- documentation. with GNAT.Secure_Hashes.MD5; with System; package GNAT.MD5 is new GNAT.Secure_Hashes.H (Block_Words => GNAT.Secure_Hashes.MD5.Block_Words, State_Words => 4, Hash_Words => 4, Hash_Bit_Order => System.Low_Order_First, Hash_State => GNAT.Secure_Hashes.MD5.Hash_State, Initial_State => GNAT.Secure_Hashes.MD5.Initial_State, Transform => GNAT.Secure_Hashes.MD5.Transform);
61.28
78
0.389034
399d661351eb5dbd947fe5a7dad8623166c36b01
10,703
ads
Ada
src/submarinesubsystem.ads
T-Bone-Willson/SubmarinesFormalApproaches
0a79bb2d15fcb0a061b64abe97d06360ddb85612
[ "MIT" ]
null
null
null
src/submarinesubsystem.ads
T-Bone-Willson/SubmarinesFormalApproaches
0a79bb2d15fcb0a061b64abe97d06360ddb85612
[ "MIT" ]
null
null
null
src/submarinesubsystem.ads
T-Bone-Willson/SubmarinesFormalApproaches
0a79bb2d15fcb0a061b64abe97d06360ddb85612
[ "MIT" ]
null
null
null
package SubmarineSubSystem with SPARK_Mode is type Operational is (On, Off); -- Can Submarine Operate? type DoSomething is (Fire, CantFire); -- Test for actions can only be done once, -- Nuclear Submarine is operational. --Door Duntionality types type AirDoorOne is (Closed, Open); -- Airlock door One closed or open type AirDoorTwo is (Closed, Open); -- Airlock door Two Closed or open type DoorOneLock is (Locked, Unlocked); -- Airlock door One Locked or Unlocked type DoorTwoLock is (Locked, Unlocked); -- Airlock door Two Locked or Unlocked -- Depth Sensor types type DepthDive is (Dive, Surface); type DepthStage is (Nominal, Warning, Danger); type DepthLevel is new Integer range 0..10; -- Oxyegen System types type OxygenState is (High, Low); type OxygenWarning is (Oxygen_Fine, Oxygen_Warning); type OxygenTank is new Integer range 0..100; -- Reactor System types type ReactorTemp is (Fine, Overheating); -- Submarine variables type Submarine is record GoodToGo : Operational; OpTest : DoSomething; ClosingOne : AirDoorOne; ClosingTwo : AirDoorTwo; LockingOne : DoorOneLock; LockingTwo : DoorTwoLock; DDive : DepthDive; DStage : DepthStage; DLevel : DepthLevel; OState : OxygenState; OWarning : OxygenWarning; OTank : OxygenTank; RTemp : ReactorTemp; end record; -- Record of NuclearSubmarine NuclearSubmarine : Submarine := (GoodToGo => Off, ClosingOne => Open, ClosingTwo => Closed, LockingOne => Unlocked, LockingTwo => Unlocked, OpTest => CantFire, DDive => Surface, DStage => Nominal, DLevel => 0, OState => High, OWarning => Oxygen_Fine, OTank => 100, RTemp => Fine); -- Try to Start Submarine procedure StartSubmarine with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = Off and then NuclearSubmarine.ClosingOne = Closed and then NuclearSubmarine.LockingOne = Locked and then NuclearSubmarine.ClosingTwo = Closed and then NuclearSubmarine.LockingTwo = Locked, Post => NuclearSubmarine.GoodToGo = On; -- Can only do if Submarine is operational, TEST! procedure SubmarineAction with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.ClosingOne = Closed and then NuclearSubmarine.LockingOne = Locked and then NuclearSubmarine.ClosingTwo = Closed and then NuclearSubmarine.LockingTwo = Locked, Post => NuclearSubmarine.OpTest = Fire; ----------------------------------------------------------------------------------------------- -----------------------------------DOOR FUNCTIONALITY------------------------------------------ ----------------------------------------------------------------------------------------------- -- Airlock Door One can only open if Airlock Door Two is Closed. And Vide Versa -- These Checks are made in procedures: D1Close, D2Close, D1Open and D2 Open -- Airlock Door One Close procedure D1Close with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.ClosingOne = Open and then NuclearSubmarine.ClosingTwo = Closed, Post => NuclearSubmarine.ClosingOne = Closed; -- Airlock Door Two Close procedure D2Close with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.ClosingTwo = Open and then NuclearSubmarine.ClosingOne = Closed, Post => NuclearSubmarine.ClosingTwo = Closed; --Airlock Door One Lock procedure D1Lock with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.ClosingOne = Closed and then NuclearSubmarine.LockingOne = Unlocked, Post => NuclearSubmarine.LockingOne = Locked; -- Airlock Door Two Lock procedure D2Lock with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.ClosingTwo = Closed and then NuclearSubmarine.LockingTwo = Unlocked, Post => NuclearSubmarine.LockingTwo = Locked; --Airlock Door One Open procedure D1Open with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.LockingOne = Unlocked and then NuclearSubmarine.ClosingOne = Closed and then NuclearSubmarine.ClosingTwo = Closed, Post => NuclearSubmarine.ClosingOne = Open; -- Airlock Door Two Open procedure D2Open with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.LockingTwo = Unlocked and then NuclearSubmarine.ClosingTwo = Closed and then NuclearSubmarine.ClosingOne = Closed, Post => NuclearSubmarine.ClosingTwo = Open; --Airlock Door One Unlock procedure D1Unlock with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.ClosingOne = Closed and then NuclearSubmarine.LockingOne = Locked, Post => NuclearSubmarine.ClosingOne = Closed and then NuclearSubmarine.LockingOne = Unlocked; -- Airlock Door Two Unlock procedure D2Unlock with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.ClosingTwo = Closed and then NuclearSubmarine.LockingTwo = Locked, Post => NuclearSubmarine.ClosingTwo = Closed and then NuclearSubmarine.LockingTwo = Unlocked; ----------------------------------------------------------------------------------------------- -----------------------------------END OF DOOR FUNCTIONALITY----------------------------------- ----------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------- -----------------------------------DEPTH SENSOR FUNCTIONALITY---------------------------------- ----------------------------------------------------------------------------------------------- -- Gauges Depth Meter to see if Submarine is Nominal, Warning or Danger stage procedure DepthMeterCheck with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire, Post => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire; -- Changes the depth of the Submarine. Cannnot go above 9. procedure ChangeDepth with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Dive and then NuclearSubmarine.DLevel < 8, Post => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Dive and then NuclearSubmarine.DLevel /= 0; -- Checks if Submarine can Dive procedure DiveOrNot with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Surface and then NuclearSubmarine.RTemp = Fine, Post => NuclearSubmarine.DDive = Dive; -- Allows submarine to resurface procedure Resurface with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Dive, Post=> NuclearSubmarine.DDive = Surface and then NuclearSubmarine.OTank = 100; ----------------------------------------------------------------------------------------------- --------------------------- END OF DEPTH SENSOR FUNCTIONALITY---------------------------------- ----------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------- ----------------------------------- OXYGEN FUNCTIONALITY -------------------------------------- ----------------------------------------------------------------------------------------------- -- Checks the integer value in OTank procedure OxygenReserveCheck with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.OTank <= 0, Post => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.OTank <= 0; --This procedure will consume 10 oxygen out of OTank procedure ConsumeOxygen with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Dive and then NuclearSubmarine.OTank >= 10, Post => NuclearSubmarine.GoodToGo = On and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Dive and then NuclearSubmarine.OTank >= 0; ----------------------------------------------------------------------------------------------- ------------------------------- END OF OXYGEN FUNCTIONALITY --------------------------------- ----------------------------------------------------------------------------------------------- -- Post condition MIGHT fail here. Look at Comments from in submarinesubsystem.adb -- Code line 242 to 247 for clarification. -- This procedure will still pass "Bronze" level of Proofing procedure ReactorOverheatRoutine with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = on and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.RTemp = Fine and then NuclearSubmarine.DDive = Dive, Post => NuclearSubmarine.GoodToGo = on and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.RTemp = Fine and then NuclearSubmarine.RTemp = Overheating; procedure CoolReactor with Global => (In_Out => NuclearSubmarine), Pre => NuclearSubmarine.GoodToGo = on and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Surface and then NuclearSubmarine.RTemp = Overheating, Post => NuclearSubmarine.GoodToGo = on and then NuclearSubmarine.OpTest = Fire and then NuclearSubmarine.DDive = Surface and then NuclearSubmarine.RTemp = Fine; ----------------------------------------------------------------------------------------------- ------------------------------- END OF REACTOR FUNCTIONALITY --------------------------------- ----------------------------------------------------------------------------------------------- end SubmarineSubSystem;
42.812
96
0.572176
230e6476367db20475400012bdf46ac81c50c7ad
3,588
ads
Ada
tools/scitools/conf/understand/ada/ada05/a-wtfiio.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada05/a-wtfiio.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada05/a-wtfiio.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . W I D E _ T E X T _ I O . F I X E D _ I O -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- 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 2, 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 COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- -- -- -- -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- In Ada 95, the package Ada.Wide_Text_IO.Fixed_IO is a subpackage of -- Wide_Text_IO. In GNAT we make it a child package to avoid loading -- the necessary code if Fixed_IO is not instantiated. See the routine -- Rtsfind.Text_IO_Kludge for a description of how we patch up the -- difference in semantics so that it is invisible to the Ada programmer. private generic type Num is delta <>; package Ada.Wide_Text_IO.Fixed_IO is Default_Fore : Field := Num'Fore; Default_Aft : Field := Num'Aft; Default_Exp : Field := 0; procedure Get (File : File_Type; Item : out Num; Width : Field := 0); procedure Get (Item : out Num; Width : Field := 0); procedure Put (File : File_Type; Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp); procedure Put (Item : Num; Fore : Field := Default_Fore; Aft : Field := Default_Aft; Exp : Field := Default_Exp); procedure Get (From : Wide_String; Item : out Num; Last : out Positive); procedure Put (To : out Wide_String; Item : Num; Aft : Field := Default_Aft; Exp : Field := Default_Exp); end Ada.Wide_Text_IO.Fixed_IO;
41.241379
78
0.476031
39b176902c44e9bc32a0201294a42658c87662fa
2,553
ads
Ada
regtests/util-processes-tests.ads
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
null
null
null
regtests/util-processes-tests.ads
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
null
null
null
regtests/util-processes-tests.ads
yrashk/ada-util
2aaa1d87e92a7137e1c63dce90f0722c549dfafd
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- util-processes-tests - Test for processes -- Copyright (C) 2011, 2016, 2018, 2019, 2021 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.Tests; package Util.Processes.Tests is procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new Util.Tests.Test with null record; -- Tests when the process is not launched procedure Test_No_Process (T : in out Test); -- Test executing a process procedure Test_Spawn (T : in out Test); -- Test output pipe redirection: read the process standard output procedure Test_Output_Pipe (T : in out Test); -- Test input pipe redirection: write the process standard input procedure Test_Input_Pipe (T : in out Test); -- Test error pipe redirection: read the process standard error procedure Test_Error_Pipe (T : in out Test); -- Test shell splitting. procedure Test_Shell_Splitting_Pipe (T : in out Test); -- Test launching several processes through pipes in several threads. procedure Test_Multi_Spawn (T : in out Test); -- Test output file redirection. procedure Test_Output_Redirect (T : in out Test); -- Test input file redirection. procedure Test_Input_Redirect (T : in out Test); -- Test changing working directory. procedure Test_Set_Working_Directory (T : in out Test); -- Test various errors. procedure Test_Errors (T : in out Test); -- Test launching and stopping a process. procedure Test_Stop (T : in out Test); -- Test various errors (pipe streams). procedure Test_Pipe_Errors (T : in out Test); -- Test launching and stopping a process (pipe streams). procedure Test_Pipe_Stop (T : in out Test); -- Test the Tools.Execute operation. procedure Test_Tools_Execute (T : in out Test); end Util.Processes.Tests;
35.458333
76
0.677634