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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1208de6f0f898143c455593e1c955588d2fc8054 | 439 | ada | Ada | Task/Subtractive-generator/Ada/subtractive-generator-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Subtractive-generator/Ada/subtractive-generator-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | null | null | null | Task/Subtractive-generator/Ada/subtractive-generator-3.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | with Ada.Text_IO;
with Subtractive_Generator;
procedure Main is
Random : Subtractive_Generator.State;
N : Natural;
begin
Subtractive_Generator.Initialize (Generator => Random,
Seed => 292929);
for I in 220 .. 222 loop
Subtractive_Generator.Next (Generator => Random, N => N);
Ada.Text_IO.Put_Line (Integer'Image (I) & ":" & Integer'Image (N));
end loop;
end Main;
| 29.266667 | 73 | 0.617312 |
06bcc2a336a7ec499d6ddd4d817515fee8421566 | 5,135 | ads | Ada | PIM/TP6_Modules/stocks_materiel.ads | Hathoute/ENSEEIHT | d42f0b0dedb269e6df3b1c006d4d45e52fc518b8 | [
"MIT"
] | 1 | 2021-06-26T21:51:11.000Z | 2021-06-26T21:51:11.000Z | PIM/TP6_Modules/stocks_materiel.ads | Hathoute/ENSEEIHT | d42f0b0dedb269e6df3b1c006d4d45e52fc518b8 | [
"MIT"
] | null | null | null | PIM/TP6_Modules/stocks_materiel.ads | Hathoute/ENSEEIHT | d42f0b0dedb269e6df3b1c006d4d45e52fc518b8 | [
"MIT"
] | null | null | null |
-- Auteur:
-- Gérer un stock de matériel informatique.
package Stocks_Materiel is
CAPACITE : constant Integer := 10; -- nombre maximum de matériels dans un stock
type T_Nature is (UNITE_CENTRALE, DISQUE, ECRAN, CLAVIER, IMPRIMANTE);
type T_Materiel is private;
type T_Stock is limited private;
-- Créer un stock vide.
--
-- paramètres
-- Stock : le stock à créer
--
-- Assure
-- Nb_Materiels (Stock) = 0
--
procedure Creer (Stock : out T_Stock) with
Post => Nb_Materiels (Stock) = 0;
-- Obtenir le nombre de matériels dans le stock Stock.
--
-- Paramètres
-- Stock : le stock dont ont veut obtenir la taille
--
-- Nécessite
-- Vrai
--
-- Assure
-- Résultat >= 0 Et Résultat <= CAPACITE
--
function Nb_Materiels (Stock: in T_Stock) return Integer with
Post => Nb_Materiels'Result >= 0 and Nb_Materiels'Result <= CAPACITE;
-- Obtenir le nombre de matériels non fonctionnel dans le stock Stock.
--
-- Paramètres
-- Stock : le stock dont ont veut obtenir la taille
--
-- Nécessite
-- Vrai
--
-- Assure
-- Résultat >= 0 Et Résultat <= CAPACITE
--
function Nb_Defectueux (Stock: in T_Stock) return Integer with
Post => Nb_Defectueux'Result >= 0 and Nb_Defectueux'Result <= CAPACITE;
-- Modifie l'état d'un matériel à l'aide de son numéro de série.
--
-- Paramètres
-- Stock : le stock à compléter
-- Numero_Serie : le numéro de série du matériel
-- Est_Fonctionnel : le nouveau état du matériel
--
-- Nécessite
-- Nb_Materiels (Stock) > 0
-- Un matériel de numéro de serie = Numero_Serie est déja présent.
--
-- Assure
-- Matériel de numéro de serie = Numero_Serie à bien l'état Est_Fonctionnel
procedure Mettre_A_Jour (
Stock: in out T_Stock;
Numero_Serie: in Integer;
Est_Fonctionnel: in Boolean
) with
Pre => Nb_Materiels(Stock) > 0 and Existe(Stock, Numero_Serie);
-- Supprime un matériel du stock à l'aide de son numéro de série.
--
-- Paramètres
-- Stock : le stock à compléter
-- Numero_Serie : le numéro de série du matériel
--
-- Nécessite
-- Nb_Materiels (Stock) > 0
-- Un matériel de numéro de serie = Numero_Serie est déja présent.
--
-- Assure
-- Nb_Materiels (Stock) = Nb_Materiels (Stock)'Avant - 1;
procedure Supprimer (
Stock: in out T_Stock;
Numero_Serie: in Integer
) with
Pre => Nb_Materiels(Stock) > 0 and Existe(Stock, Numero_Serie),
Post => Nb_Materiels (Stock) = Nb_Materiels (Stock)'Old - 1;
-- Enregistrer un nouveau métériel dans le stock. Il est en
-- fonctionnement. Le stock ne doit pas être plein.
--
-- Paramètres
-- Stock : le stock à compléter
-- Numero_Serie : le numéro de série du nouveau matériel
-- Nature : la nature du nouveau matériel
-- Annee_Achat : l'année d'achat du nouveau matériel
--
-- Nécessite
-- Nb_Materiels (Stock) < CAPACITE
--
-- Assure
-- Nouveau matériel ajouté
-- Nb_Materiels (Stock) = Nb_Materiels (Stock)'Avant + 1
procedure Enregistrer (
Stock : in out T_Stock;
Numero_Serie : in Integer;
Nature : in T_Nature;
Annee_Achat : in Integer
) with
Pre => Nb_Materiels (Stock) < CAPACITE,
Post => Nb_Materiels (Stock) = Nb_Materiels (Stock)'Old + 1;
-- Existence d'un matériel avec le numéro de serie donné.
--
-- Paramètres
-- Stock : le stock à compléter
-- Numero_Serie : le numéro de série du matériel
--
-- Nécessite
-- Vrai
--
-- Assure
-- Vrai
function Existe (Stock: in T_Stock; Numero_Serie: in Integer) return Boolean;
-- Afficher le stock au terminal.
--
-- Paramètres
-- Stock : le stock à compléter
--
-- Nécessite
-- Vrai
--
-- Assure
-- Vrai
procedure Afficher (Stock: in T_Stock);
-- Supprimer tous les matériels qui ne sont pas en état de fonctionnement.
--
-- Paramètres
-- Stock : le stock à compléter
--
-- Nécessite
-- Vrai
--
-- Assure
-- Nb_Defectueux(Stock) = 0 et Nb_Materials(Stock) = Nb_Materials(Stock)'Avant - Nb_Defectueux(Stock)'Avant
procedure Nettoyer (Stock: in out T_Stock) with
Post => Nb_Defectueux(Stock) = 0 and Nb_Materiels(Stock) = Nb_Materiels(Stock)'Old - Nb_Defectueux(Stock)'Old;
private
type T_Materiel is record
Numero_Serie: Integer;
Nature: T_Nature;
Annee_Achat: Integer;
Est_Fonctionnel: Boolean;
end record;
type T_Materiels is array(1..CAPACITE) of T_Materiel;
type T_Stock is record
Materiels: T_Materiels;
Nombre: Integer;
end record;
end Stocks_Materiel;
| 29.342857 | 118 | 0.590068 |
06664425bc4e47e06138d9a6ee8fa7c91ef9b6e0 | 1,578 | ads | Ada | tier-1/xcb/source/thin/xcb-xcb_intern_atom_request_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_intern_atom_request_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_intern_atom_request_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | null | null | null | -- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with swig;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_intern_atom_request_t is
-- Item
--
type Item is record
major_opcode : aliased Interfaces.Unsigned_8;
only_if_exists : aliased Interfaces.Unsigned_8;
length : aliased Interfaces.Unsigned_16;
name_len : aliased Interfaces.Unsigned_16;
pad0 : aliased swig.int8_t_Array (0 .. 1);
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C.size_t range <>) of aliased xcb.xcb_intern_atom_request_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_intern_atom_request_t.Item,
Element_Array => xcb.xcb_intern_atom_request_t.Item_Array,
Default_Terminator => (others => <>));
subtype Pointer is C_Pointers.Pointer;
-- Pointer_Array
--
type Pointer_Array is
array
(Interfaces.C.size_t range <>) of aliased xcb.xcb_intern_atom_request_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_intern_atom_request_t.Pointer,
Element_Array => xcb.xcb_intern_atom_request_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_intern_atom_request_t;
| 28.178571 | 78 | 0.666033 |
0edfffbf72d15e11f82b6f201b03311b380c41a6 | 190 | ada | Ada | Task/Knights-tour/Ada/knights-tour-4.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:38.000Z | 2018-11-09T22:08:38.000Z | Task/Knights-tour/Ada/knights-tour-4.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | null | null | null | Task/Knights-tour/Ada/knights-tour-4.ada | mullikine/RosettaCodeData | 4f0027c6ce83daa36118ee8b67915a13cd23ab67 | [
"Info-ZIP"
] | 1 | 2018-11-09T22:08:40.000Z | 2018-11-09T22:08:40.000Z | function Warnsdorff_Get_Tour(Start_X, Start_Y: Index; Scene: Tour := Empty)
return Tour;
-- uses Warnsdorff heurisitic to find a tour faster
-- same interface as Get_Tour
| 38 | 78 | 0.705263 |
5974949708269ebed00109d87eced0fa38f37b33 | 919 | adb | Ada | gdb/testsuite/gdb.ada/set_pckd_arr_elt/foo.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/set_pckd_arr_elt/foo.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/set_pckd_arr_elt/foo.adb | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2012-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 Pck; use Pck;
procedure Foo is
SA : Simple_Array := (1, 2, 3, 4);
VA : Variant_Access := New_Variant (Size => 3);
begin
Update_Small (SA (3)); -- STOP
Update_Small (VA.T (1));
end Foo;
| 36.76 | 73 | 0.708379 |
293dc937b664879a6ae2e23648921d9e9c3bb47d | 157,166 | ads | Ada | arch/ARM/RP/svd/rp2040/rp_svd-i2c1.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 2 | 2018-05-16T03:56:39.000Z | 2019-07-31T13:53:56.000Z | arch/ARM/RP/svd/rp2040/rp_svd-i2c1.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | arch/ARM/RP/svd/rp2040/rp_svd-i2c1.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
--
-- SPDX-License-Identifier: BSD-3-Clause
-- This spec has been automatically generated from rp2040.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
-- DW_apb_i2c address block
package RP_SVD.I2C1 is
pragma Preelaborate;
---------------
-- Registers --
---------------
-- This bit controls whether the DW_apb_i2c master is enabled.\n\n NOTE:
-- Software should ensure that if this bit is written with '1' then bit 6
-- should also be written with a '1'.
type IC_CON_MASTER_MODE_Field is
(-- Master mode is disabled
Disabled,
-- Master mode is enabled
Enabled)
with Size => 1;
for IC_CON_MASTER_MODE_Field use
(Disabled => 0,
Enabled => 1);
-- These bits control at which speed the DW_apb_i2c operates; its setting
-- is relevant only if one is operating the DW_apb_i2c in master mode.
-- Hardware protects against illegal values being programmed by software.
-- These bits must be programmed appropriately for slave mode also, as it
-- is used to capture correct value of spike filter as per the speed
-- mode.\n\n This register should be programmed only with a value in the
-- range of 1 to IC_MAX_SPEED_MODE; otherwise, hardware updates this
-- register with the value of IC_MAX_SPEED_MODE.\n\n 1: standard mode (100
-- kbit/s)\n\n 2: fast mode (<=400 kbit/s) or fast mode plus
-- (<=1000Kbit/s)\n\n 3: high speed mode (3.4 Mbit/s)\n\n Note: This field
-- is not applicable when IC_ULTRA_FAST_MODE=1
type IC_CON_SPEED_Field is
(-- Standard Speed mode of operation
Standard,
-- Fast or Fast Plus mode of operation
Fast,
-- High Speed mode of operation
High)
with Size => 2;
for IC_CON_SPEED_Field use
(Standard => 1,
Fast => 2,
High => 3);
-- When acting as a slave, this bit controls whether the DW_apb_i2c
-- responds to 7- or 10-bit addresses. - 0: 7-bit addressing. The
-- DW_apb_i2c ignores transactions that involve 10-bit addressing; for
-- 7-bit addressing, only the lower 7 bits of the IC_SAR register are
-- compared. - 1: 10-bit addressing. The DW_apb_i2c responds to only 10-bit
-- addressing transfers that match the full 10 bits of the IC_SAR register.
type IC_CON_IC_10BITADDR_SLAVE_Field is
(-- Slave 7Bit addressing
Addr_7Bits,
-- Slave 10Bit addressing
Addr_10Bits)
with Size => 1;
for IC_CON_IC_10BITADDR_SLAVE_Field use
(Addr_7Bits => 0,
Addr_10Bits => 1);
-- Controls whether the DW_apb_i2c starts its transfers in 7- or 10-bit
-- addressing mode when acting as a master. - 0: 7-bit addressing - 1:
-- 10-bit addressing
type IC_CON_IC_10BITADDR_MASTER_Field is
(-- Master 7Bit addressing mode
Addr_7Bits,
-- Master 10Bit addressing mode
Addr_10Bits)
with Size => 1;
for IC_CON_IC_10BITADDR_MASTER_Field use
(Addr_7Bits => 0,
Addr_10Bits => 1);
-- Determines whether RESTART conditions may be sent when acting as a
-- master. Some older slaves do not support handling RESTART conditions;
-- however, RESTART conditions are used in several DW_apb_i2c operations.
-- When RESTART is disabled, the master is prohibited from performing the
-- following functions: - Sending a START BYTE - Performing any high-speed
-- mode operation - High-speed mode operation - Performing direction
-- changes in combined format mode - Performing a read operation with a
-- 10-bit address By replacing RESTART condition followed by a STOP and a
-- subsequent START condition, split operations are broken down into
-- multiple DW_apb_i2c transfers. If the above operations are performed, it
-- will result in setting bit 6 (TX_ABRT) of the IC_RAW_INTR_STAT
-- register.\n\n Reset value: ENABLED
type IC_CON_IC_RESTART_EN_Field is
(-- Master restart disabled
Disabled,
-- Master restart enabled
Enabled)
with Size => 1;
for IC_CON_IC_RESTART_EN_Field use
(Disabled => 0,
Enabled => 1);
-- This bit controls whether I2C has its slave disabled, which means once
-- the presetn signal is applied, then this bit is set and the slave is
-- disabled.\n\n If this bit is set (slave is disabled), DW_apb_i2c
-- functions only as a master and does not perform any action that requires
-- a slave.\n\n NOTE: Software should ensure that if this bit is written
-- with 0, then bit 0 should also be written with a 0.
type IC_CON_IC_SLAVE_DISABLE_Field is
(-- Slave mode is enabled
Slave_Enabled,
-- Slave mode is disabled
Slave_Disabled)
with Size => 1;
for IC_CON_IC_SLAVE_DISABLE_Field use
(Slave_Enabled => 0,
Slave_Disabled => 1);
-- In slave mode: - 1'b1: issues the STOP_DET interrupt only when it is
-- addressed. - 1'b0: issues the STOP_DET irrespective of whether it's
-- addressed or not. Reset value: 0x0\n\n NOTE: During a general call
-- address, this slave does not issue the STOP_DET interrupt if
-- STOP_DET_IF_ADDRESSED = 1'b1, even if the slave responds to the general
-- call address by generating ACK. The STOP_DET interrupt is generated only
-- when the transmitted address matches the slave address (SAR).
type IC_CON_STOP_DET_IFADDRESSED_Field is
(-- slave issues STOP_DET intr always
Disabled,
-- slave issues STOP_DET intr only if addressed
Enabled)
with Size => 1;
for IC_CON_STOP_DET_IFADDRESSED_Field use
(Disabled => 0,
Enabled => 1);
-- This bit controls the generation of the TX_EMPTY interrupt, as described
-- in the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0.
type IC_CON_TX_EMPTY_CTRL_Field is
(-- Default behaviour of TX_EMPTY interrupt
Disabled,
-- Controlled generation of TX_EMPTY interrupt
Enabled)
with Size => 1;
for IC_CON_TX_EMPTY_CTRL_Field use
(Disabled => 0,
Enabled => 1);
-- This bit controls whether DW_apb_i2c should hold the bus when the Rx
-- FIFO is physically full to its RX_BUFFER_DEPTH, as described in the
-- IC_RX_FULL_HLD_BUS_EN parameter.\n\n Reset value: 0x0.
type IC_CON_RX_FIFO_FULL_HLD_CTRL_Field is
(-- Overflow when RX_FIFO is full
Disabled,
-- Hold bus when RX_FIFO is full
Enabled)
with Size => 1;
for IC_CON_RX_FIFO_FULL_HLD_CTRL_Field use
(Disabled => 0,
Enabled => 1);
-- I2C Control Register. This register can be written only when the
-- DW_apb_i2c is disabled, which corresponds to the IC_ENABLE[0] register
-- being set to 0. Writes at other times have no effect.\n\n Read/Write
-- Access: - bit 10 is read only. - bit 11 is read only - bit 16 is read
-- only - bit 17 is read only - bits 18 and 19 are read only.
type IC_CON_Register is record
-- This bit controls whether the DW_apb_i2c master is enabled.\n\n NOTE:
-- Software should ensure that if this bit is written with '1' then bit
-- 6 should also be written with a '1'.
MASTER_MODE : IC_CON_MASTER_MODE_Field :=
RP_SVD.I2C1.Enabled;
-- These bits control at which speed the DW_apb_i2c operates; its
-- setting is relevant only if one is operating the DW_apb_i2c in master
-- mode. Hardware protects against illegal values being programmed by
-- software. These bits must be programmed appropriately for slave mode
-- also, as it is used to capture correct value of spike filter as per
-- the speed mode.\n\n This register should be programmed only with a
-- value in the range of 1 to IC_MAX_SPEED_MODE; otherwise, hardware
-- updates this register with the value of IC_MAX_SPEED_MODE.\n\n 1:
-- standard mode (100 kbit/s)\n\n 2: fast mode (<=400 kbit/s) or fast
-- mode plus (<=1000Kbit/s)\n\n 3: high speed mode (3.4 Mbit/s)\n\n
-- Note: This field is not applicable when IC_ULTRA_FAST_MODE=1
SPEED : IC_CON_SPEED_Field := RP_SVD.I2C1.Fast;
-- When acting as a slave, this bit controls whether the DW_apb_i2c
-- responds to 7- or 10-bit addresses. - 0: 7-bit addressing. The
-- DW_apb_i2c ignores transactions that involve 10-bit addressing; for
-- 7-bit addressing, only the lower 7 bits of the IC_SAR register are
-- compared. - 1: 10-bit addressing. The DW_apb_i2c responds to only
-- 10-bit addressing transfers that match the full 10 bits of the IC_SAR
-- register.
IC_10BITADDR_SLAVE : IC_CON_IC_10BITADDR_SLAVE_Field :=
RP_SVD.I2C1.Addr_7Bits;
-- Controls whether the DW_apb_i2c starts its transfers in 7- or 10-bit
-- addressing mode when acting as a master. - 0: 7-bit addressing - 1:
-- 10-bit addressing
IC_10BITADDR_MASTER : IC_CON_IC_10BITADDR_MASTER_Field :=
RP_SVD.I2C1.Addr_7Bits;
-- Determines whether RESTART conditions may be sent when acting as a
-- master. Some older slaves do not support handling RESTART conditions;
-- however, RESTART conditions are used in several DW_apb_i2c
-- operations. When RESTART is disabled, the master is prohibited from
-- performing the following functions: - Sending a START BYTE -
-- Performing any high-speed mode operation - High-speed mode operation
-- - Performing direction changes in combined format mode - Performing a
-- read operation with a 10-bit address By replacing RESTART condition
-- followed by a STOP and a subsequent START condition, split operations
-- are broken down into multiple DW_apb_i2c transfers. If the above
-- operations are performed, it will result in setting bit 6 (TX_ABRT)
-- of the IC_RAW_INTR_STAT register.\n\n Reset value: ENABLED
IC_RESTART_EN : IC_CON_IC_RESTART_EN_Field :=
RP_SVD.I2C1.Enabled;
-- This bit controls whether I2C has its slave disabled, which means
-- once the presetn signal is applied, then this bit is set and the
-- slave is disabled.\n\n If this bit is set (slave is disabled),
-- DW_apb_i2c functions only as a master and does not perform any action
-- that requires a slave.\n\n NOTE: Software should ensure that if this
-- bit is written with 0, then bit 0 should also be written with a 0.
IC_SLAVE_DISABLE : IC_CON_IC_SLAVE_DISABLE_Field :=
RP_SVD.I2C1.Slave_Disabled;
-- In slave mode: - 1'b1: issues the STOP_DET interrupt only when it is
-- addressed. - 1'b0: issues the STOP_DET irrespective of whether it's
-- addressed or not. Reset value: 0x0\n\n NOTE: During a general call
-- address, this slave does not issue the STOP_DET interrupt if
-- STOP_DET_IF_ADDRESSED = 1'b1, even if the slave responds to the
-- general call address by generating ACK. The STOP_DET interrupt is
-- generated only when the transmitted address matches the slave address
-- (SAR).
STOP_DET_IFADDRESSED : IC_CON_STOP_DET_IFADDRESSED_Field :=
RP_SVD.I2C1.Disabled;
-- This bit controls the generation of the TX_EMPTY interrupt, as
-- described in the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0.
TX_EMPTY_CTRL : IC_CON_TX_EMPTY_CTRL_Field :=
RP_SVD.I2C1.Disabled;
-- This bit controls whether DW_apb_i2c should hold the bus when the Rx
-- FIFO is physically full to its RX_BUFFER_DEPTH, as described in the
-- IC_RX_FULL_HLD_BUS_EN parameter.\n\n Reset value: 0x0.
RX_FIFO_FULL_HLD_CTRL : IC_CON_RX_FIFO_FULL_HLD_CTRL_Field :=
RP_SVD.I2C1.Disabled;
-- Read-only. Master issues the STOP_DET interrupt irrespective of
-- whether master is active or not
STOP_DET_IF_MASTER_ACTIVE : Boolean := False;
-- unspecified
Reserved_11_31 : HAL.UInt21 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CON_Register use record
MASTER_MODE at 0 range 0 .. 0;
SPEED at 0 range 1 .. 2;
IC_10BITADDR_SLAVE at 0 range 3 .. 3;
IC_10BITADDR_MASTER at 0 range 4 .. 4;
IC_RESTART_EN at 0 range 5 .. 5;
IC_SLAVE_DISABLE at 0 range 6 .. 6;
STOP_DET_IFADDRESSED at 0 range 7 .. 7;
TX_EMPTY_CTRL at 0 range 8 .. 8;
RX_FIFO_FULL_HLD_CTRL at 0 range 9 .. 9;
STOP_DET_IF_MASTER_ACTIVE at 0 range 10 .. 10;
Reserved_11_31 at 0 range 11 .. 31;
end record;
subtype IC_TAR_IC_TAR_Field is HAL.UInt10;
-- If bit 11 (SPECIAL) is set to 1 and bit 13(Device-ID) is set to 0, then
-- this bit indicates whether a General Call or START byte command is to be
-- performed by the DW_apb_i2c. - 0: General Call Address - after issuing a
-- General Call, only writes may be performed. Attempting to issue a read
-- command results in setting bit 6 (TX_ABRT) of the IC_RAW_INTR_STAT
-- register. The DW_apb_i2c remains in General Call mode until the SPECIAL
-- bit value (bit 11) is cleared. - 1: START BYTE Reset value: 0x0
type IC_TAR_GC_OR_START_Field is
(-- GENERAL_CALL byte transmission
General_Call,
-- START byte transmission
Start_Byte)
with Size => 1;
for IC_TAR_GC_OR_START_Field use
(General_Call => 0,
Start_Byte => 1);
-- This bit indicates whether software performs a Device-ID or General Call
-- or START BYTE command. - 0: ignore bit 10 GC_OR_START and use IC_TAR
-- normally - 1: perform special I2C command as specified in Device_ID or
-- GC_OR_START bit Reset value: 0x0
type IC_TAR_SPECIAL_Field is
(-- Disables programming of GENERAL_CALL or START_BYTE transmission
Disabled,
-- Enables programming of GENERAL_CALL or START_BYTE transmission
Enabled)
with Size => 1;
for IC_TAR_SPECIAL_Field use
(Disabled => 0,
Enabled => 1);
-- I2C Target Address Register\n\n This register is 12 bits wide, and bits
-- 31:12 are reserved. This register can be written to only when
-- IC_ENABLE[0] is set to 0.\n\n Note: If the software or application is
-- aware that the DW_apb_i2c is not using the TAR address for the pending
-- commands in the Tx FIFO, then it is possible to update the TAR address
-- even while the Tx FIFO has entries (IC_STATUS[2]= 0). - It is not
-- necessary to perform any write to this register if DW_apb_i2c is enabled
-- as an I2C slave only.
type IC_TAR_Register is record
-- This is the target address for any master transaction. When
-- transmitting a General Call, these bits are ignored. To generate a
-- START BYTE, the CPU needs to write only once into these bits.\n\n If
-- the IC_TAR and IC_SAR are the same, loopback exists but the FIFOs are
-- shared between master and slave, so full loopback is not feasible.
-- Only one direction loopback mode is supported (simplex), not duplex.
-- A master cannot transmit to itself; it can transmit to only a slave.
IC_TAR : IC_TAR_IC_TAR_Field := 16#55#;
-- If bit 11 (SPECIAL) is set to 1 and bit 13(Device-ID) is set to 0,
-- then this bit indicates whether a General Call or START byte command
-- is to be performed by the DW_apb_i2c. - 0: General Call Address -
-- after issuing a General Call, only writes may be performed.
-- Attempting to issue a read command results in setting bit 6 (TX_ABRT)
-- of the IC_RAW_INTR_STAT register. The DW_apb_i2c remains in General
-- Call mode until the SPECIAL bit value (bit 11) is cleared. - 1: START
-- BYTE Reset value: 0x0
GC_OR_START : IC_TAR_GC_OR_START_Field := RP_SVD.I2C1.General_Call;
-- This bit indicates whether software performs a Device-ID or General
-- Call or START BYTE command. - 0: ignore bit 10 GC_OR_START and use
-- IC_TAR normally - 1: perform special I2C command as specified in
-- Device_ID or GC_OR_START bit Reset value: 0x0
SPECIAL : IC_TAR_SPECIAL_Field := RP_SVD.I2C1.Disabled;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_TAR_Register use record
IC_TAR at 0 range 0 .. 9;
GC_OR_START at 0 range 10 .. 10;
SPECIAL at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype IC_SAR_IC_SAR_Field is HAL.UInt10;
-- I2C Slave Address Register
type IC_SAR_Register is record
-- The IC_SAR holds the slave address when the I2C is operating as a
-- slave. For 7-bit addressing, only IC_SAR[6:0] is used.\n\n This
-- register can be written only when the I2C interface is disabled,
-- which corresponds to the IC_ENABLE[0] register being set to 0. Writes
-- at other times have no effect.\n\n Note: The default values cannot be
-- any of the reserved address locations: that is, 0x00 to 0x07, or 0x78
-- to 0x7f. The correct operation of the device is not guaranteed if you
-- program the IC_SAR or IC_TAR to a reserved value. Refer to
-- <<table_I2C_firstbyte_bit_defs>> for a complete list of these
-- reserved values.
IC_SAR : IC_SAR_IC_SAR_Field := 16#55#;
-- unspecified
Reserved_10_31 : HAL.UInt22 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_SAR_Register use record
IC_SAR at 0 range 0 .. 9;
Reserved_10_31 at 0 range 10 .. 31;
end record;
subtype IC_DATA_CMD_DAT_Field is HAL.UInt8;
-- This bit controls whether a read or a write is performed. This bit does
-- not control the direction when the DW_apb_i2con acts as a slave. It
-- controls only the direction when it acts as a master.\n\n When a command
-- is entered in the TX FIFO, this bit distinguishes the write and read
-- commands. In slave-receiver mode, this bit is a 'don't care' because
-- writes to this register are not required. In slave-transmitter mode, a
-- '0' indicates that the data in IC_DATA_CMD is to be transmitted.\n\n
-- When programming this bit, you should remember the following: attempting
-- to perform a read operation after a General Call command has been sent
-- results in a TX_ABRT interrupt (bit 6 of the IC_RAW_INTR_STAT register),
-- unless bit 11 (SPECIAL) in the IC_TAR register has been cleared. If a
-- '1' is written to this bit after receiving a RD_REQ interrupt, then a
-- TX_ABRT interrupt occurs.\n\n Reset value: 0x0
type IC_DATA_CMD_CMD_Field is
(-- Master Write Command
Write,
-- Master Read Command
Read)
with Size => 1;
for IC_DATA_CMD_CMD_Field use
(Write => 0,
Read => 1);
-- This bit controls whether a STOP is issued after the byte is sent or
-- received.\n\n - 1 - STOP is issued after this byte, regardless of
-- whether or not the Tx FIFO is empty. If the Tx FIFO is not empty, the
-- master immediately tries to start a new transfer by issuing a START and
-- arbitrating for the bus. - 0 - STOP is not issued after this byte,
-- regardless of whether or not the Tx FIFO is empty. If the Tx FIFO is not
-- empty, the master continues the current transfer by sending/receiving
-- data bytes according to the value of the CMD bit. If the Tx FIFO is
-- empty, the master holds the SCL line low and stalls the bus until a new
-- command is available in the Tx FIFO. Reset value: 0x0
type IC_DATA_CMD_STOP_Field is
(-- Don't Issue STOP after this command
Disable,
-- Issue STOP after this command
Enable)
with Size => 1;
for IC_DATA_CMD_STOP_Field use
(Disable => 0,
Enable => 1);
-- This bit controls whether a RESTART is issued before the byte is sent or
-- received.\n\n 1 - If IC_RESTART_EN is 1, a RESTART is issued before the
-- data is sent/received (according to the value of CMD), regardless of
-- whether or not the transfer direction is changing from the previous
-- command; if IC_RESTART_EN is 0, a STOP followed by a START is issued
-- instead.\n\n 0 - If IC_RESTART_EN is 1, a RESTART is issued only if the
-- transfer direction is changing from the previous command; if
-- IC_RESTART_EN is 0, a STOP followed by a START is issued instead.\n\n
-- Reset value: 0x0
type IC_DATA_CMD_RESTART_Field is
(-- Don't Issue RESTART before this command
Disable,
-- Issue RESTART before this command
Enable)
with Size => 1;
for IC_DATA_CMD_RESTART_Field use
(Disable => 0,
Enable => 1);
-- Indicates the first data byte received after the address phase for
-- receive transfer in Master receiver or Slave receiver mode.\n\n Reset
-- value : 0x0\n\n NOTE: In case of APB_DATA_WIDTH=8,\n\n 1. The user has
-- to perform two APB Reads to IC_DATA_CMD in order to get status on 11
-- bit.\n\n 2. In order to read the 11 bit, the user has to perform the
-- first data byte read [7:0] (offset 0x10) and then perform the second
-- read [15:8] (offset 0x11) in order to know the status of 11 bit (whether
-- the data received in previous read is a first data byte or not).\n\n 3.
-- The 11th bit is an optional read field, user can ignore 2nd byte read
-- [15:8] (offset 0x11) if not interested in FIRST_DATA_BYTE status.
type IC_DATA_CMD_FIRST_DATA_BYTE_Field is
(-- Sequential data byte received
Inactive,
-- Non sequential data byte received
Active)
with Size => 1;
for IC_DATA_CMD_FIRST_DATA_BYTE_Field use
(Inactive => 0,
Active => 1);
-- I2C Rx/Tx Data Buffer and Command Register; this is the register the CPU
-- writes to when filling the TX FIFO and the CPU reads from when
-- retrieving bytes from RX FIFO.\n\n The size of the register changes as
-- follows:\n\n Write: - 11 bits when IC_EMPTYFIFO_HOLD_MASTER_EN=1 - 9
-- bits when IC_EMPTYFIFO_HOLD_MASTER_EN=0 Read: - 12 bits when
-- IC_FIRST_DATA_BYTE_STATUS = 1 - 8 bits when IC_FIRST_DATA_BYTE_STATUS =
-- 0 Note: In order for the DW_apb_i2c to continue acknowledging reads, a
-- read command should be written for every byte that is to be received;
-- otherwise the DW_apb_i2c will stop acknowledging.
type IC_DATA_CMD_Register is record
-- This register contains the data to be transmitted or received on the
-- I2C bus. If you are writing to this register and want to perform a
-- read, bits 7:0 (DAT) are ignored by the DW_apb_i2c. However, when you
-- read this register, these bits return the value of data received on
-- the DW_apb_i2c interface.\n\n Reset value: 0x0
DAT : IC_DATA_CMD_DAT_Field := 16#0#;
-- After a write operation all bits in the field are cleared (set to
-- zero). This bit controls whether a read or a write is performed. This
-- bit does not control the direction when the DW_apb_i2con acts as a
-- slave. It controls only the direction when it acts as a master.\n\n
-- When a command is entered in the TX FIFO, this bit distinguishes the
-- write and read commands. In slave-receiver mode, this bit is a 'don't
-- care' because writes to this register are not required. In
-- slave-transmitter mode, a '0' indicates that the data in IC_DATA_CMD
-- is to be transmitted.\n\n When programming this bit, you should
-- remember the following: attempting to perform a read operation after
-- a General Call command has been sent results in a TX_ABRT interrupt
-- (bit 6 of the IC_RAW_INTR_STAT register), unless bit 11 (SPECIAL) in
-- the IC_TAR register has been cleared. If a '1' is written to this bit
-- after receiving a RD_REQ interrupt, then a TX_ABRT interrupt
-- occurs.\n\n Reset value: 0x0
CMD : IC_DATA_CMD_CMD_Field := RP_SVD.I2C1.Write;
-- After a write operation all bits in the field are cleared (set to
-- zero). This bit controls whether a STOP is issued after the byte is
-- sent or received.\n\n - 1 - STOP is issued after this byte,
-- regardless of whether or not the Tx FIFO is empty. If the Tx FIFO is
-- not empty, the master immediately tries to start a new transfer by
-- issuing a START and arbitrating for the bus. - 0 - STOP is not issued
-- after this byte, regardless of whether or not the Tx FIFO is empty.
-- If the Tx FIFO is not empty, the master continues the current
-- transfer by sending/receiving data bytes according to the value of
-- the CMD bit. If the Tx FIFO is empty, the master holds the SCL line
-- low and stalls the bus until a new command is available in the Tx
-- FIFO. Reset value: 0x0
STOP : IC_DATA_CMD_STOP_Field := RP_SVD.I2C1.Disable;
-- After a write operation all bits in the field are cleared (set to
-- zero). This bit controls whether a RESTART is issued before the byte
-- is sent or received.\n\n 1 - If IC_RESTART_EN is 1, a RESTART is
-- issued before the data is sent/received (according to the value of
-- CMD), regardless of whether or not the transfer direction is changing
-- from the previous command; if IC_RESTART_EN is 0, a STOP followed by
-- a START is issued instead.\n\n 0 - If IC_RESTART_EN is 1, a RESTART
-- is issued only if the transfer direction is changing from the
-- previous command; if IC_RESTART_EN is 0, a STOP followed by a START
-- is issued instead.\n\n Reset value: 0x0
RESTART : IC_DATA_CMD_RESTART_Field := RP_SVD.I2C1.Disable;
-- Read-only. Indicates the first data byte received after the address
-- phase for receive transfer in Master receiver or Slave receiver
-- mode.\n\n Reset value : 0x0\n\n NOTE: In case of
-- APB_DATA_WIDTH=8,\n\n 1. The user has to perform two APB Reads to
-- IC_DATA_CMD in order to get status on 11 bit.\n\n 2. In order to read
-- the 11 bit, the user has to perform the first data byte read [7:0]
-- (offset 0x10) and then perform the second read [15:8] (offset 0x11)
-- in order to know the status of 11 bit (whether the data received in
-- previous read is a first data byte or not).\n\n 3. The 11th bit is an
-- optional read field, user can ignore 2nd byte read [15:8] (offset
-- 0x11) if not interested in FIRST_DATA_BYTE status.
FIRST_DATA_BYTE : IC_DATA_CMD_FIRST_DATA_BYTE_Field :=
RP_SVD.I2C1.Inactive;
-- unspecified
Reserved_12_31 : HAL.UInt20 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_DATA_CMD_Register use record
DAT at 0 range 0 .. 7;
CMD at 0 range 8 .. 8;
STOP at 0 range 9 .. 9;
RESTART at 0 range 10 .. 10;
FIRST_DATA_BYTE at 0 range 11 .. 11;
Reserved_12_31 at 0 range 12 .. 31;
end record;
subtype IC_SS_SCL_HCNT_IC_SS_SCL_HCNT_Field is HAL.UInt16;
-- Standard Speed I2C Clock SCL High Count Register
type IC_SS_SCL_HCNT_Register is record
-- This register must be set before any I2C bus transaction can take
-- place to ensure proper I/O timing. This register sets the SCL clock
-- high-period count for standard speed. For more information, refer to
-- 'IC_CLK Frequency Configuration'.\n\n This register can be written
-- only when the I2C interface is disabled which corresponds to the
-- IC_ENABLE[0] register being set to 0. Writes at other times have no
-- effect.\n\n The minimum valid value is 6; hardware prevents values
-- less than this being written, and if attempted results in 6 being
-- set. For designs with APB_DATA_WIDTH = 8, the order of programming is
-- important to ensure the correct operation of the DW_apb_i2c. The
-- lower byte must be programmed first. Then the upper byte is
-- programmed.\n\n NOTE: This register must not be programmed to a value
-- higher than 65525, because DW_apb_i2c uses a 16-bit counter to flag
-- an I2C bus idle condition when this counter reaches a value of
-- IC_SS_SCL_HCNT + 10.
IC_SS_SCL_HCNT : IC_SS_SCL_HCNT_IC_SS_SCL_HCNT_Field := 16#28#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_SS_SCL_HCNT_Register use record
IC_SS_SCL_HCNT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype IC_SS_SCL_LCNT_IC_SS_SCL_LCNT_Field is HAL.UInt16;
-- Standard Speed I2C Clock SCL Low Count Register
type IC_SS_SCL_LCNT_Register is record
-- This register must be set before any I2C bus transaction can take
-- place to ensure proper I/O timing. This register sets the SCL clock
-- low period count for standard speed. For more information, refer to
-- 'IC_CLK Frequency Configuration'\n\n This register can be written
-- only when the I2C interface is disabled which corresponds to the
-- IC_ENABLE[0] register being set to 0. Writes at other times have no
-- effect.\n\n The minimum valid value is 8; hardware prevents values
-- less than this being written, and if attempted, results in 8 being
-- set. For designs with APB_DATA_WIDTH = 8, the order of programming is
-- important to ensure the correct operation of DW_apb_i2c. The lower
-- byte must be programmed first, and then the upper byte is programmed.
IC_SS_SCL_LCNT : IC_SS_SCL_LCNT_IC_SS_SCL_LCNT_Field := 16#2F#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_SS_SCL_LCNT_Register use record
IC_SS_SCL_LCNT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype IC_FS_SCL_HCNT_IC_FS_SCL_HCNT_Field is HAL.UInt16;
-- Fast Mode or Fast Mode Plus I2C Clock SCL High Count Register
type IC_FS_SCL_HCNT_Register is record
-- This register must be set before any I2C bus transaction can take
-- place to ensure proper I/O timing. This register sets the SCL clock
-- high-period count for fast mode or fast mode plus. It is used in
-- high-speed mode to send the Master Code and START BYTE or General
-- CALL. For more information, refer to 'IC_CLK Frequency
-- Configuration'.\n\n This register goes away and becomes read-only
-- returning 0s if IC_MAX_SPEED_MODE = standard. This register can be
-- written only when the I2C interface is disabled, which corresponds to
-- the IC_ENABLE[0] register being set to 0. Writes at other times have
-- no effect.\n\n The minimum valid value is 6; hardware prevents values
-- less than this being written, and if attempted results in 6 being
-- set. For designs with APB_DATA_WIDTH == 8 the order of programming is
-- important to ensure the correct operation of the DW_apb_i2c. The
-- lower byte must be programmed first. Then the upper byte is
-- programmed.
IC_FS_SCL_HCNT : IC_FS_SCL_HCNT_IC_FS_SCL_HCNT_Field := 16#6#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_FS_SCL_HCNT_Register use record
IC_FS_SCL_HCNT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
subtype IC_FS_SCL_LCNT_IC_FS_SCL_LCNT_Field is HAL.UInt16;
-- Fast Mode or Fast Mode Plus I2C Clock SCL Low Count Register
type IC_FS_SCL_LCNT_Register is record
-- This register must be set before any I2C bus transaction can take
-- place to ensure proper I/O timing. This register sets the SCL clock
-- low period count for fast speed. It is used in high-speed mode to
-- send the Master Code and START BYTE or General CALL. For more
-- information, refer to 'IC_CLK Frequency Configuration'.\n\n This
-- register goes away and becomes read-only returning 0s if
-- IC_MAX_SPEED_MODE = standard.\n\n This register can be written only
-- when the I2C interface is disabled, which corresponds to the
-- IC_ENABLE[0] register being set to 0. Writes at other times have no
-- effect.\n\n The minimum valid value is 8; hardware prevents values
-- less than this being written, and if attempted results in 8 being
-- set. For designs with APB_DATA_WIDTH = 8 the order of programming is
-- important to ensure the correct operation of the DW_apb_i2c. The
-- lower byte must be programmed first. Then the upper byte is
-- programmed. If the value is less than 8 then the count value gets
-- changed to 8.
IC_FS_SCL_LCNT : IC_FS_SCL_LCNT_IC_FS_SCL_LCNT_Field := 16#D#;
-- unspecified
Reserved_16_31 : HAL.UInt16 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_FS_SCL_LCNT_Register use record
IC_FS_SCL_LCNT at 0 range 0 .. 15;
Reserved_16_31 at 0 range 16 .. 31;
end record;
-- See IC_RAW_INTR_STAT for a detailed description of R_RX_UNDER bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_RX_UNDER_Field is
(-- RX_UNDER interrupt is inactive
Inactive,
-- RX_UNDER interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_RX_UNDER_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_RX_OVER bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_RX_OVER_Field is
(-- R_RX_OVER interrupt is inactive
Inactive,
-- R_RX_OVER interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_RX_OVER_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_RX_FULL bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_RX_FULL_Field is
(-- R_RX_FULL interrupt is inactive
Inactive,
-- R_RX_FULL interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_RX_FULL_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_TX_OVER bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_TX_OVER_Field is
(-- R_TX_OVER interrupt is inactive
Inactive,
-- R_TX_OVER interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_TX_OVER_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_TX_EMPTY bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_TX_EMPTY_Field is
(-- R_TX_EMPTY interrupt is inactive
Inactive,
-- R_TX_EMPTY interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_TX_EMPTY_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_RD_REQ bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_RD_REQ_Field is
(-- R_RD_REQ interrupt is inactive
Inactive,
-- R_RD_REQ interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_RD_REQ_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_TX_ABRT bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_TX_ABRT_Field is
(-- R_TX_ABRT interrupt is inactive
Inactive,
-- R_TX_ABRT interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_TX_ABRT_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_RX_DONE bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_RX_DONE_Field is
(-- R_RX_DONE interrupt is inactive
Inactive,
-- R_RX_DONE interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_RX_DONE_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_ACTIVITY bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_ACTIVITY_Field is
(-- R_ACTIVITY interrupt is inactive
Inactive,
-- R_ACTIVITY interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_ACTIVITY_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_STOP_DET bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_STOP_DET_Field is
(-- R_STOP_DET interrupt is inactive
Inactive,
-- R_STOP_DET interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_STOP_DET_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_START_DET bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_START_DET_Field is
(-- R_START_DET interrupt is inactive
Inactive,
-- R_START_DET interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_START_DET_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_GEN_CALL bit.\n\n
-- Reset value: 0x0
type IC_INTR_STAT_R_GEN_CALL_Field is
(-- R_GEN_CALL interrupt is inactive
Inactive,
-- R_GEN_CALL interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_GEN_CALL_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_RESTART_DET
-- bit.\n\n Reset value: 0x0
type IC_INTR_STAT_R_RESTART_DET_Field is
(-- R_RESTART_DET interrupt is inactive
Inactive,
-- R_RESTART_DET interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_RESTART_DET_Field use
(Inactive => 0,
Active => 1);
-- See IC_RAW_INTR_STAT for a detailed description of R_MASTER_ON_HOLD
-- bit.\n\n Reset value: 0x0
type IC_INTR_STAT_R_MASTER_ON_HOLD_Field is
(-- R_MASTER_ON_HOLD interrupt is inactive
Inactive,
-- R_MASTER_ON_HOLD interrupt is active
Active)
with Size => 1;
for IC_INTR_STAT_R_MASTER_ON_HOLD_Field use
(Inactive => 0,
Active => 1);
-- I2C Interrupt Status Register\n\n Each bit in this register has a
-- corresponding mask bit in the IC_INTR_MASK register. These bits are
-- cleared by reading the matching interrupt clear register. The unmasked
-- raw versions of these bits are available in the IC_RAW_INTR_STAT
-- register.
type IC_INTR_STAT_Register is record
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_RX_UNDER bit.\n\n Reset value: 0x0
R_RX_UNDER : IC_INTR_STAT_R_RX_UNDER_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_RX_OVER bit.\n\n Reset value: 0x0
R_RX_OVER : IC_INTR_STAT_R_RX_OVER_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_RX_FULL bit.\n\n Reset value: 0x0
R_RX_FULL : IC_INTR_STAT_R_RX_FULL_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_TX_OVER bit.\n\n Reset value: 0x0
R_TX_OVER : IC_INTR_STAT_R_TX_OVER_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_TX_EMPTY bit.\n\n Reset value: 0x0
R_TX_EMPTY : IC_INTR_STAT_R_TX_EMPTY_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_RD_REQ bit.\n\n Reset value: 0x0
R_RD_REQ : IC_INTR_STAT_R_RD_REQ_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_TX_ABRT bit.\n\n Reset value: 0x0
R_TX_ABRT : IC_INTR_STAT_R_TX_ABRT_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_RX_DONE bit.\n\n Reset value: 0x0
R_RX_DONE : IC_INTR_STAT_R_RX_DONE_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_ACTIVITY bit.\n\n Reset value: 0x0
R_ACTIVITY : IC_INTR_STAT_R_ACTIVITY_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_STOP_DET bit.\n\n Reset value: 0x0
R_STOP_DET : IC_INTR_STAT_R_STOP_DET_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_START_DET bit.\n\n Reset value: 0x0
R_START_DET : IC_INTR_STAT_R_START_DET_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_GEN_CALL bit.\n\n Reset value: 0x0
R_GEN_CALL : IC_INTR_STAT_R_GEN_CALL_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_RESTART_DET bit.\n\n Reset value: 0x0
R_RESTART_DET : IC_INTR_STAT_R_RESTART_DET_Field;
-- Read-only. See IC_RAW_INTR_STAT for a detailed description of
-- R_MASTER_ON_HOLD bit.\n\n Reset value: 0x0
R_MASTER_ON_HOLD : IC_INTR_STAT_R_MASTER_ON_HOLD_Field;
-- unspecified
Reserved_14_31 : HAL.UInt18;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_INTR_STAT_Register use record
R_RX_UNDER at 0 range 0 .. 0;
R_RX_OVER at 0 range 1 .. 1;
R_RX_FULL at 0 range 2 .. 2;
R_TX_OVER at 0 range 3 .. 3;
R_TX_EMPTY at 0 range 4 .. 4;
R_RD_REQ at 0 range 5 .. 5;
R_TX_ABRT at 0 range 6 .. 6;
R_RX_DONE at 0 range 7 .. 7;
R_ACTIVITY at 0 range 8 .. 8;
R_STOP_DET at 0 range 9 .. 9;
R_START_DET at 0 range 10 .. 10;
R_GEN_CALL at 0 range 11 .. 11;
R_RESTART_DET at 0 range 12 .. 12;
R_MASTER_ON_HOLD at 0 range 13 .. 13;
Reserved_14_31 at 0 range 14 .. 31;
end record;
-- This bit masks the R_RX_UNDER interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_RX_UNDER_Field is
(-- RX_UNDER interrupt is masked
Enabled,
-- RX_UNDER interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_RX_UNDER_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_RX_OVER interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_RX_OVER_Field is
(-- RX_OVER interrupt is masked
Enabled,
-- RX_OVER interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_RX_OVER_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_RX_FULL interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_RX_FULL_Field is
(-- RX_FULL interrupt is masked
Enabled,
-- RX_FULL interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_RX_FULL_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_TX_OVER interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_TX_OVER_Field is
(-- TX_OVER interrupt is masked
Enabled,
-- TX_OVER interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_TX_OVER_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_TX_EMPTY interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_TX_EMPTY_Field is
(-- TX_EMPTY interrupt is masked
Enabled,
-- TX_EMPTY interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_TX_EMPTY_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_RD_REQ interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_RD_REQ_Field is
(-- RD_REQ interrupt is masked
Enabled,
-- RD_REQ interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_RD_REQ_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_TX_ABRT interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_TX_ABRT_Field is
(-- TX_ABORT interrupt is masked
Enabled,
-- TX_ABORT interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_TX_ABRT_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_RX_DONE interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_RX_DONE_Field is
(-- RX_DONE interrupt is masked
Enabled,
-- RX_DONE interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_RX_DONE_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_ACTIVITY interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x0
type IC_INTR_MASK_M_ACTIVITY_Field is
(-- ACTIVITY interrupt is masked
Enabled,
-- ACTIVITY interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_ACTIVITY_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_STOP_DET interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x0
type IC_INTR_MASK_M_STOP_DET_Field is
(-- STOP_DET interrupt is masked
Enabled,
-- STOP_DET interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_STOP_DET_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_START_DET interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x0
type IC_INTR_MASK_M_START_DET_Field is
(-- START_DET interrupt is masked
Enabled,
-- START_DET interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_START_DET_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_GEN_CALL interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
type IC_INTR_MASK_M_GEN_CALL_Field is
(-- GEN_CALL interrupt is masked
Enabled,
-- GEN_CALL interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_GEN_CALL_Field use
(Enabled => 0,
Disabled => 1);
-- This bit masks the R_RESTART_DET interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x0
type IC_INTR_MASK_M_RESTART_DET_Field is
(-- RESTART_DET interrupt is masked
Enabled,
-- RESTART_DET interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_RESTART_DET_Field use
(Enabled => 0,
Disabled => 1);
-- This M_MASTER_ON_HOLD_read_only bit masks the R_MASTER_ON_HOLD interrupt
-- in IC_INTR_STAT register.\n\n Reset value: 0x0
type IC_INTR_MASK_M_MASTER_ON_HOLD_READ_ONLY_Field is
(-- MASTER_ON_HOLD interrupt is masked
Enabled,
-- MASTER_ON_HOLD interrupt is unmasked
Disabled)
with Size => 1;
for IC_INTR_MASK_M_MASTER_ON_HOLD_READ_ONLY_Field use
(Enabled => 0,
Disabled => 1);
-- I2C Interrupt Mask Register.\n\n These bits mask their corresponding
-- interrupt status bits. This register is active low; a value of 0 masks
-- the interrupt, whereas a value of 1 unmasks the interrupt.
type IC_INTR_MASK_Register is record
-- This bit masks the R_RX_UNDER interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_RX_UNDER : IC_INTR_MASK_M_RX_UNDER_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_RX_OVER interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_RX_OVER : IC_INTR_MASK_M_RX_OVER_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_RX_FULL interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_RX_FULL : IC_INTR_MASK_M_RX_FULL_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_TX_OVER interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_TX_OVER : IC_INTR_MASK_M_TX_OVER_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_TX_EMPTY interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_TX_EMPTY : IC_INTR_MASK_M_TX_EMPTY_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_RD_REQ interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_RD_REQ : IC_INTR_MASK_M_RD_REQ_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_TX_ABRT interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_TX_ABRT : IC_INTR_MASK_M_TX_ABRT_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_RX_DONE interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_RX_DONE : IC_INTR_MASK_M_RX_DONE_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_ACTIVITY interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x0
M_ACTIVITY : IC_INTR_MASK_M_ACTIVITY_Field :=
RP_SVD.I2C1.Enabled;
-- This bit masks the R_STOP_DET interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x0
M_STOP_DET : IC_INTR_MASK_M_STOP_DET_Field :=
RP_SVD.I2C1.Enabled;
-- This bit masks the R_START_DET interrupt in IC_INTR_STAT
-- register.\n\n Reset value: 0x0
M_START_DET : IC_INTR_MASK_M_START_DET_Field :=
RP_SVD.I2C1.Enabled;
-- This bit masks the R_GEN_CALL interrupt in IC_INTR_STAT register.\n\n
-- Reset value: 0x1
M_GEN_CALL : IC_INTR_MASK_M_GEN_CALL_Field :=
RP_SVD.I2C1.Disabled;
-- This bit masks the R_RESTART_DET interrupt in IC_INTR_STAT
-- register.\n\n Reset value: 0x0
M_RESTART_DET : IC_INTR_MASK_M_RESTART_DET_Field :=
RP_SVD.I2C1.Enabled;
-- Read-only. This M_MASTER_ON_HOLD_read_only bit masks the
-- R_MASTER_ON_HOLD interrupt in IC_INTR_STAT register.\n\n Reset value:
-- 0x0
M_MASTER_ON_HOLD_READ_ONLY : IC_INTR_MASK_M_MASTER_ON_HOLD_READ_ONLY_Field :=
RP_SVD.I2C1.Enabled;
-- unspecified
Reserved_14_31 : HAL.UInt18 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_INTR_MASK_Register use record
M_RX_UNDER at 0 range 0 .. 0;
M_RX_OVER at 0 range 1 .. 1;
M_RX_FULL at 0 range 2 .. 2;
M_TX_OVER at 0 range 3 .. 3;
M_TX_EMPTY at 0 range 4 .. 4;
M_RD_REQ at 0 range 5 .. 5;
M_TX_ABRT at 0 range 6 .. 6;
M_RX_DONE at 0 range 7 .. 7;
M_ACTIVITY at 0 range 8 .. 8;
M_STOP_DET at 0 range 9 .. 9;
M_START_DET at 0 range 10 .. 10;
M_GEN_CALL at 0 range 11 .. 11;
M_RESTART_DET at 0 range 12 .. 12;
M_MASTER_ON_HOLD_READ_ONLY at 0 range 13 .. 13;
Reserved_14_31 at 0 range 14 .. 31;
end record;
-- Set if the processor attempts to read the receive buffer when it is
-- empty by reading from the IC_DATA_CMD register. If the module is
-- disabled (IC_ENABLE[0]=0), this bit keeps its level until the master or
-- slave state machines go into idle, and when ic_en goes to 0, this
-- interrupt is cleared.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_RX_UNDER_Field is
(-- RX_UNDER interrupt is inactive
Inactive,
-- RX_UNDER interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_RX_UNDER_Field use
(Inactive => 0,
Active => 1);
-- Set if the receive buffer is completely filled to IC_RX_BUFFER_DEPTH and
-- an additional byte is received from an external I2C device. The
-- DW_apb_i2c acknowledges this, but any data bytes received after the FIFO
-- is full are lost. If the module is disabled (IC_ENABLE[0]=0), this bit
-- keeps its level until the master or slave state machines go into idle,
-- and when ic_en goes to 0, this interrupt is cleared.\n\n Note: If bit 9
-- of the IC_CON register (RX_FIFO_FULL_HLD_CTRL) is programmed to HIGH,
-- then the RX_OVER interrupt never occurs, because the Rx FIFO never
-- overflows.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_RX_OVER_Field is
(-- RX_OVER interrupt is inactive
Inactive,
-- RX_OVER interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_RX_OVER_Field use
(Inactive => 0,
Active => 1);
-- Set when the receive buffer reaches or goes above the RX_TL threshold in
-- the IC_RX_TL register. It is automatically cleared by hardware when
-- buffer level goes below the threshold. If the module is disabled
-- (IC_ENABLE[0]=0), the RX FIFO is flushed and held in reset; therefore
-- the RX FIFO is not full. So this bit is cleared once the IC_ENABLE bit 0
-- is programmed with a 0, regardless of the activity that continues.\n\n
-- Reset value: 0x0
type IC_RAW_INTR_STAT_RX_FULL_Field is
(-- RX_FULL interrupt is inactive
Inactive,
-- RX_FULL interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_RX_FULL_Field use
(Inactive => 0,
Active => 1);
-- Set during transmit if the transmit buffer is filled to
-- IC_TX_BUFFER_DEPTH and the processor attempts to issue another I2C
-- command by writing to the IC_DATA_CMD register. When the module is
-- disabled, this bit keeps its level until the master or slave state
-- machines go into idle, and when ic_en goes to 0, this interrupt is
-- cleared.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_TX_OVER_Field is
(-- TX_OVER interrupt is inactive
Inactive,
-- TX_OVER interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_TX_OVER_Field use
(Inactive => 0,
Active => 1);
-- The behavior of the TX_EMPTY interrupt status differs based on the
-- TX_EMPTY_CTRL selection in the IC_CON register. - When TX_EMPTY_CTRL =
-- 0: This bit is set to 1 when the transmit buffer is at or below the
-- threshold value set in the IC_TX_TL register. - When TX_EMPTY_CTRL = 1:
-- This bit is set to 1 when the transmit buffer is at or below the
-- threshold value set in the IC_TX_TL register and the transmission of the
-- address/data from the internal shift register for the most recently
-- popped command is completed. It is automatically cleared by hardware
-- when the buffer level goes above the threshold. When IC_ENABLE[0] is set
-- to 0, the TX FIFO is flushed and held in reset. There the TX FIFO looks
-- like it has no data within it, so this bit is set to 1, provided there
-- is activity in the master or slave state machines. When there is no
-- longer any activity, then with ic_en=0, this bit is set to 0.\n\n Reset
-- value: 0x0.
type IC_RAW_INTR_STAT_TX_EMPTY_Field is
(-- TX_EMPTY interrupt is inactive
Inactive,
-- TX_EMPTY interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_TX_EMPTY_Field use
(Inactive => 0,
Active => 1);
-- This bit is set to 1 when DW_apb_i2c is acting as a slave and another
-- I2C master is attempting to read data from DW_apb_i2c. The DW_apb_i2c
-- holds the I2C bus in a wait state (SCL=0) until this interrupt is
-- serviced, which means that the slave has been addressed by a remote
-- master that is asking for data to be transferred. The processor must
-- respond to this interrupt and then write the requested data to the
-- IC_DATA_CMD register. This bit is set to 0 just after the processor
-- reads the IC_CLR_RD_REQ register.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_RD_REQ_Field is
(-- RD_REQ interrupt is inactive
Inactive,
-- RD_REQ interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_RD_REQ_Field use
(Inactive => 0,
Active => 1);
-- This bit indicates if DW_apb_i2c, as an I2C transmitter, is unable to
-- complete the intended actions on the contents of the transmit FIFO. This
-- situation can occur both as an I2C master or an I2C slave, and is
-- referred to as a 'transmit abort'. When this bit is set to 1, the
-- IC_TX_ABRT_SOURCE register indicates the reason why the transmit abort
-- takes places.\n\n Note: The DW_apb_i2c flushes/resets/empties the
-- TX_FIFO and RX_FIFO whenever there is a transmit abort caused by any of
-- the events tracked by the IC_TX_ABRT_SOURCE register. The FIFOs remains
-- in this flushed state until the register IC_CLR_TX_ABRT is read. Once
-- this read is performed, the Tx FIFO is then ready to accept more data
-- bytes from the APB interface.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_TX_ABRT_Field is
(-- TX_ABRT interrupt is inactive
Inactive,
-- TX_ABRT interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_TX_ABRT_Field use
(Inactive => 0,
Active => 1);
-- When the DW_apb_i2c is acting as a slave-transmitter, this bit is set to
-- 1 if the master does not acknowledge a transmitted byte. This occurs on
-- the last byte of the transmission, indicating that the transmission is
-- done.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_RX_DONE_Field is
(-- RX_DONE interrupt is inactive
Inactive,
-- RX_DONE interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_RX_DONE_Field use
(Inactive => 0,
Active => 1);
-- This bit captures DW_apb_i2c activity and stays set until it is cleared.
-- There are four ways to clear it: - Disabling the DW_apb_i2c - Reading
-- the IC_CLR_ACTIVITY register - Reading the IC_CLR_INTR register - System
-- reset Once this bit is set, it stays set unless one of the four methods
-- is used to clear it. Even if the DW_apb_i2c module is idle, this bit
-- remains set until cleared, indicating that there was activity on the
-- bus.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_ACTIVITY_Field is
(-- RAW_INTR_ACTIVITY interrupt is inactive
Inactive,
-- RAW_INTR_ACTIVITY interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_ACTIVITY_Field use
(Inactive => 0,
Active => 1);
-- Indicates whether a STOP condition has occurred on the I2C interface
-- regardless of whether DW_apb_i2c is operating in slave or master
-- mode.\n\n In Slave Mode: - If IC_CON[7]=1'b1 (STOP_DET_IFADDRESSED), the
-- STOP_DET interrupt will be issued only if slave is addressed. Note:
-- During a general call address, this slave does not issue a STOP_DET
-- interrupt if STOP_DET_IF_ADDRESSED=1'b1, even if the slave responds to
-- the general call address by generating ACK. The STOP_DET interrupt is
-- generated only when the transmitted address matches the slave address
-- (SAR). - If IC_CON[7]=1'b0 (STOP_DET_IFADDRESSED), the STOP_DET
-- interrupt is issued irrespective of whether it is being addressed. In
-- Master Mode: - If IC_CON[10]=1'b1 (STOP_DET_IF_MASTER_ACTIVE),the
-- STOP_DET interrupt will be issued only if Master is active. - If
-- IC_CON[10]=1'b0 (STOP_DET_IFADDRESSED),the STOP_DET interrupt will be
-- issued irrespective of whether master is active or not. Reset value: 0x0
type IC_RAW_INTR_STAT_STOP_DET_Field is
(-- STOP_DET interrupt is inactive
Inactive,
-- STOP_DET interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_STOP_DET_Field use
(Inactive => 0,
Active => 1);
-- Indicates whether a START or RESTART condition has occurred on the I2C
-- interface regardless of whether DW_apb_i2c is operating in slave or
-- master mode.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_START_DET_Field is
(-- START_DET interrupt is inactive
Inactive,
-- START_DET interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_START_DET_Field use
(Inactive => 0,
Active => 1);
-- Set only when a General Call address is received and it is acknowledged.
-- It stays set until it is cleared either by disabling DW_apb_i2c or when
-- the CPU reads bit 0 of the IC_CLR_GEN_CALL register. DW_apb_i2c stores
-- the received data in the Rx buffer.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_GEN_CALL_Field is
(-- GEN_CALL interrupt is inactive
Inactive,
-- GEN_CALL interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_GEN_CALL_Field use
(Inactive => 0,
Active => 1);
-- Indicates whether a RESTART condition has occurred on the I2C interface
-- when DW_apb_i2c is operating in Slave mode and the slave is being
-- addressed. Enabled only when IC_SLV_RESTART_DET_EN=1.\n\n Note: However,
-- in high-speed mode or during a START BYTE transfer, the RESTART comes
-- before the address field as per the I2C protocol. In this case, the
-- slave is not the addressed slave when the RESTART is issued, therefore
-- DW_apb_i2c does not generate the RESTART_DET interrupt.\n\n Reset value:
-- 0x0
type IC_RAW_INTR_STAT_RESTART_DET_Field is
(-- RESTART_DET interrupt is inactive
Inactive,
-- RESTART_DET interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_RESTART_DET_Field use
(Inactive => 0,
Active => 1);
-- Indicates whether master is holding the bus and TX FIFO is empty.
-- Enabled only when I2C_DYNAMIC_TAR_UPDATE=1 and
-- IC_EMPTYFIFO_HOLD_MASTER_EN=1.\n\n Reset value: 0x0
type IC_RAW_INTR_STAT_MASTER_ON_HOLD_Field is
(-- MASTER_ON_HOLD interrupt is inactive
Inactive,
-- MASTER_ON_HOLD interrupt is active
Active)
with Size => 1;
for IC_RAW_INTR_STAT_MASTER_ON_HOLD_Field use
(Inactive => 0,
Active => 1);
-- I2C Raw Interrupt Status Register\n\n Unlike the IC_INTR_STAT register,
-- these bits are not masked so they always show the true status of the
-- DW_apb_i2c.
type IC_RAW_INTR_STAT_Register is record
-- Read-only. Set if the processor attempts to read the receive buffer
-- when it is empty by reading from the IC_DATA_CMD register. If the
-- module is disabled (IC_ENABLE[0]=0), this bit keeps its level until
-- the master or slave state machines go into idle, and when ic_en goes
-- to 0, this interrupt is cleared.\n\n Reset value: 0x0
RX_UNDER : IC_RAW_INTR_STAT_RX_UNDER_Field;
-- Read-only. Set if the receive buffer is completely filled to
-- IC_RX_BUFFER_DEPTH and an additional byte is received from an
-- external I2C device. The DW_apb_i2c acknowledges this, but any data
-- bytes received after the FIFO is full are lost. If the module is
-- disabled (IC_ENABLE[0]=0), this bit keeps its level until the master
-- or slave state machines go into idle, and when ic_en goes to 0, this
-- interrupt is cleared.\n\n Note: If bit 9 of the IC_CON register
-- (RX_FIFO_FULL_HLD_CTRL) is programmed to HIGH, then the RX_OVER
-- interrupt never occurs, because the Rx FIFO never overflows.\n\n
-- Reset value: 0x0
RX_OVER : IC_RAW_INTR_STAT_RX_OVER_Field;
-- Read-only. Set when the receive buffer reaches or goes above the
-- RX_TL threshold in the IC_RX_TL register. It is automatically cleared
-- by hardware when buffer level goes below the threshold. If the module
-- is disabled (IC_ENABLE[0]=0), the RX FIFO is flushed and held in
-- reset; therefore the RX FIFO is not full. So this bit is cleared once
-- the IC_ENABLE bit 0 is programmed with a 0, regardless of the
-- activity that continues.\n\n Reset value: 0x0
RX_FULL : IC_RAW_INTR_STAT_RX_FULL_Field;
-- Read-only. Set during transmit if the transmit buffer is filled to
-- IC_TX_BUFFER_DEPTH and the processor attempts to issue another I2C
-- command by writing to the IC_DATA_CMD register. When the module is
-- disabled, this bit keeps its level until the master or slave state
-- machines go into idle, and when ic_en goes to 0, this interrupt is
-- cleared.\n\n Reset value: 0x0
TX_OVER : IC_RAW_INTR_STAT_TX_OVER_Field;
-- Read-only. The behavior of the TX_EMPTY interrupt status differs
-- based on the TX_EMPTY_CTRL selection in the IC_CON register. - When
-- TX_EMPTY_CTRL = 0: This bit is set to 1 when the transmit buffer is
-- at or below the threshold value set in the IC_TX_TL register. - When
-- TX_EMPTY_CTRL = 1: This bit is set to 1 when the transmit buffer is
-- at or below the threshold value set in the IC_TX_TL register and the
-- transmission of the address/data from the internal shift register for
-- the most recently popped command is completed. It is automatically
-- cleared by hardware when the buffer level goes above the threshold.
-- When IC_ENABLE[0] is set to 0, the TX FIFO is flushed and held in
-- reset. There the TX FIFO looks like it has no data within it, so this
-- bit is set to 1, provided there is activity in the master or slave
-- state machines. When there is no longer any activity, then with
-- ic_en=0, this bit is set to 0.\n\n Reset value: 0x0.
TX_EMPTY : IC_RAW_INTR_STAT_TX_EMPTY_Field;
-- Read-only. This bit is set to 1 when DW_apb_i2c is acting as a slave
-- and another I2C master is attempting to read data from DW_apb_i2c.
-- The DW_apb_i2c holds the I2C bus in a wait state (SCL=0) until this
-- interrupt is serviced, which means that the slave has been addressed
-- by a remote master that is asking for data to be transferred. The
-- processor must respond to this interrupt and then write the requested
-- data to the IC_DATA_CMD register. This bit is set to 0 just after the
-- processor reads the IC_CLR_RD_REQ register.\n\n Reset value: 0x0
RD_REQ : IC_RAW_INTR_STAT_RD_REQ_Field;
-- Read-only. This bit indicates if DW_apb_i2c, as an I2C transmitter,
-- is unable to complete the intended actions on the contents of the
-- transmit FIFO. This situation can occur both as an I2C master or an
-- I2C slave, and is referred to as a 'transmit abort'. When this bit is
-- set to 1, the IC_TX_ABRT_SOURCE register indicates the reason why the
-- transmit abort takes places.\n\n Note: The DW_apb_i2c
-- flushes/resets/empties the TX_FIFO and RX_FIFO whenever there is a
-- transmit abort caused by any of the events tracked by the
-- IC_TX_ABRT_SOURCE register. The FIFOs remains in this flushed state
-- until the register IC_CLR_TX_ABRT is read. Once this read is
-- performed, the Tx FIFO is then ready to accept more data bytes from
-- the APB interface.\n\n Reset value: 0x0
TX_ABRT : IC_RAW_INTR_STAT_TX_ABRT_Field;
-- Read-only. When the DW_apb_i2c is acting as a slave-transmitter, this
-- bit is set to 1 if the master does not acknowledge a transmitted
-- byte. This occurs on the last byte of the transmission, indicating
-- that the transmission is done.\n\n Reset value: 0x0
RX_DONE : IC_RAW_INTR_STAT_RX_DONE_Field;
-- Read-only. This bit captures DW_apb_i2c activity and stays set until
-- it is cleared. There are four ways to clear it: - Disabling the
-- DW_apb_i2c - Reading the IC_CLR_ACTIVITY register - Reading the
-- IC_CLR_INTR register - System reset Once this bit is set, it stays
-- set unless one of the four methods is used to clear it. Even if the
-- DW_apb_i2c module is idle, this bit remains set until cleared,
-- indicating that there was activity on the bus.\n\n Reset value: 0x0
ACTIVITY : IC_RAW_INTR_STAT_ACTIVITY_Field;
-- Read-only. Indicates whether a STOP condition has occurred on the I2C
-- interface regardless of whether DW_apb_i2c is operating in slave or
-- master mode.\n\n In Slave Mode: - If IC_CON[7]=1'b1
-- (STOP_DET_IFADDRESSED), the STOP_DET interrupt will be issued only if
-- slave is addressed. Note: During a general call address, this slave
-- does not issue a STOP_DET interrupt if STOP_DET_IF_ADDRESSED=1'b1,
-- even if the slave responds to the general call address by generating
-- ACK. The STOP_DET interrupt is generated only when the transmitted
-- address matches the slave address (SAR). - If IC_CON[7]=1'b0
-- (STOP_DET_IFADDRESSED), the STOP_DET interrupt is issued irrespective
-- of whether it is being addressed. In Master Mode: - If
-- IC_CON[10]=1'b1 (STOP_DET_IF_MASTER_ACTIVE),the STOP_DET interrupt
-- will be issued only if Master is active. - If IC_CON[10]=1'b0
-- (STOP_DET_IFADDRESSED),the STOP_DET interrupt will be issued
-- irrespective of whether master is active or not. Reset value: 0x0
STOP_DET : IC_RAW_INTR_STAT_STOP_DET_Field;
-- Read-only. Indicates whether a START or RESTART condition has
-- occurred on the I2C interface regardless of whether DW_apb_i2c is
-- operating in slave or master mode.\n\n Reset value: 0x0
START_DET : IC_RAW_INTR_STAT_START_DET_Field;
-- Read-only. Set only when a General Call address is received and it is
-- acknowledged. It stays set until it is cleared either by disabling
-- DW_apb_i2c or when the CPU reads bit 0 of the IC_CLR_GEN_CALL
-- register. DW_apb_i2c stores the received data in the Rx buffer.\n\n
-- Reset value: 0x0
GEN_CALL : IC_RAW_INTR_STAT_GEN_CALL_Field;
-- Read-only. Indicates whether a RESTART condition has occurred on the
-- I2C interface when DW_apb_i2c is operating in Slave mode and the
-- slave is being addressed. Enabled only when
-- IC_SLV_RESTART_DET_EN=1.\n\n Note: However, in high-speed mode or
-- during a START BYTE transfer, the RESTART comes before the address
-- field as per the I2C protocol. In this case, the slave is not the
-- addressed slave when the RESTART is issued, therefore DW_apb_i2c does
-- not generate the RESTART_DET interrupt.\n\n Reset value: 0x0
RESTART_DET : IC_RAW_INTR_STAT_RESTART_DET_Field;
-- Read-only. Indicates whether master is holding the bus and TX FIFO is
-- empty. Enabled only when I2C_DYNAMIC_TAR_UPDATE=1 and
-- IC_EMPTYFIFO_HOLD_MASTER_EN=1.\n\n Reset value: 0x0
MASTER_ON_HOLD : IC_RAW_INTR_STAT_MASTER_ON_HOLD_Field;
-- unspecified
Reserved_14_31 : HAL.UInt18;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_RAW_INTR_STAT_Register use record
RX_UNDER at 0 range 0 .. 0;
RX_OVER at 0 range 1 .. 1;
RX_FULL at 0 range 2 .. 2;
TX_OVER at 0 range 3 .. 3;
TX_EMPTY at 0 range 4 .. 4;
RD_REQ at 0 range 5 .. 5;
TX_ABRT at 0 range 6 .. 6;
RX_DONE at 0 range 7 .. 7;
ACTIVITY at 0 range 8 .. 8;
STOP_DET at 0 range 9 .. 9;
START_DET at 0 range 10 .. 10;
GEN_CALL at 0 range 11 .. 11;
RESTART_DET at 0 range 12 .. 12;
MASTER_ON_HOLD at 0 range 13 .. 13;
Reserved_14_31 at 0 range 14 .. 31;
end record;
subtype IC_RX_TL_RX_TL_Field is HAL.UInt8;
-- I2C Receive FIFO Threshold Register
type IC_RX_TL_Register is record
-- Receive FIFO Threshold Level.\n\n Controls the level of entries (or
-- above) that triggers the RX_FULL interrupt (bit 2 in IC_RAW_INTR_STAT
-- register). The valid range is 0-255, with the additional restriction
-- that hardware does not allow this value to be set to a value larger
-- than the depth of the buffer. If an attempt is made to do that, the
-- actual value set will be the maximum depth of the buffer. A value of
-- 0 sets the threshold for 1 entry, and a value of 255 sets the
-- threshold for 256 entries.
RX_TL : IC_RX_TL_RX_TL_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_RX_TL_Register use record
RX_TL at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype IC_TX_TL_TX_TL_Field is HAL.UInt8;
-- I2C Transmit FIFO Threshold Register
type IC_TX_TL_Register is record
-- Transmit FIFO Threshold Level.\n\n Controls the level of entries (or
-- below) that trigger the TX_EMPTY interrupt (bit 4 in IC_RAW_INTR_STAT
-- register). The valid range is 0-255, with the additional restriction
-- that it may not be set to value larger than the depth of the buffer.
-- If an attempt is made to do that, the actual value set will be the
-- maximum depth of the buffer. A value of 0 sets the threshold for 0
-- entries, and a value of 255 sets the threshold for 255 entries.
TX_TL : IC_TX_TL_TX_TL_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_TX_TL_Register use record
TX_TL at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- Clear Combined and Individual Interrupt Register
type IC_CLR_INTR_Register is record
-- Read-only. Read this register to clear the combined interrupt, all
-- individual interrupts, and the IC_TX_ABRT_SOURCE register. This bit
-- does not clear hardware clearable interrupts but software clearable
-- interrupts. Refer to Bit 9 of the IC_TX_ABRT_SOURCE register for an
-- exception to clearing IC_TX_ABRT_SOURCE.\n\n Reset value: 0x0
CLR_INTR : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_INTR_Register use record
CLR_INTR at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear RX_UNDER Interrupt Register
type IC_CLR_RX_UNDER_Register is record
-- Read-only. Read this register to clear the RX_UNDER interrupt (bit 0)
-- of the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_RX_UNDER : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_RX_UNDER_Register use record
CLR_RX_UNDER at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear RX_OVER Interrupt Register
type IC_CLR_RX_OVER_Register is record
-- Read-only. Read this register to clear the RX_OVER interrupt (bit 1)
-- of the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_RX_OVER : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_RX_OVER_Register use record
CLR_RX_OVER at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear TX_OVER Interrupt Register
type IC_CLR_TX_OVER_Register is record
-- Read-only. Read this register to clear the TX_OVER interrupt (bit 3)
-- of the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_TX_OVER : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_TX_OVER_Register use record
CLR_TX_OVER at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear RD_REQ Interrupt Register
type IC_CLR_RD_REQ_Register is record
-- Read-only. Read this register to clear the RD_REQ interrupt (bit 5)
-- of the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_RD_REQ : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_RD_REQ_Register use record
CLR_RD_REQ at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear TX_ABRT Interrupt Register
type IC_CLR_TX_ABRT_Register is record
-- Read-only. Read this register to clear the TX_ABRT interrupt (bit 6)
-- of the IC_RAW_INTR_STAT register, and the IC_TX_ABRT_SOURCE register.
-- This also releases the TX FIFO from the flushed/reset state, allowing
-- more writes to the TX FIFO. Refer to Bit 9 of the IC_TX_ABRT_SOURCE
-- register for an exception to clearing IC_TX_ABRT_SOURCE.\n\n Reset
-- value: 0x0
CLR_TX_ABRT : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_TX_ABRT_Register use record
CLR_TX_ABRT at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear RX_DONE Interrupt Register
type IC_CLR_RX_DONE_Register is record
-- Read-only. Read this register to clear the RX_DONE interrupt (bit 7)
-- of the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_RX_DONE : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_RX_DONE_Register use record
CLR_RX_DONE at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear ACTIVITY Interrupt Register
type IC_CLR_ACTIVITY_Register is record
-- Read-only. Reading this register clears the ACTIVITY interrupt if the
-- I2C is not active anymore. If the I2C module is still active on the
-- bus, the ACTIVITY interrupt bit continues to be set. It is
-- automatically cleared by hardware if the module is disabled and if
-- there is no further activity on the bus. The value read from this
-- register to get status of the ACTIVITY interrupt (bit 8) of the
-- IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_ACTIVITY : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_ACTIVITY_Register use record
CLR_ACTIVITY at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear STOP_DET Interrupt Register
type IC_CLR_STOP_DET_Register is record
-- Read-only. Read this register to clear the STOP_DET interrupt (bit 9)
-- of the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_STOP_DET : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_STOP_DET_Register use record
CLR_STOP_DET at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear START_DET Interrupt Register
type IC_CLR_START_DET_Register is record
-- Read-only. Read this register to clear the START_DET interrupt (bit
-- 10) of the IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_START_DET : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_START_DET_Register use record
CLR_START_DET at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Clear GEN_CALL Interrupt Register
type IC_CLR_GEN_CALL_Register is record
-- Read-only. Read this register to clear the GEN_CALL interrupt (bit
-- 11) of IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_GEN_CALL : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_GEN_CALL_Register use record
CLR_GEN_CALL at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Controls whether the DW_apb_i2c is enabled. - 0: Disables DW_apb_i2c (TX
-- and RX FIFOs are held in an erased state) - 1: Enables DW_apb_i2c
-- Software can disable DW_apb_i2c while it is active. However, it is
-- important that care be taken to ensure that DW_apb_i2c is disabled
-- properly. A recommended procedure is described in 'Disabling
-- DW_apb_i2c'.\n\n When DW_apb_i2c is disabled, the following occurs: -
-- The TX FIFO and RX FIFO get flushed. - Status bits in the IC_INTR_STAT
-- register are still active until DW_apb_i2c goes into IDLE state. If the
-- module is transmitting, it stops as well as deletes the contents of the
-- transmit buffer after the current transfer is complete. If the module is
-- receiving, the DW_apb_i2c stops the current transfer at the end of the
-- current byte and does not acknowledge the transfer.\n\n In systems with
-- asynchronous pclk and ic_clk when IC_CLK_TYPE parameter set to
-- asynchronous (1), there is a two ic_clk delay when enabling or disabling
-- the DW_apb_i2c. For a detailed description on how to disable DW_apb_i2c,
-- refer to 'Disabling DW_apb_i2c'\n\n Reset value: 0x0
type IC_ENABLE_ENABLE_Field is
(-- I2C is disabled
Disabled,
-- I2C is enabled
Enabled)
with Size => 1;
for IC_ENABLE_ENABLE_Field use
(Disabled => 0,
Enabled => 1);
-- When set, the controller initiates the transfer abort. - 0: ABORT not
-- initiated or ABORT done - 1: ABORT operation in progress The software
-- can abort the I2C transfer in master mode by setting this bit. The
-- software can set this bit only when ENABLE is already set; otherwise,
-- the controller ignores any write to ABORT bit. The software cannot clear
-- the ABORT bit once set. In response to an ABORT, the controller issues a
-- STOP and flushes the Tx FIFO after completing the current transfer, then
-- sets the TX_ABORT interrupt after the abort operation. The ABORT bit is
-- cleared automatically after the abort operation.\n\n For a detailed
-- description on how to abort I2C transfers, refer to 'Aborting I2C
-- Transfers'.\n\n Reset value: 0x0
type IC_ENABLE_ABORT_Field is
(-- ABORT operation not in progress
Disable,
-- ABORT operation in progress
Enabled)
with Size => 1;
for IC_ENABLE_ABORT_Field use
(Disable => 0,
Enabled => 1);
-- In Master mode: - 1'b1: Blocks the transmission of data on I2C bus even
-- if Tx FIFO has data to transmit. - 1'b0: The transmission of data starts
-- on I2C bus automatically, as soon as the first data is available in the
-- Tx FIFO. Note: To block the execution of Master commands, set the
-- TX_CMD_BLOCK bit only when Tx FIFO is empty (IC_STATUS[2]==1) and Master
-- is in Idle state (IC_STATUS[5] == 0). Any further commands put in the Tx
-- FIFO are not executed until TX_CMD_BLOCK bit is unset. Reset value:
-- IC_TX_CMD_BLOCK_DEFAULT
type IC_ENABLE_TX_CMD_BLOCK_Field is
(-- Tx Command execution not blocked
Not_Blocked,
-- Tx Command execution blocked
Blocked)
with Size => 1;
for IC_ENABLE_TX_CMD_BLOCK_Field use
(Not_Blocked => 0,
Blocked => 1);
-- I2C Enable Register
type IC_ENABLE_Register is record
-- Controls whether the DW_apb_i2c is enabled. - 0: Disables DW_apb_i2c
-- (TX and RX FIFOs are held in an erased state) - 1: Enables DW_apb_i2c
-- Software can disable DW_apb_i2c while it is active. However, it is
-- important that care be taken to ensure that DW_apb_i2c is disabled
-- properly. A recommended procedure is described in 'Disabling
-- DW_apb_i2c'.\n\n When DW_apb_i2c is disabled, the following occurs: -
-- The TX FIFO and RX FIFO get flushed. - Status bits in the
-- IC_INTR_STAT register are still active until DW_apb_i2c goes into
-- IDLE state. If the module is transmitting, it stops as well as
-- deletes the contents of the transmit buffer after the current
-- transfer is complete. If the module is receiving, the DW_apb_i2c
-- stops the current transfer at the end of the current byte and does
-- not acknowledge the transfer.\n\n In systems with asynchronous pclk
-- and ic_clk when IC_CLK_TYPE parameter set to asynchronous (1), there
-- is a two ic_clk delay when enabling or disabling the DW_apb_i2c. For
-- a detailed description on how to disable DW_apb_i2c, refer to
-- 'Disabling DW_apb_i2c'\n\n Reset value: 0x0
ENABLE : IC_ENABLE_ENABLE_Field := RP_SVD.I2C1.Disabled;
-- When set, the controller initiates the transfer abort. - 0: ABORT not
-- initiated or ABORT done - 1: ABORT operation in progress The software
-- can abort the I2C transfer in master mode by setting this bit. The
-- software can set this bit only when ENABLE is already set; otherwise,
-- the controller ignores any write to ABORT bit. The software cannot
-- clear the ABORT bit once set. In response to an ABORT, the controller
-- issues a STOP and flushes the Tx FIFO after completing the current
-- transfer, then sets the TX_ABORT interrupt after the abort operation.
-- The ABORT bit is cleared automatically after the abort operation.\n\n
-- For a detailed description on how to abort I2C transfers, refer to
-- 'Aborting I2C Transfers'.\n\n Reset value: 0x0
ABORT_k : IC_ENABLE_ABORT_Field := RP_SVD.I2C1.Disable;
-- In Master mode: - 1'b1: Blocks the transmission of data on I2C bus
-- even if Tx FIFO has data to transmit. - 1'b0: The transmission of
-- data starts on I2C bus automatically, as soon as the first data is
-- available in the Tx FIFO. Note: To block the execution of Master
-- commands, set the TX_CMD_BLOCK bit only when Tx FIFO is empty
-- (IC_STATUS[2]==1) and Master is in Idle state (IC_STATUS[5] == 0).
-- Any further commands put in the Tx FIFO are not executed until
-- TX_CMD_BLOCK bit is unset. Reset value: IC_TX_CMD_BLOCK_DEFAULT
TX_CMD_BLOCK : IC_ENABLE_TX_CMD_BLOCK_Field := RP_SVD.I2C1.Not_Blocked;
-- unspecified
Reserved_3_31 : HAL.UInt29 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_ENABLE_Register use record
ENABLE at 0 range 0 .. 0;
ABORT_k at 0 range 1 .. 1;
TX_CMD_BLOCK at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
-- I2C Activity Status. Reset value: 0x0
type IC_STATUS_ACTIVITY_Field is
(-- I2C is idle
Inactive,
-- I2C is active
Active)
with Size => 1;
for IC_STATUS_ACTIVITY_Field use
(Inactive => 0,
Active => 1);
-- Transmit FIFO Not Full. Set when the transmit FIFO contains one or more
-- empty locations, and is cleared when the FIFO is full. - 0: Transmit
-- FIFO is full - 1: Transmit FIFO is not full Reset value: 0x1
type IC_STATUS_TFNF_Field is
(-- Tx FIFO is full
Full,
-- Tx FIFO not full
Not_Full)
with Size => 1;
for IC_STATUS_TFNF_Field use
(Full => 0,
Not_Full => 1);
-- Transmit FIFO Completely Empty. When the transmit FIFO is completely
-- empty, this bit is set. When it contains one or more valid entries, this
-- bit is cleared. This bit field does not request an interrupt. - 0:
-- Transmit FIFO is not empty - 1: Transmit FIFO is empty Reset value: 0x1
type IC_STATUS_TFE_Field is
(-- Tx FIFO not empty
Non_Empty,
-- Tx FIFO is empty
Empty)
with Size => 1;
for IC_STATUS_TFE_Field use
(Non_Empty => 0,
Empty => 1);
-- Receive FIFO Not Empty. This bit is set when the receive FIFO contains
-- one or more entries; it is cleared when the receive FIFO is empty. - 0:
-- Receive FIFO is empty - 1: Receive FIFO is not empty Reset value: 0x0
type IC_STATUS_RFNE_Field is
(-- Rx FIFO is empty
Empty,
-- Rx FIFO not empty
Not_Empty)
with Size => 1;
for IC_STATUS_RFNE_Field use
(Empty => 0,
Not_Empty => 1);
-- Receive FIFO Completely Full. When the receive FIFO is completely full,
-- this bit is set. When the receive FIFO contains one or more empty
-- location, this bit is cleared. - 0: Receive FIFO is not full - 1:
-- Receive FIFO is full Reset value: 0x0
type IC_STATUS_RFF_Field is
(-- Rx FIFO not full
Not_Full,
-- Rx FIFO is full
Full)
with Size => 1;
for IC_STATUS_RFF_Field use
(Not_Full => 0,
Full => 1);
-- Master FSM Activity Status. When the Master Finite State Machine (FSM)
-- is not in the IDLE state, this bit is set. - 0: Master FSM is in IDLE
-- state so the Master part of DW_apb_i2c is not Active - 1: Master FSM is
-- not in IDLE state so the Master part of DW_apb_i2c is Active Note:
-- IC_STATUS[0]-that is, ACTIVITY bit-is the OR of SLV_ACTIVITY and
-- MST_ACTIVITY bits.\n\n Reset value: 0x0
type IC_STATUS_MST_ACTIVITY_Field is
(-- Master is idle
Idle,
-- Master not idle
Active)
with Size => 1;
for IC_STATUS_MST_ACTIVITY_Field use
(Idle => 0,
Active => 1);
-- Slave FSM Activity Status. When the Slave Finite State Machine (FSM) is
-- not in the IDLE state, this bit is set. - 0: Slave FSM is in IDLE state
-- so the Slave part of DW_apb_i2c is not Active - 1: Slave FSM is not in
-- IDLE state so the Slave part of DW_apb_i2c is Active Reset value: 0x0
type IC_STATUS_SLV_ACTIVITY_Field is
(-- Slave is idle
Idle,
-- Slave not idle
Active)
with Size => 1;
for IC_STATUS_SLV_ACTIVITY_Field use
(Idle => 0,
Active => 1);
-- I2C Status Register\n\n This is a read-only register used to indicate
-- the current transfer status and FIFO status. The status register may be
-- read at any time. None of the bits in this register request an
-- interrupt.\n\n When the I2C is disabled by writing 0 in bit 0 of the
-- IC_ENABLE register: - Bits 1 and 2 are set to 1 - Bits 3 and 10 are set
-- to 0 When the master or slave state machines goes to idle and ic_en=0: -
-- Bits 5 and 6 are set to 0
type IC_STATUS_Register is record
-- Read-only. I2C Activity Status. Reset value: 0x0
ACTIVITY : IC_STATUS_ACTIVITY_Field;
-- Read-only. Transmit FIFO Not Full. Set when the transmit FIFO
-- contains one or more empty locations, and is cleared when the FIFO is
-- full. - 0: Transmit FIFO is full - 1: Transmit FIFO is not full Reset
-- value: 0x1
TFNF : IC_STATUS_TFNF_Field;
-- Read-only. Transmit FIFO Completely Empty. When the transmit FIFO is
-- completely empty, this bit is set. When it contains one or more valid
-- entries, this bit is cleared. This bit field does not request an
-- interrupt. - 0: Transmit FIFO is not empty - 1: Transmit FIFO is
-- empty Reset value: 0x1
TFE : IC_STATUS_TFE_Field;
-- Read-only. Receive FIFO Not Empty. This bit is set when the receive
-- FIFO contains one or more entries; it is cleared when the receive
-- FIFO is empty. - 0: Receive FIFO is empty - 1: Receive FIFO is not
-- empty Reset value: 0x0
RFNE : IC_STATUS_RFNE_Field;
-- Read-only. Receive FIFO Completely Full. When the receive FIFO is
-- completely full, this bit is set. When the receive FIFO contains one
-- or more empty location, this bit is cleared. - 0: Receive FIFO is not
-- full - 1: Receive FIFO is full Reset value: 0x0
RFF : IC_STATUS_RFF_Field;
-- Read-only. Master FSM Activity Status. When the Master Finite State
-- Machine (FSM) is not in the IDLE state, this bit is set. - 0: Master
-- FSM is in IDLE state so the Master part of DW_apb_i2c is not Active -
-- 1: Master FSM is not in IDLE state so the Master part of DW_apb_i2c
-- is Active Note: IC_STATUS[0]-that is, ACTIVITY bit-is the OR of
-- SLV_ACTIVITY and MST_ACTIVITY bits.\n\n Reset value: 0x0
MST_ACTIVITY : IC_STATUS_MST_ACTIVITY_Field;
-- Read-only. Slave FSM Activity Status. When the Slave Finite State
-- Machine (FSM) is not in the IDLE state, this bit is set. - 0: Slave
-- FSM is in IDLE state so the Slave part of DW_apb_i2c is not Active -
-- 1: Slave FSM is not in IDLE state so the Slave part of DW_apb_i2c is
-- Active Reset value: 0x0
SLV_ACTIVITY : IC_STATUS_SLV_ACTIVITY_Field;
-- unspecified
Reserved_7_31 : HAL.UInt25;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_STATUS_Register use record
ACTIVITY at 0 range 0 .. 0;
TFNF at 0 range 1 .. 1;
TFE at 0 range 2 .. 2;
RFNE at 0 range 3 .. 3;
RFF at 0 range 4 .. 4;
MST_ACTIVITY at 0 range 5 .. 5;
SLV_ACTIVITY at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
subtype IC_TXFLR_TXFLR_Field is HAL.UInt5;
-- I2C Transmit FIFO Level Register This register contains the number of
-- valid data entries in the transmit FIFO buffer. It is cleared whenever:
-- - The I2C is disabled - There is a transmit abort - that is, TX_ABRT bit
-- is set in the IC_RAW_INTR_STAT register - The slave bulk transmit mode
-- is aborted The register increments whenever data is placed into the
-- transmit FIFO and decrements when data is taken from the transmit FIFO.
type IC_TXFLR_Register is record
-- Read-only. Transmit FIFO Level. Contains the number of valid data
-- entries in the transmit FIFO.\n\n Reset value: 0x0
TXFLR : IC_TXFLR_TXFLR_Field;
-- unspecified
Reserved_5_31 : HAL.UInt27;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_TXFLR_Register use record
TXFLR at 0 range 0 .. 4;
Reserved_5_31 at 0 range 5 .. 31;
end record;
subtype IC_RXFLR_RXFLR_Field is HAL.UInt5;
-- I2C Receive FIFO Level Register This register contains the number of
-- valid data entries in the receive FIFO buffer. It is cleared whenever: -
-- The I2C is disabled - Whenever there is a transmit abort caused by any
-- of the events tracked in IC_TX_ABRT_SOURCE The register increments
-- whenever data is placed into the receive FIFO and decrements when data
-- is taken from the receive FIFO.
type IC_RXFLR_Register is record
-- Read-only. Receive FIFO Level. Contains the number of valid data
-- entries in the receive FIFO.\n\n Reset value: 0x0
RXFLR : IC_RXFLR_RXFLR_Field;
-- unspecified
Reserved_5_31 : HAL.UInt27;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_RXFLR_Register use record
RXFLR at 0 range 0 .. 4;
Reserved_5_31 at 0 range 5 .. 31;
end record;
subtype IC_SDA_HOLD_IC_SDA_TX_HOLD_Field is HAL.UInt16;
subtype IC_SDA_HOLD_IC_SDA_RX_HOLD_Field is HAL.UInt8;
-- I2C SDA Hold Time Length Register\n\n The bits [15:0] of this register
-- are used to control the hold time of SDA during transmit in both slave
-- and master mode (after SCL goes from HIGH to LOW).\n\n The bits [23:16]
-- of this register are used to extend the SDA transition (if any) whenever
-- SCL is HIGH in the receiver in either master or slave mode.\n\n Writes
-- to this register succeed only when IC_ENABLE[0]=0.\n\n The values in
-- this register are in units of ic_clk period. The value programmed in
-- IC_SDA_TX_HOLD must be greater than the minimum hold time in each mode
-- one cycle in master mode, seven cycles in slave mode for the value to be
-- implemented.\n\n The programmed SDA hold time during transmit
-- (IC_SDA_TX_HOLD) cannot exceed at any time the duration of the low part
-- of scl. Therefore the programmed value cannot be larger than
-- N_SCL_LOW-2, where N_SCL_LOW is the duration of the low part of the scl
-- period measured in ic_clk cycles.
type IC_SDA_HOLD_Register is record
-- Sets the required SDA hold time in units of ic_clk period, when
-- DW_apb_i2c acts as a transmitter.\n\n Reset value:
-- IC_DEFAULT_SDA_HOLD[15:0].
IC_SDA_TX_HOLD : IC_SDA_HOLD_IC_SDA_TX_HOLD_Field := 16#1#;
-- Sets the required SDA hold time in units of ic_clk period, when
-- DW_apb_i2c acts as a receiver.\n\n Reset value:
-- IC_DEFAULT_SDA_HOLD[23:16].
IC_SDA_RX_HOLD : IC_SDA_HOLD_IC_SDA_RX_HOLD_Field := 16#0#;
-- unspecified
Reserved_24_31 : HAL.UInt8 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_SDA_HOLD_Register use record
IC_SDA_TX_HOLD at 0 range 0 .. 15;
IC_SDA_RX_HOLD at 0 range 16 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-- This field indicates that the Master is in 7-bit addressing mode and the
-- address sent was not acknowledged by any slave.\n\n Reset value: 0x0\n\n
-- Role of DW_apb_i2c: Master-Transmitter or Master-Receiver
type IC_TX_ABRT_SOURCE_ABRT_7B_ADDR_NOACK_Field is
(-- This abort is not generated
Inactive,
-- This abort is generated because of NOACK for 7-bit address
Active)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_7B_ADDR_NOACK_Field use
(Inactive => 0,
Active => 1);
-- This field indicates that the Master is in 10-bit address mode and the
-- first 10-bit address byte was not acknowledged by any slave.\n\n Reset
-- value: 0x0\n\n Role of DW_apb_i2c: Master-Transmitter or Master-Receiver
type IC_TX_ABRT_SOURCE_ABRT_10ADDR1_NOACK_Field is
(-- This abort is not generated
Inactive,
-- Byte 1 of 10Bit Address not ACKed by any slave
Active)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_10ADDR1_NOACK_Field use
(Inactive => 0,
Active => 1);
-- This field indicates that the Master is in 10-bit address mode and that
-- the second address byte of the 10-bit address was not acknowledged by
-- any slave.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter or Master-Receiver
type IC_TX_ABRT_SOURCE_ABRT_10ADDR2_NOACK_Field is
(-- This abort is not generated
Inactive,
-- Byte 2 of 10Bit Address not ACKed by any slave
Active)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_10ADDR2_NOACK_Field use
(Inactive => 0,
Active => 1);
-- This field indicates the master-mode only bit. When the master receives
-- an acknowledgement for the address, but when it sends data byte(s)
-- following the address, it did not receive an acknowledge from the remote
-- slave(s).\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter
type IC_TX_ABRT_SOURCE_ABRT_TXDATA_NOACK_Field is
(-- Transmitted data non-ACKed by addressed slave-scenario not present
Abrt_Txdata_Noack_Void,
-- Transmitted data not ACKed by addressed slave
Abrt_Txdata_Noack_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_TXDATA_NOACK_Field use
(Abrt_Txdata_Noack_Void => 0,
Abrt_Txdata_Noack_Generated => 1);
-- This field indicates that DW_apb_i2c in master mode has sent a General
-- Call and no slave on the bus acknowledged the General Call.\n\n Reset
-- value: 0x0\n\n Role of DW_apb_i2c: Master-Transmitter
type IC_TX_ABRT_SOURCE_ABRT_GCALL_NOACK_Field is
(-- GCALL not ACKed by any slave-scenario not present
Abrt_Gcall_Noack_Void,
-- GCALL not ACKed by any slave
Abrt_Gcall_Noack_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_GCALL_NOACK_Field use
(Abrt_Gcall_Noack_Void => 0,
Abrt_Gcall_Noack_Generated => 1);
-- This field indicates that DW_apb_i2c in the master mode has sent a
-- General Call but the user programmed the byte following the General Call
-- to be a read from the bus (IC_DATA_CMD[9] is set to 1).\n\n Reset value:
-- 0x0\n\n Role of DW_apb_i2c: Master-Transmitter
type IC_TX_ABRT_SOURCE_ABRT_GCALL_READ_Field is
(-- GCALL is followed by read from bus-scenario not present
Abrt_Gcall_Read_Void,
-- GCALL is followed by read from bus
Abrt_Gcall_Read_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_GCALL_READ_Field use
(Abrt_Gcall_Read_Void => 0,
Abrt_Gcall_Read_Generated => 1);
-- This field indicates that the Master is in High Speed mode and the High
-- Speed Master code was acknowledged (wrong behavior).\n\n Reset value:
-- 0x0\n\n Role of DW_apb_i2c: Master
type IC_TX_ABRT_SOURCE_ABRT_HS_ACKDET_Field is
(-- HS Master code ACKed in HS Mode- scenario not present
Abrt_Hs_Ack_Void,
-- HS Master code ACKed in HS Mode
Abrt_Hs_Ack_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_HS_ACKDET_Field use
(Abrt_Hs_Ack_Void => 0,
Abrt_Hs_Ack_Generated => 1);
-- This field indicates that the Master has sent a START Byte and the START
-- Byte was acknowledged (wrong behavior).\n\n Reset value: 0x0\n\n Role of
-- DW_apb_i2c: Master
type IC_TX_ABRT_SOURCE_ABRT_SBYTE_ACKDET_Field is
(-- ACK detected for START byte- scenario not present
Abrt_Sbyte_Ackdet_Void,
-- ACK detected for START byte
Abrt_Sbyte_Ackdet_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_SBYTE_ACKDET_Field use
(Abrt_Sbyte_Ackdet_Void => 0,
Abrt_Sbyte_Ackdet_Generated => 1);
-- This field indicates that the restart is disabled (IC_RESTART_EN bit
-- (IC_CON[5]) =0) and the user is trying to use the master to transfer
-- data in High Speed mode.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter or Master-Receiver
type IC_TX_ABRT_SOURCE_ABRT_HS_NORSTRT_Field is
(-- User trying to switch Master to HS mode when RESTART disabled- scenario not
-- present
Abrt_Hs_Norstrt_Void,
-- User trying to switch Master to HS mode when RESTART disabled
Abrt_Hs_Norstrt_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_HS_NORSTRT_Field use
(Abrt_Hs_Norstrt_Void => 0,
Abrt_Hs_Norstrt_Generated => 1);
-- To clear Bit 9, the source of the ABRT_SBYTE_NORSTRT must be fixed
-- first; restart must be enabled (IC_CON[5]=1), the SPECIAL bit must be
-- cleared (IC_TAR[11]), or the GC_OR_START bit must be cleared
-- (IC_TAR[10]). Once the source of the ABRT_SBYTE_NORSTRT is fixed, then
-- this bit can be cleared in the same manner as other bits in this
-- register. If the source of the ABRT_SBYTE_NORSTRT is not fixed before
-- attempting to clear this bit, bit 9 clears for one cycle and then gets
-- reasserted. When this field is set to 1, the restart is disabled
-- (IC_RESTART_EN bit (IC_CON[5]) =0) and the user is trying to send a
-- START Byte.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c: Master
type IC_TX_ABRT_SOURCE_ABRT_SBYTE_NORSTRT_Field is
(-- User trying to send START byte when RESTART disabled- scenario not present
Abrt_Sbyte_Norstrt_Void,
-- User trying to send START byte when RESTART disabled
Abrt_Sbyte_Norstrt_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_SBYTE_NORSTRT_Field use
(Abrt_Sbyte_Norstrt_Void => 0,
Abrt_Sbyte_Norstrt_Generated => 1);
-- This field indicates that the restart is disabled (IC_RESTART_EN bit
-- (IC_CON[5]) =0) and the master sends a read command in 10-bit addressing
-- mode.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c: Master-Receiver
type IC_TX_ABRT_SOURCE_ABRT_10B_RD_NORSTRT_Field is
(-- Master not trying to read in 10Bit addressing mode when RESTART disabled
Abrt_10B_Rd_Void,
-- Master trying to read in 10Bit addressing mode when RESTART disabled
Abrt_10B_Rd_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_10B_RD_NORSTRT_Field use
(Abrt_10B_Rd_Void => 0,
Abrt_10B_Rd_Generated => 1);
-- This field indicates that the User tries to initiate a Master operation
-- with the Master mode disabled.\n\n Reset value: 0x0\n\n Role of
-- DW_apb_i2c: Master-Transmitter or Master-Receiver
type IC_TX_ABRT_SOURCE_ABRT_MASTER_DIS_Field is
(-- User initiating master operation when MASTER disabled- scenario not present
Abrt_Master_Dis_Void,
-- User initiating master operation when MASTER disabled
Abrt_Master_Dis_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_MASTER_DIS_Field use
(Abrt_Master_Dis_Void => 0,
Abrt_Master_Dis_Generated => 1);
-- This field specifies that the Master has lost arbitration, or if
-- IC_TX_ABRT_SOURCE[14] is also set, then the slave transmitter has lost
-- arbitration.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter or Slave-Transmitter
type IC_TX_ABRT_SOURCE_ARB_LOST_Field is
(-- Master or Slave-Transmitter lost arbitration- scenario not present
Abrt_Lost_Void,
-- Master or Slave-Transmitter lost arbitration
Abrt_Lost_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ARB_LOST_Field use
(Abrt_Lost_Void => 0,
Abrt_Lost_Generated => 1);
-- This field specifies that the Slave has received a read command and some
-- data exists in the TX FIFO, so the slave issues a TX_ABRT interrupt to
-- flush old data in TX FIFO.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Slave-Transmitter
type IC_TX_ABRT_SOURCE_ABRT_SLVFLUSH_TXFIFO_Field is
(-- Slave flushes existing data in TX-FIFO upon getting read command- scenario
-- not present
Abrt_Slvflush_Txfifo_Void,
-- Slave flushes existing data in TX-FIFO upon getting read command
Abrt_Slvflush_Txfifo_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_SLVFLUSH_TXFIFO_Field use
(Abrt_Slvflush_Txfifo_Void => 0,
Abrt_Slvflush_Txfifo_Generated => 1);
-- This field indicates that a Slave has lost the bus while transmitting
-- data to a remote master. IC_TX_ABRT_SOURCE[12] is set at the same time.
-- Note: Even though the slave never 'owns' the bus, something could go
-- wrong on the bus. This is a fail safe check. For instance, during a data
-- transmission at the low-to-high transition of SCL, if what is on the
-- data bus is not what is supposed to be transmitted, then DW_apb_i2c no
-- longer own the bus.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Slave-Transmitter
type IC_TX_ABRT_SOURCE_ABRT_SLV_ARBLOST_Field is
(-- Slave lost arbitration to remote master- scenario not present
Abrt_Slv_Arblost_Void,
-- Slave lost arbitration to remote master
Abrt_Slv_Arblost_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_SLV_ARBLOST_Field use
(Abrt_Slv_Arblost_Void => 0,
Abrt_Slv_Arblost_Generated => 1);
-- 1: When the processor side responds to a slave mode request for data to
-- be transmitted to a remote master and user writes a 1 in CMD (bit 8) of
-- IC_DATA_CMD register.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Slave-Transmitter
type IC_TX_ABRT_SOURCE_ABRT_SLVRD_INTX_Field is
(-- Slave trying to transmit to remote master in read mode- scenario not
-- present
Abrt_Slvrd_Intx_Void,
-- Slave trying to transmit to remote master in read mode
Abrt_Slvrd_Intx_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_SLVRD_INTX_Field use
(Abrt_Slvrd_Intx_Void => 0,
Abrt_Slvrd_Intx_Generated => 1);
-- This is a master-mode-only bit. Master has detected the transfer abort
-- (IC_ENABLE[1])\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter
type IC_TX_ABRT_SOURCE_ABRT_USER_ABRT_Field is
(-- Transfer abort detected by master- scenario not present
Abrt_User_Abrt_Void,
-- Transfer abort detected by master
Abrt_User_Abrt_Generated)
with Size => 1;
for IC_TX_ABRT_SOURCE_ABRT_USER_ABRT_Field use
(Abrt_User_Abrt_Void => 0,
Abrt_User_Abrt_Generated => 1);
subtype IC_TX_ABRT_SOURCE_TX_FLUSH_CNT_Field is HAL.UInt9;
-- I2C Transmit Abort Source Register\n\n This register has 32 bits that
-- indicate the source of the TX_ABRT bit. Except for Bit 9, this register
-- is cleared whenever the IC_CLR_TX_ABRT register or the IC_CLR_INTR
-- register is read. To clear Bit 9, the source of the ABRT_SBYTE_NORSTRT
-- must be fixed first; RESTART must be enabled (IC_CON[5]=1), the SPECIAL
-- bit must be cleared (IC_TAR[11]), or the GC_OR_START bit must be cleared
-- (IC_TAR[10]).\n\n Once the source of the ABRT_SBYTE_NORSTRT is fixed,
-- then this bit can be cleared in the same manner as other bits in this
-- register. If the source of the ABRT_SBYTE_NORSTRT is not fixed before
-- attempting to clear this bit, Bit 9 clears for one cycle and is then
-- re-asserted.
type IC_TX_ABRT_SOURCE_Register is record
-- Read-only. This field indicates that the Master is in 7-bit
-- addressing mode and the address sent was not acknowledged by any
-- slave.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter or Master-Receiver
ABRT_7B_ADDR_NOACK : IC_TX_ABRT_SOURCE_ABRT_7B_ADDR_NOACK_Field;
-- Read-only. This field indicates that the Master is in 10-bit address
-- mode and the first 10-bit address byte was not acknowledged by any
-- slave.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter or Master-Receiver
ABRT_10ADDR1_NOACK : IC_TX_ABRT_SOURCE_ABRT_10ADDR1_NOACK_Field;
-- Read-only. This field indicates that the Master is in 10-bit address
-- mode and that the second address byte of the 10-bit address was not
-- acknowledged by any slave.\n\n Reset value: 0x0\n\n Role of
-- DW_apb_i2c: Master-Transmitter or Master-Receiver
ABRT_10ADDR2_NOACK : IC_TX_ABRT_SOURCE_ABRT_10ADDR2_NOACK_Field;
-- Read-only. This field indicates the master-mode only bit. When the
-- master receives an acknowledgement for the address, but when it sends
-- data byte(s) following the address, it did not receive an acknowledge
-- from the remote slave(s).\n\n Reset value: 0x0\n\n Role of
-- DW_apb_i2c: Master-Transmitter
ABRT_TXDATA_NOACK : IC_TX_ABRT_SOURCE_ABRT_TXDATA_NOACK_Field;
-- Read-only. This field indicates that DW_apb_i2c in master mode has
-- sent a General Call and no slave on the bus acknowledged the General
-- Call.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c: Master-Transmitter
ABRT_GCALL_NOACK : IC_TX_ABRT_SOURCE_ABRT_GCALL_NOACK_Field;
-- Read-only. This field indicates that DW_apb_i2c in the master mode
-- has sent a General Call but the user programmed the byte following
-- the General Call to be a read from the bus (IC_DATA_CMD[9] is set to
-- 1).\n\n Reset value: 0x0\n\n Role of DW_apb_i2c: Master-Transmitter
ABRT_GCALL_READ : IC_TX_ABRT_SOURCE_ABRT_GCALL_READ_Field;
-- Read-only. This field indicates that the Master is in High Speed mode
-- and the High Speed Master code was acknowledged (wrong behavior).\n\n
-- Reset value: 0x0\n\n Role of DW_apb_i2c: Master
ABRT_HS_ACKDET : IC_TX_ABRT_SOURCE_ABRT_HS_ACKDET_Field;
-- Read-only. This field indicates that the Master has sent a START Byte
-- and the START Byte was acknowledged (wrong behavior).\n\n Reset
-- value: 0x0\n\n Role of DW_apb_i2c: Master
ABRT_SBYTE_ACKDET : IC_TX_ABRT_SOURCE_ABRT_SBYTE_ACKDET_Field;
-- Read-only. This field indicates that the restart is disabled
-- (IC_RESTART_EN bit (IC_CON[5]) =0) and the user is trying to use the
-- master to transfer data in High Speed mode.\n\n Reset value: 0x0\n\n
-- Role of DW_apb_i2c: Master-Transmitter or Master-Receiver
ABRT_HS_NORSTRT : IC_TX_ABRT_SOURCE_ABRT_HS_NORSTRT_Field;
-- Read-only. To clear Bit 9, the source of the ABRT_SBYTE_NORSTRT must
-- be fixed first; restart must be enabled (IC_CON[5]=1), the SPECIAL
-- bit must be cleared (IC_TAR[11]), or the GC_OR_START bit must be
-- cleared (IC_TAR[10]). Once the source of the ABRT_SBYTE_NORSTRT is
-- fixed, then this bit can be cleared in the same manner as other bits
-- in this register. If the source of the ABRT_SBYTE_NORSTRT is not
-- fixed before attempting to clear this bit, bit 9 clears for one cycle
-- and then gets reasserted. When this field is set to 1, the restart is
-- disabled (IC_RESTART_EN bit (IC_CON[5]) =0) and the user is trying to
-- send a START Byte.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master
ABRT_SBYTE_NORSTRT : IC_TX_ABRT_SOURCE_ABRT_SBYTE_NORSTRT_Field;
-- Read-only. This field indicates that the restart is disabled
-- (IC_RESTART_EN bit (IC_CON[5]) =0) and the master sends a read
-- command in 10-bit addressing mode.\n\n Reset value: 0x0\n\n Role of
-- DW_apb_i2c: Master-Receiver
ABRT_10B_RD_NORSTRT : IC_TX_ABRT_SOURCE_ABRT_10B_RD_NORSTRT_Field;
-- Read-only. This field indicates that the User tries to initiate a
-- Master operation with the Master mode disabled.\n\n Reset value:
-- 0x0\n\n Role of DW_apb_i2c: Master-Transmitter or Master-Receiver
ABRT_MASTER_DIS : IC_TX_ABRT_SOURCE_ABRT_MASTER_DIS_Field;
-- Read-only. This field specifies that the Master has lost arbitration,
-- or if IC_TX_ABRT_SOURCE[14] is also set, then the slave transmitter
-- has lost arbitration.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter or Slave-Transmitter
ARB_LOST : IC_TX_ABRT_SOURCE_ARB_LOST_Field;
-- Read-only. This field specifies that the Slave has received a read
-- command and some data exists in the TX FIFO, so the slave issues a
-- TX_ABRT interrupt to flush old data in TX FIFO.\n\n Reset value:
-- 0x0\n\n Role of DW_apb_i2c: Slave-Transmitter
ABRT_SLVFLUSH_TXFIFO : IC_TX_ABRT_SOURCE_ABRT_SLVFLUSH_TXFIFO_Field;
-- Read-only. This field indicates that a Slave has lost the bus while
-- transmitting data to a remote master. IC_TX_ABRT_SOURCE[12] is set at
-- the same time. Note: Even though the slave never 'owns' the bus,
-- something could go wrong on the bus. This is a fail safe check. For
-- instance, during a data transmission at the low-to-high transition of
-- SCL, if what is on the data bus is not what is supposed to be
-- transmitted, then DW_apb_i2c no longer own the bus.\n\n Reset value:
-- 0x0\n\n Role of DW_apb_i2c: Slave-Transmitter
ABRT_SLV_ARBLOST : IC_TX_ABRT_SOURCE_ABRT_SLV_ARBLOST_Field;
-- Read-only. 1: When the processor side responds to a slave mode
-- request for data to be transmitted to a remote master and user writes
-- a 1 in CMD (bit 8) of IC_DATA_CMD register.\n\n Reset value: 0x0\n\n
-- Role of DW_apb_i2c: Slave-Transmitter
ABRT_SLVRD_INTX : IC_TX_ABRT_SOURCE_ABRT_SLVRD_INTX_Field;
-- Read-only. This is a master-mode-only bit. Master has detected the
-- transfer abort (IC_ENABLE[1])\n\n Reset value: 0x0\n\n Role of
-- DW_apb_i2c: Master-Transmitter
ABRT_USER_ABRT : IC_TX_ABRT_SOURCE_ABRT_USER_ABRT_Field;
-- unspecified
Reserved_17_22 : HAL.UInt6;
-- Read-only. This field indicates the number of Tx FIFO Data Commands
-- which are flushed due to TX_ABRT interrupt. It is cleared whenever
-- I2C is disabled.\n\n Reset value: 0x0\n\n Role of DW_apb_i2c:
-- Master-Transmitter or Slave-Transmitter
TX_FLUSH_CNT : IC_TX_ABRT_SOURCE_TX_FLUSH_CNT_Field;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_TX_ABRT_SOURCE_Register use record
ABRT_7B_ADDR_NOACK at 0 range 0 .. 0;
ABRT_10ADDR1_NOACK at 0 range 1 .. 1;
ABRT_10ADDR2_NOACK at 0 range 2 .. 2;
ABRT_TXDATA_NOACK at 0 range 3 .. 3;
ABRT_GCALL_NOACK at 0 range 4 .. 4;
ABRT_GCALL_READ at 0 range 5 .. 5;
ABRT_HS_ACKDET at 0 range 6 .. 6;
ABRT_SBYTE_ACKDET at 0 range 7 .. 7;
ABRT_HS_NORSTRT at 0 range 8 .. 8;
ABRT_SBYTE_NORSTRT at 0 range 9 .. 9;
ABRT_10B_RD_NORSTRT at 0 range 10 .. 10;
ABRT_MASTER_DIS at 0 range 11 .. 11;
ARB_LOST at 0 range 12 .. 12;
ABRT_SLVFLUSH_TXFIFO at 0 range 13 .. 13;
ABRT_SLV_ARBLOST at 0 range 14 .. 14;
ABRT_SLVRD_INTX at 0 range 15 .. 15;
ABRT_USER_ABRT at 0 range 16 .. 16;
Reserved_17_22 at 0 range 17 .. 22;
TX_FLUSH_CNT at 0 range 23 .. 31;
end record;
-- Generate NACK. This NACK generation only occurs when DW_apb_i2c is a
-- slave-receiver. If this register is set to a value of 1, it can only
-- generate a NACK after a data byte is received; hence, the data transfer
-- is aborted and the data received is not pushed to the receive
-- buffer.\n\n When the register is set to a value of 0, it generates
-- NACK/ACK, depending on normal criteria. - 1: generate NACK after data
-- byte received - 0: generate NACK/ACK normally Reset value: 0x0
type IC_SLV_DATA_NACK_ONLY_NACK_Field is
(-- Slave receiver generates NACK normally
Disabled,
-- Slave receiver generates NACK upon data reception only
Enabled)
with Size => 1;
for IC_SLV_DATA_NACK_ONLY_NACK_Field use
(Disabled => 0,
Enabled => 1);
-- Generate Slave Data NACK Register\n\n The register is used to generate a
-- NACK for the data part of a transfer when DW_apb_i2c is acting as a
-- slave-receiver. This register only exists when the IC_SLV_DATA_NACK_ONLY
-- parameter is set to 1. When this parameter disabled, this register does
-- not exist and writing to the register's address has no effect.\n\n A
-- write can occur on this register if both of the following conditions are
-- met: - DW_apb_i2c is disabled (IC_ENABLE[0] = 0) - Slave part is
-- inactive (IC_STATUS[6] = 0) Note: The IC_STATUS[6] is a register
-- read-back location for the internal slv_activity signal; the user should
-- poll this before writing the ic_slv_data_nack_only bit.
type IC_SLV_DATA_NACK_ONLY_Register is record
-- Generate NACK. This NACK generation only occurs when DW_apb_i2c is a
-- slave-receiver. If this register is set to a value of 1, it can only
-- generate a NACK after a data byte is received; hence, the data
-- transfer is aborted and the data received is not pushed to the
-- receive buffer.\n\n When the register is set to a value of 0, it
-- generates NACK/ACK, depending on normal criteria. - 1: generate NACK
-- after data byte received - 0: generate NACK/ACK normally Reset value:
-- 0x0
NACK : IC_SLV_DATA_NACK_ONLY_NACK_Field :=
RP_SVD.I2C1.Disabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_SLV_DATA_NACK_ONLY_Register use record
NACK at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- Receive DMA Enable. This bit enables/disables the receive FIFO DMA
-- channel. Reset value: 0x0
type IC_DMA_CR_RDMAE_Field is
(-- Receive FIFO DMA channel disabled
Disabled,
-- Receive FIFO DMA channel enabled
Enabled)
with Size => 1;
for IC_DMA_CR_RDMAE_Field use
(Disabled => 0,
Enabled => 1);
-- Transmit DMA Enable. This bit enables/disables the transmit FIFO DMA
-- channel. Reset value: 0x0
type IC_DMA_CR_TDMAE_Field is
(-- transmit FIFO DMA channel disabled
Disabled,
-- Transmit FIFO DMA channel enabled
Enabled)
with Size => 1;
for IC_DMA_CR_TDMAE_Field use
(Disabled => 0,
Enabled => 1);
-- DMA Control Register\n\n The register is used to enable the DMA
-- Controller interface operation. There is a separate bit for transmit and
-- receive. This can be programmed regardless of the state of IC_ENABLE.
type IC_DMA_CR_Register is record
-- Receive DMA Enable. This bit enables/disables the receive FIFO DMA
-- channel. Reset value: 0x0
RDMAE : IC_DMA_CR_RDMAE_Field := RP_SVD.I2C1.Disabled;
-- Transmit DMA Enable. This bit enables/disables the transmit FIFO DMA
-- channel. Reset value: 0x0
TDMAE : IC_DMA_CR_TDMAE_Field := RP_SVD.I2C1.Disabled;
-- unspecified
Reserved_2_31 : HAL.UInt30 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_DMA_CR_Register use record
RDMAE at 0 range 0 .. 0;
TDMAE at 0 range 1 .. 1;
Reserved_2_31 at 0 range 2 .. 31;
end record;
subtype IC_DMA_TDLR_DMATDL_Field is HAL.UInt4;
-- DMA Transmit Data Level Register
type IC_DMA_TDLR_Register is record
-- Transmit Data Level. This bit field controls the level at which a DMA
-- request is made by the transmit logic. It is equal to the watermark
-- level; that is, the dma_tx_req signal is generated when the number of
-- valid data entries in the transmit FIFO is equal to or below this
-- field value, and TDMAE = 1.\n\n Reset value: 0x0
DMATDL : IC_DMA_TDLR_DMATDL_Field := 16#0#;
-- unspecified
Reserved_4_31 : HAL.UInt28 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_DMA_TDLR_Register use record
DMATDL at 0 range 0 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
subtype IC_DMA_RDLR_DMARDL_Field is HAL.UInt4;
-- I2C Receive Data Level Register
type IC_DMA_RDLR_Register is record
-- Receive Data Level. This bit field controls the level at which a DMA
-- request is made by the receive logic. The watermark level = DMARDL+1;
-- that is, dma_rx_req is generated when the number of valid data
-- entries in the receive FIFO is equal to or more than this field value
-- + 1, and RDMAE =1. For instance, when DMARDL is 0, then dma_rx_req is
-- asserted when 1 or more data entries are present in the receive
-- FIFO.\n\n Reset value: 0x0
DMARDL : IC_DMA_RDLR_DMARDL_Field := 16#0#;
-- unspecified
Reserved_4_31 : HAL.UInt28 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_DMA_RDLR_Register use record
DMARDL at 0 range 0 .. 3;
Reserved_4_31 at 0 range 4 .. 31;
end record;
subtype IC_SDA_SETUP_SDA_SETUP_Field is HAL.UInt8;
-- I2C SDA Setup Register\n\n This register controls the amount of time
-- delay (in terms of number of ic_clk clock periods) introduced in the
-- rising edge of SCL - relative to SDA changing - when DW_apb_i2c services
-- a read request in a slave-transmitter operation. The relevant I2C
-- requirement is tSU:DAT (note 4) as detailed in the I2C Bus
-- Specification. This register must be programmed with a value equal to or
-- greater than 2.\n\n Writes to this register succeed only when
-- IC_ENABLE[0] = 0.\n\n Note: The length of setup time is calculated using
-- [(IC_SDA_SETUP - 1) * (ic_clk_period)], so if the user requires 10
-- ic_clk periods of setup time, they should program a value of 11. The
-- IC_SDA_SETUP register is only used by the DW_apb_i2c when operating as a
-- slave transmitter.
type IC_SDA_SETUP_Register is record
-- SDA Setup. It is recommended that if the required delay is 1000ns,
-- then for an ic_clk frequency of 10 MHz, IC_SDA_SETUP should be
-- programmed to a value of 11. IC_SDA_SETUP must be programmed with a
-- minimum value of 2.
SDA_SETUP : IC_SDA_SETUP_SDA_SETUP_Field := 16#64#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_SDA_SETUP_Register use record
SDA_SETUP at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- ACK General Call. When set to 1, DW_apb_i2c responds with a ACK (by
-- asserting ic_data_oe) when it receives a General Call. Otherwise,
-- DW_apb_i2c responds with a NACK (by negating ic_data_oe).
type IC_ACK_GENERAL_CALL_ACK_GEN_CALL_Field is
(-- Generate NACK for a General Call
Disabled,
-- Generate ACK for a General Call
Enabled)
with Size => 1;
for IC_ACK_GENERAL_CALL_ACK_GEN_CALL_Field use
(Disabled => 0,
Enabled => 1);
-- I2C ACK General Call Register\n\n The register controls whether
-- DW_apb_i2c responds with a ACK or NACK when it receives an I2C General
-- Call address.\n\n This register is applicable only when the DW_apb_i2c
-- is in slave mode.
type IC_ACK_GENERAL_CALL_Register is record
-- ACK General Call. When set to 1, DW_apb_i2c responds with a ACK (by
-- asserting ic_data_oe) when it receives a General Call. Otherwise,
-- DW_apb_i2c responds with a NACK (by negating ic_data_oe).
ACK_GEN_CALL : IC_ACK_GENERAL_CALL_ACK_GEN_CALL_Field :=
RP_SVD.I2C1.Enabled;
-- unspecified
Reserved_1_31 : HAL.UInt31 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_ACK_GENERAL_CALL_Register use record
ACK_GEN_CALL at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
-- ic_en Status. This bit always reflects the value driven on the output
-- port ic_en. - When read as 1, DW_apb_i2c is deemed to be in an enabled
-- state. - When read as 0, DW_apb_i2c is deemed completely inactive. Note:
-- The CPU can safely read this bit anytime. When this bit is read as 0,
-- the CPU can safely read SLV_RX_DATA_LOST (bit 2) and
-- SLV_DISABLED_WHILE_BUSY (bit 1).\n\n Reset value: 0x0
type IC_ENABLE_STATUS_IC_EN_Field is
(-- I2C disabled
Disabled,
-- I2C enabled
Enabled)
with Size => 1;
for IC_ENABLE_STATUS_IC_EN_Field use
(Disabled => 0,
Enabled => 1);
-- Slave Disabled While Busy (Transmit, Receive). This bit indicates if a
-- potential or active Slave operation has been aborted due to the setting
-- bit 0 of the IC_ENABLE register from 1 to 0. This bit is set when the
-- CPU writes a 0 to the IC_ENABLE register while:\n\n (a) DW_apb_i2c is
-- receiving the address byte of the Slave-Transmitter operation from a
-- remote master;\n\n OR,\n\n (b) address and data bytes of the
-- Slave-Receiver operation from a remote master.\n\n When read as 1,
-- DW_apb_i2c is deemed to have forced a NACK during any part of an I2C
-- transfer, irrespective of whether the I2C address matches the slave
-- address set in DW_apb_i2c (IC_SAR register) OR if the transfer is
-- completed before IC_ENABLE is set to 0 but has not taken effect.\n\n
-- Note: If the remote I2C master terminates the transfer with a STOP
-- condition before the DW_apb_i2c has a chance to NACK a transfer, and
-- IC_ENABLE[0] has been set to 0, then this bit will also be set to 1.\n\n
-- When read as 0, DW_apb_i2c is deemed to have been disabled when there is
-- master activity, or when the I2C bus is idle.\n\n Note: The CPU can
-- safely read this bit when IC_EN (bit 0) is read as 0.\n\n Reset value:
-- 0x0
type IC_ENABLE_STATUS_SLV_DISABLED_WHILE_BUSY_Field is
(-- Slave is disabled when it is idle
Inactive,
-- Slave is disabled when it is active
Active)
with Size => 1;
for IC_ENABLE_STATUS_SLV_DISABLED_WHILE_BUSY_Field use
(Inactive => 0,
Active => 1);
-- Slave Received Data Lost. This bit indicates if a Slave-Receiver
-- operation has been aborted with at least one data byte received from an
-- I2C transfer due to the setting bit 0 of IC_ENABLE from 1 to 0. When
-- read as 1, DW_apb_i2c is deemed to have been actively engaged in an
-- aborted I2C transfer (with matching address) and the data phase of the
-- I2C transfer has been entered, even though a data byte has been
-- responded with a NACK.\n\n Note: If the remote I2C master terminates the
-- transfer with a STOP condition before the DW_apb_i2c has a chance to
-- NACK a transfer, and IC_ENABLE[0] has been set to 0, then this bit is
-- also set to 1.\n\n When read as 0, DW_apb_i2c is deemed to have been
-- disabled without being actively involved in the data phase of a
-- Slave-Receiver transfer.\n\n Note: The CPU can safely read this bit when
-- IC_EN (bit 0) is read as 0.\n\n Reset value: 0x0
type IC_ENABLE_STATUS_SLV_RX_DATA_LOST_Field is
(-- Slave RX Data is not lost
Inactive,
-- Slave RX Data is lost
Active)
with Size => 1;
for IC_ENABLE_STATUS_SLV_RX_DATA_LOST_Field use
(Inactive => 0,
Active => 1);
-- I2C Enable Status Register\n\n The register is used to report the
-- DW_apb_i2c hardware status when the IC_ENABLE[0] register is set from 1
-- to 0; that is, when DW_apb_i2c is disabled.\n\n If IC_ENABLE[0] has been
-- set to 1, bits 2:1 are forced to 0, and bit 0 is forced to 1.\n\n If
-- IC_ENABLE[0] has been set to 0, bits 2:1 is only be valid as soon as bit
-- 0 is read as '0'.\n\n Note: When IC_ENABLE[0] has been set to 0, a delay
-- occurs for bit 0 to be read as 0 because disabling the DW_apb_i2c
-- depends on I2C bus activities.
type IC_ENABLE_STATUS_Register is record
-- Read-only. ic_en Status. This bit always reflects the value driven on
-- the output port ic_en. - When read as 1, DW_apb_i2c is deemed to be
-- in an enabled state. - When read as 0, DW_apb_i2c is deemed
-- completely inactive. Note: The CPU can safely read this bit anytime.
-- When this bit is read as 0, the CPU can safely read SLV_RX_DATA_LOST
-- (bit 2) and SLV_DISABLED_WHILE_BUSY (bit 1).\n\n Reset value: 0x0
IC_EN : IC_ENABLE_STATUS_IC_EN_Field;
-- Read-only. Slave Disabled While Busy (Transmit, Receive). This bit
-- indicates if a potential or active Slave operation has been aborted
-- due to the setting bit 0 of the IC_ENABLE register from 1 to 0. This
-- bit is set when the CPU writes a 0 to the IC_ENABLE register
-- while:\n\n (a) DW_apb_i2c is receiving the address byte of the
-- Slave-Transmitter operation from a remote master;\n\n OR,\n\n (b)
-- address and data bytes of the Slave-Receiver operation from a remote
-- master.\n\n When read as 1, DW_apb_i2c is deemed to have forced a
-- NACK during any part of an I2C transfer, irrespective of whether the
-- I2C address matches the slave address set in DW_apb_i2c (IC_SAR
-- register) OR if the transfer is completed before IC_ENABLE is set to
-- 0 but has not taken effect.\n\n Note: If the remote I2C master
-- terminates the transfer with a STOP condition before the DW_apb_i2c
-- has a chance to NACK a transfer, and IC_ENABLE[0] has been set to 0,
-- then this bit will also be set to 1.\n\n When read as 0, DW_apb_i2c
-- is deemed to have been disabled when there is master activity, or
-- when the I2C bus is idle.\n\n Note: The CPU can safely read this bit
-- when IC_EN (bit 0) is read as 0.\n\n Reset value: 0x0
SLV_DISABLED_WHILE_BUSY : IC_ENABLE_STATUS_SLV_DISABLED_WHILE_BUSY_Field;
-- Read-only. Slave Received Data Lost. This bit indicates if a
-- Slave-Receiver operation has been aborted with at least one data byte
-- received from an I2C transfer due to the setting bit 0 of IC_ENABLE
-- from 1 to 0. When read as 1, DW_apb_i2c is deemed to have been
-- actively engaged in an aborted I2C transfer (with matching address)
-- and the data phase of the I2C transfer has been entered, even though
-- a data byte has been responded with a NACK.\n\n Note: If the remote
-- I2C master terminates the transfer with a STOP condition before the
-- DW_apb_i2c has a chance to NACK a transfer, and IC_ENABLE[0] has been
-- set to 0, then this bit is also set to 1.\n\n When read as 0,
-- DW_apb_i2c is deemed to have been disabled without being actively
-- involved in the data phase of a Slave-Receiver transfer.\n\n Note:
-- The CPU can safely read this bit when IC_EN (bit 0) is read as 0.\n\n
-- Reset value: 0x0
SLV_RX_DATA_LOST : IC_ENABLE_STATUS_SLV_RX_DATA_LOST_Field;
-- unspecified
Reserved_3_31 : HAL.UInt29;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_ENABLE_STATUS_Register use record
IC_EN at 0 range 0 .. 0;
SLV_DISABLED_WHILE_BUSY at 0 range 1 .. 1;
SLV_RX_DATA_LOST at 0 range 2 .. 2;
Reserved_3_31 at 0 range 3 .. 31;
end record;
subtype IC_FS_SPKLEN_IC_FS_SPKLEN_Field is HAL.UInt8;
-- I2C SS, FS or FM+ spike suppression limit\n\n This register is used to
-- store the duration, measured in ic_clk cycles, of the longest spike that
-- is filtered out by the spike suppression logic when the component is
-- operating in SS, FS or FM+ modes. The relevant I2C requirement is tSP
-- (table 4) as detailed in the I2C Bus Specification. This register must
-- be programmed with a minimum value of 1.
type IC_FS_SPKLEN_Register is record
-- This register must be set before any I2C bus transaction can take
-- place to ensure stable operation. This register sets the duration,
-- measured in ic_clk cycles, of the longest spike in the SCL or SDA
-- lines that will be filtered out by the spike suppression logic. This
-- register can be written only when the I2C interface is disabled which
-- corresponds to the IC_ENABLE[0] register being set to 0. Writes at
-- other times have no effect. The minimum valid value is 1; hardware
-- prevents values less than this being written, and if attempted
-- results in 1 being set. or more information, refer to 'Spike
-- Suppression'.
IC_FS_SPKLEN : IC_FS_SPKLEN_IC_FS_SPKLEN_Field := 16#7#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_FS_SPKLEN_Register use record
IC_FS_SPKLEN at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- Clear RESTART_DET Interrupt Register
type IC_CLR_RESTART_DET_Register is record
-- Read-only. Read this register to clear the RESTART_DET interrupt (bit
-- 12) of IC_RAW_INTR_STAT register.\n\n Reset value: 0x0
CLR_RESTART_DET : Boolean;
-- unspecified
Reserved_1_31 : HAL.UInt31;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_CLR_RESTART_DET_Register use record
CLR_RESTART_DET at 0 range 0 .. 0;
Reserved_1_31 at 0 range 1 .. 31;
end record;
subtype IC_COMP_PARAM_1_APB_DATA_WIDTH_Field is HAL.UInt2;
subtype IC_COMP_PARAM_1_MAX_SPEED_MODE_Field is HAL.UInt2;
subtype IC_COMP_PARAM_1_RX_BUFFER_DEPTH_Field is HAL.UInt8;
subtype IC_COMP_PARAM_1_TX_BUFFER_DEPTH_Field is HAL.UInt8;
-- Component Parameter Register 1\n\n Note This register is not implemented
-- and therefore reads as 0. If it was implemented it would be a constant
-- read-only register that contains encoded information about the
-- component's parameter settings. Fields shown below are the settings for
-- those parameters
type IC_COMP_PARAM_1_Register is record
-- Read-only. APB data bus width is 32 bits
APB_DATA_WIDTH : IC_COMP_PARAM_1_APB_DATA_WIDTH_Field;
-- Read-only. MAX SPEED MODE = FAST MODE
MAX_SPEED_MODE : IC_COMP_PARAM_1_MAX_SPEED_MODE_Field;
-- Read-only. Programmable count values for each mode.
HC_COUNT_VALUES : Boolean;
-- Read-only. COMBINED Interrupt outputs
INTR_IO : Boolean;
-- Read-only. DMA handshaking signals are enabled
HAS_DMA : Boolean;
-- Read-only. Encoded parameters not visible
ADD_ENCODED_PARAMS : Boolean;
-- Read-only. RX Buffer Depth = 16
RX_BUFFER_DEPTH : IC_COMP_PARAM_1_RX_BUFFER_DEPTH_Field;
-- Read-only. TX Buffer Depth = 16
TX_BUFFER_DEPTH : IC_COMP_PARAM_1_TX_BUFFER_DEPTH_Field;
-- unspecified
Reserved_24_31 : HAL.UInt8;
end record
with Volatile_Full_Access, Object_Size => 32,
Bit_Order => System.Low_Order_First;
for IC_COMP_PARAM_1_Register use record
APB_DATA_WIDTH at 0 range 0 .. 1;
MAX_SPEED_MODE at 0 range 2 .. 3;
HC_COUNT_VALUES at 0 range 4 .. 4;
INTR_IO at 0 range 5 .. 5;
HAS_DMA at 0 range 6 .. 6;
ADD_ENCODED_PARAMS at 0 range 7 .. 7;
RX_BUFFER_DEPTH at 0 range 8 .. 15;
TX_BUFFER_DEPTH at 0 range 16 .. 23;
Reserved_24_31 at 0 range 24 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- DW_apb_i2c address block
type I2C1_Peripheral is record
-- I2C Control Register. This register can be written only when the
-- DW_apb_i2c is disabled, which corresponds to the IC_ENABLE[0]
-- register being set to 0. Writes at other times have no effect.\n\n
-- Read/Write Access: - bit 10 is read only. - bit 11 is read only - bit
-- 16 is read only - bit 17 is read only - bits 18 and 19 are read only.
IC_CON : aliased IC_CON_Register;
-- I2C Target Address Register\n\n This register is 12 bits wide, and
-- bits 31:12 are reserved. This register can be written to only when
-- IC_ENABLE[0] is set to 0.\n\n Note: If the software or application is
-- aware that the DW_apb_i2c is not using the TAR address for the
-- pending commands in the Tx FIFO, then it is possible to update the
-- TAR address even while the Tx FIFO has entries (IC_STATUS[2]= 0). -
-- It is not necessary to perform any write to this register if
-- DW_apb_i2c is enabled as an I2C slave only.
IC_TAR : aliased IC_TAR_Register;
-- I2C Slave Address Register
IC_SAR : aliased IC_SAR_Register;
-- I2C Rx/Tx Data Buffer and Command Register; this is the register the
-- CPU writes to when filling the TX FIFO and the CPU reads from when
-- retrieving bytes from RX FIFO.\n\n The size of the register changes
-- as follows:\n\n Write: - 11 bits when IC_EMPTYFIFO_HOLD_MASTER_EN=1 -
-- 9 bits when IC_EMPTYFIFO_HOLD_MASTER_EN=0 Read: - 12 bits when
-- IC_FIRST_DATA_BYTE_STATUS = 1 - 8 bits when IC_FIRST_DATA_BYTE_STATUS
-- = 0 Note: In order for the DW_apb_i2c to continue acknowledging
-- reads, a read command should be written for every byte that is to be
-- received; otherwise the DW_apb_i2c will stop acknowledging.
IC_DATA_CMD : aliased IC_DATA_CMD_Register;
-- Standard Speed I2C Clock SCL High Count Register
IC_SS_SCL_HCNT : aliased IC_SS_SCL_HCNT_Register;
-- Standard Speed I2C Clock SCL Low Count Register
IC_SS_SCL_LCNT : aliased IC_SS_SCL_LCNT_Register;
-- Fast Mode or Fast Mode Plus I2C Clock SCL High Count Register
IC_FS_SCL_HCNT : aliased IC_FS_SCL_HCNT_Register;
-- Fast Mode or Fast Mode Plus I2C Clock SCL Low Count Register
IC_FS_SCL_LCNT : aliased IC_FS_SCL_LCNT_Register;
-- I2C Interrupt Status Register\n\n Each bit in this register has a
-- corresponding mask bit in the IC_INTR_MASK register. These bits are
-- cleared by reading the matching interrupt clear register. The
-- unmasked raw versions of these bits are available in the
-- IC_RAW_INTR_STAT register.
IC_INTR_STAT : aliased IC_INTR_STAT_Register;
-- I2C Interrupt Mask Register.\n\n These bits mask their corresponding
-- interrupt status bits. This register is active low; a value of 0
-- masks the interrupt, whereas a value of 1 unmasks the interrupt.
IC_INTR_MASK : aliased IC_INTR_MASK_Register;
-- I2C Raw Interrupt Status Register\n\n Unlike the IC_INTR_STAT
-- register, these bits are not masked so they always show the true
-- status of the DW_apb_i2c.
IC_RAW_INTR_STAT : aliased IC_RAW_INTR_STAT_Register;
-- I2C Receive FIFO Threshold Register
IC_RX_TL : aliased IC_RX_TL_Register;
-- I2C Transmit FIFO Threshold Register
IC_TX_TL : aliased IC_TX_TL_Register;
-- Clear Combined and Individual Interrupt Register
IC_CLR_INTR : aliased IC_CLR_INTR_Register;
-- Clear RX_UNDER Interrupt Register
IC_CLR_RX_UNDER : aliased IC_CLR_RX_UNDER_Register;
-- Clear RX_OVER Interrupt Register
IC_CLR_RX_OVER : aliased IC_CLR_RX_OVER_Register;
-- Clear TX_OVER Interrupt Register
IC_CLR_TX_OVER : aliased IC_CLR_TX_OVER_Register;
-- Clear RD_REQ Interrupt Register
IC_CLR_RD_REQ : aliased IC_CLR_RD_REQ_Register;
-- Clear TX_ABRT Interrupt Register
IC_CLR_TX_ABRT : aliased IC_CLR_TX_ABRT_Register;
-- Clear RX_DONE Interrupt Register
IC_CLR_RX_DONE : aliased IC_CLR_RX_DONE_Register;
-- Clear ACTIVITY Interrupt Register
IC_CLR_ACTIVITY : aliased IC_CLR_ACTIVITY_Register;
-- Clear STOP_DET Interrupt Register
IC_CLR_STOP_DET : aliased IC_CLR_STOP_DET_Register;
-- Clear START_DET Interrupt Register
IC_CLR_START_DET : aliased IC_CLR_START_DET_Register;
-- Clear GEN_CALL Interrupt Register
IC_CLR_GEN_CALL : aliased IC_CLR_GEN_CALL_Register;
-- I2C Enable Register
IC_ENABLE : aliased IC_ENABLE_Register;
-- I2C Status Register\n\n This is a read-only register used to indicate
-- the current transfer status and FIFO status. The status register may
-- be read at any time. None of the bits in this register request an
-- interrupt.\n\n When the I2C is disabled by writing 0 in bit 0 of the
-- IC_ENABLE register: - Bits 1 and 2 are set to 1 - Bits 3 and 10 are
-- set to 0 When the master or slave state machines goes to idle and
-- ic_en=0: - Bits 5 and 6 are set to 0
IC_STATUS : aliased IC_STATUS_Register;
-- I2C Transmit FIFO Level Register This register contains the number of
-- valid data entries in the transmit FIFO buffer. It is cleared
-- whenever: - The I2C is disabled - There is a transmit abort - that
-- is, TX_ABRT bit is set in the IC_RAW_INTR_STAT register - The slave
-- bulk transmit mode is aborted The register increments whenever data
-- is placed into the transmit FIFO and decrements when data is taken
-- from the transmit FIFO.
IC_TXFLR : aliased IC_TXFLR_Register;
-- I2C Receive FIFO Level Register This register contains the number of
-- valid data entries in the receive FIFO buffer. It is cleared
-- whenever: - The I2C is disabled - Whenever there is a transmit abort
-- caused by any of the events tracked in IC_TX_ABRT_SOURCE The register
-- increments whenever data is placed into the receive FIFO and
-- decrements when data is taken from the receive FIFO.
IC_RXFLR : aliased IC_RXFLR_Register;
-- I2C SDA Hold Time Length Register\n\n The bits [15:0] of this
-- register are used to control the hold time of SDA during transmit in
-- both slave and master mode (after SCL goes from HIGH to LOW).\n\n The
-- bits [23:16] of this register are used to extend the SDA transition
-- (if any) whenever SCL is HIGH in the receiver in either master or
-- slave mode.\n\n Writes to this register succeed only when
-- IC_ENABLE[0]=0.\n\n The values in this register are in units of
-- ic_clk period. The value programmed in IC_SDA_TX_HOLD must be greater
-- than the minimum hold time in each mode one cycle in master mode,
-- seven cycles in slave mode for the value to be implemented.\n\n The
-- programmed SDA hold time during transmit (IC_SDA_TX_HOLD) cannot
-- exceed at any time the duration of the low part of scl. Therefore the
-- programmed value cannot be larger than N_SCL_LOW-2, where N_SCL_LOW
-- is the duration of the low part of the scl period measured in ic_clk
-- cycles.
IC_SDA_HOLD : aliased IC_SDA_HOLD_Register;
-- I2C Transmit Abort Source Register\n\n This register has 32 bits that
-- indicate the source of the TX_ABRT bit. Except for Bit 9, this
-- register is cleared whenever the IC_CLR_TX_ABRT register or the
-- IC_CLR_INTR register is read. To clear Bit 9, the source of the
-- ABRT_SBYTE_NORSTRT must be fixed first; RESTART must be enabled
-- (IC_CON[5]=1), the SPECIAL bit must be cleared (IC_TAR[11]), or the
-- GC_OR_START bit must be cleared (IC_TAR[10]).\n\n Once the source of
-- the ABRT_SBYTE_NORSTRT is fixed, then this bit can be cleared in the
-- same manner as other bits in this register. If the source of the
-- ABRT_SBYTE_NORSTRT is not fixed before attempting to clear this bit,
-- Bit 9 clears for one cycle and is then re-asserted.
IC_TX_ABRT_SOURCE : aliased IC_TX_ABRT_SOURCE_Register;
-- Generate Slave Data NACK Register\n\n The register is used to
-- generate a NACK for the data part of a transfer when DW_apb_i2c is
-- acting as a slave-receiver. This register only exists when the
-- IC_SLV_DATA_NACK_ONLY parameter is set to 1. When this parameter
-- disabled, this register does not exist and writing to the register's
-- address has no effect.\n\n A write can occur on this register if both
-- of the following conditions are met: - DW_apb_i2c is disabled
-- (IC_ENABLE[0] = 0) - Slave part is inactive (IC_STATUS[6] = 0) Note:
-- The IC_STATUS[6] is a register read-back location for the internal
-- slv_activity signal; the user should poll this before writing the
-- ic_slv_data_nack_only bit.
IC_SLV_DATA_NACK_ONLY : aliased IC_SLV_DATA_NACK_ONLY_Register;
-- DMA Control Register\n\n The register is used to enable the DMA
-- Controller interface operation. There is a separate bit for transmit
-- and receive. This can be programmed regardless of the state of
-- IC_ENABLE.
IC_DMA_CR : aliased IC_DMA_CR_Register;
-- DMA Transmit Data Level Register
IC_DMA_TDLR : aliased IC_DMA_TDLR_Register;
-- I2C Receive Data Level Register
IC_DMA_RDLR : aliased IC_DMA_RDLR_Register;
-- I2C SDA Setup Register\n\n This register controls the amount of time
-- delay (in terms of number of ic_clk clock periods) introduced in the
-- rising edge of SCL - relative to SDA changing - when DW_apb_i2c
-- services a read request in a slave-transmitter operation. The
-- relevant I2C requirement is tSU:DAT (note 4) as detailed in the I2C
-- Bus Specification. This register must be programmed with a value
-- equal to or greater than 2.\n\n Writes to this register succeed only
-- when IC_ENABLE[0] = 0.\n\n Note: The length of setup time is
-- calculated using [(IC_SDA_SETUP - 1) * (ic_clk_period)], so if the
-- user requires 10 ic_clk periods of setup time, they should program a
-- value of 11. The IC_SDA_SETUP register is only used by the DW_apb_i2c
-- when operating as a slave transmitter.
IC_SDA_SETUP : aliased IC_SDA_SETUP_Register;
-- I2C ACK General Call Register\n\n The register controls whether
-- DW_apb_i2c responds with a ACK or NACK when it receives an I2C
-- General Call address.\n\n This register is applicable only when the
-- DW_apb_i2c is in slave mode.
IC_ACK_GENERAL_CALL : aliased IC_ACK_GENERAL_CALL_Register;
-- I2C Enable Status Register\n\n The register is used to report the
-- DW_apb_i2c hardware status when the IC_ENABLE[0] register is set from
-- 1 to 0; that is, when DW_apb_i2c is disabled.\n\n If IC_ENABLE[0] has
-- been set to 1, bits 2:1 are forced to 0, and bit 0 is forced to
-- 1.\n\n If IC_ENABLE[0] has been set to 0, bits 2:1 is only be valid
-- as soon as bit 0 is read as '0'.\n\n Note: When IC_ENABLE[0] has been
-- set to 0, a delay occurs for bit 0 to be read as 0 because disabling
-- the DW_apb_i2c depends on I2C bus activities.
IC_ENABLE_STATUS : aliased IC_ENABLE_STATUS_Register;
-- I2C SS, FS or FM+ spike suppression limit\n\n This register is used
-- to store the duration, measured in ic_clk cycles, of the longest
-- spike that is filtered out by the spike suppression logic when the
-- component is operating in SS, FS or FM+ modes. The relevant I2C
-- requirement is tSP (table 4) as detailed in the I2C Bus
-- Specification. This register must be programmed with a minimum value
-- of 1.
IC_FS_SPKLEN : aliased IC_FS_SPKLEN_Register;
-- Clear RESTART_DET Interrupt Register
IC_CLR_RESTART_DET : aliased IC_CLR_RESTART_DET_Register;
-- Component Parameter Register 1\n\n Note This register is not
-- implemented and therefore reads as 0. If it was implemented it would
-- be a constant read-only register that contains encoded information
-- about the component's parameter settings. Fields shown below are the
-- settings for those parameters
IC_COMP_PARAM_1 : aliased IC_COMP_PARAM_1_Register;
-- I2C Component Version Register
IC_COMP_VERSION : aliased HAL.UInt32;
-- I2C Component Type Register
IC_COMP_TYPE : aliased HAL.UInt32;
end record
with Volatile;
for I2C1_Peripheral use record
IC_CON at 16#0# range 0 .. 31;
IC_TAR at 16#4# range 0 .. 31;
IC_SAR at 16#8# range 0 .. 31;
IC_DATA_CMD at 16#10# range 0 .. 31;
IC_SS_SCL_HCNT at 16#14# range 0 .. 31;
IC_SS_SCL_LCNT at 16#18# range 0 .. 31;
IC_FS_SCL_HCNT at 16#1C# range 0 .. 31;
IC_FS_SCL_LCNT at 16#20# range 0 .. 31;
IC_INTR_STAT at 16#2C# range 0 .. 31;
IC_INTR_MASK at 16#30# range 0 .. 31;
IC_RAW_INTR_STAT at 16#34# range 0 .. 31;
IC_RX_TL at 16#38# range 0 .. 31;
IC_TX_TL at 16#3C# range 0 .. 31;
IC_CLR_INTR at 16#40# range 0 .. 31;
IC_CLR_RX_UNDER at 16#44# range 0 .. 31;
IC_CLR_RX_OVER at 16#48# range 0 .. 31;
IC_CLR_TX_OVER at 16#4C# range 0 .. 31;
IC_CLR_RD_REQ at 16#50# range 0 .. 31;
IC_CLR_TX_ABRT at 16#54# range 0 .. 31;
IC_CLR_RX_DONE at 16#58# range 0 .. 31;
IC_CLR_ACTIVITY at 16#5C# range 0 .. 31;
IC_CLR_STOP_DET at 16#60# range 0 .. 31;
IC_CLR_START_DET at 16#64# range 0 .. 31;
IC_CLR_GEN_CALL at 16#68# range 0 .. 31;
IC_ENABLE at 16#6C# range 0 .. 31;
IC_STATUS at 16#70# range 0 .. 31;
IC_TXFLR at 16#74# range 0 .. 31;
IC_RXFLR at 16#78# range 0 .. 31;
IC_SDA_HOLD at 16#7C# range 0 .. 31;
IC_TX_ABRT_SOURCE at 16#80# range 0 .. 31;
IC_SLV_DATA_NACK_ONLY at 16#84# range 0 .. 31;
IC_DMA_CR at 16#88# range 0 .. 31;
IC_DMA_TDLR at 16#8C# range 0 .. 31;
IC_DMA_RDLR at 16#90# range 0 .. 31;
IC_SDA_SETUP at 16#94# range 0 .. 31;
IC_ACK_GENERAL_CALL at 16#98# range 0 .. 31;
IC_ENABLE_STATUS at 16#9C# range 0 .. 31;
IC_FS_SPKLEN at 16#A0# range 0 .. 31;
IC_CLR_RESTART_DET at 16#A8# range 0 .. 31;
IC_COMP_PARAM_1 at 16#F4# range 0 .. 31;
IC_COMP_VERSION at 16#F8# range 0 .. 31;
IC_COMP_TYPE at 16#FC# range 0 .. 31;
end record;
-- DW_apb_i2c address block
I2C1_Periph : aliased I2C1_Peripheral
with Import, Address => I2C1_Base;
end RP_SVD.I2C1;
| 49.053059 | 85 | 0.672779 |
593d0a468467154406269d6c5758764b8499df8d | 28,328 | adb | Ada | .emacs.d/elpa/ada-mode-6.1.1/ada_process_lr1_main.adb | caqg/linux-home | eed631aae6f5e59e4f46e14f1dff443abca5fa28 | [
"Linux-OpenIB"
] | null | null | null | .emacs.d/elpa/ada-mode-6.1.1/ada_process_lr1_main.adb | caqg/linux-home | eed631aae6f5e59e4f46e14f1dff443abca5fa28 | [
"Linux-OpenIB"
] | null | null | null | .emacs.d/elpa/ada-mode-6.1.1/ada_process_lr1_main.adb | caqg/linux-home | eed631aae6f5e59e4f46e14f1dff443abca5fa28 | [
"Linux-OpenIB"
] | null | null | null | -- generated parser support file.
-- command line: wisitoken-bnf-generate.exe --generate LR1 Ada_Emacs re2c PROCESS text_rep ada.wy
--
-- Copyright (C) 2013 - 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, or (at
-- your option) any later version.
--
-- This software 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 GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
with Ada_Process_Actions; use Ada_Process_Actions;
with WisiToken.Lexer.re2c;
with ada_re2c_c;
package body Ada_Process_LR1_Main is
package Lexer is new WisiToken.Lexer.re2c
(ada_re2c_c.New_Lexer,
ada_re2c_c.Free_Lexer,
ada_re2c_c.Reset_Lexer,
ada_re2c_c.Next_Token);
procedure Create_Parser
(Parser : out WisiToken.Parse.LR.Parser.Parser;
Language_Fixes : in WisiToken.Parse.LR.Parser.Language_Fixes_Access;
Language_Matching_Begin_Tokens : in WisiToken.Parse.LR.Parser.Language_Matching_Begin_Tokens_Access;
Language_String_ID_Set : in WisiToken.Parse.LR.Parser.Language_String_ID_Set_Access;
Trace : not null access WisiToken.Trace'Class;
User_Data : in WisiToken.Syntax_Trees.User_Data_Access;
Text_Rep_File_Name : in String)
is
use WisiToken.Parse.LR;
McKenzie_Param : constant McKenzie_Param_Type :=
(First_Terminal => 3,
Last_Terminal => 107,
First_Nonterminal => 108,
Last_Nonterminal => 332,
Insert =>
(4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 2, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4),
Delete =>
(4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
4, 4, 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4),
Push_Back =>
(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2),
Undo_Reduce =>
(2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2),
Minimal_Complete_Cost_Delta => -3,
Fast_Forward => 2,
Matching_Begin => 3,
Ignore_Check_Fail => 2,
Task_Count => 0,
Check_Limit => 4,
Check_Delta_Limit => 100,
Enqueue_Limit => 45000);
function Actions return WisiToken.Parse.LR.Semantic_Action_Array_Arrays.Vector
is begin
return Acts : WisiToken.Parse.LR.Semantic_Action_Array_Arrays.Vector do
Acts.Set_First_Last (108, 332);
Acts (112).Set_First_Last (0, 0);
Acts (112)(0) := (abstract_subprogram_declaration_0'Access, null);
Acts (113).Set_First_Last (0, 1);
Acts (113)(0) := (accept_statement_0'Access, accept_statement_0_check'Access);
Acts (113)(1) := (accept_statement_1'Access, null);
Acts (114).Set_First_Last (0, 2);
Acts (114)(0) := (access_definition_0'Access, null);
Acts (114)(1) := (access_definition_1'Access, null);
Acts (114)(2) := (access_definition_2'Access, null);
Acts (115).Set_First_Last (0, 1);
Acts (115)(0) := (actual_parameter_part_0'Access, null);
Acts (115)(1) := (actual_parameter_part_1'Access, null);
Acts (117).Set_First_Last (0, 4);
Acts (117)(0) := (aggregate_0'Access, null);
Acts (117)(1) := (aggregate_1'Access, null);
Acts (117)(3) := (aggregate_3'Access, null);
Acts (117)(4) := (aggregate_4'Access, null);
Acts (120).Set_First_Last (0, 1);
Acts (120)(0) := (array_type_definition_0'Access, null);
Acts (120)(1) := (array_type_definition_1'Access, null);
Acts (121).Set_First_Last (0, 3);
Acts (121)(0) := (aspect_clause_0'Access, null);
Acts (122).Set_First_Last (0, 1);
Acts (122)(0) := (aspect_specification_opt_0'Access, null);
Acts (123).Set_First_Last (0, 0);
Acts (123)(0) := (assignment_statement_0'Access, null);
Acts (124).Set_First_Last (0, 5);
Acts (124)(0) := (association_opt_0'Access, null);
Acts (124)(2) := (association_opt_2'Access, null);
Acts (124)(3) := (association_opt_3'Access, null);
Acts (124)(4) := (association_opt_4'Access, null);
Acts (126).Set_First_Last (0, 0);
Acts (126)(0) := (asynchronous_select_0'Access, null);
Acts (127).Set_First_Last (0, 0);
Acts (127)(0) := (at_clause_0'Access, null);
Acts (131).Set_First_Last (0, 0);
Acts (131)(0) := (block_label_0'Access, block_label_0_check'Access);
Acts (132).Set_First_Last (0, 1);
Acts (132)(0) := (null, block_label_opt_0_check'Access);
Acts (132)(1) := (null, null);
Acts (133).Set_First_Last (0, 1);
Acts (133)(0) := (block_statement_0'Access, block_statement_0_check'Access);
Acts (133)(1) := (block_statement_1'Access, block_statement_1_check'Access);
Acts (136).Set_First_Last (0, 0);
Acts (136)(0) := (case_expression_0'Access, null);
Acts (137).Set_First_Last (0, 0);
Acts (137)(0) := (case_expression_alternative_0'Access, null);
Acts (138).Set_First_Last (0, 1);
Acts (138)(0) := (case_expression_alternative_list_0'Access, null);
Acts (139).Set_First_Last (0, 0);
Acts (139)(0) := (case_statement_0'Access, null);
Acts (140).Set_First_Last (0, 0);
Acts (140)(0) := (case_statement_alternative_0'Access, null);
Acts (142).Set_First_Last (0, 4);
Acts (142)(2) := (compilation_unit_2'Access, null);
Acts (143).Set_First_Last (0, 1);
Acts (143)(0) := (compilation_unit_list_0'Access, null);
Acts (143)(1) := (compilation_unit_list_1'Access, compilation_unit_list_1_check'Access);
Acts (144).Set_First_Last (0, 0);
Acts (144)(0) := (component_clause_0'Access, null);
Acts (146).Set_First_Last (0, 1);
Acts (146)(0) := (component_declaration_0'Access, null);
Acts (146)(1) := (component_declaration_1'Access, null);
Acts (149).Set_First_Last (0, 4);
Acts (149)(4) := (component_list_4'Access, null);
Acts (152).Set_First_Last (0, 0);
Acts (152)(0) := (conditional_entry_call_0'Access, null);
Acts (157).Set_First_Last (0, 16);
Acts (157)(9) := (declaration_9'Access, null);
Acts (161).Set_First_Last (0, 1);
Acts (161)(0) := (delay_statement_0'Access, null);
Acts (161)(1) := (delay_statement_1'Access, null);
Acts (162).Set_First_Last (0, 1);
Acts (162)(0) := (derived_type_definition_0'Access, null);
Acts (162)(1) := (derived_type_definition_1'Access, null);
Acts (169).Set_First_Last (0, 2);
Acts (169)(1) := (discriminant_part_opt_1'Access, null);
Acts (172).Set_First_Last (0, 0);
Acts (172)(0) := (elsif_expression_item_0'Access, null);
Acts (174).Set_First_Last (0, 0);
Acts (174)(0) := (elsif_statement_item_0'Access, null);
Acts (176).Set_First_Last (0, 0);
Acts (176)(0) := (entry_body_0'Access, entry_body_0_check'Access);
Acts (177).Set_First_Last (0, 1);
Acts (177)(0) := (entry_body_formal_part_0'Access, null);
Acts (179).Set_First_Last (0, 1);
Acts (179)(0) := (entry_declaration_0'Access, null);
Acts (179)(1) := (entry_declaration_1'Access, null);
Acts (182).Set_First_Last (0, 0);
Acts (182)(0) := (enumeration_representation_clause_0'Access, null);
Acts (183).Set_First_Last (0, 0);
Acts (183)(0) := (enumeration_type_definition_0'Access, null);
Acts (186).Set_First_Last (0, 0);
Acts (186)(0) := (exception_declaration_0'Access, null);
Acts (187).Set_First_Last (0, 1);
Acts (187)(0) := (exception_handler_0'Access, null);
Acts (187)(1) := (exception_handler_1'Access, null);
Acts (190).Set_First_Last (0, 1);
Acts (190)(0) := (exit_statement_0'Access, null);
Acts (190)(1) := (exit_statement_1'Access, null);
Acts (193).Set_First_Last (0, 0);
Acts (193)(0) := (expression_function_declaration_0'Access, null);
Acts (194).Set_First_Last (0, 1);
Acts (194)(0) := (extended_return_object_declaration_0'Access, null);
Acts (194)(1) := (extended_return_object_declaration_1'Access, null);
Acts (196).Set_First_Last (0, 1);
Acts (196)(0) := (extended_return_statement_0'Access, null);
Acts (196)(1) := (extended_return_statement_1'Access, null);
Acts (198).Set_First_Last (0, 3);
Acts (198)(0) := (formal_object_declaration_0'Access, null);
Acts (198)(1) := (formal_object_declaration_1'Access, null);
Acts (198)(2) := (formal_object_declaration_2'Access, null);
Acts (198)(3) := (formal_object_declaration_3'Access, null);
Acts (199).Set_First_Last (0, 0);
Acts (199)(0) := (formal_part_0'Access, null);
Acts (200).Set_First_Last (0, 3);
Acts (200)(0) := (formal_subprogram_declaration_0'Access, null);
Acts (200)(1) := (formal_subprogram_declaration_1'Access, null);
Acts (200)(2) := (formal_subprogram_declaration_2'Access, null);
Acts (200)(3) := (formal_subprogram_declaration_3'Access, null);
Acts (201).Set_First_Last (0, 2);
Acts (201)(0) := (formal_type_declaration_0'Access, null);
Acts (201)(1) := (formal_type_declaration_1'Access, null);
Acts (201)(2) := (formal_type_declaration_2'Access, null);
Acts (203).Set_First_Last (0, 1);
Acts (203)(0) := (formal_derived_type_definition_0'Access, null);
Acts (203)(1) := (formal_derived_type_definition_1'Access, null);
Acts (204).Set_First_Last (0, 0);
Acts (204)(0) := (formal_package_declaration_0'Access, null);
Acts (206).Set_First_Last (0, 2);
Acts (206)(0) := (full_type_declaration_0'Access, null);
Acts (207).Set_First_Last (0, 0);
Acts (207)(0) := (function_specification_0'Access, function_specification_0_check'Access);
Acts (210).Set_First_Last (0, 1);
Acts (210)(0) := (generic_formal_part_0'Access, null);
Acts (210)(1) := (generic_formal_part_1'Access, null);
Acts (213).Set_First_Last (0, 2);
Acts (213)(0) := (generic_instantiation_0'Access, null);
Acts (213)(1) := (generic_instantiation_1'Access, null);
Acts (213)(2) := (generic_instantiation_2'Access, null);
Acts (214).Set_First_Last (0, 0);
Acts (214)(0) := (generic_package_declaration_0'Access, null);
Acts (215).Set_First_Last (0, 2);
Acts (215)(0) := (generic_renaming_declaration_0'Access, null);
Acts (215)(1) := (generic_renaming_declaration_1'Access, null);
Acts (215)(2) := (generic_renaming_declaration_2'Access, null);
Acts (216).Set_First_Last (0, 0);
Acts (216)(0) := (generic_subprogram_declaration_0'Access, null);
Acts (217).Set_First_Last (0, 0);
Acts (217)(0) := (goto_label_0'Access, null);
Acts (218).Set_First_Last (0, 1);
Acts (218)(0) := (handled_sequence_of_statements_0'Access, null);
Acts (219).Set_First_Last (0, 1);
Acts (219)(0) := (identifier_list_0'Access, null);
Acts (219)(1) := (identifier_list_1'Access, null);
Acts (220).Set_First_Last (0, 1);
Acts (220)(0) := (null, identifier_opt_0_check'Access);
Acts (220)(1) := (null, null);
Acts (221).Set_First_Last (0, 3);
Acts (221)(0) := (if_expression_0'Access, null);
Acts (221)(1) := (if_expression_1'Access, null);
Acts (221)(2) := (if_expression_2'Access, null);
Acts (221)(3) := (if_expression_3'Access, null);
Acts (222).Set_First_Last (0, 3);
Acts (222)(0) := (if_statement_0'Access, null);
Acts (222)(1) := (if_statement_1'Access, null);
Acts (222)(2) := (if_statement_2'Access, null);
Acts (222)(3) := (if_statement_3'Access, null);
Acts (223).Set_First_Last (0, 1);
Acts (223)(0) := (incomplete_type_declaration_0'Access, null);
Acts (223)(1) := (incomplete_type_declaration_1'Access, null);
Acts (224).Set_First_Last (0, 0);
Acts (224)(0) := (index_constraint_0'Access, null);
Acts (227).Set_First_Last (0, 1);
Acts (227)(0) := (interface_list_0'Access, null);
Acts (227)(1) := (interface_list_1'Access, null);
Acts (229).Set_First_Last (0, 1);
Acts (229)(0) := (iteration_scheme_0'Access, null);
Acts (229)(1) := (iteration_scheme_1'Access, null);
Acts (230).Set_First_Last (0, 5);
Acts (230)(2) := (iterator_specification_2'Access, null);
Acts (230)(5) := (iterator_specification_5'Access, null);
Acts (232).Set_First_Last (0, 1);
Acts (232)(0) := (loop_statement_0'Access, loop_statement_0_check'Access);
Acts (232)(1) := (loop_statement_1'Access, loop_statement_1_check'Access);
Acts (239).Set_First_Last (0, 7);
Acts (239)(0) := (name_0'Access, null);
Acts (239)(1) := (name_1'Access, null);
Acts (239)(2) := (null, name_2_check'Access);
Acts (239)(3) := (null, null);
Acts (239)(4) := (null, null);
Acts (239)(5) := (name_5'Access, name_5_check'Access);
Acts (239)(6) := (null, null);
Acts (239)(7) := (null, name_7_check'Access);
Acts (240).Set_First_Last (0, 1);
Acts (240)(0) := (null, name_opt_0_check'Access);
Acts (240)(1) := (null, null);
Acts (242).Set_First_Last (0, 3);
Acts (242)(0) := (null_exclusion_opt_name_type_0'Access, null);
Acts (242)(1) := (null_exclusion_opt_name_type_1'Access, null);
Acts (242)(2) := (null_exclusion_opt_name_type_2'Access, null);
Acts (242)(3) := (null_exclusion_opt_name_type_3'Access, null);
Acts (243).Set_First_Last (0, 0);
Acts (243)(0) := (null_procedure_declaration_0'Access, null);
Acts (244).Set_First_Last (0, 7);
Acts (244)(0) := (object_declaration_0'Access, null);
Acts (244)(1) := (object_declaration_1'Access, null);
Acts (244)(2) := (object_declaration_2'Access, null);
Acts (244)(3) := (object_declaration_3'Access, null);
Acts (244)(4) := (object_declaration_4'Access, null);
Acts (244)(5) := (object_declaration_5'Access, null);
Acts (245).Set_First_Last (0, 2);
Acts (245)(0) := (object_renaming_declaration_0'Access, null);
Acts (245)(1) := (object_renaming_declaration_1'Access, null);
Acts (245)(2) := (object_renaming_declaration_2'Access, null);
Acts (246).Set_First_Last (0, 2);
Acts (246)(0) := (overriding_indicator_opt_0'Access, null);
Acts (246)(1) := (overriding_indicator_opt_1'Access, null);
Acts (247).Set_First_Last (0, 1);
Acts (247)(0) := (package_body_0'Access, package_body_0_check'Access);
Acts (247)(1) := (package_body_1'Access, package_body_1_check'Access);
Acts (248).Set_First_Last (0, 0);
Acts (248)(0) := (package_body_stub_0'Access, null);
Acts (249).Set_First_Last (0, 0);
Acts (249)(0) := (package_declaration_0'Access, null);
Acts (250).Set_First_Last (0, 0);
Acts (250)(0) := (package_renaming_declaration_0'Access, null);
Acts (251).Set_First_Last (0, 1);
Acts (251)(0) := (package_specification_0'Access, package_specification_0_check'Access);
Acts (251)(1) := (package_specification_1'Access, package_specification_1_check'Access);
Acts (252).Set_First_Last (0, 1);
Acts (252)(0) := (parameter_and_result_profile_0'Access, null);
Acts (254).Set_First_Last (0, 4);
Acts (254)(0) := (parameter_specification_0'Access, null);
Acts (254)(1) := (parameter_specification_1'Access, null);
Acts (254)(2) := (parameter_specification_2'Access, null);
Acts (254)(3) := (parameter_specification_3'Access, null);
Acts (255).Set_First_Last (0, 1);
Acts (255)(0) := (parameter_specification_list_0'Access, null);
Acts (256).Set_First_Last (0, 2);
Acts (256)(0) := (paren_expression_0'Access, null);
Acts (256)(1) := (paren_expression_1'Access, null);
Acts (256)(2) := (paren_expression_2'Access, null);
Acts (257).Set_First_Last (0, 2);
Acts (257)(0) := (pragma_g_0'Access, null);
Acts (257)(1) := (pragma_g_1'Access, null);
Acts (257)(2) := (pragma_g_2'Access, null);
Acts (258).Set_First_Last (0, 4);
Acts (258)(0) := (primary_0'Access, null);
Acts (258)(2) := (primary_2'Access, null);
Acts (258)(4) := (primary_4'Access, null);
Acts (259).Set_First_Last (0, 0);
Acts (259)(0) := (private_extension_declaration_0'Access, null);
Acts (260).Set_First_Last (0, 0);
Acts (260)(0) := (private_type_declaration_0'Access, null);
Acts (261).Set_First_Last (0, 0);
Acts (261)(0) := (procedure_call_statement_0'Access, null);
Acts (262).Set_First_Last (0, 0);
Acts (262)(0) := (procedure_specification_0'Access, procedure_specification_0_check'Access);
Acts (264).Set_First_Last (0, 0);
Acts (264)(0) := (protected_body_0'Access, protected_body_0_check'Access);
Acts (265).Set_First_Last (0, 0);
Acts (265)(0) := (protected_body_stub_0'Access, null);
Acts (266).Set_First_Last (0, 1);
Acts (266)(0) := (protected_definition_0'Access, protected_definition_0_check'Access);
Acts (266)(1) := (protected_definition_1'Access, protected_definition_1_check'Access);
Acts (271).Set_First_Last (0, 1);
Acts (271)(0) := (protected_type_declaration_0'Access, protected_type_declaration_0_check'Access);
Acts (271)(1) := (protected_type_declaration_1'Access, protected_type_declaration_1_check'Access);
Acts (272).Set_First_Last (0, 0);
Acts (272)(0) := (qualified_expression_0'Access, null);
Acts (273).Set_First_Last (0, 0);
Acts (273)(0) := (quantified_expression_0'Access, null);
Acts (275).Set_First_Last (0, 1);
Acts (275)(0) := (raise_expression_0'Access, null);
Acts (276).Set_First_Last (0, 2);
Acts (276)(0) := (raise_statement_0'Access, null);
Acts (276)(1) := (raise_statement_1'Access, null);
Acts (276)(2) := (raise_statement_2'Access, null);
Acts (277).Set_First_Last (0, 2);
Acts (277)(0) := (range_g_0'Access, null);
Acts (280).Set_First_Last (0, 1);
Acts (280)(0) := (record_definition_0'Access, null);
Acts (281).Set_First_Last (0, 0);
Acts (281)(0) := (record_representation_clause_0'Access, null);
Acts (290).Set_First_Last (0, 1);
Acts (290)(0) := (requeue_statement_0'Access, null);
Acts (290)(1) := (requeue_statement_1'Access, null);
Acts (291).Set_First_Last (0, 1);
Acts (291)(0) := (result_profile_0'Access, null);
Acts (291)(1) := (result_profile_1'Access, null);
Acts (293).Set_First_Last (0, 3);
Acts (293)(0) := (selected_component_0'Access, selected_component_0_check'Access);
Acts (293)(1) := (selected_component_1'Access, null);
Acts (293)(2) := (selected_component_2'Access, selected_component_2_check'Access);
Acts (293)(3) := (selected_component_3'Access, null);
Acts (294).Set_First_Last (0, 1);
Acts (294)(0) := (selective_accept_0'Access, null);
Acts (294)(1) := (selective_accept_1'Access, null);
Acts (295).Set_First_Last (0, 5);
Acts (295)(0) := (select_alternative_0'Access, null);
Acts (295)(1) := (select_alternative_1'Access, null);
Acts (295)(2) := (select_alternative_2'Access, null);
Acts (295)(4) := (select_alternative_4'Access, null);
Acts (296).Set_First_Last (0, 1);
Acts (296)(0) := (select_alternative_list_0'Access, null);
Acts (296)(1) := (select_alternative_list_1'Access, null);
Acts (302).Set_First_Last (0, 0);
Acts (302)(0) := (simple_return_statement_0'Access, null);
Acts (303).Set_First_Last (0, 10);
Acts (303)(0) := (simple_statement_0'Access, null);
Acts (303)(3) := (simple_statement_3'Access, null);
Acts (303)(8) := (simple_statement_8'Access, null);
Acts (304).Set_First_Last (0, 1);
Acts (304)(0) := (single_protected_declaration_0'Access, single_protected_declaration_0_check'Access);
Acts (304)(1) := (single_protected_declaration_1'Access, single_protected_declaration_1_check'Access);
Acts (305).Set_First_Last (0, 2);
Acts (305)(0) := (single_task_declaration_0'Access, single_task_declaration_0_check'Access);
Acts (305)(1) := (single_task_declaration_1'Access, single_task_declaration_1_check'Access);
Acts (305)(2) := (single_task_declaration_2'Access, null);
Acts (307).Set_First_Last (0, 0);
Acts (307)(0) := (subprogram_body_0'Access, subprogram_body_0_check'Access);
Acts (308).Set_First_Last (0, 0);
Acts (308)(0) := (subprogram_body_stub_0'Access, null);
Acts (309).Set_First_Last (0, 0);
Acts (309)(0) := (subprogram_declaration_0'Access, null);
Acts (310).Set_First_Last (0, 2);
Acts (310)(0) := (subprogram_default_0'Access, null);
Acts (311).Set_First_Last (0, 0);
Acts (311)(0) := (subprogram_renaming_declaration_0'Access, null);
Acts (312).Set_First_Last (0, 1);
Acts (312)(0) := (null, subprogram_specification_0_check'Access);
Acts (312)(1) := (null, subprogram_specification_1_check'Access);
Acts (313).Set_First_Last (0, 0);
Acts (313)(0) := (subtype_declaration_0'Access, null);
Acts (314).Set_First_Last (0, 3);
Acts (314)(0) := (subtype_indication_0'Access, null);
Acts (314)(1) := (subtype_indication_1'Access, null);
Acts (314)(2) := (subtype_indication_2'Access, null);
Acts (314)(3) := (subtype_indication_3'Access, null);
Acts (315).Set_First_Last (0, 0);
Acts (315)(0) := (subunit_0'Access, null);
Acts (316).Set_First_Last (0, 0);
Acts (316)(0) := (task_body_0'Access, task_body_0_check'Access);
Acts (317).Set_First_Last (0, 0);
Acts (317)(0) := (task_body_stub_0'Access, null);
Acts (318).Set_First_Last (0, 1);
Acts (318)(0) := (task_definition_0'Access, null);
Acts (318)(1) := (task_definition_1'Access, null);
Acts (319).Set_First_Last (0, 2);
Acts (319)(0) := (task_type_declaration_0'Access, task_type_declaration_0_check'Access);
Acts (319)(1) := (task_type_declaration_1'Access, task_type_declaration_1_check'Access);
Acts (319)(2) := (task_type_declaration_2'Access, null);
Acts (323).Set_First_Last (0, 0);
Acts (323)(0) := (timed_entry_call_0'Access, null);
Acts (327).Set_First_Last (0, 0);
Acts (327)(0) := (variant_part_0'Access, null);
Acts (329).Set_First_Last (0, 0);
Acts (329)(0) := (variant_0'Access, null);
Acts (331).Set_First_Last (0, 2);
Acts (331)(0) := (use_clause_0'Access, null);
Acts (331)(1) := (use_clause_1'Access, null);
Acts (331)(2) := (use_clause_2'Access, null);
Acts (332).Set_First_Last (0, 3);
Acts (332)(0) := (with_clause_0'Access, null);
Acts (332)(1) := (with_clause_1'Access, null);
Acts (332)(2) := (with_clause_2'Access, null);
Acts (332)(3) := (with_clause_3'Access, null);
end return;
end Actions;
Table : constant Parse_Table_Ptr := Get_Text_Rep
(Text_Rep_File_Name, McKenzie_Param, Actions);
begin
WisiToken.Parse.LR.Parser.New_Parser
(Parser,
Trace,
Lexer.New_Lexer (Trace.Descriptor),
Table,
Language_Fixes,
Language_Matching_Begin_Tokens,
Language_String_ID_Set,
User_Data,
Max_Parallel => 15,
Terminate_Same_State => True);
end Create_Parser;
end Ada_Process_LR1_Main;
| 59.890063 | 119 | 0.557117 |
06dd67f1fa3a894264cfc760d056a25c8ee6101c | 126 | adb | Ada | 136/ada/increment.adb | notdb/LC-Practice | 48898e0a29ed3f4559b8680fe0bdd596c5faae1f | [
"MIT"
] | null | null | null | 136/ada/increment.adb | notdb/LC-Practice | 48898e0a29ed3f4559b8680fe0bdd596c5faae1f | [
"MIT"
] | null | null | null | 136/ada/increment.adb | notdb/LC-Practice | 48898e0a29ed3f4559b8680fe0bdd596c5faae1f | [
"MIT"
] | null | null | null | -- We define the Increment function
function Increment (I : Integer) return Integer is
begin
return I + i;
end Increment; | 21 | 50 | 0.738095 |
2f150564544471499df0e51b788daa087186cf8c | 6,571 | ads | Ada | components/src/audio/CS43L22/cs43l22.ads | shakram02/Ada_Drivers_Library | a407ca7ddbc2d9756647016c2f8fd8ef24a239ff | [
"BSD-3-Clause"
] | 192 | 2016-06-01T18:32:04.000Z | 2022-03-26T22:52:31.000Z | components/src/audio/CS43L22/cs43l22.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 239 | 2016-05-26T20:02:01.000Z | 2022-03-31T09:46:56.000Z | components/src/audio/CS43L22/cs43l22.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. --
-- --
------------------------------------------------------------------------------
-- Driver for the WM8994 CODEC
with HAL; use HAL;
with HAL.I2C; use HAL.I2C;
with HAL.Audio; use HAL.Audio;
with HAL.Time;
package CS43L22 is
type Output_Device is
(No_Output,
Speaker,
Headphone,
Both,
Auto);
CS43L22_I2C_Addr : constant := 16#94#;
CS43L22_ID : constant := 16#E0#;
CS43L22_ID_MASK : constant := 16#F8#;
type Mute is
(Mute_On,
Mute_Off);
subtype Volume_Level is UInt8 range 0 .. 100;
type CS43L22_Device (Port : not null Any_I2C_Port;
Time : not null HAL.Time.Any_Delays) is
tagged limited private;
procedure Init (This : in out CS43L22_Device;
Output : Output_Device;
Volume : Volume_Level;
Frequency : Audio_Frequency);
function Read_ID (This : in out CS43L22_Device) return UInt8;
procedure Play (This : in out CS43L22_Device);
procedure Pause (This : in out CS43L22_Device);
procedure Resume (This : in out CS43L22_Device);
procedure Stop (This : in out CS43L22_Device);
procedure Set_Volume (This : in out CS43L22_Device; Volume : Volume_Level);
procedure Set_Mute (This : in out CS43L22_Device; Cmd : Mute);
procedure Set_Output_Mode (This : in out CS43L22_Device;
Device : Output_Device);
procedure Set_Frequency (This : in out CS43L22_Device;
Freq : Audio_Frequency);
procedure Reset (This : in out CS43L22_Device);
private
CS43L22_REG_ID : constant := 16#01#;
CS43L22_REG_POWER_CTL1 : constant := 16#02#;
CS43L22_REG_POWER_CTL2 : constant := 16#04#;
CS43L22_REG_CLOCKING_CTL : constant := 16#05#;
CS43L22_REG_INTERFACE_CTL1 : constant := 16#06#;
CS43L22_REG_INTERFACE_CTL2 : constant := 16#07#;
CS43L22_REG_PASSTHR_A_SELECT : constant := 16#08#;
CS43L22_REG_PASSTHR_B_SELECT : constant := 16#09#;
CS43L22_REG_ANALOG_ZC_SR_SETT : constant := 16#0A#;
CS43L22_REG_PASSTHR_GANG_CTL : constant := 16#0C#;
CS43L22_REG_PLAYBACK_CTL1 : constant := 16#0D#;
CS43L22_REG_MISC_CTL : constant := 16#0E#;
CS43L22_REG_PLAYBACK_CTL2 : constant := 16#0F#;
CS43L22_REG_PASSTHR_A_VOL : constant := 16#14#;
CS43L22_REG_PASSTHR_B_VOL : constant := 16#15#;
CS43L22_REG_PCMA_VOL : constant := 16#1A#;
CS43L22_REG_PCMB_VOL : constant := 16#1B#;
CS43L22_REG_BEEP_FREQ_ON_TIME : constant := 16#1C#;
CS43L22_REG_BEEP_VOL_OFF_TIME : constant := 16#1D#;
CS43L22_REG_BEEP_TONE_CFG : constant := 16#1E#;
CS43L22_REG_TONE_CTL : constant := 16#1F#;
CS43L22_REG_MASTER_A_VOL : constant := 16#20#;
CS43L22_REG_MASTER_B_VOL : constant := 16#21#;
CS43L22_REG_HEADPHONE_A_VOL : constant := 16#22#;
CS43L22_REG_HEADPHONE_B_VOL : constant := 16#23#;
CS43L22_REG_SPEAKER_A_VOL : constant := 16#24#;
CS43L22_REG_SPEAKER_B_VOL : constant := 16#25#;
CS43L22_REG_CH_MIXER_SWAP : constant := 16#26#;
CS43L22_REG_LIMIT_CTL1 : constant := 16#27#;
CS43L22_REG_LIMIT_CTL2 : constant := 16#28#;
CS43L22_REG_LIMIT_ATTACK_RATE : constant := 16#29#;
CS43L22_REG_OVF_CLK_STATUS : constant := 16#2E#;
CS43L22_REG_BATT_COMPENSATION : constant := 16#2F#;
CS43L22_REG_VP_BATTERY_LEVEL : constant := 16#30#;
CS43L22_REG_SPEAKER_STATUS : constant := 16#31#;
CS43L22_REG_TEMPMONITOR_CTL : constant := 16#32#;
CS43L22_REG_THERMAL_FOLDBACK : constant := 16#33#;
CS43L22_REG_CHARGE_PUMP_FREQ : constant := 16#34#;
type CS43L22_Device (Port : not null Any_I2C_Port;
Time : not null HAL.Time.Any_Delays) is
tagged limited record
Output_Enabled : Boolean := False;
Output_Dev : UInt8 := 0;
end record;
procedure I2C_Write (This : in out CS43L22_Device;
Reg : UInt8;
Value : UInt8);
function I2C_Read (This : in out CS43L22_Device;
Reg : UInt8)
return UInt8;
end CS43L22;
| 47.963504 | 78 | 0.582864 |
1d7e424c92eb5c38008cac73fb86ab8a069abbb9 | 2,597 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/s-proinf.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/s-proinf.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/s-proinf.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . P R O G R A M _ I N F O --
-- --
-- B o d y --
-- --
-- Copyright (C) 1996-2014, 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.Program_Info is
Default_Stack_Size : constant := 10000;
function Default_Task_Stack return Integer is
begin
return Default_Stack_Size;
end Default_Task_Stack;
end System.Program_Info;
| 61.833333 | 78 | 0.402002 |
59c79ef15a98591d8e0e6458725cfe893242ba47 | 2,911 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/s-valboo.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/s-valboo.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/s-valboo.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . V A L _ B O O L --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2012, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Val_Util; use System.Val_Util;
package body System.Val_Bool is
-------------------
-- Value_Boolean --
-------------------
function Value_Boolean (Str : String) return Boolean is
F : Natural;
L : Natural;
S : String (Str'Range) := Str;
begin
Normalize_String (S, F, L);
if S (F .. L) = "TRUE" then
return True;
elsif S (F .. L) = "FALSE" then
return False;
else
Bad_Value (Str);
end if;
end Value_Boolean;
end System.Val_Bool;
| 48.516667 | 78 | 0.39471 |
2f18d648d6ada905ac580c37bd61375eb8228692 | 2,091 | ads | Ada | source/oasis/program-elements-exception_declarations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-exception_declarations.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-exception_declarations.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.Elements.Declarations;
with Program.Elements.Defining_Identifiers;
with Program.Lexical_Elements;
with Program.Elements.Aspect_Specifications;
package Program.Elements.Exception_Declarations is
pragma Pure (Program.Elements.Exception_Declarations);
type Exception_Declaration is
limited interface and Program.Elements.Declarations.Declaration;
type Exception_Declaration_Access is access all Exception_Declaration'Class
with Storage_Size => 0;
not overriding function Names
(Self : Exception_Declaration)
return not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Vector_Access is abstract;
not overriding function Aspects
(Self : Exception_Declaration)
return Program.Elements.Aspect_Specifications
.Aspect_Specification_Vector_Access is abstract;
type Exception_Declaration_Text is limited interface;
type Exception_Declaration_Text_Access is
access all Exception_Declaration_Text'Class with Storage_Size => 0;
not overriding function To_Exception_Declaration_Text
(Self : aliased in out Exception_Declaration)
return Exception_Declaration_Text_Access is abstract;
not overriding function Colon_Token
(Self : Exception_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Exception_Token
(Self : Exception_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function With_Token
(Self : Exception_Declaration_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Semicolon_Token
(Self : Exception_Declaration_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
end Program.Elements.Exception_Declarations;
| 34.278689 | 78 | 0.76901 |
4d7af00ba4bf4c2048f92a2091ede4f34cce89b3 | 1,199 | adb | Ada | gnu/src/gdb/gdb/testsuite/gdb.ada/mod_from_name/foo.adb | ghsecuritylab/ellcc-mirror | b03a4afac74d50cf0987554b8c0cd8209bcb92a2 | [
"BSD-2-Clause"
] | null | null | null | gnu/src/gdb/gdb/testsuite/gdb.ada/mod_from_name/foo.adb | ghsecuritylab/ellcc-mirror | b03a4afac74d50cf0987554b8c0cd8209bcb92a2 | [
"BSD-2-Clause"
] | null | null | null | gnu/src/gdb/gdb/testsuite/gdb.ada/mod_from_name/foo.adb | ghsecuritylab/ellcc-mirror | b03a4afac74d50cf0987554b8c0cd8209bcb92a2 | [
"BSD-2-Clause"
] | null | null | null | -- Copyright 2009-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/>.
procedure Foo is
type Small is range -32 .. 31;
type SomePackedArray is array (Integer range <>) of Small;
pragma Pack (SomePackedArray);
type SomePackedRecord is record
Y: SomePackedArray (1 .. 10);
end record;
pragma Pack (SomePackedRecord);
Suite : SomePackedArray := (-1, -2, -3, -4, -5, -6, -7, -8, -9, -10);
XP: SomePackedRecord := (Y => Suite);
Slice : SomePackedArray renames XP.Y (3 .. 5);
begin
Slice (4) := 4; -- START
end Foo;
| 32.405405 | 73 | 0.687239 |
12c17b7ba3169053bb6c357391074fa1f70237f4 | 2,373 | adb | Ada | Sources/Globe_3d/gl/gl-geometry-primal.adb | ForYouEyesOnly/Space-Convoy | be4904f6a02695f7c4c5c3c965f4871cd3250003 | [
"MIT"
] | 1 | 2019-09-21T09:40:34.000Z | 2019-09-21T09:40:34.000Z | Sources/Globe_3d/gl/gl-geometry-primal.adb | ForYouEyesOnly/Space-Convoy | be4904f6a02695f7c4c5c3c965f4871cd3250003 | [
"MIT"
] | null | null | null | Sources/Globe_3d/gl/gl-geometry-primal.adb | ForYouEyesOnly/Space-Convoy | be4904f6a02695f7c4c5c3c965f4871cd3250003 | [
"MIT"
] | 1 | 2019-09-25T12:29:27.000Z | 2019-09-25T12:29:27.000Z | pragma Style_Checks (Off);
pragma Warnings (Off);
-------------------------------------------------------------------------
-- GL.Geometry - GL geometry primitives
--
-- Copyright (c) Rod Kay 2007
-- AUSTRALIA
-- Permission granted to use this software, without any warranty,
-- for any purpose, provided this copyright note remains attached
-- and unmodified if sources are distributed further.
-------------------------------------------------------------------------
with Ada.Numerics.Generic_Elementary_functions;
with Ada.Text_IO; use Ada.Text_IO;
package body GL.Geometry.primal is
function primitive_Id (Self : in primal_Geometry) return GL.ObjectTypeEnm
is
begin
return self.primitive.primitive_Id;
end;
function vertex_Count (Self : in primal_Geometry) return GL.geometry.vertex_Id
is
begin
return self.primitive.Vertices'Length;
end;
function indices_Count (Self : in primal_Geometry) return GL.positive_uInt
is
begin
return self.primitive.Indices'Length;
end;
function Bounds (Self : in primal_Geometry) return GL.geometry.Bounds_record
is
begin
return Bounds (self.Primitive.Vertices.all);
end;
function Vertices (Self : in primal_Geometry) return GL.geometry.GL_Vertex_array
is
begin
return self.primitive.Vertices.all;
end;
procedure set_Vertices (Self : in out primal_Geometry; To : access GL.geometry.GL_Vertex_array)
is
begin
self.primitive.set_Vertices (to => To);
self.Bounds := Bounds (self.primitive.Vertices.all);
end;
function Indices (Self : in primal_Geometry) return GL.geometry.vertex_Id_array
is
the_Indices : GL.geometry.vertex_Id_array := self.primitive.Indices.all;
begin
increment (the_Indices);
return the_Indices;
end;
procedure set_Indices (Self : in out primal_Geometry; To : access GL.geometry.vertex_Id_array)
is
begin
self.primitive.set_Indices (to => To);
end;
procedure Draw (Self : in primal_Geometry)
is
begin
self.Primitive.draw;
end;
procedure destroy (Self : in out primal_Geometry)
is
use Primitives;
begin
free (self.Primitive);
end;
end GL.Geometry.primal;
| 28.25 | 104 | 0.625369 |
2fe60b2e3c350422eb649c13e5b2b1a3da25564d | 4,418 | adb | Ada | contrib/ayacc/src/ayacc-initialize.adb | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | 4 | 2016-02-05T15:51:56.000Z | 2022-03-25T20:38:32.000Z | contrib/ayacc/src/ayacc-initialize.adb | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | contrib/ayacc/src/ayacc-initialize.adb | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | null | null | null | -- $Header: /cf/ua/arcadia/alex-ayacc/ayacc/src/RCS/ayacc_separates.a,v 1.1 88/08/08 12:07:39 arcadia Exp $
-- Copyright (c) 1990 Regents of the University of California.
-- All rights reserved.
--
-- The primary authors of ayacc were David Taback and Deepak Tolani.
-- Enhancements were made by Ronald J. Schmalz.
--
-- Send requests for ayacc information to [email protected]
-- Send bug reports for ayacc to [email protected]
--
-- Redistribution and use in source and binary forms are permitted
-- provided that the above copyright notice and this paragraph are
-- duplicated in all such forms and that any documentation,
-- advertising materials, and other materials related to such
-- distribution and use acknowledge that the software was developed
-- by the University of California, Irvine. The name of the
-- University may not be used to endorse or promote products derived
-- from this software without specific prior written permission.
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-- Module : ayacc_separates.ada
-- Component of : ayacc
-- Version : 1.2
-- Date : 11/21/86 12:28:51
-- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxayacc_separates.ada
-- $Header: /cf/ua/arcadia/alex-ayacc/ayacc/src/RCS/ayacc_separates.a,v 1.1 88/08/08 12:07:39 arcadia Exp $
-- $Log: ayacc_separates.a,v $
--Revision 1.1 88/08/08 12:07:39 arcadia
--Initial revision
--
-- Revision 0.0 86/02/19 18:36:14 ada
--
-- These files comprise the initial version of Ayacc
-- designed and implemented by David Taback and Deepak Tolani.
-- Ayacc has been compiled and tested under the Verdix Ada compiler
-- version 4.06 on a vax 11/750 running Unix 4.2BSD.
--
-- Revision 0.1 88/03/16
-- Additional argument added to allow user to specify file extension
-- to be used for generated Ada files. -- kn
with String_Pkg; use String_Pkg;
separate (Ayacc)
procedure Initialize is
use Ayacc_File_Names, Options;
Input_File, Extension, Options : String_Type := Create ("");
type Switch is ( On , Off );
C_Lex_Flag,
Debug_Flag,
Summary_Flag,
-- UMASS CODES :
Error_Recovery_Flag,
-- END OF UMASS CODES.
Verbose_Flag : Switch;
Invalid_Command_Line : exception;
procedure Get_Arguments (File : out String_Type;
C_Lex : out Switch;
Debug : out Switch;
Summary : out Switch;
Verbose : out Switch;
-- UMASS CODES :
Error_Recovery : out Switch;
-- END OF UMASS CODES.
Extension : out String_Type) is separate;
begin
Get_Arguments (Input_File,
C_Lex_Flag,
Debug_Flag,
Summary_Flag,
Verbose_Flag,
-- UMASS CODES :
Error_Recovery_Flag,
-- END OF UMASS CODES.
Extension);
New_Line;
Put_Line (" Ayacc (File => """ & Value (Input_File) & """,");
Put_Line (" C_Lex => " &
Value (Mixed (Switch'Image(C_Lex_Flag))) & ',');
Put_Line (" Debug => " &
Value (Mixed (Switch'Image(Debug_Flag))) & ',');
Put_Line (" Summary => " &
Value (Mixed (Switch'Image(Summary_Flag))) & ',');
Put_Line (" Verbose => " &
Value (Mixed (Switch'Image(Verbose_Flag))) & ",");
-- UMASS CODES :
Put_Line (" Error_Recovery => " &
Value (Mixed (Switch'Image(Error_Recovery_Flag))) & ");");
-- END OF UMASS CODES.
New_Line;
if C_Lex_Flag = On then
Options := Options & Create ("i");
end if;
if Debug_Flag = On then
Options := Options & Create ("d");
end if;
if Summary_Flag = On then
Options := Options & Create ("s");
end if;
if Verbose_Flag = On then
Options := Options & Create ("v");
end if;
-- UMASS CODES :
if Error_Recovery_Flag = On then
Options := Options & Create ("e");
end if;
-- END OF UMASS CODES.
Set_File_Names (Value (Input_File), Value(Extension));
Set_Options (Value (Options));
exception
when Invalid_Command_Line =>
raise Illegal_Argument_List;
end Initialize;
| 33.218045 | 108 | 0.625622 |
292b0536156bab88cdf16de1d6c716a87c189e90 | 4,008 | adb | Ada | src/latin_utils/latin_utils-dictionary_package-noun_entry_io.adb | finleyexp/whitakers-words | 9c07fe7e96ac15dc3262b82a37f6ea69947f458b | [
"FTL"
] | 204 | 2015-06-12T21:22:55.000Z | 2022-03-28T10:50:16.000Z | src/latin_utils/latin_utils-dictionary_package-noun_entry_io.adb | finleyexp/whitakers-words | 9c07fe7e96ac15dc3262b82a37f6ea69947f458b | [
"FTL"
] | 98 | 2015-06-15T22:17:04.000Z | 2021-10-01T18:17:55.000Z | src/latin_utils/latin_utils-dictionary_package-noun_entry_io.adb | finleyexp/whitakers-words | 9c07fe7e96ac15dc3262b82a37f6ea69947f458b | [
"FTL"
] | 50 | 2015-06-16T22:42:24.000Z | 2021-12-29T16:53:08.000Z | -- WORDS, a Latin dictionary, by Colonel William Whitaker (USAF, Retired)
--
-- Copyright William A. Whitaker (1936–2010)
--
-- This is a free program, which means it is proper to copy it and pass
-- it on to your friends. Consider it a developmental item for which
-- there is no charge. However, just for form, it is Copyrighted
-- (c). Permission is hereby freely given for any and all use of program
-- and data. You can sell it as your own, but at least tell me.
--
-- This version is distributed without obligation, but the developer
-- would appreciate comments and suggestions.
--
-- All parts of the WORDS system, source code and data files, are made freely
-- available to anyone who wishes to use them, for whatever purpose.
separate (Latin_Utils.Dictionary_Package)
package body Noun_Entry_IO is
---------------------------------------------------------------------------
procedure Get (File : in Ada.Text_IO.File_Type; Item : out Noun_Entry)
is
Spacer : Character;
pragma Unreferenced (Spacer);
begin
Decn_Record_IO.Get (File, Item.Decl);
Ada.Text_IO.Get (File, Spacer);
Gender_Type_IO.Get (File, Item.Gender);
Ada.Text_IO.Get (File, Spacer);
Noun_Kind_Type_IO.Get (File, Item.Kind);
end Get;
---------------------------------------------------------------------------
procedure Get (Item : out Noun_Entry)
is
Spacer : Character;
pragma Unreferenced (Spacer);
begin
Decn_Record_IO.Get (Item.Decl);
Ada.Text_IO.Get (Spacer);
Gender_Type_IO.Get (Item.Gender);
Ada.Text_IO.Get (Spacer);
Noun_Kind_Type_IO.Get (Item.Kind);
end Get;
---------------------------------------------------------------------------
procedure Put (File : in Ada.Text_IO.File_Type; Item : in Noun_Entry) is
begin
Decn_Record_IO.Put (File, Item.Decl);
Ada.Text_IO.Put (File, ' ');
Gender_Type_IO.Put (File, Item.Gender);
Ada.Text_IO.Put (File, ' ');
Noun_Kind_Type_IO.Put (File, Item.Kind);
end Put;
---------------------------------------------------------------------------
procedure Put (Item : in Noun_Entry) is
begin
Decn_Record_IO.Put (Item.Decl);
Ada.Text_IO.Put (' ');
Gender_Type_IO.Put (Item.Gender);
Ada.Text_IO.Put (' ');
Noun_Kind_Type_IO.Put (Item.Kind);
end Put;
---------------------------------------------------------------------------
procedure Get
(Source : in String;
Target : out Noun_Entry;
Last : out Integer
)
is
-- Used for computing lower bound of substring
Low : Integer := Source'First - 1;
begin
Decn_Record_IO.Get (Source (Low + 1 .. Source'Last), Target.Decl, Low);
Low := Low + 1;
Gender_Type_IO.Get (Source (Low + 1 .. Source'Last), Target.Gender, Low);
Low := Low + 1;
Noun_Kind_Type_IO.Get
(Source (Low + 1 .. Source'Last), Target.Kind, Last);
end Get;
---------------------------------------------------------------------------
procedure Put (Target : out String; Item : in Noun_Entry)
is
-- These variables are used for computing bounds of substrings
Low : Integer := Target'First - 1;
High : Integer := 0;
begin
-- Put Decn_Record
High := Low + Decn_Record_IO.Default_Width;
Decn_Record_IO.Put (Target (Low + 1 .. High), Item.Decl);
Low := High + 1;
Target (Low) := ' ';
-- Put Gender_Type
High := Low + Gender_Type_IO.Default_Width;
Gender_Type_IO.Put (Target (Low + 1 .. High), Item.Gender);
Low := High + 1;
Target (Low) := ' ';
-- Put Noun_Kind_Type
High := Low + Noun_Kind_Type_IO.Default_Width;
Noun_Kind_Type_IO.Put (Target (Low + 1 .. High), Item.Kind);
-- Fill remainder of string
Target (High + 1 .. Target'Last) := (others => ' ');
end Put;
---------------------------------------------------------------------------
end Noun_Entry_IO;
| 33.4 | 79 | 0.549651 |
595cb4670fc3589a51be3db1bc82970506d4b6fb | 5,952 | ads | Ada | src/sdl-video-renderers.ads | Fabien-Chouteau/sdlada | f08d72e3f5dcec228d68fb5b6681ea831f81ef47 | [
"Zlib"
] | null | null | null | src/sdl-video-renderers.ads | Fabien-Chouteau/sdlada | f08d72e3f5dcec228d68fb5b6681ea831f81ef47 | [
"Zlib"
] | null | null | null | src/sdl-video-renderers.ads | Fabien-Chouteau/sdlada | f08d72e3f5dcec228d68fb5b6681ea831f81ef47 | [
"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.
--------------------------------------------------------------------------------------------------------------------
-- SDL.Video.Renderers
--
-- Renderer.
--------------------------------------------------------------------------------------------------------------------
with Ada.Finalization;
private with SDL.C_Pointers;
with SDL.Video.Palettes;
with SDL.Video.Rectangles;
with SDL.Video.Surfaces;
with SDL.Video.Textures;
with SDL.Video.Windows;
package SDL.Video.Renderers is
-- TODO: Finish this.
Renderer_Error : exception;
type Renderer_Flags is mod 2 ** 32 with
Convention => C;
Default_Renderer_Flags : constant Renderer_Flags := 16#0000_0000#;
Software : constant Renderer_Flags := 16#0000_0001#;
Accelerated : constant Renderer_Flags := 16#0000_0002#;
Present_V_Sync : constant Renderer_Flags := 16#0000_0004#;
Target_Texture : constant Renderer_Flags := 16#0000_0008#;
type Renderer_Flip is (None, Horizontal, Vertical, Both);
-- SDL_RendererInfo
function Total_Drivers return Positive with
Inline => True;
-- SDL_GetRenderDriverInfo
type Renderer is new Ada.Finalization.Limited_Controlled with private;
Null_Renderer : constant Renderer;
overriding
procedure Finalize (Self : in out Renderer);
function Get_Blend_Mode (Self : in Renderer) return Blend_Modes;
procedure Set_Blend_Mode (Self : in out Renderer; Mode : in Blend_Modes);
function Get_Draw_Colour (Self : in Renderer) return SDL.Video.Palettes.Colour;
procedure Set_Draw_Colour (Self : in out Renderer; Colour : in SDL.Video.Palettes.Colour);
-- SDL_GetRendererInfo
procedure Clear (Self : in out Renderer);
procedure Copy
(Self : in out Renderer;
Copy_From : in SDL.Video.Textures.Texture);
procedure Copy
(Self : in out Renderer;
Copy_From : in SDL.Video.Textures.Texture;
From : in SDL.Video.Rectangles.Rectangle;
To : in SDL.Video.Rectangles.Rectangle);
procedure Copy
(Self : in out Renderer;
Copy_From : in SDL.Video.Textures.Texture;
To : in SDL.Video.Rectangles.Rectangle);
procedure Copy
(Self : in out Renderer;
Copy_From : in SDL.Video.Textures.Texture;
From : in SDL.Video.Rectangles.Rectangle;
To : in SDL.Video.Rectangles.Rectangle;
Angle : in Long_Float;
Centre : in SDL.Video.Rectangles.Point;
Flip : in Renderer_Flip);
procedure Draw (Self : in out Renderer; Line : in SDL.Video.Rectangles.Line_Segment);
procedure Draw (Self : in out Renderer; Lines : in SDL.Video.Rectangles.Line_Arrays);
procedure Draw (Self : in out Renderer; Point : in SDL.Video.Rectangles.Point);
procedure Draw (Self : in out Renderer; Points : in SDL.Video.Rectangles.Point_Arrays);
procedure Draw (Self : in out Renderer; Rectangle : in SDL.Video.Rectangles.Rectangle);
procedure Draw (Self : in out Renderer; Rectangles : in SDL.Video.Rectangles.Rectangle_Arrays);
procedure Fill (Self : in out Renderer; Rectangle : in SDL.Video.Rectangles.Rectangle);
procedure Fill (Self : in out Renderer; Rectangles : in SDL.Video.Rectangles.Rectangle_Arrays);
procedure Get_Clip (Self : in Renderer; Rectangle : out SDL.Video.Rectangles.Rectangle);
procedure Set_Clip (Self : in out Renderer; Rectangle : in SDL.Video.Rectangles.Rectangle);
procedure Get_Logical_Size (Self : in Renderer; Size : out SDL.Sizes);
procedure Set_Logical_Size (Self : in out Renderer; Size : in SDL.Sizes);
procedure Get_Scale (Self : in Renderer; X, Y : out Float);
procedure Set_Scale (Self : in out Renderer; X, Y : in Float);
procedure Get_Viewport (Self : in Renderer; Rectangle : out SDL.Video.Rectangles.Rectangle);
procedure Set_Viewport (Self : in out Renderer; Rectangle : in SDL.Video.Rectangles.Rectangle);
procedure Present (Self : in Renderer);
-- SDL_RenderReadPixels
function Supports_Targets (Self : in Renderer) return Boolean;
procedure Set_Target (Self : in out Renderer; Target : in SDL.Video.Textures.Texture);
function Get_Renderer (Window : in SDL.Video.Windows.Window) return Renderer;
private
type Renderer is new Ada.Finalization.Limited_Controlled with
record
Internal : SDL.C_Pointers.Renderer_Pointer := null;
Owns : Boolean := True; -- Does this Window type own the Internal data?
end record;
function Get_Internal_Renderer (Self : in Renderer) return SDL.C_Pointers.Renderer_Pointer with
Export => True,
Convention => Ada;
Null_Renderer : constant Renderer := (Ada.Finalization.Limited_Controlled with
Internal => null,
Owns => True);
end SDL.Video.Renderers;
| 41.048276 | 116 | 0.651546 |
31802233532c216e8e2ed5913808f1b4ab278749 | 6,386 | ads | Ada | src/ado-connections.ads | My-Colaborations/ada-ado | cebf1f9b38c0c259c44935e8bca05a5bff12aace | [
"Apache-2.0"
] | null | null | null | src/ado-connections.ads | My-Colaborations/ada-ado | cebf1f9b38c0c259c44935e8bca05a5bff12aace | [
"Apache-2.0"
] | null | null | null | src/ado-connections.ads | My-Colaborations/ada-ado | cebf1f9b38c0c259c44935e8bca05a5bff12aace | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- ado-connections -- Database connections
-- Copyright (C) 2010, 2011, 2012, 2016, 2017, 2018, 2019 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Finalization;
with ADO.Statements;
with ADO.Schemas;
with ADO.Configs;
with Util.Strings;
with Util.Strings.Vectors;
with Util.Refs;
-- The `ADO.Connections` package represents the database driver that will create
-- database connections and provide the database specific implementation.
package ADO.Connections is
use ADO.Statements;
-- Raised for all errors reported by the database.
Database_Error : exception;
type Driver is abstract tagged limited private;
type Driver_Access is access all Driver'Class;
subtype Driver_Index is ADO.Configs.Driver_Index range 1 .. ADO.Configs.Driver_Index'Last;
-- ------------------------------
-- Database connection implementation
-- ------------------------------
--
type Database_Connection is abstract new Util.Refs.Ref_Entity with record
Ident : String (1 .. 8) := (others => ' ');
end record;
type Database_Connection_Access is access all Database_Connection'Class;
-- Get the database driver index.
function Get_Driver_Index (Database : in Database_Connection) return Driver_Index;
function Create_Statement (Database : in Database_Connection;
Table : in ADO.Schemas.Class_Mapping_Access)
return Query_Statement_Access is abstract;
function Create_Statement (Database : in Database_Connection;
Query : in String)
return Query_Statement_Access is abstract;
-- Create a delete statement.
function Create_Statement (Database : in Database_Connection;
Table : in ADO.Schemas.Class_Mapping_Access)
return Delete_Statement_Access is abstract;
-- Create an insert statement.
function Create_Statement (Database : in Database_Connection;
Table : in ADO.Schemas.Class_Mapping_Access)
return Insert_Statement_Access is abstract;
-- Create an update statement.
function Create_Statement (Database : in Database_Connection;
Table : in ADO.Schemas.Class_Mapping_Access)
return Update_Statement_Access is abstract;
-- Start a transaction.
procedure Begin_Transaction (Database : in out Database_Connection) is abstract;
-- Commit the current transaction.
procedure Commit (Database : in out Database_Connection) is abstract;
-- Rollback the current transaction.
procedure Rollback (Database : in out Database_Connection) is abstract;
-- Load the database schema definition for the current database.
procedure Load_Schema (Database : in Database_Connection;
Schema : out ADO.Schemas.Schema_Definition) is abstract;
-- Get the database driver which manages this connection.
function Get_Driver (Database : in Database_Connection)
return Driver_Access is abstract;
-- Closes the database connection
procedure Close (Database : in out Database_Connection) is abstract;
package Ref is
new Util.Refs.Indefinite_References (Element_Type => Database_Connection'Class,
Element_Access => Database_Connection_Access);
-- ------------------------------
-- The database configuration properties
-- ------------------------------
type Configuration is new ADO.Configs.Configuration with null record;
-- Get the driver index that corresponds to the driver for this database connection string.
function Get_Driver (Config : in Configuration) return Driver_Index;
-- Create a new connection using the configuration parameters.
procedure Create_Connection (Config : in Configuration'Class;
Result : in out Ref.Ref'Class)
with Post => not Result.Is_Null;
-- ------------------------------
-- Database Driver
-- ------------------------------
-- Create a new connection using the configuration parameters.
procedure Create_Connection (D : in out Driver;
Config : in Configuration'Class;
Result : in out Ref.Ref'Class) is abstract
with Post'Class => not Result.Is_Null;
-- Create the database and initialize it with the schema SQL file.
-- The `Admin` parameter describes the database connection with administrator access.
-- The `Config` parameter describes the target database connection.
procedure Create_Database (D : in out Driver;
Admin : in Configs.Configuration'Class;
Config : in Configs.Configuration'Class;
Schema_Path : in String;
Messages : out Util.Strings.Vectors.Vector) is abstract;
-- Get the driver unique index.
function Get_Driver_Index (D : in Driver) return Driver_Index;
-- Get the driver name.
function Get_Driver_Name (D : in Driver) return String;
-- Register a database driver.
procedure Register (Driver : in Driver_Access);
-- Get a database driver given its name.
function Get_Driver (Name : in String) return Driver_Access;
private
type Driver is abstract new Ada.Finalization.Limited_Controlled with record
Name : Util.Strings.Name_Access;
Index : Driver_Index;
end record;
end ADO.Connections;
| 42.013158 | 95 | 0.636079 |
062e7e99266ea0ebd01939714d0539f0e941a2b7 | 2,881 | adb | Ada | src/asf-applications.adb | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 12 | 2015-01-18T23:02:20.000Z | 2022-03-25T15:30:30.000Z | src/asf-applications.adb | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 3 | 2021-01-06T09:44:02.000Z | 2022-02-04T20:20:53.000Z | src/asf-applications.adb | jquorning/ada-asf | ddc697c5dfa4e22c57c6958f4cff27e14d02ce98 | [
"Apache-2.0"
] | 4 | 2016-04-12T05:29:00.000Z | 2022-01-24T23:53:59.000Z | -----------------------------------------------------------------------
-- applications -- Ada Web Application
-- Copyright (C) 2009, 2010, 2013, 2015, 2020 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.Properties.Basic;
package body ASF.Applications is
-- ------------------------------
-- Get the configuration parameter;
-- ------------------------------
function Get (Self : Config;
Param : Config_Param) return String is
begin
return Self.Get (Param.Name.all, Param.Default.all);
end Get;
-- ------------------------------
-- Get the configuration parameter;
-- ------------------------------
function Get (Self : Config;
Param : Config_Param) return Ada.Strings.Unbounded.Unbounded_String is
begin
if Self.Exists (Param.Name.all) then
return Self.Get (Param.Name.all);
else
return Ada.Strings.Unbounded.To_Unbounded_String (Param.Default.all);
end if;
end Get;
-- ------------------------------
-- Get the configuration parameter;
-- ------------------------------
function Get (Self : Config;
Param : Config_Param) return Boolean is
use Util.Properties.Basic.Boolean_Property;
begin
return Get (Self, Param.Name.all, Boolean'Value (Param.Default.all));
end Get;
function Get (Self : Config;
Param : Config_Param) return Integer is
use Util.Properties.Basic.Integer_Property;
begin
return Get (Self, Param.Name.all, Integer'Value (Param.Default.all));
end Get;
-- ------------------------------
-- Create the configuration parameter definition instance.
-- ------------------------------
package body Parameter is
Param : constant Config_Param := ASF.Applications.P '(Name => PARAM_NAME'Access,
Default => PARAM_VALUE'Access);
-- ------------------------------
-- Returns the configuration parameter.
-- ------------------------------
function P return Config_Param is
begin
return Param;
end P;
end Parameter;
end ASF.Applications;
| 36.935897 | 97 | 0.541479 |
5999ce4f4658085a1296f07e12600792bb150ed5 | 3,314 | ads | Ada | tools/ayacc/src/rule_table.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | contrib/ayacc/src/rule_table.ads | faelys/gela-asis | 48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | tools/ayacc/src/rule_table.ads | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | -- Copyright (c) 1990 Regents of the University of California.
-- All rights reserved.
--
-- The primary authors of ayacc were David Taback and Deepak Tolani.
-- Enhancements were made by Ronald J. Schmalz.
--
-- Send requests for ayacc information to [email protected]
-- Send bug reports for ayacc to [email protected]
--
-- Redistribution and use in source and binary forms are permitted
-- provided that the above copyright notice and this paragraph are
-- duplicated in all such forms and that any documentation,
-- advertising materials, and other materials related to such
-- distribution and use acknowledge that the software was developed
-- by the University of California, Irvine. The name of the
-- University may not be used to endorse or promote products derived
-- from this software without specific prior written permission.
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-- Module : rule_table.ada
-- Component of : ayacc
-- Version : 1.2
-- Date : 11/21/86 12:34:14
-- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxrule_table.ada
-- $Header: rule_table.a,v 0.1 86/04/01 15:11:37 ada Exp $
-- $Log: rule_table.a,v $
-- Revision 0.1 86/04/01 15:11:37 ada
-- This version fixes some minor bugs with empty grammars
-- and $$ expansion. It also uses vads5.1b enhancements
-- such as pragma inline.
--
--
-- Revision 0.0 86/02/19 18:40:56 ada
--
-- These files comprise the initial version of Ayacc
-- designed and implemented by David Taback and Deepak Tolani.
-- Ayacc has been compiled and tested under the Verdix Ada compiler
-- version 4.06 on a vax 11/750 running Unix 4.2BSD.
--
with Symbol_Table;
use Symbol_Table;
package Rule_Table is
-- This package is used to store and access the rules
-- of the input grammar.
Max_Rules : constant := 2_000; -- An arbitrary upper bound.
-- if you raise this above 3_000
-- you will also need to make
-- changes in parse_table_body
-- and parse_template_file.
type Rule is range 0..Max_Rules - 1;
function Make_Rule(LHS: Grammar_Symbol) return Rule;
procedure Append_RHS(R: in Rule; RHS: in Grammar_Symbol);
function Get_LHS (R: Rule) return Grammar_Symbol;
function Get_RHS (R: Rule; Position: Positive) return Grammar_Symbol;
function Get_Null_Pos (R: Rule) return Natural;
function Get_Rule_Precedence (R: Rule) return Precedence;
function Length_of(R: Rule) return Natural;
function First_Rule return Rule;
function Last_Rule return Rule;
function Number_of_Rules return Natural;
procedure Set_Rule_Precedence (R: in Rule; Prec: in Precedence);
procedure Set_Null_Pos (R: in Rule; Position: in Natural);
procedure Handle_Nested_Rule (Current_Rule : in out Rule);
--RJS pragma inline(get_lhs, get_null_pos, get_rule_precedence, length_of);
--& pragma inline(first_rule, last_rule);
end Rule_Table;
| 38.988235 | 78 | 0.67592 |
59d506e9ee46b7ca6c53cc65d851e672d85d2a37 | 10,019 | adb | Ada | tools-src/gnu/gcc/gcc/ada/prj.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 80 | 2015-01-02T10:14:04.000Z | 2021-06-07T06:29:49.000Z | tools-src/gnu/gcc/gcc/ada/prj.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 9 | 2015-05-14T11:03:12.000Z | 2018-01-04T07:12:58.000Z | tools-src/gnu/gcc/gcc/ada/prj.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- P R J --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 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. --
-- --
------------------------------------------------------------------------------
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Errout; use Errout;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with Namet; use Namet;
with Prj.Attr;
with Prj.Com;
with Prj.Env;
with Scans; use Scans;
with Scn;
with Stringt; use Stringt;
with Sinfo.CN;
with Snames; use Snames;
package body Prj is
The_Empty_String : String_Id;
subtype Known_Casing is Casing_Type range All_Upper_Case .. Mixed_Case;
The_Casing_Images : array (Known_Casing) of String_Access :=
(All_Lower_Case => new String'("lowercase"),
All_Upper_Case => new String'("UPPERCASE"),
Mixed_Case => new String'("MixedCase"));
Initialized : Boolean := False;
Standard_Dot_Replacement : constant Name_Id :=
First_Name_Id + Character'Pos ('-');
Std_Naming_Data : Naming_Data :=
(Current_Language => No_Name,
Dot_Replacement => Standard_Dot_Replacement,
Dot_Repl_Loc => No_Location,
Casing => All_Lower_Case,
Specification_Suffix => No_Array_Element,
Current_Spec_Suffix => No_Name,
Spec_Suffix_Loc => No_Location,
Implementation_Suffix => No_Array_Element,
Current_Impl_Suffix => No_Name,
Impl_Suffix_Loc => No_Location,
Separate_Suffix => No_Name,
Sep_Suffix_Loc => No_Location,
Specifications => No_Array_Element,
Bodies => No_Array_Element,
Specification_Exceptions => No_Array_Element,
Implementation_Exceptions => No_Array_Element);
Project_Empty : constant Project_Data :=
(First_Referred_By => No_Project,
Name => No_Name,
Path_Name => No_Name,
Location => No_Location,
Directory => No_Name,
Library => False,
Library_Dir => No_Name,
Library_Name => No_Name,
Library_Kind => Static,
Lib_Internal_Name => No_Name,
Lib_Elaboration => False,
Sources_Present => True,
Sources => Nil_String,
Source_Dirs => Nil_String,
Object_Directory => No_Name,
Exec_Directory => No_Name,
Modifies => No_Project,
Modified_By => No_Project,
Naming => Std_Naming_Data,
Decl => No_Declarations,
Imported_Projects => Empty_Project_List,
Include_Path => null,
Objects_Path => null,
Config_File_Name => No_Name,
Config_File_Temp => False,
Config_Checked => False,
Language_Independent_Checked => False,
Checked => False,
Seen => False,
Flag1 => False,
Flag2 => False);
-------------------
-- Empty_Project --
-------------------
function Empty_Project return Project_Data is
begin
Initialize;
return Project_Empty;
end Empty_Project;
------------------
-- Empty_String --
------------------
function Empty_String return String_Id is
begin
return The_Empty_String;
end Empty_String;
------------
-- Expect --
------------
procedure Expect (The_Token : Token_Type; Token_Image : String) is
begin
if Token /= The_Token then
Error_Msg ("""" & Token_Image & """ expected", Token_Ptr);
end if;
end Expect;
--------------------------------
-- For_Every_Project_Imported --
--------------------------------
procedure For_Every_Project_Imported
(By : Project_Id;
With_State : in out State)
is
procedure Check (Project : Project_Id);
-- Check if a project has already been seen.
-- If not seen, mark it as seen, call Action,
-- and check all its imported projects.
procedure Check (Project : Project_Id) is
List : Project_List;
begin
if not Projects.Table (Project).Seen then
Projects.Table (Project).Seen := False;
Action (Project, With_State);
List := Projects.Table (Project).Imported_Projects;
while List /= Empty_Project_List loop
Check (Project_Lists.Table (List).Project);
List := Project_Lists.Table (List).Next;
end loop;
end if;
end Check;
begin
for Project in Projects.First .. Projects.Last loop
Projects.Table (Project).Seen := False;
end loop;
Check (Project => By);
end For_Every_Project_Imported;
-----------
-- Image --
-----------
function Image (Casing : Casing_Type) return String is
begin
return The_Casing_Images (Casing).all;
end Image;
----------------
-- Initialize --
----------------
procedure Initialize is
begin
if not Initialized then
Initialized := True;
Stringt.Initialize;
Start_String;
The_Empty_String := End_String;
Name_Len := 4;
Name_Buffer (1 .. 4) := ".ads";
Default_Ada_Spec_Suffix := Name_Find;
Name_Len := 4;
Name_Buffer (1 .. 4) := ".adb";
Default_Ada_Impl_Suffix := Name_Find;
Std_Naming_Data.Current_Spec_Suffix := Default_Ada_Spec_Suffix;
Std_Naming_Data.Current_Impl_Suffix := Default_Ada_Impl_Suffix;
Std_Naming_Data.Separate_Suffix := Default_Ada_Impl_Suffix;
Prj.Env.Initialize;
Prj.Attr.Initialize;
Set_Name_Table_Byte (Name_Project, Token_Type'Pos (Tok_Project));
Set_Name_Table_Byte (Name_Extends, Token_Type'Pos (Tok_Extends));
Set_Name_Table_Byte (Name_External, Token_Type'Pos (Tok_External));
end if;
end Initialize;
------------
-- Reset --
------------
procedure Reset is
begin
Projects.Init;
Project_Lists.Init;
Packages.Init;
Arrays.Init;
Variable_Elements.Init;
String_Elements.Init;
Prj.Com.Units.Init;
Prj.Com.Units_Htable.Reset;
end Reset;
------------------------
-- Same_Naming_Scheme --
------------------------
function Same_Naming_Scheme
(Left, Right : Naming_Data)
return Boolean
is
begin
return Left.Dot_Replacement = Right.Dot_Replacement
and then Left.Casing = Right.Casing
and then Left.Current_Spec_Suffix = Right.Current_Spec_Suffix
and then Left.Current_Impl_Suffix = Right.Current_Impl_Suffix
and then Left.Separate_Suffix = Right.Separate_Suffix;
end Same_Naming_Scheme;
----------
-- Scan --
----------
procedure Scan is
begin
Scn.Scan;
-- Change operator symbol to literal strings, since that's the way
-- we treat all strings in a project file.
if Token = Tok_Operator_Symbol then
Sinfo.CN.Change_Operator_Symbol_To_String_Literal (Token_Node);
Token := Tok_String_Literal;
end if;
end Scan;
--------------------------
-- Standard_Naming_Data --
--------------------------
function Standard_Naming_Data return Naming_Data is
begin
Initialize;
return Std_Naming_Data;
end Standard_Naming_Data;
-----------
-- Value --
-----------
function Value (Image : String) return Casing_Type is
begin
for Casing in The_Casing_Images'Range loop
if To_Lower (Image) = To_Lower (The_Casing_Images (Casing).all) then
return Casing;
end if;
end loop;
raise Constraint_Error;
end Value;
end Prj;
| 34.66782 | 78 | 0.510231 |
2f49b34349e0abed401f2d7b133596b738a32f00 | 1,852 | ads | Ada | tier-1/xcb/source/thin/xcb-xcb_get_screen_saver_reply_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_get_screen_saver_reply_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_get_screen_saver_reply_t.ads | charlie5/cBound | 741be08197a61ad9c72553e3302f3b669902216d | [
"0BSD"
] | null | null | null | -- This file is generated by SWIG. Please do not modify by hand.
--
with Interfaces;
with swig;
with Interfaces.C;
with Interfaces.C.Pointers;
package xcb.xcb_get_screen_saver_reply_t is
-- Item
--
type Item is record
response_type : aliased Interfaces.Unsigned_8;
pad0 : aliased Interfaces.Unsigned_8;
sequence : aliased Interfaces.Unsigned_16;
length : aliased Interfaces.Unsigned_32;
timeout : aliased Interfaces.Unsigned_16;
interval : aliased Interfaces.Unsigned_16;
prefer_blanking : aliased Interfaces.Unsigned_8;
allow_exposures : aliased Interfaces.Unsigned_8;
pad1 : aliased swig.int8_t_Array (0 .. 17);
end record;
-- Item_Array
--
type Item_Array is
array
(Interfaces.C
.size_t range <>) of aliased xcb.xcb_get_screen_saver_reply_t
.Item;
-- Pointer
--
package C_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_get_screen_saver_reply_t.Item,
Element_Array => xcb.xcb_get_screen_saver_reply_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_get_screen_saver_reply_t
.Pointer;
-- Pointer_Pointer
--
package C_Pointer_Pointers is new Interfaces.C.Pointers
(Index => Interfaces.C.size_t,
Element => xcb.xcb_get_screen_saver_reply_t.Pointer,
Element_Array => xcb.xcb_get_screen_saver_reply_t.Pointer_Array,
Default_Terminator => null);
subtype Pointer_Pointer is C_Pointer_Pointers.Pointer;
end xcb.xcb_get_screen_saver_reply_t;
| 29.870968 | 75 | 0.659827 |
a14484100fe2f7270b124ad9c5ae74f12f4e8d96 | 8,396 | adb | Ada | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-direio.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-direio.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-direio.adb | orb-zhuchen/Orb | 6da2404b949ac28bde786e08bf4debe4a27cd3a0 | [
"CNRI-Python-GPL-Compatible",
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . D I R E C T _ I O --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- This is the generic template for Direct_IO, i.e. the code that gets
-- duplicated. We absolutely minimize this code by either calling routines
-- in System.File_IO (for common file functions), or in System.Direct_IO
-- (for specialized Direct_IO functions)
with Interfaces.C_Streams; use Interfaces.C_Streams;
with System; use System;
with System.CRTL;
with System.File_Control_Block;
with System.File_IO;
with System.Storage_Elements;
with Ada.Unchecked_Conversion;
package body Ada.Direct_IO is
Zeroes : constant System.Storage_Elements.Storage_Array :=
(1 .. System.Storage_Elements.Storage_Offset (Bytes) => 0);
-- Buffer used to fill out partial records
package FCB renames System.File_Control_Block;
package FIO renames System.File_IO;
package DIO renames System.Direct_IO;
SU : constant := System.Storage_Unit;
subtype AP is FCB.AFCB_Ptr;
subtype FP is DIO.File_Type;
subtype DPCount is DIO.Positive_Count;
function To_FCB is new Ada.Unchecked_Conversion (File_Mode, FCB.File_Mode);
function To_DIO is new Ada.Unchecked_Conversion (FCB.File_Mode, File_Mode);
use type System.CRTL.size_t;
-----------
-- Close --
-----------
procedure Close (File : in out File_Type) is
begin
FIO.Close (AP (File)'Unrestricted_Access);
end Close;
------------
-- Create --
------------
procedure Create
(File : in out File_Type;
Mode : File_Mode := Inout_File;
Name : String := "";
Form : String := "")
is
begin
DIO.Create (FP (File), To_FCB (Mode), Name, Form);
File.Bytes := Bytes;
end Create;
------------
-- Delete --
------------
procedure Delete (File : in out File_Type) is
begin
FIO.Delete (AP (File)'Unrestricted_Access);
end Delete;
-----------------
-- End_Of_File --
-----------------
function End_Of_File (File : File_Type) return Boolean is
begin
return DIO.End_Of_File (FP (File));
end End_Of_File;
-----------
-- Flush --
-----------
procedure Flush (File : File_Type) is
begin
FIO.Flush (AP (File));
end Flush;
----------
-- Form --
----------
function Form (File : File_Type) return String is
begin
return FIO.Form (AP (File));
end Form;
-----------
-- Index --
-----------
function Index (File : File_Type) return Positive_Count is
begin
return Positive_Count (DIO.Index (FP (File)));
end Index;
-------------
-- Is_Open --
-------------
function Is_Open (File : File_Type) return Boolean is
begin
return FIO.Is_Open (AP (File));
end Is_Open;
----------
-- Mode --
----------
function Mode (File : File_Type) return File_Mode is
begin
return To_DIO (FIO.Mode (AP (File)));
end Mode;
----------
-- Name --
----------
function Name (File : File_Type) return String is
begin
return FIO.Name (AP (File));
end Name;
----------
-- Open --
----------
procedure Open
(File : in out File_Type;
Mode : File_Mode;
Name : String;
Form : String := "")
is
begin
DIO.Open (FP (File), To_FCB (Mode), Name, Form);
File.Bytes := Bytes;
end Open;
----------
-- Read --
----------
procedure Read
(File : File_Type;
Item : out Element_Type;
From : Positive_Count)
is
begin
-- For a non-constrained variant record type, we read into an
-- intermediate buffer, since we may have the case of discriminated
-- records where a discriminant check is required, and we may need
-- to assign only part of the record buffer originally written.
-- Note: we have to turn warnings on/off because this use of
-- the Constrained attribute is an obsolescent feature.
pragma Warnings (Off);
if not Element_Type'Constrained then
pragma Warnings (On);
declare
Buf : Element_Type;
begin
DIO.Read (FP (File), Buf'Address, Bytes, DPCount (From));
Item := Buf;
end;
-- In the normal case, we can read straight into the buffer
else
DIO.Read (FP (File), Item'Address, Bytes, DPCount (From));
end if;
end Read;
procedure Read (File : File_Type; Item : out Element_Type) is
begin
-- Same processing for unconstrained case as above
-- Note: we have to turn warnings on/off because this use of
-- the Constrained attribute is an obsolescent feature.
pragma Warnings (Off);
if not Element_Type'Constrained then
pragma Warnings (On);
declare
Buf : Element_Type;
begin
DIO.Read (FP (File), Buf'Address, Bytes);
Item := Buf;
end;
else
DIO.Read (FP (File), Item'Address, Bytes);
end if;
end Read;
-----------
-- Reset --
-----------
procedure Reset (File : in out File_Type; Mode : File_Mode) is
begin
DIO.Reset (FP (File), To_FCB (Mode));
end Reset;
procedure Reset (File : in out File_Type) is
begin
DIO.Reset (FP (File));
end Reset;
---------------
-- Set_Index --
---------------
procedure Set_Index (File : File_Type; To : Positive_Count) is
begin
DIO.Set_Index (FP (File), DPCount (To));
end Set_Index;
----------
-- Size --
----------
function Size (File : File_Type) return Count is
begin
return Count (DIO.Size (FP (File)));
end Size;
-----------
-- Write --
-----------
procedure Write
(File : File_Type;
Item : Element_Type;
To : Positive_Count)
is
begin
DIO.Set_Index (FP (File), DPCount (To));
DIO.Write (FP (File), Item'Address, Item'Size / SU, Zeroes);
end Write;
procedure Write (File : File_Type; Item : Element_Type) is
begin
DIO.Write (FP (File), Item'Address, Item'Size / SU, Zeroes);
end Write;
end Ada.Direct_IO;
| 28.951724 | 78 | 0.516317 |
591bdd20bca8a5c836af5abb722dbd2aefbc4b6d | 4,486 | adb | Ada | source/web/tools/wsdl2ada/wsdl-ast-endpoints.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/web/tools/wsdl2ada/wsdl-ast-endpoints.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/web/tools/wsdl2ada/wsdl-ast-endpoints.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 4 | 2017-07-18T07:11:05.000Z | 2020-06-21T03:02:25.000Z | ------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Tools Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012, Vadim Godunko <[email protected]> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with WSDL.Iterators;
with WSDL.Visitors;
package body WSDL.AST.Endpoints is
-----------
-- Enter --
-----------
overriding procedure Enter
(Self : not null access Endpoint_Node;
Visitor : in out WSDL.Visitors.WSDL_Visitor'Class;
Control : in out WSDL.Iterators.Traverse_Control) is
begin
Visitor.Enter_Endpoint (Endpoint_Access (Self), Control);
end Enter;
-----------
-- Leave --
-----------
overriding procedure Leave
(Self : not null access Endpoint_Node;
Visitor : in out WSDL.Visitors.WSDL_Visitor'Class;
Control : in out WSDL.Iterators.Traverse_Control) is
begin
Visitor.Leave_Endpoint (Endpoint_Access (Self), Control);
end Leave;
-----------
-- Visit --
-----------
overriding procedure Visit
(Self : not null access Endpoint_Node;
Iterator : in out WSDL.Iterators.WSDL_Iterator'Class;
Visitor : in out WSDL.Visitors.WSDL_Visitor'Class;
Control : in out WSDL.Iterators.Traverse_Control) is
begin
Iterator.Visit_Endpoint (Visitor, Endpoint_Access (Self), Control);
end Visit;
end WSDL.AST.Endpoints;
| 51.563218 | 78 | 0.45029 |
1d9e5b9fe415e11b3bfd6764447b4daf74809f20 | 141 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/inline6.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/inline6.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/inline6.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 Inline6_Pkg; use Inline6_Pkg;
procedure Inline6 is
begin
Test (0);
end;
| 14.1 | 38 | 0.659574 |
1df6bdc5faec5bda39dcfaa154ace2bfb51b95ff | 3,289 | adb | Ada | tests/nanomsg-test_req_rep.adb | landgraf/nanomsg-ada | 6abe8f517c53b2d4c030c4e2736f883371ef9270 | [
"MIT"
] | 2 | 2015-07-28T19:47:19.000Z | 2020-05-29T06:49:50.000Z | tests/nanomsg-test_req_rep.adb | landgraf/nanomsg-ada | 6abe8f517c53b2d4c030c4e2736f883371ef9270 | [
"MIT"
] | 2 | 2015-11-28T14:02:13.000Z | 2017-10-05T09:21:35.000Z | tests/nanomsg-test_req_rep.adb | landgraf/nanomsg-ada | 6abe8f517c53b2d4c030c4e2736f883371ef9270 | [
"MIT"
] | null | null | null | -- The MIT License (MIT)
-- Copyright (c) 2015 Pavel Zhukov <[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 Nanomsg.Domains;
with Nanomsg.Reqrep;
with Aunit.Assertions;
with Nanomsg.Messages;
package body Nanomsg.Test_Req_Rep is
procedure Run_Test (T : in out TC) is
use Aunit.Assertions;
Address : constant String := "tcp://127.0.0.1:5555";
Request : constant String := "Calculate : 2 + 2";
Reply : constant String := "Answer: 4";
Req_Send : Nanomsg.Messages.Message_T;
Req_Rcv : Nanomsg.Messages.Message_T := Nanomsg.Messages.Empty_Message;
Rep_Send : Nanomsg.Messages.Message_T;
Rep_Rcv : Nanomsg.Messages.Message_T := Nanomsg.Messages.Empty_Message;
begin
Nanomsg.Messages.From_String (Req_Send, Request);
Nanomsg.Messages.From_String (Rep_Send, Reply);
Nanomsg.Socket.Init (T.Socket1, Nanomsg.Domains.Af_Sp, Nanomsg.Reqrep.Nn_REQ);
Nanomsg.Socket.Init (T.Socket2, Nanomsg.Domains.Af_Sp, Nanomsg.Reqrep.Nn_REP);
Assert (Condition => not T.Socket1.Is_Null, Message => "Failed to initialize socket1");
Assert (Condition => not T.Socket2.Is_Null, Message => "Failed to initialize socket2");
Assert (Condition => T.Socket1.Get_Fd /= T.Socket2.Get_Fd,
Message => "Descriptors collision!");
Nanomsg.Socket.Bind (T.Socket2, "tcp://*:5555");
Nanomsg.Socket.Connect (T.Socket1, Address);
T.Socket1.Send (Req_Send);
T.Socket2.Receive (Req_Rcv);
Assert (Condition => Req_Rcv.Text = Request,
Message => "Request damaged in tranmission");
T.Socket2.Send (Rep_Send);
T.Socket1.Receive (Rep_Rcv);
Assert (Condition => Rep_Rcv.Text = Reply,
Message => "Reply damaged in tranmission");
end Run_Test;
function Name (T : TC) return Message_String is
begin
return Aunit.Format ("Test case name : Request/Reply pattern test");
end Name;
procedure Tear_Down (T : in out Tc) is
begin
if T.Socket1.Get_Fd >= 0 then
T.Socket1.Close;
end if;
if T.Socket2.Get_Fd >= 0 then
T.Socket2.Close;
end if;
end Tear_Down;
end Nanomsg.Test_Req_Rep;
| 41.632911 | 93 | 0.688355 |
1db9f082a3cf99f1b53a4c8df35106722082122b | 3,319 | adb | Ada | llvm-gcc-4.2-2.9/gcc/ada/g-signal.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/g-signal.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | llvm-gcc-4.2-2.9/gcc/ada/g-signal.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- G N A T . S I G N A L S --
-- --
-- B o d y --
-- --
-- Copyright (C) 2003-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. --
-- --
------------------------------------------------------------------------------
with System.Interrupts;
package body GNAT.Signals is
package SI renames System.Interrupts;
------------------
-- Block_Signal --
------------------
procedure Block_Signal (Signal : Ada.Interrupts.Interrupt_ID) is
begin
SI.Block_Interrupt (SI.Interrupt_ID (Signal));
end Block_Signal;
----------------
-- Is_Blocked --
----------------
function Is_Blocked (Signal : Ada.Interrupts.Interrupt_ID) return Boolean is
begin
return SI.Is_Blocked (SI.Interrupt_ID (Signal));
end Is_Blocked;
--------------------
-- Unblock_Signal --
--------------------
procedure Unblock_Signal (Signal : Ada.Interrupts.Interrupt_ID) is
begin
SI.Unblock_Interrupt (SI.Interrupt_ID (Signal));
end Unblock_Signal;
end GNAT.Signals;
| 48.808824 | 79 | 0.452847 |
064749dc2a21f569e6f353a0f8eeccb32bc1ed31 | 8,016 | adb | Ada | awa/plugins/awa-countries/tools/import_country.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 81 | 2015-01-18T23:02:30.000Z | 2022-03-19T17:34:57.000Z | awa/plugins/awa-countries/tools/import_country.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 20 | 2015-12-09T19:26:19.000Z | 2022-03-23T14:32:43.000Z | awa/plugins/awa-countries/tools/import_country.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | 16 | 2015-06-29T02:44:06.000Z | 2021-09-23T18:47:50.000Z | -----------------------------------------------------------------------
-- import_country -- Read a Country csv file to update the database
-- Copyright (C) 2011, 2012, 2013 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Text_IO;
with Ada.Command_Line;
with Ada.Strings.Hash;
with Ada.Containers.Indefinite_Hashed_Maps;
with ADO;
with ADO.SQL;
with ADO.Drivers;
with ADO.Sessions;
with ADO.Statements;
with ADO.Sessions.Factory;
with Util.Strings;
with Util.Log.Loggers;
with Util.Serialize.IO.CSV;
with AWA.Countries.Models;
procedure Import_Country is
use Ada.Text_IO;
use Util.Serialize.IO.CSV;
use AWA.Countries.Models;
use Ada.Containers;
use Util.Log;
Log : constant Loggers.Logger := Loggers.Create ("Import_Country");
Country : AWA.Countries.Models.Country_Ref;
DB : ADO.Sessions.Master_Session;
package Country_Map is
new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String,
Element_Type => AWA.Countries.Models.Country_Ref,
Hash => Ada.Strings.Hash,
Equivalent_Keys => "=");
package Neighbors_Map is
new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String,
Element_Type => String,
Hash => Ada.Strings.Hash,
Equivalent_Keys => "=");
Countries : Country_Map.Map;
Neighbors : Neighbors_Map.Map;
type CSV_Parser is new Util.Serialize.IO.CSV.Parser with null record;
overriding
procedure Set_Cell (Parser : in out CSV_Parser;
Value : in String;
Row : in Util.Serialize.IO.CSV.Row_Type;
Column : in Util.Serialize.IO.CSV.Column_Type);
overriding
procedure Set_Cell (Parser : in out CSV_Parser;
Value : in String;
Row : in Util.Serialize.IO.CSV.Row_Type;
Column : in Util.Serialize.IO.CSV.Column_Type) is
pragma Unreferenced (Parser, Row);
Query : ADO.SQL.Query;
Found : Boolean;
begin
case Column is
when 1 =>
-- The ISO code is unique, find the country
Query.Bind_Param (1, Value);
Query.Set_Filter ("iso_code = ?");
Country.Find (DB, Query, Found);
if not Found then
-- Build a new country object
Country := AWA.Countries.Models.Null_Country;
Country.Set_Iso_Code (Value);
end if;
Countries.Insert (Value, Country);
when 2 =>
-- Ada.Text_IO.Put_Line ("ISO3: " & Value);
null;
when 3 =>
-- Ada.Text_IO.Put_Line ("ISON: " & Value);
null;
when 4 =>
-- Ada.Text_IO.Put_Line ("FIPS: " & Value);
null;
-- Country name
when 5 =>
Country.Set_Name (Value);
when 6 =>
-- Ada.Text_IO.Put_Line ("Capital: " & Value);
null;
when 7 | 8 => -- Area, Population
null;
-- Country continent
when 9 =>
Country.Set_Continent (Value);
-- Country TLD
when 10 =>
Country.Set_Tld (Value);
-- Country CurrencyCode
when 11 =>
Country.Set_Currency_Code (Value);
-- Country CurrencyName
when 12 =>
Country.Set_Currency (Value);
when 13 | 14 => -- Phone, postal code format
null;
when 15 =>
-- Ada.Text_IO.Put_Line ("Postal regex: " & Value);
null;
-- Country languages
when 16 =>
Country.Set_Languages (Value);
-- Country unique geonameid
when 17 =>
if Value /= "" then
Country.Set_Geonameid (Integer'Value (Value));
end if;
when 18 =>
Country.Save (DB);
Neighbors.Insert (Country.Get_Iso_Code, Value);
when 19 => -- EquivalentFipsCode
null;
when others =>
null;
end case;
exception
when E : others =>
Log.Error ("Column " & Util.Serialize.IO.CSV.Column_Type'Image (Column)
& " value: " & Value, E, True);
raise;
end Set_Cell;
procedure Build_Neighbors is
Stmt : ADO.Statements.Delete_Statement
:= DB.Create_Statement (AWA.Countries.Models.COUNTRY_NEIGHBOR_TABLE);
Iter : Neighbors_Map.Cursor := Neighbors.First;
Count : Natural := 0;
begin
Stmt.Execute;
while Neighbors_Map.Has_Element (Iter) loop
declare
Name : constant String := Neighbors_Map.Key (Iter);
List : constant String := Neighbors_Map.Element (Iter);
Pos : Natural := List'First;
N : Natural;
begin
Country := Countries.Element (Name);
while Pos < List'Last loop
N := Util.Strings.Index (List, ',', Pos);
if N = 0 then
N := List'Last;
else
N := N - 1;
end if;
if Pos < N and then Countries.Contains (List (Pos .. N)) then
declare
Neighbor : AWA.Countries.Models.Country_Neighbor_Ref;
begin
Neighbor.Set_Neighbor_Of (Country);
Neighbor.Set_Neighbor (Countries.Element (List (Pos .. N)));
Neighbor.Save (DB);
Count := Count + 1;
end;
else
Ada.Text_IO.Put_Line ("Country not found: " & List (Pos .. N));
end if;
Pos := N + 2;
end loop;
end;
Neighbors_Map.Next (Iter);
end loop;
Ada.Text_IO.Put_Line ("Created " & Natural'Image (Count) & " country neighbors");
end Build_Neighbors;
Count : constant Natural := Ada.Command_Line.Argument_Count;
Factory : ADO.Sessions.Factory.Session_Factory;
Parser : CSV_Parser;
begin
if Count /= 2 then
Ada.Text_IO.Put_Line ("Usage: import_country config file");
return;
end if;
declare
Config : constant String := Ada.Command_Line.Argument (1);
begin
Util.Log.Loggers.Initialize (Config);
-- Initialize the database drivers.
ADO.Drivers.Initialize (Config);
-- Initialize the session factory to connect to the
-- database defined by 'ado.database' property.
Factory.Create (ADO.Drivers.Get_Config ("database"));
end;
DB := Factory.Get_Master_Session;
DB.Begin_Transaction;
declare
File : constant String := Ada.Command_Line.Argument (2);
begin
Parser.Set_Comment_Separator ('#');
Parser.Set_Field_Separator (ASCII.HT);
Parser.Parse (File);
Ada.Text_IO.Put_Line ("Found " & Count_Type'Image (Countries.Length) & " countries");
Build_Neighbors;
end;
DB.Commit;
end Import_Country;
| 32.064 | 100 | 0.536427 |
12f972c8586d7860a832ab98a7bb15f9aad78250 | 2,421 | adb | Ada | ada/src/stemwords.adb | pramsey/snowball | 3f8581bf8ac7163dfa42211e878dbd80044eaae8 | [
"BSD-3-Clause"
] | 547 | 2015-01-07T09:34:31.000Z | 2022-03-31T10:13:41.000Z | ada/src/stemwords.adb | pramsey/snowball | 3f8581bf8ac7163dfa42211e878dbd80044eaae8 | [
"BSD-3-Clause"
] | 132 | 2015-01-03T23:14:44.000Z | 2022-03-23T09:06:04.000Z | ada/src/stemwords.adb | pramsey/snowball | 3f8581bf8ac7163dfa42211e878dbd80044eaae8 | [
"BSD-3-Clause"
] | 170 | 2015-01-07T08:24:59.000Z | 2022-03-28T03:43:13.000Z | with Ada.Text_IO;
with Ada.Command_Line;
with Stemmer.Factory;
procedure Stemwords is
use Stemmer.Factory;
function Get_Language (Name : in String) return Language_Type;
function Is_Space (C : in Character) return Boolean;
function Is_Space (C : in Character) return Boolean is
begin
return C = ' ' or C = ASCII.HT;
end Is_Space;
function Get_Language (Name : in String) return Language_Type is
begin
return Language_Type'Value ("L_" & Name);
exception
when Constraint_Error =>
Ada.Text_IO.Put_Line ("Unsupported language: " & Name);
return L_ENGLISH;
end Get_Language;
Count : constant Natural := Ada.Command_Line.Argument_Count;
begin
if Count /= 3 then
Ada.Text_IO.Put_Line ("Usage: stemwords <language> <input file> <output file>");
return;
end if;
declare
Lang : constant Language_Type := Get_Language (Ada.Command_Line.Argument (1));
Input : constant String := Ada.Command_Line.Argument (2);
Output : constant String := Ada.Command_Line.Argument (3);
Src_File : Ada.Text_IO.File_Type;
Dst_File : Ada.Text_IO.File_Type;
begin
Ada.Text_IO.Open (Src_File, Ada.Text_IO.In_File, Input);
Ada.Text_IO.Create (Dst_File, Ada.Text_IO.Out_File, Output);
while not Ada.Text_IO.End_Of_File (Src_File) loop
declare
Line : constant String := Ada.Text_IO.Get_Line (Src_File);
Pos : Positive := Line'First;
Last_Pos : Positive;
Start_Pos : Positive;
begin
while Pos <= Line'Last loop
Last_Pos := Pos;
while Pos <= Line'Last and then Is_Space (Line (Pos)) loop
Pos := Pos + 1;
end loop;
if Last_Pos < Pos then
Ada.Text_IO.Put (Dst_File, Line (Last_Pos .. Pos - 1));
end if;
exit when Pos > Line'Last;
Start_Pos := Pos;
while Pos <= Line'Last and then not Is_Space (Line (Pos)) loop
Pos := Pos + 1;
end loop;
Ada.Text_IO.Put (Dst_File, Stemmer.Factory.Stem (Lang, Line (Start_Pos .. Pos - 1)));
end loop;
Ada.Text_IO.New_Line (Dst_File);
end;
end loop;
Ada.Text_IO.Close (Src_File);
Ada.Text_IO.Close (Dst_File);
end;
end Stemwords;
| 34.098592 | 100 | 0.593143 |
2fcefeafb427c4b6c2f63ecd35d29bf0df39f688 | 161 | adb | Ada | msp430-gcc-tics/msp430-gcc-7.3.1.24-source-full/gcc/gcc/testsuite/gnat.dg/disp1.adb | TUDSSL/TICS | 575ed1b34403b435540bc946c2e6dc5b6bf13072 | [
"MIT"
] | 7 | 2020-05-02T17:34:05.000Z | 2021-10-17T10:15:18.000Z | msp430-gcc-tics/msp430-gcc-7.3.1.24-source-full/gcc/gcc/testsuite/gnat.dg/disp1.adb | TUDSSL/TICS | 575ed1b34403b435540bc946c2e6dc5b6bf13072 | [
"MIT"
] | null | null | null | msp430-gcc-tics/msp430-gcc-7.3.1.24-source-full/gcc/gcc/testsuite/gnat.dg/disp1.adb | TUDSSL/TICS | 575ed1b34403b435540bc946c2e6dc5b6bf13072 | [
"MIT"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do run }
with Disp1_Pkg; use Disp1_Pkg;
procedure Disp1 is
O : DT_I1;
Ptr : access I1'Class;
begin
Ptr := new I1'Class'(I1'Class (O));
end;
| 14.636364 | 38 | 0.614907 |
2f921b77497afbc45da419a96fa7cc49e426aa5c | 3,626 | ads | Ada | source/amf/uml/amf-uml-string_expressions-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-string_expressions-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-string_expressions-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.String_Expressions.Hash is
new AMF.Elements.Generic_Hash (UML_String_Expression, UML_String_Expression_Access);
| 72.52 | 86 | 0.404854 |
2f7968d32044c3ef42192fea464052e3e372eb37 | 990 | ada | Ada | bugs/bug09.ada | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | 3 | 2019-05-11T04:11:33.000Z | 2021-04-18T14:55:43.000Z | bugs/bug09.ada | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | null | null | null | bugs/bug09.ada | daveshields/AdaEd | 57daecfb7ccadfd9aaf13b4d54f51065affbe599 | [
"BSD-4-Clause",
"BSD-3-Clause"
] | 2 | 2016-10-29T22:52:56.000Z | 2021-04-18T14:55:45.000Z | -- call5.ada
--
-- call for an entry of a completed but not yet terminated task
--
WITH text_io;
PROCEDURE main IS
task t1 is
entry e1;
end t1;
task body t1 is
task t2 is -- t2 depends on t1
entry e2;
end t2;
task body t2 is
begin
loop
select
accept e2;
-- or
-- terminate;
end select;
end loop;
end t2;
task t3; -- t3 depends on t1
task body t3 is
begin
loop
t2.e2;
delay 0.5;
end loop;
end t3;
begin
accept e1;
text_io.put_line("--------------------------------> TASK T1 COMPLETED");
-- t1 is completed but not terminated
end t1;
BEGIN
t1.e1;
delay 1.0;
text_io.put_line("T1'TERMINATED = " & boolean'image(T1'terminated));
text_io.put_line("T1'CALLABLE = " & boolean'image(T1'callable));
t1.e1;
text_io.put_line("-------------------------------------> MAIN COMPLETED");
END main;
| 20.204082 | 77 | 0.513131 |
06181689f9742ec66506f7a3b23210e6dcc3e0ce | 4,773 | ads | Ada | src/security.ads | Letractively/ada-security | 027501979a0a154cd5c90d53e601a2ab06336529 | [
"Apache-2.0"
] | null | null | null | src/security.ads | Letractively/ada-security | 027501979a0a154cd5c90d53e601a2ab06336529 | [
"Apache-2.0"
] | null | null | null | src/security.ads | Letractively/ada-security | 027501979a0a154cd5c90d53e601a2ab06336529 | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- security -- Security
-- Copyright (C) 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.
-----------------------------------------------------------------------
-- == Introduction ==
-- The <tt>Security</tt> package provides a security framework that allows
-- an application to use OpenID or OAuth security frameworks. This security
-- framework was first developed within the Ada Server Faces project.
-- This package defines abstractions that are close or similar to Java
-- security package.
--
-- The security framework uses the following abstractions:
--
-- === Policy and policy manager ===
-- The <tt>Policy</tt> defines and implements the set of security rules that specify how to
-- protect the system or resources. The <tt>Policy_Manager</tt> maintains the security policies.
--
-- === Principal ===
-- The <tt>Principal</tt> is the entity that can be authenticated. A principal is obtained
-- after successful authentication of a user or of a system through an authorization process.
-- The OpenID or OAuth authentication processes generate such security principal.
--
-- === Permission ===
-- The <tt>Permission</tt> represents an access to a system or application resource.
-- A permission is checked by using the security policy manager. The policy manager uses a
-- security controller to enforce the permission.
--
-- === Security Context ===
-- The <tt>Security_Context</tt> holds the contextual information that the security controller
-- can use to verify the permission. The security context is associated with a principal and
-- a set of policy context.
--
-- == Overview ==
-- An application will create a security policy manager and register one or several security
-- policies (yellow). The framework defines a simple role based security policy and an URL
-- security policy intended to provide security in web applications. The security policy manager
-- reads some security policy configuration file which allows the security policies to configure
-- and create the security controllers. These controllers will enforce the security according
-- to the application security rules. All these components are built only once when
-- an application starts.
--
-- A user is authenticated through an authentication system which creates a <tt>Principal</tt>
-- instance that identifies the user (green). The security framework provides two authentication
-- systems: OpenID and OAuth.
--
-- [http://ada-security.googlecode.com/svn/wiki/ModelOverview.png]
--
-- When a permission must be enforced, a security context is created and linked to the
-- <tt>Principal</tt> instance (blue). Additional security policy context can be added depending
-- on the application context. To check the permission, the security policy manager is called
-- and it will ask a security controller to verify the permission.
--
-- The framework allows an application to plug its own security policy, its own policy context,
-- its own principal and authentication mechanism.
--
-- @include security-permissions.ads
--
-- == Principal ==
-- A principal is created by using either the [Security_Auth OpenID],
-- the [Security_OAuth OAuth] or another authentication mechanism. The authentication produces
-- an object that must implement the <tt>Principal</tt> interface. For example:
--
-- P : Security.Auth.Principal_Access := Security.Auth.Create_Principal (Auth);
--
-- or
--
-- P : Security.OAuth.Clients.Access_Token_Access := Security.OAuth.Clients.Create_Access_Token
--
-- The principal is then stored in a security context.
--
-- @include security-contexts.ads
--
-- [Security_Policies Security Policies]
-- [Security_Auth OpenID]
-- [Security_OAuth OAuth]
--
package Security is
pragma Preelaborate;
-- ------------------------------
-- Principal
-- ------------------------------
type Principal is limited interface;
type Principal_Access is access all Principal'Class;
-- Get the principal name.
function Get_Name (From : in Principal) return String is abstract;
end Security;
| 45.457143 | 98 | 0.710245 |
fbf7891944cdea443b6378125f2575cbe1787bf5 | 911 | ads | Ada | src/el-methods.ads | jquorning/ada-el | b0b07da093ac6109286404cb54a62a9a93816610 | [
"Apache-2.0"
] | 6 | 2015-01-18T23:04:00.000Z | 2022-01-26T12:34:07.000Z | src/el-methods.ads | jquorning/ada-el | b0b07da093ac6109286404cb54a62a9a93816610 | [
"Apache-2.0"
] | 1 | 2022-01-30T20:46:16.000Z | 2022-01-30T20:46:16.000Z | src/el-methods.ads | jquorning/ada-el | b0b07da093ac6109286404cb54a62a9a93816610 | [
"Apache-2.0"
] | 2 | 2021-01-06T08:27:49.000Z | 2022-01-30T19:33:41.000Z | -----------------------------------------------------------------------
-- el-methods -- Bean methods
-- Copyright (C) 2010, 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.
-----------------------------------------------------------------------
package EL.Methods is
pragma Preelaborate;
end EL.Methods;
| 37.958333 | 76 | 0.615807 |
59aa282f9ca4bf30df869a64335b43f72156f766 | 786 | adb | Ada | Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/fullname_bp/foo.adb | samyvic/OS-Project | 1622bc1641876584964effd91d65ef02e92728e1 | [
"Apache-2.0"
] | null | null | null | Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/fullname_bp/foo.adb | samyvic/OS-Project | 1622bc1641876584964effd91d65ef02e92728e1 | [
"Apache-2.0"
] | null | null | null | Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/fullname_bp/foo.adb | samyvic/OS-Project | 1622bc1641876584964effd91d65ef02e92728e1 | [
"Apache-2.0"
] | null | null | null | -- Copyright 2011-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/>.
with Pck; use Pck;
procedure Foo is
begin
Hello;
There;
end Foo;
| 35.727273 | 73 | 0.732824 |
594132e86f4018de8e86db165154e5d853ae8e2c | 332 | ads | Ada | src/extraction-primitive_subps.ads | TNO/Dependency_Graph_Extractor-Ada | cfcc9132cf181e4db5139c14150f221efa69a6d6 | [
"BSD-3-Clause"
] | 1 | 2022-03-08T13:00:47.000Z | 2022-03-08T13:00:47.000Z | src/tools/Dependency_Graph_Extractor/src/extraction-primitive_subps.ads | selroc/Renaissance-Ada | 39230b34aced4a9d83831be346ca103136c53715 | [
"BSD-3-Clause"
] | null | null | null | src/tools/Dependency_Graph_Extractor/src/extraction-primitive_subps.ads | selroc/Renaissance-Ada | 39230b34aced4a9d83831be346ca103136c53715 | [
"BSD-3-Clause"
] | null | null | null | with Extraction.Graph_Operations;
private package Extraction.Primitive_Subps is
procedure Extract_Nodes
(Node : LAL.Ada_Node'Class;
Graph : Graph_Operations.Graph_Context);
procedure Extract_Edges
(Node : LAL.Ada_Node'Class;
Graph : Graph_Operations.Graph_Context);
end Extraction.Primitive_Subps;
| 23.714286 | 46 | 0.756024 |
12c5608d439947cebd94a29916d92969f4db784e | 187 | ads | Ada | attic/asis/find_all/adam-assist-query-find_all-unit_processing.ads | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | 3 | 2017-04-29T14:25:22.000Z | 2017-09-29T10:15:28.000Z | attic/asis/find_all/adam-assist-query-find_all-unit_processing.ads | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | null | null | null | attic/asis/find_all/adam-assist-query-find_all-unit_processing.ads | charlie5/aIDE | fab406dbcd9b72a4cb215ffebb05166c788d6365 | [
"MIT"
] | null | null | null | with
Asis;
package AdaM.Assist.Query.find_All.unit_Processing
is
procedure Process_Unit (The_Unit : in Asis.Compilation_Unit);
end AdaM.Assist.Query.find_All.unit_Processing;
| 17 | 64 | 0.786096 |
062bbac1e6ca4657d50aac54339c66b8f76ade71 | 9,709 | adb | Ada | examples/dump_tree/def_name.adb | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | examples/dump_tree/def_name.adb | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | null | null | null | examples/dump_tree/def_name.adb | reznikmm/gela | 20134f1d154fb763812e73860c6f4b04f353df79 | [
"MIT"
] | 1 | 2019-10-16T09:05:27.000Z | 2019-10-16T09:05:27.000Z | -- SPDX-FileCopyrightText: 2019-2021 Max Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Ada.Characters.Conversions;
with Ada.Command_Line;
with Ada.Wide_Wide_Text_IO;
with Program.Compilation_Unit_Vectors;
with Program.Compilation_Units;
with Program.Element_Iterators;
with Program.Element_Visitors;
with Program.Elements.Character_Literals;
with Program.Elements.Defining_Identifiers;
with Program.Elements.Defining_Operator_Symbols;
with Program.Elements.Identifiers;
with Program.Elements.Operator_Symbols;
with Program.Elements.Procedure_Body_Declarations;
with Program.Lexical_Elements;
with Program.Plain_Contexts;
with Program.Storage_Pools.Instance;
pragma Unreferenced (Program.Storage_Pools.Instance);
with Errors;
procedure Def_Name is
package Dump_Names is
type Visitor is new Program.Element_Visitors.Element_Visitor with record
Level : Natural := 0;
End_Name : Program.Elements.Element_Access;
end record;
procedure Identifier
(Self : in out Visitor;
Element : not null Program.Elements.Identifiers.Identifier_Access);
procedure Operator_Symbol
(Self : in out Visitor;
Element : not null Program.Elements.Operator_Symbols
.Operator_Symbol_Access);
procedure Character_Literal
(Self : in out Visitor;
Element : not null Program.Elements.Character_Literals
.Character_Literal_Access);
overriding procedure Procedure_Body_Declaration
(Self : in out Visitor;
Element : not null Program.Elements.Procedure_Body_Declarations
.Procedure_Body_Declaration_Access);
end Dump_Names;
procedure Process_Units
(List : Program.Compilation_Unit_Vectors.Compilation_Unit_Vector_Access;
Spec : Boolean);
procedure Process_Unit
(Unit : Program.Compilation_Units.Compilation_Unit_Access;
Spec : Boolean);
procedure Traverse
(Element : Program.Elements.Element_Access;
End_Name : Program.Elements.Element_Access);
procedure Enclosing_Unit_Name
(Element : access Program.Elements.Element'Class;
Position : Wide_Wide_String);
package body Dump_Names is
----------------
-- Identifier --
----------------
procedure Identifier
(Self : in out Visitor;
Element : not null Program.Elements.Identifiers.Identifier_Access)
is
use type Program.Elements.Element_Access;
Text : Program.Elements.Identifiers.Identifier_Text_Access;
Token : Program.Lexical_Elements.Lexical_Element_Access;
Def : Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
Def_Text : Program.Elements.Defining_Identifiers.
Defining_Identifier_Text_Access;
begin
if Self.End_Name = Program.Elements.Element_Access (Element) then
null;
elsif not Element.Is_Part_Of_Implicit then
Text := Element.To_Identifier_Text;
Token := Text.Identifier_Token;
Ada.Wide_Wide_Text_IO.Put (Token.Image);
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put (Token.From_Image);
Ada.Wide_Wide_Text_IO.Put (" => ");
Def := Element.Corresponding_Defining_Identifier;
if not Def.Assigned then
Ada.Wide_Wide_Text_IO.Put_Line ("-");
elsif Def.Is_Part_Of_Implicit then
Ada.Wide_Wide_Text_IO.Put_Line (" implicit");
else
Def_Text := Def.To_Defining_Identifier_Text;
Token := Def_Text.Identifier_Token;
Enclosing_Unit_Name (Def, Token.From_Image);
Ada.Wide_Wide_Text_IO.New_Line;
end if;
end if;
end Identifier;
---------------------
-- Operator_Symbol --
---------------------
procedure Operator_Symbol
(Self : in out Visitor;
Element : not null Program.Elements.Operator_Symbols
.Operator_Symbol_Access)
is
use type Program.Elements.Element_Access;
Text : Program.Elements.Operator_Symbols.Operator_Symbol_Text_Access;
Token : Program.Lexical_Elements.Lexical_Element_Access;
Def : Program.Elements.Defining_Operator_Symbols
.Defining_Operator_Symbol_Access;
Def_Text : Program.Elements.Defining_Operator_Symbols.
Defining_Operator_Symbol_Text_Access;
begin
if Self.End_Name = Program.Elements.Element_Access (Element) then
null;
elsif not Element.Is_Part_Of_Implicit then
Text := Element.To_Operator_Symbol_Text;
Token := Text.Operator_Symbol_Token;
Ada.Wide_Wide_Text_IO.Put (Token.Image);
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put (Token.From_Image);
Ada.Wide_Wide_Text_IO.Put (" => ");
Def := Element.Corresponding_Defining_Operator_Symbol;
if not Def.Assigned then
Ada.Wide_Wide_Text_IO.Put_Line ("-");
elsif Def.Is_Part_Of_Implicit then
Ada.Wide_Wide_Text_IO.Put_Line (" implicit");
else
Def_Text := Def.To_Defining_Operator_Symbol_Text;
Token := Def_Text.Operator_Symbol_Token;
Enclosing_Unit_Name (Def, Token.From_Image);
Ada.Wide_Wide_Text_IO.New_Line;
end if;
end if;
end Operator_Symbol;
-----------------------
-- Character_Literal --
-----------------------
procedure Character_Literal
(Self : in out Visitor;
Element : not null Program.Elements.Character_Literals
.Character_Literal_Access) is
begin
null;
end Character_Literal;
overriding procedure Procedure_Body_Declaration
(Self : in out Visitor;
Element : not null Program.Elements.Procedure_Body_Declarations
.Procedure_Body_Declaration_Access)
is
begin
Self.End_Name := Program.Elements.Element_Access (Element.End_Name);
end Procedure_Body_Declaration;
end Dump_Names;
procedure Process_Unit
(Unit : Program.Compilation_Units.Compilation_Unit_Access;
Spec : Boolean) is
begin
for J in 1 .. Ada.Command_Line.Argument_Count loop
if Unit.Compilation.Text_Name =
Ada.Characters.Conversions.To_Wide_Wide_String
(Ada.Command_Line.Argument (J))
then
if Spec then
Ada.Wide_Wide_Text_IO.Put ("spec");
else
Ada.Wide_Wide_Text_IO.Put ("body");
end if;
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put_Line (Unit.Full_Name);
for Item in Unit.Context_Clause_Elements.Each_Element loop
Traverse (Item.Element, null);
end loop;
Traverse (Unit.Unit_Declaration, null);
exit;
end if;
end loop;
end Process_Unit;
procedure Process_Units
(List : Program.Compilation_Unit_Vectors.Compilation_Unit_Vector_Access;
Spec : Boolean) is
begin
for Cursor in List.Each_Unit loop
Process_Unit (Cursor.Unit, Spec);
end loop;
end Process_Units;
procedure Traverse
(Element : Program.Elements.Element_Access;
End_Name : Program.Elements.Element_Access)
is
Printer : Dump_Names.Visitor;
begin
Printer.End_Name := End_Name;
Element.Visit (Printer);
for Cursor in Element.Each_Child loop
Traverse (Cursor.Element, Printer.End_Name);
end loop;
end Traverse;
Ctx : aliased Program.Plain_Contexts.Context;
procedure Enclosing_Unit_Name
(Element : access Program.Elements.Element'Class;
Position : Wide_Wide_String)
is
use type Program.Elements.Element_Access;
Parent : Program.Elements.Element_Access := Element;
begin
while Parent.Enclosing_Element.Assigned loop
Parent := Parent.Enclosing_Element;
end loop;
for Cursor in Ctx.Library_Unit_Declarations.Each_Unit loop
if Cursor.Unit.Unit_Declaration = Parent then
if Cursor.Unit.Full_Name = "" then
Ada.Wide_Wide_Text_IO.Put ("[Standard]");
return; -- Don't print slocs in Standard (they could change)
else
Ada.Wide_Wide_Text_IO.Put (Cursor.Unit.Full_Name);
exit;
end if;
end if;
end loop;
for Cursor in Ctx.Compilation_Unit_Bodies.Each_Unit loop
if Cursor.Unit.Unit_Declaration = Parent then
Ada.Wide_Wide_Text_IO.Put (Cursor.Unit.Full_Name);
exit;
end if;
end loop;
Ada.Wide_Wide_Text_IO.Put (" ");
Ada.Wide_Wide_Text_IO.Put (Position);
end Enclosing_Unit_Name;
Err : aliased Errors.Error_Listener;
begin
Ctx.Initialize (Err'Unchecked_Access);
for J in 1 .. Ada.Command_Line.Argument_Count loop
declare
Arg : constant Wide_Wide_String :=
Ada.Characters.Conversions.To_Wide_Wide_String
(Ada.Command_Line.Argument (J));
begin
if Arg'Length > 2 and then Arg (1 .. 2) = "-I" then
Ctx.Add_Search_Directory (Arg (3 .. Arg'Last));
else
Ctx.Parse_File (Arg);
end if;
end;
end loop;
Ctx.Complete_Analysis;
Process_Units (Ctx.Library_Unit_Declarations, True);
Process_Units (Ctx.Compilation_Unit_Bodies, False);
end Def_Name;
| 33.02381 | 79 | 0.642291 |
59b05da92feee1e2baa7981a4334f2cd3c12762f | 644 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/noreturn5.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/noreturn5.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/noreturn5.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- { dg-do compile }
with Ada.Characters.Handling; use Ada.Characters.Handling;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with Text_IO; use Text_IO;
package body Noreturn5 is
procedure Proc (Arg_Line : Wide_String; Keep_Going : Boolean) is
begin
Put (To_String (Arg_Line));
if Keep_Going then
raise Constraint_Error;
else
OS_Exit (1);
end if;
exception
when Constraint_Error =>
raise;
when others =>
if Keep_Going then
raise Constraint_Error;
else
OS_Exit (1);
end if;
end;
end Noreturn5;
| 19.515152 | 67 | 0.579193 |
31d24db23676744a5c182596693ca4ec50f6d025 | 295 | ads | Ada | source/encodings-line_endings-strip_cr.ads | Vovanium/Encodings | 6b22e4321a78441d9036f697361cc32e3b7fe006 | [
"MIT"
] | null | null | null | source/encodings-line_endings-strip_cr.ads | Vovanium/Encodings | 6b22e4321a78441d9036f697361cc32e3b7fe006 | [
"MIT"
] | null | null | null | source/encodings-line_endings-strip_cr.ads | Vovanium/Encodings | 6b22e4321a78441d9036f697361cc32e3b7fe006 | [
"MIT"
] | null | null | null | with Ada.Characters.Latin_1;
use Ada.Characters.Latin_1;
with Encodings.Line_Endings.Generic_Strip_CR;
package Encodings.Line_Endings.Strip_CR is new Generic_Strip_CR(
Character_Type => Character,
String_Type => String,
Carriage_Return => CR,
Line_Feed => LF,
Coder_Base => Coder_Base
);
| 24.583333 | 64 | 0.789831 |
31d3b8ad555d78458bfcc5010a7c619290c2fc76 | 4,521 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c87b57a.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/c87b57a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c87b57a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- C87B57A.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.
--*
-- CHECK THAT OVERLOADING RESOLUTION USES THE RULE THAT:
--
-- FOR A DEFAULT GENERIC IN PARAMETER, THE TYPE OF THE INITIALIZATION
-- EXPRESSION MUST MATCH THE PARAMETERS'S EXPLICIT TYPEMARK.
--
-- THE FOUR KINDS OF EXPRESSIONS TESTED HERE ARE:
--
-- (A): A CALL TO AN OVERLOADED FUNCTION.
-- (B): AN OVERLOADED OPERATOR SYMBOL.
-- (C): AN OVERLOADED (INFIX) OPERATOR.
-- (D): AN OVERLOADED ENUMERATION LITERAL.
-- TRH 25 JUNE 82
WITH REPORT; USE REPORT;
PROCEDURE C87B57A IS
TYPE WHOLE IS NEW INTEGER RANGE 0..INTEGER'LAST;
TYPE CITRUS IS (LEMON, LIME, ORANGE);
TYPE HUE IS (RED, ORANGE, YELLOW);
FUNCTION F1 (X, Y : INTEGER) RETURN INTEGER IS
BEGIN
RETURN -1;
END F1;
FUNCTION F1 (X, Y : WHOLE) RETURN WHOLE IS
BEGIN
RETURN 0;
END F1;
FUNCTION F1 (X, Y : INTEGER) RETURN HUE IS
BEGIN
RETURN ORANGE;
END F1;
FUNCTION F1 (X, Y : INTEGER) RETURN CITRUS IS
BEGIN
RETURN ORANGE;
END F1;
BEGIN
TEST ("C87B57A","OVERLOADED INITIALIZATION EXPRESSIONS" &
" IN DEFAULT GENERIC IN PARAMETERS");
DECLARE
FUNCTION "/" (X, Y : INTEGER) RETURN INTEGER
RENAMES F1;
FUNCTION "/" (X, Y : WHOLE) RETURN WHOLE
RENAMES F1;
FUNCTION "/" (X, Y : INTEGER) RETURN HUE
RENAMES F1;
FUNCTION "/" (X, Y : INTEGER) RETURN CITRUS
RENAMES F1;
GENERIC
I1 : INTEGER := F1 (0, 0);
W1 : WHOLE := F1 (0, 0);
C1 : CITRUS := F1 (0, 0);
H1 : HUE := F1 (0, 0);
I2 : INTEGER := "/" (0, 0);
W2 : WHOLE := "/" (0, 0);
C2 : CITRUS := "/" (0, 0);
H2 : HUE := "/" (0, 0);
I3 : INTEGER := (0 / 0);
W3 : WHOLE := (0 / 0);
C3 : CITRUS := (0 / 0);
H3 : HUE := (0 / 0);
C4 : CITRUS := ORANGE;
H4 : HUE := ORANGE;
PACKAGE P IS
END P;
PACKAGE BODY P IS
BEGIN
IF I1 /= -1 OR W1 /= 0 OR
CITRUS'POS (C1) /= 2 OR HUE'POS (H1) /= 1 THEN
FAILED ("(A): RESOLUTION INCORRECT - FUNCTION CALL");
END IF;
IF I2 /= -1 OR W2 /= 0 OR
CITRUS'POS (C2) /= 2 OR HUE'POS (H2) /= 1 THEN
FAILED ("(B): RESOLUTION INCORRECT " &
"- OPERATOR SYMBOL");
END IF;
IF I3 /= -1 OR W3 /= 0 OR
CITRUS'POS (C3) /= 2 OR HUE'POS (H3) /= 1 THEN
FAILED ("(C): RESOLUTION INCORRECT - INFIX OPERATOR");
END IF;
IF CITRUS'POS (C4) /= 2 OR HUE'POS (H4) /= 1 THEN
FAILED ("(D): RESOLUTION INCORRECT - ENUMERATION " &
"LITERAL");
END IF;
END P;
PACKAGE P1 IS NEW P;
BEGIN
NULL;
END;
RESULT;
END C87B57A;
| 33.488889 | 79 | 0.505419 |
1d75f5fc47364c1cac5fc1685b8add42055f47df | 4,614 | ads | Ada | 1-base/math/source/generic/pure/geometry/any_math-any_geometry-any_d2.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 20 | 2015-11-04T09:23:59.000Z | 2022-01-14T10:21:42.000Z | 1-base/math/source/generic/pure/geometry/any_math-any_geometry-any_d2.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 2 | 2015-11-04T17:05:56.000Z | 2015-12-08T03:16:13.000Z | 1-base/math/source/generic/pure/geometry/any_math-any_geometry-any_d2.ads | charlie5/lace | e9b7dc751d500ff3f559617a6fc3089ace9dc134 | [
"0BSD"
] | 1 | 2015-12-07T12:53:52.000Z | 2015-12-07T12:53:52.000Z | with
any_Math.any_Algebra.any_linear;
generic
with package linear_Algebra_2D is new any_Math.any_Algebra.any_linear;
package any_Math.any_Geometry.any_d2
--
-- Provides a namespace and core types for 2D geometry.
--
is
pragma Pure;
---------
-- Sites
--
-- Cartesian
--
subtype Site is Vector_2; -- 2D cartesian coordinates.
type Sites is array (Positive range <>) of Site;
function Distance (From, To : Site) return Real;
-- Polar
--
type polar_Site is -- 2D polar coordinates.
record
Angle : Radians;
Extent : Real;
end record;
function to_Polar (Self : in Site) return polar_Site;
function to_Site (Self : in polar_Site) return Site;
function Angle (Self : in Site) return Radians;
function Extent (Self : in Site) return Real;
---------
-- Lines
--
type Line is private;
function to_Line (Anchor : in Site;
Angle : in Radians) return Line;
function to_Line (Site_1,
Site_2 : in Site) return Line;
function X_of (Self : in Line; Y : in Real) return Real;
function Y_of (Self : in Line; X : in Real) return Real;
function Gradient (Self : in Line) return Real;
----------
-- Bounds
--
type bounding_Box is
record
Lower,
Upper : Site;
end record;
null_Bounds : constant bounding_Box;
function to_bounding_Box (Self : Sites) return bounding_Box;
function "or" (Left : in bounding_Box; Right : in Site) return bounding_Box;
--
-- Returns the bounds expanded to include the vector.
function "or" (Left : in bounding_Box; Right : in bounding_Box) return bounding_Box;
--
-- Returns the bounds expanded to include both Left and Right.
function "+" (Left : in bounding_Box; Right : in Vector_2) return bounding_Box;
--
-- Returns the bounds translated by the vector.
function Extent (Self : in bounding_Box; Dimension : in Index) return Real;
function Image (Self : in bounding_Box) return String;
----------
-- Circles
--
type Circle is
record
Radius : Real;
end record;
function Area (Self : Circle) return Real;
function Perimeter (Self : Circle) return Real;
-----------
-- Polygons
--
type Polygon (Vertex_Count : Positive) is
record
Vertices : Sites (1 .. Vertex_Count);
end record;
function Area (Self : in Polygon) return Real; -- Polygon must be convex.
function Perimeter (Self : in Polygon) return Real;
function Angle (Self : in Polygon; at_Vertex : in Positive) return Radians;
function is_Triangle (Self : in Polygon) return Boolean;
function is_Convex (Self : in Polygon) return Boolean;
function is_Clockwise (Self : in Polygon) return Boolean;
function Centroid (Self : in Polygon) return Site;
procedure center (Self : in out Polygon);
function prior_Vertex (Self : in Polygon; to_Vertex : in Positive) return Site;
function next_Vertex (Self : in Polygon; to_Vertex : in Positive) return Site;
function Image (Self : in Polygon) return String;
------------
-- Triangles
--
type Triangle is
record
Vertices : Sites (1 .. 3);
end record;
function Area (Self : in Triangle) return Real;
function Perimeter (Self : in Triangle) return Real;
function Angle (Self : in Triangle; at_Vertex : in Positive) return Radians;
function prior_Vertex (Self : in Triangle; to_Vertex : in Positive) return Site;
function next_Vertex (Self : in Triangle; to_Vertex : in Positive) return Site;
Degenerate,
Colinear : exception;
private
type Line_Format is (anchored_Gradient, two_Points);
type Line (Kind : Line_Format := Line_Format'First) is
record
case Kind is
when anchored_Gradient =>
Anchor : Site;
Gradient : Real;
when two_Points =>
Sites : any_d2.Sites (1 .. 2);
end case;
end record;
null_Bounds : constant bounding_Box := (lower => (Real'Last, Real'Last),
upper => (Real'First, Real'First));
end any_Math.any_Geometry.any_d2;
| 25.491713 | 93 | 0.580191 |
2fc426c9ee45121b909ac7e57358721f75d6b2ee | 4,144 | ads | Ada | source/amf/uml/amf-uml-destruction_occurrence_specifications.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-destruction_occurrence_specifications.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-destruction_occurrence_specifications.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 destruction event models the destruction of an object.
------------------------------------------------------------------------------
with AMF.UML.Message_Occurrence_Specifications;
package AMF.UML.Destruction_Occurrence_Specifications is
pragma Preelaborate;
type UML_Destruction_Occurrence_Specification is limited interface
and AMF.UML.Message_Occurrence_Specifications.UML_Message_Occurrence_Specification;
type UML_Destruction_Occurrence_Specification_Access is
access all UML_Destruction_Occurrence_Specification'Class;
for UML_Destruction_Occurrence_Specification_Access'Storage_Size use 0;
end AMF.UML.Destruction_Occurrence_Specifications;
| 66.83871 | 88 | 0.445705 |
296a34bf69c2c224731470f9dbf5f10d12cf5b1b | 45,183 | adb | Ada | boards/ip_colordetect_test/colordetect/colordetect/.autopilot/db/erode_0_0_2160_3840_0_3_3_1_1_25.adb | Kgfu/PYNQ_HelloWorld | a5197130e7d4a5e7f382c3963349c1c0bd213213 | [
"BSD-3-Clause"
] | null | null | null | boards/ip_colordetect_test/colordetect/colordetect/.autopilot/db/erode_0_0_2160_3840_0_3_3_1_1_25.adb | Kgfu/PYNQ_HelloWorld | a5197130e7d4a5e7f382c3963349c1c0bd213213 | [
"BSD-3-Clause"
] | null | null | null | boards/ip_colordetect_test/colordetect/colordetect/.autopilot/db/erode_0_0_2160_3840_0_3_3_1_1_25.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/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>erode_0_0_2160_3840_0_3_3_1_1_25</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>4</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>imgHelper1_4101</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>4227858608</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</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>imgHelper2_4102</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>3409914016</coreId>
</Obj>
<bitwidth>8</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="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>p_src_rows</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>3411136752</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="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>p_src_cols</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName>FIFO_SRL</coreName>
<coreId>49</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>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>p_src_rows_read</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>344</lineNumber>
<contextFuncName>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</contextFuncName>
<contextNormFuncName>erode_0_0_2160_3840_0_3_3_1_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>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</first>
<second>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</second>
</first>
<second>344</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<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>19</item>
<item>20</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.36</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>p_src_cols_read</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>345</lineNumber>
<contextFuncName>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</contextFuncName>
<contextNormFuncName>erode_0_0_2160_3840_0_3_3_1_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>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</first>
<second>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</second>
</first>
<second>345</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<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>21</item>
<item>22</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.36</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>trunc_ln344</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>344</lineNumber>
<contextFuncName>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</contextFuncName>
<contextNormFuncName>erode_0_0_2160_3840_0_3_3_1_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>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</first>
<second>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</second>
</first>
<second>344</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln344_fu_52_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>113</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>23</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>3</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>trunc_ln345</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>345</lineNumber>
<contextFuncName>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</contextFuncName>
<contextNormFuncName>erode_0_0_2160_3840_0_3_3_1_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>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</first>
<second>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</second>
</first>
<second>345</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln345_fu_57_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>113</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>24</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>4</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>_ln365</name>
<fileName>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>365</lineNumber>
<contextFuncName>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</contextFuncName>
<contextNormFuncName>erode_0_0_2160_3840_0_3_3_1_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>/home/willychiang/Desktop/PYNQ-HelloWorld/boards/ip/vitis_lib/vision/L1/include/imgproc/xf_erosion.hpp</first>
<second>erode&lt;0, 0, 2160, 3840, 0, 3, 3, 1, 1&gt;</second>
</first>
<second>365</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_xferode_2160_3840_1_0_1_0_3841_3_3_s_fu_42</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>113</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</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>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>_ln0</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>113</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>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_11">
<Value>
<Obj>
<type>2</type>
<id>25</id>
<name>xferode_2160_3840_1_0_1_0_3841_3_3_s</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>81</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:xferode<2160, 3840, 1, 0, 1, 0, 3841, 3, 3>></content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_12">
<Obj>
<type>3</type>
<id>17</id>
<name>erode<0, 0, 2160, 3840, 0, 3, 3, 1, 1>25</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<coreId>1768189039</coreId>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_13">
<id>20</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_14">
<id>22</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_15">
<id>23</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_16">
<id>24</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_17">
<id>26</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_18">
<id>27</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_19">
<id>28</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_20">
<id>29</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_21">
<id>30</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_22">
<mId>1</mId>
<mTag>erode<0, 0, 2160, 3840, 0, 3, 3, 1, 1>25</mTag>
<mNormTag>erode_0_0_2160_3840_0_3_3_1_1_25</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>17</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>13</mMinLatency>
<mMaxLatency>8319373</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_23">
<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="_24">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_25">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_26">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_27">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_28">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_29">
<id>15</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_30">
<id>2</id>
<operations>
<count>8</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_31">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_32">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_33">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_34">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_35">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_36">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_37">
<id>15</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_38">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_39">
<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>
</transitions>
</fsm>
<res class_id="34" tracking_level="1" version="0" object_id="_40">
<dp_component_resource class_id="35" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="0" version="0">
<first>grp_xferode_2160_3840_1_0_1_0_3841_3_3_s_fu_42 (xferode_2160_3840_1_0_1_0_3841_3_3_s)</first>
<second class_id="37" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>BRAM</first>
<second>6</second>
</item>
<item>
<first>FF</first>
<second>611</second>
</item>
<item>
<first>LUT</first>
<second>819</second>
</item>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>1</count>
<item_version>0</item_version>
<item>
<first>ap_block_state1 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
</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>6</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>3</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>3</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>ap_done</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper1_4101_read</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>imgHelper2_4102_write</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>p_src_cols_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>p_src_rows_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>5</count>
<item_version>0</item_version>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>2</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_done_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>grp_xferode_2160_3840_1_0_1_0_3841_3_3_s_fu_42_ap_start_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>trunc_ln344_reg_62</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>trunc_ln345_reg_67</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>1</count>
<item_version>0</item_version>
<item>
<first>grp_xferode_2160_3840_1_0_1_0_3841_3_3_s_fu_42</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_dsp_resource>
<dp_component_map class_id="39" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>grp_xferode_2160_3840_1_0_1_0_3841_3_3_s_fu_42 (xferode_2160_3840_1_0_1_0_3841_3_3_s)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</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="41" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>11</first>
<second class_id="43" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</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>15</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="44" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="45" tracking_level="0" version="0">
<first>17</first>
<second class_id="46" tracking_level="0" version="0">
<first>0</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="47" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="48" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="49" tracking_level="0" version="0">
<first>30</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>42</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>15</item>
<item>15</item>
</second>
</item>
<item>
<first>52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>57</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="51" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>trunc_ln344_fu_52</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>trunc_ln345_fu_57</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>1</count>
<item_version>0</item_version>
<item>
<first>grp_xferode_2160_3840_1_0_1_0_3841_3_3_s_fu_42</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>15</item>
<item>15</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>2</count>
<item_version>0</item_version>
<item>
<first>p_src_cols_read_read_fu_36</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>p_src_rows_read_read_fu_30</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</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="53" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>2</count>
<item_version>0</item_version>
<item>
<first>62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>67</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>2</count>
<item_version>0</item_version>
<item>
<first>trunc_ln344_reg_62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>trunc_ln345_reg_67</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
</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="54" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>imgHelper1_4101</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</second>
</item>
<item>
<first>imgHelper2_4102</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</second>
</item>
<item>
<first>p_src_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>12</item>
</second>
</item>
</second>
</item>
<item>
<first>p_src_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>11</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core>
<count>4</count>
<item_version>0</item_version>
<item>
<first>1</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>2</first>
<second>
<first>1151</first>
<second>10</second>
</second>
</item>
<item>
<first>3</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>4</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
</port2core>
<node2core>
<count>3</count>
<item_version>0</item_version>
<item>
<first>11</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1150</first>
<second>10</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>-1</first>
<second>-1</second>
</second>
</item>
</node2core>
</syndb>
</boost_serialization>
| 32.250535 | 141 | 0.477082 |
2fd76cd3b7a0f33fee1b93fdc438b460d9278f50 | 94,021 | adb | Ada | test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d_b2b/collateral/conv2d_b2b/hls_target/.autopilot/db/call_Loop_LB2D_shift.sched.adb | David-Durst/embeddedHaskellAetherling | 34c5403e07433e572170699f3bd69c5b5c3eff2d | [
"BSD-3-Clause"
] | 20 | 2019-03-12T20:12:31.000Z | 2022-02-07T04:23:22.000Z | test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d_b2b/collateral/conv2d_b2b/hls_target/.autopilot/db/call_Loop_LB2D_shift.sched.adb | David-Durst/embeddedHaskellAetherling | 34c5403e07433e572170699f3bd69c5b5c3eff2d | [
"BSD-3-Clause"
] | 30 | 2019-07-22T19:25:42.000Z | 2020-06-18T17:58:43.000Z | test/halide_data/pldi_camera_ready/big_apps_32_real/conv2d_b2b/collateral/conv2d_b2b/hls_target/.autopilot/db/call_Loop_LB2D_shift.sched.adb | David-Durst/embeddedHaskellAetherling | 34c5403e07433e572170699f3bd69c5b5c3eff2d | [
"BSD-3-Clause"
] | 3 | 2019-10-14T18:07:26.000Z | 2022-01-20T14:36:17.000Z | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<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>call_Loop_LB2D_shift</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>slice_stream_V_value_V</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>in_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<direction>0</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>out_stream_V_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>out_stream.V.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>288</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>36</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>3</id>
<name>buffer_1_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buffer[1].value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>buffer_0_value_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>buffer[0].value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>9</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>1</count>
<item_version>0</item_version>
<item>64</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>n1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>n1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>65</item>
<item>66</item>
<item>68</item>
<item>69</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>tmp_s</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</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>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</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>70</item>
<item>72</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>n1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>n1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>75</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</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>76</item>
<item>77</item>
<item>78</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>92</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>i_0_i_i</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>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>80</item>
<item>81</item>
<item>82</item>
<item>83</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>tmp_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>84</item>
<item>86</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>i</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>87</item>
<item>88</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>89</item>
<item>90</item>
<item>91</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_value_V_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>40</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>100</item>
<item>101</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>tmp</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>103</item>
<item>104</item>
<item>105</item>
<item>107</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>icmp</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>108</item>
<item>110</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>42</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>111</item>
<item>112</item>
<item>113</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>buffer_1_value_V_lo_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>buffer_0_value_V_lo</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>tmp_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>116</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_3</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>117</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>tmp_4</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>118</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>p_Result_31_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>120</item>
<item>121</item>
<item>123</item>
<item>125</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>p_Result_31_1_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>126</item>
<item>127</item>
<item>128</item>
<item>129</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>p_Result_31_1_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>p_Result_31_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>134</item>
<item>135</item>
<item>137</item>
<item>139</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>p_Result_31_2_1</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>p_Result_31_2_2</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_value_V</name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>50</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.value.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>288</bitwidth>
</Value>
<oprand_edges>
<count>10</count>
<item_version>0</item_version>
<item>149</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>52</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>52</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>160</item>
<item>161</item>
<item>162</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>53</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>53</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>163</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>buffer_1_value_V_lo</name>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>37</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>96</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name></name>
<fileName>../../../lib_files/Stencil.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>37</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</second>
</item>
<item>
<first>
<first>../../../lib_files/Stencil.h</first>
<second>operator=</second>
</first>
<second>75</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>94</item>
<item>95</item>
<item>279</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>40</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>96</item>
<item>97</item>
<item>277</item>
<item>278</item>
</oprand_edges>
<opcode>store</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>32</second>
</item>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>linebuffer_1D&lt;1920, 3, 1, 1, 1, 3, unsigned int&gt;</second>
</first>
<second>143</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>98</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name></name>
<fileName>../../../lib_files/Linebuffer.h</fileName>
<fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</fileDirectory>
<lineNumber>216</lineNumber>
<contextFuncName>call</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_32_real/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>../../../lib_files/Linebuffer.h</first>
<second>call</second>
</first>
<second>216</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>79</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>59</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>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_39">
<Value>
<Obj>
<type>2</type>
<id>61</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="_40">
<Value>
<Obj>
<type>2</type>
<id>67</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_41">
<Value>
<Obj>
<type>2</type>
<id>71</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1078</content>
</item>
<item class_id_reference="16" object_id="_42">
<Value>
<Obj>
<type>2</type>
<id>74</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_43">
<Value>
<Obj>
<type>2</type>
<id>85</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1920</content>
</item>
<item class_id_reference="16" object_id="_44">
<Value>
<Obj>
<type>2</type>
<id>106</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>10</content>
</item>
<item class_id_reference="16" object_id="_45">
<Value>
<Obj>
<type>2</type>
<id>109</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>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_46">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_47">
<Value>
<Obj>
<type>2</type>
<id>124</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="_48">
<Value>
<Obj>
<type>2</type>
<id>136</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>64</content>
</item>
<item class_id_reference="16" object_id="_49">
<Value>
<Obj>
<type>2</type>
<id>138</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>95</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_50">
<Obj>
<type>3</type>
<id>10</id>
<name>newFuncRoot</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>3</item>
<item>4</item>
<item>9</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_51">
<Obj>
<type>3</type>
<id>16</id>
<name>.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>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="_52">
<Obj>
<type>3</type>
<id>20</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>19</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_53">
<Obj>
<type>3</type>
<id>26</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>21</item>
<item>22</item>
<item>24</item>
<item>25</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_54">
<Obj>
<type>3</type>
<id>34</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>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_55">
<Obj>
<type>3</type>
<id>49</id>
<name>.preheader.i.i.preheader.0</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>14</count>
<item_version>0</item_version>
<item>35</item>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_56">
<Obj>
<type>3</type>
<id>55</id>
<name>._crit_edge.i.i</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>52</item>
<item>53</item>
<item>54</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_57">
<Obj>
<type>3</type>
<id>58</id>
<name>linebuffer_1D<1920ul, 3ul, 1ul, 1ul, 1ul, 3ul, unsigned int>.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>57</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_58">
<Obj>
<type>3</type>
<id>60</id>
<name>.exitStub</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>59</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>91</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_59">
<id>62</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>3</sink_obj>
</item>
<item class_id_reference="20" object_id="_60">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>4</sink_obj>
</item>
<item class_id_reference="20" object_id="_61">
<id>64</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_62">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_63">
<id>66</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_64">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_65">
<id>69</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_66">
<id>70</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_67">
<id>72</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_68">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_69">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_70">
<id>76</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_71">
<id>77</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_72">
<id>78</id>
<edge_type>2</edge_type>
<source_obj>60</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_73">
<id>79</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_74">
<id>80</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_75">
<id>81</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_76">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_77">
<id>83</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_78">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_79">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_80">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_81">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_82">
<id>89</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_83">
<id>90</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_84">
<id>91</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_85">
<id>92</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_86">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_87">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_88">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_89">
<id>96</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_90">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_91">
<id>98</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_92">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_93">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_94">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_95">
<id>107</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_96">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_97">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_98">
<id>111</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_99">
<id>112</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_100">
<id>113</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_101">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_102">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_103">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_104">
<id>117</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_105">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_106">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_107">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_108">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_109">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_110">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_111">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_112">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_113">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_114">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_115">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_116">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_117">
<id>139</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_118">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_119">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_120">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_121">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_122">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_123">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_124">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_125">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_126">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_127">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_128">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_129">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_130">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_131">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_132">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_133">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_134">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_135">
<id>163</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_136">
<id>266</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_137">
<id>267</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_138">
<id>268</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_139">
<id>269</id>
<edge_type>2</edge_type>
<source_obj>20</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_140">
<id>270</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_141">
<id>271</id>
<edge_type>2</edge_type>
<source_obj>26</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>272</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>273</id>
<edge_type>2</edge_type>
<source_obj>34</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>274</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>275</id>
<edge_type>2</edge_type>
<source_obj>55</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>276</id>
<edge_type>2</edge_type>
<source_obj>58</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>277</id>
<edge_type>4</edge_type>
<source_obj>50</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>278</id>
<edge_type>4</edge_type>
<source_obj>35</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>279</id>
<edge_type>4</edge_type>
<source_obj>36</source_obj>
<sink_obj>52</sink_obj>
</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="_150">
<mId>1</mId>
<mTag>call_Loop_LB2D_shift</mTag>
<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>2072995</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_151">
<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>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_152">
<mId>3</mId>
<mTag>LB2D_shift</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>1078</mMinTripCount>
<mMaxTripCount>1078</mMaxTripCount>
<mMinLatency>2072994</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_153">
<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>20</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="_154">
<mId>5</mId>
<mTag>LB1D_shiftreg</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>26</item>
<item>34</item>
<item>49</item>
<item>55</item>
</basic_blocks>
<mII>1</mII>
<mDepth>2</mDepth>
<mMinTripCount>1920</mMinTripCount>
<mMaxTripCount>1920</mMaxTripCount>
<mMinLatency>1920</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_155">
<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>58</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="_156">
<mId>7</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>60</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>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>36</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>3</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>4</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>21</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>32</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>35</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</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>43</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>3</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="29" tracking_level="0" version="0">
<count>9</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>20</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>2</first>
<second>3</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>3</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="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_157">
<region_name>LB1D_shiftreg</region_name>
<basic_blocks>
<count>4</count>
<item_version>0</item_version>
<item>26</item>
<item>34</item>
<item>49</item>
<item>55</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="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>
| 27.924265 | 138 | 0.591708 |
598db3fe80784aed82b7d36e1adc505766a95833 | 8,745 | adb | Ada | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-stbuun.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-stbuun.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-stbuun.adb | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- ADA.STRINGS.TEXT_BUFFERS.UNBOUNDED --
-- --
-- B o d y --
-- --
-- Copyright (C) 2020-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. --
-- --
------------------------------------------------------------------------------
with Ada.Unchecked_Deallocation;
with Ada.Strings.UTF_Encoding.Conversions;
with Ada.Strings.UTF_Encoding.Strings;
with Ada.Strings.UTF_Encoding.Wide_Strings;
with Ada.Strings.UTF_Encoding.Wide_Wide_Strings;
package body Ada.Strings.Text_Buffers.Unbounded is
function Get (Buffer : in out Buffer_Type) return String is
-- If all characters are 7 bits, we don't need to decode;
-- this is an optimization.
-- Otherwise, if all are 8 bits, we need to decode to get Latin-1.
-- Otherwise, the result is implementation defined, so we return a
-- String encoded as UTF-8. Note that the RM says "if any character
-- in the sequence is not defined in Character, the result is
-- implementation-defined", so we are not obliged to decode ANY
-- Latin-1 characters if ANY character is bigger than 8 bits.
begin
if Buffer.All_8_Bits and not Buffer.All_7_Bits then
return UTF_Encoding.Strings.Decode (Get_UTF_8 (Buffer));
else
return Get_UTF_8 (Buffer);
end if;
end Get;
function Wide_Get (Buffer : in out Buffer_Type) return Wide_String is
begin
return UTF_Encoding.Wide_Strings.Decode (Get_UTF_8 (Buffer));
end Wide_Get;
function Wide_Wide_Get (Buffer : in out Buffer_Type) return Wide_Wide_String
is
begin
return UTF_Encoding.Wide_Wide_Strings.Decode (Get_UTF_8 (Buffer));
end Wide_Wide_Get;
function Get_UTF_8
(Buffer : in out Buffer_Type) return UTF_Encoding.UTF_8_String
is
begin
return Result : UTF_Encoding.UTF_8_String (1 .. Buffer.UTF_8_Length) do
declare
Target_First : Positive := 1;
Ptr : Chunk_Access := Buffer.List.First_Chunk'Unchecked_Access;
Target_Last : Positive;
begin
while Ptr /= null loop
Target_Last := Target_First + Ptr.Chars'Length - 1;
if Target_Last <= Result'Last then
-- all of chunk is assigned to Result
Result (Target_First .. Target_Last) := Ptr.Chars;
Target_First := Target_First + Ptr.Chars'Length;
else
-- only part of (last) chunk is assigned to Result
declare
Final_Target : UTF_Encoding.UTF_8_String renames
Result (Target_First .. Result'Last);
begin
Final_Target := Ptr.Chars (1 .. Final_Target'Length);
end;
pragma Assert (Ptr.Next = null);
Target_First := Integer'Last;
end if;
Ptr := Ptr.Next;
end loop;
end;
-- Reset buffer to default initial value.
declare
Defaulted : Buffer_Type;
-- If this aggregate becomes illegal due to new field, don't
-- forget to add corresponding assignment statement below.
Dummy : array (1 .. 0) of Buffer_Type :=
(others =>
(Indentation => <>, Indent_Pending => <>, UTF_8_Length => <>,
UTF_8_Column => <>, All_7_Bits => <>, All_8_Bits => <>,
List => <>, Last_Used => <>));
begin
Buffer.Indentation := Defaulted.Indentation;
Buffer.Indent_Pending := Defaulted.Indent_Pending;
Buffer.UTF_8_Length := Defaulted.UTF_8_Length;
Buffer.UTF_8_Column := Defaulted.UTF_8_Column;
Buffer.All_7_Bits := Defaulted.All_7_Bits;
Buffer.All_8_Bits := Defaulted.All_8_Bits;
Buffer.Last_Used := Defaulted.Last_Used;
Finalize (Buffer.List); -- free any allocated chunks
end;
end return;
end Get_UTF_8;
function Wide_Get_UTF_16
(Buffer : in out Buffer_Type) return UTF_Encoding.UTF_16_Wide_String
is
begin
return
UTF_Encoding.Conversions.Convert
(Get_UTF_8 (Buffer), Input_Scheme => UTF_Encoding.UTF_8);
end Wide_Get_UTF_16;
procedure Put_UTF_8_Implementation
(Buffer : in out Root_Buffer_Type'Class;
Item : UTF_Encoding.UTF_8_String)
is
procedure Buffer_Type_Implementation (Buffer : in out Buffer_Type);
-- View the passed-in Buffer parameter as being of type Buffer_Type,
-- not of type Root_Buffer_Type'Class.
procedure Buffer_Type_Implementation (Buffer : in out Buffer_Type) is
begin
for Char of Item loop
Buffer.All_7_Bits := @ and then Character'Pos (Char) < 128;
if Buffer.Last_Used = Buffer.List.Current_Chunk.Length then
-- Current chunk is full; allocate a new one with doubled size
declare
Cc : Chunk renames Buffer.List.Current_Chunk.all;
Max : constant Positive := Integer'Last / 2;
Length : constant Natural :=
Integer'Min (Max, 2 * Cc.Length);
begin
pragma Assert (Cc.Next = null);
Cc.Next := new Chunk (Length => Length);
Buffer.List.Current_Chunk := Cc.Next;
Buffer.Last_Used := 0;
end;
end if;
Buffer.UTF_8_Length := @ + 1;
Buffer.UTF_8_Column := @ + 1;
Buffer.Last_Used := @ + 1;
Buffer.List.Current_Chunk.Chars (Buffer.Last_Used) := Char;
end loop;
end Buffer_Type_Implementation;
begin
Buffer_Type_Implementation (Buffer_Type (Buffer));
end Put_UTF_8_Implementation;
procedure Initialize (List : in out Managed_Chunk_List) is
begin
List.Current_Chunk := List.First_Chunk'Unchecked_Access;
end Initialize;
procedure Finalize (List : in out Managed_Chunk_List) is
procedure Free is new Ada.Unchecked_Deallocation (Chunk, Chunk_Access);
Ptr : Chunk_Access := List.First_Chunk.Next;
begin
while Ptr /= null loop
declare
Old_Ptr : Chunk_Access := Ptr;
begin
Ptr := Ptr.Next;
Free (Old_Ptr);
end;
end loop;
List.First_Chunk.Next := null;
Initialize (List);
end Finalize;
end Ada.Strings.Text_Buffers.Unbounded;
| 45.07732 | 79 | 0.514237 |
4d668aa8e2f0d984f00223e0a4ecf04c2473e47d | 3,586 | ads | Ada | bb-runtimes/src/s-boapar__tms570ls31.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/src/s-boapar__tms570ls31.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/src/s-boapar__tms570ls31.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . B O A R D _ P A R A M E T E R S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1999-2002 Universidad Politecnica de Madrid --
-- Copyright (C) 2003-2005 The European Space Agency --
-- Copyright (C) 2003-2020, 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. --
-- --
------------------------------------------------------------------------------
-- This package defines basic parameters used by the non tasking part of
-- the runtime.
-- This is the TMS570 (ARMv7) version of this package
package System.Board_Parameters is
pragma No_Elaboration_Code_All;
pragma Pure;
--------------------
-- Hardware clock --
--------------------
-- see system_tms570ls31.c for clock setup
Clock_Frequency : constant := 180_000_000;
-- GCLK clock Hz: used by the Cortex-R cores
HCLK_Frequency : constant := Clock_Frequency;
-- Main clock used by the high-speed system modules
-- synchronous with system clock
VCLK_Frequency : constant := HCLK_Frequency / 2;
-- used by some system modules, peripheral modules accessed via the
-- Peripheral Central Resource controller
-- VCLK: 90 MHz
end System.Board_Parameters;
| 55.169231 | 78 | 0.451199 |
31681a2af2917c9cf218e0c6b6a722e4171c5da0 | 1,731 | ada | Ada | Task/Call-a-function-in-a-shared-library/Ada/call-a-function-in-a-shared-library-1.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | Task/Call-a-function-in-a-shared-library/Ada/call-a-function-in-a-shared-library-1.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | Task/Call-a-function-in-a-shared-library/Ada/call-a-function-in-a-shared-library-1.ada | djgoku/RosettaCodeData | 91df62d46142e921b3eacdb52b0316c39ee236bc | [
"Info-ZIP"
] | null | null | null | with Ada.Text_IO; use Ada.Text_IO;
with Interfaces; use Interfaces;
with Interfaces.C; use Interfaces.C;
with System; use System;
with Ada.Unchecked_Conversion;
procedure Shared_Library_Call is
--
-- Interface to kernel32.dll which is resposible for loading DLLs under Windows.
-- There are ready to use Win32 binding. We don't want to use them here.
--
type HANDLE is new Unsigned_32;
function LoadLibrary (lpFileName : char_array) return HANDLE;
pragma Import (stdcall, LoadLibrary, "LoadLibrary", "_LoadLibraryA"); -- Ada95 don't has @n.
function GetProcAddress (hModule : HANDLE; lpProcName : char_array)
return Address;
pragma Import (stdcall, GetProcAddress, "GetProcAddress", "_GetProcAddress"); --
--
-- The interface of the function we want to call. It is a pointer (access type)
-- because we will link it dynamically. The function is from User32.dll
--
type MessageBox is access function
( hWnd : Address := Null_Address;
lpText : char_array;
lpCaption : char_array := To_C ("Greeting");
uType : Unsigned_16 := 0
) return Integer_16;
pragma Convention (Stdcall, MessageBox);
function To_MessageBox is new Ada.Unchecked_Conversion (Address, MessageBox);
Library : HANDLE := LoadLibrary (To_C ("user32.dll"));
Pointer : Address := GetProcAddress (Library, To_C ("MessageBoxA"));
begin
if Pointer /= Null_Address then
declare
Result : Integer_16;
begin
Result := To_MessageBox (Pointer) (lpText => To_C ("Hello!"));
end;
else
Put_Line ("Unable to load the library " & HANDLE'Image (Library));
end if;
end Shared_Library_Call;
| 37.630435 | 95 | 0.673599 |
319d486a0444cc9ebcad3fc18c8eef04766a7cd7 | 3,479 | ads | Ada | source/oasis/program-elements-formal_function_access_types.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-formal_function_access_types.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/oasis/program-elements-formal_function_access_types.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.Elements.Formal_Access_Types;
with Program.Lexical_Elements;
with Program.Elements.Parameter_Specifications;
package Program.Elements.Formal_Function_Access_Types is
pragma Pure (Program.Elements.Formal_Function_Access_Types);
type Formal_Function_Access_Type is
limited interface
and Program.Elements.Formal_Access_Types.Formal_Access_Type;
type Formal_Function_Access_Type_Access is
access all Formal_Function_Access_Type'Class with Storage_Size => 0;
not overriding function Parameters
(Self : Formal_Function_Access_Type)
return Program.Elements.Parameter_Specifications
.Parameter_Specification_Vector_Access is abstract;
not overriding function Result_Subtype
(Self : Formal_Function_Access_Type)
return not null Program.Elements.Element_Access is abstract;
not overriding function Has_Not_Null
(Self : Formal_Function_Access_Type)
return Boolean is abstract;
not overriding function Has_Protected
(Self : Formal_Function_Access_Type)
return Boolean is abstract;
not overriding function Has_Not_Null_2
(Self : Formal_Function_Access_Type)
return Boolean is abstract;
type Formal_Function_Access_Type_Text is limited interface;
type Formal_Function_Access_Type_Text_Access is
access all Formal_Function_Access_Type_Text'Class with Storage_Size => 0;
not overriding function To_Formal_Function_Access_Type_Text
(Self : aliased in out Formal_Function_Access_Type)
return Formal_Function_Access_Type_Text_Access is abstract;
not overriding function Not_Token
(Self : Formal_Function_Access_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Null_Token
(Self : Formal_Function_Access_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Access_Token
(Self : Formal_Function_Access_Type_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Protected_Token
(Self : Formal_Function_Access_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Function_Token
(Self : Formal_Function_Access_Type_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Left_Bracket_Token
(Self : Formal_Function_Access_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Right_Bracket_Token
(Self : Formal_Function_Access_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Return_Token
(Self : Formal_Function_Access_Type_Text)
return not null Program.Lexical_Elements.Lexical_Element_Access
is abstract;
not overriding function Not_Token_2
(Self : Formal_Function_Access_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
not overriding function Null_Token_2
(Self : Formal_Function_Access_Type_Text)
return Program.Lexical_Elements.Lexical_Element_Access is abstract;
end Program.Elements.Formal_Function_Access_Types;
| 36.239583 | 78 | 0.785571 |
2fc2eae03cb666a806bb43513e2bead08d3c4897 | 71 | ads | Ada | memsim-master/src/test-prefetch.ads | strenkml/EE368 | 00f15bce9e65badddc613355643b1061fd4a8195 | [
"MIT"
] | null | null | null | memsim-master/src/test-prefetch.ads | strenkml/EE368 | 00f15bce9e65badddc613355643b1061fd4a8195 | [
"MIT"
] | null | null | null | memsim-master/src/test-prefetch.ads | strenkml/EE368 | 00f15bce9e65badddc613355643b1061fd4a8195 | [
"MIT"
] | null | null | null |
package Test.Prefetch is
procedure Run_Tests;
end Test.Prefetch;
| 10.142857 | 24 | 0.760563 |
2f7ff739140193169cc6c0528ecccc8fb7df0942 | 17,188 | adb | Ada | source/amf/uml/amf-internals-uml_part_decompositions.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 24 | 2016-11-29T06:59:41.000Z | 2021-08-30T11:55:16.000Z | source/amf/uml/amf-internals-uml_part_decompositions.adb | svn2github/matreshka | 9d222b3ad9da508855fb1f5adbe5e8a4fad4c530 | [
"BSD-3-Clause"
] | 2 | 2019-01-16T05:15:20.000Z | 2019-02-03T10:03:32.000Z | source/amf/uml/amf-internals-uml_part_decompositions.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 © 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$
------------------------------------------------------------------------------
with AMF.Elements;
with AMF.Internals.Element_Collections;
with AMF.Internals.Helpers;
with AMF.Internals.Tables.UML_Attributes;
with AMF.Visitors.UML_Iterators;
with AMF.Visitors.UML_Visitors;
with League.Strings.Internals;
with Matreshka.Internals.Strings;
package body AMF.Internals.UML_Part_Decompositions is
-------------------
-- Enter_Element --
-------------------
overriding procedure Enter_Element
(Self : not null access constant UML_Part_Decomposition_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Enter_Part_Decomposition
(AMF.UML.Part_Decompositions.UML_Part_Decomposition_Access (Self),
Control);
end if;
end Enter_Element;
-------------------
-- Leave_Element --
-------------------
overriding procedure Leave_Element
(Self : not null access constant UML_Part_Decomposition_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Visitor in AMF.Visitors.UML_Visitors.UML_Visitor'Class then
AMF.Visitors.UML_Visitors.UML_Visitor'Class
(Visitor).Leave_Part_Decomposition
(AMF.UML.Part_Decompositions.UML_Part_Decomposition_Access (Self),
Control);
end if;
end Leave_Element;
-------------------
-- Visit_Element --
-------------------
overriding procedure Visit_Element
(Self : not null access constant UML_Part_Decomposition_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control) is
begin
if Iterator in AMF.Visitors.UML_Iterators.UML_Iterator'Class then
AMF.Visitors.UML_Iterators.UML_Iterator'Class
(Iterator).Visit_Part_Decomposition
(Visitor,
AMF.UML.Part_Decompositions.UML_Part_Decomposition_Access (Self),
Control);
end if;
end Visit_Element;
---------------------
-- Get_Actual_Gate --
---------------------
overriding function Get_Actual_Gate
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Gates.Collections.Set_Of_UML_Gate is
begin
return
AMF.UML.Gates.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Actual_Gate
(Self.Element)));
end Get_Actual_Gate;
------------------
-- Get_Argument --
------------------
overriding function Get_Argument
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Value_Specifications.Collections.Ordered_Set_Of_UML_Value_Specification is
begin
return
AMF.UML.Value_Specifications.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Argument
(Self.Element)));
end Get_Argument;
-------------------
-- Get_Refers_To --
-------------------
overriding function Get_Refers_To
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Interactions.UML_Interaction_Access is
begin
return
AMF.UML.Interactions.UML_Interaction_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Refers_To
(Self.Element)));
end Get_Refers_To;
-------------------
-- Set_Refers_To --
-------------------
overriding procedure Set_Refers_To
(Self : not null access UML_Part_Decomposition_Proxy;
To : AMF.UML.Interactions.UML_Interaction_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Refers_To
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Refers_To;
----------------------
-- Get_Return_Value --
----------------------
overriding function Get_Return_Value
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Value_Specifications.UML_Value_Specification_Access is
begin
return
AMF.UML.Value_Specifications.UML_Value_Specification_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Return_Value
(Self.Element)));
end Get_Return_Value;
----------------------
-- Set_Return_Value --
----------------------
overriding procedure Set_Return_Value
(Self : not null access UML_Part_Decomposition_Proxy;
To : AMF.UML.Value_Specifications.UML_Value_Specification_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Return_Value
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Return_Value;
--------------------------------
-- Get_Return_Value_Recipient --
--------------------------------
overriding function Get_Return_Value_Recipient
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Properties.UML_Property_Access is
begin
return
AMF.UML.Properties.UML_Property_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Return_Value_Recipient
(Self.Element)));
end Get_Return_Value_Recipient;
--------------------------------
-- Set_Return_Value_Recipient --
--------------------------------
overriding procedure Set_Return_Value_Recipient
(Self : not null access UML_Part_Decomposition_Proxy;
To : AMF.UML.Properties.UML_Property_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Return_Value_Recipient
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Return_Value_Recipient;
-----------------
-- Get_Covered --
-----------------
overriding function Get_Covered
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Lifelines.Collections.Set_Of_UML_Lifeline is
begin
return
AMF.UML.Lifelines.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Covered
(Self.Element)));
end Get_Covered;
-------------------------------
-- Get_Enclosing_Interaction --
-------------------------------
overriding function Get_Enclosing_Interaction
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Interactions.UML_Interaction_Access is
begin
return
AMF.UML.Interactions.UML_Interaction_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Enclosing_Interaction
(Self.Element)));
end Get_Enclosing_Interaction;
-------------------------------
-- Set_Enclosing_Interaction --
-------------------------------
overriding procedure Set_Enclosing_Interaction
(Self : not null access UML_Part_Decomposition_Proxy;
To : AMF.UML.Interactions.UML_Interaction_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Enclosing_Interaction
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Enclosing_Interaction;
---------------------------
-- Get_Enclosing_Operand --
---------------------------
overriding function Get_Enclosing_Operand
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access is
begin
return
AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Enclosing_Operand
(Self.Element)));
end Get_Enclosing_Operand;
---------------------------
-- Set_Enclosing_Operand --
---------------------------
overriding procedure Set_Enclosing_Operand
(Self : not null access UML_Part_Decomposition_Proxy;
To : AMF.UML.Interaction_Operands.UML_Interaction_Operand_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Enclosing_Operand
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Enclosing_Operand;
--------------------------
-- Get_General_Ordering --
--------------------------
overriding function Get_General_Ordering
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.General_Orderings.Collections.Set_Of_UML_General_Ordering is
begin
return
AMF.UML.General_Orderings.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_General_Ordering
(Self.Element)));
end Get_General_Ordering;
---------------------------
-- Get_Client_Dependency --
---------------------------
overriding function Get_Client_Dependency
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency is
begin
return
AMF.UML.Dependencies.Collections.Wrap
(AMF.Internals.Element_Collections.Wrap
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Client_Dependency
(Self.Element)));
end Get_Client_Dependency;
-------------------------
-- Get_Name_Expression --
-------------------------
overriding function Get_Name_Expression
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access is
begin
return
AMF.UML.String_Expressions.UML_String_Expression_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Name_Expression
(Self.Element)));
end Get_Name_Expression;
-------------------------
-- Set_Name_Expression --
-------------------------
overriding procedure Set_Name_Expression
(Self : not null access UML_Part_Decomposition_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access) is
begin
AMF.Internals.Tables.UML_Attributes.Internal_Set_Name_Expression
(Self.Element,
AMF.Internals.Helpers.To_Element
(AMF.Elements.Element_Access (To)));
end Set_Name_Expression;
-------------------
-- Get_Namespace --
-------------------
overriding function Get_Namespace
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
return
AMF.UML.Namespaces.UML_Namespace_Access
(AMF.Internals.Helpers.To_Element
(AMF.Internals.Tables.UML_Attributes.Internal_Get_Namespace
(Self.Element)));
end Get_Namespace;
------------------------
-- Get_Qualified_Name --
------------------------
overriding function Get_Qualified_Name
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.Optional_String is
begin
declare
use type Matreshka.Internals.Strings.Shared_String_Access;
Aux : constant Matreshka.Internals.Strings.Shared_String_Access
:= AMF.Internals.Tables.UML_Attributes.Internal_Get_Qualified_Name (Self.Element);
begin
if Aux = null then
return (Is_Empty => True);
else
return (False, League.Strings.Internals.Create (Aux));
end if;
end;
end Get_Qualified_Name;
-------------------------
-- All_Owning_Packages --
-------------------------
overriding function All_Owning_Packages
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "All_Owning_Packages unimplemented");
raise Program_Error with "Unimplemented procedure UML_Part_Decomposition_Proxy.All_Owning_Packages";
return All_Owning_Packages (Self);
end All_Owning_Packages;
-----------------------------
-- Is_Distinguishable_From --
-----------------------------
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Part_Decomposition_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Is_Distinguishable_From unimplemented");
raise Program_Error with "Unimplemented procedure UML_Part_Decomposition_Proxy.Is_Distinguishable_From";
return Is_Distinguishable_From (Self, N, Ns);
end Is_Distinguishable_From;
---------------
-- Namespace --
---------------
overriding function Namespace
(Self : not null access constant UML_Part_Decomposition_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access is
begin
-- Generated stub: replace with real body!
pragma Compile_Time_Warning (Standard.True, "Namespace unimplemented");
raise Program_Error with "Unimplemented procedure UML_Part_Decomposition_Proxy.Namespace";
return Namespace (Self);
end Namespace;
end AMF.Internals.UML_Part_Decompositions;
| 38.975057 | 110 | 0.606237 |
fbb896044f7b2025b1d045e13a54adca692c9025 | 6,874 | adb | Ada | ga_common/pick_manager.adb | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 3 | 2019-04-12T01:09:55.000Z | 2021-02-24T18:17:32.000Z | ga_common/pick_manager.adb | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 1 | 2020-08-12T10:10:25.000Z | 2020-08-12T10:10:25.000Z | ga_common/pick_manager.adb | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 1 | 2019-04-12T01:14:15.000Z | 2019-04-12T01:14:15.000Z |
with Interfaces;
with Ada.Text_IO; use Ada.Text_IO;
with GL.Attributes;
with GL.Framebuffer;
with GL.Objects.Buffers;
with GL.Objects.Programs;
with GL.Objects.Shaders;
with GL.Pixels;
with GL.Types.Colors;
with GL.Uniforms;
with Program_Loader;
with Utilities;
package body Pick_Manager is
type GL_Pick is record
Picking_Program : GL.Objects.Programs.Program;
Picking_Colour_ID : GL.Uniforms.Uniform;
Picking_Matrix_ID : GL.Uniforms.Uniform;
Pick_Active : Boolean := False; -- set to true during picking
-- set to picking window (x, y, w, h) during picking
OpenGL_Pick : GL.Types.Int_Array (1 .. 4) := (0, 0, 0, 0);
-- Must be set correctly by caller of pick() to get correct distances returned
Frustum_Near : GL.Types.Single := 1.0;
-- Must be set correctly by caller of pick() to get correct distances returned
Frustum_Far : GL.Types.Single := 100.0;
-- not required for pick(), provided for completenes
FrustumWidth : GL.Types.Single := 0.0;
-- not required for pick(), provided for completenes
Frustum_Height : GL.Types.Single := 0.0;
Pick_Window_Size : GL.Types.Int := 4;
end record;
type Pixels_Array is array (Positive range <>) of aliased GL.Types.UByte;
Max_Items : constant GL.Types.Int := 100;
White : constant GL.Types.Colors.Color := (1.0, 1.0, 1.0, 1.0);
Vertex_Buffer : GL.Objects.Buffers.Buffer;
Element_Buffer : GL.Objects.Buffers.Buffer;
Pick_Data : GL_Pick;
-- ------------------------------------------------------------------------
procedure Init_Pick_Manager is
use GL.Objects.Shaders;
begin
Pick_Data.Picking_Program := Program_Loader.Program_From
((Program_Loader.Src ("src/shaders/picking_vertex_shader.glsl",
Vertex_Shader),
Program_Loader.Src ("src/shaders/picking_fragment_shader.glsl",
Fragment_Shader)));
Pick_Data.Picking_Colour_ID := GL.Objects.Programs.Uniform_Location
(Pick_Data.Picking_Program, "Picking_Colour");
Pick_Data.Picking_Matrix_ID := GL.Objects.Programs.Uniform_Location
(Pick_Data.Picking_Program, "MVP");
exception
when others =>
Put_Line ("An exception occurred in Init_Pick_Manager.");
raise;
end Init_Pick_Manager;
-- ------------------------------------------------------------------------
procedure Read_Pix is new
GL.Framebuffer.Read_Pixels (Element_Type => GL.Types.UByte,
Index_Type => Positive,
Array_Type => Pixels_Array);
-- ------------------------------------------------------------------------
procedure Pick (Window : in out Glfw.Windows.Window;
Positions : GL.Types.Singles.Vector3_Array;
Orientations : Orientation_Array;
Indices_Size : GL.Types.Int;
View_Matrix, Projection_Matrix : GL.Types.Singles.Matrix4) is
use Interfaces;
use GL.Types;
use GL.Types.Singles;
Model_Matrix : Matrix4;
Rot_Matrix : Matrix4;
Trans_Matrix : Matrix4;
MVP_Matrix : Singles.Matrix4;
R : Single;
G : Single;
B : Single;
Window_Width : Glfw.Size;
Window_Height : Glfw.Size;
Pixel_Data : Pixels_Array (1 .. 4);
Picked_ID : Int;
-- Message : Ada.Strings.Unbounded.Unbounded_String;
begin
Utilities.Clear_Background_Colour_And_Depth (White);
GL.Objects.Programs.Use_Program (Pick_Data.Picking_Program);
-- Only the positions are needed (not the UVs and normals)
GL.Attributes.Enable_Vertex_Attrib_Array (0);
for count in GL.Types.Int range 1 .. Max_Items loop
Rot_Matrix := Maths.Rotation_Matrix (Orientations (count).Angle,
Orientations (count).Axis);
Trans_Matrix := Maths.Translation_Matrix (Positions (count));
Model_Matrix := Trans_Matrix * Rot_Matrix;
MVP_Matrix := Projection_Matrix * View_Matrix * Model_Matrix;
GL.Uniforms.Set_Single (Pick_Data.Picking_Matrix_ID, MVP_Matrix);
-- Convert count, the integer mesh ID, into an RGB color
R := Single (Unsigned_32 (count) and 16#FF#) / 255.0;
G := Single (Shift_Right (Unsigned_32 (count) and 16#FF00#, 8)) / 255.0;
B := Single (Shift_Right (Unsigned_32 (count) and 16#FF0000#, 16)) / 255.0;
GL.Uniforms.Set_Single (Pick_Data.Picking_Colour_ID, R, G, B, 1.0);
GL.Objects.Buffers.Array_Buffer.Bind (Vertex_Buffer);
GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, True, 0, 0);
GL.Objects.Buffers.Element_Array_Buffer.Bind (Element_Buffer);
GL.Objects.Buffers.Draw_Elements (Mode => Triangles,
Count => Indices_Size,
Index_Type => UInt_Type);
end loop;
GL.Attributes.Disable_Vertex_Attrib_Array (0);
GL.Flush;
GL.Pixels.Set_Pack_Alignment (GL.Pixels.Unpack_Alignment);
Window'Access.Get_Size (Window_Width, Window_Height);
-- Read the pixel at the center of the screen
Read_Pix (Int (Window_Width) / 2, Int (Window_Height) / 2, 1, 1,
GL.Pixels.RGBA, GL.Pixels.Float, Pixel_Data);
Put_Line ("Pick R" & UByte'Image (Pixel_Data (1)) & UByte'Image (Pixel_Data (2))
& UByte'Image (Pixel_Data (3)));
-- Convert the color back to an integer ID
Picked_ID := Int (Pixel_Data (1)) + 256 * Int (Pixel_Data (2)) +
256 * 256 * Int (Pixel_Data (3));
if Picked_ID = 16#00FFFFFF# then -- Full white, must be the background!
Put_Line ("Background " & Int'Image (Picked_ID));
-- Message := Ada.Strings.Unbounded.To_Unbounded_String ("background");
else
Put_Line ("Mesh " & Int'Image (Picked_ID));
-- Message := Ada.Strings.Unbounded.To_Unbounded_String ("");
end if;
exception
when others =>
Put_Line ("An exception occurred in Pick.");
raise;
end Pick;
-- ------------------------------------------------------------------------
function Pick_Active return Boolean is
begin
return Pick_Data.Pick_Active;
end Pick_Active;
-- ------------------------------------------------------------------------
end Pick_Manager;
| 42.695652 | 93 | 0.560372 |
591af5d18d04df1b4545ef5b62a677a27f4c1e53 | 541 | ads | Ada | math_2d-trigonometry.ads | io7m/coreland-math_2d | 0a6e57e6eac8aa2b19c50c0de3ea23c3bc78c4f9 | [
"0BSD"
] | 1 | 2017-10-07T05:53:58.000Z | 2017-10-07T05:53:58.000Z | math_2d-trigonometry.ads | io7m/coreland-math_2d | 0a6e57e6eac8aa2b19c50c0de3ea23c3bc78c4f9 | [
"0BSD"
] | null | null | null | math_2d-trigonometry.ads | io7m/coreland-math_2d | 0a6e57e6eac8aa2b19c50c0de3ea23c3bc78c4f9 | [
"0BSD"
] | null | null | null | with Ada.Numerics;
with Math_2D.Types;
generic
with package Types is new Math_2D.Types (<>);
package Math_2D.Trigonometry is
use type Types.Real_Type'Base;
type Degrees_t is new Types.Real_Type'Base range 0.0 .. 360.0;
type Radians_t is new Types.Real_Type'Base range 0.0 .. 360.0 * (Ada.Numerics.Pi / 180.0);
function To_Radians (Degrees : in Degrees_t) return Radians_t;
pragma Inline (To_Radians);
function To_Degrees (Radians : in Radians_t) return Degrees_t;
pragma Inline (To_Degrees);
end Math_2D.Trigonometry;
| 25.761905 | 92 | 0.744917 |
12ce6509996aa33edb0bff4a56425c5708642f3a | 5,174 | adb | Ada | orka/src/gl/implementation/gl-pixels.adb | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 52 | 2016-07-30T23:00:28.000Z | 2022-02-05T11:54:55.000Z | orka/src/gl/implementation/gl-pixels.adb | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 79 | 2016-08-01T18:36:48.000Z | 2022-02-27T12:14:20.000Z | orka/src/gl/implementation/gl-pixels.adb | 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) 2012 Felix Krause <[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 GL.API;
with GL.Enums.Getter;
package body GL.Pixels is
procedure Set_Pack_Alignment (Value : Alignment) is
begin
API.Pixel_Store_Alignment.Ref (Enums.Pack_Alignment, Value);
end Set_Pack_Alignment;
function Pack_Alignment return Alignment is
Ret : Alignment := Words;
begin
API.Get_Alignment.Ref (Enums.Getter.Pack_Alignment, Ret);
return Ret;
end Pack_Alignment;
procedure Set_Unpack_Alignment (Value : Alignment) is
begin
API.Pixel_Store_Alignment.Ref (Enums.Unpack_Alignment, Value);
end Set_Unpack_Alignment;
function Unpack_Alignment return Alignment is
Ret : Alignment := Words;
begin
API.Get_Alignment.Ref (Enums.Getter.Unpack_Alignment, Ret);
return Ret;
end Unpack_Alignment;
-----------------------------------------------------------------------------
procedure Set_Pack_Compressed_Block_Width (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Pack_Compressed_Block_Width, Value);
end Set_Pack_Compressed_Block_Width;
procedure Set_Pack_Compressed_Block_Height (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Pack_Compressed_Block_Height, Value);
end Set_Pack_Compressed_Block_Height;
procedure Set_Pack_Compressed_Block_Depth (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Pack_Compressed_Block_Depth, Value);
end Set_Pack_Compressed_Block_Depth;
procedure Set_Pack_Compressed_Block_Size (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Pack_Compressed_Block_Size, Value);
end Set_Pack_Compressed_Block_Size;
-----------------------------------------------------------------------------
function Pack_Compressed_Block_Width return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Pack_Compressed_Block_Width, Ret);
return Size (Ret);
end Pack_Compressed_Block_Width;
function Pack_Compressed_Block_Height return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Pack_Compressed_Block_Height, Ret);
return Size (Ret);
end Pack_Compressed_Block_Height;
function Pack_Compressed_Block_Depth return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Pack_Compressed_Block_Depth, Ret);
return Size (Ret);
end Pack_Compressed_Block_Depth;
function Pack_Compressed_Block_Size return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Pack_Compressed_Block_Size, Ret);
return Size (Ret);
end Pack_Compressed_Block_Size;
-----------------------------------------------------------------------------
procedure Set_Unpack_Compressed_Block_Width (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Unpack_Compressed_Block_Width, Value);
end Set_Unpack_Compressed_Block_Width;
procedure Set_Unpack_Compressed_Block_Height (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Unpack_Compressed_Block_Height, Value);
end Set_Unpack_Compressed_Block_Height;
procedure Set_Unpack_Compressed_Block_Depth (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Unpack_Compressed_Block_Depth, Value);
end Set_Unpack_Compressed_Block_Depth;
procedure Set_Unpack_Compressed_Block_Size (Value : Size) is
begin
API.Pixel_Store_Size.Ref (Enums.Unpack_Compressed_Block_Size, Value);
end Set_Unpack_Compressed_Block_Size;
-----------------------------------------------------------------------------
function Unpack_Compressed_Block_Width return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Unpack_Compressed_Block_Width, Ret);
return Size (Ret);
end Unpack_Compressed_Block_Width;
function Unpack_Compressed_Block_Height return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Unpack_Compressed_Block_Height, Ret);
return Size (Ret);
end Unpack_Compressed_Block_Height;
function Unpack_Compressed_Block_Depth return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Unpack_Compressed_Block_Depth, Ret);
return Size (Ret);
end Unpack_Compressed_Block_Depth;
function Unpack_Compressed_Block_Size return Size is
Ret : Types.Int := 0;
begin
API.Get_Integer.Ref (Enums.Getter.Unpack_Compressed_Block_Size, Ret);
return Size (Ret);
end Unpack_Compressed_Block_Size;
end GL.Pixels;
| 34.264901 | 80 | 0.700039 |
1da01e0ed04b1d3a1129c777d390c2e5da70d285 | 13,346 | adb | Ada | awa/src/awa-applications.adb | twdroeger/ada-awa | 77b824773747aecb912c37b1b7b59ea414679b80 | [
"Apache-2.0"
] | null | null | null | awa/src/awa-applications.adb | twdroeger/ada-awa | 77b824773747aecb912c37b1b7b59ea414679b80 | [
"Apache-2.0"
] | null | null | null | awa/src/awa-applications.adb | twdroeger/ada-awa | 77b824773747aecb912c37b1b7b59ea414679b80 | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- awa-applications -- Ada Web Application
-- Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.IO_Exceptions;
with ADO.Sessions.Sources;
with ADO.Configs;
with EL.Contexts.Default;
with Util.Files;
with Util.Log.Loggers;
with Security.Policies;
with ASF.Server;
with ASF.Servlets;
with AWA.Services.Contexts;
with AWA.Components.Factory;
with AWA.Applications.Factory;
with AWA.Applications.Configs;
with AWA.Helpers.Selectors;
with AWA.Permissions.Services;
with AWA.Permissions.Beans;
package body AWA.Applications is
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("AWA.Applications");
-- ------------------------------
-- Initialize the application
-- ------------------------------
overriding
procedure Initialize (App : in out Application;
Conf : in ASF.Applications.Config;
Factory : in out ASF.Applications.Main.Application_Factory'Class) is
Ctx : AWA.Services.Contexts.Service_Context;
begin
Log.Info ("Initializing application");
Ctx.Set_Context (App'Unchecked_Access, null);
AWA.Applications.Factory.Set_Application (Factory, App'Unchecked_Access);
ASF.Applications.Main.Application (App).Initialize (Conf, Factory);
-- Load the application configuration before any module.
Application'Class (App).Load_Configuration (App.Get_Config (P_Config_File.P));
-- Register the application modules and load their configuration.
Application'Class (App).Initialize_Modules;
-- Load the plugin application configuration after the module are configured.
Application'Class (App).Load_Configuration (App.Get_Config (P_Plugin_Config_File.P));
end Initialize;
-- ------------------------------
-- Initialize the application configuration properties. Properties defined in <b>Conf</b>
-- are expanded by using the EL expression resolver.
-- ------------------------------
overriding
procedure Initialize_Config (App : in out Application;
Conf : in out ASF.Applications.Config) is
Connection : ADO.Sessions.Sources.Data_Source;
begin
Log.Info ("Initializing configuration");
if Conf.Get ("app.modules.dir", "") = "" then
Conf.Set ("app.modules.dir", "#{fn:composePath(app_search_dirs,'config')}");
end if;
if Conf.Get ("bundle.dir", "") = "" then
Conf.Set ("bundle.dir", "#{fn:composePath(app_search_dirs,'bundles')}");
end if;
if Conf.Get ("ado.queries.paths", "") = "" then
Conf.Set ("ado.queries.paths", "#{fn:composePath(app_search_dirs,'db')}");
end if;
ADO.Configs.Initialize (Conf);
ASF.Applications.Main.Application (App).Initialize_Config (Conf);
Connection.Set_Connection (Conf.Get (P_Database.P));
Connection.Set_Property ("ado.queries.paths", Conf.Get ("ado.queries.paths", ""));
Connection.Set_Property ("ado.queries.load", Conf.Get ("ado.queries.load", ""));
App.DB_Factory.Create (Connection);
App.DB_Factory.Set_Audit_Manager (App.Audits'Unchecked_Access);
App.Audits.Initialize (App'Unchecked_Access);
App.Events.Initialize (App'Unchecked_Access);
AWA.Modules.Initialize (App.Modules, Conf);
-- Use a specific error message when the NO_PERMISSION exception is raised.
App.Get_Exception_Handler.Set_Message ("AWA.PERMISSIONS.NO_PERMISSION",
"layout.exception_no_permission");
App.Register_Class ("AWA.Helpers.Selectors.Select_List_Bean",
AWA.Helpers.Selectors.Create_Select_List_Bean'Access);
App.Register_Class ("AWA.Permissions.Beans.Permission_Bean",
AWA.Permissions.Beans.Create_Permission_Bean'Access);
end Initialize_Config;
-- ------------------------------
-- Initialize the servlets provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the application servlets.
-- ------------------------------
overriding
procedure Initialize_Servlets (App : in out Application) is
begin
Log.Info ("Initializing application servlets");
ASF.Applications.Main.Application (App).Initialize_Servlets;
end Initialize_Servlets;
-- ------------------------------
-- Initialize the filters provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the application filters.
-- ------------------------------
overriding
procedure Initialize_Filters (App : in out Application) is
begin
Log.Info ("Initializing application filters");
ASF.Applications.Main.Application (App).Initialize_Filters;
end Initialize_Filters;
-- ------------------------------
-- Initialize the ASF components provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the component factories used by the application.
-- ------------------------------
overriding
procedure Initialize_Components (App : in out Application) is
procedure Register_Functions is
new ASF.Applications.Main.Register_Functions (AWA.Permissions.Services.Set_Functions);
begin
Log.Info ("Initializing application components");
ASF.Applications.Main.Application (App).Initialize_Components;
App.Add_Components (AWA.Components.Factory.Definition);
Register_Functions (App);
end Initialize_Components;
-- ------------------------------
-- Read the application configuration file <b>awa.xml</b>. This is called after the servlets
-- and filters have been registered in the application but before the module registration.
-- ------------------------------
procedure Load_Configuration (App : in out Application;
Files : in String) is
procedure Load_Config (File : in String;
Done : out Boolean);
Paths : constant String := App.Get_Config (P_Module_Dir.P);
Ctx : aliased EL.Contexts.Default.Default_Context;
procedure Load_Config (File : in String;
Done : out Boolean) is
Path : constant String := Util.Files.Find_File_Path (File, Paths);
begin
Done := False;
AWA.Applications.Configs.Read_Configuration (App, Path, Ctx'Unchecked_Access, True);
exception
when Ada.IO_Exceptions.Name_Error =>
Log.Warn ("Application configuration file '{0}' does not exist", Path);
end Load_Config;
begin
Util.Files.Iterate_Path (Files, Load_Config'Access);
end Load_Configuration;
-- ------------------------------
-- Initialize the AWA modules provided by the application.
-- This procedure is called by <b>Initialize</b>.
-- It should register the modules used by the application.
-- ------------------------------
procedure Initialize_Modules (App : in out Application) is
begin
null;
end Initialize_Modules;
-- ------------------------------
-- Start the application. This is called by the server container when the server is started.
-- ------------------------------
overriding
procedure Start (App : in out Application) is
Manager : constant Security.Policies.Policy_Manager_Access
:= App.Get_Security_Manager;
begin
-- Start the security manager.
AWA.Permissions.Services.Permission_Manager'Class (Manager.all).Start;
-- Start the event service.
App.Events.Start;
-- Start the application.
ASF.Applications.Main.Application (App).Start;
-- Dump the route and filters to help in configuration issues.
App.Dump_Routes (Util.Log.INFO_LEVEL);
end Start;
-- ------------------------------
-- Close the application.
-- ------------------------------
overriding
procedure Close (App : in out Application) is
begin
App.Events.Stop;
ASF.Applications.Main.Application (App).Close;
end Close;
-- ------------------------------
-- Register the module in the application
-- ------------------------------
procedure Register (App : in Application_Access;
Module : access AWA.Modules.Module'Class;
Name : in String;
URI : in String := "") is
begin
App.Register (Module.all'Unchecked_Access, Name, URI);
end Register;
-- ------------------------------
-- Get the database connection for reading
-- ------------------------------
function Get_Session (App : Application)
return ADO.Sessions.Session is
begin
return App.DB_Factory.Get_Session;
end Get_Session;
-- ------------------------------
-- Get the database connection for writing
-- ------------------------------
function Get_Master_Session (App : Application)
return ADO.Sessions.Master_Session is
begin
return App.DB_Factory.Get_Master_Session;
end Get_Master_Session;
-- ------------------------------
-- Find the module with the given name
-- ------------------------------
function Find_Module (App : in Application;
Name : in String) return AWA.Modules.Module_Access is
begin
return AWA.Modules.Find_By_Name (App.Modules, Name);
end Find_Module;
-- ------------------------------
-- Register the module in the application
-- ------------------------------
procedure Register (App : in out Application;
Module : in AWA.Modules.Module_Access;
Name : in String;
URI : in String := "") is
begin
AWA.Modules.Register (App.Modules'Unchecked_Access, App'Unchecked_Access, Module, Name, URI);
end Register;
-- ------------------------------
-- Send the event in the application event queues.
-- ------------------------------
procedure Send_Event (App : in Application;
Event : in AWA.Events.Module_Event'Class) is
begin
App.Events.Send (Event);
end Send_Event;
-- ------------------------------
-- Execute the <tt>Process</tt> procedure with the event manager used by the application.
-- ------------------------------
procedure Do_Event_Manager (App : in out Application;
Process : access procedure
(Events : in out AWA.Events.Services.Event_Manager)) is
begin
Process (App.Events);
end Do_Event_Manager;
-- ------------------------------
-- Initialize the parser represented by <b>Parser</b> to recognize the configuration
-- that are specific to the plugins that have been registered so far.
-- ------------------------------
procedure Initialize_Parser (App : in out Application'Class;
Parser : in out Util.Serialize.IO.Parser'Class) is
procedure Process (Module : in out AWA.Modules.Module'Class);
procedure Process (Module : in out AWA.Modules.Module'Class) is
begin
Module.Initialize_Parser (Parser);
end Process;
begin
AWA.Modules.Iterate (App.Modules, Process'Access);
end Initialize_Parser;
-- ------------------------------
-- Get the current application from the servlet context or service context.
-- ------------------------------
function Current return Application_Access is
use type AWA.Services.Contexts.Service_Context_Access;
Ctx : constant AWA.Services.Contexts.Service_Context_Access := AWA.Services.Contexts.Current;
begin
if Ctx /= null then
return Ctx.Get_Application;
end if;
-- If there is no service context, look in the servlet current context.
declare
use type ASF.Servlets.Servlet_Registry_Access;
Ctx : constant ASF.Servlets.Servlet_Registry_Access := ASF.Server.Current;
begin
if Ctx = null then
Log.Warn ("There is no service context");
return null;
end if;
if not (Ctx.all in AWA.Applications.Application'Class) then
Log.Warn ("The servlet context is not an application");
return null;
end if;
return AWA.Applications.Application'Class (Ctx.all)'Access;
end;
end Current;
end AWA.Applications;
| 39.368732 | 99 | 0.596134 |
1d49be13f6010945395d37dc838fece0445b3482 | 1,301 | ads | Ada | tools/akt-commands-info.ads | My-Colaborations/ada-keystore | 6ab222c2df81f32309c5a7b4f94a475214ef5ce3 | [
"Apache-2.0"
] | 25 | 2019-05-07T20:35:50.000Z | 2021-11-30T10:35:47.000Z | tools/akt-commands-info.ads | My-Colaborations/ada-keystore | 6ab222c2df81f32309c5a7b4f94a475214ef5ce3 | [
"Apache-2.0"
] | 12 | 2019-12-16T23:30:00.000Z | 2021-09-26T18:52:41.000Z | tools/akt-commands-info.ads | My-Colaborations/ada-keystore | 6ab222c2df81f32309c5a7b4f94a475214ef5ce3 | [
"Apache-2.0"
] | 3 | 2019-12-18T21:30:04.000Z | 2021-01-06T08:30:36.000Z | -----------------------------------------------------------------------
-- akt-commands-info -- Info command of keystore
-- Copyright (C) 2019 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with AKT.Commands.Drivers;
private package AKT.Commands.Info is
type Command_Type is new AKT.Commands.Drivers.Command_Type with null record;
-- Give information about the keystore.
overriding
procedure Execute (Command : in out Command_Type;
Name : in String;
Args : in Argument_List'Class;
Context : in out Context_Type);
end AKT.Commands.Info;
| 41.967742 | 79 | 0.616449 |
592859d699f159473c306e226d6cf2e62891b707 | 4,776 | adb | Ada | src/smk-runs.adb | LionelDraghi/smk | 2ba79048e1d2579bbbdd1004a78c5cff1796261e | [
"Apache-2.0"
] | 10 | 2018-11-27T22:07:50.000Z | 2020-04-12T21:00:03.000Z | src/smk-runs.adb | LionelDraghi/smk | 2ba79048e1d2579bbbdd1004a78c5cff1796261e | [
"Apache-2.0"
] | 18 | 2018-11-27T22:11:06.000Z | 2019-01-25T20:52:49.000Z | src/smk-runs.adb | LionelDraghi/smk | 2ba79048e1d2579bbbdd1004a78c5cff1796261e | [
"Apache-2.0"
] | 1 | 2018-12-05T23:05:05.000Z | 2018-12-05T23:05:05.000Z | -- -----------------------------------------------------------------------------
-- smk, the smart make (http://lionel.draghi.free.fr/smk/)
-- © 2018, 2019 Lionel Draghi <[email protected]>
-- SPDX-License-Identifier: APSL-2.0
-- -----------------------------------------------------------------------------
-- 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 Smk.Assertions; use Smk.Assertions;
with Smk.Definitions; use Smk.Definitions;
with Smk.Files; use Smk.Files;
with Smk.Settings;
with Ada.Directories; use Ada.Directories;
with Ada.Text_IO; use Ada.Text_IO;
package body Smk.Runs is
-- --------------------------------------------------------------------------
procedure Analyze_Run (Assertions : out Condition_Lists.List) is separate;
-- Based on the run log file (that is the strace output), and the run time,
-- it identifies Source and Target files.
-- Thanks to strace -y option, file names appears clearly between <>
-- in the strace output.
-- This output is filtered to keep only those file names, and pushed to
-- Source_Files list output parameter if the file's time tag is older than
-- the execution time, and to Target_Files list otherwise.
-- --------------------------------------------------------------------------
function Must_Be_Run (Command : Command_Lines;
Previous_Run : in out Runfiles.Run_Lists.Map)
return Boolean is separate;
-- This function return True if one of the following condition is met:
-- 1. the --always-make option is set;
-- 2. the provided Command is not found in the previous run;
-- 3. one the files identified as Target during the previous run
-- is missing;
-- 4. one the files identified as Source during the previous run
-- has been updated after the previous run.
-- --------------------------------------------------------------------------
procedure Run_Command (E : in out Smkfiles.Smkfile_Entry;
The_Run_List : in out Runfiles.Run_Lists.Map;
Cmd_To_Run : out Boolean;
Error_In_Run : out Boolean)
is separate;
-- Run_Command is in charge of spawning the Cmd (using strace),
-- and analysing the strace log file.
-- The_Run_List is updated with this run results
-- --------------------------------------------------------------------------
procedure Run_All (The_Smkfile : in out Smkfiles.Smkfile;
The_Run_List : in out Runfiles.Run_Lists.Map;
Cmd_To_Run : out Boolean;
Error_In_Run : out Boolean;
Section_Found : out Boolean;
Target_Found : out Boolean)
is
-- Those booleans cumulate the result over the loop,
-- that will be put in the matching output parameters.
Some_Command_To_Run : Boolean := False;
Some_Error_In_Run : Boolean := False;
begin
Cmd_To_Run := False;
Error_In_Run := False;
Section_Found := False;
Target_Found := False;
for E of The_Smkfile.Entries loop
if Settings.Section_Name = "" or else
Settings.Section_Name = +E.Section
then
Section_Found := True;
Target_Found := Runfiles.Has_Target (The_Run_List,
Settings.Target_Name);
if Settings.Target_Name = "" or else Target_Found then
if not E.Was_Run then
Run_Command (E,
The_Run_List,
Some_Command_To_Run,
Some_Error_In_Run);
-- sum the results:
Cmd_To_Run := Cmd_To_Run or Some_Command_To_Run;
Error_In_Run := Error_In_Run or Some_Error_In_Run;
if Some_Error_In_Run and not Settings.Keep_Going then
exit;
end if;
end if;
end if;
end if;
end loop;
end Run_All;
end Smk.Runs;
| 41.894737 | 80 | 0.538317 |
595d790995ed12e2e640c70b7c8e30b45ec4cce4 | 3,009 | adb | Ada | sources/md/markdown-paragraphs.adb | reznikmm/markdown | af47bd45427f1c016c0a2a11e86fa2d1b1c82315 | [
"MIT"
] | null | null | null | sources/md/markdown-paragraphs.adb | reznikmm/markdown | af47bd45427f1c016c0a2a11e86fa2d1b1c82315 | [
"MIT"
] | null | null | null | sources/md/markdown-paragraphs.adb | reznikmm/markdown | af47bd45427f1c016c0a2a11e86fa2d1b1c82315 | [
"MIT"
] | null | null | null | -- SPDX-FileCopyrightText: 2020 Max Reznik <[email protected]>
--
-- SPDX-License-Identifier: MIT
----------------------------------------------------------------
with Markdown.Visitors;
with League.Regexps;
with League.Strings;
package body Markdown.Paragraphs is
Blank_Pattern : constant League.Regexps.Regexp_Pattern :=
League.Regexps.Compile
(League.Strings.To_Universal_String
("^[\ \t]*$"));
Pattern : constant League.Regexps.Regexp_Pattern :=
League.Regexps.Compile
(League.Strings.To_Universal_String
("^\ {0,3}(\-{2,}|\=+)\ *$"));
-----------------
-- Append_Line --
-----------------
overriding procedure Append_Line
(Self : in out Paragraph;
Line : Markdown.Blocks.Text_Line;
CIP : Can_Interrupt_Paragraph;
Ok : in out Boolean)
is
Blank_Match : constant League.Regexps.Regexp_Match :=
Blank_Pattern.Find_Match (Line.Line);
Match : constant League.Regexps.Regexp_Match :=
Pattern.Find_Match (Line.Line);
begin
Ok := not Blank_Match.Is_Matched and Self.Setext_Level = 0;
if Ok then
if Match.Is_Matched then
if Line.Line.Element (Match.First_Index (1)).To_Wide_Wide_Character
= '-'
then
Self.Setext_Level := 2;
else
Self.Setext_Level := 1;
end if;
elsif CIP then
Ok := False;
else
Self.Lines.Append (Line.Line);
end if;
end if;
end Append_Line;
------------
-- Create --
------------
overriding function Create
(Line : not null access Markdown.Blocks.Text_Line)
return Paragraph is
begin
pragma Assert (not Line.Line.Is_Empty);
return Result : Paragraph do
Result.Lines.Append (Line.Line);
Line.Line.Clear;
end return;
end Create;
------------
-- Filter --
------------
procedure Filter
(Line : Markdown.Blocks.Text_Line;
Tag : in out Ada.Tags.Tag;
CIP : out Can_Interrupt_Paragraph)
is
Blank_Match : constant League.Regexps.Regexp_Match :=
Blank_Pattern.Find_Match (Line.Line);
begin
if not Blank_Match.Is_Matched then
Tag := Paragraph'Tag;
CIP := False;
end if;
end Filter;
-----------
-- Lines --
-----------
function Lines (Self : Paragraph'Class)
return League.String_Vectors.Universal_String_Vector is
begin
return Self.Lines;
end Lines;
--------------------
-- Setext_Heading --
--------------------
function Setext_Heading (Self : Paragraph'Class) return Heading_Level is
begin
return Self.Setext_Level;
end Setext_Heading;
-----------
-- Visit --
-----------
overriding procedure Visit
(Self : in out Paragraph;
Visitor : in out Markdown.Visitors.Visitor'Class) is
begin
Visitor.Paragraph (Self);
end Visit;
end Markdown.Paragraphs;
| 24.463415 | 79 | 0.564639 |
a1dc91734f8095078b58b22fe615e8677e16927b | 2,441 | ada | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c41309a.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/c4/c41309a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c41309a.ada | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | 2 | 2020-07-27T00:22:36.000Z | 2021-04-01T09:41:02.000Z | -- C41309A.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.
--*
-- CHECK THAT AN EXPANDED NAME IS ALLOWED EVEN IF A USE CLAUSE MAKES THE
-- EXPANDED NAME UNNECESSARY.
-- TBN 12/15/86
WITH REPORT; USE REPORT;
PROCEDURE C41309A IS
BEGIN
TEST ("C41309A", "CHECK THAT AN EXPANDED NAME IS ALLOWED EVEN " &
"IF A USE CLAUSE MAKES THE EXPANDED NAME " &
"UNNECESSARY");
DECLARE
PACKAGE P IS
PACKAGE Q IS
PACKAGE R IS
TYPE REC IS
RECORD
A : INTEGER := 5;
B : BOOLEAN := TRUE;
END RECORD;
REC1 : REC;
END R;
USE R;
REC2 : R.REC := R.REC1;
END Q;
USE Q; USE R;
REC3 : Q.R.REC := Q.REC2;
END P;
USE P; USE Q; USE R;
REC4 : P.Q.R.REC := P.REC3;
BEGIN
IF REC4 /= (IDENT_INT(5), IDENT_BOOL(TRUE)) THEN
FAILED ("INCORRECT RESULTS FROM EXPANDED NAME");
END IF;
END;
RESULT;
END C41309A;
| 34.871429 | 79 | 0.549365 |
59715cce8d29bf726577a49befb5f770635c4d1c | 801 | ads | Ada | src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/packed_array_assign/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/packed_array_assign/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/packed_array_assign/pck.ads | alrooney/unum-sdk | bbccb10b0cd3500feccbbef22e27ea111c3d18eb | [
"Apache-2.0"
] | 20 | 2018-11-16T21:19:22.000Z | 2021-10-18T23:08:24.000Z | -- Copyright 2018-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
procedure Do_Nothing (A : System.Address);
end Pck;
| 34.826087 | 73 | 0.735331 |
59b889ef2a8906400f0de82dc062faeb772d3972 | 6,937 | adb | Ada | src/ado-sequences.adb | My-Colaborations/ada-ado | cebf1f9b38c0c259c44935e8bca05a5bff12aace | [
"Apache-2.0"
] | null | null | null | src/ado-sequences.adb | My-Colaborations/ada-ado | cebf1f9b38c0c259c44935e8bca05a5bff12aace | [
"Apache-2.0"
] | null | null | null | src/ado-sequences.adb | My-Colaborations/ada-ado | cebf1f9b38c0c259c44935e8bca05a5bff12aace | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- ADO Sequences -- Database sequence generator
-- 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 Util.Log;
with Util.Log.Loggers;
with Util.Strings;
with ADO.Sessions.Factory;
with Ada.Unchecked_Deallocation;
package body ADO.Sequences is
use Util.Log;
use Sequence_Maps;
Log : constant Loggers.Logger := Loggers.Create ("ADO.Sequences");
procedure Free is new
Ada.Unchecked_Deallocation (Object => ADO.Sequences.Sequence_Generator,
Name => ADO.Sequences.Sequence_Generator_Access);
procedure Free is new
Ada.Unchecked_Deallocation (Object => Generator'Class,
Name => Generator_Access);
-- ------------------------------
-- Get the name of the sequence.
-- ------------------------------
function Get_Sequence_Name (Gen : in Generator'Class) return String is
begin
return To_String (Gen.Name);
end Get_Sequence_Name;
-- ------------------------------
-- Get a session to connect to the database.
-- ------------------------------
function Get_Session (Gen : in Generator) return ADO.Sessions.Master_Session'Class is
begin
return Gen.Factory.Get_Master_Session;
end Get_Session;
protected body Sequence_Generator is
-- ------------------------------
-- Allocate a unique identifier for the given sequence.
-- ------------------------------
procedure Allocate (Id : in out Objects.Object_Record'Class) is
begin
Generator.Allocate (Id);
end Allocate;
procedure Set_Generator (Name : in Unbounded_String;
Gen : in Generator_Access) is
begin
Gen.Name := Name;
Generator := Gen;
end Set_Generator;
procedure Clear is
begin
Free (Generator);
end Clear;
end Sequence_Generator;
-- ------------------------------
-- Allocate a unique identifier for the given table.
-- ------------------------------
procedure Allocate (Manager : in out Factory;
Id : in out ADO.Objects.Object_Record'Class) is
Gen : Sequence_Generator_Access;
Name : constant Util.Strings.Name_Access := Id.Get_Table_Name;
begin
Manager.Map.Get_Generator (To_Unbounded_String (Name.all), Gen);
Gen.Allocate (Id);
end Allocate;
-- ------------------------------
-- Set a generator to be used for the given sequence.
-- ------------------------------
procedure Set_Generator (Manager : in out Factory;
Name : in String;
Gen : in Generator_Access) is
N : constant Unbounded_String := To_Unbounded_String (Name);
G : constant Sequence_Generator_Access := new Sequence_Generator;
begin
G.Set_Generator (N, Gen);
Manager.Map.Set_Generator (N, G);
end Set_Generator;
-- ------------------------------
-- Set the default factory for creating generators.
-- The default factory is the HiLo generator.
-- ------------------------------
procedure Set_Default_Generator
(Manager : in out Factory;
Factory : in Generator_Factory;
Sess_Factory : in Session_Factory_Access) is
begin
Manager.Map.Set_Default_Generator (Factory, Sess_Factory);
end Set_Default_Generator;
-- The sequence factory map is also accessed through a protected type.
protected body Factory_Map is
-- ------------------------------
-- Get the sequence generator associated with the name.
-- If there is no such generator, an entry is created by using
-- the default generator.
-- ------------------------------
procedure Get_Generator (Name : in Unbounded_String;
Gen : out Sequence_Generator_Access) is
Pos : constant Cursor := Find (Map, Name);
begin
if not Has_Element (Pos) then
Log.Info ("Creating sequence generator for {0}", To_String (Name));
Gen := new Sequence_Generator;
Gen.Set_Generator (Name, Create_Generator.all (Sess_Factory));
Insert (Map, Name, Gen);
else
Gen := Element (Pos);
end if;
end Get_Generator;
-- ------------------------------
-- Set the sequence generator associated with the name.
-- ------------------------------
procedure Set_Generator (Name : in Unbounded_String;
Gen : in Sequence_Generator_Access) is
Pos : constant Cursor := Find (Map, Name);
begin
Log.Info ("Setting sequence generator for {0}", To_String (Name));
if not Has_Element (Pos) then
Insert (Map, Name, Gen);
else
declare
Node : Sequence_Generator_Access := Element (Pos);
begin
Node.Clear;
Free (Node);
end;
Replace_Element (Map, Pos, Gen);
end if;
end Set_Generator;
-- ------------------------------
-- Set the default sequence generator.
-- ------------------------------
procedure Set_Default_Generator
(Gen : in Generator_Factory;
Factory : in Session_Factory_Access) is
begin
Create_Generator := Gen;
Sess_Factory := Factory;
end Set_Default_Generator;
-- ------------------------------
-- Clear the factory map.
-- ------------------------------
procedure Clear is
begin
Log.Info ("Clearing the sequence factory");
loop
declare
Pos : Cursor := Map.First;
Node : Sequence_Generator_Access;
begin
exit when not Has_Element (Pos);
Node := Element (Pos);
Map.Delete (Pos);
Node.all.Clear;
Free (Node);
end;
end loop;
end Clear;
end Factory_Map;
procedure Finalize (Manager : in out Factory) is
begin
Manager.Map.Clear;
end Finalize;
end ADO.Sequences;
| 34.512438 | 88 | 0.540291 |
291f91d4eebdd6b9bb3d26b4074fc07d9e98e20e | 140 | adb | Ada | llvm-2.9/test/FrontendAda/var_size.adb | DependableSystemsLab/Trident | 90b38ab3ce8b7ad743986ddf66eaea7d20d921cb | [
"MIT"
] | 5 | 2018-09-23T05:44:31.000Z | 2021-09-08T18:52:37.000Z | llvm-2.9/test/FrontendAda/var_size.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 4 | 2019-06-13T16:27:31.000Z | 2021-06-07T07:24:31.000Z | llvm-2.9/test/FrontendAda/var_size.adb | vidkidz/crossbridge | ba0bf94aee0ce6cf7eb5be882382e52bc57ba396 | [
"MIT"
] | 4 | 2018-09-23T05:44:33.000Z | 2021-04-20T00:29:11.000Z | -- RUN: %llvmgcc -S %s -I%p/Support
package body Var_Size is
function A (X : T) return String is
begin
return X.A;
end;
end;
| 17.5 | 38 | 0.614286 |
066812f44d14e8d29fec96d1b3062cf1981044ce | 2,913 | adb | Ada | src/helios-commands-info.adb | stcarrez/helios | 770055d87eaaa70a29a8a39190ecc8aa4e31b5be | [
"Apache-2.0"
] | 1 | 2020-09-04T18:34:08.000Z | 2020-09-04T18:34:08.000Z | src/helios-commands-info.adb | stcarrez/helios | 770055d87eaaa70a29a8a39190ecc8aa4e31b5be | [
"Apache-2.0"
] | null | null | null | src/helios-commands-info.adb | stcarrez/helios | 770055d87eaaa70a29a8a39190ecc8aa4e31b5be | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- helios-commands-info -- Helios information commands
-- Copyright (C) 2017, 2018, 2019 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Real_Time;
with Util.Events.Timers;
with Helios.Datas;
with Helios.Monitor.Agent;
with Helios.Reports.Files;
package body Helios.Commands.Info is
use type Ada.Real_Time.Time_Span;
-- Execute a information command to report information about the agent and monitoring.
overriding
procedure Execute (Command : in out Command_Type;
Name : in String;
Args : in Argument_List'Class;
Context : in out Context_Type) is
pragma Unreferenced (Command, Name, Args);
type Info_Report is new Helios.Reports.Files.File_Report_Type with null record;
-- The timer handler executed when the timer deadline has passed.
overriding
procedure Time_Handler (Report : in out Info_Report;
Event : in out Util.Events.Timers.Timer_Ref'Class);
-- The timer handler executed when the timer deadline has passed.
overriding
procedure Time_Handler (Report : in out Info_Report;
Event : in out Util.Events.Timers.Timer_Ref'Class) is
begin
Helios.Reports.Files.File_Report_Type (Report).Time_Handler (Event);
Context.Runtime.Stop := True;
end Time_Handler;
Timer : Util.Events.Timers.Timer_Ref;
Report : aliased Info_Report;
begin
Report.Path := Ada.Strings.Unbounded.To_Unbounded_String ("report.json");
Load (Context);
Monitor.Agent.Configure (Context.Runtime, Context.Config);
Context.Runtime.Timers.Set_Timer (Report'Unchecked_Access, Timer,
Context.Runtime.Report_Period + Ada.Real_Time.Seconds (1));
Monitor.Agent.Run (Context.Runtime);
end Execute;
-- Write the help associated with the command.
overriding
procedure Help (Command : in out Command_Type;
Name : in String;
Context : in out Context_Type) is
begin
null;
end Help;
end Helios.Commands.Info;
| 41.028169 | 99 | 0.633368 |
12c3467f052ae8720f56deb45dccfa4e3c0f39f3 | 897 | ads | Ada | src/resources.ads | alire-project/resources | a418da627ec3d18f50f60edaee41a2f47f173a0e | [
"MIT"
] | null | null | null | src/resources.ads | alire-project/resources | a418da627ec3d18f50f60edaee41a2f47f173a0e | [
"MIT"
] | null | null | null | src/resources.ads | alire-project/resources | a418da627ec3d18f50f60edaee41a2f47f173a0e | [
"MIT"
] | null | null | null | generic
Crate_Name : String;
-- MANDATORY: Name of the crate/project in lower case.
Resource_Dir_From_Prefix : String := "share/" & Crate_Name & "/";
-- OPTIONAL: Relative path from the prefix/installation dir to the resource
-- folder. The default value provided here should work for all cases.
Module_To_Prefix : String := "..";
-- OPTIONAL: Relative path from the directory where the module (shared
-- library or exectuable) is located to the prefix/installation dir.
-- The default value provided here should work for all cases, i.e.
-- when executables are installed in bin/ and libraries in lib/ or lib64/.
package Resources is
function Prefix_Path return String;
-- Return an absolute path to the prefix/installation directory
function Resource_Path return String;
-- Return an absolute path to the resource directory
end Resources;
| 37.375 | 79 | 0.724638 |
12d255f64c1950c8e973a2d097df0ef60db0bdb5 | 6,601 | ads | Ada | src/ttf/sdl-ttfs.ads | mosteo/sdlada | 429c594de613c5ba2f0d7c59f8708956697e14f1 | [
"Zlib"
] | 89 | 2015-01-03T01:41:23.000Z | 2022-02-23T18:21:11.000Z | src/ttf/sdl-ttfs.ads | mosteo/sdlada | 429c594de613c5ba2f0d7c59f8708956697e14f1 | [
"Zlib"
] | 66 | 2015-05-01T00:54:03.000Z | 2022-01-20T04:09:59.000Z | src/ttf/sdl-ttfs.ads | Jellix/sdlada | 997d2ae2da5c75e2ea99cee98372cf5b752519cf | [
"Zlib"
] | 33 | 2015-04-30T23:39:31.000Z | 2022-01-03T13:00:41.000Z | --------------------------------------------------------------------------------------------------------------------
-- 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.
--------------------------------------------------------------------------------------------------------------------
-- SDL.TTFs
--
-- Root package implementing the binding to SDL2_ttf.
--------------------------------------------------------------------------------------------------------------------
with Ada.Finalization;
with Ada.Strings.UTF_Encoding;
with Interfaces.C;
with SDL.Video.Palettes;
with SDL.Video.Surfaces;
package SDL.TTFs is
package UTF_Strings renames Ada.Strings.UTF_Encoding;
package C renames Interfaces.C;
TTF_Error : exception;
function Initialise return Boolean with
Inline_Always => True;
procedure Finalise with
Import => True,
Convention => C,
External_Name => "TTF_Quit";
-- Fonts.
type Point_Sizes is new C.int;
type Font_Faces is range 0 .. C.long'Last with
Size => C.long'Size,
Convention => C;
type Font_Styles is mod 2 ** 32 with
Convention => C;
Style_Normal : constant Font_Styles := 16#0000_0000#;
Style_Bold : constant Font_Styles := 16#0000_0001#;
Style_Italic : constant Font_Styles := 16#0000_0002#;
Style_Underline : constant Font_Styles := 16#0000_0004#;
Style_Strike_Through : constant Font_Styles := 16#0000_0008#;
type Font_Outlines is range 0 .. C.int'Last with
Size => C.int'Size,
Convention => C;
Outlines_Off : constant Font_Outlines := Font_Outlines'First;
type Font_Hints is (Normal, Light, Mono, None) with
Convention => C;
type Font_Measurements is range 0 .. C.int'Last with
Size => C.int'Size,
Convention => C;
type Fonts is new Ada.Finalization.Controlled with private;
Null_Font : constant Fonts;
overriding
procedure Finalize (Self : in out Fonts);
function Style (Self : in Fonts) return Font_Styles with
Inline => True;
procedure Set_Style (Self : in out Fonts; Now : in Font_Styles) with
Inline => True;
function Outline (Self : in Fonts) return Font_Outlines with
Inline => True;
procedure Set_Outline (Self : in out Fonts; Now : in Font_Outlines := Outlines_Off) with
Inline => True;
function Hinting (Self : in Fonts) return Font_Hints with
Inline => True;
procedure Set_Hinting (Self : in out Fonts; Now : in Font_Hints := Normal) with
Inline => True;
function Kerning (Self : in Fonts) return Boolean with
Inline => True;
procedure Set_Kerning (Self : in out Fonts; Now : in Boolean) with
Inline => True;
function Height (Self : in Fonts) return Font_Measurements with
Inline => True;
function Ascent (Self : in Fonts) return Font_Measurements with
Inline => True;
function Descent (Self : in Fonts) return Font_Measurements with
Inline => True;
function Line_Skip (Self : in Fonts) return Font_Measurements with
Inline => True;
function Faces (Self : in Fonts) return Font_Faces with
Inline => True;
function Is_Face_Fixed_Width (Self : in Fonts) return Boolean with
Inline => True;
function Face_Family_Name (Self : in Fonts) return String with
Inline => True;
function Face_Style_Name (Self : in Fonts) return String with
Inline => True;
function Size_Latin_1 (Self : in Fonts; Text : in String) return SDL.Sizes with
Inline => True;
function Size_UTF_8 (Self : in Fonts; Text : in UTF_Strings.UTF_8_String) return SDL.Sizes with
Inline => True;
function Render_Solid (Self : in Fonts;
Text : in String;
Colour : in SDL.Video.Palettes.Colour) return SDL.Video.Surfaces.Surface;
function Render_Shaded (Self : in Fonts;
Text : in String;
Colour : in SDL.Video.Palettes.Colour;
Background_Colour : in SDL.Video.Palettes.Colour) return SDL.Video.Surfaces.Surface;
function Render_Blended (Self : in Fonts;
Text : in String;
Colour : in SDL.Video.Palettes.Colour) return SDL.Video.Surfaces.Surface;
function Render_UTF_8_Solid (Self : in Fonts;
Text : in UTF_Strings.UTF_8_String;
Colour : in SDL.Video.Palettes.Colour) return SDL.Video.Surfaces.Surface;
function Render_UTF_8_Shaded (Self : in Fonts;
Text : in UTF_Strings.UTF_8_String;
Colour : in SDL.Video.Palettes.Colour;
Background_Colour : in SDL.Video.Palettes.Colour) return SDL.Video.Surfaces.Surface;
function Render_UTF_8_Blended (Self : in Fonts;
Text : in UTF_Strings.UTF_8_String;
Colour : in SDL.Video.Palettes.Colour) return SDL.Video.Surfaces.Surface;
private
type Internal_Fonts is null record;
type Fonts_Pointer is access all Internal_Fonts with
Convention => C;
subtype Fonts_Ref is not null Fonts_Pointer;
type Fonts is new Ada.Finalization.Controlled with
record
Internal : Fonts_Pointer := null;
Source_Freed : Boolean := False; -- Whether the Makers.* subprogram has already closed the font.
end record;
Null_Font : constant Fonts := (Ada.Finalization.Controlled with others => <>);
end SDL.TTFs;
| 37.72 | 118 | 0.605969 |
31e8c401e65655e258f7df4a497e884bdb6771b6 | 166,798 | adb | Ada | HLS/solution1/.autopilot/db/rgb2gray.adb | NekoSilverFox/CornerDetectionOnZYNQ | 5688fa851f57d00f0f2d309adf06df840a25e1da | [
"Apache-2.0"
] | null | null | null | HLS/solution1/.autopilot/db/rgb2gray.adb | NekoSilverFox/CornerDetectionOnZYNQ | 5688fa851f57d00f0f2d309adf06df840a25e1da | [
"Apache-2.0"
] | null | null | null | HLS/solution1/.autopilot/db/rgb2gray.adb | NekoSilverFox/CornerDetectionOnZYNQ | 5688fa851f57d00f0f2d309adf06df840a25e1da | [
"Apache-2.0"
] | 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/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>rgb2gray</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>7</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>imgIn_data_stream_0_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>imgIn.data_stream[0].V</originalName>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>0</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>imgIn_data_stream_1_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>imgIn.data_stream[1].V</originalName>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</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="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>imgIn_data_stream_2_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>imgIn.data_stream[2].V</originalName>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</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="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>imgOut_3C_data_stream_0_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>imgOut_3C.data_stream[0].V</originalName>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</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="_5">
<Value>
<Obj>
<type>1</type>
<id>5</id>
<name>imgOut_3C_data_stream_1_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>imgOut_3C.data_stream[1].V</originalName>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</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="_6">
<Value>
<Obj>
<type>1</type>
<id>6</id>
<name>imgOut_3C_data_stream_2_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>imgOut_3C.data_stream[2].V</originalName>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</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="_7">
<Value>
<Obj>
<type>1</type>
<id>7</id>
<name>imgOut_1C_data_stream_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>imgOut_1C.data_stream.V</originalName>
<rtlName/>
<coreName>FIFO</coreName>
</Obj>
<bitwidth>8</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>33</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name/>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>8</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</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>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>8</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>66</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.46</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>idxRow</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>idxRow</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>69</item>
<item>70</item>
<item>71</item>
<item>72</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>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>exitcond1</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>8</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>8</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond1_fu_230_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>75</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.94</m_delay>
<m_topoIndex>3</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>idxRow_1</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>8</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>8</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>idxRow</originalName>
<rtlName>idxRow_1_fu_236_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>76</item>
<item>78</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.41</m_delay>
<m_topoIndex>4</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/>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>8</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>8</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>79</item>
<item>80</item>
<item>81</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>5</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/>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>9</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>82</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.46</m_delay>
<m_topoIndex>6</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>idxCol</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>idxCol</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>83</item>
<item>84</item>
<item>86</item>
<item>87</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>8</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>exitcond</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>9</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>exitcond_fu_242_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>88</item>
<item>90</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.88</m_delay>
<m_topoIndex>9</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>idxCol_1</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>9</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>idxCol</originalName>
<rtlName>idxCol_1_fu_248_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>91</item>
<item>93</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.48</m_delay>
<m_topoIndex>10</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/>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>9</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>94</item>
<item>95</item>
<item>96</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>11</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>tmp_10</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>679</lineNumber>
<contextFuncName>read</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>711</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>read</second>
</first>
<second>679</second>
</item>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>11</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>98</item>
<item>99</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>12</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>tmp_11</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>679</lineNumber>
<contextFuncName>read</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>711</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>read</second>
</first>
<second>679</second>
</item>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>11</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>100</item>
<item>101</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>13</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>tmp_7</name>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>679</lineNumber>
<contextFuncName>read</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>711</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>read</second>
</first>
<second>679</second>
</item>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>11</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>102</item>
<item>103</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>14</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>tmp_1_cast</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_301_p00</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>104</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>16</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>tmp_2</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>doCorner_mac_mulabkb_U11</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>105</item>
<item>107</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.82</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>39</id>
<name>tmp_3_cast</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_309_p00</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>108</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>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_4</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>doCorner_mac_mulacud_U12</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>109</item>
<item>111</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.82</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>41</id>
<name>p_shl</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_shl_fu_260_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>113</item>
<item>114</item>
<item>116</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>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>p_shl_cast</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_shl_cast_fu_267_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>14</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>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>p_shl1</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_shl1_fu_271_p3</rtlName>
<coreName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>119</item>
<item>120</item>
<item>122</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>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>p_shl1_cast</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>p_shl1_cast_fu_278_p1</rtlName>
<coreName/>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>123</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>45</id>
<name>tmp_6</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_6_fu_282_p2</rtlName>
<coreName/>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>124</item>
<item>125</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.53</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>46</id>
<name>tmp_6_cast</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>126</item>
</oprand_edges>
<opcode>sext</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>tmp1</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>doCorner_mac_mulacud_U12</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>127</item>
<item>128</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>2.73</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>48</id>
<name>tmp_8</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>doCorner_mac_mulabkb_U11</rtlName>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>129</item>
<item>130</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>2.73</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>49</id>
<name>tmp_9</name>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp</originalName>
<rtlName>tmp_9_reg_350</rtlName>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>132</item>
<item>133</item>
<item>135</item>
<item>137</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>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name/>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>write</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>717</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>write</second>
</first>
<second>703</second>
</item>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>23</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>139</item>
<item>140</item>
<item>141</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>29</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/>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>write</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>717</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>write</second>
</first>
<second>703</second>
</item>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>23</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>142</item>
<item>143</item>
<item>144</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>30</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/>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>write</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>717</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>write</second>
</first>
<second>703</second>
</item>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>23</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>145</item>
<item>146</item>
<item>147</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>31</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/>
<fileName>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>703</lineNumber>
<contextFuncName>write</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>717</second>
</item>
<item>
<first>
<first>G:/Xilinx/Vivado/2018.3/common/technology/autopilot/hls/hls_video_core.h</first>
<second>write</second>
</first>
<second>703</second>
</item>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>24</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>148</item>
<item>149</item>
<item>150</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>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name/>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>9</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>151</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>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>67</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>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name/>
<fileName>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>rgb2gray</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\mi\Desktop\Programma\ZYNQ\XC7Z020_316_ES_ConerDetect\HLS</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>XC7Z020_316_ES_ConerDetect/code/CornerDetect.cpp</first>
<second>rgb2gray</second>
</first>
<second>27</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_41">
<Value>
<Obj>
<type>2</type>
<id>68</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_42">
<Value>
<Obj>
<type>2</type>
<id>74</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>768</content>
</item>
<item class_id_reference="16" object_id="_43">
<Value>
<Obj>
<type>2</type>
<id>77</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_44">
<Value>
<Obj>
<type>2</type>
<id>85</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_45">
<Value>
<Obj>
<type>2</type>
<id>89</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1024</content>
</item>
<item class_id_reference="16" object_id="_46">
<Value>
<Obj>
<type>2</type>
<id>92</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_47">
<Value>
<Obj>
<type>2</type>
<id>106</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>76</content>
</item>
<item class_id_reference="16" object_id="_48">
<Value>
<Obj>
<type>2</type>
<id>110</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>150</content>
</item>
<item class_id_reference="16" object_id="_49">
<Value>
<Obj>
<type>2</type>
<id>115</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_50">
<Value>
<Obj>
<type>2</type>
<id>121</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_51">
<Value>
<Obj>
<type>2</type>
<id>134</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_52">
<Value>
<Obj>
<type>2</type>
<id>136</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</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="_53">
<Obj>
<type>3</type>
<id>16</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_54">
<Obj>
<type>3</type>
<id>22</id>
<name>.loopexit</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>17</item>
<item>18</item>
<item>20</item>
<item>21</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_55">
<Obj>
<type>3</type>
<id>24</id>
<name>.preheader.preheader</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_56">
<Obj>
<type>3</type>
<id>30</id>
<name>.preheader</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<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="_57">
<Obj>
<type>3</type>
<id>61</id>
<name>operator>>.exit</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>21</count>
<item_version>0</item_version>
<item>33</item>
<item>34</item>
<item>35</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
<item>42</item>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>58</item>
<item>60</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_58">
<Obj>
<type>3</type>
<id>63</id>
<name>.loopexit.loopexit</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_59">
<Obj>
<type>3</type>
<id>65</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>67</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_60">
<id>66</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_61">
<id>67</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_62">
<id>69</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_63">
<id>70</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_64">
<id>71</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_65">
<id>72</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_66">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_67">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_68">
<id>76</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_69">
<id>78</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_70">
<id>79</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_71">
<id>80</id>
<edge_type>2</edge_type>
<source_obj>24</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_72">
<id>81</id>
<edge_type>2</edge_type>
<source_obj>65</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_73">
<id>82</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="_74">
<id>83</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="_75">
<id>84</id>
<edge_type>2</edge_type>
<source_obj>61</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_76">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_77">
<id>87</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="_78">
<id>88</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="_79">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_80">
<id>91</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="_81">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_82">
<id>94</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="_83">
<id>95</id>
<edge_type>2</edge_type>
<source_obj>61</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_84">
<id>96</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_85">
<id>99</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_86">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_87">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_88">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_89">
<id>105</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="_90">
<id>107</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_91">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_92">
<id>109</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="_93">
<id>111</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_94">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_95">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_96">
<id>117</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_97">
<id>120</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_98">
<id>122</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_99">
<id>123</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="_100">
<id>124</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_101">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_102">
<id>126</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="_103">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_104">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_105">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_106">
<id>130</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_107">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_108">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_109">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_110">
<id>140</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="_111">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_112">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_113">
<id>144</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_114">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_115">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_116">
<id>149</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_117">
<id>150</id>
<edge_type>1</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="_118">
<id>151</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_119">
<id>360</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_120">
<id>361</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_121">
<id>362</id>
<edge_type>2</edge_type>
<source_obj>22</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_122">
<id>363</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="_123">
<id>364</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_124">
<id>365</id>
<edge_type>2</edge_type>
<source_obj>30</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_125">
<id>366</id>
<edge_type>2</edge_type>
<source_obj>61</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_126">
<id>367</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>22</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="_127">
<mId>1</mId>
<mTag>rgb2gray</mTag>
<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>2360833</mMinLatency>
<mMaxLatency>2360833</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_128">
<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>16</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"/>
</item>
<item class_id_reference="22" object_id="_129">
<mId>3</mId>
<mTag>Loop 1</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>768</mMinTripCount>
<mMaxTripCount>768</mMaxTripCount>
<mMinLatency>2360832</mMinLatency>
<mMaxLatency>2360832</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_130">
<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>22</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"/>
</item>
<item class_id_reference="22" object_id="_131">
<mId>5</mId>
<mTag>Loop 1.1</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>61</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>1024</mMinTripCount>
<mMaxTripCount>1024</mMaxTripCount>
<mMinLatency>3072</mMinLatency>
<mMaxLatency>3072</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
<item class_id_reference="22" object_id="_132">
<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>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"/>
</item>
<item class_id_reference="22" object_id="_133">
<mId>7</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>65</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"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_134">
<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="_135">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_136">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_137">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_138">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_139">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_140">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_141">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_142">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_143">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_144">
<id>2</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_145">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_146">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_147">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_148">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_149">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_150">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_151">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_152">
<id>3</id>
<operations>
<count>12</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_153">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_154">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_155">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_156">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_157">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_158">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_159">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_160">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_161">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_162">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_163">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_164">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_165">
<id>4</id>
<operations>
<count>13</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_166">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_167">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_168">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_169">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_170">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_171">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_172">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_173">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_174">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_175">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_176">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_177">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_178">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_179">
<id>5</id>
<operations>
<count>11</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_180">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_181">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_182">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_183">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_184">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_185">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_186">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_187">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_188">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_189">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_190">
<id>60</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="_191">
<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="_192">
<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>18</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_193">
<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>26</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_194">
<inState>4</inState>
<outState>5</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="_195">
<inState>5</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="_196">
<inState>3</inState>
<outState>2</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>26</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_197">
<dp_component_resource class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_resource>
<dp_expression_resource>
<count>8</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>ap_block_state1 ( or ) </first>
<second class_id="39" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_block_state3 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_block_state5 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>exitcond1_fu_230_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>10</second>
</item>
<item>
<first>(1P1)</first>
<second>10</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>5</second>
</item>
</second>
</item>
<item>
<first>exitcond_fu_242_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>12</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>5</second>
</item>
</second>
</item>
<item>
<first>idxCol_1_fu_248_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>idxRow_1_fu_236_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>10</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>10</second>
</item>
</second>
</item>
<item>
<first>tmp_6_fu_282_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>14</second>
</item>
<item>
<first>(1P1)</first>
<second>14</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>14</second>
</item>
</second>
</item>
</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>12</count>
<item_version>0</item_version>
<item>
<first>ap_NS_fsm</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>6</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>6</second>
</item>
<item>
<first>LUT</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>ap_done</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>idxCol_reg_219</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>11</second>
</item>
<item>
<first>(2Count)</first>
<second>22</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>idxRow_reg_208</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>10</second>
</item>
<item>
<first>(2Count)</first>
<second>20</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>imgIn_data_stream_0_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>imgIn_data_stream_1_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>imgIn_data_stream_2_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>imgOut_1C_data_stream_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>imgOut_3C_data_stream_0_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>imgOut_3C_data_stream_1_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>imgOut_3C_data_stream_2_V_blk_n</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
<item>
<first>real_start</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0Size)</first>
<second>2</second>
</item>
<item>
<first>(1Bits)</first>
<second>1</second>
</item>
<item>
<first>(2Count)</first>
<second>2</second>
</item>
<item>
<first>LUT</first>
<second>3</second>
</item>
</second>
</item>
</dp_multiplexer_resource>
<dp_register_resource>
<count>11</count>
<item_version>0</item_version>
<item>
<first>ap_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>5</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>5</second>
</item>
</second>
</item>
<item>
<first>ap_done_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>idxCol_1_reg_329</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>idxCol_reg_219</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>idxRow_1_reg_321</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>10</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>10</second>
</item>
</second>
</item>
<item>
<first>idxRow_reg_208</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>10</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>10</second>
</item>
</second>
</item>
<item>
<first>start_once_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>tmp_10_reg_334</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>tmp_11_reg_339</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>tmp_7_reg_344</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>tmp_9_reg_350</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>2</count>
<item_version>0</item_version>
<item>
<first>doCorner_mac_mulabkb_U11</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>DSP48E</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>doCorner_mac_mulacud_U12</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>DSP48E</first>
<second>1</second>
</item>
</second>
</item>
</dp_dsp_resource>
<dp_component_map class_id="41" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_map>
<dp_expression_map>
<count>5</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>exitcond1_fu_230_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>exitcond_fu_242_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>idxCol_1_fu_248_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>idxRow_1_fu_236_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_6_fu_282_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
</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="43" tracking_level="0" version="0">
<count>33</count>
<item_version>0</item_version>
<item class_id="44" tracking_level="0" version="0">
<first>15</first>
<second class_id="45" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>18</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>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>28</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>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>37</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>3</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>43</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="46" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="47" tracking_level="0" version="0">
<first>16</first>
<second class_id="48" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>22</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>30</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>2</first>
<second>4</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="49" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="1" version="0" object_id="_198">
<region_name>hls_label_4</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</basic_blocks>
<nodes>
<count>4</count>
<item_version>0</item_version>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</item>
</nodes>
<anchor_node>56</anchor_node>
<region_type>1</region_type>
<interval>0</interval>
<pipe_depth>0</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="51" tracking_level="0" version="0">
<count>24</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>187</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>201</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>212</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>223</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>236</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>248</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>260</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>288</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>301</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>38</item>
<item>48</item>
</second>
</item>
<item>
<first>309</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>40</item>
<item>47</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="54" tracking_level="0" version="0">
<count>17</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>exitcond1_fu_230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>exitcond_fu_242</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>grp_fu_301</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>38</item>
<item>48</item>
</second>
</item>
<item>
<first>grp_fu_309</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>40</item>
<item>47</item>
</second>
</item>
<item>
<first>idxCol_1_fu_248</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>idxCol_phi_fu_223</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>idxRow_1_fu_236</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>idxRow_phi_fu_212</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>p_shl1_cast_fu_278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>p_shl1_fu_271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>p_shl_cast_fu_267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>p_shl_fu_260</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>tmp_1_cast_fu_254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>tmp_3_cast_fu_257</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>tmp_6_cast_fu_288</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_6_fu_282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>tmp_9_fu_292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</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>7</count>
<item_version>0</item_version>
<item>
<first>StgValue_48_write_fu_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>StgValue_49_write_fu_187</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>StgValue_50_write_fu_194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>StgValue_54_write_fu_201</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>tmp_10_read_fu_162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_11_read_fu_168</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_7_read_fu_174</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</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="56" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>8</count>
<item_version>0</item_version>
<item>
<first>208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>8</count>
<item_version>0</item_version>
<item>
<first>idxCol_1_reg_329</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>idxCol_reg_219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>idxRow_1_reg_321</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>idxRow_reg_208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>tmp_10_reg_334</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_11_reg_339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_7_reg_344</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>tmp_9_reg_350</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>2</count>
<item_version>0</item_version>
<item>
<first>idxCol_reg_219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>idxRow_reg_208</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="57" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="0" version="0">
<first>imgIn_data_stream_0_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>33</item>
</second>
</item>
</second>
</item>
<item>
<first>imgIn_data_stream_1_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>34</item>
</second>
</item>
</second>
</item>
<item>
<first>imgIn_data_stream_2_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>35</item>
</second>
</item>
</second>
</item>
<item>
<first>imgOut_1C_data_stream_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
</second>
</item>
<item>
<first>imgOut_3C_data_stream_0_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
</second>
</item>
<item>
<first>imgOut_3C_data_stream_1_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
</second>
</item>
<item>
<first>imgOut_3C_data_stream_2_V</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>
</dp_port_io_nodes>
<port2core class_id="59" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>1</first>
<second>FIFO</second>
</item>
<item>
<first>2</first>
<second>FIFO</second>
</item>
<item>
<first>3</first>
<second>FIFO</second>
</item>
<item>
<first>4</first>
<second>FIFO</second>
</item>
<item>
<first>5</first>
<second>FIFO</second>
</item>
<item>
<first>6</first>
<second>FIFO</second>
</item>
<item>
<first>7</first>
<second>FIFO</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 31.86817 | 111 | 0.459604 |
2faca180c3d7c06f52e6672ef560f210c217d01b | 10,661 | adb | Ada | src/asis/asis-text-set_get.adb | jquorning/dynamo | 10d68571476c270b8e45a9c5ef585fa9139b0d05 | [
"Apache-2.0"
] | 15 | 2015-01-18T23:04:19.000Z | 2022-03-01T20:27:08.000Z | src/asis/asis-text-set_get.adb | jquorning/dynamo | 10d68571476c270b8e45a9c5ef585fa9139b0d05 | [
"Apache-2.0"
] | 16 | 2018-06-10T07:09:30.000Z | 2022-03-26T18:28:40.000Z | src/asis/asis-text-set_get.adb | jquorning/dynamo | 10d68571476c270b8e45a9c5ef585fa9139b0d05 | [
"Apache-2.0"
] | 3 | 2015-11-11T18:00:14.000Z | 2022-01-30T23:08:45.000Z | ------------------------------------------------------------------------------
-- --
-- ASIS-for-GNAT IMPLEMENTATION COMPONENTS --
-- --
-- A S I S . T E X T . S E T _ G E T --
-- --
-- B o d y --
-- --
-- Copyright (C) 1995-2008, Free Software Foundation, Inc. --
-- --
-- ASIS-for-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 --
-- Software Foundation; either version 2, or (at your option) any later --
-- version. ASIS-for-GNAT is distributed in the hope that it will be use- --
-- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- --
-- CHANTABILITY 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 ASIS-for-GNAT; see file --
-- COPYING. If not, write to the Free Software Foundation, 59 Temple Place --
-- - Suite 330, Boston, MA 02111-1307, USA. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the --
-- Software Engineering Laboratory of the Swiss Federal Institute of --
-- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the --
-- Scientific Research Computer Center of Moscow State University (SRCC --
-- MSU), Russia, with funding partially provided by grants from the Swiss --
-- National Science Foundation and the Swiss Academy of Engineering --
-- Sciences. ASIS-for-GNAT is now maintained by Ada Core Technologies Inc --
-- (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
with Ada.Characters.Handling; use Ada.Characters.Handling;
with Asis.Set_Get; use Asis.Set_Get;
with A4G.A_Sinput; use A4G.A_Sinput;
with A4G.Contt; use A4G.Contt;
with A4G.Contt.TT; use A4G.Contt.TT;
with Sinput; use Sinput;
with Widechar; use Widechar;
package body Asis.Text.Set_Get is
---------
-- Get --
---------
function Line_Length (L : Line) return Character_Position is
begin
return L.Length;
end Line_Length;
function Line_Location (L : Line) return Source_Ptr is
begin
if not (L.Enclosing_Context = Get_Current_Cont and then
L.Enclosing_Tree = Get_Current_Tree)
then
Reset_Tree (L.Enclosing_Context, L.Enclosing_Tree);
end if;
return L.Sloc;
end Line_Location;
function Valid (L : Line) return Boolean is
begin
return Is_Opened (L.Enclosing_Context) and then
Later (Opened_At (L.Enclosing_Context), L.Obtained);
end Valid;
------------------------
-- Debug_Image (Span) --
------------------------
function Debug_Image (The_Span : Span) return String is
LT : String renames ASIS_Line_Terminator;
begin
return LT
& "Debug image for Asis.Text.Span:"
& LT
& "First Line : "
& Int'Image (Int (The_Span.First_Line))
& LT
& "First Column : "
& Int'Image (Int (The_Span.First_Column))
& LT
& "Last Line : "
& Int'Image (Int (The_Span.Last_Line))
& LT
& "Last Column : "
& Int'Image (Int (The_Span.Last_Column))
& LT
& LT;
end Debug_Image;
---------------------
-- Line_Wide_Image --
---------------------
function Line_Wide_Image (L : Line) return Wide_String is
begin
if Line_Length (L) = 0 then
return "";
end if;
declare
Result : Wide_String (1 .. Line_Length (L));
S : Source_Ptr := L.Sloc;
SFI : constant Source_File_Index := Get_Source_File_Index (S);
Src : constant Source_Buffer_Ptr := Source_Text (SFI);
Next_Ch : Char_Code;
Success : Boolean;
pragma Unreferenced (Success);
begin
for J in Result'Range loop
if Is_Start_Of_Wide_Char_For_ASIS (Src, S, L.Comment_Sloc) then
Scan_Wide (Src, S, Next_Ch, Success);
Result (J) := Wide_Character'Val (Next_Ch);
else
Result (J) := To_Wide_Character (Src (S));
S := S + 1;
end if;
end loop;
return Result;
end;
end Line_Wide_Image;
---------
-- Set --
---------
procedure Set_Line_Length (L : in out Line; N : Character_Position) is
begin
L.Length := N;
end Set_Line_Length;
procedure Set_Line_Location (L : in out Line; S : Source_Ptr) is
begin
L.Rel_Sloc := L.Rel_Sloc + (S - L.Sloc);
L.Sloc := S;
end Set_Line_Location;
---------------
-- Set_Lines --
---------------
procedure Set_Lines (LList : in out Line_List; El : Element) is
First_Line : constant Line_Number := LList'First;
Last_Line : constant Line_Number := LList'Last;
El_Sloc : constant Source_Ptr := Location (El);
-- This call to Location resets the tree for El, if needed;
-- and this makes all the routine "tree-swapping-safe"
Sloc_Move : constant Source_Ptr := Rel_Sloc (El) - El_Sloc;
-- Sloc_Move in fact is equal to - Sloc (Top (Enclosing_CU)),
-- so by adding Sloc_Move we can get relative Sloc for lines:
-- We define local variables for Element characteristics in order
-- not to compute this in the loop:
El_Encl_Unit : constant Unit_Id := Encl_Unit_Id (El);
El_Encl_Cont : constant Context_Id := Encl_Cont_Id (El);
El_Encl_Tree : constant Tree_Id := Encl_Tree (El);
El_Obtained : constant ASIS_OS_Time := Obtained (El);
SFI : constant Source_File_Index := Get_Source_File_Index (El_Sloc);
Src_First : constant Source_Ptr := Source_First (SFI);
Src : constant Source_Buffer_Ptr := Source_Text (SFI);
S : Source_Ptr;
Wide_Length : Character_Position;
-- Line length counted in wide characters
Comment_Pos : Source_Ptr;
-- Start of the comment in the next line image. Zero if there is no
-- comment as a part of the line image
begin
-- the only thing which requires special processing is
-- setting of the length of the last Line in LList if
-- this Line corresponds to the last line in the compilation
-- containing El.
-- We start from settings which do not require any
-- special processing. We take from Element all which can
-- be safely "transferred" into Lines. Note, that we know,
-- that El is valid, that is, the Context from which it had been
-- obtained was not closed after obtaining this Element. So we
-- simply copy the time when El was obtained in all the Lines
-- in Line list
for LN in First_Line .. Last_Line loop
LList (LN).Enclosing_Unit := El_Encl_Unit;
LList (LN).Enclosing_Context := El_Encl_Cont;
LList (LN).Enclosing_Tree := El_Encl_Tree;
LList (LN).Obtained := El_Obtained;
LList (LN).Sloc := Line_Start (Physical_Line_Number (LN), SFI);
LList (LN).Rel_Sloc := LList (LN).Sloc + Sloc_Move;
end loop;
-- Counting Line lengths. Firtst we count length in the internal
-- representation:
for LN in First_Line .. Last_Line - 1 loop
S := LList (LN + 1).Sloc - 1;
while S > Src_First
and then
Is_EOL_Char (Src (S))
and then
S >= LList (LN).Sloc
loop
S := S - 1;
end loop;
if S = Src_First then
-- Empty lines in the beginning of a source file
LList (LN).Length := 0;
else
LList (LN).Length :=
Character_Position (S - LList (LN).Sloc + 1);
end if;
end loop;
-- The special case of the last Line in the list:
S := LList (Last_Line).Sloc;
while S < Source_Last (SFI)
and then
not Is_EOL_Char (Src (S))
loop
S := S + 1;
end loop;
LList (Last_Line).Length :=
Character_Position (S - LList (Last_Line).Sloc);
-- Recompute line lengths, taking into account possible encodings of
-- upper half characters. The result should be the lengths of the lines
-- in the original source
for LN in First_Line .. Last_Line loop
if LList (LN).Length /= 0 then
Wide_Length := 0;
S := LList (LN).Sloc;
Comment_Pos := Comment_Beginning
(Src (S .. S + Source_Ptr (LList (LN).Length) - 1));
LList (LN).Comment_Sloc := Comment_Pos;
while S < LList (LN).Sloc + Source_Ptr (LList (LN).Length) loop
if Is_Start_Of_Wide_Char_For_ASIS (Src, S, Comment_Pos) then
Skip_Wide_For_ASIS (Src, S);
else
S := S + 1;
end if;
Wide_Length := Wide_Length + 1;
end loop;
LList (LN).Length := Wide_Length;
end if;
end loop;
end Set_Lines;
end Asis.Text.Set_Get;
| 37.671378 | 78 | 0.500047 |
a1346f3bb3e607f20b5eea3e31fc8860f24c0551 | 784,771 | adb | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-utf_32.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-utf_32.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-utf_32.adb | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . U T F _ 3 2 --
-- --
-- B o d y --
-- --
-- Copyright (C) 2005-2020, 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. --
-- --
------------------------------------------------------------------------------
pragma Compiler_Unit_Warning;
pragma Style_Checks (Off);
-- Allow long lines in this unit. Note this could be more specific, but we
-- keep this simple form because of bootstrap constraints ???
-- pragma Warnings (Off, "non-static constant in preelaborated unit");
-- We need this to be pure, and the three constants in question are not a
-- real problem, they are completely known at compile time. This pragma
-- is commented out for now, because we still want to be able to bootstrap
-- with old versions of the compiler that did not support this form. We
-- have added additional pragma Warnings (Off/On) for now ???
package body System.UTF_32 is
----------------------
-- Character Tables --
----------------------
-- Note these tables are derived from those given in AI-285. For details
-- see www.ada-auth.org/cgi-bin/cvsweb.cgi/AIs/AI-00285.TXT?rev=1.22.
type UTF_32_Range is record
Lo : UTF_32;
Hi : UTF_32;
end record;
type UTF_32_Ranges is array (Positive range <>) of UTF_32_Range;
-- The following array includes ranges for all codes with defined unicode
-- categories (a group of characters is in the same range if and only if
-- they share the same category, indicated in the comment).
-- Note that we do not try to take care of FFFE/FFFF cases in this table
Unicode_Ranges : constant UTF_32_Ranges := (
(16#00000#, 16#0001F#), -- (Cc) <control> .. <control>
(16#00020#, 16#00020#), -- (Zs) SPACE .. SPACE
(16#00021#, 16#00023#), -- (Po) EXCLAMATION MARK .. NUMBER SIGN
(16#00024#, 16#00024#), -- (Sc) DOLLAR SIGN .. DOLLAR SIGN
(16#00025#, 16#00027#), -- (Po) PERCENT SIGN .. APOSTROPHE
(16#00028#, 16#00028#), -- (Ps) LEFT PARENTHESIS .. LEFT PARENTHESIS
(16#00029#, 16#00029#), -- (Pe) RIGHT PARENTHESIS .. RIGHT PARENTHESIS
(16#0002A#, 16#0002A#), -- (Po) ASTERISK .. ASTERISK
(16#0002B#, 16#0002B#), -- (Sm) PLUS SIGN .. PLUS SIGN
(16#0002C#, 16#0002C#), -- (Po) COMMA .. COMMA
(16#0002D#, 16#0002D#), -- (Pd) HYPHEN-MINUS .. HYPHEN-MINUS
(16#0002E#, 16#0002F#), -- (Po) FULL STOP .. SOLIDUS
(16#00030#, 16#00039#), -- (Nd) DIGIT ZERO .. DIGIT NINE
(16#0003A#, 16#0003B#), -- (Po) COLON .. SEMICOLON
(16#0003C#, 16#0003E#), -- (Sm) LESS-THAN SIGN .. GREATER-THAN SIGN
(16#0003F#, 16#00040#), -- (Po) QUESTION MARK .. COMMERCIAL AT
(16#00041#, 16#0005A#), -- (Lu) LATIN CAPITAL LETTER A .. LATIN CAPITAL LETTER Z
(16#0005B#, 16#0005B#), -- (Ps) LEFT SQUARE BRACKET .. LEFT SQUARE BRACKET
(16#0005C#, 16#0005C#), -- (Po) REVERSE SOLIDUS .. REVERSE SOLIDUS
(16#0005D#, 16#0005D#), -- (Pe) RIGHT SQUARE BRACKET .. RIGHT SQUARE BRACKET
(16#0005E#, 16#0005E#), -- (Sk) CIRCUMFLEX ACCENT .. CIRCUMFLEX ACCENT
(16#0005F#, 16#0005F#), -- (Pc) LOW LINE .. LOW LINE
(16#00060#, 16#00060#), -- (Sk) GRAVE ACCENT .. GRAVE ACCENT
(16#00061#, 16#0007A#), -- (Ll) LATIN SMALL LETTER A .. LATIN SMALL LETTER Z
(16#0007B#, 16#0007B#), -- (Ps) LEFT CURLY BRACKET .. LEFT CURLY BRACKET
(16#0007C#, 16#0007C#), -- (Sm) VERTICAL LINE .. VERTICAL LINE
(16#0007D#, 16#0007D#), -- (Pe) RIGHT CURLY BRACKET .. RIGHT CURLY BRACKET
(16#0007E#, 16#0007E#), -- (Sm) TILDE .. TILDE
(16#0007F#, 16#0009F#), -- (Cc) <control> .. <control>
(16#000A0#, 16#000A0#), -- (Zs) NO-BREAK SPACE .. NO-BREAK SPACE
(16#000A1#, 16#000A1#), -- (Po) INVERTED EXCLAMATION MARK .. INVERTED EXCLAMATION MARK
(16#000A2#, 16#000A5#), -- (Sc) CENT SIGN .. YEN SIGN
(16#000A6#, 16#000A7#), -- (So) BROKEN BAR .. SECTION SIGN
(16#000A8#, 16#000A8#), -- (Sk) DIAERESIS .. DIAERESIS
(16#000A9#, 16#000A9#), -- (So) COPYRIGHT SIGN .. COPYRIGHT SIGN
(16#000AA#, 16#000AA#), -- (Ll) FEMININE ORDINAL INDICATOR .. FEMININE ORDINAL INDICATOR
(16#000AB#, 16#000AB#), -- (Pi) LEFT-POINTING DOUBLE ANGLE QUOTATION MARK .. LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
(16#000AC#, 16#000AC#), -- (Sm) NOT SIGN .. NOT SIGN
(16#000AD#, 16#000AD#), -- (Cf) SOFT HYPHEN .. SOFT HYPHEN
(16#000AE#, 16#000AE#), -- (So) REGISTERED SIGN .. REGISTERED SIGN
(16#000AF#, 16#000AF#), -- (Sk) MACRON .. MACRON
(16#000B0#, 16#000B0#), -- (So) DEGREE SIGN .. DEGREE SIGN
(16#000B1#, 16#000B1#), -- (Sm) PLUS-MINUS SIGN .. PLUS-MINUS SIGN
(16#000B2#, 16#000B3#), -- (No) SUPERSCRIPT TWO .. SUPERSCRIPT THREE
(16#000B4#, 16#000B4#), -- (Sk) ACUTE ACCENT .. ACUTE ACCENT
(16#000B5#, 16#000B5#), -- (Ll) MICRO SIGN .. MICRO SIGN
(16#000B6#, 16#000B6#), -- (So) PILCROW SIGN .. PILCROW SIGN
(16#000B7#, 16#000B7#), -- (Po) MIDDLE DOT .. MIDDLE DOT
(16#000B8#, 16#000B8#), -- (Sk) CEDILLA .. CEDILLA
(16#000B9#, 16#000B9#), -- (No) SUPERSCRIPT ONE .. SUPERSCRIPT ONE
(16#000BA#, 16#000BA#), -- (Ll) MASCULINE ORDINAL INDICATOR .. MASCULINE ORDINAL INDICATOR
(16#000BB#, 16#000BB#), -- (Pf) RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK .. RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
(16#000BC#, 16#000BE#), -- (No) VULGAR FRACTION ONE QUARTER .. VULGAR FRACTION THREE QUARTERS
(16#000BF#, 16#000BF#), -- (Po) INVERTED QUESTION MARK .. INVERTED QUESTION MARK
(16#000C0#, 16#000D6#), -- (Lu) LATIN CAPITAL LETTER A WITH GRAVE .. LATIN CAPITAL LETTER O WITH DIAERESIS
(16#000D7#, 16#000D7#), -- (Sm) MULTIPLICATION SIGN .. MULTIPLICATION SIGN
(16#000D8#, 16#000DE#), -- (Lu) LATIN CAPITAL LETTER O WITH STROKE .. LATIN CAPITAL LETTER THORN
(16#000DF#, 16#000F6#), -- (Ll) LATIN SMALL LETTER SHARP S .. LATIN SMALL LETTER O WITH DIAERESIS
(16#000F7#, 16#000F7#), -- (Sm) DIVISION SIGN .. DIVISION SIGN
(16#000F8#, 16#000FF#), -- (Ll) LATIN SMALL LETTER O WITH STROKE .. LATIN SMALL LETTER Y WITH DIAERESIS
(16#00100#, 16#00100#), -- (Lu) LATIN CAPITAL LETTER A WITH MACRON .. LATIN CAPITAL LETTER A WITH MACRON
(16#00101#, 16#00101#), -- (Ll) LATIN SMALL LETTER A WITH MACRON .. LATIN SMALL LETTER A WITH MACRON
(16#00102#, 16#00102#), -- (Lu) LATIN CAPITAL LETTER A WITH BREVE .. LATIN CAPITAL LETTER A WITH BREVE
(16#00103#, 16#00103#), -- (Ll) LATIN SMALL LETTER A WITH BREVE .. LATIN SMALL LETTER A WITH BREVE
(16#00104#, 16#00104#), -- (Lu) LATIN CAPITAL LETTER A WITH OGONEK .. LATIN CAPITAL LETTER A WITH OGONEK
(16#00105#, 16#00105#), -- (Ll) LATIN SMALL LETTER A WITH OGONEK .. LATIN SMALL LETTER A WITH OGONEK
(16#00106#, 16#00106#), -- (Lu) LATIN CAPITAL LETTER C WITH ACUTE .. LATIN CAPITAL LETTER C WITH ACUTE
(16#00107#, 16#00107#), -- (Ll) LATIN SMALL LETTER C WITH ACUTE .. LATIN SMALL LETTER C WITH ACUTE
(16#00108#, 16#00108#), -- (Lu) LATIN CAPITAL LETTER C WITH CIRCUMFLEX .. LATIN CAPITAL LETTER C WITH CIRCUMFLEX
(16#00109#, 16#00109#), -- (Ll) LATIN SMALL LETTER C WITH CIRCUMFLEX .. LATIN SMALL LETTER C WITH CIRCUMFLEX
(16#0010A#, 16#0010A#), -- (Lu) LATIN CAPITAL LETTER C WITH DOT ABOVE .. LATIN CAPITAL LETTER C WITH DOT ABOVE
(16#0010B#, 16#0010B#), -- (Ll) LATIN SMALL LETTER C WITH DOT ABOVE .. LATIN SMALL LETTER C WITH DOT ABOVE
(16#0010C#, 16#0010C#), -- (Lu) LATIN CAPITAL LETTER C WITH CARON .. LATIN CAPITAL LETTER C WITH CARON
(16#0010D#, 16#0010D#), -- (Ll) LATIN SMALL LETTER C WITH CARON .. LATIN SMALL LETTER C WITH CARON
(16#0010E#, 16#0010E#), -- (Lu) LATIN CAPITAL LETTER D WITH CARON .. LATIN CAPITAL LETTER D WITH CARON
(16#0010F#, 16#0010F#), -- (Ll) LATIN SMALL LETTER D WITH CARON .. LATIN SMALL LETTER D WITH CARON
(16#00110#, 16#00110#), -- (Lu) LATIN CAPITAL LETTER D WITH STROKE .. LATIN CAPITAL LETTER D WITH STROKE
(16#00111#, 16#00111#), -- (Ll) LATIN SMALL LETTER D WITH STROKE .. LATIN SMALL LETTER D WITH STROKE
(16#00112#, 16#00112#), -- (Lu) LATIN CAPITAL LETTER E WITH MACRON .. LATIN CAPITAL LETTER E WITH MACRON
(16#00113#, 16#00113#), -- (Ll) LATIN SMALL LETTER E WITH MACRON .. LATIN SMALL LETTER E WITH MACRON
(16#00114#, 16#00114#), -- (Lu) LATIN CAPITAL LETTER E WITH BREVE .. LATIN CAPITAL LETTER E WITH BREVE
(16#00115#, 16#00115#), -- (Ll) LATIN SMALL LETTER E WITH BREVE .. LATIN SMALL LETTER E WITH BREVE
(16#00116#, 16#00116#), -- (Lu) LATIN CAPITAL LETTER E WITH DOT ABOVE .. LATIN CAPITAL LETTER E WITH DOT ABOVE
(16#00117#, 16#00117#), -- (Ll) LATIN SMALL LETTER E WITH DOT ABOVE .. LATIN SMALL LETTER E WITH DOT ABOVE
(16#00118#, 16#00118#), -- (Lu) LATIN CAPITAL LETTER E WITH OGONEK .. LATIN CAPITAL LETTER E WITH OGONEK
(16#00119#, 16#00119#), -- (Ll) LATIN SMALL LETTER E WITH OGONEK .. LATIN SMALL LETTER E WITH OGONEK
(16#0011A#, 16#0011A#), -- (Lu) LATIN CAPITAL LETTER E WITH CARON .. LATIN CAPITAL LETTER E WITH CARON
(16#0011B#, 16#0011B#), -- (Ll) LATIN SMALL LETTER E WITH CARON .. LATIN SMALL LETTER E WITH CARON
(16#0011C#, 16#0011C#), -- (Lu) LATIN CAPITAL LETTER G WITH CIRCUMFLEX .. LATIN CAPITAL LETTER G WITH CIRCUMFLEX
(16#0011D#, 16#0011D#), -- (Ll) LATIN SMALL LETTER G WITH CIRCUMFLEX .. LATIN SMALL LETTER G WITH CIRCUMFLEX
(16#0011E#, 16#0011E#), -- (Lu) LATIN CAPITAL LETTER G WITH BREVE .. LATIN CAPITAL LETTER G WITH BREVE
(16#0011F#, 16#0011F#), -- (Ll) LATIN SMALL LETTER G WITH BREVE .. LATIN SMALL LETTER G WITH BREVE
(16#00120#, 16#00120#), -- (Lu) LATIN CAPITAL LETTER G WITH DOT ABOVE .. LATIN CAPITAL LETTER G WITH DOT ABOVE
(16#00121#, 16#00121#), -- (Ll) LATIN SMALL LETTER G WITH DOT ABOVE .. LATIN SMALL LETTER G WITH DOT ABOVE
(16#00122#, 16#00122#), -- (Lu) LATIN CAPITAL LETTER G WITH CEDILLA .. LATIN CAPITAL LETTER G WITH CEDILLA
(16#00123#, 16#00123#), -- (Ll) LATIN SMALL LETTER G WITH CEDILLA .. LATIN SMALL LETTER G WITH CEDILLA
(16#00124#, 16#00124#), -- (Lu) LATIN CAPITAL LETTER H WITH CIRCUMFLEX .. LATIN CAPITAL LETTER H WITH CIRCUMFLEX
(16#00125#, 16#00125#), -- (Ll) LATIN SMALL LETTER H WITH CIRCUMFLEX .. LATIN SMALL LETTER H WITH CIRCUMFLEX
(16#00126#, 16#00126#), -- (Lu) LATIN CAPITAL LETTER H WITH STROKE .. LATIN CAPITAL LETTER H WITH STROKE
(16#00127#, 16#00127#), -- (Ll) LATIN SMALL LETTER H WITH STROKE .. LATIN SMALL LETTER H WITH STROKE
(16#00128#, 16#00128#), -- (Lu) LATIN CAPITAL LETTER I WITH TILDE .. LATIN CAPITAL LETTER I WITH TILDE
(16#00129#, 16#00129#), -- (Ll) LATIN SMALL LETTER I WITH TILDE .. LATIN SMALL LETTER I WITH TILDE
(16#0012A#, 16#0012A#), -- (Lu) LATIN CAPITAL LETTER I WITH MACRON .. LATIN CAPITAL LETTER I WITH MACRON
(16#0012B#, 16#0012B#), -- (Ll) LATIN SMALL LETTER I WITH MACRON .. LATIN SMALL LETTER I WITH MACRON
(16#0012C#, 16#0012C#), -- (Lu) LATIN CAPITAL LETTER I WITH BREVE .. LATIN CAPITAL LETTER I WITH BREVE
(16#0012D#, 16#0012D#), -- (Ll) LATIN SMALL LETTER I WITH BREVE .. LATIN SMALL LETTER I WITH BREVE
(16#0012E#, 16#0012E#), -- (Lu) LATIN CAPITAL LETTER I WITH OGONEK .. LATIN CAPITAL LETTER I WITH OGONEK
(16#0012F#, 16#0012F#), -- (Ll) LATIN SMALL LETTER I WITH OGONEK .. LATIN SMALL LETTER I WITH OGONEK
(16#00130#, 16#00130#), -- (Lu) LATIN CAPITAL LETTER I WITH DOT ABOVE .. LATIN CAPITAL LETTER I WITH DOT ABOVE
(16#00131#, 16#00131#), -- (Ll) LATIN SMALL LETTER DOTLESS I .. LATIN SMALL LETTER DOTLESS I
(16#00132#, 16#00132#), -- (Lu) LATIN CAPITAL LIGATURE IJ .. LATIN CAPITAL LIGATURE IJ
(16#00133#, 16#00133#), -- (Ll) LATIN SMALL LIGATURE IJ .. LATIN SMALL LIGATURE IJ
(16#00134#, 16#00134#), -- (Lu) LATIN CAPITAL LETTER J WITH CIRCUMFLEX .. LATIN CAPITAL LETTER J WITH CIRCUMFLEX
(16#00135#, 16#00135#), -- (Ll) LATIN SMALL LETTER J WITH CIRCUMFLEX .. LATIN SMALL LETTER J WITH CIRCUMFLEX
(16#00136#, 16#00136#), -- (Lu) LATIN CAPITAL LETTER K WITH CEDILLA .. LATIN CAPITAL LETTER K WITH CEDILLA
(16#00137#, 16#00138#), -- (Ll) LATIN SMALL LETTER K WITH CEDILLA .. LATIN SMALL LETTER KRA
(16#00139#, 16#00139#), -- (Lu) LATIN CAPITAL LETTER L WITH ACUTE .. LATIN CAPITAL LETTER L WITH ACUTE
(16#0013A#, 16#0013A#), -- (Ll) LATIN SMALL LETTER L WITH ACUTE .. LATIN SMALL LETTER L WITH ACUTE
(16#0013B#, 16#0013B#), -- (Lu) LATIN CAPITAL LETTER L WITH CEDILLA .. LATIN CAPITAL LETTER L WITH CEDILLA
(16#0013C#, 16#0013C#), -- (Ll) LATIN SMALL LETTER L WITH CEDILLA .. LATIN SMALL LETTER L WITH CEDILLA
(16#0013D#, 16#0013D#), -- (Lu) LATIN CAPITAL LETTER L WITH CARON .. LATIN CAPITAL LETTER L WITH CARON
(16#0013E#, 16#0013E#), -- (Ll) LATIN SMALL LETTER L WITH CARON .. LATIN SMALL LETTER L WITH CARON
(16#0013F#, 16#0013F#), -- (Lu) LATIN CAPITAL LETTER L WITH MIDDLE DOT .. LATIN CAPITAL LETTER L WITH MIDDLE DOT
(16#00140#, 16#00140#), -- (Ll) LATIN SMALL LETTER L WITH MIDDLE DOT .. LATIN SMALL LETTER L WITH MIDDLE DOT
(16#00141#, 16#00141#), -- (Lu) LATIN CAPITAL LETTER L WITH STROKE .. LATIN CAPITAL LETTER L WITH STROKE
(16#00142#, 16#00142#), -- (Ll) LATIN SMALL LETTER L WITH STROKE .. LATIN SMALL LETTER L WITH STROKE
(16#00143#, 16#00143#), -- (Lu) LATIN CAPITAL LETTER N WITH ACUTE .. LATIN CAPITAL LETTER N WITH ACUTE
(16#00144#, 16#00144#), -- (Ll) LATIN SMALL LETTER N WITH ACUTE .. LATIN SMALL LETTER N WITH ACUTE
(16#00145#, 16#00145#), -- (Lu) LATIN CAPITAL LETTER N WITH CEDILLA .. LATIN CAPITAL LETTER N WITH CEDILLA
(16#00146#, 16#00146#), -- (Ll) LATIN SMALL LETTER N WITH CEDILLA .. LATIN SMALL LETTER N WITH CEDILLA
(16#00147#, 16#00147#), -- (Lu) LATIN CAPITAL LETTER N WITH CARON .. LATIN CAPITAL LETTER N WITH CARON
(16#00148#, 16#00149#), -- (Ll) LATIN SMALL LETTER N WITH CARON .. LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
(16#0014A#, 16#0014A#), -- (Lu) LATIN CAPITAL LETTER ENG .. LATIN CAPITAL LETTER ENG
(16#0014B#, 16#0014B#), -- (Ll) LATIN SMALL LETTER ENG .. LATIN SMALL LETTER ENG
(16#0014C#, 16#0014C#), -- (Lu) LATIN CAPITAL LETTER O WITH MACRON .. LATIN CAPITAL LETTER O WITH MACRON
(16#0014D#, 16#0014D#), -- (Ll) LATIN SMALL LETTER O WITH MACRON .. LATIN SMALL LETTER O WITH MACRON
(16#0014E#, 16#0014E#), -- (Lu) LATIN CAPITAL LETTER O WITH BREVE .. LATIN CAPITAL LETTER O WITH BREVE
(16#0014F#, 16#0014F#), -- (Ll) LATIN SMALL LETTER O WITH BREVE .. LATIN SMALL LETTER O WITH BREVE
(16#00150#, 16#00150#), -- (Lu) LATIN CAPITAL LETTER O WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
(16#00151#, 16#00151#), -- (Ll) LATIN SMALL LETTER O WITH DOUBLE ACUTE .. LATIN SMALL LETTER O WITH DOUBLE ACUTE
(16#00152#, 16#00152#), -- (Lu) LATIN CAPITAL LIGATURE OE .. LATIN CAPITAL LIGATURE OE
(16#00153#, 16#00153#), -- (Ll) LATIN SMALL LIGATURE OE .. LATIN SMALL LIGATURE OE
(16#00154#, 16#00154#), -- (Lu) LATIN CAPITAL LETTER R WITH ACUTE .. LATIN CAPITAL LETTER R WITH ACUTE
(16#00155#, 16#00155#), -- (Ll) LATIN SMALL LETTER R WITH ACUTE .. LATIN SMALL LETTER R WITH ACUTE
(16#00156#, 16#00156#), -- (Lu) LATIN CAPITAL LETTER R WITH CEDILLA .. LATIN CAPITAL LETTER R WITH CEDILLA
(16#00157#, 16#00157#), -- (Ll) LATIN SMALL LETTER R WITH CEDILLA .. LATIN SMALL LETTER R WITH CEDILLA
(16#00158#, 16#00158#), -- (Lu) LATIN CAPITAL LETTER R WITH CARON .. LATIN CAPITAL LETTER R WITH CARON
(16#00159#, 16#00159#), -- (Ll) LATIN SMALL LETTER R WITH CARON .. LATIN SMALL LETTER R WITH CARON
(16#0015A#, 16#0015A#), -- (Lu) LATIN CAPITAL LETTER S WITH ACUTE .. LATIN CAPITAL LETTER S WITH ACUTE
(16#0015B#, 16#0015B#), -- (Ll) LATIN SMALL LETTER S WITH ACUTE .. LATIN SMALL LETTER S WITH ACUTE
(16#0015C#, 16#0015C#), -- (Lu) LATIN CAPITAL LETTER S WITH CIRCUMFLEX .. LATIN CAPITAL LETTER S WITH CIRCUMFLEX
(16#0015D#, 16#0015D#), -- (Ll) LATIN SMALL LETTER S WITH CIRCUMFLEX .. LATIN SMALL LETTER S WITH CIRCUMFLEX
(16#0015E#, 16#0015E#), -- (Lu) LATIN CAPITAL LETTER S WITH CEDILLA .. LATIN CAPITAL LETTER S WITH CEDILLA
(16#0015F#, 16#0015F#), -- (Ll) LATIN SMALL LETTER S WITH CEDILLA .. LATIN SMALL LETTER S WITH CEDILLA
(16#00160#, 16#00160#), -- (Lu) LATIN CAPITAL LETTER S WITH CARON .. LATIN CAPITAL LETTER S WITH CARON
(16#00161#, 16#00161#), -- (Ll) LATIN SMALL LETTER S WITH CARON .. LATIN SMALL LETTER S WITH CARON
(16#00162#, 16#00162#), -- (Lu) LATIN CAPITAL LETTER T WITH CEDILLA .. LATIN CAPITAL LETTER T WITH CEDILLA
(16#00163#, 16#00163#), -- (Ll) LATIN SMALL LETTER T WITH CEDILLA .. LATIN SMALL LETTER T WITH CEDILLA
(16#00164#, 16#00164#), -- (Lu) LATIN CAPITAL LETTER T WITH CARON .. LATIN CAPITAL LETTER T WITH CARON
(16#00165#, 16#00165#), -- (Ll) LATIN SMALL LETTER T WITH CARON .. LATIN SMALL LETTER T WITH CARON
(16#00166#, 16#00166#), -- (Lu) LATIN CAPITAL LETTER T WITH STROKE .. LATIN CAPITAL LETTER T WITH STROKE
(16#00167#, 16#00167#), -- (Ll) LATIN SMALL LETTER T WITH STROKE .. LATIN SMALL LETTER T WITH STROKE
(16#00168#, 16#00168#), -- (Lu) LATIN CAPITAL LETTER U WITH TILDE .. LATIN CAPITAL LETTER U WITH TILDE
(16#00169#, 16#00169#), -- (Ll) LATIN SMALL LETTER U WITH TILDE .. LATIN SMALL LETTER U WITH TILDE
(16#0016A#, 16#0016A#), -- (Lu) LATIN CAPITAL LETTER U WITH MACRON .. LATIN CAPITAL LETTER U WITH MACRON
(16#0016B#, 16#0016B#), -- (Ll) LATIN SMALL LETTER U WITH MACRON .. LATIN SMALL LETTER U WITH MACRON
(16#0016C#, 16#0016C#), -- (Lu) LATIN CAPITAL LETTER U WITH BREVE .. LATIN CAPITAL LETTER U WITH BREVE
(16#0016D#, 16#0016D#), -- (Ll) LATIN SMALL LETTER U WITH BREVE .. LATIN SMALL LETTER U WITH BREVE
(16#0016E#, 16#0016E#), -- (Lu) LATIN CAPITAL LETTER U WITH RING ABOVE .. LATIN CAPITAL LETTER U WITH RING ABOVE
(16#0016F#, 16#0016F#), -- (Ll) LATIN SMALL LETTER U WITH RING ABOVE .. LATIN SMALL LETTER U WITH RING ABOVE
(16#00170#, 16#00170#), -- (Lu) LATIN CAPITAL LETTER U WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER U WITH DOUBLE ACUTE
(16#00171#, 16#00171#), -- (Ll) LATIN SMALL LETTER U WITH DOUBLE ACUTE .. LATIN SMALL LETTER U WITH DOUBLE ACUTE
(16#00172#, 16#00172#), -- (Lu) LATIN CAPITAL LETTER U WITH OGONEK .. LATIN CAPITAL LETTER U WITH OGONEK
(16#00173#, 16#00173#), -- (Ll) LATIN SMALL LETTER U WITH OGONEK .. LATIN SMALL LETTER U WITH OGONEK
(16#00174#, 16#00174#), -- (Lu) LATIN CAPITAL LETTER W WITH CIRCUMFLEX .. LATIN CAPITAL LETTER W WITH CIRCUMFLEX
(16#00175#, 16#00175#), -- (Ll) LATIN SMALL LETTER W WITH CIRCUMFLEX .. LATIN SMALL LETTER W WITH CIRCUMFLEX
(16#00176#, 16#00176#), -- (Lu) LATIN CAPITAL LETTER Y WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
(16#00177#, 16#00177#), -- (Ll) LATIN SMALL LETTER Y WITH CIRCUMFLEX .. LATIN SMALL LETTER Y WITH CIRCUMFLEX
(16#00178#, 16#00179#), -- (Lu) LATIN CAPITAL LETTER Y WITH DIAERESIS .. LATIN CAPITAL LETTER Z WITH ACUTE
(16#0017A#, 16#0017A#), -- (Ll) LATIN SMALL LETTER Z WITH ACUTE .. LATIN SMALL LETTER Z WITH ACUTE
(16#0017B#, 16#0017B#), -- (Lu) LATIN CAPITAL LETTER Z WITH DOT ABOVE .. LATIN CAPITAL LETTER Z WITH DOT ABOVE
(16#0017C#, 16#0017C#), -- (Ll) LATIN SMALL LETTER Z WITH DOT ABOVE .. LATIN SMALL LETTER Z WITH DOT ABOVE
(16#0017D#, 16#0017D#), -- (Lu) LATIN CAPITAL LETTER Z WITH CARON .. LATIN CAPITAL LETTER Z WITH CARON
(16#0017E#, 16#00180#), -- (Ll) LATIN SMALL LETTER Z WITH CARON .. LATIN SMALL LETTER B WITH STROKE
(16#00181#, 16#00182#), -- (Lu) LATIN CAPITAL LETTER B WITH HOOK .. LATIN CAPITAL LETTER B WITH TOPBAR
(16#00183#, 16#00183#), -- (Ll) LATIN SMALL LETTER B WITH TOPBAR .. LATIN SMALL LETTER B WITH TOPBAR
(16#00184#, 16#00184#), -- (Lu) LATIN CAPITAL LETTER TONE SIX .. LATIN CAPITAL LETTER TONE SIX
(16#00185#, 16#00185#), -- (Ll) LATIN SMALL LETTER TONE SIX .. LATIN SMALL LETTER TONE SIX
(16#00186#, 16#00187#), -- (Lu) LATIN CAPITAL LETTER OPEN O .. LATIN CAPITAL LETTER C WITH HOOK
(16#00188#, 16#00188#), -- (Ll) LATIN SMALL LETTER C WITH HOOK .. LATIN SMALL LETTER C WITH HOOK
(16#00189#, 16#0018B#), -- (Lu) LATIN CAPITAL LETTER AFRICAN D .. LATIN CAPITAL LETTER D WITH TOPBAR
(16#0018C#, 16#0018D#), -- (Ll) LATIN SMALL LETTER D WITH TOPBAR .. LATIN SMALL LETTER TURNED DELTA
(16#0018E#, 16#00191#), -- (Lu) LATIN CAPITAL LETTER REVERSED E .. LATIN CAPITAL LETTER F WITH HOOK
(16#00192#, 16#00192#), -- (Ll) LATIN SMALL LETTER F WITH HOOK .. LATIN SMALL LETTER F WITH HOOK
(16#00193#, 16#00194#), -- (Lu) LATIN CAPITAL LETTER G WITH HOOK .. LATIN CAPITAL LETTER GAMMA
(16#00195#, 16#00195#), -- (Ll) LATIN SMALL LETTER HV .. LATIN SMALL LETTER HV
(16#00196#, 16#00198#), -- (Lu) LATIN CAPITAL LETTER IOTA .. LATIN CAPITAL LETTER K WITH HOOK
(16#00199#, 16#0019B#), -- (Ll) LATIN SMALL LETTER K WITH HOOK .. LATIN SMALL LETTER LAMBDA WITH STROKE
(16#0019C#, 16#0019D#), -- (Lu) LATIN CAPITAL LETTER TURNED M .. LATIN CAPITAL LETTER N WITH LEFT HOOK
(16#0019E#, 16#0019E#), -- (Ll) LATIN SMALL LETTER N WITH LONG RIGHT LEG .. LATIN SMALL LETTER N WITH LONG RIGHT LEG
(16#0019F#, 16#001A0#), -- (Lu) LATIN CAPITAL LETTER O WITH MIDDLE TILDE .. LATIN CAPITAL LETTER O WITH HORN
(16#001A1#, 16#001A1#), -- (Ll) LATIN SMALL LETTER O WITH HORN .. LATIN SMALL LETTER O WITH HORN
(16#001A2#, 16#001A2#), -- (Lu) LATIN CAPITAL LETTER OI .. LATIN CAPITAL LETTER OI
(16#001A3#, 16#001A3#), -- (Ll) LATIN SMALL LETTER OI .. LATIN SMALL LETTER OI
(16#001A4#, 16#001A4#), -- (Lu) LATIN CAPITAL LETTER P WITH HOOK .. LATIN CAPITAL LETTER P WITH HOOK
(16#001A5#, 16#001A5#), -- (Ll) LATIN SMALL LETTER P WITH HOOK .. LATIN SMALL LETTER P WITH HOOK
(16#001A6#, 16#001A7#), -- (Lu) LATIN LETTER YR .. LATIN CAPITAL LETTER TONE TWO
(16#001A8#, 16#001A8#), -- (Ll) LATIN SMALL LETTER TONE TWO .. LATIN SMALL LETTER TONE TWO
(16#001A9#, 16#001A9#), -- (Lu) LATIN CAPITAL LETTER ESH .. LATIN CAPITAL LETTER ESH
(16#001AA#, 16#001AB#), -- (Ll) LATIN LETTER REVERSED ESH LOOP .. LATIN SMALL LETTER T WITH PALATAL HOOK
(16#001AC#, 16#001AC#), -- (Lu) LATIN CAPITAL LETTER T WITH HOOK .. LATIN CAPITAL LETTER T WITH HOOK
(16#001AD#, 16#001AD#), -- (Ll) LATIN SMALL LETTER T WITH HOOK .. LATIN SMALL LETTER T WITH HOOK
(16#001AE#, 16#001AF#), -- (Lu) LATIN CAPITAL LETTER T WITH RETROFLEX HOOK .. LATIN CAPITAL LETTER U WITH HORN
(16#001B0#, 16#001B0#), -- (Ll) LATIN SMALL LETTER U WITH HORN .. LATIN SMALL LETTER U WITH HORN
(16#001B1#, 16#001B3#), -- (Lu) LATIN CAPITAL LETTER UPSILON .. LATIN CAPITAL LETTER Y WITH HOOK
(16#001B4#, 16#001B4#), -- (Ll) LATIN SMALL LETTER Y WITH HOOK .. LATIN SMALL LETTER Y WITH HOOK
(16#001B5#, 16#001B5#), -- (Lu) LATIN CAPITAL LETTER Z WITH STROKE .. LATIN CAPITAL LETTER Z WITH STROKE
(16#001B6#, 16#001B6#), -- (Ll) LATIN SMALL LETTER Z WITH STROKE .. LATIN SMALL LETTER Z WITH STROKE
(16#001B7#, 16#001B8#), -- (Lu) LATIN CAPITAL LETTER EZH .. LATIN CAPITAL LETTER EZH REVERSED
(16#001B9#, 16#001BA#), -- (Ll) LATIN SMALL LETTER EZH REVERSED .. LATIN SMALL LETTER EZH WITH TAIL
(16#001BB#, 16#001BB#), -- (Lo) LATIN LETTER TWO WITH STROKE .. LATIN LETTER TWO WITH STROKE
(16#001BC#, 16#001BC#), -- (Lu) LATIN CAPITAL LETTER TONE FIVE .. LATIN CAPITAL LETTER TONE FIVE
(16#001BD#, 16#001BF#), -- (Ll) LATIN SMALL LETTER TONE FIVE .. LATIN LETTER WYNN
(16#001C0#, 16#001C3#), -- (Lo) LATIN LETTER DENTAL CLICK .. LATIN LETTER RETROFLEX CLICK
(16#001C4#, 16#001C4#), -- (Lu) LATIN CAPITAL LETTER DZ WITH CARON .. LATIN CAPITAL LETTER DZ WITH CARON
(16#001C5#, 16#001C5#), -- (Lt) LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON .. LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON
(16#001C6#, 16#001C6#), -- (Ll) LATIN SMALL LETTER DZ WITH CARON .. LATIN SMALL LETTER DZ WITH CARON
(16#001C7#, 16#001C7#), -- (Lu) LATIN CAPITAL LETTER LJ .. LATIN CAPITAL LETTER LJ
(16#001C8#, 16#001C8#), -- (Lt) LATIN CAPITAL LETTER L WITH SMALL LETTER J .. LATIN CAPITAL LETTER L WITH SMALL LETTER J
(16#001C9#, 16#001C9#), -- (Ll) LATIN SMALL LETTER LJ .. LATIN SMALL LETTER LJ
(16#001CA#, 16#001CA#), -- (Lu) LATIN CAPITAL LETTER NJ .. LATIN CAPITAL LETTER NJ
(16#001CB#, 16#001CB#), -- (Lt) LATIN CAPITAL LETTER N WITH SMALL LETTER J .. LATIN CAPITAL LETTER N WITH SMALL LETTER J
(16#001CC#, 16#001CC#), -- (Ll) LATIN SMALL LETTER NJ .. LATIN SMALL LETTER NJ
(16#001CD#, 16#001CD#), -- (Lu) LATIN CAPITAL LETTER A WITH CARON .. LATIN CAPITAL LETTER A WITH CARON
(16#001CE#, 16#001CE#), -- (Ll) LATIN SMALL LETTER A WITH CARON .. LATIN SMALL LETTER A WITH CARON
(16#001CF#, 16#001CF#), -- (Lu) LATIN CAPITAL LETTER I WITH CARON .. LATIN CAPITAL LETTER I WITH CARON
(16#001D0#, 16#001D0#), -- (Ll) LATIN SMALL LETTER I WITH CARON .. LATIN SMALL LETTER I WITH CARON
(16#001D1#, 16#001D1#), -- (Lu) LATIN CAPITAL LETTER O WITH CARON .. LATIN CAPITAL LETTER O WITH CARON
(16#001D2#, 16#001D2#), -- (Ll) LATIN SMALL LETTER O WITH CARON .. LATIN SMALL LETTER O WITH CARON
(16#001D3#, 16#001D3#), -- (Lu) LATIN CAPITAL LETTER U WITH CARON .. LATIN CAPITAL LETTER U WITH CARON
(16#001D4#, 16#001D4#), -- (Ll) LATIN SMALL LETTER U WITH CARON .. LATIN SMALL LETTER U WITH CARON
(16#001D5#, 16#001D5#), -- (Lu) LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON
(16#001D6#, 16#001D6#), -- (Ll) LATIN SMALL LETTER U WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER U WITH DIAERESIS AND MACRON
(16#001D7#, 16#001D7#), -- (Lu) LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE
(16#001D8#, 16#001D8#), -- (Ll) LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE
(16#001D9#, 16#001D9#), -- (Lu) LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON
(16#001DA#, 16#001DA#), -- (Ll) LATIN SMALL LETTER U WITH DIAERESIS AND CARON .. LATIN SMALL LETTER U WITH DIAERESIS AND CARON
(16#001DB#, 16#001DB#), -- (Lu) LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE
(16#001DC#, 16#001DD#), -- (Ll) LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE .. LATIN SMALL LETTER TURNED E
(16#001DE#, 16#001DE#), -- (Lu) LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON
(16#001DF#, 16#001DF#), -- (Ll) LATIN SMALL LETTER A WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER A WITH DIAERESIS AND MACRON
(16#001E0#, 16#001E0#), -- (Lu) LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON
(16#001E1#, 16#001E1#), -- (Ll) LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON
(16#001E2#, 16#001E2#), -- (Lu) LATIN CAPITAL LETTER AE WITH MACRON .. LATIN CAPITAL LETTER AE WITH MACRON
(16#001E3#, 16#001E3#), -- (Ll) LATIN SMALL LETTER AE WITH MACRON .. LATIN SMALL LETTER AE WITH MACRON
(16#001E4#, 16#001E4#), -- (Lu) LATIN CAPITAL LETTER G WITH STROKE .. LATIN CAPITAL LETTER G WITH STROKE
(16#001E5#, 16#001E5#), -- (Ll) LATIN SMALL LETTER G WITH STROKE .. LATIN SMALL LETTER G WITH STROKE
(16#001E6#, 16#001E6#), -- (Lu) LATIN CAPITAL LETTER G WITH CARON .. LATIN CAPITAL LETTER G WITH CARON
(16#001E7#, 16#001E7#), -- (Ll) LATIN SMALL LETTER G WITH CARON .. LATIN SMALL LETTER G WITH CARON
(16#001E8#, 16#001E8#), -- (Lu) LATIN CAPITAL LETTER K WITH CARON .. LATIN CAPITAL LETTER K WITH CARON
(16#001E9#, 16#001E9#), -- (Ll) LATIN SMALL LETTER K WITH CARON .. LATIN SMALL LETTER K WITH CARON
(16#001EA#, 16#001EA#), -- (Lu) LATIN CAPITAL LETTER O WITH OGONEK .. LATIN CAPITAL LETTER O WITH OGONEK
(16#001EB#, 16#001EB#), -- (Ll) LATIN SMALL LETTER O WITH OGONEK .. LATIN SMALL LETTER O WITH OGONEK
(16#001EC#, 16#001EC#), -- (Lu) LATIN CAPITAL LETTER O WITH OGONEK AND MACRON .. LATIN CAPITAL LETTER O WITH OGONEK AND MACRON
(16#001ED#, 16#001ED#), -- (Ll) LATIN SMALL LETTER O WITH OGONEK AND MACRON .. LATIN SMALL LETTER O WITH OGONEK AND MACRON
(16#001EE#, 16#001EE#), -- (Lu) LATIN CAPITAL LETTER EZH WITH CARON .. LATIN CAPITAL LETTER EZH WITH CARON
(16#001EF#, 16#001F0#), -- (Ll) LATIN SMALL LETTER EZH WITH CARON .. LATIN SMALL LETTER J WITH CARON
(16#001F1#, 16#001F1#), -- (Lu) LATIN CAPITAL LETTER DZ .. LATIN CAPITAL LETTER DZ
(16#001F2#, 16#001F2#), -- (Lt) LATIN CAPITAL LETTER D WITH SMALL LETTER Z .. LATIN CAPITAL LETTER D WITH SMALL LETTER Z
(16#001F3#, 16#001F3#), -- (Ll) LATIN SMALL LETTER DZ .. LATIN SMALL LETTER DZ
(16#001F4#, 16#001F4#), -- (Lu) LATIN CAPITAL LETTER G WITH ACUTE .. LATIN CAPITAL LETTER G WITH ACUTE
(16#001F5#, 16#001F5#), -- (Ll) LATIN SMALL LETTER G WITH ACUTE .. LATIN SMALL LETTER G WITH ACUTE
(16#001F6#, 16#001F8#), -- (Lu) LATIN CAPITAL LETTER HWAIR .. LATIN CAPITAL LETTER N WITH GRAVE
(16#001F9#, 16#001F9#), -- (Ll) LATIN SMALL LETTER N WITH GRAVE .. LATIN SMALL LETTER N WITH GRAVE
(16#001FA#, 16#001FA#), -- (Lu) LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE .. LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE
(16#001FB#, 16#001FB#), -- (Ll) LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE .. LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE
(16#001FC#, 16#001FC#), -- (Lu) LATIN CAPITAL LETTER AE WITH ACUTE .. LATIN CAPITAL LETTER AE WITH ACUTE
(16#001FD#, 16#001FD#), -- (Ll) LATIN SMALL LETTER AE WITH ACUTE .. LATIN SMALL LETTER AE WITH ACUTE
(16#001FE#, 16#001FE#), -- (Lu) LATIN CAPITAL LETTER O WITH STROKE AND ACUTE .. LATIN CAPITAL LETTER O WITH STROKE AND ACUTE
(16#001FF#, 16#001FF#), -- (Ll) LATIN SMALL LETTER O WITH STROKE AND ACUTE .. LATIN SMALL LETTER O WITH STROKE AND ACUTE
(16#00200#, 16#00200#), -- (Lu) LATIN CAPITAL LETTER A WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER A WITH DOUBLE GRAVE
(16#00201#, 16#00201#), -- (Ll) LATIN SMALL LETTER A WITH DOUBLE GRAVE .. LATIN SMALL LETTER A WITH DOUBLE GRAVE
(16#00202#, 16#00202#), -- (Lu) LATIN CAPITAL LETTER A WITH INVERTED BREVE .. LATIN CAPITAL LETTER A WITH INVERTED BREVE
(16#00203#, 16#00203#), -- (Ll) LATIN SMALL LETTER A WITH INVERTED BREVE .. LATIN SMALL LETTER A WITH INVERTED BREVE
(16#00204#, 16#00204#), -- (Lu) LATIN CAPITAL LETTER E WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER E WITH DOUBLE GRAVE
(16#00205#, 16#00205#), -- (Ll) LATIN SMALL LETTER E WITH DOUBLE GRAVE .. LATIN SMALL LETTER E WITH DOUBLE GRAVE
(16#00206#, 16#00206#), -- (Lu) LATIN CAPITAL LETTER E WITH INVERTED BREVE .. LATIN CAPITAL LETTER E WITH INVERTED BREVE
(16#00207#, 16#00207#), -- (Ll) LATIN SMALL LETTER E WITH INVERTED BREVE .. LATIN SMALL LETTER E WITH INVERTED BREVE
(16#00208#, 16#00208#), -- (Lu) LATIN CAPITAL LETTER I WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER I WITH DOUBLE GRAVE
(16#00209#, 16#00209#), -- (Ll) LATIN SMALL LETTER I WITH DOUBLE GRAVE .. LATIN SMALL LETTER I WITH DOUBLE GRAVE
(16#0020A#, 16#0020A#), -- (Lu) LATIN CAPITAL LETTER I WITH INVERTED BREVE .. LATIN CAPITAL LETTER I WITH INVERTED BREVE
(16#0020B#, 16#0020B#), -- (Ll) LATIN SMALL LETTER I WITH INVERTED BREVE .. LATIN SMALL LETTER I WITH INVERTED BREVE
(16#0020C#, 16#0020C#), -- (Lu) LATIN CAPITAL LETTER O WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER O WITH DOUBLE GRAVE
(16#0020D#, 16#0020D#), -- (Ll) LATIN SMALL LETTER O WITH DOUBLE GRAVE .. LATIN SMALL LETTER O WITH DOUBLE GRAVE
(16#0020E#, 16#0020E#), -- (Lu) LATIN CAPITAL LETTER O WITH INVERTED BREVE .. LATIN CAPITAL LETTER O WITH INVERTED BREVE
(16#0020F#, 16#0020F#), -- (Ll) LATIN SMALL LETTER O WITH INVERTED BREVE .. LATIN SMALL LETTER O WITH INVERTED BREVE
(16#00210#, 16#00210#), -- (Lu) LATIN CAPITAL LETTER R WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER R WITH DOUBLE GRAVE
(16#00211#, 16#00211#), -- (Ll) LATIN SMALL LETTER R WITH DOUBLE GRAVE .. LATIN SMALL LETTER R WITH DOUBLE GRAVE
(16#00212#, 16#00212#), -- (Lu) LATIN CAPITAL LETTER R WITH INVERTED BREVE .. LATIN CAPITAL LETTER R WITH INVERTED BREVE
(16#00213#, 16#00213#), -- (Ll) LATIN SMALL LETTER R WITH INVERTED BREVE .. LATIN SMALL LETTER R WITH INVERTED BREVE
(16#00214#, 16#00214#), -- (Lu) LATIN CAPITAL LETTER U WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER U WITH DOUBLE GRAVE
(16#00215#, 16#00215#), -- (Ll) LATIN SMALL LETTER U WITH DOUBLE GRAVE .. LATIN SMALL LETTER U WITH DOUBLE GRAVE
(16#00216#, 16#00216#), -- (Lu) LATIN CAPITAL LETTER U WITH INVERTED BREVE .. LATIN CAPITAL LETTER U WITH INVERTED BREVE
(16#00217#, 16#00217#), -- (Ll) LATIN SMALL LETTER U WITH INVERTED BREVE .. LATIN SMALL LETTER U WITH INVERTED BREVE
(16#00218#, 16#00218#), -- (Lu) LATIN CAPITAL LETTER S WITH COMMA BELOW .. LATIN CAPITAL LETTER S WITH COMMA BELOW
(16#00219#, 16#00219#), -- (Ll) LATIN SMALL LETTER S WITH COMMA BELOW .. LATIN SMALL LETTER S WITH COMMA BELOW
(16#0021A#, 16#0021A#), -- (Lu) LATIN CAPITAL LETTER T WITH COMMA BELOW .. LATIN CAPITAL LETTER T WITH COMMA BELOW
(16#0021B#, 16#0021B#), -- (Ll) LATIN SMALL LETTER T WITH COMMA BELOW .. LATIN SMALL LETTER T WITH COMMA BELOW
(16#0021C#, 16#0021C#), -- (Lu) LATIN CAPITAL LETTER YOGH .. LATIN CAPITAL LETTER YOGH
(16#0021D#, 16#0021D#), -- (Ll) LATIN SMALL LETTER YOGH .. LATIN SMALL LETTER YOGH
(16#0021E#, 16#0021E#), -- (Lu) LATIN CAPITAL LETTER H WITH CARON .. LATIN CAPITAL LETTER H WITH CARON
(16#0021F#, 16#0021F#), -- (Ll) LATIN SMALL LETTER H WITH CARON .. LATIN SMALL LETTER H WITH CARON
(16#00220#, 16#00220#), -- (Lu) LATIN CAPITAL LETTER N WITH LONG RIGHT LEG .. LATIN CAPITAL LETTER N WITH LONG RIGHT LEG
(16#00221#, 16#00221#), -- (Ll) LATIN SMALL LETTER D WITH CURL .. LATIN SMALL LETTER D WITH CURL
(16#00222#, 16#00222#), -- (Lu) LATIN CAPITAL LETTER OU .. LATIN CAPITAL LETTER OU
(16#00223#, 16#00223#), -- (Ll) LATIN SMALL LETTER OU .. LATIN SMALL LETTER OU
(16#00224#, 16#00224#), -- (Lu) LATIN CAPITAL LETTER Z WITH HOOK .. LATIN CAPITAL LETTER Z WITH HOOK
(16#00225#, 16#00225#), -- (Ll) LATIN SMALL LETTER Z WITH HOOK .. LATIN SMALL LETTER Z WITH HOOK
(16#00226#, 16#00226#), -- (Lu) LATIN CAPITAL LETTER A WITH DOT ABOVE .. LATIN CAPITAL LETTER A WITH DOT ABOVE
(16#00227#, 16#00227#), -- (Ll) LATIN SMALL LETTER A WITH DOT ABOVE .. LATIN SMALL LETTER A WITH DOT ABOVE
(16#00228#, 16#00228#), -- (Lu) LATIN CAPITAL LETTER E WITH CEDILLA .. LATIN CAPITAL LETTER E WITH CEDILLA
(16#00229#, 16#00229#), -- (Ll) LATIN SMALL LETTER E WITH CEDILLA .. LATIN SMALL LETTER E WITH CEDILLA
(16#0022A#, 16#0022A#), -- (Lu) LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON
(16#0022B#, 16#0022B#), -- (Ll) LATIN SMALL LETTER O WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER O WITH DIAERESIS AND MACRON
(16#0022C#, 16#0022C#), -- (Lu) LATIN CAPITAL LETTER O WITH TILDE AND MACRON .. LATIN CAPITAL LETTER O WITH TILDE AND MACRON
(16#0022D#, 16#0022D#), -- (Ll) LATIN SMALL LETTER O WITH TILDE AND MACRON .. LATIN SMALL LETTER O WITH TILDE AND MACRON
(16#0022E#, 16#0022E#), -- (Lu) LATIN CAPITAL LETTER O WITH DOT ABOVE .. LATIN CAPITAL LETTER O WITH DOT ABOVE
(16#0022F#, 16#0022F#), -- (Ll) LATIN SMALL LETTER O WITH DOT ABOVE .. LATIN SMALL LETTER O WITH DOT ABOVE
(16#00230#, 16#00230#), -- (Lu) LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON
(16#00231#, 16#00231#), -- (Ll) LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON
(16#00232#, 16#00232#), -- (Lu) LATIN CAPITAL LETTER Y WITH MACRON .. LATIN CAPITAL LETTER Y WITH MACRON
(16#00233#, 16#00236#), -- (Ll) LATIN SMALL LETTER Y WITH MACRON .. LATIN SMALL LETTER T WITH CURL
(16#00250#, 16#002AF#), -- (Ll) LATIN SMALL LETTER TURNED A .. LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL
(16#002B0#, 16#002C1#), -- (Lm) MODIFIER LETTER SMALL H .. MODIFIER LETTER REVERSED GLOTTAL STOP
(16#002C2#, 16#002C5#), -- (Sk) MODIFIER LETTER LEFT ARROWHEAD .. MODIFIER LETTER DOWN ARROWHEAD
(16#002C6#, 16#002D1#), -- (Lm) MODIFIER LETTER CIRCUMFLEX ACCENT .. MODIFIER LETTER HALF TRIANGULAR COLON
(16#002D2#, 16#002DF#), -- (Sk) MODIFIER LETTER CENTRED RIGHT HALF RING .. MODIFIER LETTER CROSS ACCENT
(16#002E0#, 16#002E4#), -- (Lm) MODIFIER LETTER SMALL GAMMA .. MODIFIER LETTER SMALL REVERSED GLOTTAL STOP
(16#002E5#, 16#002ED#), -- (Sk) MODIFIER LETTER EXTRA-HIGH TONE BAR .. MODIFIER LETTER UNASPIRATED
(16#002EE#, 16#002EE#), -- (Lm) MODIFIER LETTER DOUBLE APOSTROPHE .. MODIFIER LETTER DOUBLE APOSTROPHE
(16#002EF#, 16#002FF#), -- (Sk) MODIFIER LETTER LOW DOWN ARROWHEAD .. MODIFIER LETTER LOW LEFT ARROW
(16#00300#, 16#00357#), -- (Mn) COMBINING GRAVE ACCENT .. COMBINING RIGHT HALF RING ABOVE
(16#0035D#, 16#0036F#), -- (Mn) COMBINING DOUBLE BREVE .. COMBINING LATIN SMALL LETTER X
(16#00374#, 16#00375#), -- (Sk) GREEK NUMERAL SIGN .. GREEK LOWER NUMERAL SIGN
(16#0037A#, 16#0037A#), -- (Lm) GREEK YPOGEGRAMMENI .. GREEK YPOGEGRAMMENI
(16#0037E#, 16#0037E#), -- (Po) GREEK QUESTION MARK .. GREEK QUESTION MARK
(16#00384#, 16#00385#), -- (Sk) GREEK TONOS .. GREEK DIALYTIKA TONOS
(16#00386#, 16#00386#), -- (Lu) GREEK CAPITAL LETTER ALPHA WITH TONOS .. GREEK CAPITAL LETTER ALPHA WITH TONOS
(16#00387#, 16#00387#), -- (Po) GREEK ANO TELEIA .. GREEK ANO TELEIA
(16#00388#, 16#0038A#), -- (Lu) GREEK CAPITAL LETTER EPSILON WITH TONOS .. GREEK CAPITAL LETTER IOTA WITH TONOS
(16#0038C#, 16#0038C#), -- (Lu) GREEK CAPITAL LETTER OMICRON WITH TONOS .. GREEK CAPITAL LETTER OMICRON WITH TONOS
(16#0038E#, 16#0038F#), -- (Lu) GREEK CAPITAL LETTER UPSILON WITH TONOS .. GREEK CAPITAL LETTER OMEGA WITH TONOS
(16#00390#, 16#00390#), -- (Ll) GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS .. GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
(16#00391#, 16#003A1#), -- (Lu) GREEK CAPITAL LETTER ALPHA .. GREEK CAPITAL LETTER RHO
(16#003A3#, 16#003AB#), -- (Lu) GREEK CAPITAL LETTER SIGMA .. GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
(16#003AC#, 16#003CE#), -- (Ll) GREEK SMALL LETTER ALPHA WITH TONOS .. GREEK SMALL LETTER OMEGA WITH TONOS
(16#003D0#, 16#003D1#), -- (Ll) GREEK BETA SYMBOL .. GREEK THETA SYMBOL
(16#003D2#, 16#003D4#), -- (Lu) GREEK UPSILON WITH HOOK SYMBOL .. GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL
(16#003D5#, 16#003D7#), -- (Ll) GREEK PHI SYMBOL .. GREEK KAI SYMBOL
(16#003D8#, 16#003D8#), -- (Lu) GREEK LETTER ARCHAIC KOPPA .. GREEK LETTER ARCHAIC KOPPA
(16#003D9#, 16#003D9#), -- (Ll) GREEK SMALL LETTER ARCHAIC KOPPA .. GREEK SMALL LETTER ARCHAIC KOPPA
(16#003DA#, 16#003DA#), -- (Lu) GREEK LETTER STIGMA .. GREEK LETTER STIGMA
(16#003DB#, 16#003DB#), -- (Ll) GREEK SMALL LETTER STIGMA .. GREEK SMALL LETTER STIGMA
(16#003DC#, 16#003DC#), -- (Lu) GREEK LETTER DIGAMMA .. GREEK LETTER DIGAMMA
(16#003DD#, 16#003DD#), -- (Ll) GREEK SMALL LETTER DIGAMMA .. GREEK SMALL LETTER DIGAMMA
(16#003DE#, 16#003DE#), -- (Lu) GREEK LETTER KOPPA .. GREEK LETTER KOPPA
(16#003DF#, 16#003DF#), -- (Ll) GREEK SMALL LETTER KOPPA .. GREEK SMALL LETTER KOPPA
(16#003E0#, 16#003E0#), -- (Lu) GREEK LETTER SAMPI .. GREEK LETTER SAMPI
(16#003E1#, 16#003E1#), -- (Ll) GREEK SMALL LETTER SAMPI .. GREEK SMALL LETTER SAMPI
(16#003E2#, 16#003E2#), -- (Lu) COPTIC CAPITAL LETTER SHEI .. COPTIC CAPITAL LETTER SHEI
(16#003E3#, 16#003E3#), -- (Ll) COPTIC SMALL LETTER SHEI .. COPTIC SMALL LETTER SHEI
(16#003E4#, 16#003E4#), -- (Lu) COPTIC CAPITAL LETTER FEI .. COPTIC CAPITAL LETTER FEI
(16#003E5#, 16#003E5#), -- (Ll) COPTIC SMALL LETTER FEI .. COPTIC SMALL LETTER FEI
(16#003E6#, 16#003E6#), -- (Lu) COPTIC CAPITAL LETTER KHEI .. COPTIC CAPITAL LETTER KHEI
(16#003E7#, 16#003E7#), -- (Ll) COPTIC SMALL LETTER KHEI .. COPTIC SMALL LETTER KHEI
(16#003E8#, 16#003E8#), -- (Lu) COPTIC CAPITAL LETTER HORI .. COPTIC CAPITAL LETTER HORI
(16#003E9#, 16#003E9#), -- (Ll) COPTIC SMALL LETTER HORI .. COPTIC SMALL LETTER HORI
(16#003EA#, 16#003EA#), -- (Lu) COPTIC CAPITAL LETTER GANGIA .. COPTIC CAPITAL LETTER GANGIA
(16#003EB#, 16#003EB#), -- (Ll) COPTIC SMALL LETTER GANGIA .. COPTIC SMALL LETTER GANGIA
(16#003EC#, 16#003EC#), -- (Lu) COPTIC CAPITAL LETTER SHIMA .. COPTIC CAPITAL LETTER SHIMA
(16#003ED#, 16#003ED#), -- (Ll) COPTIC SMALL LETTER SHIMA .. COPTIC SMALL LETTER SHIMA
(16#003EE#, 16#003EE#), -- (Lu) COPTIC CAPITAL LETTER DEI .. COPTIC CAPITAL LETTER DEI
(16#003EF#, 16#003F3#), -- (Ll) COPTIC SMALL LETTER DEI .. GREEK LETTER YOT
(16#003F4#, 16#003F4#), -- (Lu) GREEK CAPITAL THETA SYMBOL .. GREEK CAPITAL THETA SYMBOL
(16#003F5#, 16#003F5#), -- (Ll) GREEK LUNATE EPSILON SYMBOL .. GREEK LUNATE EPSILON SYMBOL
(16#003F6#, 16#003F6#), -- (Sm) GREEK REVERSED LUNATE EPSILON SYMBOL .. GREEK REVERSED LUNATE EPSILON SYMBOL
(16#003F7#, 16#003F7#), -- (Lu) GREEK CAPITAL LETTER SHO .. GREEK CAPITAL LETTER SHO
(16#003F8#, 16#003F8#), -- (Ll) GREEK SMALL LETTER SHO .. GREEK SMALL LETTER SHO
(16#003F9#, 16#003FA#), -- (Lu) GREEK CAPITAL LUNATE SIGMA SYMBOL .. GREEK CAPITAL LETTER SAN
(16#003FB#, 16#003FB#), -- (Ll) GREEK SMALL LETTER SAN .. GREEK SMALL LETTER SAN
(16#00400#, 16#0042F#), -- (Lu) CYRILLIC CAPITAL LETTER IE WITH GRAVE .. CYRILLIC CAPITAL LETTER YA
(16#00430#, 16#0045F#), -- (Ll) CYRILLIC SMALL LETTER A .. CYRILLIC SMALL LETTER DZHE
(16#00460#, 16#00460#), -- (Lu) CYRILLIC CAPITAL LETTER OMEGA .. CYRILLIC CAPITAL LETTER OMEGA
(16#00461#, 16#00461#), -- (Ll) CYRILLIC SMALL LETTER OMEGA .. CYRILLIC SMALL LETTER OMEGA
(16#00462#, 16#00462#), -- (Lu) CYRILLIC CAPITAL LETTER YAT .. CYRILLIC CAPITAL LETTER YAT
(16#00463#, 16#00463#), -- (Ll) CYRILLIC SMALL LETTER YAT .. CYRILLIC SMALL LETTER YAT
(16#00464#, 16#00464#), -- (Lu) CYRILLIC CAPITAL LETTER IOTIFIED E .. CYRILLIC CAPITAL LETTER IOTIFIED E
(16#00465#, 16#00465#), -- (Ll) CYRILLIC SMALL LETTER IOTIFIED E .. CYRILLIC SMALL LETTER IOTIFIED E
(16#00466#, 16#00466#), -- (Lu) CYRILLIC CAPITAL LETTER LITTLE YUS .. CYRILLIC CAPITAL LETTER LITTLE YUS
(16#00467#, 16#00467#), -- (Ll) CYRILLIC SMALL LETTER LITTLE YUS .. CYRILLIC SMALL LETTER LITTLE YUS
(16#00468#, 16#00468#), -- (Lu) CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS .. CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS
(16#00469#, 16#00469#), -- (Ll) CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS .. CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS
(16#0046A#, 16#0046A#), -- (Lu) CYRILLIC CAPITAL LETTER BIG YUS .. CYRILLIC CAPITAL LETTER BIG YUS
(16#0046B#, 16#0046B#), -- (Ll) CYRILLIC SMALL LETTER BIG YUS .. CYRILLIC SMALL LETTER BIG YUS
(16#0046C#, 16#0046C#), -- (Lu) CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS .. CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS
(16#0046D#, 16#0046D#), -- (Ll) CYRILLIC SMALL LETTER IOTIFIED BIG YUS .. CYRILLIC SMALL LETTER IOTIFIED BIG YUS
(16#0046E#, 16#0046E#), -- (Lu) CYRILLIC CAPITAL LETTER KSI .. CYRILLIC CAPITAL LETTER KSI
(16#0046F#, 16#0046F#), -- (Ll) CYRILLIC SMALL LETTER KSI .. CYRILLIC SMALL LETTER KSI
(16#00470#, 16#00470#), -- (Lu) CYRILLIC CAPITAL LETTER PSI .. CYRILLIC CAPITAL LETTER PSI
(16#00471#, 16#00471#), -- (Ll) CYRILLIC SMALL LETTER PSI .. CYRILLIC SMALL LETTER PSI
(16#00472#, 16#00472#), -- (Lu) CYRILLIC CAPITAL LETTER FITA .. CYRILLIC CAPITAL LETTER FITA
(16#00473#, 16#00473#), -- (Ll) CYRILLIC SMALL LETTER FITA .. CYRILLIC SMALL LETTER FITA
(16#00474#, 16#00474#), -- (Lu) CYRILLIC CAPITAL LETTER IZHITSA .. CYRILLIC CAPITAL LETTER IZHITSA
(16#00475#, 16#00475#), -- (Ll) CYRILLIC SMALL LETTER IZHITSA .. CYRILLIC SMALL LETTER IZHITSA
(16#00476#, 16#00476#), -- (Lu) CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
(16#00477#, 16#00477#), -- (Ll) CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
(16#00478#, 16#00478#), -- (Lu) CYRILLIC CAPITAL LETTER UK .. CYRILLIC CAPITAL LETTER UK
(16#00479#, 16#00479#), -- (Ll) CYRILLIC SMALL LETTER UK .. CYRILLIC SMALL LETTER UK
(16#0047A#, 16#0047A#), -- (Lu) CYRILLIC CAPITAL LETTER ROUND OMEGA .. CYRILLIC CAPITAL LETTER ROUND OMEGA
(16#0047B#, 16#0047B#), -- (Ll) CYRILLIC SMALL LETTER ROUND OMEGA .. CYRILLIC SMALL LETTER ROUND OMEGA
(16#0047C#, 16#0047C#), -- (Lu) CYRILLIC CAPITAL LETTER OMEGA WITH TITLO .. CYRILLIC CAPITAL LETTER OMEGA WITH TITLO
(16#0047D#, 16#0047D#), -- (Ll) CYRILLIC SMALL LETTER OMEGA WITH TITLO .. CYRILLIC SMALL LETTER OMEGA WITH TITLO
(16#0047E#, 16#0047E#), -- (Lu) CYRILLIC CAPITAL LETTER OT .. CYRILLIC CAPITAL LETTER OT
(16#0047F#, 16#0047F#), -- (Ll) CYRILLIC SMALL LETTER OT .. CYRILLIC SMALL LETTER OT
(16#00480#, 16#00480#), -- (Lu) CYRILLIC CAPITAL LETTER KOPPA .. CYRILLIC CAPITAL LETTER KOPPA
(16#00481#, 16#00481#), -- (Ll) CYRILLIC SMALL LETTER KOPPA .. CYRILLIC SMALL LETTER KOPPA
(16#00482#, 16#00482#), -- (So) CYRILLIC THOUSANDS SIGN .. CYRILLIC THOUSANDS SIGN
(16#00483#, 16#00486#), -- (Mn) COMBINING CYRILLIC TITLO .. COMBINING CYRILLIC PSILI PNEUMATA
(16#00488#, 16#00489#), -- (Me) COMBINING CYRILLIC HUNDRED THOUSANDS SIGN .. COMBINING CYRILLIC MILLIONS SIGN
(16#0048A#, 16#0048A#), -- (Lu) CYRILLIC CAPITAL LETTER SHORT I WITH TAIL .. CYRILLIC CAPITAL LETTER SHORT I WITH TAIL
(16#0048B#, 16#0048B#), -- (Ll) CYRILLIC SMALL LETTER SHORT I WITH TAIL .. CYRILLIC SMALL LETTER SHORT I WITH TAIL
(16#0048C#, 16#0048C#), -- (Lu) CYRILLIC CAPITAL LETTER SEMISOFT SIGN .. CYRILLIC CAPITAL LETTER SEMISOFT SIGN
(16#0048D#, 16#0048D#), -- (Ll) CYRILLIC SMALL LETTER SEMISOFT SIGN .. CYRILLIC SMALL LETTER SEMISOFT SIGN
(16#0048E#, 16#0048E#), -- (Lu) CYRILLIC CAPITAL LETTER ER WITH TICK .. CYRILLIC CAPITAL LETTER ER WITH TICK
(16#0048F#, 16#0048F#), -- (Ll) CYRILLIC SMALL LETTER ER WITH TICK .. CYRILLIC SMALL LETTER ER WITH TICK
(16#00490#, 16#00490#), -- (Lu) CYRILLIC CAPITAL LETTER GHE WITH UPTURN .. CYRILLIC CAPITAL LETTER GHE WITH UPTURN
(16#00491#, 16#00491#), -- (Ll) CYRILLIC SMALL LETTER GHE WITH UPTURN .. CYRILLIC SMALL LETTER GHE WITH UPTURN
(16#00492#, 16#00492#), -- (Lu) CYRILLIC CAPITAL LETTER GHE WITH STROKE .. CYRILLIC CAPITAL LETTER GHE WITH STROKE
(16#00493#, 16#00493#), -- (Ll) CYRILLIC SMALL LETTER GHE WITH STROKE .. CYRILLIC SMALL LETTER GHE WITH STROKE
(16#00494#, 16#00494#), -- (Lu) CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK
(16#00495#, 16#00495#), -- (Ll) CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK
(16#00496#, 16#00496#), -- (Lu) CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER
(16#00497#, 16#00497#), -- (Ll) CYRILLIC SMALL LETTER ZHE WITH DESCENDER .. CYRILLIC SMALL LETTER ZHE WITH DESCENDER
(16#00498#, 16#00498#), -- (Lu) CYRILLIC CAPITAL LETTER ZE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZE WITH DESCENDER
(16#00499#, 16#00499#), -- (Ll) CYRILLIC SMALL LETTER ZE WITH DESCENDER .. CYRILLIC SMALL LETTER ZE WITH DESCENDER
(16#0049A#, 16#0049A#), -- (Lu) CYRILLIC CAPITAL LETTER KA WITH DESCENDER .. CYRILLIC CAPITAL LETTER KA WITH DESCENDER
(16#0049B#, 16#0049B#), -- (Ll) CYRILLIC SMALL LETTER KA WITH DESCENDER .. CYRILLIC SMALL LETTER KA WITH DESCENDER
(16#0049C#, 16#0049C#), -- (Lu) CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE
(16#0049D#, 16#0049D#), -- (Ll) CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE
(16#0049E#, 16#0049E#), -- (Lu) CYRILLIC CAPITAL LETTER KA WITH STROKE .. CYRILLIC CAPITAL LETTER KA WITH STROKE
(16#0049F#, 16#0049F#), -- (Ll) CYRILLIC SMALL LETTER KA WITH STROKE .. CYRILLIC SMALL LETTER KA WITH STROKE
(16#004A0#, 16#004A0#), -- (Lu) CYRILLIC CAPITAL LETTER BASHKIR KA .. CYRILLIC CAPITAL LETTER BASHKIR KA
(16#004A1#, 16#004A1#), -- (Ll) CYRILLIC SMALL LETTER BASHKIR KA .. CYRILLIC SMALL LETTER BASHKIR KA
(16#004A2#, 16#004A2#), -- (Lu) CYRILLIC CAPITAL LETTER EN WITH DESCENDER .. CYRILLIC CAPITAL LETTER EN WITH DESCENDER
(16#004A3#, 16#004A3#), -- (Ll) CYRILLIC SMALL LETTER EN WITH DESCENDER .. CYRILLIC SMALL LETTER EN WITH DESCENDER
(16#004A4#, 16#004A4#), -- (Lu) CYRILLIC CAPITAL LIGATURE EN GHE .. CYRILLIC CAPITAL LIGATURE EN GHE
(16#004A5#, 16#004A5#), -- (Ll) CYRILLIC SMALL LIGATURE EN GHE .. CYRILLIC SMALL LIGATURE EN GHE
(16#004A6#, 16#004A6#), -- (Lu) CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK
(16#004A7#, 16#004A7#), -- (Ll) CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK
(16#004A8#, 16#004A8#), -- (Lu) CYRILLIC CAPITAL LETTER ABKHASIAN HA .. CYRILLIC CAPITAL LETTER ABKHASIAN HA
(16#004A9#, 16#004A9#), -- (Ll) CYRILLIC SMALL LETTER ABKHASIAN HA .. CYRILLIC SMALL LETTER ABKHASIAN HA
(16#004AA#, 16#004AA#), -- (Lu) CYRILLIC CAPITAL LETTER ES WITH DESCENDER .. CYRILLIC CAPITAL LETTER ES WITH DESCENDER
(16#004AB#, 16#004AB#), -- (Ll) CYRILLIC SMALL LETTER ES WITH DESCENDER .. CYRILLIC SMALL LETTER ES WITH DESCENDER
(16#004AC#, 16#004AC#), -- (Lu) CYRILLIC CAPITAL LETTER TE WITH DESCENDER .. CYRILLIC CAPITAL LETTER TE WITH DESCENDER
(16#004AD#, 16#004AD#), -- (Ll) CYRILLIC SMALL LETTER TE WITH DESCENDER .. CYRILLIC SMALL LETTER TE WITH DESCENDER
(16#004AE#, 16#004AE#), -- (Lu) CYRILLIC CAPITAL LETTER STRAIGHT U .. CYRILLIC CAPITAL LETTER STRAIGHT U
(16#004AF#, 16#004AF#), -- (Ll) CYRILLIC SMALL LETTER STRAIGHT U .. CYRILLIC SMALL LETTER STRAIGHT U
(16#004B0#, 16#004B0#), -- (Lu) CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE .. CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE
(16#004B1#, 16#004B1#), -- (Ll) CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE .. CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE
(16#004B2#, 16#004B2#), -- (Lu) CYRILLIC CAPITAL LETTER HA WITH DESCENDER .. CYRILLIC CAPITAL LETTER HA WITH DESCENDER
(16#004B3#, 16#004B3#), -- (Ll) CYRILLIC SMALL LETTER HA WITH DESCENDER .. CYRILLIC SMALL LETTER HA WITH DESCENDER
(16#004B4#, 16#004B4#), -- (Lu) CYRILLIC CAPITAL LIGATURE TE TSE .. CYRILLIC CAPITAL LIGATURE TE TSE
(16#004B5#, 16#004B5#), -- (Ll) CYRILLIC SMALL LIGATURE TE TSE .. CYRILLIC SMALL LIGATURE TE TSE
(16#004B6#, 16#004B6#), -- (Lu) CYRILLIC CAPITAL LETTER CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER CHE WITH DESCENDER
(16#004B7#, 16#004B7#), -- (Ll) CYRILLIC SMALL LETTER CHE WITH DESCENDER .. CYRILLIC SMALL LETTER CHE WITH DESCENDER
(16#004B8#, 16#004B8#), -- (Lu) CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE
(16#004B9#, 16#004B9#), -- (Ll) CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE
(16#004BA#, 16#004BA#), -- (Lu) CYRILLIC CAPITAL LETTER SHHA .. CYRILLIC CAPITAL LETTER SHHA
(16#004BB#, 16#004BB#), -- (Ll) CYRILLIC SMALL LETTER SHHA .. CYRILLIC SMALL LETTER SHHA
(16#004BC#, 16#004BC#), -- (Lu) CYRILLIC CAPITAL LETTER ABKHASIAN CHE .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE
(16#004BD#, 16#004BD#), -- (Ll) CYRILLIC SMALL LETTER ABKHASIAN CHE .. CYRILLIC SMALL LETTER ABKHASIAN CHE
(16#004BE#, 16#004BE#), -- (Lu) CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER
(16#004BF#, 16#004BF#), -- (Ll) CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER
(16#004C0#, 16#004C1#), -- (Lu) CYRILLIC LETTER PALOCHKA .. CYRILLIC CAPITAL LETTER ZHE WITH BREVE
(16#004C2#, 16#004C2#), -- (Ll) CYRILLIC SMALL LETTER ZHE WITH BREVE .. CYRILLIC SMALL LETTER ZHE WITH BREVE
(16#004C3#, 16#004C3#), -- (Lu) CYRILLIC CAPITAL LETTER KA WITH HOOK .. CYRILLIC CAPITAL LETTER KA WITH HOOK
(16#004C4#, 16#004C4#), -- (Ll) CYRILLIC SMALL LETTER KA WITH HOOK .. CYRILLIC SMALL LETTER KA WITH HOOK
(16#004C5#, 16#004C5#), -- (Lu) CYRILLIC CAPITAL LETTER EL WITH TAIL .. CYRILLIC CAPITAL LETTER EL WITH TAIL
(16#004C6#, 16#004C6#), -- (Ll) CYRILLIC SMALL LETTER EL WITH TAIL .. CYRILLIC SMALL LETTER EL WITH TAIL
(16#004C7#, 16#004C7#), -- (Lu) CYRILLIC CAPITAL LETTER EN WITH HOOK .. CYRILLIC CAPITAL LETTER EN WITH HOOK
(16#004C8#, 16#004C8#), -- (Ll) CYRILLIC SMALL LETTER EN WITH HOOK .. CYRILLIC SMALL LETTER EN WITH HOOK
(16#004C9#, 16#004C9#), -- (Lu) CYRILLIC CAPITAL LETTER EN WITH TAIL .. CYRILLIC CAPITAL LETTER EN WITH TAIL
(16#004CA#, 16#004CA#), -- (Ll) CYRILLIC SMALL LETTER EN WITH TAIL .. CYRILLIC SMALL LETTER EN WITH TAIL
(16#004CB#, 16#004CB#), -- (Lu) CYRILLIC CAPITAL LETTER KHAKASSIAN CHE .. CYRILLIC CAPITAL LETTER KHAKASSIAN CHE
(16#004CC#, 16#004CC#), -- (Ll) CYRILLIC SMALL LETTER KHAKASSIAN CHE .. CYRILLIC SMALL LETTER KHAKASSIAN CHE
(16#004CD#, 16#004CD#), -- (Lu) CYRILLIC CAPITAL LETTER EM WITH TAIL .. CYRILLIC CAPITAL LETTER EM WITH TAIL
(16#004CE#, 16#004CE#), -- (Ll) CYRILLIC SMALL LETTER EM WITH TAIL .. CYRILLIC SMALL LETTER EM WITH TAIL
(16#004D0#, 16#004D0#), -- (Lu) CYRILLIC CAPITAL LETTER A WITH BREVE .. CYRILLIC CAPITAL LETTER A WITH BREVE
(16#004D1#, 16#004D1#), -- (Ll) CYRILLIC SMALL LETTER A WITH BREVE .. CYRILLIC SMALL LETTER A WITH BREVE
(16#004D2#, 16#004D2#), -- (Lu) CYRILLIC CAPITAL LETTER A WITH DIAERESIS .. CYRILLIC CAPITAL LETTER A WITH DIAERESIS
(16#004D3#, 16#004D3#), -- (Ll) CYRILLIC SMALL LETTER A WITH DIAERESIS .. CYRILLIC SMALL LETTER A WITH DIAERESIS
(16#004D4#, 16#004D4#), -- (Lu) CYRILLIC CAPITAL LIGATURE A IE .. CYRILLIC CAPITAL LIGATURE A IE
(16#004D5#, 16#004D5#), -- (Ll) CYRILLIC SMALL LIGATURE A IE .. CYRILLIC SMALL LIGATURE A IE
(16#004D6#, 16#004D6#), -- (Lu) CYRILLIC CAPITAL LETTER IE WITH BREVE .. CYRILLIC CAPITAL LETTER IE WITH BREVE
(16#004D7#, 16#004D7#), -- (Ll) CYRILLIC SMALL LETTER IE WITH BREVE .. CYRILLIC SMALL LETTER IE WITH BREVE
(16#004D8#, 16#004D8#), -- (Lu) CYRILLIC CAPITAL LETTER SCHWA .. CYRILLIC CAPITAL LETTER SCHWA
(16#004D9#, 16#004D9#), -- (Ll) CYRILLIC SMALL LETTER SCHWA .. CYRILLIC SMALL LETTER SCHWA
(16#004DA#, 16#004DA#), -- (Lu) CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS .. CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS
(16#004DB#, 16#004DB#), -- (Ll) CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS .. CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS
(16#004DC#, 16#004DC#), -- (Lu) CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS
(16#004DD#, 16#004DD#), -- (Ll) CYRILLIC SMALL LETTER ZHE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZHE WITH DIAERESIS
(16#004DE#, 16#004DE#), -- (Lu) CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS
(16#004DF#, 16#004DF#), -- (Ll) CYRILLIC SMALL LETTER ZE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZE WITH DIAERESIS
(16#004E0#, 16#004E0#), -- (Lu) CYRILLIC CAPITAL LETTER ABKHASIAN DZE .. CYRILLIC CAPITAL LETTER ABKHASIAN DZE
(16#004E1#, 16#004E1#), -- (Ll) CYRILLIC SMALL LETTER ABKHASIAN DZE .. CYRILLIC SMALL LETTER ABKHASIAN DZE
(16#004E2#, 16#004E2#), -- (Lu) CYRILLIC CAPITAL LETTER I WITH MACRON .. CYRILLIC CAPITAL LETTER I WITH MACRON
(16#004E3#, 16#004E3#), -- (Ll) CYRILLIC SMALL LETTER I WITH MACRON .. CYRILLIC SMALL LETTER I WITH MACRON
(16#004E4#, 16#004E4#), -- (Lu) CYRILLIC CAPITAL LETTER I WITH DIAERESIS .. CYRILLIC CAPITAL LETTER I WITH DIAERESIS
(16#004E5#, 16#004E5#), -- (Ll) CYRILLIC SMALL LETTER I WITH DIAERESIS .. CYRILLIC SMALL LETTER I WITH DIAERESIS
(16#004E6#, 16#004E6#), -- (Lu) CYRILLIC CAPITAL LETTER O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER O WITH DIAERESIS
(16#004E7#, 16#004E7#), -- (Ll) CYRILLIC SMALL LETTER O WITH DIAERESIS .. CYRILLIC SMALL LETTER O WITH DIAERESIS
(16#004E8#, 16#004E8#), -- (Lu) CYRILLIC CAPITAL LETTER BARRED O .. CYRILLIC CAPITAL LETTER BARRED O
(16#004E9#, 16#004E9#), -- (Ll) CYRILLIC SMALL LETTER BARRED O .. CYRILLIC SMALL LETTER BARRED O
(16#004EA#, 16#004EA#), -- (Lu) CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS
(16#004EB#, 16#004EB#), -- (Ll) CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS .. CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS
(16#004EC#, 16#004EC#), -- (Lu) CYRILLIC CAPITAL LETTER E WITH DIAERESIS .. CYRILLIC CAPITAL LETTER E WITH DIAERESIS
(16#004ED#, 16#004ED#), -- (Ll) CYRILLIC SMALL LETTER E WITH DIAERESIS .. CYRILLIC SMALL LETTER E WITH DIAERESIS
(16#004EE#, 16#004EE#), -- (Lu) CYRILLIC CAPITAL LETTER U WITH MACRON .. CYRILLIC CAPITAL LETTER U WITH MACRON
(16#004EF#, 16#004EF#), -- (Ll) CYRILLIC SMALL LETTER U WITH MACRON .. CYRILLIC SMALL LETTER U WITH MACRON
(16#004F0#, 16#004F0#), -- (Lu) CYRILLIC CAPITAL LETTER U WITH DIAERESIS .. CYRILLIC CAPITAL LETTER U WITH DIAERESIS
(16#004F1#, 16#004F1#), -- (Ll) CYRILLIC SMALL LETTER U WITH DIAERESIS .. CYRILLIC SMALL LETTER U WITH DIAERESIS
(16#004F2#, 16#004F2#), -- (Lu) CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE .. CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE
(16#004F3#, 16#004F3#), -- (Ll) CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE .. CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE
(16#004F4#, 16#004F4#), -- (Lu) CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS
(16#004F5#, 16#004F5#), -- (Ll) CYRILLIC SMALL LETTER CHE WITH DIAERESIS .. CYRILLIC SMALL LETTER CHE WITH DIAERESIS
(16#004F8#, 16#004F8#), -- (Lu) CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS .. CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS
(16#004F9#, 16#004F9#), -- (Ll) CYRILLIC SMALL LETTER YERU WITH DIAERESIS .. CYRILLIC SMALL LETTER YERU WITH DIAERESIS
(16#00500#, 16#00500#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI DE .. CYRILLIC CAPITAL LETTER KOMI DE
(16#00501#, 16#00501#), -- (Ll) CYRILLIC SMALL LETTER KOMI DE .. CYRILLIC SMALL LETTER KOMI DE
(16#00502#, 16#00502#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI DJE .. CYRILLIC CAPITAL LETTER KOMI DJE
(16#00503#, 16#00503#), -- (Ll) CYRILLIC SMALL LETTER KOMI DJE .. CYRILLIC SMALL LETTER KOMI DJE
(16#00504#, 16#00504#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI ZJE .. CYRILLIC CAPITAL LETTER KOMI ZJE
(16#00505#, 16#00505#), -- (Ll) CYRILLIC SMALL LETTER KOMI ZJE .. CYRILLIC SMALL LETTER KOMI ZJE
(16#00506#, 16#00506#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI DZJE .. CYRILLIC CAPITAL LETTER KOMI DZJE
(16#00507#, 16#00507#), -- (Ll) CYRILLIC SMALL LETTER KOMI DZJE .. CYRILLIC SMALL LETTER KOMI DZJE
(16#00508#, 16#00508#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI LJE .. CYRILLIC CAPITAL LETTER KOMI LJE
(16#00509#, 16#00509#), -- (Ll) CYRILLIC SMALL LETTER KOMI LJE .. CYRILLIC SMALL LETTER KOMI LJE
(16#0050A#, 16#0050A#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI NJE .. CYRILLIC CAPITAL LETTER KOMI NJE
(16#0050B#, 16#0050B#), -- (Ll) CYRILLIC SMALL LETTER KOMI NJE .. CYRILLIC SMALL LETTER KOMI NJE
(16#0050C#, 16#0050C#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI SJE .. CYRILLIC CAPITAL LETTER KOMI SJE
(16#0050D#, 16#0050D#), -- (Ll) CYRILLIC SMALL LETTER KOMI SJE .. CYRILLIC SMALL LETTER KOMI SJE
(16#0050E#, 16#0050E#), -- (Lu) CYRILLIC CAPITAL LETTER KOMI TJE .. CYRILLIC CAPITAL LETTER KOMI TJE
(16#0050F#, 16#0050F#), -- (Ll) CYRILLIC SMALL LETTER KOMI TJE .. CYRILLIC SMALL LETTER KOMI TJE
(16#00531#, 16#00556#), -- (Lu) ARMENIAN CAPITAL LETTER AYB .. ARMENIAN CAPITAL LETTER FEH
(16#00559#, 16#00559#), -- (Lm) ARMENIAN MODIFIER LETTER LEFT HALF RING .. ARMENIAN MODIFIER LETTER LEFT HALF RING
(16#0055A#, 16#0055F#), -- (Po) ARMENIAN APOSTROPHE .. ARMENIAN ABBREVIATION MARK
(16#00561#, 16#00587#), -- (Ll) ARMENIAN SMALL LETTER AYB .. ARMENIAN SMALL LIGATURE ECH YIWN
(16#00589#, 16#00589#), -- (Po) ARMENIAN FULL STOP .. ARMENIAN FULL STOP
(16#0058A#, 16#0058A#), -- (Pd) ARMENIAN HYPHEN .. ARMENIAN HYPHEN
(16#00591#, 16#005A1#), -- (Mn) HEBREW ACCENT ETNAHTA .. HEBREW ACCENT PAZER
(16#005A3#, 16#005B9#), -- (Mn) HEBREW ACCENT MUNAH .. HEBREW POINT HOLAM
(16#005BB#, 16#005BD#), -- (Mn) HEBREW POINT QUBUTS .. HEBREW POINT METEG
(16#005BE#, 16#005BE#), -- (Po) HEBREW PUNCTUATION MAQAF .. HEBREW PUNCTUATION MAQAF
(16#005BF#, 16#005BF#), -- (Mn) HEBREW POINT RAFE .. HEBREW POINT RAFE
(16#005C0#, 16#005C0#), -- (Po) HEBREW PUNCTUATION PASEQ .. HEBREW PUNCTUATION PASEQ
(16#005C1#, 16#005C2#), -- (Mn) HEBREW POINT SHIN DOT .. HEBREW POINT SIN DOT
(16#005C3#, 16#005C3#), -- (Po) HEBREW PUNCTUATION SOF PASUQ .. HEBREW PUNCTUATION SOF PASUQ
(16#005C4#, 16#005C4#), -- (Mn) HEBREW MARK UPPER DOT .. HEBREW MARK UPPER DOT
(16#005D0#, 16#005EA#), -- (Lo) HEBREW LETTER ALEF .. HEBREW LETTER TAV
(16#005F0#, 16#005F2#), -- (Lo) HEBREW LIGATURE YIDDISH DOUBLE VAV .. HEBREW LIGATURE YIDDISH DOUBLE YOD
(16#005F3#, 16#005F4#), -- (Po) HEBREW PUNCTUATION GERESH .. HEBREW PUNCTUATION GERSHAYIM
(16#00600#, 16#00603#), -- (Cf) ARABIC NUMBER SIGN .. ARABIC SIGN SAFHA
(16#0060C#, 16#0060D#), -- (Po) ARABIC COMMA .. ARABIC DATE SEPARATOR
(16#0060E#, 16#0060F#), -- (So) ARABIC POETIC VERSE SIGN .. ARABIC SIGN MISRA
(16#00610#, 16#00615#), -- (Mn) ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM .. ARABIC SMALL HIGH TAH
(16#0061B#, 16#0061B#), -- (Po) ARABIC SEMICOLON .. ARABIC SEMICOLON
(16#0061F#, 16#0061F#), -- (Po) ARABIC QUESTION MARK .. ARABIC QUESTION MARK
(16#00621#, 16#0063A#), -- (Lo) ARABIC LETTER HAMZA .. ARABIC LETTER GHAIN
(16#00640#, 16#00640#), -- (Lm) ARABIC TATWEEL .. ARABIC TATWEEL
(16#00641#, 16#0064A#), -- (Lo) ARABIC LETTER FEH .. ARABIC LETTER YEH
(16#0064B#, 16#00658#), -- (Mn) ARABIC FATHATAN .. ARABIC MARK NOON GHUNNA
(16#00660#, 16#00669#), -- (Nd) ARABIC-INDIC DIGIT ZERO .. ARABIC-INDIC DIGIT NINE
(16#0066A#, 16#0066D#), -- (Po) ARABIC PERCENT SIGN .. ARABIC FIVE POINTED STAR
(16#0066E#, 16#0066F#), -- (Lo) ARABIC LETTER DOTLESS BEH .. ARABIC LETTER DOTLESS QAF
(16#00670#, 16#00670#), -- (Mn) ARABIC LETTER SUPERSCRIPT ALEF .. ARABIC LETTER SUPERSCRIPT ALEF
(16#00671#, 16#006D3#), -- (Lo) ARABIC LETTER ALEF WASLA .. ARABIC LETTER YEH BARREE WITH HAMZA ABOVE
(16#006D4#, 16#006D4#), -- (Po) ARABIC FULL STOP .. ARABIC FULL STOP
(16#006D5#, 16#006D5#), -- (Lo) ARABIC LETTER AE .. ARABIC LETTER AE
(16#006D6#, 16#006DC#), -- (Mn) ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA .. ARABIC SMALL HIGH SEEN
(16#006DD#, 16#006DD#), -- (Cf) ARABIC END OF AYAH .. ARABIC END OF AYAH
(16#006DE#, 16#006DE#), -- (Me) ARABIC START OF RUB EL HIZB .. ARABIC START OF RUB EL HIZB
(16#006DF#, 16#006E4#), -- (Mn) ARABIC SMALL HIGH ROUNDED ZERO .. ARABIC SMALL HIGH MADDA
(16#006E5#, 16#006E6#), -- (Lm) ARABIC SMALL WAW .. ARABIC SMALL YEH
(16#006E7#, 16#006E8#), -- (Mn) ARABIC SMALL HIGH YEH .. ARABIC SMALL HIGH NOON
(16#006E9#, 16#006E9#), -- (So) ARABIC PLACE OF SAJDAH .. ARABIC PLACE OF SAJDAH
(16#006EA#, 16#006ED#), -- (Mn) ARABIC EMPTY CENTRE LOW STOP .. ARABIC SMALL LOW MEEM
(16#006EE#, 16#006EF#), -- (Lo) ARABIC LETTER DAL WITH INVERTED V .. ARABIC LETTER REH WITH INVERTED V
(16#006F0#, 16#006F9#), -- (Nd) EXTENDED ARABIC-INDIC DIGIT ZERO .. EXTENDED ARABIC-INDIC DIGIT NINE
(16#006FA#, 16#006FC#), -- (Lo) ARABIC LETTER SHEEN WITH DOT BELOW .. ARABIC LETTER GHAIN WITH DOT BELOW
(16#006FD#, 16#006FE#), -- (So) ARABIC SIGN SINDHI AMPERSAND .. ARABIC SIGN SINDHI POSTPOSITION MEN
(16#006FF#, 16#006FF#), -- (Lo) ARABIC LETTER HEH WITH INVERTED V .. ARABIC LETTER HEH WITH INVERTED V
(16#00700#, 16#0070D#), -- (Po) SYRIAC END OF PARAGRAPH .. SYRIAC HARKLEAN ASTERISCUS
(16#0070F#, 16#0070F#), -- (Cf) SYRIAC ABBREVIATION MARK .. SYRIAC ABBREVIATION MARK
(16#00710#, 16#00710#), -- (Lo) SYRIAC LETTER ALAPH .. SYRIAC LETTER ALAPH
(16#00711#, 16#00711#), -- (Mn) SYRIAC LETTER SUPERSCRIPT ALAPH .. SYRIAC LETTER SUPERSCRIPT ALAPH
(16#00712#, 16#0072F#), -- (Lo) SYRIAC LETTER BETH .. SYRIAC LETTER PERSIAN DHALATH
(16#00730#, 16#0074A#), -- (Mn) SYRIAC PTHAHA ABOVE .. SYRIAC BARREKH
(16#0074D#, 16#0074F#), -- (Lo) SYRIAC LETTER SOGDIAN ZHAIN .. SYRIAC LETTER SOGDIAN FE
(16#00780#, 16#007A5#), -- (Lo) THAANA LETTER HAA .. THAANA LETTER WAAVU
(16#007A6#, 16#007B0#), -- (Mn) THAANA ABAFILI .. THAANA SUKUN
(16#007B1#, 16#007B1#), -- (Lo) THAANA LETTER NAA .. THAANA LETTER NAA
(16#00901#, 16#00902#), -- (Mn) DEVANAGARI SIGN CANDRABINDU .. DEVANAGARI SIGN ANUSVARA
(16#00903#, 16#00903#), -- (Mc) DEVANAGARI SIGN VISARGA .. DEVANAGARI SIGN VISARGA
(16#00904#, 16#00939#), -- (Lo) DEVANAGARI LETTER SHORT A .. DEVANAGARI LETTER HA
(16#0093C#, 16#0093C#), -- (Mn) DEVANAGARI SIGN NUKTA .. DEVANAGARI SIGN NUKTA
(16#0093D#, 16#0093D#), -- (Lo) DEVANAGARI SIGN AVAGRAHA .. DEVANAGARI SIGN AVAGRAHA
(16#0093E#, 16#00940#), -- (Mc) DEVANAGARI VOWEL SIGN AA .. DEVANAGARI VOWEL SIGN II
(16#00941#, 16#00948#), -- (Mn) DEVANAGARI VOWEL SIGN U .. DEVANAGARI VOWEL SIGN AI
(16#00949#, 16#0094C#), -- (Mc) DEVANAGARI VOWEL SIGN CANDRA O .. DEVANAGARI VOWEL SIGN AU
(16#0094D#, 16#0094D#), -- (Mn) DEVANAGARI SIGN VIRAMA .. DEVANAGARI SIGN VIRAMA
(16#00950#, 16#00950#), -- (Lo) DEVANAGARI OM .. DEVANAGARI OM
(16#00951#, 16#00954#), -- (Mn) DEVANAGARI STRESS SIGN UDATTA .. DEVANAGARI ACUTE ACCENT
(16#00958#, 16#00961#), -- (Lo) DEVANAGARI LETTER QA .. DEVANAGARI LETTER VOCALIC LL
(16#00962#, 16#00963#), -- (Mn) DEVANAGARI VOWEL SIGN VOCALIC L .. DEVANAGARI VOWEL SIGN VOCALIC LL
(16#00964#, 16#00965#), -- (Po) DEVANAGARI DANDA .. DEVANAGARI DOUBLE DANDA
(16#00966#, 16#0096F#), -- (Nd) DEVANAGARI DIGIT ZERO .. DEVANAGARI DIGIT NINE
(16#00970#, 16#00970#), -- (Po) DEVANAGARI ABBREVIATION SIGN .. DEVANAGARI ABBREVIATION SIGN
(16#00981#, 16#00981#), -- (Mn) BENGALI SIGN CANDRABINDU .. BENGALI SIGN CANDRABINDU
(16#00982#, 16#00983#), -- (Mc) BENGALI SIGN ANUSVARA .. BENGALI SIGN VISARGA
(16#00985#, 16#0098C#), -- (Lo) BENGALI LETTER A .. BENGALI LETTER VOCALIC L
(16#0098F#, 16#00990#), -- (Lo) BENGALI LETTER E .. BENGALI LETTER AI
(16#00993#, 16#009A8#), -- (Lo) BENGALI LETTER O .. BENGALI LETTER NA
(16#009AA#, 16#009B0#), -- (Lo) BENGALI LETTER PA .. BENGALI LETTER RA
(16#009B2#, 16#009B2#), -- (Lo) BENGALI LETTER LA .. BENGALI LETTER LA
(16#009B6#, 16#009B9#), -- (Lo) BENGALI LETTER SHA .. BENGALI LETTER HA
(16#009BC#, 16#009BC#), -- (Mn) BENGALI SIGN NUKTA .. BENGALI SIGN NUKTA
(16#009BD#, 16#009BD#), -- (Lo) BENGALI SIGN AVAGRAHA .. BENGALI SIGN AVAGRAHA
(16#009BE#, 16#009C0#), -- (Mc) BENGALI VOWEL SIGN AA .. BENGALI VOWEL SIGN II
(16#009C1#, 16#009C4#), -- (Mn) BENGALI VOWEL SIGN U .. BENGALI VOWEL SIGN VOCALIC RR
(16#009C7#, 16#009C8#), -- (Mc) BENGALI VOWEL SIGN E .. BENGALI VOWEL SIGN AI
(16#009CB#, 16#009CC#), -- (Mc) BENGALI VOWEL SIGN O .. BENGALI VOWEL SIGN AU
(16#009CD#, 16#009CD#), -- (Mn) BENGALI SIGN VIRAMA .. BENGALI SIGN VIRAMA
(16#009D7#, 16#009D7#), -- (Mc) BENGALI AU LENGTH MARK .. BENGALI AU LENGTH MARK
(16#009DC#, 16#009DD#), -- (Lo) BENGALI LETTER RRA .. BENGALI LETTER RHA
(16#009DF#, 16#009E1#), -- (Lo) BENGALI LETTER YYA .. BENGALI LETTER VOCALIC LL
(16#009E2#, 16#009E3#), -- (Mn) BENGALI VOWEL SIGN VOCALIC L .. BENGALI VOWEL SIGN VOCALIC LL
(16#009E6#, 16#009EF#), -- (Nd) BENGALI DIGIT ZERO .. BENGALI DIGIT NINE
(16#009F0#, 16#009F1#), -- (Lo) BENGALI LETTER RA WITH MIDDLE DIAGONAL .. BENGALI LETTER RA WITH LOWER DIAGONAL
(16#009F2#, 16#009F3#), -- (Sc) BENGALI RUPEE MARK .. BENGALI RUPEE SIGN
(16#009F4#, 16#009F9#), -- (No) BENGALI CURRENCY NUMERATOR ONE .. BENGALI CURRENCY DENOMINATOR SIXTEEN
(16#009FA#, 16#009FA#), -- (So) BENGALI ISSHAR .. BENGALI ISSHAR
(16#00A01#, 16#00A02#), -- (Mn) GURMUKHI SIGN ADAK BINDI .. GURMUKHI SIGN BINDI
(16#00A03#, 16#00A03#), -- (Mc) GURMUKHI SIGN VISARGA .. GURMUKHI SIGN VISARGA
(16#00A05#, 16#00A0A#), -- (Lo) GURMUKHI LETTER A .. GURMUKHI LETTER UU
(16#00A0F#, 16#00A10#), -- (Lo) GURMUKHI LETTER EE .. GURMUKHI LETTER AI
(16#00A13#, 16#00A28#), -- (Lo) GURMUKHI LETTER OO .. GURMUKHI LETTER NA
(16#00A2A#, 16#00A30#), -- (Lo) GURMUKHI LETTER PA .. GURMUKHI LETTER RA
(16#00A32#, 16#00A33#), -- (Lo) GURMUKHI LETTER LA .. GURMUKHI LETTER LLA
(16#00A35#, 16#00A36#), -- (Lo) GURMUKHI LETTER VA .. GURMUKHI LETTER SHA
(16#00A38#, 16#00A39#), -- (Lo) GURMUKHI LETTER SA .. GURMUKHI LETTER HA
(16#00A3C#, 16#00A3C#), -- (Mn) GURMUKHI SIGN NUKTA .. GURMUKHI SIGN NUKTA
(16#00A3E#, 16#00A40#), -- (Mc) GURMUKHI VOWEL SIGN AA .. GURMUKHI VOWEL SIGN II
(16#00A41#, 16#00A42#), -- (Mn) GURMUKHI VOWEL SIGN U .. GURMUKHI VOWEL SIGN UU
(16#00A47#, 16#00A48#), -- (Mn) GURMUKHI VOWEL SIGN EE .. GURMUKHI VOWEL SIGN AI
(16#00A4B#, 16#00A4D#), -- (Mn) GURMUKHI VOWEL SIGN OO .. GURMUKHI SIGN VIRAMA
(16#00A59#, 16#00A5C#), -- (Lo) GURMUKHI LETTER KHHA .. GURMUKHI LETTER RRA
(16#00A5E#, 16#00A5E#), -- (Lo) GURMUKHI LETTER FA .. GURMUKHI LETTER FA
(16#00A66#, 16#00A6F#), -- (Nd) GURMUKHI DIGIT ZERO .. GURMUKHI DIGIT NINE
(16#00A70#, 16#00A71#), -- (Mn) GURMUKHI TIPPI .. GURMUKHI ADDAK
(16#00A72#, 16#00A74#), -- (Lo) GURMUKHI IRI .. GURMUKHI EK ONKAR
(16#00A81#, 16#00A82#), -- (Mn) GUJARATI SIGN CANDRABINDU .. GUJARATI SIGN ANUSVARA
(16#00A83#, 16#00A83#), -- (Mc) GUJARATI SIGN VISARGA .. GUJARATI SIGN VISARGA
(16#00A85#, 16#00A8D#), -- (Lo) GUJARATI LETTER A .. GUJARATI VOWEL CANDRA E
(16#00A8F#, 16#00A91#), -- (Lo) GUJARATI LETTER E .. GUJARATI VOWEL CANDRA O
(16#00A93#, 16#00AA8#), -- (Lo) GUJARATI LETTER O .. GUJARATI LETTER NA
(16#00AAA#, 16#00AB0#), -- (Lo) GUJARATI LETTER PA .. GUJARATI LETTER RA
(16#00AB2#, 16#00AB3#), -- (Lo) GUJARATI LETTER LA .. GUJARATI LETTER LLA
(16#00AB5#, 16#00AB9#), -- (Lo) GUJARATI LETTER VA .. GUJARATI LETTER HA
(16#00ABC#, 16#00ABC#), -- (Mn) GUJARATI SIGN NUKTA .. GUJARATI SIGN NUKTA
(16#00ABD#, 16#00ABD#), -- (Lo) GUJARATI SIGN AVAGRAHA .. GUJARATI SIGN AVAGRAHA
(16#00ABE#, 16#00AC0#), -- (Mc) GUJARATI VOWEL SIGN AA .. GUJARATI VOWEL SIGN II
(16#00AC1#, 16#00AC5#), -- (Mn) GUJARATI VOWEL SIGN U .. GUJARATI VOWEL SIGN CANDRA E
(16#00AC7#, 16#00AC8#), -- (Mn) GUJARATI VOWEL SIGN E .. GUJARATI VOWEL SIGN AI
(16#00AC9#, 16#00AC9#), -- (Mc) GUJARATI VOWEL SIGN CANDRA O .. GUJARATI VOWEL SIGN CANDRA O
(16#00ACB#, 16#00ACC#), -- (Mc) GUJARATI VOWEL SIGN O .. GUJARATI VOWEL SIGN AU
(16#00ACD#, 16#00ACD#), -- (Mn) GUJARATI SIGN VIRAMA .. GUJARATI SIGN VIRAMA
(16#00AD0#, 16#00AD0#), -- (Lo) GUJARATI OM .. GUJARATI OM
(16#00AE0#, 16#00AE1#), -- (Lo) GUJARATI LETTER VOCALIC RR .. GUJARATI LETTER VOCALIC LL
(16#00AE2#, 16#00AE3#), -- (Mn) GUJARATI VOWEL SIGN VOCALIC L .. GUJARATI VOWEL SIGN VOCALIC LL
(16#00AE6#, 16#00AEF#), -- (Nd) GUJARATI DIGIT ZERO .. GUJARATI DIGIT NINE
(16#00AF1#, 16#00AF1#), -- (Sc) GUJARATI RUPEE SIGN .. GUJARATI RUPEE SIGN
(16#00B01#, 16#00B01#), -- (Mn) ORIYA SIGN CANDRABINDU .. ORIYA SIGN CANDRABINDU
(16#00B02#, 16#00B03#), -- (Mc) ORIYA SIGN ANUSVARA .. ORIYA SIGN VISARGA
(16#00B05#, 16#00B0C#), -- (Lo) ORIYA LETTER A .. ORIYA LETTER VOCALIC L
(16#00B0F#, 16#00B10#), -- (Lo) ORIYA LETTER E .. ORIYA LETTER AI
(16#00B13#, 16#00B28#), -- (Lo) ORIYA LETTER O .. ORIYA LETTER NA
(16#00B2A#, 16#00B30#), -- (Lo) ORIYA LETTER PA .. ORIYA LETTER RA
(16#00B32#, 16#00B33#), -- (Lo) ORIYA LETTER LA .. ORIYA LETTER LLA
(16#00B35#, 16#00B39#), -- (Lo) ORIYA LETTER VA .. ORIYA LETTER HA
(16#00B3C#, 16#00B3C#), -- (Mn) ORIYA SIGN NUKTA .. ORIYA SIGN NUKTA
(16#00B3D#, 16#00B3D#), -- (Lo) ORIYA SIGN AVAGRAHA .. ORIYA SIGN AVAGRAHA
(16#00B3E#, 16#00B3E#), -- (Mc) ORIYA VOWEL SIGN AA .. ORIYA VOWEL SIGN AA
(16#00B3F#, 16#00B3F#), -- (Mn) ORIYA VOWEL SIGN I .. ORIYA VOWEL SIGN I
(16#00B40#, 16#00B40#), -- (Mc) ORIYA VOWEL SIGN II .. ORIYA VOWEL SIGN II
(16#00B41#, 16#00B43#), -- (Mn) ORIYA VOWEL SIGN U .. ORIYA VOWEL SIGN VOCALIC R
(16#00B47#, 16#00B48#), -- (Mc) ORIYA VOWEL SIGN E .. ORIYA VOWEL SIGN AI
(16#00B4B#, 16#00B4C#), -- (Mc) ORIYA VOWEL SIGN O .. ORIYA VOWEL SIGN AU
(16#00B4D#, 16#00B4D#), -- (Mn) ORIYA SIGN VIRAMA .. ORIYA SIGN VIRAMA
(16#00B56#, 16#00B56#), -- (Mn) ORIYA AI LENGTH MARK .. ORIYA AI LENGTH MARK
(16#00B57#, 16#00B57#), -- (Mc) ORIYA AU LENGTH MARK .. ORIYA AU LENGTH MARK
(16#00B5C#, 16#00B5D#), -- (Lo) ORIYA LETTER RRA .. ORIYA LETTER RHA
(16#00B5F#, 16#00B61#), -- (Lo) ORIYA LETTER YYA .. ORIYA LETTER VOCALIC LL
(16#00B66#, 16#00B6F#), -- (Nd) ORIYA DIGIT ZERO .. ORIYA DIGIT NINE
(16#00B70#, 16#00B70#), -- (So) ORIYA ISSHAR .. ORIYA ISSHAR
(16#00B71#, 16#00B71#), -- (Lo) ORIYA LETTER WA .. ORIYA LETTER WA
(16#00B82#, 16#00B82#), -- (Mn) TAMIL SIGN ANUSVARA .. TAMIL SIGN ANUSVARA
(16#00B83#, 16#00B83#), -- (Lo) TAMIL SIGN VISARGA .. TAMIL SIGN VISARGA
(16#00B85#, 16#00B8A#), -- (Lo) TAMIL LETTER A .. TAMIL LETTER UU
(16#00B8E#, 16#00B90#), -- (Lo) TAMIL LETTER E .. TAMIL LETTER AI
(16#00B92#, 16#00B95#), -- (Lo) TAMIL LETTER O .. TAMIL LETTER KA
(16#00B99#, 16#00B9A#), -- (Lo) TAMIL LETTER NGA .. TAMIL LETTER CA
(16#00B9C#, 16#00B9C#), -- (Lo) TAMIL LETTER JA .. TAMIL LETTER JA
(16#00B9E#, 16#00B9F#), -- (Lo) TAMIL LETTER NYA .. TAMIL LETTER TTA
(16#00BA3#, 16#00BA4#), -- (Lo) TAMIL LETTER NNA .. TAMIL LETTER TA
(16#00BA8#, 16#00BAA#), -- (Lo) TAMIL LETTER NA .. TAMIL LETTER PA
(16#00BAE#, 16#00BB5#), -- (Lo) TAMIL LETTER MA .. TAMIL LETTER VA
(16#00BB7#, 16#00BB9#), -- (Lo) TAMIL LETTER SSA .. TAMIL LETTER HA
(16#00BBE#, 16#00BBF#), -- (Mc) TAMIL VOWEL SIGN AA .. TAMIL VOWEL SIGN I
(16#00BC0#, 16#00BC0#), -- (Mn) TAMIL VOWEL SIGN II .. TAMIL VOWEL SIGN II
(16#00BC1#, 16#00BC2#), -- (Mc) TAMIL VOWEL SIGN U .. TAMIL VOWEL SIGN UU
(16#00BC6#, 16#00BC8#), -- (Mc) TAMIL VOWEL SIGN E .. TAMIL VOWEL SIGN AI
(16#00BCA#, 16#00BCC#), -- (Mc) TAMIL VOWEL SIGN O .. TAMIL VOWEL SIGN AU
(16#00BCD#, 16#00BCD#), -- (Mn) TAMIL SIGN VIRAMA .. TAMIL SIGN VIRAMA
(16#00BD7#, 16#00BD7#), -- (Mc) TAMIL AU LENGTH MARK .. TAMIL AU LENGTH MARK
(16#00BE7#, 16#00BEF#), -- (Nd) TAMIL DIGIT ONE .. TAMIL DIGIT NINE
(16#00BF0#, 16#00BF2#), -- (No) TAMIL NUMBER TEN .. TAMIL NUMBER ONE THOUSAND
(16#00BF3#, 16#00BF8#), -- (So) TAMIL DAY SIGN .. TAMIL AS ABOVE SIGN
(16#00BF9#, 16#00BF9#), -- (Sc) TAMIL RUPEE SIGN .. TAMIL RUPEE SIGN
(16#00BFA#, 16#00BFA#), -- (So) TAMIL NUMBER SIGN .. TAMIL NUMBER SIGN
(16#00C01#, 16#00C03#), -- (Mc) TELUGU SIGN CANDRABINDU .. TELUGU SIGN VISARGA
(16#00C05#, 16#00C0C#), -- (Lo) TELUGU LETTER A .. TELUGU LETTER VOCALIC L
(16#00C0E#, 16#00C10#), -- (Lo) TELUGU LETTER E .. TELUGU LETTER AI
(16#00C12#, 16#00C28#), -- (Lo) TELUGU LETTER O .. TELUGU LETTER NA
(16#00C2A#, 16#00C33#), -- (Lo) TELUGU LETTER PA .. TELUGU LETTER LLA
(16#00C35#, 16#00C39#), -- (Lo) TELUGU LETTER VA .. TELUGU LETTER HA
(16#00C3E#, 16#00C40#), -- (Mn) TELUGU VOWEL SIGN AA .. TELUGU VOWEL SIGN II
(16#00C41#, 16#00C44#), -- (Mc) TELUGU VOWEL SIGN U .. TELUGU VOWEL SIGN VOCALIC RR
(16#00C46#, 16#00C48#), -- (Mn) TELUGU VOWEL SIGN E .. TELUGU VOWEL SIGN AI
(16#00C4A#, 16#00C4D#), -- (Mn) TELUGU VOWEL SIGN O .. TELUGU SIGN VIRAMA
(16#00C55#, 16#00C56#), -- (Mn) TELUGU LENGTH MARK .. TELUGU AI LENGTH MARK
(16#00C60#, 16#00C61#), -- (Lo) TELUGU LETTER VOCALIC RR .. TELUGU LETTER VOCALIC LL
(16#00C66#, 16#00C6F#), -- (Nd) TELUGU DIGIT ZERO .. TELUGU DIGIT NINE
(16#00C82#, 16#00C83#), -- (Mc) KANNADA SIGN ANUSVARA .. KANNADA SIGN VISARGA
(16#00C85#, 16#00C8C#), -- (Lo) KANNADA LETTER A .. KANNADA LETTER VOCALIC L
(16#00C8E#, 16#00C90#), -- (Lo) KANNADA LETTER E .. KANNADA LETTER AI
(16#00C92#, 16#00CA8#), -- (Lo) KANNADA LETTER O .. KANNADA LETTER NA
(16#00CAA#, 16#00CB3#), -- (Lo) KANNADA LETTER PA .. KANNADA LETTER LLA
(16#00CB5#, 16#00CB9#), -- (Lo) KANNADA LETTER VA .. KANNADA LETTER HA
(16#00CBC#, 16#00CBC#), -- (Mn) KANNADA SIGN NUKTA .. KANNADA SIGN NUKTA
(16#00CBD#, 16#00CBD#), -- (Lo) KANNADA SIGN AVAGRAHA .. KANNADA SIGN AVAGRAHA
(16#00CBE#, 16#00CBE#), -- (Mc) KANNADA VOWEL SIGN AA .. KANNADA VOWEL SIGN AA
(16#00CBF#, 16#00CBF#), -- (Mn) KANNADA VOWEL SIGN I .. KANNADA VOWEL SIGN I
(16#00CC0#, 16#00CC4#), -- (Mc) KANNADA VOWEL SIGN II .. KANNADA VOWEL SIGN VOCALIC RR
(16#00CC6#, 16#00CC6#), -- (Mn) KANNADA VOWEL SIGN E .. KANNADA VOWEL SIGN E
(16#00CC7#, 16#00CC8#), -- (Mc) KANNADA VOWEL SIGN EE .. KANNADA VOWEL SIGN AI
(16#00CCA#, 16#00CCB#), -- (Mc) KANNADA VOWEL SIGN O .. KANNADA VOWEL SIGN OO
(16#00CCC#, 16#00CCD#), -- (Mn) KANNADA VOWEL SIGN AU .. KANNADA SIGN VIRAMA
(16#00CD5#, 16#00CD6#), -- (Mc) KANNADA LENGTH MARK .. KANNADA AI LENGTH MARK
(16#00CDE#, 16#00CDE#), -- (Lo) KANNADA LETTER FA .. KANNADA LETTER FA
(16#00CE0#, 16#00CE1#), -- (Lo) KANNADA LETTER VOCALIC RR .. KANNADA LETTER VOCALIC LL
(16#00CE6#, 16#00CEF#), -- (Nd) KANNADA DIGIT ZERO .. KANNADA DIGIT NINE
(16#00D02#, 16#00D03#), -- (Mc) MALAYALAM SIGN ANUSVARA .. MALAYALAM SIGN VISARGA
(16#00D05#, 16#00D0C#), -- (Lo) MALAYALAM LETTER A .. MALAYALAM LETTER VOCALIC L
(16#00D0E#, 16#00D10#), -- (Lo) MALAYALAM LETTER E .. MALAYALAM LETTER AI
(16#00D12#, 16#00D28#), -- (Lo) MALAYALAM LETTER O .. MALAYALAM LETTER NA
(16#00D2A#, 16#00D39#), -- (Lo) MALAYALAM LETTER PA .. MALAYALAM LETTER HA
(16#00D3E#, 16#00D40#), -- (Mc) MALAYALAM VOWEL SIGN AA .. MALAYALAM VOWEL SIGN II
(16#00D41#, 16#00D43#), -- (Mn) MALAYALAM VOWEL SIGN U .. MALAYALAM VOWEL SIGN VOCALIC R
(16#00D46#, 16#00D48#), -- (Mc) MALAYALAM VOWEL SIGN E .. MALAYALAM VOWEL SIGN AI
(16#00D4A#, 16#00D4C#), -- (Mc) MALAYALAM VOWEL SIGN O .. MALAYALAM VOWEL SIGN AU
(16#00D4D#, 16#00D4D#), -- (Mn) MALAYALAM SIGN VIRAMA .. MALAYALAM SIGN VIRAMA
(16#00D57#, 16#00D57#), -- (Mc) MALAYALAM AU LENGTH MARK .. MALAYALAM AU LENGTH MARK
(16#00D60#, 16#00D61#), -- (Lo) MALAYALAM LETTER VOCALIC RR .. MALAYALAM LETTER VOCALIC LL
(16#00D66#, 16#00D6F#), -- (Nd) MALAYALAM DIGIT ZERO .. MALAYALAM DIGIT NINE
(16#00D82#, 16#00D83#), -- (Mc) SINHALA SIGN ANUSVARAYA .. SINHALA SIGN VISARGAYA
(16#00D85#, 16#00D96#), -- (Lo) SINHALA LETTER AYANNA .. SINHALA LETTER AUYANNA
(16#00D9A#, 16#00DB1#), -- (Lo) SINHALA LETTER ALPAPRAANA KAYANNA .. SINHALA LETTER DANTAJA NAYANNA
(16#00DB3#, 16#00DBB#), -- (Lo) SINHALA LETTER SANYAKA DAYANNA .. SINHALA LETTER RAYANNA
(16#00DBD#, 16#00DBD#), -- (Lo) SINHALA LETTER DANTAJA LAYANNA .. SINHALA LETTER DANTAJA LAYANNA
(16#00DC0#, 16#00DC6#), -- (Lo) SINHALA LETTER VAYANNA .. SINHALA LETTER FAYANNA
(16#00DCA#, 16#00DCA#), -- (Mn) SINHALA SIGN AL-LAKUNA .. SINHALA SIGN AL-LAKUNA
(16#00DCF#, 16#00DD1#), -- (Mc) SINHALA VOWEL SIGN AELA-PILLA .. SINHALA VOWEL SIGN DIGA AEDA-PILLA
(16#00DD2#, 16#00DD4#), -- (Mn) SINHALA VOWEL SIGN KETTI IS-PILLA .. SINHALA VOWEL SIGN KETTI PAA-PILLA
(16#00DD6#, 16#00DD6#), -- (Mn) SINHALA VOWEL SIGN DIGA PAA-PILLA .. SINHALA VOWEL SIGN DIGA PAA-PILLA
(16#00DD8#, 16#00DDF#), -- (Mc) SINHALA VOWEL SIGN GAETTA-PILLA .. SINHALA VOWEL SIGN GAYANUKITTA
(16#00DF2#, 16#00DF3#), -- (Mc) SINHALA VOWEL SIGN DIGA GAETTA-PILLA .. SINHALA VOWEL SIGN DIGA GAYANUKITTA
(16#00DF4#, 16#00DF4#), -- (Po) SINHALA PUNCTUATION KUNDDALIYA .. SINHALA PUNCTUATION KUNDDALIYA
(16#00E01#, 16#00E30#), -- (Lo) THAI CHARACTER KO KAI .. THAI CHARACTER SARA A
(16#00E31#, 16#00E31#), -- (Mn) THAI CHARACTER MAI HAN-AKAT .. THAI CHARACTER MAI HAN-AKAT
(16#00E32#, 16#00E33#), -- (Lo) THAI CHARACTER SARA AA .. THAI CHARACTER SARA AM
(16#00E34#, 16#00E3A#), -- (Mn) THAI CHARACTER SARA I .. THAI CHARACTER PHINTHU
(16#00E3F#, 16#00E3F#), -- (Sc) THAI CURRENCY SYMBOL BAHT .. THAI CURRENCY SYMBOL BAHT
(16#00E40#, 16#00E45#), -- (Lo) THAI CHARACTER SARA E .. THAI CHARACTER LAKKHANGYAO
(16#00E46#, 16#00E46#), -- (Lm) THAI CHARACTER MAIYAMOK .. THAI CHARACTER MAIYAMOK
(16#00E47#, 16#00E4E#), -- (Mn) THAI CHARACTER MAITAIKHU .. THAI CHARACTER YAMAKKAN
(16#00E4F#, 16#00E4F#), -- (Po) THAI CHARACTER FONGMAN .. THAI CHARACTER FONGMAN
(16#00E50#, 16#00E59#), -- (Nd) THAI DIGIT ZERO .. THAI DIGIT NINE
(16#00E5A#, 16#00E5B#), -- (Po) THAI CHARACTER ANGKHANKHU .. THAI CHARACTER KHOMUT
(16#00E81#, 16#00E82#), -- (Lo) LAO LETTER KO .. LAO LETTER KHO SUNG
(16#00E84#, 16#00E84#), -- (Lo) LAO LETTER KHO TAM .. LAO LETTER KHO TAM
(16#00E87#, 16#00E88#), -- (Lo) LAO LETTER NGO .. LAO LETTER CO
(16#00E8A#, 16#00E8A#), -- (Lo) LAO LETTER SO TAM .. LAO LETTER SO TAM
(16#00E8D#, 16#00E8D#), -- (Lo) LAO LETTER NYO .. LAO LETTER NYO
(16#00E94#, 16#00E97#), -- (Lo) LAO LETTER DO .. LAO LETTER THO TAM
(16#00E99#, 16#00E9F#), -- (Lo) LAO LETTER NO .. LAO LETTER FO SUNG
(16#00EA1#, 16#00EA3#), -- (Lo) LAO LETTER MO .. LAO LETTER LO LING
(16#00EA5#, 16#00EA5#), -- (Lo) LAO LETTER LO LOOT .. LAO LETTER LO LOOT
(16#00EA7#, 16#00EA7#), -- (Lo) LAO LETTER WO .. LAO LETTER WO
(16#00EAA#, 16#00EAB#), -- (Lo) LAO LETTER SO SUNG .. LAO LETTER HO SUNG
(16#00EAD#, 16#00EB0#), -- (Lo) LAO LETTER O .. LAO VOWEL SIGN A
(16#00EB1#, 16#00EB1#), -- (Mn) LAO VOWEL SIGN MAI KAN .. LAO VOWEL SIGN MAI KAN
(16#00EB2#, 16#00EB3#), -- (Lo) LAO VOWEL SIGN AA .. LAO VOWEL SIGN AM
(16#00EB4#, 16#00EB9#), -- (Mn) LAO VOWEL SIGN I .. LAO VOWEL SIGN UU
(16#00EBB#, 16#00EBC#), -- (Mn) LAO VOWEL SIGN MAI KON .. LAO SEMIVOWEL SIGN LO
(16#00EBD#, 16#00EBD#), -- (Lo) LAO SEMIVOWEL SIGN NYO .. LAO SEMIVOWEL SIGN NYO
(16#00EC0#, 16#00EC4#), -- (Lo) LAO VOWEL SIGN E .. LAO VOWEL SIGN AI
(16#00EC6#, 16#00EC6#), -- (Lm) LAO KO LA .. LAO KO LA
(16#00EC8#, 16#00ECD#), -- (Mn) LAO TONE MAI EK .. LAO NIGGAHITA
(16#00ED0#, 16#00ED9#), -- (Nd) LAO DIGIT ZERO .. LAO DIGIT NINE
(16#00EDC#, 16#00EDD#), -- (Lo) LAO HO NO .. LAO HO MO
(16#00F00#, 16#00F00#), -- (Lo) TIBETAN SYLLABLE OM .. TIBETAN SYLLABLE OM
(16#00F01#, 16#00F03#), -- (So) TIBETAN MARK GTER YIG MGO TRUNCATED A .. TIBETAN MARK GTER YIG MGO -UM GTER TSHEG MA
(16#00F04#, 16#00F12#), -- (Po) TIBETAN MARK INITIAL YIG MGO MDUN MA .. TIBETAN MARK RGYA GRAM SHAD
(16#00F13#, 16#00F17#), -- (So) TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN .. TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS
(16#00F18#, 16#00F19#), -- (Mn) TIBETAN ASTROLOGICAL SIGN -KHYUD PA .. TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS
(16#00F1A#, 16#00F1F#), -- (So) TIBETAN SIGN RDEL DKAR GCIG .. TIBETAN SIGN RDEL DKAR RDEL NAG
(16#00F20#, 16#00F29#), -- (Nd) TIBETAN DIGIT ZERO .. TIBETAN DIGIT NINE
(16#00F2A#, 16#00F33#), -- (No) TIBETAN DIGIT HALF ONE .. TIBETAN DIGIT HALF ZERO
(16#00F34#, 16#00F34#), -- (So) TIBETAN MARK BSDUS RTAGS .. TIBETAN MARK BSDUS RTAGS
(16#00F35#, 16#00F35#), -- (Mn) TIBETAN MARK NGAS BZUNG NYI ZLA .. TIBETAN MARK NGAS BZUNG NYI ZLA
(16#00F36#, 16#00F36#), -- (So) TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN .. TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN
(16#00F37#, 16#00F37#), -- (Mn) TIBETAN MARK NGAS BZUNG SGOR RTAGS .. TIBETAN MARK NGAS BZUNG SGOR RTAGS
(16#00F38#, 16#00F38#), -- (So) TIBETAN MARK CHE MGO .. TIBETAN MARK CHE MGO
(16#00F39#, 16#00F39#), -- (Mn) TIBETAN MARK TSA -PHRU .. TIBETAN MARK TSA -PHRU
(16#00F3A#, 16#00F3A#), -- (Ps) TIBETAN MARK GUG RTAGS GYON .. TIBETAN MARK GUG RTAGS GYON
(16#00F3B#, 16#00F3B#), -- (Pe) TIBETAN MARK GUG RTAGS GYAS .. TIBETAN MARK GUG RTAGS GYAS
(16#00F3C#, 16#00F3C#), -- (Ps) TIBETAN MARK ANG KHANG GYON .. TIBETAN MARK ANG KHANG GYON
(16#00F3D#, 16#00F3D#), -- (Pe) TIBETAN MARK ANG KHANG GYAS .. TIBETAN MARK ANG KHANG GYAS
(16#00F3E#, 16#00F3F#), -- (Mc) TIBETAN SIGN YAR TSHES .. TIBETAN SIGN MAR TSHES
(16#00F40#, 16#00F47#), -- (Lo) TIBETAN LETTER KA .. TIBETAN LETTER JA
(16#00F49#, 16#00F6A#), -- (Lo) TIBETAN LETTER NYA .. TIBETAN LETTER FIXED-FORM RA
(16#00F71#, 16#00F7E#), -- (Mn) TIBETAN VOWEL SIGN AA .. TIBETAN SIGN RJES SU NGA RO
(16#00F7F#, 16#00F7F#), -- (Mc) TIBETAN SIGN RNAM BCAD .. TIBETAN SIGN RNAM BCAD
(16#00F80#, 16#00F84#), -- (Mn) TIBETAN VOWEL SIGN REVERSED I .. TIBETAN MARK HALANTA
(16#00F85#, 16#00F85#), -- (Po) TIBETAN MARK PALUTA .. TIBETAN MARK PALUTA
(16#00F86#, 16#00F87#), -- (Mn) TIBETAN SIGN LCI RTAGS .. TIBETAN SIGN YANG RTAGS
(16#00F88#, 16#00F8B#), -- (Lo) TIBETAN SIGN LCE TSA CAN .. TIBETAN SIGN GRU MED RGYINGS
(16#00F90#, 16#00F97#), -- (Mn) TIBETAN SUBJOINED LETTER KA .. TIBETAN SUBJOINED LETTER JA
(16#00F99#, 16#00FBC#), -- (Mn) TIBETAN SUBJOINED LETTER NYA .. TIBETAN SUBJOINED LETTER FIXED-FORM RA
(16#00FBE#, 16#00FC5#), -- (So) TIBETAN KU RU KHA .. TIBETAN SYMBOL RDO RJE
(16#00FC6#, 16#00FC6#), -- (Mn) TIBETAN SYMBOL PADMA GDAN .. TIBETAN SYMBOL PADMA GDAN
(16#00FC7#, 16#00FCC#), -- (So) TIBETAN SYMBOL RDO RJE RGYA GRAM .. TIBETAN SYMBOL NOR BU BZHI -KHYIL
(16#00FCF#, 16#00FCF#), -- (So) TIBETAN SIGN RDEL NAG GSUM .. TIBETAN SIGN RDEL NAG GSUM
(16#01000#, 16#01021#), -- (Lo) MYANMAR LETTER KA .. MYANMAR LETTER A
(16#01023#, 16#01027#), -- (Lo) MYANMAR LETTER I .. MYANMAR LETTER E
(16#01029#, 16#0102A#), -- (Lo) MYANMAR LETTER O .. MYANMAR LETTER AU
(16#0102C#, 16#0102C#), -- (Mc) MYANMAR VOWEL SIGN AA .. MYANMAR VOWEL SIGN AA
(16#0102D#, 16#01030#), -- (Mn) MYANMAR VOWEL SIGN I .. MYANMAR VOWEL SIGN UU
(16#01031#, 16#01031#), -- (Mc) MYANMAR VOWEL SIGN E .. MYANMAR VOWEL SIGN E
(16#01032#, 16#01032#), -- (Mn) MYANMAR VOWEL SIGN AI .. MYANMAR VOWEL SIGN AI
(16#01036#, 16#01037#), -- (Mn) MYANMAR SIGN ANUSVARA .. MYANMAR SIGN DOT BELOW
(16#01038#, 16#01038#), -- (Mc) MYANMAR SIGN VISARGA .. MYANMAR SIGN VISARGA
(16#01039#, 16#01039#), -- (Mn) MYANMAR SIGN VIRAMA .. MYANMAR SIGN VIRAMA
(16#01040#, 16#01049#), -- (Nd) MYANMAR DIGIT ZERO .. MYANMAR DIGIT NINE
(16#0104A#, 16#0104F#), -- (Po) MYANMAR SIGN LITTLE SECTION .. MYANMAR SYMBOL GENITIVE
(16#01050#, 16#01055#), -- (Lo) MYANMAR LETTER SHA .. MYANMAR LETTER VOCALIC LL
(16#01056#, 16#01057#), -- (Mc) MYANMAR VOWEL SIGN VOCALIC R .. MYANMAR VOWEL SIGN VOCALIC RR
(16#01058#, 16#01059#), -- (Mn) MYANMAR VOWEL SIGN VOCALIC L .. MYANMAR VOWEL SIGN VOCALIC LL
(16#010A0#, 16#010C5#), -- (Lu) GEORGIAN CAPITAL LETTER AN .. GEORGIAN CAPITAL LETTER HOE
(16#010D0#, 16#010F8#), -- (Lo) GEORGIAN LETTER AN .. GEORGIAN LETTER ELIFI
(16#010FB#, 16#010FB#), -- (Po) GEORGIAN PARAGRAPH SEPARATOR .. GEORGIAN PARAGRAPH SEPARATOR
(16#01100#, 16#01159#), -- (Lo) HANGUL CHOSEONG KIYEOK .. HANGUL CHOSEONG YEORINHIEUH
(16#0115F#, 16#011A2#), -- (Lo) HANGUL CHOSEONG FILLER .. HANGUL JUNGSEONG SSANGARAEA
(16#011A8#, 16#011F9#), -- (Lo) HANGUL JONGSEONG KIYEOK .. HANGUL JONGSEONG YEORINHIEUH
(16#01200#, 16#01206#), -- (Lo) ETHIOPIC SYLLABLE HA .. ETHIOPIC SYLLABLE HO
(16#01208#, 16#01246#), -- (Lo) ETHIOPIC SYLLABLE LA .. ETHIOPIC SYLLABLE QO
(16#01248#, 16#01248#), -- (Lo) ETHIOPIC SYLLABLE QWA .. ETHIOPIC SYLLABLE QWA
(16#0124A#, 16#0124D#), -- (Lo) ETHIOPIC SYLLABLE QWI .. ETHIOPIC SYLLABLE QWE
(16#01250#, 16#01256#), -- (Lo) ETHIOPIC SYLLABLE QHA .. ETHIOPIC SYLLABLE QHO
(16#01258#, 16#01258#), -- (Lo) ETHIOPIC SYLLABLE QHWA .. ETHIOPIC SYLLABLE QHWA
(16#0125A#, 16#0125D#), -- (Lo) ETHIOPIC SYLLABLE QHWI .. ETHIOPIC SYLLABLE QHWE
(16#01260#, 16#01286#), -- (Lo) ETHIOPIC SYLLABLE BA .. ETHIOPIC SYLLABLE XO
(16#01288#, 16#01288#), -- (Lo) ETHIOPIC SYLLABLE XWA .. ETHIOPIC SYLLABLE XWA
(16#0128A#, 16#0128D#), -- (Lo) ETHIOPIC SYLLABLE XWI .. ETHIOPIC SYLLABLE XWE
(16#01290#, 16#012AE#), -- (Lo) ETHIOPIC SYLLABLE NA .. ETHIOPIC SYLLABLE KO
(16#012B0#, 16#012B0#), -- (Lo) ETHIOPIC SYLLABLE KWA .. ETHIOPIC SYLLABLE KWA
(16#012B2#, 16#012B5#), -- (Lo) ETHIOPIC SYLLABLE KWI .. ETHIOPIC SYLLABLE KWE
(16#012B8#, 16#012BE#), -- (Lo) ETHIOPIC SYLLABLE KXA .. ETHIOPIC SYLLABLE KXO
(16#012C0#, 16#012C0#), -- (Lo) ETHIOPIC SYLLABLE KXWA .. ETHIOPIC SYLLABLE KXWA
(16#012C2#, 16#012C5#), -- (Lo) ETHIOPIC SYLLABLE KXWI .. ETHIOPIC SYLLABLE KXWE
(16#012C8#, 16#012CE#), -- (Lo) ETHIOPIC SYLLABLE WA .. ETHIOPIC SYLLABLE WO
(16#012D0#, 16#012D6#), -- (Lo) ETHIOPIC SYLLABLE PHARYNGEAL A .. ETHIOPIC SYLLABLE PHARYNGEAL O
(16#012D8#, 16#012EE#), -- (Lo) ETHIOPIC SYLLABLE ZA .. ETHIOPIC SYLLABLE YO
(16#012F0#, 16#0130E#), -- (Lo) ETHIOPIC SYLLABLE DA .. ETHIOPIC SYLLABLE GO
(16#01310#, 16#01310#), -- (Lo) ETHIOPIC SYLLABLE GWA .. ETHIOPIC SYLLABLE GWA
(16#01312#, 16#01315#), -- (Lo) ETHIOPIC SYLLABLE GWI .. ETHIOPIC SYLLABLE GWE
(16#01318#, 16#0131E#), -- (Lo) ETHIOPIC SYLLABLE GGA .. ETHIOPIC SYLLABLE GGO
(16#01320#, 16#01346#), -- (Lo) ETHIOPIC SYLLABLE THA .. ETHIOPIC SYLLABLE TZO
(16#01348#, 16#0135A#), -- (Lo) ETHIOPIC SYLLABLE FA .. ETHIOPIC SYLLABLE FYA
(16#01361#, 16#01368#), -- (Po) ETHIOPIC WORDSPACE .. ETHIOPIC PARAGRAPH SEPARATOR
(16#01369#, 16#01371#), -- (Nd) ETHIOPIC DIGIT ONE .. ETHIOPIC DIGIT NINE
(16#01372#, 16#0137C#), -- (No) ETHIOPIC NUMBER TEN .. ETHIOPIC NUMBER TEN THOUSAND
(16#013A0#, 16#013F4#), -- (Lo) CHEROKEE LETTER A .. CHEROKEE LETTER YV
(16#01401#, 16#0166C#), -- (Lo) CANADIAN SYLLABICS E .. CANADIAN SYLLABICS CARRIER TTSA
(16#0166D#, 16#0166E#), -- (Po) CANADIAN SYLLABICS CHI SIGN .. CANADIAN SYLLABICS FULL STOP
(16#0166F#, 16#01676#), -- (Lo) CANADIAN SYLLABICS QAI .. CANADIAN SYLLABICS NNGAA
(16#01680#, 16#01680#), -- (Zs) OGHAM SPACE MARK .. OGHAM SPACE MARK
(16#01681#, 16#0169A#), -- (Lo) OGHAM LETTER BEITH .. OGHAM LETTER PEITH
(16#0169B#, 16#0169B#), -- (Ps) OGHAM FEATHER MARK .. OGHAM FEATHER MARK
(16#0169C#, 16#0169C#), -- (Pe) OGHAM REVERSED FEATHER MARK .. OGHAM REVERSED FEATHER MARK
(16#016A0#, 16#016EA#), -- (Lo) RUNIC LETTER FEHU FEOH FE F .. RUNIC LETTER X
(16#016EB#, 16#016ED#), -- (Po) RUNIC SINGLE PUNCTUATION .. RUNIC CROSS PUNCTUATION
(16#016EE#, 16#016F0#), -- (Nl) RUNIC ARLAUG SYMBOL .. RUNIC BELGTHOR SYMBOL
(16#01700#, 16#0170C#), -- (Lo) TAGALOG LETTER A .. TAGALOG LETTER YA
(16#0170E#, 16#01711#), -- (Lo) TAGALOG LETTER LA .. TAGALOG LETTER HA
(16#01712#, 16#01714#), -- (Mn) TAGALOG VOWEL SIGN I .. TAGALOG SIGN VIRAMA
(16#01720#, 16#01731#), -- (Lo) HANUNOO LETTER A .. HANUNOO LETTER HA
(16#01732#, 16#01734#), -- (Mn) HANUNOO VOWEL SIGN I .. HANUNOO SIGN PAMUDPOD
(16#01735#, 16#01736#), -- (Po) PHILIPPINE SINGLE PUNCTUATION .. PHILIPPINE DOUBLE PUNCTUATION
(16#01740#, 16#01751#), -- (Lo) BUHID LETTER A .. BUHID LETTER HA
(16#01752#, 16#01753#), -- (Mn) BUHID VOWEL SIGN I .. BUHID VOWEL SIGN U
(16#01760#, 16#0176C#), -- (Lo) TAGBANWA LETTER A .. TAGBANWA LETTER YA
(16#0176E#, 16#01770#), -- (Lo) TAGBANWA LETTER LA .. TAGBANWA LETTER SA
(16#01772#, 16#01773#), -- (Mn) TAGBANWA VOWEL SIGN I .. TAGBANWA VOWEL SIGN U
(16#01780#, 16#017B3#), -- (Lo) KHMER LETTER KA .. KHMER INDEPENDENT VOWEL QAU
(16#017B4#, 16#017B5#), -- (Cf) KHMER VOWEL INHERENT AQ .. KHMER VOWEL INHERENT AA
(16#017B6#, 16#017B6#), -- (Mc) KHMER VOWEL SIGN AA .. KHMER VOWEL SIGN AA
(16#017B7#, 16#017BD#), -- (Mn) KHMER VOWEL SIGN I .. KHMER VOWEL SIGN UA
(16#017BE#, 16#017C5#), -- (Mc) KHMER VOWEL SIGN OE .. KHMER VOWEL SIGN AU
(16#017C6#, 16#017C6#), -- (Mn) KHMER SIGN NIKAHIT .. KHMER SIGN NIKAHIT
(16#017C7#, 16#017C8#), -- (Mc) KHMER SIGN REAHMUK .. KHMER SIGN YUUKALEAPINTU
(16#017C9#, 16#017D3#), -- (Mn) KHMER SIGN MUUSIKATOAN .. KHMER SIGN BATHAMASAT
(16#017D4#, 16#017D6#), -- (Po) KHMER SIGN KHAN .. KHMER SIGN CAMNUC PII KUUH
(16#017D7#, 16#017D7#), -- (Lm) KHMER SIGN LEK TOO .. KHMER SIGN LEK TOO
(16#017D8#, 16#017DA#), -- (Po) KHMER SIGN BEYYAL .. KHMER SIGN KOOMUUT
(16#017DB#, 16#017DB#), -- (Sc) KHMER CURRENCY SYMBOL RIEL .. KHMER CURRENCY SYMBOL RIEL
(16#017DC#, 16#017DC#), -- (Lo) KHMER SIGN AVAKRAHASANYA .. KHMER SIGN AVAKRAHASANYA
(16#017DD#, 16#017DD#), -- (Mn) KHMER SIGN ATTHACAN .. KHMER SIGN ATTHACAN
(16#017E0#, 16#017E9#), -- (Nd) KHMER DIGIT ZERO .. KHMER DIGIT NINE
(16#017F0#, 16#017F9#), -- (No) KHMER SYMBOL LEK ATTAK SON .. KHMER SYMBOL LEK ATTAK PRAM-BUON
(16#01800#, 16#01805#), -- (Po) MONGOLIAN BIRGA .. MONGOLIAN FOUR DOTS
(16#01806#, 16#01806#), -- (Pd) MONGOLIAN TODO SOFT HYPHEN .. MONGOLIAN TODO SOFT HYPHEN
(16#01807#, 16#0180A#), -- (Po) MONGOLIAN SIBE SYLLABLE BOUNDARY MARKER .. MONGOLIAN NIRUGU
(16#0180B#, 16#0180D#), -- (Mn) MONGOLIAN FREE VARIATION SELECTOR ONE .. MONGOLIAN FREE VARIATION SELECTOR THREE
(16#0180E#, 16#0180E#), -- (Zs) MONGOLIAN VOWEL SEPARATOR .. MONGOLIAN VOWEL SEPARATOR
(16#01810#, 16#01819#), -- (Nd) MONGOLIAN DIGIT ZERO .. MONGOLIAN DIGIT NINE
(16#01820#, 16#01842#), -- (Lo) MONGOLIAN LETTER A .. MONGOLIAN LETTER CHI
(16#01843#, 16#01843#), -- (Lm) MONGOLIAN LETTER TODO LONG VOWEL SIGN .. MONGOLIAN LETTER TODO LONG VOWEL SIGN
(16#01844#, 16#01877#), -- (Lo) MONGOLIAN LETTER TODO E .. MONGOLIAN LETTER MANCHU ZHA
(16#01880#, 16#018A8#), -- (Lo) MONGOLIAN LETTER ALI GALI ANUSVARA ONE .. MONGOLIAN LETTER MANCHU ALI GALI BHA
(16#018A9#, 16#018A9#), -- (Mn) MONGOLIAN LETTER ALI GALI DAGALGA .. MONGOLIAN LETTER ALI GALI DAGALGA
(16#01900#, 16#0191C#), -- (Lo) LIMBU VOWEL-CARRIER LETTER .. LIMBU LETTER HA
(16#01920#, 16#01922#), -- (Mn) LIMBU VOWEL SIGN A .. LIMBU VOWEL SIGN U
(16#01923#, 16#01926#), -- (Mc) LIMBU VOWEL SIGN EE .. LIMBU VOWEL SIGN AU
(16#01927#, 16#01928#), -- (Mn) LIMBU VOWEL SIGN E .. LIMBU VOWEL SIGN O
(16#01929#, 16#0192B#), -- (Mc) LIMBU SUBJOINED LETTER YA .. LIMBU SUBJOINED LETTER WA
(16#01930#, 16#01931#), -- (Mc) LIMBU SMALL LETTER KA .. LIMBU SMALL LETTER NGA
(16#01932#, 16#01932#), -- (Mn) LIMBU SMALL LETTER ANUSVARA .. LIMBU SMALL LETTER ANUSVARA
(16#01933#, 16#01938#), -- (Mc) LIMBU SMALL LETTER TA .. LIMBU SMALL LETTER LA
(16#01939#, 16#0193B#), -- (Mn) LIMBU SIGN MUKPHRENG .. LIMBU SIGN SA-I
(16#01940#, 16#01940#), -- (So) LIMBU SIGN LOO .. LIMBU SIGN LOO
(16#01944#, 16#01945#), -- (Po) LIMBU EXCLAMATION MARK .. LIMBU QUESTION MARK
(16#01946#, 16#0194F#), -- (Nd) LIMBU DIGIT ZERO .. LIMBU DIGIT NINE
(16#01950#, 16#0196D#), -- (Lo) TAI LE LETTER KA .. TAI LE LETTER AI
(16#01970#, 16#01974#), -- (Lo) TAI LE LETTER TONE-2 .. TAI LE LETTER TONE-6
(16#019E0#, 16#019FF#), -- (So) KHMER SYMBOL PATHAMASAT .. KHMER SYMBOL DAP-PRAM ROC
(16#01D00#, 16#01D2B#), -- (Ll) LATIN LETTER SMALL CAPITAL A .. CYRILLIC LETTER SMALL CAPITAL EL
(16#01D2C#, 16#01D61#), -- (Lm) MODIFIER LETTER CAPITAL A .. MODIFIER LETTER SMALL CHI
(16#01D62#, 16#01D6B#), -- (Ll) LATIN SUBSCRIPT SMALL LETTER I .. LATIN SMALL LETTER UE
(16#01E00#, 16#01E00#), -- (Lu) LATIN CAPITAL LETTER A WITH RING BELOW .. LATIN CAPITAL LETTER A WITH RING BELOW
(16#01E01#, 16#01E01#), -- (Ll) LATIN SMALL LETTER A WITH RING BELOW .. LATIN SMALL LETTER A WITH RING BELOW
(16#01E02#, 16#01E02#), -- (Lu) LATIN CAPITAL LETTER B WITH DOT ABOVE .. LATIN CAPITAL LETTER B WITH DOT ABOVE
(16#01E03#, 16#01E03#), -- (Ll) LATIN SMALL LETTER B WITH DOT ABOVE .. LATIN SMALL LETTER B WITH DOT ABOVE
(16#01E04#, 16#01E04#), -- (Lu) LATIN CAPITAL LETTER B WITH DOT BELOW .. LATIN CAPITAL LETTER B WITH DOT BELOW
(16#01E05#, 16#01E05#), -- (Ll) LATIN SMALL LETTER B WITH DOT BELOW .. LATIN SMALL LETTER B WITH DOT BELOW
(16#01E06#, 16#01E06#), -- (Lu) LATIN CAPITAL LETTER B WITH LINE BELOW .. LATIN CAPITAL LETTER B WITH LINE BELOW
(16#01E07#, 16#01E07#), -- (Ll) LATIN SMALL LETTER B WITH LINE BELOW .. LATIN SMALL LETTER B WITH LINE BELOW
(16#01E08#, 16#01E08#), -- (Lu) LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE .. LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE
(16#01E09#, 16#01E09#), -- (Ll) LATIN SMALL LETTER C WITH CEDILLA AND ACUTE .. LATIN SMALL LETTER C WITH CEDILLA AND ACUTE
(16#01E0A#, 16#01E0A#), -- (Lu) LATIN CAPITAL LETTER D WITH DOT ABOVE .. LATIN CAPITAL LETTER D WITH DOT ABOVE
(16#01E0B#, 16#01E0B#), -- (Ll) LATIN SMALL LETTER D WITH DOT ABOVE .. LATIN SMALL LETTER D WITH DOT ABOVE
(16#01E0C#, 16#01E0C#), -- (Lu) LATIN CAPITAL LETTER D WITH DOT BELOW .. LATIN CAPITAL LETTER D WITH DOT BELOW
(16#01E0D#, 16#01E0D#), -- (Ll) LATIN SMALL LETTER D WITH DOT BELOW .. LATIN SMALL LETTER D WITH DOT BELOW
(16#01E0E#, 16#01E0E#), -- (Lu) LATIN CAPITAL LETTER D WITH LINE BELOW .. LATIN CAPITAL LETTER D WITH LINE BELOW
(16#01E0F#, 16#01E0F#), -- (Ll) LATIN SMALL LETTER D WITH LINE BELOW .. LATIN SMALL LETTER D WITH LINE BELOW
(16#01E10#, 16#01E10#), -- (Lu) LATIN CAPITAL LETTER D WITH CEDILLA .. LATIN CAPITAL LETTER D WITH CEDILLA
(16#01E11#, 16#01E11#), -- (Ll) LATIN SMALL LETTER D WITH CEDILLA .. LATIN SMALL LETTER D WITH CEDILLA
(16#01E12#, 16#01E12#), -- (Lu) LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW
(16#01E13#, 16#01E13#), -- (Ll) LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW
(16#01E14#, 16#01E14#), -- (Lu) LATIN CAPITAL LETTER E WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER E WITH MACRON AND GRAVE
(16#01E15#, 16#01E15#), -- (Ll) LATIN SMALL LETTER E WITH MACRON AND GRAVE .. LATIN SMALL LETTER E WITH MACRON AND GRAVE
(16#01E16#, 16#01E16#), -- (Lu) LATIN CAPITAL LETTER E WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER E WITH MACRON AND ACUTE
(16#01E17#, 16#01E17#), -- (Ll) LATIN SMALL LETTER E WITH MACRON AND ACUTE .. LATIN SMALL LETTER E WITH MACRON AND ACUTE
(16#01E18#, 16#01E18#), -- (Lu) LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW
(16#01E19#, 16#01E19#), -- (Ll) LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW
(16#01E1A#, 16#01E1A#), -- (Lu) LATIN CAPITAL LETTER E WITH TILDE BELOW .. LATIN CAPITAL LETTER E WITH TILDE BELOW
(16#01E1B#, 16#01E1B#), -- (Ll) LATIN SMALL LETTER E WITH TILDE BELOW .. LATIN SMALL LETTER E WITH TILDE BELOW
(16#01E1C#, 16#01E1C#), -- (Lu) LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE .. LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE
(16#01E1D#, 16#01E1D#), -- (Ll) LATIN SMALL LETTER E WITH CEDILLA AND BREVE .. LATIN SMALL LETTER E WITH CEDILLA AND BREVE
(16#01E1E#, 16#01E1E#), -- (Lu) LATIN CAPITAL LETTER F WITH DOT ABOVE .. LATIN CAPITAL LETTER F WITH DOT ABOVE
(16#01E1F#, 16#01E1F#), -- (Ll) LATIN SMALL LETTER F WITH DOT ABOVE .. LATIN SMALL LETTER F WITH DOT ABOVE
(16#01E20#, 16#01E20#), -- (Lu) LATIN CAPITAL LETTER G WITH MACRON .. LATIN CAPITAL LETTER G WITH MACRON
(16#01E21#, 16#01E21#), -- (Ll) LATIN SMALL LETTER G WITH MACRON .. LATIN SMALL LETTER G WITH MACRON
(16#01E22#, 16#01E22#), -- (Lu) LATIN CAPITAL LETTER H WITH DOT ABOVE .. LATIN CAPITAL LETTER H WITH DOT ABOVE
(16#01E23#, 16#01E23#), -- (Ll) LATIN SMALL LETTER H WITH DOT ABOVE .. LATIN SMALL LETTER H WITH DOT ABOVE
(16#01E24#, 16#01E24#), -- (Lu) LATIN CAPITAL LETTER H WITH DOT BELOW .. LATIN CAPITAL LETTER H WITH DOT BELOW
(16#01E25#, 16#01E25#), -- (Ll) LATIN SMALL LETTER H WITH DOT BELOW .. LATIN SMALL LETTER H WITH DOT BELOW
(16#01E26#, 16#01E26#), -- (Lu) LATIN CAPITAL LETTER H WITH DIAERESIS .. LATIN CAPITAL LETTER H WITH DIAERESIS
(16#01E27#, 16#01E27#), -- (Ll) LATIN SMALL LETTER H WITH DIAERESIS .. LATIN SMALL LETTER H WITH DIAERESIS
(16#01E28#, 16#01E28#), -- (Lu) LATIN CAPITAL LETTER H WITH CEDILLA .. LATIN CAPITAL LETTER H WITH CEDILLA
(16#01E29#, 16#01E29#), -- (Ll) LATIN SMALL LETTER H WITH CEDILLA .. LATIN SMALL LETTER H WITH CEDILLA
(16#01E2A#, 16#01E2A#), -- (Lu) LATIN CAPITAL LETTER H WITH BREVE BELOW .. LATIN CAPITAL LETTER H WITH BREVE BELOW
(16#01E2B#, 16#01E2B#), -- (Ll) LATIN SMALL LETTER H WITH BREVE BELOW .. LATIN SMALL LETTER H WITH BREVE BELOW
(16#01E2C#, 16#01E2C#), -- (Lu) LATIN CAPITAL LETTER I WITH TILDE BELOW .. LATIN CAPITAL LETTER I WITH TILDE BELOW
(16#01E2D#, 16#01E2D#), -- (Ll) LATIN SMALL LETTER I WITH TILDE BELOW .. LATIN SMALL LETTER I WITH TILDE BELOW
(16#01E2E#, 16#01E2E#), -- (Lu) LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE
(16#01E2F#, 16#01E2F#), -- (Ll) LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE
(16#01E30#, 16#01E30#), -- (Lu) LATIN CAPITAL LETTER K WITH ACUTE .. LATIN CAPITAL LETTER K WITH ACUTE
(16#01E31#, 16#01E31#), -- (Ll) LATIN SMALL LETTER K WITH ACUTE .. LATIN SMALL LETTER K WITH ACUTE
(16#01E32#, 16#01E32#), -- (Lu) LATIN CAPITAL LETTER K WITH DOT BELOW .. LATIN CAPITAL LETTER K WITH DOT BELOW
(16#01E33#, 16#01E33#), -- (Ll) LATIN SMALL LETTER K WITH DOT BELOW .. LATIN SMALL LETTER K WITH DOT BELOW
(16#01E34#, 16#01E34#), -- (Lu) LATIN CAPITAL LETTER K WITH LINE BELOW .. LATIN CAPITAL LETTER K WITH LINE BELOW
(16#01E35#, 16#01E35#), -- (Ll) LATIN SMALL LETTER K WITH LINE BELOW .. LATIN SMALL LETTER K WITH LINE BELOW
(16#01E36#, 16#01E36#), -- (Lu) LATIN CAPITAL LETTER L WITH DOT BELOW .. LATIN CAPITAL LETTER L WITH DOT BELOW
(16#01E37#, 16#01E37#), -- (Ll) LATIN SMALL LETTER L WITH DOT BELOW .. LATIN SMALL LETTER L WITH DOT BELOW
(16#01E38#, 16#01E38#), -- (Lu) LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON
(16#01E39#, 16#01E39#), -- (Ll) LATIN SMALL LETTER L WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER L WITH DOT BELOW AND MACRON
(16#01E3A#, 16#01E3A#), -- (Lu) LATIN CAPITAL LETTER L WITH LINE BELOW .. LATIN CAPITAL LETTER L WITH LINE BELOW
(16#01E3B#, 16#01E3B#), -- (Ll) LATIN SMALL LETTER L WITH LINE BELOW .. LATIN SMALL LETTER L WITH LINE BELOW
(16#01E3C#, 16#01E3C#), -- (Lu) LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW
(16#01E3D#, 16#01E3D#), -- (Ll) LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW
(16#01E3E#, 16#01E3E#), -- (Lu) LATIN CAPITAL LETTER M WITH ACUTE .. LATIN CAPITAL LETTER M WITH ACUTE
(16#01E3F#, 16#01E3F#), -- (Ll) LATIN SMALL LETTER M WITH ACUTE .. LATIN SMALL LETTER M WITH ACUTE
(16#01E40#, 16#01E40#), -- (Lu) LATIN CAPITAL LETTER M WITH DOT ABOVE .. LATIN CAPITAL LETTER M WITH DOT ABOVE
(16#01E41#, 16#01E41#), -- (Ll) LATIN SMALL LETTER M WITH DOT ABOVE .. LATIN SMALL LETTER M WITH DOT ABOVE
(16#01E42#, 16#01E42#), -- (Lu) LATIN CAPITAL LETTER M WITH DOT BELOW .. LATIN CAPITAL LETTER M WITH DOT BELOW
(16#01E43#, 16#01E43#), -- (Ll) LATIN SMALL LETTER M WITH DOT BELOW .. LATIN SMALL LETTER M WITH DOT BELOW
(16#01E44#, 16#01E44#), -- (Lu) LATIN CAPITAL LETTER N WITH DOT ABOVE .. LATIN CAPITAL LETTER N WITH DOT ABOVE
(16#01E45#, 16#01E45#), -- (Ll) LATIN SMALL LETTER N WITH DOT ABOVE .. LATIN SMALL LETTER N WITH DOT ABOVE
(16#01E46#, 16#01E46#), -- (Lu) LATIN CAPITAL LETTER N WITH DOT BELOW .. LATIN CAPITAL LETTER N WITH DOT BELOW
(16#01E47#, 16#01E47#), -- (Ll) LATIN SMALL LETTER N WITH DOT BELOW .. LATIN SMALL LETTER N WITH DOT BELOW
(16#01E48#, 16#01E48#), -- (Lu) LATIN CAPITAL LETTER N WITH LINE BELOW .. LATIN CAPITAL LETTER N WITH LINE BELOW
(16#01E49#, 16#01E49#), -- (Ll) LATIN SMALL LETTER N WITH LINE BELOW .. LATIN SMALL LETTER N WITH LINE BELOW
(16#01E4A#, 16#01E4A#), -- (Lu) LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW
(16#01E4B#, 16#01E4B#), -- (Ll) LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW
(16#01E4C#, 16#01E4C#), -- (Lu) LATIN CAPITAL LETTER O WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER O WITH TILDE AND ACUTE
(16#01E4D#, 16#01E4D#), -- (Ll) LATIN SMALL LETTER O WITH TILDE AND ACUTE .. LATIN SMALL LETTER O WITH TILDE AND ACUTE
(16#01E4E#, 16#01E4E#), -- (Lu) LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS .. LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS
(16#01E4F#, 16#01E4F#), -- (Ll) LATIN SMALL LETTER O WITH TILDE AND DIAERESIS .. LATIN SMALL LETTER O WITH TILDE AND DIAERESIS
(16#01E50#, 16#01E50#), -- (Lu) LATIN CAPITAL LETTER O WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER O WITH MACRON AND GRAVE
(16#01E51#, 16#01E51#), -- (Ll) LATIN SMALL LETTER O WITH MACRON AND GRAVE .. LATIN SMALL LETTER O WITH MACRON AND GRAVE
(16#01E52#, 16#01E52#), -- (Lu) LATIN CAPITAL LETTER O WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER O WITH MACRON AND ACUTE
(16#01E53#, 16#01E53#), -- (Ll) LATIN SMALL LETTER O WITH MACRON AND ACUTE .. LATIN SMALL LETTER O WITH MACRON AND ACUTE
(16#01E54#, 16#01E54#), -- (Lu) LATIN CAPITAL LETTER P WITH ACUTE .. LATIN CAPITAL LETTER P WITH ACUTE
(16#01E55#, 16#01E55#), -- (Ll) LATIN SMALL LETTER P WITH ACUTE .. LATIN SMALL LETTER P WITH ACUTE
(16#01E56#, 16#01E56#), -- (Lu) LATIN CAPITAL LETTER P WITH DOT ABOVE .. LATIN CAPITAL LETTER P WITH DOT ABOVE
(16#01E57#, 16#01E57#), -- (Ll) LATIN SMALL LETTER P WITH DOT ABOVE .. LATIN SMALL LETTER P WITH DOT ABOVE
(16#01E58#, 16#01E58#), -- (Lu) LATIN CAPITAL LETTER R WITH DOT ABOVE .. LATIN CAPITAL LETTER R WITH DOT ABOVE
(16#01E59#, 16#01E59#), -- (Ll) LATIN SMALL LETTER R WITH DOT ABOVE .. LATIN SMALL LETTER R WITH DOT ABOVE
(16#01E5A#, 16#01E5A#), -- (Lu) LATIN CAPITAL LETTER R WITH DOT BELOW .. LATIN CAPITAL LETTER R WITH DOT BELOW
(16#01E5B#, 16#01E5B#), -- (Ll) LATIN SMALL LETTER R WITH DOT BELOW .. LATIN SMALL LETTER R WITH DOT BELOW
(16#01E5C#, 16#01E5C#), -- (Lu) LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON
(16#01E5D#, 16#01E5D#), -- (Ll) LATIN SMALL LETTER R WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER R WITH DOT BELOW AND MACRON
(16#01E5E#, 16#01E5E#), -- (Lu) LATIN CAPITAL LETTER R WITH LINE BELOW .. LATIN CAPITAL LETTER R WITH LINE BELOW
(16#01E5F#, 16#01E5F#), -- (Ll) LATIN SMALL LETTER R WITH LINE BELOW .. LATIN SMALL LETTER R WITH LINE BELOW
(16#01E60#, 16#01E60#), -- (Lu) LATIN CAPITAL LETTER S WITH DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT ABOVE
(16#01E61#, 16#01E61#), -- (Ll) LATIN SMALL LETTER S WITH DOT ABOVE .. LATIN SMALL LETTER S WITH DOT ABOVE
(16#01E62#, 16#01E62#), -- (Lu) LATIN CAPITAL LETTER S WITH DOT BELOW .. LATIN CAPITAL LETTER S WITH DOT BELOW
(16#01E63#, 16#01E63#), -- (Ll) LATIN SMALL LETTER S WITH DOT BELOW .. LATIN SMALL LETTER S WITH DOT BELOW
(16#01E64#, 16#01E64#), -- (Lu) LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE
(16#01E65#, 16#01E65#), -- (Ll) LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE
(16#01E66#, 16#01E66#), -- (Lu) LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE
(16#01E67#, 16#01E67#), -- (Ll) LATIN SMALL LETTER S WITH CARON AND DOT ABOVE .. LATIN SMALL LETTER S WITH CARON AND DOT ABOVE
(16#01E68#, 16#01E68#), -- (Lu) LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE
(16#01E69#, 16#01E69#), -- (Ll) LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE
(16#01E6A#, 16#01E6A#), -- (Lu) LATIN CAPITAL LETTER T WITH DOT ABOVE .. LATIN CAPITAL LETTER T WITH DOT ABOVE
(16#01E6B#, 16#01E6B#), -- (Ll) LATIN SMALL LETTER T WITH DOT ABOVE .. LATIN SMALL LETTER T WITH DOT ABOVE
(16#01E6C#, 16#01E6C#), -- (Lu) LATIN CAPITAL LETTER T WITH DOT BELOW .. LATIN CAPITAL LETTER T WITH DOT BELOW
(16#01E6D#, 16#01E6D#), -- (Ll) LATIN SMALL LETTER T WITH DOT BELOW .. LATIN SMALL LETTER T WITH DOT BELOW
(16#01E6E#, 16#01E6E#), -- (Lu) LATIN CAPITAL LETTER T WITH LINE BELOW .. LATIN CAPITAL LETTER T WITH LINE BELOW
(16#01E6F#, 16#01E6F#), -- (Ll) LATIN SMALL LETTER T WITH LINE BELOW .. LATIN SMALL LETTER T WITH LINE BELOW
(16#01E70#, 16#01E70#), -- (Lu) LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW
(16#01E71#, 16#01E71#), -- (Ll) LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW
(16#01E72#, 16#01E72#), -- (Lu) LATIN CAPITAL LETTER U WITH DIAERESIS BELOW .. LATIN CAPITAL LETTER U WITH DIAERESIS BELOW
(16#01E73#, 16#01E73#), -- (Ll) LATIN SMALL LETTER U WITH DIAERESIS BELOW .. LATIN SMALL LETTER U WITH DIAERESIS BELOW
(16#01E74#, 16#01E74#), -- (Lu) LATIN CAPITAL LETTER U WITH TILDE BELOW .. LATIN CAPITAL LETTER U WITH TILDE BELOW
(16#01E75#, 16#01E75#), -- (Ll) LATIN SMALL LETTER U WITH TILDE BELOW .. LATIN SMALL LETTER U WITH TILDE BELOW
(16#01E76#, 16#01E76#), -- (Lu) LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW
(16#01E77#, 16#01E77#), -- (Ll) LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW
(16#01E78#, 16#01E78#), -- (Lu) LATIN CAPITAL LETTER U WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER U WITH TILDE AND ACUTE
(16#01E79#, 16#01E79#), -- (Ll) LATIN SMALL LETTER U WITH TILDE AND ACUTE .. LATIN SMALL LETTER U WITH TILDE AND ACUTE
(16#01E7A#, 16#01E7A#), -- (Lu) LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS .. LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS
(16#01E7B#, 16#01E7B#), -- (Ll) LATIN SMALL LETTER U WITH MACRON AND DIAERESIS .. LATIN SMALL LETTER U WITH MACRON AND DIAERESIS
(16#01E7C#, 16#01E7C#), -- (Lu) LATIN CAPITAL LETTER V WITH TILDE .. LATIN CAPITAL LETTER V WITH TILDE
(16#01E7D#, 16#01E7D#), -- (Ll) LATIN SMALL LETTER V WITH TILDE .. LATIN SMALL LETTER V WITH TILDE
(16#01E7E#, 16#01E7E#), -- (Lu) LATIN CAPITAL LETTER V WITH DOT BELOW .. LATIN CAPITAL LETTER V WITH DOT BELOW
(16#01E7F#, 16#01E7F#), -- (Ll) LATIN SMALL LETTER V WITH DOT BELOW .. LATIN SMALL LETTER V WITH DOT BELOW
(16#01E80#, 16#01E80#), -- (Lu) LATIN CAPITAL LETTER W WITH GRAVE .. LATIN CAPITAL LETTER W WITH GRAVE
(16#01E81#, 16#01E81#), -- (Ll) LATIN SMALL LETTER W WITH GRAVE .. LATIN SMALL LETTER W WITH GRAVE
(16#01E82#, 16#01E82#), -- (Lu) LATIN CAPITAL LETTER W WITH ACUTE .. LATIN CAPITAL LETTER W WITH ACUTE
(16#01E83#, 16#01E83#), -- (Ll) LATIN SMALL LETTER W WITH ACUTE .. LATIN SMALL LETTER W WITH ACUTE
(16#01E84#, 16#01E84#), -- (Lu) LATIN CAPITAL LETTER W WITH DIAERESIS .. LATIN CAPITAL LETTER W WITH DIAERESIS
(16#01E85#, 16#01E85#), -- (Ll) LATIN SMALL LETTER W WITH DIAERESIS .. LATIN SMALL LETTER W WITH DIAERESIS
(16#01E86#, 16#01E86#), -- (Lu) LATIN CAPITAL LETTER W WITH DOT ABOVE .. LATIN CAPITAL LETTER W WITH DOT ABOVE
(16#01E87#, 16#01E87#), -- (Ll) LATIN SMALL LETTER W WITH DOT ABOVE .. LATIN SMALL LETTER W WITH DOT ABOVE
(16#01E88#, 16#01E88#), -- (Lu) LATIN CAPITAL LETTER W WITH DOT BELOW .. LATIN CAPITAL LETTER W WITH DOT BELOW
(16#01E89#, 16#01E89#), -- (Ll) LATIN SMALL LETTER W WITH DOT BELOW .. LATIN SMALL LETTER W WITH DOT BELOW
(16#01E8A#, 16#01E8A#), -- (Lu) LATIN CAPITAL LETTER X WITH DOT ABOVE .. LATIN CAPITAL LETTER X WITH DOT ABOVE
(16#01E8B#, 16#01E8B#), -- (Ll) LATIN SMALL LETTER X WITH DOT ABOVE .. LATIN SMALL LETTER X WITH DOT ABOVE
(16#01E8C#, 16#01E8C#), -- (Lu) LATIN CAPITAL LETTER X WITH DIAERESIS .. LATIN CAPITAL LETTER X WITH DIAERESIS
(16#01E8D#, 16#01E8D#), -- (Ll) LATIN SMALL LETTER X WITH DIAERESIS .. LATIN SMALL LETTER X WITH DIAERESIS
(16#01E8E#, 16#01E8E#), -- (Lu) LATIN CAPITAL LETTER Y WITH DOT ABOVE .. LATIN CAPITAL LETTER Y WITH DOT ABOVE
(16#01E8F#, 16#01E8F#), -- (Ll) LATIN SMALL LETTER Y WITH DOT ABOVE .. LATIN SMALL LETTER Y WITH DOT ABOVE
(16#01E90#, 16#01E90#), -- (Lu) LATIN CAPITAL LETTER Z WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Z WITH CIRCUMFLEX
(16#01E91#, 16#01E91#), -- (Ll) LATIN SMALL LETTER Z WITH CIRCUMFLEX .. LATIN SMALL LETTER Z WITH CIRCUMFLEX
(16#01E92#, 16#01E92#), -- (Lu) LATIN CAPITAL LETTER Z WITH DOT BELOW .. LATIN CAPITAL LETTER Z WITH DOT BELOW
(16#01E93#, 16#01E93#), -- (Ll) LATIN SMALL LETTER Z WITH DOT BELOW .. LATIN SMALL LETTER Z WITH DOT BELOW
(16#01E94#, 16#01E94#), -- (Lu) LATIN CAPITAL LETTER Z WITH LINE BELOW .. LATIN CAPITAL LETTER Z WITH LINE BELOW
(16#01E95#, 16#01E9B#), -- (Ll) LATIN SMALL LETTER Z WITH LINE BELOW .. LATIN SMALL LETTER LONG S WITH DOT ABOVE
(16#01EA0#, 16#01EA0#), -- (Lu) LATIN CAPITAL LETTER A WITH DOT BELOW .. LATIN CAPITAL LETTER A WITH DOT BELOW
(16#01EA1#, 16#01EA1#), -- (Ll) LATIN SMALL LETTER A WITH DOT BELOW .. LATIN SMALL LETTER A WITH DOT BELOW
(16#01EA2#, 16#01EA2#), -- (Lu) LATIN CAPITAL LETTER A WITH HOOK ABOVE .. LATIN CAPITAL LETTER A WITH HOOK ABOVE
(16#01EA3#, 16#01EA3#), -- (Ll) LATIN SMALL LETTER A WITH HOOK ABOVE .. LATIN SMALL LETTER A WITH HOOK ABOVE
(16#01EA4#, 16#01EA4#), -- (Lu) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE
(16#01EA5#, 16#01EA5#), -- (Ll) LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE
(16#01EA6#, 16#01EA6#), -- (Lu) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE
(16#01EA7#, 16#01EA7#), -- (Ll) LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE
(16#01EA8#, 16#01EA8#), -- (Lu) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EA9#, 16#01EA9#), -- (Ll) LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EAA#, 16#01EAA#), -- (Lu) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE
(16#01EAB#, 16#01EAB#), -- (Ll) LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE
(16#01EAC#, 16#01EAC#), -- (Lu) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW
(16#01EAD#, 16#01EAD#), -- (Ll) LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW
(16#01EAE#, 16#01EAE#), -- (Lu) LATIN CAPITAL LETTER A WITH BREVE AND ACUTE .. LATIN CAPITAL LETTER A WITH BREVE AND ACUTE
(16#01EAF#, 16#01EAF#), -- (Ll) LATIN SMALL LETTER A WITH BREVE AND ACUTE .. LATIN SMALL LETTER A WITH BREVE AND ACUTE
(16#01EB0#, 16#01EB0#), -- (Lu) LATIN CAPITAL LETTER A WITH BREVE AND GRAVE .. LATIN CAPITAL LETTER A WITH BREVE AND GRAVE
(16#01EB1#, 16#01EB1#), -- (Ll) LATIN SMALL LETTER A WITH BREVE AND GRAVE .. LATIN SMALL LETTER A WITH BREVE AND GRAVE
(16#01EB2#, 16#01EB2#), -- (Lu) LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE
(16#01EB3#, 16#01EB3#), -- (Ll) LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE
(16#01EB4#, 16#01EB4#), -- (Lu) LATIN CAPITAL LETTER A WITH BREVE AND TILDE .. LATIN CAPITAL LETTER A WITH BREVE AND TILDE
(16#01EB5#, 16#01EB5#), -- (Ll) LATIN SMALL LETTER A WITH BREVE AND TILDE .. LATIN SMALL LETTER A WITH BREVE AND TILDE
(16#01EB6#, 16#01EB6#), -- (Lu) LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW .. LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW
(16#01EB7#, 16#01EB7#), -- (Ll) LATIN SMALL LETTER A WITH BREVE AND DOT BELOW .. LATIN SMALL LETTER A WITH BREVE AND DOT BELOW
(16#01EB8#, 16#01EB8#), -- (Lu) LATIN CAPITAL LETTER E WITH DOT BELOW .. LATIN CAPITAL LETTER E WITH DOT BELOW
(16#01EB9#, 16#01EB9#), -- (Ll) LATIN SMALL LETTER E WITH DOT BELOW .. LATIN SMALL LETTER E WITH DOT BELOW
(16#01EBA#, 16#01EBA#), -- (Lu) LATIN CAPITAL LETTER E WITH HOOK ABOVE .. LATIN CAPITAL LETTER E WITH HOOK ABOVE
(16#01EBB#, 16#01EBB#), -- (Ll) LATIN SMALL LETTER E WITH HOOK ABOVE .. LATIN SMALL LETTER E WITH HOOK ABOVE
(16#01EBC#, 16#01EBC#), -- (Lu) LATIN CAPITAL LETTER E WITH TILDE .. LATIN CAPITAL LETTER E WITH TILDE
(16#01EBD#, 16#01EBD#), -- (Ll) LATIN SMALL LETTER E WITH TILDE .. LATIN SMALL LETTER E WITH TILDE
(16#01EBE#, 16#01EBE#), -- (Lu) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE
(16#01EBF#, 16#01EBF#), -- (Ll) LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE
(16#01EC0#, 16#01EC0#), -- (Lu) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE
(16#01EC1#, 16#01EC1#), -- (Ll) LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE
(16#01EC2#, 16#01EC2#), -- (Lu) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EC3#, 16#01EC3#), -- (Ll) LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EC4#, 16#01EC4#), -- (Lu) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE
(16#01EC5#, 16#01EC5#), -- (Ll) LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE
(16#01EC6#, 16#01EC6#), -- (Lu) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW
(16#01EC7#, 16#01EC7#), -- (Ll) LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW
(16#01EC8#, 16#01EC8#), -- (Lu) LATIN CAPITAL LETTER I WITH HOOK ABOVE .. LATIN CAPITAL LETTER I WITH HOOK ABOVE
(16#01EC9#, 16#01EC9#), -- (Ll) LATIN SMALL LETTER I WITH HOOK ABOVE .. LATIN SMALL LETTER I WITH HOOK ABOVE
(16#01ECA#, 16#01ECA#), -- (Lu) LATIN CAPITAL LETTER I WITH DOT BELOW .. LATIN CAPITAL LETTER I WITH DOT BELOW
(16#01ECB#, 16#01ECB#), -- (Ll) LATIN SMALL LETTER I WITH DOT BELOW .. LATIN SMALL LETTER I WITH DOT BELOW
(16#01ECC#, 16#01ECC#), -- (Lu) LATIN CAPITAL LETTER O WITH DOT BELOW .. LATIN CAPITAL LETTER O WITH DOT BELOW
(16#01ECD#, 16#01ECD#), -- (Ll) LATIN SMALL LETTER O WITH DOT BELOW .. LATIN SMALL LETTER O WITH DOT BELOW
(16#01ECE#, 16#01ECE#), -- (Lu) LATIN CAPITAL LETTER O WITH HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HOOK ABOVE
(16#01ECF#, 16#01ECF#), -- (Ll) LATIN SMALL LETTER O WITH HOOK ABOVE .. LATIN SMALL LETTER O WITH HOOK ABOVE
(16#01ED0#, 16#01ED0#), -- (Lu) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE
(16#01ED1#, 16#01ED1#), -- (Ll) LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE
(16#01ED2#, 16#01ED2#), -- (Lu) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE
(16#01ED3#, 16#01ED3#), -- (Ll) LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE
(16#01ED4#, 16#01ED4#), -- (Lu) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
(16#01ED5#, 16#01ED5#), -- (Ll) LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
(16#01ED6#, 16#01ED6#), -- (Lu) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE
(16#01ED7#, 16#01ED7#), -- (Ll) LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE
(16#01ED8#, 16#01ED8#), -- (Lu) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW
(16#01ED9#, 16#01ED9#), -- (Ll) LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW
(16#01EDA#, 16#01EDA#), -- (Lu) LATIN CAPITAL LETTER O WITH HORN AND ACUTE .. LATIN CAPITAL LETTER O WITH HORN AND ACUTE
(16#01EDB#, 16#01EDB#), -- (Ll) LATIN SMALL LETTER O WITH HORN AND ACUTE .. LATIN SMALL LETTER O WITH HORN AND ACUTE
(16#01EDC#, 16#01EDC#), -- (Lu) LATIN CAPITAL LETTER O WITH HORN AND GRAVE .. LATIN CAPITAL LETTER O WITH HORN AND GRAVE
(16#01EDD#, 16#01EDD#), -- (Ll) LATIN SMALL LETTER O WITH HORN AND GRAVE .. LATIN SMALL LETTER O WITH HORN AND GRAVE
(16#01EDE#, 16#01EDE#), -- (Lu) LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE
(16#01EDF#, 16#01EDF#), -- (Ll) LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE
(16#01EE0#, 16#01EE0#), -- (Lu) LATIN CAPITAL LETTER O WITH HORN AND TILDE .. LATIN CAPITAL LETTER O WITH HORN AND TILDE
(16#01EE1#, 16#01EE1#), -- (Ll) LATIN SMALL LETTER O WITH HORN AND TILDE .. LATIN SMALL LETTER O WITH HORN AND TILDE
(16#01EE2#, 16#01EE2#), -- (Lu) LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW
(16#01EE3#, 16#01EE3#), -- (Ll) LATIN SMALL LETTER O WITH HORN AND DOT BELOW .. LATIN SMALL LETTER O WITH HORN AND DOT BELOW
(16#01EE4#, 16#01EE4#), -- (Lu) LATIN CAPITAL LETTER U WITH DOT BELOW .. LATIN CAPITAL LETTER U WITH DOT BELOW
(16#01EE5#, 16#01EE5#), -- (Ll) LATIN SMALL LETTER U WITH DOT BELOW .. LATIN SMALL LETTER U WITH DOT BELOW
(16#01EE6#, 16#01EE6#), -- (Lu) LATIN CAPITAL LETTER U WITH HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HOOK ABOVE
(16#01EE7#, 16#01EE7#), -- (Ll) LATIN SMALL LETTER U WITH HOOK ABOVE .. LATIN SMALL LETTER U WITH HOOK ABOVE
(16#01EE8#, 16#01EE8#), -- (Lu) LATIN CAPITAL LETTER U WITH HORN AND ACUTE .. LATIN CAPITAL LETTER U WITH HORN AND ACUTE
(16#01EE9#, 16#01EE9#), -- (Ll) LATIN SMALL LETTER U WITH HORN AND ACUTE .. LATIN SMALL LETTER U WITH HORN AND ACUTE
(16#01EEA#, 16#01EEA#), -- (Lu) LATIN CAPITAL LETTER U WITH HORN AND GRAVE .. LATIN CAPITAL LETTER U WITH HORN AND GRAVE
(16#01EEB#, 16#01EEB#), -- (Ll) LATIN SMALL LETTER U WITH HORN AND GRAVE .. LATIN SMALL LETTER U WITH HORN AND GRAVE
(16#01EEC#, 16#01EEC#), -- (Lu) LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE
(16#01EED#, 16#01EED#), -- (Ll) LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE
(16#01EEE#, 16#01EEE#), -- (Lu) LATIN CAPITAL LETTER U WITH HORN AND TILDE .. LATIN CAPITAL LETTER U WITH HORN AND TILDE
(16#01EEF#, 16#01EEF#), -- (Ll) LATIN SMALL LETTER U WITH HORN AND TILDE .. LATIN SMALL LETTER U WITH HORN AND TILDE
(16#01EF0#, 16#01EF0#), -- (Lu) LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW
(16#01EF1#, 16#01EF1#), -- (Ll) LATIN SMALL LETTER U WITH HORN AND DOT BELOW .. LATIN SMALL LETTER U WITH HORN AND DOT BELOW
(16#01EF2#, 16#01EF2#), -- (Lu) LATIN CAPITAL LETTER Y WITH GRAVE .. LATIN CAPITAL LETTER Y WITH GRAVE
(16#01EF3#, 16#01EF3#), -- (Ll) LATIN SMALL LETTER Y WITH GRAVE .. LATIN SMALL LETTER Y WITH GRAVE
(16#01EF4#, 16#01EF4#), -- (Lu) LATIN CAPITAL LETTER Y WITH DOT BELOW .. LATIN CAPITAL LETTER Y WITH DOT BELOW
(16#01EF5#, 16#01EF5#), -- (Ll) LATIN SMALL LETTER Y WITH DOT BELOW .. LATIN SMALL LETTER Y WITH DOT BELOW
(16#01EF6#, 16#01EF6#), -- (Lu) LATIN CAPITAL LETTER Y WITH HOOK ABOVE .. LATIN CAPITAL LETTER Y WITH HOOK ABOVE
(16#01EF7#, 16#01EF7#), -- (Ll) LATIN SMALL LETTER Y WITH HOOK ABOVE .. LATIN SMALL LETTER Y WITH HOOK ABOVE
(16#01EF8#, 16#01EF8#), -- (Lu) LATIN CAPITAL LETTER Y WITH TILDE .. LATIN CAPITAL LETTER Y WITH TILDE
(16#01EF9#, 16#01EF9#), -- (Ll) LATIN SMALL LETTER Y WITH TILDE .. LATIN SMALL LETTER Y WITH TILDE
(16#01F00#, 16#01F07#), -- (Ll) GREEK SMALL LETTER ALPHA WITH PSILI .. GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI
(16#01F08#, 16#01F0F#), -- (Lu) GREEK CAPITAL LETTER ALPHA WITH PSILI .. GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI
(16#01F10#, 16#01F15#), -- (Ll) GREEK SMALL LETTER EPSILON WITH PSILI .. GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA
(16#01F18#, 16#01F1D#), -- (Lu) GREEK CAPITAL LETTER EPSILON WITH PSILI .. GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA
(16#01F20#, 16#01F27#), -- (Ll) GREEK SMALL LETTER ETA WITH PSILI .. GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI
(16#01F28#, 16#01F2F#), -- (Lu) GREEK CAPITAL LETTER ETA WITH PSILI .. GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI
(16#01F30#, 16#01F37#), -- (Ll) GREEK SMALL LETTER IOTA WITH PSILI .. GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI
(16#01F38#, 16#01F3F#), -- (Lu) GREEK CAPITAL LETTER IOTA WITH PSILI .. GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI
(16#01F40#, 16#01F45#), -- (Ll) GREEK SMALL LETTER OMICRON WITH PSILI .. GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA
(16#01F48#, 16#01F4D#), -- (Lu) GREEK CAPITAL LETTER OMICRON WITH PSILI .. GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA
(16#01F50#, 16#01F57#), -- (Ll) GREEK SMALL LETTER UPSILON WITH PSILI .. GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI
(16#01F59#, 16#01F59#), -- (Lu) GREEK CAPITAL LETTER UPSILON WITH DASIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA
(16#01F5B#, 16#01F5B#), -- (Lu) GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA
(16#01F5D#, 16#01F5D#), -- (Lu) GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA
(16#01F5F#, 16#01F5F#), -- (Lu) GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI
(16#01F60#, 16#01F67#), -- (Ll) GREEK SMALL LETTER OMEGA WITH PSILI .. GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI
(16#01F68#, 16#01F6F#), -- (Lu) GREEK CAPITAL LETTER OMEGA WITH PSILI .. GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI
(16#01F70#, 16#01F7D#), -- (Ll) GREEK SMALL LETTER ALPHA WITH VARIA .. GREEK SMALL LETTER OMEGA WITH OXIA
(16#01F80#, 16#01F87#), -- (Ll) GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI .. GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
(16#01F88#, 16#01F8F#), -- (Lt) GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI .. GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
(16#01F90#, 16#01F97#), -- (Ll) GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI .. GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
(16#01F98#, 16#01F9F#), -- (Lt) GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI .. GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
(16#01FA0#, 16#01FA7#), -- (Ll) GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI .. GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
(16#01FA8#, 16#01FAF#), -- (Lt) GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI .. GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
(16#01FB0#, 16#01FB4#), -- (Ll) GREEK SMALL LETTER ALPHA WITH VRACHY .. GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI
(16#01FB6#, 16#01FB7#), -- (Ll) GREEK SMALL LETTER ALPHA WITH PERISPOMENI .. GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI
(16#01FB8#, 16#01FBB#), -- (Lu) GREEK CAPITAL LETTER ALPHA WITH VRACHY .. GREEK CAPITAL LETTER ALPHA WITH OXIA
(16#01FBC#, 16#01FBC#), -- (Lt) GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI .. GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI
(16#01FBD#, 16#01FBD#), -- (Sk) GREEK KORONIS .. GREEK KORONIS
(16#01FBE#, 16#01FBE#), -- (Ll) GREEK PROSGEGRAMMENI .. GREEK PROSGEGRAMMENI
(16#01FBF#, 16#01FC1#), -- (Sk) GREEK PSILI .. GREEK DIALYTIKA AND PERISPOMENI
(16#01FC2#, 16#01FC4#), -- (Ll) GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI .. GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI
(16#01FC6#, 16#01FC7#), -- (Ll) GREEK SMALL LETTER ETA WITH PERISPOMENI .. GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI
(16#01FC8#, 16#01FCB#), -- (Lu) GREEK CAPITAL LETTER EPSILON WITH VARIA .. GREEK CAPITAL LETTER ETA WITH OXIA
(16#01FCC#, 16#01FCC#), -- (Lt) GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI .. GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI
(16#01FCD#, 16#01FCF#), -- (Sk) GREEK PSILI AND VARIA .. GREEK PSILI AND PERISPOMENI
(16#01FD0#, 16#01FD3#), -- (Ll) GREEK SMALL LETTER IOTA WITH VRACHY .. GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
(16#01FD6#, 16#01FD7#), -- (Ll) GREEK SMALL LETTER IOTA WITH PERISPOMENI .. GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI
(16#01FD8#, 16#01FDB#), -- (Lu) GREEK CAPITAL LETTER IOTA WITH VRACHY .. GREEK CAPITAL LETTER IOTA WITH OXIA
(16#01FDD#, 16#01FDF#), -- (Sk) GREEK DASIA AND VARIA .. GREEK DASIA AND PERISPOMENI
(16#01FE0#, 16#01FE7#), -- (Ll) GREEK SMALL LETTER UPSILON WITH VRACHY .. GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI
(16#01FE8#, 16#01FEC#), -- (Lu) GREEK CAPITAL LETTER UPSILON WITH VRACHY .. GREEK CAPITAL LETTER RHO WITH DASIA
(16#01FED#, 16#01FEF#), -- (Sk) GREEK DIALYTIKA AND VARIA .. GREEK VARIA
(16#01FF2#, 16#01FF4#), -- (Ll) GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI .. GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI
(16#01FF6#, 16#01FF7#), -- (Ll) GREEK SMALL LETTER OMEGA WITH PERISPOMENI .. GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI
(16#01FF8#, 16#01FFB#), -- (Lu) GREEK CAPITAL LETTER OMICRON WITH VARIA .. GREEK CAPITAL LETTER OMEGA WITH OXIA
(16#01FFC#, 16#01FFC#), -- (Lt) GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI .. GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI
(16#01FFD#, 16#01FFE#), -- (Sk) GREEK OXIA .. GREEK DASIA
(16#02000#, 16#0200B#), -- (Zs) EN QUAD .. ZERO WIDTH SPACE
(16#0200C#, 16#0200F#), -- (Cf) ZERO WIDTH NON-JOINER .. RIGHT-TO-LEFT MARK
(16#02010#, 16#02015#), -- (Pd) HYPHEN .. HORIZONTAL BAR
(16#02016#, 16#02017#), -- (Po) DOUBLE VERTICAL LINE .. DOUBLE LOW LINE
(16#02018#, 16#02018#), -- (Pi) LEFT SINGLE QUOTATION MARK .. LEFT SINGLE QUOTATION MARK
(16#02019#, 16#02019#), -- (Pf) RIGHT SINGLE QUOTATION MARK .. RIGHT SINGLE QUOTATION MARK
(16#0201A#, 16#0201A#), -- (Ps) SINGLE LOW-9 QUOTATION MARK .. SINGLE LOW-9 QUOTATION MARK
(16#0201B#, 16#0201C#), -- (Pi) SINGLE HIGH-REVERSED-9 QUOTATION MARK .. LEFT DOUBLE QUOTATION MARK
(16#0201D#, 16#0201D#), -- (Pf) RIGHT DOUBLE QUOTATION MARK .. RIGHT DOUBLE QUOTATION MARK
(16#0201E#, 16#0201E#), -- (Ps) DOUBLE LOW-9 QUOTATION MARK .. DOUBLE LOW-9 QUOTATION MARK
(16#0201F#, 16#0201F#), -- (Pi) DOUBLE HIGH-REVERSED-9 QUOTATION MARK .. DOUBLE HIGH-REVERSED-9 QUOTATION MARK
(16#02020#, 16#02027#), -- (Po) DAGGER .. HYPHENATION POINT
(16#02028#, 16#02028#), -- (Zl) LINE SEPARATOR .. LINE SEPARATOR
(16#02029#, 16#02029#), -- (Zp) PARAGRAPH SEPARATOR .. PARAGRAPH SEPARATOR
(16#0202A#, 16#0202E#), -- (Cf) LEFT-TO-RIGHT EMBEDDING .. RIGHT-TO-LEFT OVERRIDE
(16#0202F#, 16#0202F#), -- (Zs) NARROW NO-BREAK SPACE .. NARROW NO-BREAK SPACE
(16#02030#, 16#02038#), -- (Po) PER MILLE SIGN .. CARET
(16#02039#, 16#02039#), -- (Pi) SINGLE LEFT-POINTING ANGLE QUOTATION MARK .. SINGLE LEFT-POINTING ANGLE QUOTATION MARK
(16#0203A#, 16#0203A#), -- (Pf) SINGLE RIGHT-POINTING ANGLE QUOTATION MARK .. SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
(16#0203B#, 16#0203E#), -- (Po) REFERENCE MARK .. OVERLINE
(16#0203F#, 16#02040#), -- (Pc) UNDERTIE .. CHARACTER TIE
(16#02041#, 16#02043#), -- (Po) CARET INSERTION POINT .. HYPHEN BULLET
(16#02044#, 16#02044#), -- (Sm) FRACTION SLASH .. FRACTION SLASH
(16#02045#, 16#02045#), -- (Ps) LEFT SQUARE BRACKET WITH QUILL .. LEFT SQUARE BRACKET WITH QUILL
(16#02046#, 16#02046#), -- (Pe) RIGHT SQUARE BRACKET WITH QUILL .. RIGHT SQUARE BRACKET WITH QUILL
(16#02047#, 16#02051#), -- (Po) DOUBLE QUESTION MARK .. TWO ASTERISKS ALIGNED VERTICALLY
(16#02052#, 16#02052#), -- (Sm) COMMERCIAL MINUS SIGN .. COMMERCIAL MINUS SIGN
(16#02053#, 16#02053#), -- (Po) SWUNG DASH .. SWUNG DASH
(16#02054#, 16#02054#), -- (Pc) INVERTED UNDERTIE .. INVERTED UNDERTIE
(16#02057#, 16#02057#), -- (Po) QUADRUPLE PRIME .. QUADRUPLE PRIME
(16#0205F#, 16#0205F#), -- (Zs) MEDIUM MATHEMATICAL SPACE .. MEDIUM MATHEMATICAL SPACE
(16#02060#, 16#02063#), -- (Cf) WORD JOINER .. INVISIBLE SEPARATOR
(16#0206A#, 16#0206F#), -- (Cf) INHIBIT SYMMETRIC SWAPPING .. NOMINAL DIGIT SHAPES
(16#02070#, 16#02070#), -- (No) SUPERSCRIPT ZERO .. SUPERSCRIPT ZERO
(16#02071#, 16#02071#), -- (Ll) SUPERSCRIPT LATIN SMALL LETTER I .. SUPERSCRIPT LATIN SMALL LETTER I
(16#02074#, 16#02079#), -- (No) SUPERSCRIPT FOUR .. SUPERSCRIPT NINE
(16#0207A#, 16#0207C#), -- (Sm) SUPERSCRIPT PLUS SIGN .. SUPERSCRIPT EQUALS SIGN
(16#0207D#, 16#0207D#), -- (Ps) SUPERSCRIPT LEFT PARENTHESIS .. SUPERSCRIPT LEFT PARENTHESIS
(16#0207E#, 16#0207E#), -- (Pe) SUPERSCRIPT RIGHT PARENTHESIS .. SUPERSCRIPT RIGHT PARENTHESIS
(16#0207F#, 16#0207F#), -- (Ll) SUPERSCRIPT LATIN SMALL LETTER N .. SUPERSCRIPT LATIN SMALL LETTER N
(16#02080#, 16#02089#), -- (No) SUBSCRIPT ZERO .. SUBSCRIPT NINE
(16#0208A#, 16#0208C#), -- (Sm) SUBSCRIPT PLUS SIGN .. SUBSCRIPT EQUALS SIGN
(16#0208D#, 16#0208D#), -- (Ps) SUBSCRIPT LEFT PARENTHESIS .. SUBSCRIPT LEFT PARENTHESIS
(16#0208E#, 16#0208E#), -- (Pe) SUBSCRIPT RIGHT PARENTHESIS .. SUBSCRIPT RIGHT PARENTHESIS
(16#020A0#, 16#020B1#), -- (Sc) EURO-CURRENCY SIGN .. PESO SIGN
(16#020D0#, 16#020DC#), -- (Mn) COMBINING LEFT HARPOON ABOVE .. COMBINING FOUR DOTS ABOVE
(16#020DD#, 16#020E0#), -- (Me) COMBINING ENCLOSING CIRCLE .. COMBINING ENCLOSING CIRCLE BACKSLASH
(16#020E1#, 16#020E1#), -- (Mn) COMBINING LEFT RIGHT ARROW ABOVE .. COMBINING LEFT RIGHT ARROW ABOVE
(16#020E2#, 16#020E4#), -- (Me) COMBINING ENCLOSING SCREEN .. COMBINING ENCLOSING UPWARD POINTING TRIANGLE
(16#020E5#, 16#020EA#), -- (Mn) COMBINING REVERSE SOLIDUS OVERLAY .. COMBINING LEFTWARDS ARROW OVERLAY
(16#02100#, 16#02101#), -- (So) ACCOUNT OF .. ADDRESSED TO THE SUBJECT
(16#02102#, 16#02102#), -- (Lu) DOUBLE-STRUCK CAPITAL C .. DOUBLE-STRUCK CAPITAL C
(16#02103#, 16#02106#), -- (So) DEGREE CELSIUS .. CADA UNA
(16#02107#, 16#02107#), -- (Lu) EULER CONSTANT .. EULER CONSTANT
(16#02108#, 16#02109#), -- (So) SCRUPLE .. DEGREE FAHRENHEIT
(16#0210A#, 16#0210A#), -- (Ll) SCRIPT SMALL G .. SCRIPT SMALL G
(16#0210B#, 16#0210D#), -- (Lu) SCRIPT CAPITAL H .. DOUBLE-STRUCK CAPITAL H
(16#0210E#, 16#0210F#), -- (Ll) PLANCK CONSTANT .. PLANCK CONSTANT OVER TWO PI
(16#02110#, 16#02112#), -- (Lu) SCRIPT CAPITAL I .. SCRIPT CAPITAL L
(16#02113#, 16#02113#), -- (Ll) SCRIPT SMALL L .. SCRIPT SMALL L
(16#02114#, 16#02114#), -- (So) L B BAR SYMBOL .. L B BAR SYMBOL
(16#02115#, 16#02115#), -- (Lu) DOUBLE-STRUCK CAPITAL N .. DOUBLE-STRUCK CAPITAL N
(16#02116#, 16#02118#), -- (So) NUMERO SIGN .. SCRIPT CAPITAL P
(16#02119#, 16#0211D#), -- (Lu) DOUBLE-STRUCK CAPITAL P .. DOUBLE-STRUCK CAPITAL R
(16#0211E#, 16#02123#), -- (So) PRESCRIPTION TAKE .. VERSICLE
(16#02124#, 16#02124#), -- (Lu) DOUBLE-STRUCK CAPITAL Z .. DOUBLE-STRUCK CAPITAL Z
(16#02125#, 16#02125#), -- (So) OUNCE SIGN .. OUNCE SIGN
(16#02126#, 16#02126#), -- (Lu) OHM SIGN .. OHM SIGN
(16#02127#, 16#02127#), -- (So) INVERTED OHM SIGN .. INVERTED OHM SIGN
(16#02128#, 16#02128#), -- (Lu) BLACK-LETTER CAPITAL Z .. BLACK-LETTER CAPITAL Z
(16#02129#, 16#02129#), -- (So) TURNED GREEK SMALL LETTER IOTA .. TURNED GREEK SMALL LETTER IOTA
(16#0212A#, 16#0212D#), -- (Lu) KELVIN SIGN .. BLACK-LETTER CAPITAL C
(16#0212E#, 16#0212E#), -- (So) ESTIMATED SYMBOL .. ESTIMATED SYMBOL
(16#0212F#, 16#0212F#), -- (Ll) SCRIPT SMALL E .. SCRIPT SMALL E
(16#02130#, 16#02131#), -- (Lu) SCRIPT CAPITAL E .. SCRIPT CAPITAL F
(16#02132#, 16#02132#), -- (So) TURNED CAPITAL F .. TURNED CAPITAL F
(16#02133#, 16#02133#), -- (Lu) SCRIPT CAPITAL M .. SCRIPT CAPITAL M
(16#02134#, 16#02134#), -- (Ll) SCRIPT SMALL O .. SCRIPT SMALL O
(16#02135#, 16#02138#), -- (Lo) ALEF SYMBOL .. DALET SYMBOL
(16#02139#, 16#02139#), -- (Ll) INFORMATION SOURCE .. INFORMATION SOURCE
(16#0213A#, 16#0213B#), -- (So) ROTATED CAPITAL Q .. FACSIMILE SIGN
(16#0213D#, 16#0213D#), -- (Ll) DOUBLE-STRUCK SMALL GAMMA .. DOUBLE-STRUCK SMALL GAMMA
(16#0213E#, 16#0213F#), -- (Lu) DOUBLE-STRUCK CAPITAL GAMMA .. DOUBLE-STRUCK CAPITAL PI
(16#02140#, 16#02144#), -- (Sm) DOUBLE-STRUCK N-ARY SUMMATION .. TURNED SANS-SERIF CAPITAL Y
(16#02145#, 16#02145#), -- (Lu) DOUBLE-STRUCK ITALIC CAPITAL D .. DOUBLE-STRUCK ITALIC CAPITAL D
(16#02146#, 16#02149#), -- (Ll) DOUBLE-STRUCK ITALIC SMALL D .. DOUBLE-STRUCK ITALIC SMALL J
(16#0214A#, 16#0214A#), -- (So) PROPERTY LINE .. PROPERTY LINE
(16#0214B#, 16#0214B#), -- (Sm) TURNED AMPERSAND .. TURNED AMPERSAND
(16#02153#, 16#0215F#), -- (No) VULGAR FRACTION ONE THIRD .. FRACTION NUMERATOR ONE
(16#02160#, 16#02183#), -- (Nl) ROMAN NUMERAL ONE .. ROMAN NUMERAL REVERSED ONE HUNDRED
(16#02190#, 16#02194#), -- (Sm) LEFTWARDS ARROW .. LEFT RIGHT ARROW
(16#02195#, 16#02199#), -- (So) UP DOWN ARROW .. SOUTH WEST ARROW
(16#0219A#, 16#0219B#), -- (Sm) LEFTWARDS ARROW WITH STROKE .. RIGHTWARDS ARROW WITH STROKE
(16#0219C#, 16#0219F#), -- (So) LEFTWARDS WAVE ARROW .. UPWARDS TWO HEADED ARROW
(16#021A0#, 16#021A0#), -- (Sm) RIGHTWARDS TWO HEADED ARROW .. RIGHTWARDS TWO HEADED ARROW
(16#021A1#, 16#021A2#), -- (So) DOWNWARDS TWO HEADED ARROW .. LEFTWARDS ARROW WITH TAIL
(16#021A3#, 16#021A3#), -- (Sm) RIGHTWARDS ARROW WITH TAIL .. RIGHTWARDS ARROW WITH TAIL
(16#021A4#, 16#021A5#), -- (So) LEFTWARDS ARROW FROM BAR .. UPWARDS ARROW FROM BAR
(16#021A6#, 16#021A6#), -- (Sm) RIGHTWARDS ARROW FROM BAR .. RIGHTWARDS ARROW FROM BAR
(16#021A7#, 16#021AD#), -- (So) DOWNWARDS ARROW FROM BAR .. LEFT RIGHT WAVE ARROW
(16#021AE#, 16#021AE#), -- (Sm) LEFT RIGHT ARROW WITH STROKE .. LEFT RIGHT ARROW WITH STROKE
(16#021AF#, 16#021CD#), -- (So) DOWNWARDS ZIGZAG ARROW .. LEFTWARDS DOUBLE ARROW WITH STROKE
(16#021CE#, 16#021CF#), -- (Sm) LEFT RIGHT DOUBLE ARROW WITH STROKE .. RIGHTWARDS DOUBLE ARROW WITH STROKE
(16#021D0#, 16#021D1#), -- (So) LEFTWARDS DOUBLE ARROW .. UPWARDS DOUBLE ARROW
(16#021D2#, 16#021D2#), -- (Sm) RIGHTWARDS DOUBLE ARROW .. RIGHTWARDS DOUBLE ARROW
(16#021D3#, 16#021D3#), -- (So) DOWNWARDS DOUBLE ARROW .. DOWNWARDS DOUBLE ARROW
(16#021D4#, 16#021D4#), -- (Sm) LEFT RIGHT DOUBLE ARROW .. LEFT RIGHT DOUBLE ARROW
(16#021D5#, 16#021F3#), -- (So) UP DOWN DOUBLE ARROW .. UP DOWN WHITE ARROW
(16#021F4#, 16#022FF#), -- (Sm) RIGHT ARROW WITH SMALL CIRCLE .. Z NOTATION BAG MEMBERSHIP
(16#02300#, 16#02307#), -- (So) DIAMETER SIGN .. WAVY LINE
(16#02308#, 16#0230B#), -- (Sm) LEFT CEILING .. RIGHT FLOOR
(16#0230C#, 16#0231F#), -- (So) BOTTOM RIGHT CROP .. BOTTOM RIGHT CORNER
(16#02320#, 16#02321#), -- (Sm) TOP HALF INTEGRAL .. BOTTOM HALF INTEGRAL
(16#02322#, 16#02328#), -- (So) FROWN .. KEYBOARD
(16#02329#, 16#02329#), -- (Ps) LEFT-POINTING ANGLE BRACKET .. LEFT-POINTING ANGLE BRACKET
(16#0232A#, 16#0232A#), -- (Pe) RIGHT-POINTING ANGLE BRACKET .. RIGHT-POINTING ANGLE BRACKET
(16#0232B#, 16#0237B#), -- (So) ERASE TO THE LEFT .. NOT CHECK MARK
(16#0237C#, 16#0237C#), -- (Sm) RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW .. RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW
(16#0237D#, 16#0239A#), -- (So) SHOULDERED OPEN BOX .. CLEAR SCREEN SYMBOL
(16#0239B#, 16#023B3#), -- (Sm) LEFT PARENTHESIS UPPER HOOK .. SUMMATION BOTTOM
(16#023B4#, 16#023B4#), -- (Ps) TOP SQUARE BRACKET .. TOP SQUARE BRACKET
(16#023B5#, 16#023B5#), -- (Pe) BOTTOM SQUARE BRACKET .. BOTTOM SQUARE BRACKET
(16#023B6#, 16#023B6#), -- (Po) BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET .. BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET
(16#023B7#, 16#023D0#), -- (So) RADICAL SYMBOL BOTTOM .. VERTICAL LINE EXTENSION
(16#02400#, 16#02426#), -- (So) SYMBOL FOR NULL .. SYMBOL FOR SUBSTITUTE FORM TWO
(16#02440#, 16#0244A#), -- (So) OCR HOOK .. OCR DOUBLE BACKSLASH
(16#02460#, 16#0249B#), -- (No) CIRCLED DIGIT ONE .. NUMBER TWENTY FULL STOP
(16#0249C#, 16#024E9#), -- (So) PARENTHESIZED LATIN SMALL LETTER A .. CIRCLED LATIN SMALL LETTER Z
(16#024EA#, 16#024FF#), -- (No) CIRCLED DIGIT ZERO .. NEGATIVE CIRCLED DIGIT ZERO
(16#02500#, 16#025B6#), -- (So) BOX DRAWINGS LIGHT HORIZONTAL .. BLACK RIGHT-POINTING TRIANGLE
(16#025B7#, 16#025B7#), -- (Sm) WHITE RIGHT-POINTING TRIANGLE .. WHITE RIGHT-POINTING TRIANGLE
(16#025B8#, 16#025C0#), -- (So) BLACK RIGHT-POINTING SMALL TRIANGLE .. BLACK LEFT-POINTING TRIANGLE
(16#025C1#, 16#025C1#), -- (Sm) WHITE LEFT-POINTING TRIANGLE .. WHITE LEFT-POINTING TRIANGLE
(16#025C2#, 16#025F7#), -- (So) BLACK LEFT-POINTING SMALL TRIANGLE .. WHITE CIRCLE WITH UPPER RIGHT QUADRANT
(16#025F8#, 16#025FF#), -- (Sm) UPPER LEFT TRIANGLE .. LOWER RIGHT TRIANGLE
(16#02600#, 16#02617#), -- (So) BLACK SUN WITH RAYS .. BLACK SHOGI PIECE
(16#02619#, 16#0266E#), -- (So) REVERSED ROTATED FLORAL HEART BULLET .. MUSIC NATURAL SIGN
(16#0266F#, 16#0266F#), -- (Sm) MUSIC SHARP SIGN .. MUSIC SHARP SIGN
(16#02670#, 16#0267D#), -- (So) WEST SYRIAC CROSS .. PARTIALLY-RECYCLED PAPER SYMBOL
(16#02680#, 16#02691#), -- (So) DIE FACE-1 .. BLACK FLAG
(16#026A0#, 16#026A1#), -- (So) WARNING SIGN .. HIGH VOLTAGE SIGN
(16#02701#, 16#02704#), -- (So) UPPER BLADE SCISSORS .. WHITE SCISSORS
(16#02706#, 16#02709#), -- (So) TELEPHONE LOCATION SIGN .. ENVELOPE
(16#0270C#, 16#02727#), -- (So) VICTORY HAND .. WHITE FOUR POINTED STAR
(16#02729#, 16#0274B#), -- (So) STRESS OUTLINED WHITE STAR .. HEAVY EIGHT TEARDROP-SPOKED PROPELLER ASTERISK
(16#0274D#, 16#0274D#), -- (So) SHADOWED WHITE CIRCLE .. SHADOWED WHITE CIRCLE
(16#0274F#, 16#02752#), -- (So) LOWER RIGHT DROP-SHADOWED WHITE SQUARE .. UPPER RIGHT SHADOWED WHITE SQUARE
(16#02756#, 16#02756#), -- (So) BLACK DIAMOND MINUS WHITE X .. BLACK DIAMOND MINUS WHITE X
(16#02758#, 16#0275E#), -- (So) LIGHT VERTICAL BAR .. HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT
(16#02761#, 16#02767#), -- (So) CURVED STEM PARAGRAPH SIGN ORNAMENT .. ROTATED FLORAL HEART BULLET
(16#02768#, 16#02768#), -- (Ps) MEDIUM LEFT PARENTHESIS ORNAMENT .. MEDIUM LEFT PARENTHESIS ORNAMENT
(16#02769#, 16#02769#), -- (Pe) MEDIUM RIGHT PARENTHESIS ORNAMENT .. MEDIUM RIGHT PARENTHESIS ORNAMENT
(16#0276A#, 16#0276A#), -- (Ps) MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT .. MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT
(16#0276B#, 16#0276B#), -- (Pe) MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT .. MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT
(16#0276C#, 16#0276C#), -- (Ps) MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT .. MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT
(16#0276D#, 16#0276D#), -- (Pe) MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT .. MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT
(16#0276E#, 16#0276E#), -- (Ps) HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT .. HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT
(16#0276F#, 16#0276F#), -- (Pe) HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT .. HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT
(16#02770#, 16#02770#), -- (Ps) HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT .. HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT
(16#02771#, 16#02771#), -- (Pe) HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT .. HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT
(16#02772#, 16#02772#), -- (Ps) LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT .. LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT
(16#02773#, 16#02773#), -- (Pe) LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT .. LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT
(16#02774#, 16#02774#), -- (Ps) MEDIUM LEFT CURLY BRACKET ORNAMENT .. MEDIUM LEFT CURLY BRACKET ORNAMENT
(16#02775#, 16#02775#), -- (Pe) MEDIUM RIGHT CURLY BRACKET ORNAMENT .. MEDIUM RIGHT CURLY BRACKET ORNAMENT
(16#02776#, 16#02793#), -- (No) DINGBAT NEGATIVE CIRCLED DIGIT ONE .. DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN
(16#02794#, 16#02794#), -- (So) HEAVY WIDE-HEADED RIGHTWARDS ARROW .. HEAVY WIDE-HEADED RIGHTWARDS ARROW
(16#02798#, 16#027AF#), -- (So) HEAVY SOUTH EAST ARROW .. NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW
(16#027B1#, 16#027BE#), -- (So) NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW .. OPEN-OUTLINED RIGHTWARDS ARROW
(16#027D0#, 16#027E5#), -- (Sm) WHITE DIAMOND WITH CENTRED DOT .. WHITE SQUARE WITH RIGHTWARDS TICK
(16#027E6#, 16#027E6#), -- (Ps) MATHEMATICAL LEFT WHITE SQUARE BRACKET .. MATHEMATICAL LEFT WHITE SQUARE BRACKET
(16#027E7#, 16#027E7#), -- (Pe) MATHEMATICAL RIGHT WHITE SQUARE BRACKET .. MATHEMATICAL RIGHT WHITE SQUARE BRACKET
(16#027E8#, 16#027E8#), -- (Ps) MATHEMATICAL LEFT ANGLE BRACKET .. MATHEMATICAL LEFT ANGLE BRACKET
(16#027E9#, 16#027E9#), -- (Pe) MATHEMATICAL RIGHT ANGLE BRACKET .. MATHEMATICAL RIGHT ANGLE BRACKET
(16#027EA#, 16#027EA#), -- (Ps) MATHEMATICAL LEFT DOUBLE ANGLE BRACKET .. MATHEMATICAL LEFT DOUBLE ANGLE BRACKET
(16#027EB#, 16#027EB#), -- (Pe) MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET .. MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET
(16#027F0#, 16#027FF#), -- (Sm) UPWARDS QUADRUPLE ARROW .. LONG RIGHTWARDS SQUIGGLE ARROW
(16#02800#, 16#028FF#), -- (So) BRAILLE PATTERN BLANK .. BRAILLE PATTERN DOTS-12345678
(16#02900#, 16#02982#), -- (Sm) RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE .. Z NOTATION TYPE COLON
(16#02983#, 16#02983#), -- (Ps) LEFT WHITE CURLY BRACKET .. LEFT WHITE CURLY BRACKET
(16#02984#, 16#02984#), -- (Pe) RIGHT WHITE CURLY BRACKET .. RIGHT WHITE CURLY BRACKET
(16#02985#, 16#02985#), -- (Ps) LEFT WHITE PARENTHESIS .. LEFT WHITE PARENTHESIS
(16#02986#, 16#02986#), -- (Pe) RIGHT WHITE PARENTHESIS .. RIGHT WHITE PARENTHESIS
(16#02987#, 16#02987#), -- (Ps) Z NOTATION LEFT IMAGE BRACKET .. Z NOTATION LEFT IMAGE BRACKET
(16#02988#, 16#02988#), -- (Pe) Z NOTATION RIGHT IMAGE BRACKET .. Z NOTATION RIGHT IMAGE BRACKET
(16#02989#, 16#02989#), -- (Ps) Z NOTATION LEFT BINDING BRACKET .. Z NOTATION LEFT BINDING BRACKET
(16#0298A#, 16#0298A#), -- (Pe) Z NOTATION RIGHT BINDING BRACKET .. Z NOTATION RIGHT BINDING BRACKET
(16#0298B#, 16#0298B#), -- (Ps) LEFT SQUARE BRACKET WITH UNDERBAR .. LEFT SQUARE BRACKET WITH UNDERBAR
(16#0298C#, 16#0298C#), -- (Pe) RIGHT SQUARE BRACKET WITH UNDERBAR .. RIGHT SQUARE BRACKET WITH UNDERBAR
(16#0298D#, 16#0298D#), -- (Ps) LEFT SQUARE BRACKET WITH TICK IN TOP CORNER .. LEFT SQUARE BRACKET WITH TICK IN TOP CORNER
(16#0298E#, 16#0298E#), -- (Pe) RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER .. RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER
(16#0298F#, 16#0298F#), -- (Ps) LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER .. LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER
(16#02990#, 16#02990#), -- (Pe) RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER .. RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER
(16#02991#, 16#02991#), -- (Ps) LEFT ANGLE BRACKET WITH DOT .. LEFT ANGLE BRACKET WITH DOT
(16#02992#, 16#02992#), -- (Pe) RIGHT ANGLE BRACKET WITH DOT .. RIGHT ANGLE BRACKET WITH DOT
(16#02993#, 16#02993#), -- (Ps) LEFT ARC LESS-THAN BRACKET .. LEFT ARC LESS-THAN BRACKET
(16#02994#, 16#02994#), -- (Pe) RIGHT ARC GREATER-THAN BRACKET .. RIGHT ARC GREATER-THAN BRACKET
(16#02995#, 16#02995#), -- (Ps) DOUBLE LEFT ARC GREATER-THAN BRACKET .. DOUBLE LEFT ARC GREATER-THAN BRACKET
(16#02996#, 16#02996#), -- (Pe) DOUBLE RIGHT ARC LESS-THAN BRACKET .. DOUBLE RIGHT ARC LESS-THAN BRACKET
(16#02997#, 16#02997#), -- (Ps) LEFT BLACK TORTOISE SHELL BRACKET .. LEFT BLACK TORTOISE SHELL BRACKET
(16#02998#, 16#02998#), -- (Pe) RIGHT BLACK TORTOISE SHELL BRACKET .. RIGHT BLACK TORTOISE SHELL BRACKET
(16#02999#, 16#029D7#), -- (Sm) DOTTED FENCE .. BLACK HOURGLASS
(16#029D8#, 16#029D8#), -- (Ps) LEFT WIGGLY FENCE .. LEFT WIGGLY FENCE
(16#029D9#, 16#029D9#), -- (Pe) RIGHT WIGGLY FENCE .. RIGHT WIGGLY FENCE
(16#029DA#, 16#029DA#), -- (Ps) LEFT DOUBLE WIGGLY FENCE .. LEFT DOUBLE WIGGLY FENCE
(16#029DB#, 16#029DB#), -- (Pe) RIGHT DOUBLE WIGGLY FENCE .. RIGHT DOUBLE WIGGLY FENCE
(16#029DC#, 16#029FB#), -- (Sm) INCOMPLETE INFINITY .. TRIPLE PLUS
(16#029FC#, 16#029FC#), -- (Ps) LEFT-POINTING CURVED ANGLE BRACKET .. LEFT-POINTING CURVED ANGLE BRACKET
(16#029FD#, 16#029FD#), -- (Pe) RIGHT-POINTING CURVED ANGLE BRACKET .. RIGHT-POINTING CURVED ANGLE BRACKET
(16#029FE#, 16#02AFF#), -- (Sm) TINY .. N-ARY WHITE VERTICAL BAR
(16#02B00#, 16#02B0D#), -- (So) NORTH EAST WHITE ARROW .. UP DOWN BLACK ARROW
(16#02E80#, 16#02E99#), -- (So) CJK RADICAL REPEAT .. CJK RADICAL RAP
(16#02E9B#, 16#02EF3#), -- (So) CJK RADICAL CHOKE .. CJK RADICAL C-SIMPLIFIED TURTLE
(16#02F00#, 16#02FD5#), -- (So) KANGXI RADICAL ONE .. KANGXI RADICAL FLUTE
(16#02FF0#, 16#02FFB#), -- (So) IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO RIGHT .. IDEOGRAPHIC DESCRIPTION CHARACTER OVERLAID
(16#03000#, 16#03000#), -- (Zs) IDEOGRAPHIC SPACE .. IDEOGRAPHIC SPACE
(16#03001#, 16#03003#), -- (Po) IDEOGRAPHIC COMMA .. DITTO MARK
(16#03004#, 16#03004#), -- (So) JAPANESE INDUSTRIAL STANDARD SYMBOL .. JAPANESE INDUSTRIAL STANDARD SYMBOL
(16#03005#, 16#03005#), -- (Lm) IDEOGRAPHIC ITERATION MARK .. IDEOGRAPHIC ITERATION MARK
(16#03006#, 16#03006#), -- (Lo) IDEOGRAPHIC CLOSING MARK .. IDEOGRAPHIC CLOSING MARK
(16#03007#, 16#03007#), -- (Nl) IDEOGRAPHIC NUMBER ZERO .. IDEOGRAPHIC NUMBER ZERO
(16#03008#, 16#03008#), -- (Ps) LEFT ANGLE BRACKET .. LEFT ANGLE BRACKET
(16#03009#, 16#03009#), -- (Pe) RIGHT ANGLE BRACKET .. RIGHT ANGLE BRACKET
(16#0300A#, 16#0300A#), -- (Ps) LEFT DOUBLE ANGLE BRACKET .. LEFT DOUBLE ANGLE BRACKET
(16#0300B#, 16#0300B#), -- (Pe) RIGHT DOUBLE ANGLE BRACKET .. RIGHT DOUBLE ANGLE BRACKET
(16#0300C#, 16#0300C#), -- (Ps) LEFT CORNER BRACKET .. LEFT CORNER BRACKET
(16#0300D#, 16#0300D#), -- (Pe) RIGHT CORNER BRACKET .. RIGHT CORNER BRACKET
(16#0300E#, 16#0300E#), -- (Ps) LEFT WHITE CORNER BRACKET .. LEFT WHITE CORNER BRACKET
(16#0300F#, 16#0300F#), -- (Pe) RIGHT WHITE CORNER BRACKET .. RIGHT WHITE CORNER BRACKET
(16#03010#, 16#03010#), -- (Ps) LEFT BLACK LENTICULAR BRACKET .. LEFT BLACK LENTICULAR BRACKET
(16#03011#, 16#03011#), -- (Pe) RIGHT BLACK LENTICULAR BRACKET .. RIGHT BLACK LENTICULAR BRACKET
(16#03012#, 16#03013#), -- (So) POSTAL MARK .. GETA MARK
(16#03014#, 16#03014#), -- (Ps) LEFT TORTOISE SHELL BRACKET .. LEFT TORTOISE SHELL BRACKET
(16#03015#, 16#03015#), -- (Pe) RIGHT TORTOISE SHELL BRACKET .. RIGHT TORTOISE SHELL BRACKET
(16#03016#, 16#03016#), -- (Ps) LEFT WHITE LENTICULAR BRACKET .. LEFT WHITE LENTICULAR BRACKET
(16#03017#, 16#03017#), -- (Pe) RIGHT WHITE LENTICULAR BRACKET .. RIGHT WHITE LENTICULAR BRACKET
(16#03018#, 16#03018#), -- (Ps) LEFT WHITE TORTOISE SHELL BRACKET .. LEFT WHITE TORTOISE SHELL BRACKET
(16#03019#, 16#03019#), -- (Pe) RIGHT WHITE TORTOISE SHELL BRACKET .. RIGHT WHITE TORTOISE SHELL BRACKET
(16#0301A#, 16#0301A#), -- (Ps) LEFT WHITE SQUARE BRACKET .. LEFT WHITE SQUARE BRACKET
(16#0301B#, 16#0301B#), -- (Pe) RIGHT WHITE SQUARE BRACKET .. RIGHT WHITE SQUARE BRACKET
(16#0301C#, 16#0301C#), -- (Pd) WAVE DASH .. WAVE DASH
(16#0301D#, 16#0301D#), -- (Ps) REVERSED DOUBLE PRIME QUOTATION MARK .. REVERSED DOUBLE PRIME QUOTATION MARK
(16#0301E#, 16#0301F#), -- (Pe) DOUBLE PRIME QUOTATION MARK .. LOW DOUBLE PRIME QUOTATION MARK
(16#03020#, 16#03020#), -- (So) POSTAL MARK FACE .. POSTAL MARK FACE
(16#03021#, 16#03029#), -- (Nl) HANGZHOU NUMERAL ONE .. HANGZHOU NUMERAL NINE
(16#0302A#, 16#0302F#), -- (Mn) IDEOGRAPHIC LEVEL TONE MARK .. HANGUL DOUBLE DOT TONE MARK
(16#03030#, 16#03030#), -- (Pd) WAVY DASH .. WAVY DASH
(16#03031#, 16#03035#), -- (Lm) VERTICAL KANA REPEAT MARK .. VERTICAL KANA REPEAT MARK LOWER HALF
(16#03036#, 16#03037#), -- (So) CIRCLED POSTAL MARK .. IDEOGRAPHIC TELEGRAPH LINE FEED SEPARATOR SYMBOL
(16#03038#, 16#0303A#), -- (Nl) HANGZHOU NUMERAL TEN .. HANGZHOU NUMERAL THIRTY
(16#0303B#, 16#0303B#), -- (Lm) VERTICAL IDEOGRAPHIC ITERATION MARK .. VERTICAL IDEOGRAPHIC ITERATION MARK
(16#0303C#, 16#0303C#), -- (Lo) MASU MARK .. MASU MARK
(16#0303D#, 16#0303D#), -- (Po) PART ALTERNATION MARK .. PART ALTERNATION MARK
(16#0303E#, 16#0303F#), -- (So) IDEOGRAPHIC VARIATION INDICATOR .. IDEOGRAPHIC HALF FILL SPACE
(16#03041#, 16#03096#), -- (Lo) HIRAGANA LETTER SMALL A .. HIRAGANA LETTER SMALL KE
(16#03099#, 16#0309A#), -- (Mn) COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK .. COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
(16#0309B#, 16#0309C#), -- (Sk) KATAKANA-HIRAGANA VOICED SOUND MARK .. KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
(16#0309D#, 16#0309E#), -- (Lm) HIRAGANA ITERATION MARK .. HIRAGANA VOICED ITERATION MARK
(16#0309F#, 16#0309F#), -- (Lo) HIRAGANA DIGRAPH YORI .. HIRAGANA DIGRAPH YORI
(16#030A0#, 16#030A0#), -- (Pd) KATAKANA-HIRAGANA DOUBLE HYPHEN .. KATAKANA-HIRAGANA DOUBLE HYPHEN
(16#030A1#, 16#030FA#), -- (Lo) KATAKANA LETTER SMALL A .. KATAKANA LETTER VO
(16#030FB#, 16#030FB#), -- (Pc) KATAKANA MIDDLE DOT .. KATAKANA MIDDLE DOT
(16#030FC#, 16#030FE#), -- (Lm) KATAKANA-HIRAGANA PROLONGED SOUND MARK .. KATAKANA VOICED ITERATION MARK
(16#030FF#, 16#030FF#), -- (Lo) KATAKANA DIGRAPH KOTO .. KATAKANA DIGRAPH KOTO
(16#03105#, 16#0312C#), -- (Lo) BOPOMOFO LETTER B .. BOPOMOFO LETTER GN
(16#03131#, 16#0318E#), -- (Lo) HANGUL LETTER KIYEOK .. HANGUL LETTER ARAEAE
(16#03190#, 16#03191#), -- (So) IDEOGRAPHIC ANNOTATION LINKING MARK .. IDEOGRAPHIC ANNOTATION REVERSE MARK
(16#03192#, 16#03195#), -- (No) IDEOGRAPHIC ANNOTATION ONE MARK .. IDEOGRAPHIC ANNOTATION FOUR MARK
(16#03196#, 16#0319F#), -- (So) IDEOGRAPHIC ANNOTATION TOP MARK .. IDEOGRAPHIC ANNOTATION MAN MARK
(16#031A0#, 16#031B7#), -- (Lo) BOPOMOFO LETTER BU .. BOPOMOFO FINAL LETTER H
(16#031F0#, 16#031FF#), -- (Lo) KATAKANA LETTER SMALL KU .. KATAKANA LETTER SMALL RO
(16#03200#, 16#0321E#), -- (So) PARENTHESIZED HANGUL KIYEOK .. PARENTHESIZED KOREAN CHARACTER O HU
(16#03220#, 16#03229#), -- (No) PARENTHESIZED IDEOGRAPH ONE .. PARENTHESIZED IDEOGRAPH TEN
(16#0322A#, 16#03243#), -- (So) PARENTHESIZED IDEOGRAPH MOON .. PARENTHESIZED IDEOGRAPH REACH
(16#03250#, 16#03250#), -- (So) PARTNERSHIP SIGN .. PARTNERSHIP SIGN
(16#03251#, 16#0325F#), -- (No) CIRCLED NUMBER TWENTY ONE .. CIRCLED NUMBER THIRTY FIVE
(16#03260#, 16#0327D#), -- (So) CIRCLED HANGUL KIYEOK .. CIRCLED KOREAN CHARACTER JUEUI
(16#0327F#, 16#0327F#), -- (So) KOREAN STANDARD SYMBOL .. KOREAN STANDARD SYMBOL
(16#03280#, 16#03289#), -- (No) CIRCLED IDEOGRAPH ONE .. CIRCLED IDEOGRAPH TEN
(16#0328A#, 16#032B0#), -- (So) CIRCLED IDEOGRAPH MOON .. CIRCLED IDEOGRAPH NIGHT
(16#032B1#, 16#032BF#), -- (No) CIRCLED NUMBER THIRTY SIX .. CIRCLED NUMBER FIFTY
(16#032C0#, 16#032FE#), -- (So) IDEOGRAPHIC TELEGRAPH SYMBOL FOR JANUARY .. CIRCLED KATAKANA WO
(16#03300#, 16#033FF#), -- (So) SQUARE APAATO .. SQUARE GAL
(16#03400#, 16#04DB5#), -- (Lo) <CJK Ideograph Extension A, First> .. <CJK Ideograph Extension A, Last>
(16#04DC0#, 16#04DFF#), -- (So) HEXAGRAM FOR THE CREATIVE HEAVEN .. HEXAGRAM FOR BEFORE COMPLETION
(16#04E00#, 16#09FA5#), -- (Lo) <CJK Ideograph, First> .. <CJK Ideograph, Last>
(16#0A000#, 16#0A48C#), -- (Lo) YI SYLLABLE IT .. YI SYLLABLE YYR
(16#0A490#, 16#0A4C6#), -- (So) YI RADICAL QOT .. YI RADICAL KE
(16#0AC00#, 16#0D7A3#), -- (Lo) <Hangul Syllable, First> .. <Hangul Syllable, Last>
(16#0D800#, 16#0F8FF#), -- (Cs) <Non Private Use High Surrogate, First> .. <Private Use, Last>
(16#0F900#, 16#0FA2D#), -- (Lo) CJK COMPATIBILITY IDEOGRAPH-F900 .. CJK COMPATIBILITY IDEOGRAPH-FA2D
(16#0FA30#, 16#0FA6A#), -- (Lo) CJK COMPATIBILITY IDEOGRAPH-FA30 .. CJK COMPATIBILITY IDEOGRAPH-FA6A
(16#0FB00#, 16#0FB06#), -- (Ll) LATIN SMALL LIGATURE FF .. LATIN SMALL LIGATURE ST
(16#0FB13#, 16#0FB17#), -- (Ll) ARMENIAN SMALL LIGATURE MEN NOW .. ARMENIAN SMALL LIGATURE MEN XEH
(16#0FB1D#, 16#0FB1D#), -- (Lo) HEBREW LETTER YOD WITH HIRIQ .. HEBREW LETTER YOD WITH HIRIQ
(16#0FB1E#, 16#0FB1E#), -- (Mn) HEBREW POINT JUDEO-SPANISH VARIKA .. HEBREW POINT JUDEO-SPANISH VARIKA
(16#0FB1F#, 16#0FB28#), -- (Lo) HEBREW LIGATURE YIDDISH YOD YOD PATAH .. HEBREW LETTER WIDE TAV
(16#0FB29#, 16#0FB29#), -- (Sm) HEBREW LETTER ALTERNATIVE PLUS SIGN .. HEBREW LETTER ALTERNATIVE PLUS SIGN
(16#0FB2A#, 16#0FB36#), -- (Lo) HEBREW LETTER SHIN WITH SHIN DOT .. HEBREW LETTER ZAYIN WITH DAGESH
(16#0FB38#, 16#0FB3C#), -- (Lo) HEBREW LETTER TET WITH DAGESH .. HEBREW LETTER LAMED WITH DAGESH
(16#0FB3E#, 16#0FB3E#), -- (Lo) HEBREW LETTER MEM WITH DAGESH .. HEBREW LETTER MEM WITH DAGESH
(16#0FB40#, 16#0FB41#), -- (Lo) HEBREW LETTER NUN WITH DAGESH .. HEBREW LETTER SAMEKH WITH DAGESH
(16#0FB43#, 16#0FB44#), -- (Lo) HEBREW LETTER FINAL PE WITH DAGESH .. HEBREW LETTER PE WITH DAGESH
(16#0FB46#, 16#0FBB1#), -- (Lo) HEBREW LETTER TSADI WITH DAGESH .. ARABIC LETTER YEH BARREE WITH HAMZA ABOVE FINAL FORM
(16#0FBD3#, 16#0FD3D#), -- (Lo) ARABIC LETTER NG ISOLATED FORM .. ARABIC LIGATURE ALEF WITH FATHATAN ISOLATED FORM
(16#0FD3E#, 16#0FD3E#), -- (Ps) ORNATE LEFT PARENTHESIS .. ORNATE LEFT PARENTHESIS
(16#0FD3F#, 16#0FD3F#), -- (Pe) ORNATE RIGHT PARENTHESIS .. ORNATE RIGHT PARENTHESIS
(16#0FD50#, 16#0FD8F#), -- (Lo) ARABIC LIGATURE TEH WITH JEEM WITH MEEM INITIAL FORM .. ARABIC LIGATURE MEEM WITH KHAH WITH MEEM INITIAL FORM
(16#0FD92#, 16#0FDC7#), -- (Lo) ARABIC LIGATURE MEEM WITH JEEM WITH KHAH INITIAL FORM .. ARABIC LIGATURE NOON WITH JEEM WITH YEH FINAL FORM
(16#0FDF0#, 16#0FDFB#), -- (Lo) ARABIC LIGATURE SALLA USED AS KORANIC STOP SIGN ISOLATED FORM .. ARABIC LIGATURE JALLAJALALOUHOU
(16#0FDFC#, 16#0FDFC#), -- (Sc) RIAL SIGN .. RIAL SIGN
(16#0FDFD#, 16#0FDFD#), -- (So) ARABIC LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM .. ARABIC LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM
(16#0FE00#, 16#0FE0F#), -- (Mn) VARIATION SELECTOR-1 .. VARIATION SELECTOR-16
(16#0FE20#, 16#0FE23#), -- (Mn) COMBINING LIGATURE LEFT HALF .. COMBINING DOUBLE TILDE RIGHT HALF
(16#0FE30#, 16#0FE30#), -- (Po) PRESENTATION FORM FOR VERTICAL TWO DOT LEADER .. PRESENTATION FORM FOR VERTICAL TWO DOT LEADER
(16#0FE31#, 16#0FE32#), -- (Pd) PRESENTATION FORM FOR VERTICAL EM DASH .. PRESENTATION FORM FOR VERTICAL EN DASH
(16#0FE33#, 16#0FE34#), -- (Pc) PRESENTATION FORM FOR VERTICAL LOW LINE .. PRESENTATION FORM FOR VERTICAL WAVY LOW LINE
(16#0FE35#, 16#0FE35#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS .. PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS
(16#0FE36#, 16#0FE36#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS .. PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS
(16#0FE37#, 16#0FE37#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET
(16#0FE38#, 16#0FE38#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET
(16#0FE39#, 16#0FE39#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET
(16#0FE3A#, 16#0FE3A#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET
(16#0FE3B#, 16#0FE3B#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET
(16#0FE3C#, 16#0FE3C#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET
(16#0FE3D#, 16#0FE3D#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET
(16#0FE3E#, 16#0FE3E#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET
(16#0FE3F#, 16#0FE3F#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET
(16#0FE40#, 16#0FE40#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET
(16#0FE41#, 16#0FE41#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET
(16#0FE42#, 16#0FE42#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET
(16#0FE43#, 16#0FE43#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET
(16#0FE44#, 16#0FE44#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET
(16#0FE45#, 16#0FE46#), -- (Po) SESAME DOT .. WHITE SESAME DOT
(16#0FE47#, 16#0FE47#), -- (Ps) PRESENTATION FORM FOR VERTICAL LEFT SQUARE BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT SQUARE BRACKET
(16#0FE48#, 16#0FE48#), -- (Pe) PRESENTATION FORM FOR VERTICAL RIGHT SQUARE BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT SQUARE BRACKET
(16#0FE49#, 16#0FE4C#), -- (Po) DASHED OVERLINE .. DOUBLE WAVY OVERLINE
(16#0FE4D#, 16#0FE4F#), -- (Pc) DASHED LOW LINE .. WAVY LOW LINE
(16#0FE50#, 16#0FE52#), -- (Po) SMALL COMMA .. SMALL FULL STOP
(16#0FE54#, 16#0FE57#), -- (Po) SMALL SEMICOLON .. SMALL EXCLAMATION MARK
(16#0FE58#, 16#0FE58#), -- (Pd) SMALL EM DASH .. SMALL EM DASH
(16#0FE59#, 16#0FE59#), -- (Ps) SMALL LEFT PARENTHESIS .. SMALL LEFT PARENTHESIS
(16#0FE5A#, 16#0FE5A#), -- (Pe) SMALL RIGHT PARENTHESIS .. SMALL RIGHT PARENTHESIS
(16#0FE5B#, 16#0FE5B#), -- (Ps) SMALL LEFT CURLY BRACKET .. SMALL LEFT CURLY BRACKET
(16#0FE5C#, 16#0FE5C#), -- (Pe) SMALL RIGHT CURLY BRACKET .. SMALL RIGHT CURLY BRACKET
(16#0FE5D#, 16#0FE5D#), -- (Ps) SMALL LEFT TORTOISE SHELL BRACKET .. SMALL LEFT TORTOISE SHELL BRACKET
(16#0FE5E#, 16#0FE5E#), -- (Pe) SMALL RIGHT TORTOISE SHELL BRACKET .. SMALL RIGHT TORTOISE SHELL BRACKET
(16#0FE5F#, 16#0FE61#), -- (Po) SMALL NUMBER SIGN .. SMALL ASTERISK
(16#0FE62#, 16#0FE62#), -- (Sm) SMALL PLUS SIGN .. SMALL PLUS SIGN
(16#0FE63#, 16#0FE63#), -- (Pd) SMALL HYPHEN-MINUS .. SMALL HYPHEN-MINUS
(16#0FE64#, 16#0FE66#), -- (Sm) SMALL LESS-THAN SIGN .. SMALL EQUALS SIGN
(16#0FE68#, 16#0FE68#), -- (Po) SMALL REVERSE SOLIDUS .. SMALL REVERSE SOLIDUS
(16#0FE69#, 16#0FE69#), -- (Sc) SMALL DOLLAR SIGN .. SMALL DOLLAR SIGN
(16#0FE6A#, 16#0FE6B#), -- (Po) SMALL PERCENT SIGN .. SMALL COMMERCIAL AT
(16#0FE70#, 16#0FE74#), -- (Lo) ARABIC FATHATAN ISOLATED FORM .. ARABIC KASRATAN ISOLATED FORM
(16#0FE76#, 16#0FEFC#), -- (Lo) ARABIC FATHA ISOLATED FORM .. ARABIC LIGATURE LAM WITH ALEF FINAL FORM
(16#0FEFF#, 16#0FEFF#), -- (Cf) ZERO WIDTH NO-BREAK SPACE .. ZERO WIDTH NO-BREAK SPACE
(16#0FF01#, 16#0FF03#), -- (Po) FULLWIDTH EXCLAMATION MARK .. FULLWIDTH NUMBER SIGN
(16#0FF04#, 16#0FF04#), -- (Sc) FULLWIDTH DOLLAR SIGN .. FULLWIDTH DOLLAR SIGN
(16#0FF05#, 16#0FF07#), -- (Po) FULLWIDTH PERCENT SIGN .. FULLWIDTH APOSTROPHE
(16#0FF08#, 16#0FF08#), -- (Ps) FULLWIDTH LEFT PARENTHESIS .. FULLWIDTH LEFT PARENTHESIS
(16#0FF09#, 16#0FF09#), -- (Pe) FULLWIDTH RIGHT PARENTHESIS .. FULLWIDTH RIGHT PARENTHESIS
(16#0FF0A#, 16#0FF0A#), -- (Po) FULLWIDTH ASTERISK .. FULLWIDTH ASTERISK
(16#0FF0B#, 16#0FF0B#), -- (Sm) FULLWIDTH PLUS SIGN .. FULLWIDTH PLUS SIGN
(16#0FF0C#, 16#0FF0C#), -- (Po) FULLWIDTH COMMA .. FULLWIDTH COMMA
(16#0FF0D#, 16#0FF0D#), -- (Pd) FULLWIDTH HYPHEN-MINUS .. FULLWIDTH HYPHEN-MINUS
(16#0FF0E#, 16#0FF0F#), -- (Po) FULLWIDTH FULL STOP .. FULLWIDTH SOLIDUS
(16#0FF10#, 16#0FF19#), -- (Nd) FULLWIDTH DIGIT ZERO .. FULLWIDTH DIGIT NINE
(16#0FF1A#, 16#0FF1B#), -- (Po) FULLWIDTH COLON .. FULLWIDTH SEMICOLON
(16#0FF1C#, 16#0FF1E#), -- (Sm) FULLWIDTH LESS-THAN SIGN .. FULLWIDTH GREATER-THAN SIGN
(16#0FF1F#, 16#0FF20#), -- (Po) FULLWIDTH QUESTION MARK .. FULLWIDTH COMMERCIAL AT
(16#0FF21#, 16#0FF3A#), -- (Lu) FULLWIDTH LATIN CAPITAL LETTER A .. FULLWIDTH LATIN CAPITAL LETTER Z
(16#0FF3B#, 16#0FF3B#), -- (Ps) FULLWIDTH LEFT SQUARE BRACKET .. FULLWIDTH LEFT SQUARE BRACKET
(16#0FF3C#, 16#0FF3C#), -- (Po) FULLWIDTH REVERSE SOLIDUS .. FULLWIDTH REVERSE SOLIDUS
(16#0FF3D#, 16#0FF3D#), -- (Pe) FULLWIDTH RIGHT SQUARE BRACKET .. FULLWIDTH RIGHT SQUARE BRACKET
(16#0FF3E#, 16#0FF3E#), -- (Sk) FULLWIDTH CIRCUMFLEX ACCENT .. FULLWIDTH CIRCUMFLEX ACCENT
(16#0FF3F#, 16#0FF3F#), -- (Pc) FULLWIDTH LOW LINE .. FULLWIDTH LOW LINE
(16#0FF40#, 16#0FF40#), -- (Sk) FULLWIDTH GRAVE ACCENT .. FULLWIDTH GRAVE ACCENT
(16#0FF41#, 16#0FF5A#), -- (Ll) FULLWIDTH LATIN SMALL LETTER A .. FULLWIDTH LATIN SMALL LETTER Z
(16#0FF5B#, 16#0FF5B#), -- (Ps) FULLWIDTH LEFT CURLY BRACKET .. FULLWIDTH LEFT CURLY BRACKET
(16#0FF5C#, 16#0FF5C#), -- (Sm) FULLWIDTH VERTICAL LINE .. FULLWIDTH VERTICAL LINE
(16#0FF5D#, 16#0FF5D#), -- (Pe) FULLWIDTH RIGHT CURLY BRACKET .. FULLWIDTH RIGHT CURLY BRACKET
(16#0FF5E#, 16#0FF5E#), -- (Sm) FULLWIDTH TILDE .. FULLWIDTH TILDE
(16#0FF5F#, 16#0FF5F#), -- (Ps) FULLWIDTH LEFT WHITE PARENTHESIS .. FULLWIDTH LEFT WHITE PARENTHESIS
(16#0FF60#, 16#0FF60#), -- (Pe) FULLWIDTH RIGHT WHITE PARENTHESIS .. FULLWIDTH RIGHT WHITE PARENTHESIS
(16#0FF61#, 16#0FF61#), -- (Po) HALFWIDTH IDEOGRAPHIC FULL STOP .. HALFWIDTH IDEOGRAPHIC FULL STOP
(16#0FF62#, 16#0FF62#), -- (Ps) HALFWIDTH LEFT CORNER BRACKET .. HALFWIDTH LEFT CORNER BRACKET
(16#0FF63#, 16#0FF63#), -- (Pe) HALFWIDTH RIGHT CORNER BRACKET .. HALFWIDTH RIGHT CORNER BRACKET
(16#0FF64#, 16#0FF64#), -- (Po) HALFWIDTH IDEOGRAPHIC COMMA .. HALFWIDTH IDEOGRAPHIC COMMA
(16#0FF65#, 16#0FF65#), -- (Pc) HALFWIDTH KATAKANA MIDDLE DOT .. HALFWIDTH KATAKANA MIDDLE DOT
(16#0FF66#, 16#0FF6F#), -- (Lo) HALFWIDTH KATAKANA LETTER WO .. HALFWIDTH KATAKANA LETTER SMALL TU
(16#0FF70#, 16#0FF70#), -- (Lm) HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK .. HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK
(16#0FF71#, 16#0FF9D#), -- (Lo) HALFWIDTH KATAKANA LETTER A .. HALFWIDTH KATAKANA LETTER N
(16#0FF9E#, 16#0FF9F#), -- (Lm) HALFWIDTH KATAKANA VOICED SOUND MARK .. HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK
(16#0FFA0#, 16#0FFBE#), -- (Lo) HALFWIDTH HANGUL FILLER .. HALFWIDTH HANGUL LETTER HIEUH
(16#0FFC2#, 16#0FFC7#), -- (Lo) HALFWIDTH HANGUL LETTER A .. HALFWIDTH HANGUL LETTER E
(16#0FFCA#, 16#0FFCF#), -- (Lo) HALFWIDTH HANGUL LETTER YEO .. HALFWIDTH HANGUL LETTER OE
(16#0FFD2#, 16#0FFD7#), -- (Lo) HALFWIDTH HANGUL LETTER YO .. HALFWIDTH HANGUL LETTER YU
(16#0FFDA#, 16#0FFDC#), -- (Lo) HALFWIDTH HANGUL LETTER EU .. HALFWIDTH HANGUL LETTER I
(16#0FFE0#, 16#0FFE1#), -- (Sc) FULLWIDTH CENT SIGN .. FULLWIDTH POUND SIGN
(16#0FFE2#, 16#0FFE2#), -- (Sm) FULLWIDTH NOT SIGN .. FULLWIDTH NOT SIGN
(16#0FFE3#, 16#0FFE3#), -- (Sk) FULLWIDTH MACRON .. FULLWIDTH MACRON
(16#0FFE4#, 16#0FFE4#), -- (So) FULLWIDTH BROKEN BAR .. FULLWIDTH BROKEN BAR
(16#0FFE5#, 16#0FFE6#), -- (Sc) FULLWIDTH YEN SIGN .. FULLWIDTH WON SIGN
(16#0FFE8#, 16#0FFE8#), -- (So) HALFWIDTH FORMS LIGHT VERTICAL .. HALFWIDTH FORMS LIGHT VERTICAL
(16#0FFE9#, 16#0FFEC#), -- (Sm) HALFWIDTH LEFTWARDS ARROW .. HALFWIDTH DOWNWARDS ARROW
(16#0FFED#, 16#0FFEE#), -- (So) HALFWIDTH BLACK SQUARE .. HALFWIDTH WHITE CIRCLE
(16#0FFF9#, 16#0FFFB#), -- (Cf) INTERLINEAR ANNOTATION ANCHOR .. INTERLINEAR ANNOTATION TERMINATOR
(16#0FFFC#, 16#0FFFD#), -- (So) OBJECT REPLACEMENT CHARACTER .. REPLACEMENT CHARACTER
(16#10000#, 16#1000B#), -- (Lo) LINEAR B SYLLABLE B008 A .. LINEAR B SYLLABLE B046 JE
(16#1000D#, 16#10026#), -- (Lo) LINEAR B SYLLABLE B036 JO .. LINEAR B SYLLABLE B032 QO
(16#10028#, 16#1003A#), -- (Lo) LINEAR B SYLLABLE B060 RA .. LINEAR B SYLLABLE B042 WO
(16#1003C#, 16#1003D#), -- (Lo) LINEAR B SYLLABLE B017 ZA .. LINEAR B SYLLABLE B074 ZE
(16#1003F#, 16#1004D#), -- (Lo) LINEAR B SYLLABLE B020 ZO .. LINEAR B SYLLABLE B091 TWO
(16#10050#, 16#1005D#), -- (Lo) LINEAR B SYMBOL B018 .. LINEAR B SYMBOL B089
(16#10080#, 16#100FA#), -- (Lo) LINEAR B IDEOGRAM B100 MAN .. LINEAR B IDEOGRAM VESSEL B305
(16#10100#, 16#10101#), -- (Po) AEGEAN WORD SEPARATOR LINE .. AEGEAN WORD SEPARATOR DOT
(16#10102#, 16#10102#), -- (So) AEGEAN CHECK MARK .. AEGEAN CHECK MARK
(16#10107#, 16#10133#), -- (No) AEGEAN NUMBER ONE .. AEGEAN NUMBER NINETY THOUSAND
(16#10137#, 16#1013F#), -- (So) AEGEAN WEIGHT BASE UNIT .. AEGEAN MEASURE THIRD SUBUNIT
(16#10300#, 16#1031E#), -- (Lo) OLD ITALIC LETTER A .. OLD ITALIC LETTER UU
(16#10320#, 16#10323#), -- (No) OLD ITALIC NUMERAL ONE .. OLD ITALIC NUMERAL FIFTY
(16#10330#, 16#10349#), -- (Lo) GOTHIC LETTER AHSA .. GOTHIC LETTER OTHAL
(16#1034A#, 16#1034A#), -- (Nl) GOTHIC LETTER NINE HUNDRED .. GOTHIC LETTER NINE HUNDRED
(16#10380#, 16#1039D#), -- (Lo) UGARITIC LETTER ALPA .. UGARITIC LETTER SSU
(16#1039F#, 16#1039F#), -- (Po) UGARITIC WORD DIVIDER .. UGARITIC WORD DIVIDER
(16#10400#, 16#10427#), -- (Lu) DESERET CAPITAL LETTER LONG I .. DESERET CAPITAL LETTER EW
(16#10428#, 16#1044F#), -- (Ll) DESERET SMALL LETTER LONG I .. DESERET SMALL LETTER EW
(16#10450#, 16#1049D#), -- (Lo) SHAVIAN LETTER PEEP .. OSMANYA LETTER OO
(16#104A0#, 16#104A9#), -- (Nd) OSMANYA DIGIT ZERO .. OSMANYA DIGIT NINE
(16#10800#, 16#10805#), -- (Lo) CYPRIOT SYLLABLE A .. CYPRIOT SYLLABLE JA
(16#10808#, 16#10808#), -- (Lo) CYPRIOT SYLLABLE JO .. CYPRIOT SYLLABLE JO
(16#1080A#, 16#10835#), -- (Lo) CYPRIOT SYLLABLE KA .. CYPRIOT SYLLABLE WO
(16#10837#, 16#10838#), -- (Lo) CYPRIOT SYLLABLE XA .. CYPRIOT SYLLABLE XE
(16#1083C#, 16#1083C#), -- (Lo) CYPRIOT SYLLABLE ZA .. CYPRIOT SYLLABLE ZA
(16#1083F#, 16#1083F#), -- (Lo) CYPRIOT SYLLABLE ZO .. CYPRIOT SYLLABLE ZO
(16#1D000#, 16#1D0F5#), -- (So) BYZANTINE MUSICAL SYMBOL PSILI .. BYZANTINE MUSICAL SYMBOL GORGON NEO KATO
(16#1D100#, 16#1D126#), -- (So) MUSICAL SYMBOL SINGLE BARLINE .. MUSICAL SYMBOL DRUM CLEF-2
(16#1D12A#, 16#1D164#), -- (So) MUSICAL SYMBOL DOUBLE SHARP .. MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH NOTE
(16#1D165#, 16#1D166#), -- (Mc) MUSICAL SYMBOL COMBINING STEM .. MUSICAL SYMBOL COMBINING SPRECHGESANG STEM
(16#1D167#, 16#1D169#), -- (Mn) MUSICAL SYMBOL COMBINING TREMOLO-1 .. MUSICAL SYMBOL COMBINING TREMOLO-3
(16#1D16A#, 16#1D16C#), -- (So) MUSICAL SYMBOL FINGERED TREMOLO-1 .. MUSICAL SYMBOL FINGERED TREMOLO-3
(16#1D16D#, 16#1D172#), -- (Mc) MUSICAL SYMBOL COMBINING AUGMENTATION DOT .. MUSICAL SYMBOL COMBINING FLAG-5
(16#1D173#, 16#1D17A#), -- (Cf) MUSICAL SYMBOL BEGIN BEAM .. MUSICAL SYMBOL END PHRASE
(16#1D17B#, 16#1D182#), -- (Mn) MUSICAL SYMBOL COMBINING ACCENT .. MUSICAL SYMBOL COMBINING LOURE
(16#1D183#, 16#1D184#), -- (So) MUSICAL SYMBOL ARPEGGIATO UP .. MUSICAL SYMBOL ARPEGGIATO DOWN
(16#1D185#, 16#1D18B#), -- (Mn) MUSICAL SYMBOL COMBINING DOIT .. MUSICAL SYMBOL COMBINING TRIPLE TONGUE
(16#1D18C#, 16#1D1A9#), -- (So) MUSICAL SYMBOL RINFORZANDO .. MUSICAL SYMBOL DEGREE SLASH
(16#1D1AA#, 16#1D1AD#), -- (Mn) MUSICAL SYMBOL COMBINING DOWN BOW .. MUSICAL SYMBOL COMBINING SNAP PIZZICATO
(16#1D1AE#, 16#1D1DD#), -- (So) MUSICAL SYMBOL PEDAL MARK .. MUSICAL SYMBOL PES SUBPUNCTIS
(16#1D300#, 16#1D356#), -- (So) MONOGRAM FOR EARTH .. TETRAGRAM FOR FOSTERING
(16#1D400#, 16#1D419#), -- (Lu) MATHEMATICAL BOLD CAPITAL A .. MATHEMATICAL BOLD CAPITAL Z
(16#1D41A#, 16#1D433#), -- (Ll) MATHEMATICAL BOLD SMALL A .. MATHEMATICAL BOLD SMALL Z
(16#1D434#, 16#1D44D#), -- (Lu) MATHEMATICAL ITALIC CAPITAL A .. MATHEMATICAL ITALIC CAPITAL Z
(16#1D44E#, 16#1D454#), -- (Ll) MATHEMATICAL ITALIC SMALL A .. MATHEMATICAL ITALIC SMALL G
(16#1D456#, 16#1D467#), -- (Ll) MATHEMATICAL ITALIC SMALL I .. MATHEMATICAL ITALIC SMALL Z
(16#1D468#, 16#1D481#), -- (Lu) MATHEMATICAL BOLD ITALIC CAPITAL A .. MATHEMATICAL BOLD ITALIC CAPITAL Z
(16#1D482#, 16#1D49B#), -- (Ll) MATHEMATICAL BOLD ITALIC SMALL A .. MATHEMATICAL BOLD ITALIC SMALL Z
(16#1D49C#, 16#1D49C#), -- (Lu) MATHEMATICAL SCRIPT CAPITAL A .. MATHEMATICAL SCRIPT CAPITAL A
(16#1D49E#, 16#1D49F#), -- (Lu) MATHEMATICAL SCRIPT CAPITAL C .. MATHEMATICAL SCRIPT CAPITAL D
(16#1D4A2#, 16#1D4A2#), -- (Lu) MATHEMATICAL SCRIPT CAPITAL G .. MATHEMATICAL SCRIPT CAPITAL G
(16#1D4A5#, 16#1D4A6#), -- (Lu) MATHEMATICAL SCRIPT CAPITAL J .. MATHEMATICAL SCRIPT CAPITAL K
(16#1D4A9#, 16#1D4AC#), -- (Lu) MATHEMATICAL SCRIPT CAPITAL N .. MATHEMATICAL SCRIPT CAPITAL Q
(16#1D4AE#, 16#1D4B5#), -- (Lu) MATHEMATICAL SCRIPT CAPITAL S .. MATHEMATICAL SCRIPT CAPITAL Z
(16#1D4B6#, 16#1D4B9#), -- (Ll) MATHEMATICAL SCRIPT SMALL A .. MATHEMATICAL SCRIPT SMALL D
(16#1D4BB#, 16#1D4BB#), -- (Ll) MATHEMATICAL SCRIPT SMALL F .. MATHEMATICAL SCRIPT SMALL F
(16#1D4BD#, 16#1D4C3#), -- (Ll) MATHEMATICAL SCRIPT SMALL H .. MATHEMATICAL SCRIPT SMALL N
(16#1D4C5#, 16#1D4CF#), -- (Ll) MATHEMATICAL SCRIPT SMALL P .. MATHEMATICAL SCRIPT SMALL Z
(16#1D4D0#, 16#1D4E9#), -- (Lu) MATHEMATICAL BOLD SCRIPT CAPITAL A .. MATHEMATICAL BOLD SCRIPT CAPITAL Z
(16#1D4EA#, 16#1D503#), -- (Ll) MATHEMATICAL BOLD SCRIPT SMALL A .. MATHEMATICAL BOLD SCRIPT SMALL Z
(16#1D504#, 16#1D505#), -- (Lu) MATHEMATICAL FRAKTUR CAPITAL A .. MATHEMATICAL FRAKTUR CAPITAL B
(16#1D507#, 16#1D50A#), -- (Lu) MATHEMATICAL FRAKTUR CAPITAL D .. MATHEMATICAL FRAKTUR CAPITAL G
(16#1D50D#, 16#1D514#), -- (Lu) MATHEMATICAL FRAKTUR CAPITAL J .. MATHEMATICAL FRAKTUR CAPITAL Q
(16#1D516#, 16#1D51C#), -- (Lu) MATHEMATICAL FRAKTUR CAPITAL S .. MATHEMATICAL FRAKTUR CAPITAL Y
(16#1D51E#, 16#1D537#), -- (Ll) MATHEMATICAL FRAKTUR SMALL A .. MATHEMATICAL FRAKTUR SMALL Z
(16#1D538#, 16#1D539#), -- (Lu) MATHEMATICAL DOUBLE-STRUCK CAPITAL A .. MATHEMATICAL DOUBLE-STRUCK CAPITAL B
(16#1D53B#, 16#1D53E#), -- (Lu) MATHEMATICAL DOUBLE-STRUCK CAPITAL D .. MATHEMATICAL DOUBLE-STRUCK CAPITAL G
(16#1D540#, 16#1D544#), -- (Lu) MATHEMATICAL DOUBLE-STRUCK CAPITAL I .. MATHEMATICAL DOUBLE-STRUCK CAPITAL M
(16#1D546#, 16#1D546#), -- (Lu) MATHEMATICAL DOUBLE-STRUCK CAPITAL O .. MATHEMATICAL DOUBLE-STRUCK CAPITAL O
(16#1D54A#, 16#1D550#), -- (Lu) MATHEMATICAL DOUBLE-STRUCK CAPITAL S .. MATHEMATICAL DOUBLE-STRUCK CAPITAL Y
(16#1D552#, 16#1D56B#), -- (Ll) MATHEMATICAL DOUBLE-STRUCK SMALL A .. MATHEMATICAL DOUBLE-STRUCK SMALL Z
(16#1D56C#, 16#1D585#), -- (Lu) MATHEMATICAL BOLD FRAKTUR CAPITAL A .. MATHEMATICAL BOLD FRAKTUR CAPITAL Z
(16#1D586#, 16#1D59F#), -- (Ll) MATHEMATICAL BOLD FRAKTUR SMALL A .. MATHEMATICAL BOLD FRAKTUR SMALL Z
(16#1D5A0#, 16#1D5B9#), -- (Lu) MATHEMATICAL SANS-SERIF CAPITAL A .. MATHEMATICAL SANS-SERIF CAPITAL Z
(16#1D5BA#, 16#1D5D3#), -- (Ll) MATHEMATICAL SANS-SERIF SMALL A .. MATHEMATICAL SANS-SERIF SMALL Z
(16#1D5D4#, 16#1D5ED#), -- (Lu) MATHEMATICAL SANS-SERIF BOLD CAPITAL A .. MATHEMATICAL SANS-SERIF BOLD CAPITAL Z
(16#1D5EE#, 16#1D607#), -- (Ll) MATHEMATICAL SANS-SERIF BOLD SMALL A .. MATHEMATICAL SANS-SERIF BOLD SMALL Z
(16#1D608#, 16#1D621#), -- (Lu) MATHEMATICAL SANS-SERIF ITALIC CAPITAL A .. MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z
(16#1D622#, 16#1D63B#), -- (Ll) MATHEMATICAL SANS-SERIF ITALIC SMALL A .. MATHEMATICAL SANS-SERIF ITALIC SMALL Z
(16#1D63C#, 16#1D655#), -- (Lu) MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A .. MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z
(16#1D656#, 16#1D66F#), -- (Ll) MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A .. MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z
(16#1D670#, 16#1D689#), -- (Lu) MATHEMATICAL MONOSPACE CAPITAL A .. MATHEMATICAL MONOSPACE CAPITAL Z
(16#1D68A#, 16#1D6A3#), -- (Ll) MATHEMATICAL MONOSPACE SMALL A .. MATHEMATICAL MONOSPACE SMALL Z
(16#1D6A8#, 16#1D6C0#), -- (Lu) MATHEMATICAL BOLD CAPITAL ALPHA .. MATHEMATICAL BOLD CAPITAL OMEGA
(16#1D6C1#, 16#1D6C1#), -- (Sm) MATHEMATICAL BOLD NABLA .. MATHEMATICAL BOLD NABLA
(16#1D6C2#, 16#1D6DA#), -- (Ll) MATHEMATICAL BOLD SMALL ALPHA .. MATHEMATICAL BOLD SMALL OMEGA
(16#1D6DB#, 16#1D6DB#), -- (Sm) MATHEMATICAL BOLD PARTIAL DIFFERENTIAL .. MATHEMATICAL BOLD PARTIAL DIFFERENTIAL
(16#1D6DC#, 16#1D6E1#), -- (Ll) MATHEMATICAL BOLD EPSILON SYMBOL .. MATHEMATICAL BOLD PI SYMBOL
(16#1D6E2#, 16#1D6FA#), -- (Lu) MATHEMATICAL ITALIC CAPITAL ALPHA .. MATHEMATICAL ITALIC CAPITAL OMEGA
(16#1D6FB#, 16#1D6FB#), -- (Sm) MATHEMATICAL ITALIC NABLA .. MATHEMATICAL ITALIC NABLA
(16#1D6FC#, 16#1D714#), -- (Ll) MATHEMATICAL ITALIC SMALL ALPHA .. MATHEMATICAL ITALIC SMALL OMEGA
(16#1D715#, 16#1D715#), -- (Sm) MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL .. MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL
(16#1D716#, 16#1D71B#), -- (Ll) MATHEMATICAL ITALIC EPSILON SYMBOL .. MATHEMATICAL ITALIC PI SYMBOL
(16#1D71C#, 16#1D734#), -- (Lu) MATHEMATICAL BOLD ITALIC CAPITAL ALPHA .. MATHEMATICAL BOLD ITALIC CAPITAL OMEGA
(16#1D735#, 16#1D735#), -- (Sm) MATHEMATICAL BOLD ITALIC NABLA .. MATHEMATICAL BOLD ITALIC NABLA
(16#1D736#, 16#1D74E#), -- (Ll) MATHEMATICAL BOLD ITALIC SMALL ALPHA .. MATHEMATICAL BOLD ITALIC SMALL OMEGA
(16#1D74F#, 16#1D74F#), -- (Sm) MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL .. MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL
(16#1D750#, 16#1D755#), -- (Ll) MATHEMATICAL BOLD ITALIC EPSILON SYMBOL .. MATHEMATICAL BOLD ITALIC PI SYMBOL
(16#1D756#, 16#1D76E#), -- (Lu) MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA .. MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA
(16#1D76F#, 16#1D76F#), -- (Sm) MATHEMATICAL SANS-SERIF BOLD NABLA .. MATHEMATICAL SANS-SERIF BOLD NABLA
(16#1D770#, 16#1D788#), -- (Ll) MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA .. MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA
(16#1D789#, 16#1D789#), -- (Sm) MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL .. MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL
(16#1D78A#, 16#1D78F#), -- (Ll) MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL .. MATHEMATICAL SANS-SERIF BOLD PI SYMBOL
(16#1D790#, 16#1D7A8#), -- (Lu) MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA .. MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA
(16#1D7A9#, 16#1D7A9#), -- (Sm) MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA .. MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA
(16#1D7AA#, 16#1D7C2#), -- (Ll) MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA .. MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA
(16#1D7C3#, 16#1D7C3#), -- (Sm) MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL .. MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL
(16#1D7C4#, 16#1D7C9#), -- (Ll) MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL .. MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL
(16#1D7CE#, 16#1D7FF#), -- (Nd) MATHEMATICAL BOLD DIGIT ZERO .. MATHEMATICAL MONOSPACE DIGIT NINE
(16#20000#, 16#2A6D6#), -- (Lo) <CJK Ideograph Extension B, First> .. <CJK Ideograph Extension B, Last>
(16#2F800#, 16#2FA1D#), -- (Lo) CJK COMPATIBILITY IDEOGRAPH-2F800 .. CJK COMPATIBILITY IDEOGRAPH-2FA1D
(16#E0001#, 16#E0001#), -- (Cf) LANGUAGE TAG .. LANGUAGE TAG
(16#E0020#, 16#E007F#), -- (Cf) TAG SPACE .. CANCEL TAG
(16#E0100#, 16#E01EF#), -- (Mn) VARIATION SELECTOR-17 .. VARIATION SELECTOR-256
(16#F0000#, 16#FFFFD#), -- (Co) <Plane 15 Private Use, First> .. <Plane 15 Private Use, Last>
(16#100000#, 16#10FFFD#)); -- (Co) <Plane 16 Private Use, First> .. <Plane 16 Private Use, Last>
pragma Warnings (Off);
-- Temporary, until pragma at start can be activated ???
-- The following array is parallel to the Unicode_Ranges table above. For
-- each entry in the Unicode_Ranges table, there is a corresponding entry
-- in the following table indicating the corresponding unicode category.
Unicode_Categories : constant array (Unicode_Ranges'Range) of Category := (
Cc, -- (16#00000#, 16#0001F#) <control> .. <control>
Zs, -- (16#00020#, 16#00020#) SPACE .. SPACE
Po, -- (16#00021#, 16#00023#) EXCLAMATION MARK .. NUMBER SIGN
Sc, -- (16#00024#, 16#00024#) DOLLAR SIGN .. DOLLAR SIGN
Po, -- (16#00025#, 16#00027#) PERCENT SIGN .. APOSTROPHE
Ps, -- (16#00028#, 16#00028#) LEFT PARENTHESIS .. LEFT PARENTHESIS
Pe, -- (16#00029#, 16#00029#) RIGHT PARENTHESIS .. RIGHT PARENTHESIS
Po, -- (16#0002A#, 16#0002A#) ASTERISK .. ASTERISK
Sm, -- (16#0002B#, 16#0002B#) PLUS SIGN .. PLUS SIGN
Po, -- (16#0002C#, 16#0002C#) COMMA .. COMMA
Pd, -- (16#0002D#, 16#0002D#) HYPHEN-MINUS .. HYPHEN-MINUS
Po, -- (16#0002E#, 16#0002F#) FULL STOP .. SOLIDUS
Nd, -- (16#00030#, 16#00039#) DIGIT ZERO .. DIGIT NINE
Po, -- (16#0003A#, 16#0003B#) COLON .. SEMICOLON
Sm, -- (16#0003C#, 16#0003E#) LESS-THAN SIGN .. GREATER-THAN SIGN
Po, -- (16#0003F#, 16#00040#) QUESTION MARK .. COMMERCIAL AT
Lu, -- (16#00041#, 16#0005A#) LATIN CAPITAL LETTER A .. LATIN CAPITAL LETTER Z
Ps, -- (16#0005B#, 16#0005B#) LEFT SQUARE BRACKET .. LEFT SQUARE BRACKET
Po, -- (16#0005C#, 16#0005C#) REVERSE SOLIDUS .. REVERSE SOLIDUS
Pe, -- (16#0005D#, 16#0005D#) RIGHT SQUARE BRACKET .. RIGHT SQUARE BRACKET
Sk, -- (16#0005E#, 16#0005E#) CIRCUMFLEX ACCENT .. CIRCUMFLEX ACCENT
Pc, -- (16#0005F#, 16#0005F#) LOW LINE .. LOW LINE
Sk, -- (16#00060#, 16#00060#) GRAVE ACCENT .. GRAVE ACCENT
Ll, -- (16#00061#, 16#0007A#) LATIN SMALL LETTER A .. LATIN SMALL LETTER Z
Ps, -- (16#0007B#, 16#0007B#) LEFT CURLY BRACKET .. LEFT CURLY BRACKET
Sm, -- (16#0007C#, 16#0007C#) VERTICAL LINE .. VERTICAL LINE
Pe, -- (16#0007D#, 16#0007D#) RIGHT CURLY BRACKET .. RIGHT CURLY BRACKET
Sm, -- (16#0007E#, 16#0007E#) TILDE .. TILDE
Cc, -- (16#0007F#, 16#0009F#) <control> .. <control>
Zs, -- (16#000A0#, 16#000A0#) NO-BREAK SPACE .. NO-BREAK SPACE
Po, -- (16#000A1#, 16#000A1#) INVERTED EXCLAMATION MARK .. INVERTED EXCLAMATION MARK
Sc, -- (16#000A2#, 16#000A5#) CENT SIGN .. YEN SIGN
So, -- (16#000A6#, 16#000A7#) BROKEN BAR .. SECTION SIGN
Sk, -- (16#000A8#, 16#000A8#) DIAERESIS .. DIAERESIS
So, -- (16#000A9#, 16#000A9#) COPYRIGHT SIGN .. COPYRIGHT SIGN
Ll, -- (16#000AA#, 16#000AA#) FEMININE ORDINAL INDICATOR .. FEMININE ORDINAL INDICATOR
Pi, -- (16#000AB#, 16#000AB#) LEFT-POINTING DOUBLE ANGLE QUOTATION MARK .. LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
Sm, -- (16#000AC#, 16#000AC#) NOT SIGN .. NOT SIGN
Cf, -- (16#000AD#, 16#000AD#) SOFT HYPHEN .. SOFT HYPHEN
So, -- (16#000AE#, 16#000AE#) REGISTERED SIGN .. REGISTERED SIGN
Sk, -- (16#000AF#, 16#000AF#) MACRON .. MACRON
So, -- (16#000B0#, 16#000B0#) DEGREE SIGN .. DEGREE SIGN
Sm, -- (16#000B1#, 16#000B1#) PLUS-MINUS SIGN .. PLUS-MINUS SIGN
No, -- (16#000B2#, 16#000B3#) SUPERSCRIPT TWO .. SUPERSCRIPT THREE
Sk, -- (16#000B4#, 16#000B4#) ACUTE ACCENT .. ACUTE ACCENT
Ll, -- (16#000B5#, 16#000B5#) MICRO SIGN .. MICRO SIGN
So, -- (16#000B6#, 16#000B6#) PILCROW SIGN .. PILCROW SIGN
Po, -- (16#000B7#, 16#000B7#) MIDDLE DOT .. MIDDLE DOT
Sk, -- (16#000B8#, 16#000B8#) CEDILLA .. CEDILLA
No, -- (16#000B9#, 16#000B9#) SUPERSCRIPT ONE .. SUPERSCRIPT ONE
Ll, -- (16#000BA#, 16#000BA#) MASCULINE ORDINAL INDICATOR .. MASCULINE ORDINAL INDICATOR
Pf, -- (16#000BB#, 16#000BB#) RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK .. RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
No, -- (16#000BC#, 16#000BE#) VULGAR FRACTION ONE QUARTER .. VULGAR FRACTION THREE QUARTERS
Po, -- (16#000BF#, 16#000BF#) INVERTED QUESTION MARK .. INVERTED QUESTION MARK
Lu, -- (16#000C0#, 16#000D6#) LATIN CAPITAL LETTER A WITH GRAVE .. LATIN CAPITAL LETTER O WITH DIAERESIS
Sm, -- (16#000D7#, 16#000D7#) MULTIPLICATION SIGN .. MULTIPLICATION SIGN
Lu, -- (16#000D8#, 16#000DE#) LATIN CAPITAL LETTER O WITH STROKE .. LATIN CAPITAL LETTER THORN
Ll, -- (16#000DF#, 16#000F6#) LATIN SMALL LETTER SHARP S .. LATIN SMALL LETTER O WITH DIAERESIS
Sm, -- (16#000F7#, 16#000F7#) DIVISION SIGN .. DIVISION SIGN
Ll, -- (16#000F8#, 16#000FF#) LATIN SMALL LETTER O WITH STROKE .. LATIN SMALL LETTER Y WITH DIAERESIS
Lu, -- (16#00100#, 16#00100#) LATIN CAPITAL LETTER A WITH MACRON .. LATIN CAPITAL LETTER A WITH MACRON
Ll, -- (16#00101#, 16#00101#) LATIN SMALL LETTER A WITH MACRON .. LATIN SMALL LETTER A WITH MACRON
Lu, -- (16#00102#, 16#00102#) LATIN CAPITAL LETTER A WITH BREVE .. LATIN CAPITAL LETTER A WITH BREVE
Ll, -- (16#00103#, 16#00103#) LATIN SMALL LETTER A WITH BREVE .. LATIN SMALL LETTER A WITH BREVE
Lu, -- (16#00104#, 16#00104#) LATIN CAPITAL LETTER A WITH OGONEK .. LATIN CAPITAL LETTER A WITH OGONEK
Ll, -- (16#00105#, 16#00105#) LATIN SMALL LETTER A WITH OGONEK .. LATIN SMALL LETTER A WITH OGONEK
Lu, -- (16#00106#, 16#00106#) LATIN CAPITAL LETTER C WITH ACUTE .. LATIN CAPITAL LETTER C WITH ACUTE
Ll, -- (16#00107#, 16#00107#) LATIN SMALL LETTER C WITH ACUTE .. LATIN SMALL LETTER C WITH ACUTE
Lu, -- (16#00108#, 16#00108#) LATIN CAPITAL LETTER C WITH CIRCUMFLEX .. LATIN CAPITAL LETTER C WITH CIRCUMFLEX
Ll, -- (16#00109#, 16#00109#) LATIN SMALL LETTER C WITH CIRCUMFLEX .. LATIN SMALL LETTER C WITH CIRCUMFLEX
Lu, -- (16#0010A#, 16#0010A#) LATIN CAPITAL LETTER C WITH DOT ABOVE .. LATIN CAPITAL LETTER C WITH DOT ABOVE
Ll, -- (16#0010B#, 16#0010B#) LATIN SMALL LETTER C WITH DOT ABOVE .. LATIN SMALL LETTER C WITH DOT ABOVE
Lu, -- (16#0010C#, 16#0010C#) LATIN CAPITAL LETTER C WITH CARON .. LATIN CAPITAL LETTER C WITH CARON
Ll, -- (16#0010D#, 16#0010D#) LATIN SMALL LETTER C WITH CARON .. LATIN SMALL LETTER C WITH CARON
Lu, -- (16#0010E#, 16#0010E#) LATIN CAPITAL LETTER D WITH CARON .. LATIN CAPITAL LETTER D WITH CARON
Ll, -- (16#0010F#, 16#0010F#) LATIN SMALL LETTER D WITH CARON .. LATIN SMALL LETTER D WITH CARON
Lu, -- (16#00110#, 16#00110#) LATIN CAPITAL LETTER D WITH STROKE .. LATIN CAPITAL LETTER D WITH STROKE
Ll, -- (16#00111#, 16#00111#) LATIN SMALL LETTER D WITH STROKE .. LATIN SMALL LETTER D WITH STROKE
Lu, -- (16#00112#, 16#00112#) LATIN CAPITAL LETTER E WITH MACRON .. LATIN CAPITAL LETTER E WITH MACRON
Ll, -- (16#00113#, 16#00113#) LATIN SMALL LETTER E WITH MACRON .. LATIN SMALL LETTER E WITH MACRON
Lu, -- (16#00114#, 16#00114#) LATIN CAPITAL LETTER E WITH BREVE .. LATIN CAPITAL LETTER E WITH BREVE
Ll, -- (16#00115#, 16#00115#) LATIN SMALL LETTER E WITH BREVE .. LATIN SMALL LETTER E WITH BREVE
Lu, -- (16#00116#, 16#00116#) LATIN CAPITAL LETTER E WITH DOT ABOVE .. LATIN CAPITAL LETTER E WITH DOT ABOVE
Ll, -- (16#00117#, 16#00117#) LATIN SMALL LETTER E WITH DOT ABOVE .. LATIN SMALL LETTER E WITH DOT ABOVE
Lu, -- (16#00118#, 16#00118#) LATIN CAPITAL LETTER E WITH OGONEK .. LATIN CAPITAL LETTER E WITH OGONEK
Ll, -- (16#00119#, 16#00119#) LATIN SMALL LETTER E WITH OGONEK .. LATIN SMALL LETTER E WITH OGONEK
Lu, -- (16#0011A#, 16#0011A#) LATIN CAPITAL LETTER E WITH CARON .. LATIN CAPITAL LETTER E WITH CARON
Ll, -- (16#0011B#, 16#0011B#) LATIN SMALL LETTER E WITH CARON .. LATIN SMALL LETTER E WITH CARON
Lu, -- (16#0011C#, 16#0011C#) LATIN CAPITAL LETTER G WITH CIRCUMFLEX .. LATIN CAPITAL LETTER G WITH CIRCUMFLEX
Ll, -- (16#0011D#, 16#0011D#) LATIN SMALL LETTER G WITH CIRCUMFLEX .. LATIN SMALL LETTER G WITH CIRCUMFLEX
Lu, -- (16#0011E#, 16#0011E#) LATIN CAPITAL LETTER G WITH BREVE .. LATIN CAPITAL LETTER G WITH BREVE
Ll, -- (16#0011F#, 16#0011F#) LATIN SMALL LETTER G WITH BREVE .. LATIN SMALL LETTER G WITH BREVE
Lu, -- (16#00120#, 16#00120#) LATIN CAPITAL LETTER G WITH DOT ABOVE .. LATIN CAPITAL LETTER G WITH DOT ABOVE
Ll, -- (16#00121#, 16#00121#) LATIN SMALL LETTER G WITH DOT ABOVE .. LATIN SMALL LETTER G WITH DOT ABOVE
Lu, -- (16#00122#, 16#00122#) LATIN CAPITAL LETTER G WITH CEDILLA .. LATIN CAPITAL LETTER G WITH CEDILLA
Ll, -- (16#00123#, 16#00123#) LATIN SMALL LETTER G WITH CEDILLA .. LATIN SMALL LETTER G WITH CEDILLA
Lu, -- (16#00124#, 16#00124#) LATIN CAPITAL LETTER H WITH CIRCUMFLEX .. LATIN CAPITAL LETTER H WITH CIRCUMFLEX
Ll, -- (16#00125#, 16#00125#) LATIN SMALL LETTER H WITH CIRCUMFLEX .. LATIN SMALL LETTER H WITH CIRCUMFLEX
Lu, -- (16#00126#, 16#00126#) LATIN CAPITAL LETTER H WITH STROKE .. LATIN CAPITAL LETTER H WITH STROKE
Ll, -- (16#00127#, 16#00127#) LATIN SMALL LETTER H WITH STROKE .. LATIN SMALL LETTER H WITH STROKE
Lu, -- (16#00128#, 16#00128#) LATIN CAPITAL LETTER I WITH TILDE .. LATIN CAPITAL LETTER I WITH TILDE
Ll, -- (16#00129#, 16#00129#) LATIN SMALL LETTER I WITH TILDE .. LATIN SMALL LETTER I WITH TILDE
Lu, -- (16#0012A#, 16#0012A#) LATIN CAPITAL LETTER I WITH MACRON .. LATIN CAPITAL LETTER I WITH MACRON
Ll, -- (16#0012B#, 16#0012B#) LATIN SMALL LETTER I WITH MACRON .. LATIN SMALL LETTER I WITH MACRON
Lu, -- (16#0012C#, 16#0012C#) LATIN CAPITAL LETTER I WITH BREVE .. LATIN CAPITAL LETTER I WITH BREVE
Ll, -- (16#0012D#, 16#0012D#) LATIN SMALL LETTER I WITH BREVE .. LATIN SMALL LETTER I WITH BREVE
Lu, -- (16#0012E#, 16#0012E#) LATIN CAPITAL LETTER I WITH OGONEK .. LATIN CAPITAL LETTER I WITH OGONEK
Ll, -- (16#0012F#, 16#0012F#) LATIN SMALL LETTER I WITH OGONEK .. LATIN SMALL LETTER I WITH OGONEK
Lu, -- (16#00130#, 16#00130#) LATIN CAPITAL LETTER I WITH DOT ABOVE .. LATIN CAPITAL LETTER I WITH DOT ABOVE
Ll, -- (16#00131#, 16#00131#) LATIN SMALL LETTER DOTLESS I .. LATIN SMALL LETTER DOTLESS I
Lu, -- (16#00132#, 16#00132#) LATIN CAPITAL LIGATURE IJ .. LATIN CAPITAL LIGATURE IJ
Ll, -- (16#00133#, 16#00133#) LATIN SMALL LIGATURE IJ .. LATIN SMALL LIGATURE IJ
Lu, -- (16#00134#, 16#00134#) LATIN CAPITAL LETTER J WITH CIRCUMFLEX .. LATIN CAPITAL LETTER J WITH CIRCUMFLEX
Ll, -- (16#00135#, 16#00135#) LATIN SMALL LETTER J WITH CIRCUMFLEX .. LATIN SMALL LETTER J WITH CIRCUMFLEX
Lu, -- (16#00136#, 16#00136#) LATIN CAPITAL LETTER K WITH CEDILLA .. LATIN CAPITAL LETTER K WITH CEDILLA
Ll, -- (16#00137#, 16#00138#) LATIN SMALL LETTER K WITH CEDILLA .. LATIN SMALL LETTER KRA
Lu, -- (16#00139#, 16#00139#) LATIN CAPITAL LETTER L WITH ACUTE .. LATIN CAPITAL LETTER L WITH ACUTE
Ll, -- (16#0013A#, 16#0013A#) LATIN SMALL LETTER L WITH ACUTE .. LATIN SMALL LETTER L WITH ACUTE
Lu, -- (16#0013B#, 16#0013B#) LATIN CAPITAL LETTER L WITH CEDILLA .. LATIN CAPITAL LETTER L WITH CEDILLA
Ll, -- (16#0013C#, 16#0013C#) LATIN SMALL LETTER L WITH CEDILLA .. LATIN SMALL LETTER L WITH CEDILLA
Lu, -- (16#0013D#, 16#0013D#) LATIN CAPITAL LETTER L WITH CARON .. LATIN CAPITAL LETTER L WITH CARON
Ll, -- (16#0013E#, 16#0013E#) LATIN SMALL LETTER L WITH CARON .. LATIN SMALL LETTER L WITH CARON
Lu, -- (16#0013F#, 16#0013F#) LATIN CAPITAL LETTER L WITH MIDDLE DOT .. LATIN CAPITAL LETTER L WITH MIDDLE DOT
Ll, -- (16#00140#, 16#00140#) LATIN SMALL LETTER L WITH MIDDLE DOT .. LATIN SMALL LETTER L WITH MIDDLE DOT
Lu, -- (16#00141#, 16#00141#) LATIN CAPITAL LETTER L WITH STROKE .. LATIN CAPITAL LETTER L WITH STROKE
Ll, -- (16#00142#, 16#00142#) LATIN SMALL LETTER L WITH STROKE .. LATIN SMALL LETTER L WITH STROKE
Lu, -- (16#00143#, 16#00143#) LATIN CAPITAL LETTER N WITH ACUTE .. LATIN CAPITAL LETTER N WITH ACUTE
Ll, -- (16#00144#, 16#00144#) LATIN SMALL LETTER N WITH ACUTE .. LATIN SMALL LETTER N WITH ACUTE
Lu, -- (16#00145#, 16#00145#) LATIN CAPITAL LETTER N WITH CEDILLA .. LATIN CAPITAL LETTER N WITH CEDILLA
Ll, -- (16#00146#, 16#00146#) LATIN SMALL LETTER N WITH CEDILLA .. LATIN SMALL LETTER N WITH CEDILLA
Lu, -- (16#00147#, 16#00147#) LATIN CAPITAL LETTER N WITH CARON .. LATIN CAPITAL LETTER N WITH CARON
Ll, -- (16#00148#, 16#00149#) LATIN SMALL LETTER N WITH CARON .. LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
Lu, -- (16#0014A#, 16#0014A#) LATIN CAPITAL LETTER ENG .. LATIN CAPITAL LETTER ENG
Ll, -- (16#0014B#, 16#0014B#) LATIN SMALL LETTER ENG .. LATIN SMALL LETTER ENG
Lu, -- (16#0014C#, 16#0014C#) LATIN CAPITAL LETTER O WITH MACRON .. LATIN CAPITAL LETTER O WITH MACRON
Ll, -- (16#0014D#, 16#0014D#) LATIN SMALL LETTER O WITH MACRON .. LATIN SMALL LETTER O WITH MACRON
Lu, -- (16#0014E#, 16#0014E#) LATIN CAPITAL LETTER O WITH BREVE .. LATIN CAPITAL LETTER O WITH BREVE
Ll, -- (16#0014F#, 16#0014F#) LATIN SMALL LETTER O WITH BREVE .. LATIN SMALL LETTER O WITH BREVE
Lu, -- (16#00150#, 16#00150#) LATIN CAPITAL LETTER O WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
Ll, -- (16#00151#, 16#00151#) LATIN SMALL LETTER O WITH DOUBLE ACUTE .. LATIN SMALL LETTER O WITH DOUBLE ACUTE
Lu, -- (16#00152#, 16#00152#) LATIN CAPITAL LIGATURE OE .. LATIN CAPITAL LIGATURE OE
Ll, -- (16#00153#, 16#00153#) LATIN SMALL LIGATURE OE .. LATIN SMALL LIGATURE OE
Lu, -- (16#00154#, 16#00154#) LATIN CAPITAL LETTER R WITH ACUTE .. LATIN CAPITAL LETTER R WITH ACUTE
Ll, -- (16#00155#, 16#00155#) LATIN SMALL LETTER R WITH ACUTE .. LATIN SMALL LETTER R WITH ACUTE
Lu, -- (16#00156#, 16#00156#) LATIN CAPITAL LETTER R WITH CEDILLA .. LATIN CAPITAL LETTER R WITH CEDILLA
Ll, -- (16#00157#, 16#00157#) LATIN SMALL LETTER R WITH CEDILLA .. LATIN SMALL LETTER R WITH CEDILLA
Lu, -- (16#00158#, 16#00158#) LATIN CAPITAL LETTER R WITH CARON .. LATIN CAPITAL LETTER R WITH CARON
Ll, -- (16#00159#, 16#00159#) LATIN SMALL LETTER R WITH CARON .. LATIN SMALL LETTER R WITH CARON
Lu, -- (16#0015A#, 16#0015A#) LATIN CAPITAL LETTER S WITH ACUTE .. LATIN CAPITAL LETTER S WITH ACUTE
Ll, -- (16#0015B#, 16#0015B#) LATIN SMALL LETTER S WITH ACUTE .. LATIN SMALL LETTER S WITH ACUTE
Lu, -- (16#0015C#, 16#0015C#) LATIN CAPITAL LETTER S WITH CIRCUMFLEX .. LATIN CAPITAL LETTER S WITH CIRCUMFLEX
Ll, -- (16#0015D#, 16#0015D#) LATIN SMALL LETTER S WITH CIRCUMFLEX .. LATIN SMALL LETTER S WITH CIRCUMFLEX
Lu, -- (16#0015E#, 16#0015E#) LATIN CAPITAL LETTER S WITH CEDILLA .. LATIN CAPITAL LETTER S WITH CEDILLA
Ll, -- (16#0015F#, 16#0015F#) LATIN SMALL LETTER S WITH CEDILLA .. LATIN SMALL LETTER S WITH CEDILLA
Lu, -- (16#00160#, 16#00160#) LATIN CAPITAL LETTER S WITH CARON .. LATIN CAPITAL LETTER S WITH CARON
Ll, -- (16#00161#, 16#00161#) LATIN SMALL LETTER S WITH CARON .. LATIN SMALL LETTER S WITH CARON
Lu, -- (16#00162#, 16#00162#) LATIN CAPITAL LETTER T WITH CEDILLA .. LATIN CAPITAL LETTER T WITH CEDILLA
Ll, -- (16#00163#, 16#00163#) LATIN SMALL LETTER T WITH CEDILLA .. LATIN SMALL LETTER T WITH CEDILLA
Lu, -- (16#00164#, 16#00164#) LATIN CAPITAL LETTER T WITH CARON .. LATIN CAPITAL LETTER T WITH CARON
Ll, -- (16#00165#, 16#00165#) LATIN SMALL LETTER T WITH CARON .. LATIN SMALL LETTER T WITH CARON
Lu, -- (16#00166#, 16#00166#) LATIN CAPITAL LETTER T WITH STROKE .. LATIN CAPITAL LETTER T WITH STROKE
Ll, -- (16#00167#, 16#00167#) LATIN SMALL LETTER T WITH STROKE .. LATIN SMALL LETTER T WITH STROKE
Lu, -- (16#00168#, 16#00168#) LATIN CAPITAL LETTER U WITH TILDE .. LATIN CAPITAL LETTER U WITH TILDE
Ll, -- (16#00169#, 16#00169#) LATIN SMALL LETTER U WITH TILDE .. LATIN SMALL LETTER U WITH TILDE
Lu, -- (16#0016A#, 16#0016A#) LATIN CAPITAL LETTER U WITH MACRON .. LATIN CAPITAL LETTER U WITH MACRON
Ll, -- (16#0016B#, 16#0016B#) LATIN SMALL LETTER U WITH MACRON .. LATIN SMALL LETTER U WITH MACRON
Lu, -- (16#0016C#, 16#0016C#) LATIN CAPITAL LETTER U WITH BREVE .. LATIN CAPITAL LETTER U WITH BREVE
Ll, -- (16#0016D#, 16#0016D#) LATIN SMALL LETTER U WITH BREVE .. LATIN SMALL LETTER U WITH BREVE
Lu, -- (16#0016E#, 16#0016E#) LATIN CAPITAL LETTER U WITH RING ABOVE .. LATIN CAPITAL LETTER U WITH RING ABOVE
Ll, -- (16#0016F#, 16#0016F#) LATIN SMALL LETTER U WITH RING ABOVE .. LATIN SMALL LETTER U WITH RING ABOVE
Lu, -- (16#00170#, 16#00170#) LATIN CAPITAL LETTER U WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER U WITH DOUBLE ACUTE
Ll, -- (16#00171#, 16#00171#) LATIN SMALL LETTER U WITH DOUBLE ACUTE .. LATIN SMALL LETTER U WITH DOUBLE ACUTE
Lu, -- (16#00172#, 16#00172#) LATIN CAPITAL LETTER U WITH OGONEK .. LATIN CAPITAL LETTER U WITH OGONEK
Ll, -- (16#00173#, 16#00173#) LATIN SMALL LETTER U WITH OGONEK .. LATIN SMALL LETTER U WITH OGONEK
Lu, -- (16#00174#, 16#00174#) LATIN CAPITAL LETTER W WITH CIRCUMFLEX .. LATIN CAPITAL LETTER W WITH CIRCUMFLEX
Ll, -- (16#00175#, 16#00175#) LATIN SMALL LETTER W WITH CIRCUMFLEX .. LATIN SMALL LETTER W WITH CIRCUMFLEX
Lu, -- (16#00176#, 16#00176#) LATIN CAPITAL LETTER Y WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
Ll, -- (16#00177#, 16#00177#) LATIN SMALL LETTER Y WITH CIRCUMFLEX .. LATIN SMALL LETTER Y WITH CIRCUMFLEX
Lu, -- (16#00178#, 16#00179#) LATIN CAPITAL LETTER Y WITH DIAERESIS .. LATIN CAPITAL LETTER Z WITH ACUTE
Ll, -- (16#0017A#, 16#0017A#) LATIN SMALL LETTER Z WITH ACUTE .. LATIN SMALL LETTER Z WITH ACUTE
Lu, -- (16#0017B#, 16#0017B#) LATIN CAPITAL LETTER Z WITH DOT ABOVE .. LATIN CAPITAL LETTER Z WITH DOT ABOVE
Ll, -- (16#0017C#, 16#0017C#) LATIN SMALL LETTER Z WITH DOT ABOVE .. LATIN SMALL LETTER Z WITH DOT ABOVE
Lu, -- (16#0017D#, 16#0017D#) LATIN CAPITAL LETTER Z WITH CARON .. LATIN CAPITAL LETTER Z WITH CARON
Ll, -- (16#0017E#, 16#00180#) LATIN SMALL LETTER Z WITH CARON .. LATIN SMALL LETTER B WITH STROKE
Lu, -- (16#00181#, 16#00182#) LATIN CAPITAL LETTER B WITH HOOK .. LATIN CAPITAL LETTER B WITH TOPBAR
Ll, -- (16#00183#, 16#00183#) LATIN SMALL LETTER B WITH TOPBAR .. LATIN SMALL LETTER B WITH TOPBAR
Lu, -- (16#00184#, 16#00184#) LATIN CAPITAL LETTER TONE SIX .. LATIN CAPITAL LETTER TONE SIX
Ll, -- (16#00185#, 16#00185#) LATIN SMALL LETTER TONE SIX .. LATIN SMALL LETTER TONE SIX
Lu, -- (16#00186#, 16#00187#) LATIN CAPITAL LETTER OPEN O .. LATIN CAPITAL LETTER C WITH HOOK
Ll, -- (16#00188#, 16#00188#) LATIN SMALL LETTER C WITH HOOK .. LATIN SMALL LETTER C WITH HOOK
Lu, -- (16#00189#, 16#0018B#) LATIN CAPITAL LETTER AFRICAN D .. LATIN CAPITAL LETTER D WITH TOPBAR
Ll, -- (16#0018C#, 16#0018D#) LATIN SMALL LETTER D WITH TOPBAR .. LATIN SMALL LETTER TURNED DELTA
Lu, -- (16#0018E#, 16#00191#) LATIN CAPITAL LETTER REVERSED E .. LATIN CAPITAL LETTER F WITH HOOK
Ll, -- (16#00192#, 16#00192#) LATIN SMALL LETTER F WITH HOOK .. LATIN SMALL LETTER F WITH HOOK
Lu, -- (16#00193#, 16#00194#) LATIN CAPITAL LETTER G WITH HOOK .. LATIN CAPITAL LETTER GAMMA
Ll, -- (16#00195#, 16#00195#) LATIN SMALL LETTER HV .. LATIN SMALL LETTER HV
Lu, -- (16#00196#, 16#00198#) LATIN CAPITAL LETTER IOTA .. LATIN CAPITAL LETTER K WITH HOOK
Ll, -- (16#00199#, 16#0019B#) LATIN SMALL LETTER K WITH HOOK .. LATIN SMALL LETTER LAMBDA WITH STROKE
Lu, -- (16#0019C#, 16#0019D#) LATIN CAPITAL LETTER TURNED M .. LATIN CAPITAL LETTER N WITH LEFT HOOK
Ll, -- (16#0019E#, 16#0019E#) LATIN SMALL LETTER N WITH LONG RIGHT LEG .. LATIN SMALL LETTER N WITH LONG RIGHT LEG
Lu, -- (16#0019F#, 16#001A0#) LATIN CAPITAL LETTER O WITH MIDDLE TILDE .. LATIN CAPITAL LETTER O WITH HORN
Ll, -- (16#001A1#, 16#001A1#) LATIN SMALL LETTER O WITH HORN .. LATIN SMALL LETTER O WITH HORN
Lu, -- (16#001A2#, 16#001A2#) LATIN CAPITAL LETTER OI .. LATIN CAPITAL LETTER OI
Ll, -- (16#001A3#, 16#001A3#) LATIN SMALL LETTER OI .. LATIN SMALL LETTER OI
Lu, -- (16#001A4#, 16#001A4#) LATIN CAPITAL LETTER P WITH HOOK .. LATIN CAPITAL LETTER P WITH HOOK
Ll, -- (16#001A5#, 16#001A5#) LATIN SMALL LETTER P WITH HOOK .. LATIN SMALL LETTER P WITH HOOK
Lu, -- (16#001A6#, 16#001A7#) LATIN LETTER YR .. LATIN CAPITAL LETTER TONE TWO
Ll, -- (16#001A8#, 16#001A8#) LATIN SMALL LETTER TONE TWO .. LATIN SMALL LETTER TONE TWO
Lu, -- (16#001A9#, 16#001A9#) LATIN CAPITAL LETTER ESH .. LATIN CAPITAL LETTER ESH
Ll, -- (16#001AA#, 16#001AB#) LATIN LETTER REVERSED ESH LOOP .. LATIN SMALL LETTER T WITH PALATAL HOOK
Lu, -- (16#001AC#, 16#001AC#) LATIN CAPITAL LETTER T WITH HOOK .. LATIN CAPITAL LETTER T WITH HOOK
Ll, -- (16#001AD#, 16#001AD#) LATIN SMALL LETTER T WITH HOOK .. LATIN SMALL LETTER T WITH HOOK
Lu, -- (16#001AE#, 16#001AF#) LATIN CAPITAL LETTER T WITH RETROFLEX HOOK .. LATIN CAPITAL LETTER U WITH HORN
Ll, -- (16#001B0#, 16#001B0#) LATIN SMALL LETTER U WITH HORN .. LATIN SMALL LETTER U WITH HORN
Lu, -- (16#001B1#, 16#001B3#) LATIN CAPITAL LETTER UPSILON .. LATIN CAPITAL LETTER Y WITH HOOK
Ll, -- (16#001B4#, 16#001B4#) LATIN SMALL LETTER Y WITH HOOK .. LATIN SMALL LETTER Y WITH HOOK
Lu, -- (16#001B5#, 16#001B5#) LATIN CAPITAL LETTER Z WITH STROKE .. LATIN CAPITAL LETTER Z WITH STROKE
Ll, -- (16#001B6#, 16#001B6#) LATIN SMALL LETTER Z WITH STROKE .. LATIN SMALL LETTER Z WITH STROKE
Lu, -- (16#001B7#, 16#001B8#) LATIN CAPITAL LETTER EZH .. LATIN CAPITAL LETTER EZH REVERSED
Ll, -- (16#001B9#, 16#001BA#) LATIN SMALL LETTER EZH REVERSED .. LATIN SMALL LETTER EZH WITH TAIL
Lo, -- (16#001BB#, 16#001BB#) LATIN LETTER TWO WITH STROKE .. LATIN LETTER TWO WITH STROKE
Lu, -- (16#001BC#, 16#001BC#) LATIN CAPITAL LETTER TONE FIVE .. LATIN CAPITAL LETTER TONE FIVE
Ll, -- (16#001BD#, 16#001BF#) LATIN SMALL LETTER TONE FIVE .. LATIN LETTER WYNN
Lo, -- (16#001C0#, 16#001C3#) LATIN LETTER DENTAL CLICK .. LATIN LETTER RETROFLEX CLICK
Lu, -- (16#001C4#, 16#001C4#) LATIN CAPITAL LETTER DZ WITH CARON .. LATIN CAPITAL LETTER DZ WITH CARON
Lt, -- (16#001C5#, 16#001C5#) LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON .. LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON
Ll, -- (16#001C6#, 16#001C6#) LATIN SMALL LETTER DZ WITH CARON .. LATIN SMALL LETTER DZ WITH CARON
Lu, -- (16#001C7#, 16#001C7#) LATIN CAPITAL LETTER LJ .. LATIN CAPITAL LETTER LJ
Lt, -- (16#001C8#, 16#001C8#) LATIN CAPITAL LETTER L WITH SMALL LETTER J .. LATIN CAPITAL LETTER L WITH SMALL LETTER J
Ll, -- (16#001C9#, 16#001C9#) LATIN SMALL LETTER LJ .. LATIN SMALL LETTER LJ
Lu, -- (16#001CA#, 16#001CA#) LATIN CAPITAL LETTER NJ .. LATIN CAPITAL LETTER NJ
Lt, -- (16#001CB#, 16#001CB#) LATIN CAPITAL LETTER N WITH SMALL LETTER J .. LATIN CAPITAL LETTER N WITH SMALL LETTER J
Ll, -- (16#001CC#, 16#001CC#) LATIN SMALL LETTER NJ .. LATIN SMALL LETTER NJ
Lu, -- (16#001CD#, 16#001CD#) LATIN CAPITAL LETTER A WITH CARON .. LATIN CAPITAL LETTER A WITH CARON
Ll, -- (16#001CE#, 16#001CE#) LATIN SMALL LETTER A WITH CARON .. LATIN SMALL LETTER A WITH CARON
Lu, -- (16#001CF#, 16#001CF#) LATIN CAPITAL LETTER I WITH CARON .. LATIN CAPITAL LETTER I WITH CARON
Ll, -- (16#001D0#, 16#001D0#) LATIN SMALL LETTER I WITH CARON .. LATIN SMALL LETTER I WITH CARON
Lu, -- (16#001D1#, 16#001D1#) LATIN CAPITAL LETTER O WITH CARON .. LATIN CAPITAL LETTER O WITH CARON
Ll, -- (16#001D2#, 16#001D2#) LATIN SMALL LETTER O WITH CARON .. LATIN SMALL LETTER O WITH CARON
Lu, -- (16#001D3#, 16#001D3#) LATIN CAPITAL LETTER U WITH CARON .. LATIN CAPITAL LETTER U WITH CARON
Ll, -- (16#001D4#, 16#001D4#) LATIN SMALL LETTER U WITH CARON .. LATIN SMALL LETTER U WITH CARON
Lu, -- (16#001D5#, 16#001D5#) LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON
Ll, -- (16#001D6#, 16#001D6#) LATIN SMALL LETTER U WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER U WITH DIAERESIS AND MACRON
Lu, -- (16#001D7#, 16#001D7#) LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE
Ll, -- (16#001D8#, 16#001D8#) LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE
Lu, -- (16#001D9#, 16#001D9#) LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON
Ll, -- (16#001DA#, 16#001DA#) LATIN SMALL LETTER U WITH DIAERESIS AND CARON .. LATIN SMALL LETTER U WITH DIAERESIS AND CARON
Lu, -- (16#001DB#, 16#001DB#) LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE
Ll, -- (16#001DC#, 16#001DD#) LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE .. LATIN SMALL LETTER TURNED E
Lu, -- (16#001DE#, 16#001DE#) LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON
Ll, -- (16#001DF#, 16#001DF#) LATIN SMALL LETTER A WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER A WITH DIAERESIS AND MACRON
Lu, -- (16#001E0#, 16#001E0#) LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON
Ll, -- (16#001E1#, 16#001E1#) LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON
Lu, -- (16#001E2#, 16#001E2#) LATIN CAPITAL LETTER AE WITH MACRON .. LATIN CAPITAL LETTER AE WITH MACRON
Ll, -- (16#001E3#, 16#001E3#) LATIN SMALL LETTER AE WITH MACRON .. LATIN SMALL LETTER AE WITH MACRON
Lu, -- (16#001E4#, 16#001E4#) LATIN CAPITAL LETTER G WITH STROKE .. LATIN CAPITAL LETTER G WITH STROKE
Ll, -- (16#001E5#, 16#001E5#) LATIN SMALL LETTER G WITH STROKE .. LATIN SMALL LETTER G WITH STROKE
Lu, -- (16#001E6#, 16#001E6#) LATIN CAPITAL LETTER G WITH CARON .. LATIN CAPITAL LETTER G WITH CARON
Ll, -- (16#001E7#, 16#001E7#) LATIN SMALL LETTER G WITH CARON .. LATIN SMALL LETTER G WITH CARON
Lu, -- (16#001E8#, 16#001E8#) LATIN CAPITAL LETTER K WITH CARON .. LATIN CAPITAL LETTER K WITH CARON
Ll, -- (16#001E9#, 16#001E9#) LATIN SMALL LETTER K WITH CARON .. LATIN SMALL LETTER K WITH CARON
Lu, -- (16#001EA#, 16#001EA#) LATIN CAPITAL LETTER O WITH OGONEK .. LATIN CAPITAL LETTER O WITH OGONEK
Ll, -- (16#001EB#, 16#001EB#) LATIN SMALL LETTER O WITH OGONEK .. LATIN SMALL LETTER O WITH OGONEK
Lu, -- (16#001EC#, 16#001EC#) LATIN CAPITAL LETTER O WITH OGONEK AND MACRON .. LATIN CAPITAL LETTER O WITH OGONEK AND MACRON
Ll, -- (16#001ED#, 16#001ED#) LATIN SMALL LETTER O WITH OGONEK AND MACRON .. LATIN SMALL LETTER O WITH OGONEK AND MACRON
Lu, -- (16#001EE#, 16#001EE#) LATIN CAPITAL LETTER EZH WITH CARON .. LATIN CAPITAL LETTER EZH WITH CARON
Ll, -- (16#001EF#, 16#001F0#) LATIN SMALL LETTER EZH WITH CARON .. LATIN SMALL LETTER J WITH CARON
Lu, -- (16#001F1#, 16#001F1#) LATIN CAPITAL LETTER DZ .. LATIN CAPITAL LETTER DZ
Lt, -- (16#001F2#, 16#001F2#) LATIN CAPITAL LETTER D WITH SMALL LETTER Z .. LATIN CAPITAL LETTER D WITH SMALL LETTER Z
Ll, -- (16#001F3#, 16#001F3#) LATIN SMALL LETTER DZ .. LATIN SMALL LETTER DZ
Lu, -- (16#001F4#, 16#001F4#) LATIN CAPITAL LETTER G WITH ACUTE .. LATIN CAPITAL LETTER G WITH ACUTE
Ll, -- (16#001F5#, 16#001F5#) LATIN SMALL LETTER G WITH ACUTE .. LATIN SMALL LETTER G WITH ACUTE
Lu, -- (16#001F6#, 16#001F8#) LATIN CAPITAL LETTER HWAIR .. LATIN CAPITAL LETTER N WITH GRAVE
Ll, -- (16#001F9#, 16#001F9#) LATIN SMALL LETTER N WITH GRAVE .. LATIN SMALL LETTER N WITH GRAVE
Lu, -- (16#001FA#, 16#001FA#) LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE .. LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE
Ll, -- (16#001FB#, 16#001FB#) LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE .. LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE
Lu, -- (16#001FC#, 16#001FC#) LATIN CAPITAL LETTER AE WITH ACUTE .. LATIN CAPITAL LETTER AE WITH ACUTE
Ll, -- (16#001FD#, 16#001FD#) LATIN SMALL LETTER AE WITH ACUTE .. LATIN SMALL LETTER AE WITH ACUTE
Lu, -- (16#001FE#, 16#001FE#) LATIN CAPITAL LETTER O WITH STROKE AND ACUTE .. LATIN CAPITAL LETTER O WITH STROKE AND ACUTE
Ll, -- (16#001FF#, 16#001FF#) LATIN SMALL LETTER O WITH STROKE AND ACUTE .. LATIN SMALL LETTER O WITH STROKE AND ACUTE
Lu, -- (16#00200#, 16#00200#) LATIN CAPITAL LETTER A WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER A WITH DOUBLE GRAVE
Ll, -- (16#00201#, 16#00201#) LATIN SMALL LETTER A WITH DOUBLE GRAVE .. LATIN SMALL LETTER A WITH DOUBLE GRAVE
Lu, -- (16#00202#, 16#00202#) LATIN CAPITAL LETTER A WITH INVERTED BREVE .. LATIN CAPITAL LETTER A WITH INVERTED BREVE
Ll, -- (16#00203#, 16#00203#) LATIN SMALL LETTER A WITH INVERTED BREVE .. LATIN SMALL LETTER A WITH INVERTED BREVE
Lu, -- (16#00204#, 16#00204#) LATIN CAPITAL LETTER E WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER E WITH DOUBLE GRAVE
Ll, -- (16#00205#, 16#00205#) LATIN SMALL LETTER E WITH DOUBLE GRAVE .. LATIN SMALL LETTER E WITH DOUBLE GRAVE
Lu, -- (16#00206#, 16#00206#) LATIN CAPITAL LETTER E WITH INVERTED BREVE .. LATIN CAPITAL LETTER E WITH INVERTED BREVE
Ll, -- (16#00207#, 16#00207#) LATIN SMALL LETTER E WITH INVERTED BREVE .. LATIN SMALL LETTER E WITH INVERTED BREVE
Lu, -- (16#00208#, 16#00208#) LATIN CAPITAL LETTER I WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER I WITH DOUBLE GRAVE
Ll, -- (16#00209#, 16#00209#) LATIN SMALL LETTER I WITH DOUBLE GRAVE .. LATIN SMALL LETTER I WITH DOUBLE GRAVE
Lu, -- (16#0020A#, 16#0020A#) LATIN CAPITAL LETTER I WITH INVERTED BREVE .. LATIN CAPITAL LETTER I WITH INVERTED BREVE
Ll, -- (16#0020B#, 16#0020B#) LATIN SMALL LETTER I WITH INVERTED BREVE .. LATIN SMALL LETTER I WITH INVERTED BREVE
Lu, -- (16#0020C#, 16#0020C#) LATIN CAPITAL LETTER O WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER O WITH DOUBLE GRAVE
Ll, -- (16#0020D#, 16#0020D#) LATIN SMALL LETTER O WITH DOUBLE GRAVE .. LATIN SMALL LETTER O WITH DOUBLE GRAVE
Lu, -- (16#0020E#, 16#0020E#) LATIN CAPITAL LETTER O WITH INVERTED BREVE .. LATIN CAPITAL LETTER O WITH INVERTED BREVE
Ll, -- (16#0020F#, 16#0020F#) LATIN SMALL LETTER O WITH INVERTED BREVE .. LATIN SMALL LETTER O WITH INVERTED BREVE
Lu, -- (16#00210#, 16#00210#) LATIN CAPITAL LETTER R WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER R WITH DOUBLE GRAVE
Ll, -- (16#00211#, 16#00211#) LATIN SMALL LETTER R WITH DOUBLE GRAVE .. LATIN SMALL LETTER R WITH DOUBLE GRAVE
Lu, -- (16#00212#, 16#00212#) LATIN CAPITAL LETTER R WITH INVERTED BREVE .. LATIN CAPITAL LETTER R WITH INVERTED BREVE
Ll, -- (16#00213#, 16#00213#) LATIN SMALL LETTER R WITH INVERTED BREVE .. LATIN SMALL LETTER R WITH INVERTED BREVE
Lu, -- (16#00214#, 16#00214#) LATIN CAPITAL LETTER U WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER U WITH DOUBLE GRAVE
Ll, -- (16#00215#, 16#00215#) LATIN SMALL LETTER U WITH DOUBLE GRAVE .. LATIN SMALL LETTER U WITH DOUBLE GRAVE
Lu, -- (16#00216#, 16#00216#) LATIN CAPITAL LETTER U WITH INVERTED BREVE .. LATIN CAPITAL LETTER U WITH INVERTED BREVE
Ll, -- (16#00217#, 16#00217#) LATIN SMALL LETTER U WITH INVERTED BREVE .. LATIN SMALL LETTER U WITH INVERTED BREVE
Lu, -- (16#00218#, 16#00218#) LATIN CAPITAL LETTER S WITH COMMA BELOW .. LATIN CAPITAL LETTER S WITH COMMA BELOW
Ll, -- (16#00219#, 16#00219#) LATIN SMALL LETTER S WITH COMMA BELOW .. LATIN SMALL LETTER S WITH COMMA BELOW
Lu, -- (16#0021A#, 16#0021A#) LATIN CAPITAL LETTER T WITH COMMA BELOW .. LATIN CAPITAL LETTER T WITH COMMA BELOW
Ll, -- (16#0021B#, 16#0021B#) LATIN SMALL LETTER T WITH COMMA BELOW .. LATIN SMALL LETTER T WITH COMMA BELOW
Lu, -- (16#0021C#, 16#0021C#) LATIN CAPITAL LETTER YOGH .. LATIN CAPITAL LETTER YOGH
Ll, -- (16#0021D#, 16#0021D#) LATIN SMALL LETTER YOGH .. LATIN SMALL LETTER YOGH
Lu, -- (16#0021E#, 16#0021E#) LATIN CAPITAL LETTER H WITH CARON .. LATIN CAPITAL LETTER H WITH CARON
Ll, -- (16#0021F#, 16#0021F#) LATIN SMALL LETTER H WITH CARON .. LATIN SMALL LETTER H WITH CARON
Lu, -- (16#00220#, 16#00220#) LATIN CAPITAL LETTER N WITH LONG RIGHT LEG .. LATIN CAPITAL LETTER N WITH LONG RIGHT LEG
Ll, -- (16#00221#, 16#00221#) LATIN SMALL LETTER D WITH CURL .. LATIN SMALL LETTER D WITH CURL
Lu, -- (16#00222#, 16#00222#) LATIN CAPITAL LETTER OU .. LATIN CAPITAL LETTER OU
Ll, -- (16#00223#, 16#00223#) LATIN SMALL LETTER OU .. LATIN SMALL LETTER OU
Lu, -- (16#00224#, 16#00224#) LATIN CAPITAL LETTER Z WITH HOOK .. LATIN CAPITAL LETTER Z WITH HOOK
Ll, -- (16#00225#, 16#00225#) LATIN SMALL LETTER Z WITH HOOK .. LATIN SMALL LETTER Z WITH HOOK
Lu, -- (16#00226#, 16#00226#) LATIN CAPITAL LETTER A WITH DOT ABOVE .. LATIN CAPITAL LETTER A WITH DOT ABOVE
Ll, -- (16#00227#, 16#00227#) LATIN SMALL LETTER A WITH DOT ABOVE .. LATIN SMALL LETTER A WITH DOT ABOVE
Lu, -- (16#00228#, 16#00228#) LATIN CAPITAL LETTER E WITH CEDILLA .. LATIN CAPITAL LETTER E WITH CEDILLA
Ll, -- (16#00229#, 16#00229#) LATIN SMALL LETTER E WITH CEDILLA .. LATIN SMALL LETTER E WITH CEDILLA
Lu, -- (16#0022A#, 16#0022A#) LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON
Ll, -- (16#0022B#, 16#0022B#) LATIN SMALL LETTER O WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER O WITH DIAERESIS AND MACRON
Lu, -- (16#0022C#, 16#0022C#) LATIN CAPITAL LETTER O WITH TILDE AND MACRON .. LATIN CAPITAL LETTER O WITH TILDE AND MACRON
Ll, -- (16#0022D#, 16#0022D#) LATIN SMALL LETTER O WITH TILDE AND MACRON .. LATIN SMALL LETTER O WITH TILDE AND MACRON
Lu, -- (16#0022E#, 16#0022E#) LATIN CAPITAL LETTER O WITH DOT ABOVE .. LATIN CAPITAL LETTER O WITH DOT ABOVE
Ll, -- (16#0022F#, 16#0022F#) LATIN SMALL LETTER O WITH DOT ABOVE .. LATIN SMALL LETTER O WITH DOT ABOVE
Lu, -- (16#00230#, 16#00230#) LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON
Ll, -- (16#00231#, 16#00231#) LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON
Lu, -- (16#00232#, 16#00232#) LATIN CAPITAL LETTER Y WITH MACRON .. LATIN CAPITAL LETTER Y WITH MACRON
Ll, -- (16#00233#, 16#00236#) LATIN SMALL LETTER Y WITH MACRON .. LATIN SMALL LETTER T WITH CURL
Ll, -- (16#00250#, 16#002AF#) LATIN SMALL LETTER TURNED A .. LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL
Lm, -- (16#002B0#, 16#002C1#) MODIFIER LETTER SMALL H .. MODIFIER LETTER REVERSED GLOTTAL STOP
Sk, -- (16#002C2#, 16#002C5#) MODIFIER LETTER LEFT ARROWHEAD .. MODIFIER LETTER DOWN ARROWHEAD
Lm, -- (16#002C6#, 16#002D1#) MODIFIER LETTER CIRCUMFLEX ACCENT .. MODIFIER LETTER HALF TRIANGULAR COLON
Sk, -- (16#002D2#, 16#002DF#) MODIFIER LETTER CENTRED RIGHT HALF RING .. MODIFIER LETTER CROSS ACCENT
Lm, -- (16#002E0#, 16#002E4#) MODIFIER LETTER SMALL GAMMA .. MODIFIER LETTER SMALL REVERSED GLOTTAL STOP
Sk, -- (16#002E5#, 16#002ED#) MODIFIER LETTER EXTRA-HIGH TONE BAR .. MODIFIER LETTER UNASPIRATED
Lm, -- (16#002EE#, 16#002EE#) MODIFIER LETTER DOUBLE APOSTROPHE .. MODIFIER LETTER DOUBLE APOSTROPHE
Sk, -- (16#002EF#, 16#002FF#) MODIFIER LETTER LOW DOWN ARROWHEAD .. MODIFIER LETTER LOW LEFT ARROW
Mn, -- (16#00300#, 16#00357#) COMBINING GRAVE ACCENT .. COMBINING RIGHT HALF RING ABOVE
Mn, -- (16#0035D#, 16#0036F#) COMBINING DOUBLE BREVE .. COMBINING LATIN SMALL LETTER X
Sk, -- (16#00374#, 16#00375#) GREEK NUMERAL SIGN .. GREEK LOWER NUMERAL SIGN
Lm, -- (16#0037A#, 16#0037A#) GREEK YPOGEGRAMMENI .. GREEK YPOGEGRAMMENI
Po, -- (16#0037E#, 16#0037E#) GREEK QUESTION MARK .. GREEK QUESTION MARK
Sk, -- (16#00384#, 16#00385#) GREEK TONOS .. GREEK DIALYTIKA TONOS
Lu, -- (16#00386#, 16#00386#) GREEK CAPITAL LETTER ALPHA WITH TONOS .. GREEK CAPITAL LETTER ALPHA WITH TONOS
Po, -- (16#00387#, 16#00387#) GREEK ANO TELEIA .. GREEK ANO TELEIA
Lu, -- (16#00388#, 16#0038A#) GREEK CAPITAL LETTER EPSILON WITH TONOS .. GREEK CAPITAL LETTER IOTA WITH TONOS
Lu, -- (16#0038C#, 16#0038C#) GREEK CAPITAL LETTER OMICRON WITH TONOS .. GREEK CAPITAL LETTER OMICRON WITH TONOS
Lu, -- (16#0038E#, 16#0038F#) GREEK CAPITAL LETTER UPSILON WITH TONOS .. GREEK CAPITAL LETTER OMEGA WITH TONOS
Ll, -- (16#00390#, 16#00390#) GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS .. GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
Lu, -- (16#00391#, 16#003A1#) GREEK CAPITAL LETTER ALPHA .. GREEK CAPITAL LETTER RHO
Lu, -- (16#003A3#, 16#003AB#) GREEK CAPITAL LETTER SIGMA .. GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
Ll, -- (16#003AC#, 16#003CE#) GREEK SMALL LETTER ALPHA WITH TONOS .. GREEK SMALL LETTER OMEGA WITH TONOS
Ll, -- (16#003D0#, 16#003D1#) GREEK BETA SYMBOL .. GREEK THETA SYMBOL
Lu, -- (16#003D2#, 16#003D4#) GREEK UPSILON WITH HOOK SYMBOL .. GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL
Ll, -- (16#003D5#, 16#003D7#) GREEK PHI SYMBOL .. GREEK KAI SYMBOL
Lu, -- (16#003D8#, 16#003D8#) GREEK LETTER ARCHAIC KOPPA .. GREEK LETTER ARCHAIC KOPPA
Ll, -- (16#003D9#, 16#003D9#) GREEK SMALL LETTER ARCHAIC KOPPA .. GREEK SMALL LETTER ARCHAIC KOPPA
Lu, -- (16#003DA#, 16#003DA#) GREEK LETTER STIGMA .. GREEK LETTER STIGMA
Ll, -- (16#003DB#, 16#003DB#) GREEK SMALL LETTER STIGMA .. GREEK SMALL LETTER STIGMA
Lu, -- (16#003DC#, 16#003DC#) GREEK LETTER DIGAMMA .. GREEK LETTER DIGAMMA
Ll, -- (16#003DD#, 16#003DD#) GREEK SMALL LETTER DIGAMMA .. GREEK SMALL LETTER DIGAMMA
Lu, -- (16#003DE#, 16#003DE#) GREEK LETTER KOPPA .. GREEK LETTER KOPPA
Ll, -- (16#003DF#, 16#003DF#) GREEK SMALL LETTER KOPPA .. GREEK SMALL LETTER KOPPA
Lu, -- (16#003E0#, 16#003E0#) GREEK LETTER SAMPI .. GREEK LETTER SAMPI
Ll, -- (16#003E1#, 16#003E1#) GREEK SMALL LETTER SAMPI .. GREEK SMALL LETTER SAMPI
Lu, -- (16#003E2#, 16#003E2#) COPTIC CAPITAL LETTER SHEI .. COPTIC CAPITAL LETTER SHEI
Ll, -- (16#003E3#, 16#003E3#) COPTIC SMALL LETTER SHEI .. COPTIC SMALL LETTER SHEI
Lu, -- (16#003E4#, 16#003E4#) COPTIC CAPITAL LETTER FEI .. COPTIC CAPITAL LETTER FEI
Ll, -- (16#003E5#, 16#003E5#) COPTIC SMALL LETTER FEI .. COPTIC SMALL LETTER FEI
Lu, -- (16#003E6#, 16#003E6#) COPTIC CAPITAL LETTER KHEI .. COPTIC CAPITAL LETTER KHEI
Ll, -- (16#003E7#, 16#003E7#) COPTIC SMALL LETTER KHEI .. COPTIC SMALL LETTER KHEI
Lu, -- (16#003E8#, 16#003E8#) COPTIC CAPITAL LETTER HORI .. COPTIC CAPITAL LETTER HORI
Ll, -- (16#003E9#, 16#003E9#) COPTIC SMALL LETTER HORI .. COPTIC SMALL LETTER HORI
Lu, -- (16#003EA#, 16#003EA#) COPTIC CAPITAL LETTER GANGIA .. COPTIC CAPITAL LETTER GANGIA
Ll, -- (16#003EB#, 16#003EB#) COPTIC SMALL LETTER GANGIA .. COPTIC SMALL LETTER GANGIA
Lu, -- (16#003EC#, 16#003EC#) COPTIC CAPITAL LETTER SHIMA .. COPTIC CAPITAL LETTER SHIMA
Ll, -- (16#003ED#, 16#003ED#) COPTIC SMALL LETTER SHIMA .. COPTIC SMALL LETTER SHIMA
Lu, -- (16#003EE#, 16#003EE#) COPTIC CAPITAL LETTER DEI .. COPTIC CAPITAL LETTER DEI
Ll, -- (16#003EF#, 16#003F3#) COPTIC SMALL LETTER DEI .. GREEK LETTER YOT
Lu, -- (16#003F4#, 16#003F4#) GREEK CAPITAL THETA SYMBOL .. GREEK CAPITAL THETA SYMBOL
Ll, -- (16#003F5#, 16#003F5#) GREEK LUNATE EPSILON SYMBOL .. GREEK LUNATE EPSILON SYMBOL
Sm, -- (16#003F6#, 16#003F6#) GREEK REVERSED LUNATE EPSILON SYMBOL .. GREEK REVERSED LUNATE EPSILON SYMBOL
Lu, -- (16#003F7#, 16#003F7#) GREEK CAPITAL LETTER SHO .. GREEK CAPITAL LETTER SHO
Ll, -- (16#003F8#, 16#003F8#) GREEK SMALL LETTER SHO .. GREEK SMALL LETTER SHO
Lu, -- (16#003F9#, 16#003FA#) GREEK CAPITAL LUNATE SIGMA SYMBOL .. GREEK CAPITAL LETTER SAN
Ll, -- (16#003FB#, 16#003FB#) GREEK SMALL LETTER SAN .. GREEK SMALL LETTER SAN
Lu, -- (16#00400#, 16#0042F#) CYRILLIC CAPITAL LETTER IE WITH GRAVE .. CYRILLIC CAPITAL LETTER YA
Ll, -- (16#00430#, 16#0045F#) CYRILLIC SMALL LETTER A .. CYRILLIC SMALL LETTER DZHE
Lu, -- (16#00460#, 16#00460#) CYRILLIC CAPITAL LETTER OMEGA .. CYRILLIC CAPITAL LETTER OMEGA
Ll, -- (16#00461#, 16#00461#) CYRILLIC SMALL LETTER OMEGA .. CYRILLIC SMALL LETTER OMEGA
Lu, -- (16#00462#, 16#00462#) CYRILLIC CAPITAL LETTER YAT .. CYRILLIC CAPITAL LETTER YAT
Ll, -- (16#00463#, 16#00463#) CYRILLIC SMALL LETTER YAT .. CYRILLIC SMALL LETTER YAT
Lu, -- (16#00464#, 16#00464#) CYRILLIC CAPITAL LETTER IOTIFIED E .. CYRILLIC CAPITAL LETTER IOTIFIED E
Ll, -- (16#00465#, 16#00465#) CYRILLIC SMALL LETTER IOTIFIED E .. CYRILLIC SMALL LETTER IOTIFIED E
Lu, -- (16#00466#, 16#00466#) CYRILLIC CAPITAL LETTER LITTLE YUS .. CYRILLIC CAPITAL LETTER LITTLE YUS
Ll, -- (16#00467#, 16#00467#) CYRILLIC SMALL LETTER LITTLE YUS .. CYRILLIC SMALL LETTER LITTLE YUS
Lu, -- (16#00468#, 16#00468#) CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS .. CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS
Ll, -- (16#00469#, 16#00469#) CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS .. CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS
Lu, -- (16#0046A#, 16#0046A#) CYRILLIC CAPITAL LETTER BIG YUS .. CYRILLIC CAPITAL LETTER BIG YUS
Ll, -- (16#0046B#, 16#0046B#) CYRILLIC SMALL LETTER BIG YUS .. CYRILLIC SMALL LETTER BIG YUS
Lu, -- (16#0046C#, 16#0046C#) CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS .. CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS
Ll, -- (16#0046D#, 16#0046D#) CYRILLIC SMALL LETTER IOTIFIED BIG YUS .. CYRILLIC SMALL LETTER IOTIFIED BIG YUS
Lu, -- (16#0046E#, 16#0046E#) CYRILLIC CAPITAL LETTER KSI .. CYRILLIC CAPITAL LETTER KSI
Ll, -- (16#0046F#, 16#0046F#) CYRILLIC SMALL LETTER KSI .. CYRILLIC SMALL LETTER KSI
Lu, -- (16#00470#, 16#00470#) CYRILLIC CAPITAL LETTER PSI .. CYRILLIC CAPITAL LETTER PSI
Ll, -- (16#00471#, 16#00471#) CYRILLIC SMALL LETTER PSI .. CYRILLIC SMALL LETTER PSI
Lu, -- (16#00472#, 16#00472#) CYRILLIC CAPITAL LETTER FITA .. CYRILLIC CAPITAL LETTER FITA
Ll, -- (16#00473#, 16#00473#) CYRILLIC SMALL LETTER FITA .. CYRILLIC SMALL LETTER FITA
Lu, -- (16#00474#, 16#00474#) CYRILLIC CAPITAL LETTER IZHITSA .. CYRILLIC CAPITAL LETTER IZHITSA
Ll, -- (16#00475#, 16#00475#) CYRILLIC SMALL LETTER IZHITSA .. CYRILLIC SMALL LETTER IZHITSA
Lu, -- (16#00476#, 16#00476#) CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
Ll, -- (16#00477#, 16#00477#) CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
Lu, -- (16#00478#, 16#00478#) CYRILLIC CAPITAL LETTER UK .. CYRILLIC CAPITAL LETTER UK
Ll, -- (16#00479#, 16#00479#) CYRILLIC SMALL LETTER UK .. CYRILLIC SMALL LETTER UK
Lu, -- (16#0047A#, 16#0047A#) CYRILLIC CAPITAL LETTER ROUND OMEGA .. CYRILLIC CAPITAL LETTER ROUND OMEGA
Ll, -- (16#0047B#, 16#0047B#) CYRILLIC SMALL LETTER ROUND OMEGA .. CYRILLIC SMALL LETTER ROUND OMEGA
Lu, -- (16#0047C#, 16#0047C#) CYRILLIC CAPITAL LETTER OMEGA WITH TITLO .. CYRILLIC CAPITAL LETTER OMEGA WITH TITLO
Ll, -- (16#0047D#, 16#0047D#) CYRILLIC SMALL LETTER OMEGA WITH TITLO .. CYRILLIC SMALL LETTER OMEGA WITH TITLO
Lu, -- (16#0047E#, 16#0047E#) CYRILLIC CAPITAL LETTER OT .. CYRILLIC CAPITAL LETTER OT
Ll, -- (16#0047F#, 16#0047F#) CYRILLIC SMALL LETTER OT .. CYRILLIC SMALL LETTER OT
Lu, -- (16#00480#, 16#00480#) CYRILLIC CAPITAL LETTER KOPPA .. CYRILLIC CAPITAL LETTER KOPPA
Ll, -- (16#00481#, 16#00481#) CYRILLIC SMALL LETTER KOPPA .. CYRILLIC SMALL LETTER KOPPA
So, -- (16#00482#, 16#00482#) CYRILLIC THOUSANDS SIGN .. CYRILLIC THOUSANDS SIGN
Mn, -- (16#00483#, 16#00486#) COMBINING CYRILLIC TITLO .. COMBINING CYRILLIC PSILI PNEUMATA
Me, -- (16#00488#, 16#00489#) COMBINING CYRILLIC HUNDRED THOUSANDS SIGN .. COMBINING CYRILLIC MILLIONS SIGN
Lu, -- (16#0048A#, 16#0048A#) CYRILLIC CAPITAL LETTER SHORT I WITH TAIL .. CYRILLIC CAPITAL LETTER SHORT I WITH TAIL
Ll, -- (16#0048B#, 16#0048B#) CYRILLIC SMALL LETTER SHORT I WITH TAIL .. CYRILLIC SMALL LETTER SHORT I WITH TAIL
Lu, -- (16#0048C#, 16#0048C#) CYRILLIC CAPITAL LETTER SEMISOFT SIGN .. CYRILLIC CAPITAL LETTER SEMISOFT SIGN
Ll, -- (16#0048D#, 16#0048D#) CYRILLIC SMALL LETTER SEMISOFT SIGN .. CYRILLIC SMALL LETTER SEMISOFT SIGN
Lu, -- (16#0048E#, 16#0048E#) CYRILLIC CAPITAL LETTER ER WITH TICK .. CYRILLIC CAPITAL LETTER ER WITH TICK
Ll, -- (16#0048F#, 16#0048F#) CYRILLIC SMALL LETTER ER WITH TICK .. CYRILLIC SMALL LETTER ER WITH TICK
Lu, -- (16#00490#, 16#00490#) CYRILLIC CAPITAL LETTER GHE WITH UPTURN .. CYRILLIC CAPITAL LETTER GHE WITH UPTURN
Ll, -- (16#00491#, 16#00491#) CYRILLIC SMALL LETTER GHE WITH UPTURN .. CYRILLIC SMALL LETTER GHE WITH UPTURN
Lu, -- (16#00492#, 16#00492#) CYRILLIC CAPITAL LETTER GHE WITH STROKE .. CYRILLIC CAPITAL LETTER GHE WITH STROKE
Ll, -- (16#00493#, 16#00493#) CYRILLIC SMALL LETTER GHE WITH STROKE .. CYRILLIC SMALL LETTER GHE WITH STROKE
Lu, -- (16#00494#, 16#00494#) CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK
Ll, -- (16#00495#, 16#00495#) CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK
Lu, -- (16#00496#, 16#00496#) CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER
Ll, -- (16#00497#, 16#00497#) CYRILLIC SMALL LETTER ZHE WITH DESCENDER .. CYRILLIC SMALL LETTER ZHE WITH DESCENDER
Lu, -- (16#00498#, 16#00498#) CYRILLIC CAPITAL LETTER ZE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZE WITH DESCENDER
Ll, -- (16#00499#, 16#00499#) CYRILLIC SMALL LETTER ZE WITH DESCENDER .. CYRILLIC SMALL LETTER ZE WITH DESCENDER
Lu, -- (16#0049A#, 16#0049A#) CYRILLIC CAPITAL LETTER KA WITH DESCENDER .. CYRILLIC CAPITAL LETTER KA WITH DESCENDER
Ll, -- (16#0049B#, 16#0049B#) CYRILLIC SMALL LETTER KA WITH DESCENDER .. CYRILLIC SMALL LETTER KA WITH DESCENDER
Lu, -- (16#0049C#, 16#0049C#) CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE
Ll, -- (16#0049D#, 16#0049D#) CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE
Lu, -- (16#0049E#, 16#0049E#) CYRILLIC CAPITAL LETTER KA WITH STROKE .. CYRILLIC CAPITAL LETTER KA WITH STROKE
Ll, -- (16#0049F#, 16#0049F#) CYRILLIC SMALL LETTER KA WITH STROKE .. CYRILLIC SMALL LETTER KA WITH STROKE
Lu, -- (16#004A0#, 16#004A0#) CYRILLIC CAPITAL LETTER BASHKIR KA .. CYRILLIC CAPITAL LETTER BASHKIR KA
Ll, -- (16#004A1#, 16#004A1#) CYRILLIC SMALL LETTER BASHKIR KA .. CYRILLIC SMALL LETTER BASHKIR KA
Lu, -- (16#004A2#, 16#004A2#) CYRILLIC CAPITAL LETTER EN WITH DESCENDER .. CYRILLIC CAPITAL LETTER EN WITH DESCENDER
Ll, -- (16#004A3#, 16#004A3#) CYRILLIC SMALL LETTER EN WITH DESCENDER .. CYRILLIC SMALL LETTER EN WITH DESCENDER
Lu, -- (16#004A4#, 16#004A4#) CYRILLIC CAPITAL LIGATURE EN GHE .. CYRILLIC CAPITAL LIGATURE EN GHE
Ll, -- (16#004A5#, 16#004A5#) CYRILLIC SMALL LIGATURE EN GHE .. CYRILLIC SMALL LIGATURE EN GHE
Lu, -- (16#004A6#, 16#004A6#) CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK
Ll, -- (16#004A7#, 16#004A7#) CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK
Lu, -- (16#004A8#, 16#004A8#) CYRILLIC CAPITAL LETTER ABKHASIAN HA .. CYRILLIC CAPITAL LETTER ABKHASIAN HA
Ll, -- (16#004A9#, 16#004A9#) CYRILLIC SMALL LETTER ABKHASIAN HA .. CYRILLIC SMALL LETTER ABKHASIAN HA
Lu, -- (16#004AA#, 16#004AA#) CYRILLIC CAPITAL LETTER ES WITH DESCENDER .. CYRILLIC CAPITAL LETTER ES WITH DESCENDER
Ll, -- (16#004AB#, 16#004AB#) CYRILLIC SMALL LETTER ES WITH DESCENDER .. CYRILLIC SMALL LETTER ES WITH DESCENDER
Lu, -- (16#004AC#, 16#004AC#) CYRILLIC CAPITAL LETTER TE WITH DESCENDER .. CYRILLIC CAPITAL LETTER TE WITH DESCENDER
Ll, -- (16#004AD#, 16#004AD#) CYRILLIC SMALL LETTER TE WITH DESCENDER .. CYRILLIC SMALL LETTER TE WITH DESCENDER
Lu, -- (16#004AE#, 16#004AE#) CYRILLIC CAPITAL LETTER STRAIGHT U .. CYRILLIC CAPITAL LETTER STRAIGHT U
Ll, -- (16#004AF#, 16#004AF#) CYRILLIC SMALL LETTER STRAIGHT U .. CYRILLIC SMALL LETTER STRAIGHT U
Lu, -- (16#004B0#, 16#004B0#) CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE .. CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE
Ll, -- (16#004B1#, 16#004B1#) CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE .. CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE
Lu, -- (16#004B2#, 16#004B2#) CYRILLIC CAPITAL LETTER HA WITH DESCENDER .. CYRILLIC CAPITAL LETTER HA WITH DESCENDER
Ll, -- (16#004B3#, 16#004B3#) CYRILLIC SMALL LETTER HA WITH DESCENDER .. CYRILLIC SMALL LETTER HA WITH DESCENDER
Lu, -- (16#004B4#, 16#004B4#) CYRILLIC CAPITAL LIGATURE TE TSE .. CYRILLIC CAPITAL LIGATURE TE TSE
Ll, -- (16#004B5#, 16#004B5#) CYRILLIC SMALL LIGATURE TE TSE .. CYRILLIC SMALL LIGATURE TE TSE
Lu, -- (16#004B6#, 16#004B6#) CYRILLIC CAPITAL LETTER CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER CHE WITH DESCENDER
Ll, -- (16#004B7#, 16#004B7#) CYRILLIC SMALL LETTER CHE WITH DESCENDER .. CYRILLIC SMALL LETTER CHE WITH DESCENDER
Lu, -- (16#004B8#, 16#004B8#) CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE
Ll, -- (16#004B9#, 16#004B9#) CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE
Lu, -- (16#004BA#, 16#004BA#) CYRILLIC CAPITAL LETTER SHHA .. CYRILLIC CAPITAL LETTER SHHA
Ll, -- (16#004BB#, 16#004BB#) CYRILLIC SMALL LETTER SHHA .. CYRILLIC SMALL LETTER SHHA
Lu, -- (16#004BC#, 16#004BC#) CYRILLIC CAPITAL LETTER ABKHASIAN CHE .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE
Ll, -- (16#004BD#, 16#004BD#) CYRILLIC SMALL LETTER ABKHASIAN CHE .. CYRILLIC SMALL LETTER ABKHASIAN CHE
Lu, -- (16#004BE#, 16#004BE#) CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER
Ll, -- (16#004BF#, 16#004BF#) CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER
Lu, -- (16#004C0#, 16#004C1#) CYRILLIC LETTER PALOCHKA .. CYRILLIC CAPITAL LETTER ZHE WITH BREVE
Ll, -- (16#004C2#, 16#004C2#) CYRILLIC SMALL LETTER ZHE WITH BREVE .. CYRILLIC SMALL LETTER ZHE WITH BREVE
Lu, -- (16#004C3#, 16#004C3#) CYRILLIC CAPITAL LETTER KA WITH HOOK .. CYRILLIC CAPITAL LETTER KA WITH HOOK
Ll, -- (16#004C4#, 16#004C4#) CYRILLIC SMALL LETTER KA WITH HOOK .. CYRILLIC SMALL LETTER KA WITH HOOK
Lu, -- (16#004C5#, 16#004C5#) CYRILLIC CAPITAL LETTER EL WITH TAIL .. CYRILLIC CAPITAL LETTER EL WITH TAIL
Ll, -- (16#004C6#, 16#004C6#) CYRILLIC SMALL LETTER EL WITH TAIL .. CYRILLIC SMALL LETTER EL WITH TAIL
Lu, -- (16#004C7#, 16#004C7#) CYRILLIC CAPITAL LETTER EN WITH HOOK .. CYRILLIC CAPITAL LETTER EN WITH HOOK
Ll, -- (16#004C8#, 16#004C8#) CYRILLIC SMALL LETTER EN WITH HOOK .. CYRILLIC SMALL LETTER EN WITH HOOK
Lu, -- (16#004C9#, 16#004C9#) CYRILLIC CAPITAL LETTER EN WITH TAIL .. CYRILLIC CAPITAL LETTER EN WITH TAIL
Ll, -- (16#004CA#, 16#004CA#) CYRILLIC SMALL LETTER EN WITH TAIL .. CYRILLIC SMALL LETTER EN WITH TAIL
Lu, -- (16#004CB#, 16#004CB#) CYRILLIC CAPITAL LETTER KHAKASSIAN CHE .. CYRILLIC CAPITAL LETTER KHAKASSIAN CHE
Ll, -- (16#004CC#, 16#004CC#) CYRILLIC SMALL LETTER KHAKASSIAN CHE .. CYRILLIC SMALL LETTER KHAKASSIAN CHE
Lu, -- (16#004CD#, 16#004CD#) CYRILLIC CAPITAL LETTER EM WITH TAIL .. CYRILLIC CAPITAL LETTER EM WITH TAIL
Ll, -- (16#004CE#, 16#004CE#) CYRILLIC SMALL LETTER EM WITH TAIL .. CYRILLIC SMALL LETTER EM WITH TAIL
Lu, -- (16#004D0#, 16#004D0#) CYRILLIC CAPITAL LETTER A WITH BREVE .. CYRILLIC CAPITAL LETTER A WITH BREVE
Ll, -- (16#004D1#, 16#004D1#) CYRILLIC SMALL LETTER A WITH BREVE .. CYRILLIC SMALL LETTER A WITH BREVE
Lu, -- (16#004D2#, 16#004D2#) CYRILLIC CAPITAL LETTER A WITH DIAERESIS .. CYRILLIC CAPITAL LETTER A WITH DIAERESIS
Ll, -- (16#004D3#, 16#004D3#) CYRILLIC SMALL LETTER A WITH DIAERESIS .. CYRILLIC SMALL LETTER A WITH DIAERESIS
Lu, -- (16#004D4#, 16#004D4#) CYRILLIC CAPITAL LIGATURE A IE .. CYRILLIC CAPITAL LIGATURE A IE
Ll, -- (16#004D5#, 16#004D5#) CYRILLIC SMALL LIGATURE A IE .. CYRILLIC SMALL LIGATURE A IE
Lu, -- (16#004D6#, 16#004D6#) CYRILLIC CAPITAL LETTER IE WITH BREVE .. CYRILLIC CAPITAL LETTER IE WITH BREVE
Ll, -- (16#004D7#, 16#004D7#) CYRILLIC SMALL LETTER IE WITH BREVE .. CYRILLIC SMALL LETTER IE WITH BREVE
Lu, -- (16#004D8#, 16#004D8#) CYRILLIC CAPITAL LETTER SCHWA .. CYRILLIC CAPITAL LETTER SCHWA
Ll, -- (16#004D9#, 16#004D9#) CYRILLIC SMALL LETTER SCHWA .. CYRILLIC SMALL LETTER SCHWA
Lu, -- (16#004DA#, 16#004DA#) CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS .. CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS
Ll, -- (16#004DB#, 16#004DB#) CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS .. CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS
Lu, -- (16#004DC#, 16#004DC#) CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS
Ll, -- (16#004DD#, 16#004DD#) CYRILLIC SMALL LETTER ZHE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZHE WITH DIAERESIS
Lu, -- (16#004DE#, 16#004DE#) CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS
Ll, -- (16#004DF#, 16#004DF#) CYRILLIC SMALL LETTER ZE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZE WITH DIAERESIS
Lu, -- (16#004E0#, 16#004E0#) CYRILLIC CAPITAL LETTER ABKHASIAN DZE .. CYRILLIC CAPITAL LETTER ABKHASIAN DZE
Ll, -- (16#004E1#, 16#004E1#) CYRILLIC SMALL LETTER ABKHASIAN DZE .. CYRILLIC SMALL LETTER ABKHASIAN DZE
Lu, -- (16#004E2#, 16#004E2#) CYRILLIC CAPITAL LETTER I WITH MACRON .. CYRILLIC CAPITAL LETTER I WITH MACRON
Ll, -- (16#004E3#, 16#004E3#) CYRILLIC SMALL LETTER I WITH MACRON .. CYRILLIC SMALL LETTER I WITH MACRON
Lu, -- (16#004E4#, 16#004E4#) CYRILLIC CAPITAL LETTER I WITH DIAERESIS .. CYRILLIC CAPITAL LETTER I WITH DIAERESIS
Ll, -- (16#004E5#, 16#004E5#) CYRILLIC SMALL LETTER I WITH DIAERESIS .. CYRILLIC SMALL LETTER I WITH DIAERESIS
Lu, -- (16#004E6#, 16#004E6#) CYRILLIC CAPITAL LETTER O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER O WITH DIAERESIS
Ll, -- (16#004E7#, 16#004E7#) CYRILLIC SMALL LETTER O WITH DIAERESIS .. CYRILLIC SMALL LETTER O WITH DIAERESIS
Lu, -- (16#004E8#, 16#004E8#) CYRILLIC CAPITAL LETTER BARRED O .. CYRILLIC CAPITAL LETTER BARRED O
Ll, -- (16#004E9#, 16#004E9#) CYRILLIC SMALL LETTER BARRED O .. CYRILLIC SMALL LETTER BARRED O
Lu, -- (16#004EA#, 16#004EA#) CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS
Ll, -- (16#004EB#, 16#004EB#) CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS .. CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS
Lu, -- (16#004EC#, 16#004EC#) CYRILLIC CAPITAL LETTER E WITH DIAERESIS .. CYRILLIC CAPITAL LETTER E WITH DIAERESIS
Ll, -- (16#004ED#, 16#004ED#) CYRILLIC SMALL LETTER E WITH DIAERESIS .. CYRILLIC SMALL LETTER E WITH DIAERESIS
Lu, -- (16#004EE#, 16#004EE#) CYRILLIC CAPITAL LETTER U WITH MACRON .. CYRILLIC CAPITAL LETTER U WITH MACRON
Ll, -- (16#004EF#, 16#004EF#) CYRILLIC SMALL LETTER U WITH MACRON .. CYRILLIC SMALL LETTER U WITH MACRON
Lu, -- (16#004F0#, 16#004F0#) CYRILLIC CAPITAL LETTER U WITH DIAERESIS .. CYRILLIC CAPITAL LETTER U WITH DIAERESIS
Ll, -- (16#004F1#, 16#004F1#) CYRILLIC SMALL LETTER U WITH DIAERESIS .. CYRILLIC SMALL LETTER U WITH DIAERESIS
Lu, -- (16#004F2#, 16#004F2#) CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE .. CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE
Ll, -- (16#004F3#, 16#004F3#) CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE .. CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE
Lu, -- (16#004F4#, 16#004F4#) CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS
Ll, -- (16#004F5#, 16#004F5#) CYRILLIC SMALL LETTER CHE WITH DIAERESIS .. CYRILLIC SMALL LETTER CHE WITH DIAERESIS
Lu, -- (16#004F8#, 16#004F8#) CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS .. CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS
Ll, -- (16#004F9#, 16#004F9#) CYRILLIC SMALL LETTER YERU WITH DIAERESIS .. CYRILLIC SMALL LETTER YERU WITH DIAERESIS
Lu, -- (16#00500#, 16#00500#) CYRILLIC CAPITAL LETTER KOMI DE .. CYRILLIC CAPITAL LETTER KOMI DE
Ll, -- (16#00501#, 16#00501#) CYRILLIC SMALL LETTER KOMI DE .. CYRILLIC SMALL LETTER KOMI DE
Lu, -- (16#00502#, 16#00502#) CYRILLIC CAPITAL LETTER KOMI DJE .. CYRILLIC CAPITAL LETTER KOMI DJE
Ll, -- (16#00503#, 16#00503#) CYRILLIC SMALL LETTER KOMI DJE .. CYRILLIC SMALL LETTER KOMI DJE
Lu, -- (16#00504#, 16#00504#) CYRILLIC CAPITAL LETTER KOMI ZJE .. CYRILLIC CAPITAL LETTER KOMI ZJE
Ll, -- (16#00505#, 16#00505#) CYRILLIC SMALL LETTER KOMI ZJE .. CYRILLIC SMALL LETTER KOMI ZJE
Lu, -- (16#00506#, 16#00506#) CYRILLIC CAPITAL LETTER KOMI DZJE .. CYRILLIC CAPITAL LETTER KOMI DZJE
Ll, -- (16#00507#, 16#00507#) CYRILLIC SMALL LETTER KOMI DZJE .. CYRILLIC SMALL LETTER KOMI DZJE
Lu, -- (16#00508#, 16#00508#) CYRILLIC CAPITAL LETTER KOMI LJE .. CYRILLIC CAPITAL LETTER KOMI LJE
Ll, -- (16#00509#, 16#00509#) CYRILLIC SMALL LETTER KOMI LJE .. CYRILLIC SMALL LETTER KOMI LJE
Lu, -- (16#0050A#, 16#0050A#) CYRILLIC CAPITAL LETTER KOMI NJE .. CYRILLIC CAPITAL LETTER KOMI NJE
Ll, -- (16#0050B#, 16#0050B#) CYRILLIC SMALL LETTER KOMI NJE .. CYRILLIC SMALL LETTER KOMI NJE
Lu, -- (16#0050C#, 16#0050C#) CYRILLIC CAPITAL LETTER KOMI SJE .. CYRILLIC CAPITAL LETTER KOMI SJE
Ll, -- (16#0050D#, 16#0050D#) CYRILLIC SMALL LETTER KOMI SJE .. CYRILLIC SMALL LETTER KOMI SJE
Lu, -- (16#0050E#, 16#0050E#) CYRILLIC CAPITAL LETTER KOMI TJE .. CYRILLIC CAPITAL LETTER KOMI TJE
Ll, -- (16#0050F#, 16#0050F#) CYRILLIC SMALL LETTER KOMI TJE .. CYRILLIC SMALL LETTER KOMI TJE
Lu, -- (16#00531#, 16#00556#) ARMENIAN CAPITAL LETTER AYB .. ARMENIAN CAPITAL LETTER FEH
Lm, -- (16#00559#, 16#00559#) ARMENIAN MODIFIER LETTER LEFT HALF RING .. ARMENIAN MODIFIER LETTER LEFT HALF RING
Po, -- (16#0055A#, 16#0055F#) ARMENIAN APOSTROPHE .. ARMENIAN ABBREVIATION MARK
Ll, -- (16#00561#, 16#00587#) ARMENIAN SMALL LETTER AYB .. ARMENIAN SMALL LIGATURE ECH YIWN
Po, -- (16#00589#, 16#00589#) ARMENIAN FULL STOP .. ARMENIAN FULL STOP
Pd, -- (16#0058A#, 16#0058A#) ARMENIAN HYPHEN .. ARMENIAN HYPHEN
Mn, -- (16#00591#, 16#005A1#) HEBREW ACCENT ETNAHTA .. HEBREW ACCENT PAZER
Mn, -- (16#005A3#, 16#005B9#) HEBREW ACCENT MUNAH .. HEBREW POINT HOLAM
Mn, -- (16#005BB#, 16#005BD#) HEBREW POINT QUBUTS .. HEBREW POINT METEG
Po, -- (16#005BE#, 16#005BE#) HEBREW PUNCTUATION MAQAF .. HEBREW PUNCTUATION MAQAF
Mn, -- (16#005BF#, 16#005BF#) HEBREW POINT RAFE .. HEBREW POINT RAFE
Po, -- (16#005C0#, 16#005C0#) HEBREW PUNCTUATION PASEQ .. HEBREW PUNCTUATION PASEQ
Mn, -- (16#005C1#, 16#005C2#) HEBREW POINT SHIN DOT .. HEBREW POINT SIN DOT
Po, -- (16#005C3#, 16#005C3#) HEBREW PUNCTUATION SOF PASUQ .. HEBREW PUNCTUATION SOF PASUQ
Mn, -- (16#005C4#, 16#005C4#) HEBREW MARK UPPER DOT .. HEBREW MARK UPPER DOT
Lo, -- (16#005D0#, 16#005EA#) HEBREW LETTER ALEF .. HEBREW LETTER TAV
Lo, -- (16#005F0#, 16#005F2#) HEBREW LIGATURE YIDDISH DOUBLE VAV .. HEBREW LIGATURE YIDDISH DOUBLE YOD
Po, -- (16#005F3#, 16#005F4#) HEBREW PUNCTUATION GERESH .. HEBREW PUNCTUATION GERSHAYIM
Cf, -- (16#00600#, 16#00603#) ARABIC NUMBER SIGN .. ARABIC SIGN SAFHA
Po, -- (16#0060C#, 16#0060D#) ARABIC COMMA .. ARABIC DATE SEPARATOR
So, -- (16#0060E#, 16#0060F#) ARABIC POETIC VERSE SIGN .. ARABIC SIGN MISRA
Mn, -- (16#00610#, 16#00615#) ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM .. ARABIC SMALL HIGH TAH
Po, -- (16#0061B#, 16#0061B#) ARABIC SEMICOLON .. ARABIC SEMICOLON
Po, -- (16#0061F#, 16#0061F#) ARABIC QUESTION MARK .. ARABIC QUESTION MARK
Lo, -- (16#00621#, 16#0063A#) ARABIC LETTER HAMZA .. ARABIC LETTER GHAIN
Lm, -- (16#00640#, 16#00640#) ARABIC TATWEEL .. ARABIC TATWEEL
Lo, -- (16#00641#, 16#0064A#) ARABIC LETTER FEH .. ARABIC LETTER YEH
Mn, -- (16#0064B#, 16#00658#) ARABIC FATHATAN .. ARABIC MARK NOON GHUNNA
Nd, -- (16#00660#, 16#00669#) ARABIC-INDIC DIGIT ZERO .. ARABIC-INDIC DIGIT NINE
Po, -- (16#0066A#, 16#0066D#) ARABIC PERCENT SIGN .. ARABIC FIVE POINTED STAR
Lo, -- (16#0066E#, 16#0066F#) ARABIC LETTER DOTLESS BEH .. ARABIC LETTER DOTLESS QAF
Mn, -- (16#00670#, 16#00670#) ARABIC LETTER SUPERSCRIPT ALEF .. ARABIC LETTER SUPERSCRIPT ALEF
Lo, -- (16#00671#, 16#006D3#) ARABIC LETTER ALEF WASLA .. ARABIC LETTER YEH BARREE WITH HAMZA ABOVE
Po, -- (16#006D4#, 16#006D4#) ARABIC FULL STOP .. ARABIC FULL STOP
Lo, -- (16#006D5#, 16#006D5#) ARABIC LETTER AE .. ARABIC LETTER AE
Mn, -- (16#006D6#, 16#006DC#) ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA .. ARABIC SMALL HIGH SEEN
Cf, -- (16#006DD#, 16#006DD#) ARABIC END OF AYAH .. ARABIC END OF AYAH
Me, -- (16#006DE#, 16#006DE#) ARABIC START OF RUB EL HIZB .. ARABIC START OF RUB EL HIZB
Mn, -- (16#006DF#, 16#006E4#) ARABIC SMALL HIGH ROUNDED ZERO .. ARABIC SMALL HIGH MADDA
Lm, -- (16#006E5#, 16#006E6#) ARABIC SMALL WAW .. ARABIC SMALL YEH
Mn, -- (16#006E7#, 16#006E8#) ARABIC SMALL HIGH YEH .. ARABIC SMALL HIGH NOON
So, -- (16#006E9#, 16#006E9#) ARABIC PLACE OF SAJDAH .. ARABIC PLACE OF SAJDAH
Mn, -- (16#006EA#, 16#006ED#) ARABIC EMPTY CENTRE LOW STOP .. ARABIC SMALL LOW MEEM
Lo, -- (16#006EE#, 16#006EF#) ARABIC LETTER DAL WITH INVERTED V .. ARABIC LETTER REH WITH INVERTED V
Nd, -- (16#006F0#, 16#006F9#) EXTENDED ARABIC-INDIC DIGIT ZERO .. EXTENDED ARABIC-INDIC DIGIT NINE
Lo, -- (16#006FA#, 16#006FC#) ARABIC LETTER SHEEN WITH DOT BELOW .. ARABIC LETTER GHAIN WITH DOT BELOW
So, -- (16#006FD#, 16#006FE#) ARABIC SIGN SINDHI AMPERSAND .. ARABIC SIGN SINDHI POSTPOSITION MEN
Lo, -- (16#006FF#, 16#006FF#) ARABIC LETTER HEH WITH INVERTED V .. ARABIC LETTER HEH WITH INVERTED V
Po, -- (16#00700#, 16#0070D#) SYRIAC END OF PARAGRAPH .. SYRIAC HARKLEAN ASTERISCUS
Cf, -- (16#0070F#, 16#0070F#) SYRIAC ABBREVIATION MARK .. SYRIAC ABBREVIATION MARK
Lo, -- (16#00710#, 16#00710#) SYRIAC LETTER ALAPH .. SYRIAC LETTER ALAPH
Mn, -- (16#00711#, 16#00711#) SYRIAC LETTER SUPERSCRIPT ALAPH .. SYRIAC LETTER SUPERSCRIPT ALAPH
Lo, -- (16#00712#, 16#0072F#) SYRIAC LETTER BETH .. SYRIAC LETTER PERSIAN DHALATH
Mn, -- (16#00730#, 16#0074A#) SYRIAC PTHAHA ABOVE .. SYRIAC BARREKH
Lo, -- (16#0074D#, 16#0074F#) SYRIAC LETTER SOGDIAN ZHAIN .. SYRIAC LETTER SOGDIAN FE
Lo, -- (16#00780#, 16#007A5#) THAANA LETTER HAA .. THAANA LETTER WAAVU
Mn, -- (16#007A6#, 16#007B0#) THAANA ABAFILI .. THAANA SUKUN
Lo, -- (16#007B1#, 16#007B1#) THAANA LETTER NAA .. THAANA LETTER NAA
Mn, -- (16#00901#, 16#00902#) DEVANAGARI SIGN CANDRABINDU .. DEVANAGARI SIGN ANUSVARA
Mc, -- (16#00903#, 16#00903#) DEVANAGARI SIGN VISARGA .. DEVANAGARI SIGN VISARGA
Lo, -- (16#00904#, 16#00939#) DEVANAGARI LETTER SHORT A .. DEVANAGARI LETTER HA
Mn, -- (16#0093C#, 16#0093C#) DEVANAGARI SIGN NUKTA .. DEVANAGARI SIGN NUKTA
Lo, -- (16#0093D#, 16#0093D#) DEVANAGARI SIGN AVAGRAHA .. DEVANAGARI SIGN AVAGRAHA
Mc, -- (16#0093E#, 16#00940#) DEVANAGARI VOWEL SIGN AA .. DEVANAGARI VOWEL SIGN II
Mn, -- (16#00941#, 16#00948#) DEVANAGARI VOWEL SIGN U .. DEVANAGARI VOWEL SIGN AI
Mc, -- (16#00949#, 16#0094C#) DEVANAGARI VOWEL SIGN CANDRA O .. DEVANAGARI VOWEL SIGN AU
Mn, -- (16#0094D#, 16#0094D#) DEVANAGARI SIGN VIRAMA .. DEVANAGARI SIGN VIRAMA
Lo, -- (16#00950#, 16#00950#) DEVANAGARI OM .. DEVANAGARI OM
Mn, -- (16#00951#, 16#00954#) DEVANAGARI STRESS SIGN UDATTA .. DEVANAGARI ACUTE ACCENT
Lo, -- (16#00958#, 16#00961#) DEVANAGARI LETTER QA .. DEVANAGARI LETTER VOCALIC LL
Mn, -- (16#00962#, 16#00963#) DEVANAGARI VOWEL SIGN VOCALIC L .. DEVANAGARI VOWEL SIGN VOCALIC LL
Po, -- (16#00964#, 16#00965#) DEVANAGARI DANDA .. DEVANAGARI DOUBLE DANDA
Nd, -- (16#00966#, 16#0096F#) DEVANAGARI DIGIT ZERO .. DEVANAGARI DIGIT NINE
Po, -- (16#00970#, 16#00970#) DEVANAGARI ABBREVIATION SIGN .. DEVANAGARI ABBREVIATION SIGN
Mn, -- (16#00981#, 16#00981#) BENGALI SIGN CANDRABINDU .. BENGALI SIGN CANDRABINDU
Mc, -- (16#00982#, 16#00983#) BENGALI SIGN ANUSVARA .. BENGALI SIGN VISARGA
Lo, -- (16#00985#, 16#0098C#) BENGALI LETTER A .. BENGALI LETTER VOCALIC L
Lo, -- (16#0098F#, 16#00990#) BENGALI LETTER E .. BENGALI LETTER AI
Lo, -- (16#00993#, 16#009A8#) BENGALI LETTER O .. BENGALI LETTER NA
Lo, -- (16#009AA#, 16#009B0#) BENGALI LETTER PA .. BENGALI LETTER RA
Lo, -- (16#009B2#, 16#009B2#) BENGALI LETTER LA .. BENGALI LETTER LA
Lo, -- (16#009B6#, 16#009B9#) BENGALI LETTER SHA .. BENGALI LETTER HA
Mn, -- (16#009BC#, 16#009BC#) BENGALI SIGN NUKTA .. BENGALI SIGN NUKTA
Lo, -- (16#009BD#, 16#009BD#) BENGALI SIGN AVAGRAHA .. BENGALI SIGN AVAGRAHA
Mc, -- (16#009BE#, 16#009C0#) BENGALI VOWEL SIGN AA .. BENGALI VOWEL SIGN II
Mn, -- (16#009C1#, 16#009C4#) BENGALI VOWEL SIGN U .. BENGALI VOWEL SIGN VOCALIC RR
Mc, -- (16#009C7#, 16#009C8#) BENGALI VOWEL SIGN E .. BENGALI VOWEL SIGN AI
Mc, -- (16#009CB#, 16#009CC#) BENGALI VOWEL SIGN O .. BENGALI VOWEL SIGN AU
Mn, -- (16#009CD#, 16#009CD#) BENGALI SIGN VIRAMA .. BENGALI SIGN VIRAMA
Mc, -- (16#009D7#, 16#009D7#) BENGALI AU LENGTH MARK .. BENGALI AU LENGTH MARK
Lo, -- (16#009DC#, 16#009DD#) BENGALI LETTER RRA .. BENGALI LETTER RHA
Lo, -- (16#009DF#, 16#009E1#) BENGALI LETTER YYA .. BENGALI LETTER VOCALIC LL
Mn, -- (16#009E2#, 16#009E3#) BENGALI VOWEL SIGN VOCALIC L .. BENGALI VOWEL SIGN VOCALIC LL
Nd, -- (16#009E6#, 16#009EF#) BENGALI DIGIT ZERO .. BENGALI DIGIT NINE
Lo, -- (16#009F0#, 16#009F1#) BENGALI LETTER RA WITH MIDDLE DIAGONAL .. BENGALI LETTER RA WITH LOWER DIAGONAL
Sc, -- (16#009F2#, 16#009F3#) BENGALI RUPEE MARK .. BENGALI RUPEE SIGN
No, -- (16#009F4#, 16#009F9#) BENGALI CURRENCY NUMERATOR ONE .. BENGALI CURRENCY DENOMINATOR SIXTEEN
So, -- (16#009FA#, 16#009FA#) BENGALI ISSHAR .. BENGALI ISSHAR
Mn, -- (16#00A01#, 16#00A02#) GURMUKHI SIGN ADAK BINDI .. GURMUKHI SIGN BINDI
Mc, -- (16#00A03#, 16#00A03#) GURMUKHI SIGN VISARGA .. GURMUKHI SIGN VISARGA
Lo, -- (16#00A05#, 16#00A0A#) GURMUKHI LETTER A .. GURMUKHI LETTER UU
Lo, -- (16#00A0F#, 16#00A10#) GURMUKHI LETTER EE .. GURMUKHI LETTER AI
Lo, -- (16#00A13#, 16#00A28#) GURMUKHI LETTER OO .. GURMUKHI LETTER NA
Lo, -- (16#00A2A#, 16#00A30#) GURMUKHI LETTER PA .. GURMUKHI LETTER RA
Lo, -- (16#00A32#, 16#00A33#) GURMUKHI LETTER LA .. GURMUKHI LETTER LLA
Lo, -- (16#00A35#, 16#00A36#) GURMUKHI LETTER VA .. GURMUKHI LETTER SHA
Lo, -- (16#00A38#, 16#00A39#) GURMUKHI LETTER SA .. GURMUKHI LETTER HA
Mn, -- (16#00A3C#, 16#00A3C#) GURMUKHI SIGN NUKTA .. GURMUKHI SIGN NUKTA
Mc, -- (16#00A3E#, 16#00A40#) GURMUKHI VOWEL SIGN AA .. GURMUKHI VOWEL SIGN II
Mn, -- (16#00A41#, 16#00A42#) GURMUKHI VOWEL SIGN U .. GURMUKHI VOWEL SIGN UU
Mn, -- (16#00A47#, 16#00A48#) GURMUKHI VOWEL SIGN EE .. GURMUKHI VOWEL SIGN AI
Mn, -- (16#00A4B#, 16#00A4D#) GURMUKHI VOWEL SIGN OO .. GURMUKHI SIGN VIRAMA
Lo, -- (16#00A59#, 16#00A5C#) GURMUKHI LETTER KHHA .. GURMUKHI LETTER RRA
Lo, -- (16#00A5E#, 16#00A5E#) GURMUKHI LETTER FA .. GURMUKHI LETTER FA
Nd, -- (16#00A66#, 16#00A6F#) GURMUKHI DIGIT ZERO .. GURMUKHI DIGIT NINE
Mn, -- (16#00A70#, 16#00A71#) GURMUKHI TIPPI .. GURMUKHI ADDAK
Lo, -- (16#00A72#, 16#00A74#) GURMUKHI IRI .. GURMUKHI EK ONKAR
Mn, -- (16#00A81#, 16#00A82#) GUJARATI SIGN CANDRABINDU .. GUJARATI SIGN ANUSVARA
Mc, -- (16#00A83#, 16#00A83#) GUJARATI SIGN VISARGA .. GUJARATI SIGN VISARGA
Lo, -- (16#00A85#, 16#00A8D#) GUJARATI LETTER A .. GUJARATI VOWEL CANDRA E
Lo, -- (16#00A8F#, 16#00A91#) GUJARATI LETTER E .. GUJARATI VOWEL CANDRA O
Lo, -- (16#00A93#, 16#00AA8#) GUJARATI LETTER O .. GUJARATI LETTER NA
Lo, -- (16#00AAA#, 16#00AB0#) GUJARATI LETTER PA .. GUJARATI LETTER RA
Lo, -- (16#00AB2#, 16#00AB3#) GUJARATI LETTER LA .. GUJARATI LETTER LLA
Lo, -- (16#00AB5#, 16#00AB9#) GUJARATI LETTER VA .. GUJARATI LETTER HA
Mn, -- (16#00ABC#, 16#00ABC#) GUJARATI SIGN NUKTA .. GUJARATI SIGN NUKTA
Lo, -- (16#00ABD#, 16#00ABD#) GUJARATI SIGN AVAGRAHA .. GUJARATI SIGN AVAGRAHA
Mc, -- (16#00ABE#, 16#00AC0#) GUJARATI VOWEL SIGN AA .. GUJARATI VOWEL SIGN II
Mn, -- (16#00AC1#, 16#00AC5#) GUJARATI VOWEL SIGN U .. GUJARATI VOWEL SIGN CANDRA E
Mn, -- (16#00AC7#, 16#00AC8#) GUJARATI VOWEL SIGN E .. GUJARATI VOWEL SIGN AI
Mc, -- (16#00AC9#, 16#00AC9#) GUJARATI VOWEL SIGN CANDRA O .. GUJARATI VOWEL SIGN CANDRA O
Mc, -- (16#00ACB#, 16#00ACC#) GUJARATI VOWEL SIGN O .. GUJARATI VOWEL SIGN AU
Mn, -- (16#00ACD#, 16#00ACD#) GUJARATI SIGN VIRAMA .. GUJARATI SIGN VIRAMA
Lo, -- (16#00AD0#, 16#00AD0#) GUJARATI OM .. GUJARATI OM
Lo, -- (16#00AE0#, 16#00AE1#) GUJARATI LETTER VOCALIC RR .. GUJARATI LETTER VOCALIC LL
Mn, -- (16#00AE2#, 16#00AE3#) GUJARATI VOWEL SIGN VOCALIC L .. GUJARATI VOWEL SIGN VOCALIC LL
Nd, -- (16#00AE6#, 16#00AEF#) GUJARATI DIGIT ZERO .. GUJARATI DIGIT NINE
Sc, -- (16#00AF1#, 16#00AF1#) GUJARATI RUPEE SIGN .. GUJARATI RUPEE SIGN
Mn, -- (16#00B01#, 16#00B01#) ORIYA SIGN CANDRABINDU .. ORIYA SIGN CANDRABINDU
Mc, -- (16#00B02#, 16#00B03#) ORIYA SIGN ANUSVARA .. ORIYA SIGN VISARGA
Lo, -- (16#00B05#, 16#00B0C#) ORIYA LETTER A .. ORIYA LETTER VOCALIC L
Lo, -- (16#00B0F#, 16#00B10#) ORIYA LETTER E .. ORIYA LETTER AI
Lo, -- (16#00B13#, 16#00B28#) ORIYA LETTER O .. ORIYA LETTER NA
Lo, -- (16#00B2A#, 16#00B30#) ORIYA LETTER PA .. ORIYA LETTER RA
Lo, -- (16#00B32#, 16#00B33#) ORIYA LETTER LA .. ORIYA LETTER LLA
Lo, -- (16#00B35#, 16#00B39#) ORIYA LETTER VA .. ORIYA LETTER HA
Mn, -- (16#00B3C#, 16#00B3C#) ORIYA SIGN NUKTA .. ORIYA SIGN NUKTA
Lo, -- (16#00B3D#, 16#00B3D#) ORIYA SIGN AVAGRAHA .. ORIYA SIGN AVAGRAHA
Mc, -- (16#00B3E#, 16#00B3E#) ORIYA VOWEL SIGN AA .. ORIYA VOWEL SIGN AA
Mn, -- (16#00B3F#, 16#00B3F#) ORIYA VOWEL SIGN I .. ORIYA VOWEL SIGN I
Mc, -- (16#00B40#, 16#00B40#) ORIYA VOWEL SIGN II .. ORIYA VOWEL SIGN II
Mn, -- (16#00B41#, 16#00B43#) ORIYA VOWEL SIGN U .. ORIYA VOWEL SIGN VOCALIC R
Mc, -- (16#00B47#, 16#00B48#) ORIYA VOWEL SIGN E .. ORIYA VOWEL SIGN AI
Mc, -- (16#00B4B#, 16#00B4C#) ORIYA VOWEL SIGN O .. ORIYA VOWEL SIGN AU
Mn, -- (16#00B4D#, 16#00B4D#) ORIYA SIGN VIRAMA .. ORIYA SIGN VIRAMA
Mn, -- (16#00B56#, 16#00B56#) ORIYA AI LENGTH MARK .. ORIYA AI LENGTH MARK
Mc, -- (16#00B57#, 16#00B57#) ORIYA AU LENGTH MARK .. ORIYA AU LENGTH MARK
Lo, -- (16#00B5C#, 16#00B5D#) ORIYA LETTER RRA .. ORIYA LETTER RHA
Lo, -- (16#00B5F#, 16#00B61#) ORIYA LETTER YYA .. ORIYA LETTER VOCALIC LL
Nd, -- (16#00B66#, 16#00B6F#) ORIYA DIGIT ZERO .. ORIYA DIGIT NINE
So, -- (16#00B70#, 16#00B70#) ORIYA ISSHAR .. ORIYA ISSHAR
Lo, -- (16#00B71#, 16#00B71#) ORIYA LETTER WA .. ORIYA LETTER WA
Mn, -- (16#00B82#, 16#00B82#) TAMIL SIGN ANUSVARA .. TAMIL SIGN ANUSVARA
Lo, -- (16#00B83#, 16#00B83#) TAMIL SIGN VISARGA .. TAMIL SIGN VISARGA
Lo, -- (16#00B85#, 16#00B8A#) TAMIL LETTER A .. TAMIL LETTER UU
Lo, -- (16#00B8E#, 16#00B90#) TAMIL LETTER E .. TAMIL LETTER AI
Lo, -- (16#00B92#, 16#00B95#) TAMIL LETTER O .. TAMIL LETTER KA
Lo, -- (16#00B99#, 16#00B9A#) TAMIL LETTER NGA .. TAMIL LETTER CA
Lo, -- (16#00B9C#, 16#00B9C#) TAMIL LETTER JA .. TAMIL LETTER JA
Lo, -- (16#00B9E#, 16#00B9F#) TAMIL LETTER NYA .. TAMIL LETTER TTA
Lo, -- (16#00BA3#, 16#00BA4#) TAMIL LETTER NNA .. TAMIL LETTER TA
Lo, -- (16#00BA8#, 16#00BAA#) TAMIL LETTER NA .. TAMIL LETTER PA
Lo, -- (16#00BAE#, 16#00BB5#) TAMIL LETTER MA .. TAMIL LETTER VA
Lo, -- (16#00BB7#, 16#00BB9#) TAMIL LETTER SSA .. TAMIL LETTER HA
Mc, -- (16#00BBE#, 16#00BBF#) TAMIL VOWEL SIGN AA .. TAMIL VOWEL SIGN I
Mn, -- (16#00BC0#, 16#00BC0#) TAMIL VOWEL SIGN II .. TAMIL VOWEL SIGN II
Mc, -- (16#00BC1#, 16#00BC2#) TAMIL VOWEL SIGN U .. TAMIL VOWEL SIGN UU
Mc, -- (16#00BC6#, 16#00BC8#) TAMIL VOWEL SIGN E .. TAMIL VOWEL SIGN AI
Mc, -- (16#00BCA#, 16#00BCC#) TAMIL VOWEL SIGN O .. TAMIL VOWEL SIGN AU
Mn, -- (16#00BCD#, 16#00BCD#) TAMIL SIGN VIRAMA .. TAMIL SIGN VIRAMA
Mc, -- (16#00BD7#, 16#00BD7#) TAMIL AU LENGTH MARK .. TAMIL AU LENGTH MARK
Nd, -- (16#00BE7#, 16#00BEF#) TAMIL DIGIT ONE .. TAMIL DIGIT NINE
No, -- (16#00BF0#, 16#00BF2#) TAMIL NUMBER TEN .. TAMIL NUMBER ONE THOUSAND
So, -- (16#00BF3#, 16#00BF8#) TAMIL DAY SIGN .. TAMIL AS ABOVE SIGN
Sc, -- (16#00BF9#, 16#00BF9#) TAMIL RUPEE SIGN .. TAMIL RUPEE SIGN
So, -- (16#00BFA#, 16#00BFA#) TAMIL NUMBER SIGN .. TAMIL NUMBER SIGN
Mc, -- (16#00C01#, 16#00C03#) TELUGU SIGN CANDRABINDU .. TELUGU SIGN VISARGA
Lo, -- (16#00C05#, 16#00C0C#) TELUGU LETTER A .. TELUGU LETTER VOCALIC L
Lo, -- (16#00C0E#, 16#00C10#) TELUGU LETTER E .. TELUGU LETTER AI
Lo, -- (16#00C12#, 16#00C28#) TELUGU LETTER O .. TELUGU LETTER NA
Lo, -- (16#00C2A#, 16#00C33#) TELUGU LETTER PA .. TELUGU LETTER LLA
Lo, -- (16#00C35#, 16#00C39#) TELUGU LETTER VA .. TELUGU LETTER HA
Mn, -- (16#00C3E#, 16#00C40#) TELUGU VOWEL SIGN AA .. TELUGU VOWEL SIGN II
Mc, -- (16#00C41#, 16#00C44#) TELUGU VOWEL SIGN U .. TELUGU VOWEL SIGN VOCALIC RR
Mn, -- (16#00C46#, 16#00C48#) TELUGU VOWEL SIGN E .. TELUGU VOWEL SIGN AI
Mn, -- (16#00C4A#, 16#00C4D#) TELUGU VOWEL SIGN O .. TELUGU SIGN VIRAMA
Mn, -- (16#00C55#, 16#00C56#) TELUGU LENGTH MARK .. TELUGU AI LENGTH MARK
Lo, -- (16#00C60#, 16#00C61#) TELUGU LETTER VOCALIC RR .. TELUGU LETTER VOCALIC LL
Nd, -- (16#00C66#, 16#00C6F#) TELUGU DIGIT ZERO .. TELUGU DIGIT NINE
Mc, -- (16#00C82#, 16#00C83#) KANNADA SIGN ANUSVARA .. KANNADA SIGN VISARGA
Lo, -- (16#00C85#, 16#00C8C#) KANNADA LETTER A .. KANNADA LETTER VOCALIC L
Lo, -- (16#00C8E#, 16#00C90#) KANNADA LETTER E .. KANNADA LETTER AI
Lo, -- (16#00C92#, 16#00CA8#) KANNADA LETTER O .. KANNADA LETTER NA
Lo, -- (16#00CAA#, 16#00CB3#) KANNADA LETTER PA .. KANNADA LETTER LLA
Lo, -- (16#00CB5#, 16#00CB9#) KANNADA LETTER VA .. KANNADA LETTER HA
Mn, -- (16#00CBC#, 16#00CBC#) KANNADA SIGN NUKTA .. KANNADA SIGN NUKTA
Lo, -- (16#00CBD#, 16#00CBD#) KANNADA SIGN AVAGRAHA .. KANNADA SIGN AVAGRAHA
Mc, -- (16#00CBE#, 16#00CBE#) KANNADA VOWEL SIGN AA .. KANNADA VOWEL SIGN AA
Mn, -- (16#00CBF#, 16#00CBF#) KANNADA VOWEL SIGN I .. KANNADA VOWEL SIGN I
Mc, -- (16#00CC0#, 16#00CC4#) KANNADA VOWEL SIGN II .. KANNADA VOWEL SIGN VOCALIC RR
Mn, -- (16#00CC6#, 16#00CC6#) KANNADA VOWEL SIGN E .. KANNADA VOWEL SIGN E
Mc, -- (16#00CC7#, 16#00CC8#) KANNADA VOWEL SIGN EE .. KANNADA VOWEL SIGN AI
Mc, -- (16#00CCA#, 16#00CCB#) KANNADA VOWEL SIGN O .. KANNADA VOWEL SIGN OO
Mn, -- (16#00CCC#, 16#00CCD#) KANNADA VOWEL SIGN AU .. KANNADA SIGN VIRAMA
Mc, -- (16#00CD5#, 16#00CD6#) KANNADA LENGTH MARK .. KANNADA AI LENGTH MARK
Lo, -- (16#00CDE#, 16#00CDE#) KANNADA LETTER FA .. KANNADA LETTER FA
Lo, -- (16#00CE0#, 16#00CE1#) KANNADA LETTER VOCALIC RR .. KANNADA LETTER VOCALIC LL
Nd, -- (16#00CE6#, 16#00CEF#) KANNADA DIGIT ZERO .. KANNADA DIGIT NINE
Mc, -- (16#00D02#, 16#00D03#) MALAYALAM SIGN ANUSVARA .. MALAYALAM SIGN VISARGA
Lo, -- (16#00D05#, 16#00D0C#) MALAYALAM LETTER A .. MALAYALAM LETTER VOCALIC L
Lo, -- (16#00D0E#, 16#00D10#) MALAYALAM LETTER E .. MALAYALAM LETTER AI
Lo, -- (16#00D12#, 16#00D28#) MALAYALAM LETTER O .. MALAYALAM LETTER NA
Lo, -- (16#00D2A#, 16#00D39#) MALAYALAM LETTER PA .. MALAYALAM LETTER HA
Mc, -- (16#00D3E#, 16#00D40#) MALAYALAM VOWEL SIGN AA .. MALAYALAM VOWEL SIGN II
Mn, -- (16#00D41#, 16#00D43#) MALAYALAM VOWEL SIGN U .. MALAYALAM VOWEL SIGN VOCALIC R
Mc, -- (16#00D46#, 16#00D48#) MALAYALAM VOWEL SIGN E .. MALAYALAM VOWEL SIGN AI
Mc, -- (16#00D4A#, 16#00D4C#) MALAYALAM VOWEL SIGN O .. MALAYALAM VOWEL SIGN AU
Mn, -- (16#00D4D#, 16#00D4D#) MALAYALAM SIGN VIRAMA .. MALAYALAM SIGN VIRAMA
Mc, -- (16#00D57#, 16#00D57#) MALAYALAM AU LENGTH MARK .. MALAYALAM AU LENGTH MARK
Lo, -- (16#00D60#, 16#00D61#) MALAYALAM LETTER VOCALIC RR .. MALAYALAM LETTER VOCALIC LL
Nd, -- (16#00D66#, 16#00D6F#) MALAYALAM DIGIT ZERO .. MALAYALAM DIGIT NINE
Mc, -- (16#00D82#, 16#00D83#) SINHALA SIGN ANUSVARAYA .. SINHALA SIGN VISARGAYA
Lo, -- (16#00D85#, 16#00D96#) SINHALA LETTER AYANNA .. SINHALA LETTER AUYANNA
Lo, -- (16#00D9A#, 16#00DB1#) SINHALA LETTER ALPAPRAANA KAYANNA .. SINHALA LETTER DANTAJA NAYANNA
Lo, -- (16#00DB3#, 16#00DBB#) SINHALA LETTER SANYAKA DAYANNA .. SINHALA LETTER RAYANNA
Lo, -- (16#00DBD#, 16#00DBD#) SINHALA LETTER DANTAJA LAYANNA .. SINHALA LETTER DANTAJA LAYANNA
Lo, -- (16#00DC0#, 16#00DC6#) SINHALA LETTER VAYANNA .. SINHALA LETTER FAYANNA
Mn, -- (16#00DCA#, 16#00DCA#) SINHALA SIGN AL-LAKUNA .. SINHALA SIGN AL-LAKUNA
Mc, -- (16#00DCF#, 16#00DD1#) SINHALA VOWEL SIGN AELA-PILLA .. SINHALA VOWEL SIGN DIGA AEDA-PILLA
Mn, -- (16#00DD2#, 16#00DD4#) SINHALA VOWEL SIGN KETTI IS-PILLA .. SINHALA VOWEL SIGN KETTI PAA-PILLA
Mn, -- (16#00DD6#, 16#00DD6#) SINHALA VOWEL SIGN DIGA PAA-PILLA .. SINHALA VOWEL SIGN DIGA PAA-PILLA
Mc, -- (16#00DD8#, 16#00DDF#) SINHALA VOWEL SIGN GAETTA-PILLA .. SINHALA VOWEL SIGN GAYANUKITTA
Mc, -- (16#00DF2#, 16#00DF3#) SINHALA VOWEL SIGN DIGA GAETTA-PILLA .. SINHALA VOWEL SIGN DIGA GAYANUKITTA
Po, -- (16#00DF4#, 16#00DF4#) SINHALA PUNCTUATION KUNDDALIYA .. SINHALA PUNCTUATION KUNDDALIYA
Lo, -- (16#00E01#, 16#00E30#) THAI CHARACTER KO KAI .. THAI CHARACTER SARA A
Mn, -- (16#00E31#, 16#00E31#) THAI CHARACTER MAI HAN-AKAT .. THAI CHARACTER MAI HAN-AKAT
Lo, -- (16#00E32#, 16#00E33#) THAI CHARACTER SARA AA .. THAI CHARACTER SARA AM
Mn, -- (16#00E34#, 16#00E3A#) THAI CHARACTER SARA I .. THAI CHARACTER PHINTHU
Sc, -- (16#00E3F#, 16#00E3F#) THAI CURRENCY SYMBOL BAHT .. THAI CURRENCY SYMBOL BAHT
Lo, -- (16#00E40#, 16#00E45#) THAI CHARACTER SARA E .. THAI CHARACTER LAKKHANGYAO
Lm, -- (16#00E46#, 16#00E46#) THAI CHARACTER MAIYAMOK .. THAI CHARACTER MAIYAMOK
Mn, -- (16#00E47#, 16#00E4E#) THAI CHARACTER MAITAIKHU .. THAI CHARACTER YAMAKKAN
Po, -- (16#00E4F#, 16#00E4F#) THAI CHARACTER FONGMAN .. THAI CHARACTER FONGMAN
Nd, -- (16#00E50#, 16#00E59#) THAI DIGIT ZERO .. THAI DIGIT NINE
Po, -- (16#00E5A#, 16#00E5B#) THAI CHARACTER ANGKHANKHU .. THAI CHARACTER KHOMUT
Lo, -- (16#00E81#, 16#00E82#) LAO LETTER KO .. LAO LETTER KHO SUNG
Lo, -- (16#00E84#, 16#00E84#) LAO LETTER KHO TAM .. LAO LETTER KHO TAM
Lo, -- (16#00E87#, 16#00E88#) LAO LETTER NGO .. LAO LETTER CO
Lo, -- (16#00E8A#, 16#00E8A#) LAO LETTER SO TAM .. LAO LETTER SO TAM
Lo, -- (16#00E8D#, 16#00E8D#) LAO LETTER NYO .. LAO LETTER NYO
Lo, -- (16#00E94#, 16#00E97#) LAO LETTER DO .. LAO LETTER THO TAM
Lo, -- (16#00E99#, 16#00E9F#) LAO LETTER NO .. LAO LETTER FO SUNG
Lo, -- (16#00EA1#, 16#00EA3#) LAO LETTER MO .. LAO LETTER LO LING
Lo, -- (16#00EA5#, 16#00EA5#) LAO LETTER LO LOOT .. LAO LETTER LO LOOT
Lo, -- (16#00EA7#, 16#00EA7#) LAO LETTER WO .. LAO LETTER WO
Lo, -- (16#00EAA#, 16#00EAB#) LAO LETTER SO SUNG .. LAO LETTER HO SUNG
Lo, -- (16#00EAD#, 16#00EB0#) LAO LETTER O .. LAO VOWEL SIGN A
Mn, -- (16#00EB1#, 16#00EB1#) LAO VOWEL SIGN MAI KAN .. LAO VOWEL SIGN MAI KAN
Lo, -- (16#00EB2#, 16#00EB3#) LAO VOWEL SIGN AA .. LAO VOWEL SIGN AM
Mn, -- (16#00EB4#, 16#00EB9#) LAO VOWEL SIGN I .. LAO VOWEL SIGN UU
Mn, -- (16#00EBB#, 16#00EBC#) LAO VOWEL SIGN MAI KON .. LAO SEMIVOWEL SIGN LO
Lo, -- (16#00EBD#, 16#00EBD#) LAO SEMIVOWEL SIGN NYO .. LAO SEMIVOWEL SIGN NYO
Lo, -- (16#00EC0#, 16#00EC4#) LAO VOWEL SIGN E .. LAO VOWEL SIGN AI
Lm, -- (16#00EC6#, 16#00EC6#) LAO KO LA .. LAO KO LA
Mn, -- (16#00EC8#, 16#00ECD#) LAO TONE MAI EK .. LAO NIGGAHITA
Nd, -- (16#00ED0#, 16#00ED9#) LAO DIGIT ZERO .. LAO DIGIT NINE
Lo, -- (16#00EDC#, 16#00EDD#) LAO HO NO .. LAO HO MO
Lo, -- (16#00F00#, 16#00F00#) TIBETAN SYLLABLE OM .. TIBETAN SYLLABLE OM
So, -- (16#00F01#, 16#00F03#) TIBETAN MARK GTER YIG MGO TRUNCATED A .. TIBETAN MARK GTER YIG MGO -UM GTER TSHEG MA
Po, -- (16#00F04#, 16#00F12#) TIBETAN MARK INITIAL YIG MGO MDUN MA .. TIBETAN MARK RGYA GRAM SHAD
So, -- (16#00F13#, 16#00F17#) TIBETAN MARK CARET -DZUD RTAGS ME LONG CAN .. TIBETAN ASTROLOGICAL SIGN SGRA GCAN -CHAR RTAGS
Mn, -- (16#00F18#, 16#00F19#) TIBETAN ASTROLOGICAL SIGN -KHYUD PA .. TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS
So, -- (16#00F1A#, 16#00F1F#) TIBETAN SIGN RDEL DKAR GCIG .. TIBETAN SIGN RDEL DKAR RDEL NAG
Nd, -- (16#00F20#, 16#00F29#) TIBETAN DIGIT ZERO .. TIBETAN DIGIT NINE
No, -- (16#00F2A#, 16#00F33#) TIBETAN DIGIT HALF ONE .. TIBETAN DIGIT HALF ZERO
So, -- (16#00F34#, 16#00F34#) TIBETAN MARK BSDUS RTAGS .. TIBETAN MARK BSDUS RTAGS
Mn, -- (16#00F35#, 16#00F35#) TIBETAN MARK NGAS BZUNG NYI ZLA .. TIBETAN MARK NGAS BZUNG NYI ZLA
So, -- (16#00F36#, 16#00F36#) TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN .. TIBETAN MARK CARET -DZUD RTAGS BZHI MIG CAN
Mn, -- (16#00F37#, 16#00F37#) TIBETAN MARK NGAS BZUNG SGOR RTAGS .. TIBETAN MARK NGAS BZUNG SGOR RTAGS
So, -- (16#00F38#, 16#00F38#) TIBETAN MARK CHE MGO .. TIBETAN MARK CHE MGO
Mn, -- (16#00F39#, 16#00F39#) TIBETAN MARK TSA -PHRU .. TIBETAN MARK TSA -PHRU
Ps, -- (16#00F3A#, 16#00F3A#) TIBETAN MARK GUG RTAGS GYON .. TIBETAN MARK GUG RTAGS GYON
Pe, -- (16#00F3B#, 16#00F3B#) TIBETAN MARK GUG RTAGS GYAS .. TIBETAN MARK GUG RTAGS GYAS
Ps, -- (16#00F3C#, 16#00F3C#) TIBETAN MARK ANG KHANG GYON .. TIBETAN MARK ANG KHANG GYON
Pe, -- (16#00F3D#, 16#00F3D#) TIBETAN MARK ANG KHANG GYAS .. TIBETAN MARK ANG KHANG GYAS
Mc, -- (16#00F3E#, 16#00F3F#) TIBETAN SIGN YAR TSHES .. TIBETAN SIGN MAR TSHES
Lo, -- (16#00F40#, 16#00F47#) TIBETAN LETTER KA .. TIBETAN LETTER JA
Lo, -- (16#00F49#, 16#00F6A#) TIBETAN LETTER NYA .. TIBETAN LETTER FIXED-FORM RA
Mn, -- (16#00F71#, 16#00F7E#) TIBETAN VOWEL SIGN AA .. TIBETAN SIGN RJES SU NGA RO
Mc, -- (16#00F7F#, 16#00F7F#) TIBETAN SIGN RNAM BCAD .. TIBETAN SIGN RNAM BCAD
Mn, -- (16#00F80#, 16#00F84#) TIBETAN VOWEL SIGN REVERSED I .. TIBETAN MARK HALANTA
Po, -- (16#00F85#, 16#00F85#) TIBETAN MARK PALUTA .. TIBETAN MARK PALUTA
Mn, -- (16#00F86#, 16#00F87#) TIBETAN SIGN LCI RTAGS .. TIBETAN SIGN YANG RTAGS
Lo, -- (16#00F88#, 16#00F8B#) TIBETAN SIGN LCE TSA CAN .. TIBETAN SIGN GRU MED RGYINGS
Mn, -- (16#00F90#, 16#00F97#) TIBETAN SUBJOINED LETTER KA .. TIBETAN SUBJOINED LETTER JA
Mn, -- (16#00F99#, 16#00FBC#) TIBETAN SUBJOINED LETTER NYA .. TIBETAN SUBJOINED LETTER FIXED-FORM RA
So, -- (16#00FBE#, 16#00FC5#) TIBETAN KU RU KHA .. TIBETAN SYMBOL RDO RJE
Mn, -- (16#00FC6#, 16#00FC6#) TIBETAN SYMBOL PADMA GDAN .. TIBETAN SYMBOL PADMA GDAN
So, -- (16#00FC7#, 16#00FCC#) TIBETAN SYMBOL RDO RJE RGYA GRAM .. TIBETAN SYMBOL NOR BU BZHI -KHYIL
So, -- (16#00FCF#, 16#00FCF#) TIBETAN SIGN RDEL NAG GSUM .. TIBETAN SIGN RDEL NAG GSUM
Lo, -- (16#01000#, 16#01021#) MYANMAR LETTER KA .. MYANMAR LETTER A
Lo, -- (16#01023#, 16#01027#) MYANMAR LETTER I .. MYANMAR LETTER E
Lo, -- (16#01029#, 16#0102A#) MYANMAR LETTER O .. MYANMAR LETTER AU
Mc, -- (16#0102C#, 16#0102C#) MYANMAR VOWEL SIGN AA .. MYANMAR VOWEL SIGN AA
Mn, -- (16#0102D#, 16#01030#) MYANMAR VOWEL SIGN I .. MYANMAR VOWEL SIGN UU
Mc, -- (16#01031#, 16#01031#) MYANMAR VOWEL SIGN E .. MYANMAR VOWEL SIGN E
Mn, -- (16#01032#, 16#01032#) MYANMAR VOWEL SIGN AI .. MYANMAR VOWEL SIGN AI
Mn, -- (16#01036#, 16#01037#) MYANMAR SIGN ANUSVARA .. MYANMAR SIGN DOT BELOW
Mc, -- (16#01038#, 16#01038#) MYANMAR SIGN VISARGA .. MYANMAR SIGN VISARGA
Mn, -- (16#01039#, 16#01039#) MYANMAR SIGN VIRAMA .. MYANMAR SIGN VIRAMA
Nd, -- (16#01040#, 16#01049#) MYANMAR DIGIT ZERO .. MYANMAR DIGIT NINE
Po, -- (16#0104A#, 16#0104F#) MYANMAR SIGN LITTLE SECTION .. MYANMAR SYMBOL GENITIVE
Lo, -- (16#01050#, 16#01055#) MYANMAR LETTER SHA .. MYANMAR LETTER VOCALIC LL
Mc, -- (16#01056#, 16#01057#) MYANMAR VOWEL SIGN VOCALIC R .. MYANMAR VOWEL SIGN VOCALIC RR
Mn, -- (16#01058#, 16#01059#) MYANMAR VOWEL SIGN VOCALIC L .. MYANMAR VOWEL SIGN VOCALIC LL
Lu, -- (16#010A0#, 16#010C5#) GEORGIAN CAPITAL LETTER AN .. GEORGIAN CAPITAL LETTER HOE
Lo, -- (16#010D0#, 16#010F8#) GEORGIAN LETTER AN .. GEORGIAN LETTER ELIFI
Po, -- (16#010FB#, 16#010FB#) GEORGIAN PARAGRAPH SEPARATOR .. GEORGIAN PARAGRAPH SEPARATOR
Lo, -- (16#01100#, 16#01159#) HANGUL CHOSEONG KIYEOK .. HANGUL CHOSEONG YEORINHIEUH
Lo, -- (16#0115F#, 16#011A2#) HANGUL CHOSEONG FILLER .. HANGUL JUNGSEONG SSANGARAEA
Lo, -- (16#011A8#, 16#011F9#) HANGUL JONGSEONG KIYEOK .. HANGUL JONGSEONG YEORINHIEUH
Lo, -- (16#01200#, 16#01206#) ETHIOPIC SYLLABLE HA .. ETHIOPIC SYLLABLE HO
Lo, -- (16#01208#, 16#01246#) ETHIOPIC SYLLABLE LA .. ETHIOPIC SYLLABLE QO
Lo, -- (16#01248#, 16#01248#) ETHIOPIC SYLLABLE QWA .. ETHIOPIC SYLLABLE QWA
Lo, -- (16#0124A#, 16#0124D#) ETHIOPIC SYLLABLE QWI .. ETHIOPIC SYLLABLE QWE
Lo, -- (16#01250#, 16#01256#) ETHIOPIC SYLLABLE QHA .. ETHIOPIC SYLLABLE QHO
Lo, -- (16#01258#, 16#01258#) ETHIOPIC SYLLABLE QHWA .. ETHIOPIC SYLLABLE QHWA
Lo, -- (16#0125A#, 16#0125D#) ETHIOPIC SYLLABLE QHWI .. ETHIOPIC SYLLABLE QHWE
Lo, -- (16#01260#, 16#01286#) ETHIOPIC SYLLABLE BA .. ETHIOPIC SYLLABLE XO
Lo, -- (16#01288#, 16#01288#) ETHIOPIC SYLLABLE XWA .. ETHIOPIC SYLLABLE XWA
Lo, -- (16#0128A#, 16#0128D#) ETHIOPIC SYLLABLE XWI .. ETHIOPIC SYLLABLE XWE
Lo, -- (16#01290#, 16#012AE#) ETHIOPIC SYLLABLE NA .. ETHIOPIC SYLLABLE KO
Lo, -- (16#012B0#, 16#012B0#) ETHIOPIC SYLLABLE KWA .. ETHIOPIC SYLLABLE KWA
Lo, -- (16#012B2#, 16#012B5#) ETHIOPIC SYLLABLE KWI .. ETHIOPIC SYLLABLE KWE
Lo, -- (16#012B8#, 16#012BE#) ETHIOPIC SYLLABLE KXA .. ETHIOPIC SYLLABLE KXO
Lo, -- (16#012C0#, 16#012C0#) ETHIOPIC SYLLABLE KXWA .. ETHIOPIC SYLLABLE KXWA
Lo, -- (16#012C2#, 16#012C5#) ETHIOPIC SYLLABLE KXWI .. ETHIOPIC SYLLABLE KXWE
Lo, -- (16#012C8#, 16#012CE#) ETHIOPIC SYLLABLE WA .. ETHIOPIC SYLLABLE WO
Lo, -- (16#012D0#, 16#012D6#) ETHIOPIC SYLLABLE PHARYNGEAL A .. ETHIOPIC SYLLABLE PHARYNGEAL O
Lo, -- (16#012D8#, 16#012EE#) ETHIOPIC SYLLABLE ZA .. ETHIOPIC SYLLABLE YO
Lo, -- (16#012F0#, 16#0130E#) ETHIOPIC SYLLABLE DA .. ETHIOPIC SYLLABLE GO
Lo, -- (16#01310#, 16#01310#) ETHIOPIC SYLLABLE GWA .. ETHIOPIC SYLLABLE GWA
Lo, -- (16#01312#, 16#01315#) ETHIOPIC SYLLABLE GWI .. ETHIOPIC SYLLABLE GWE
Lo, -- (16#01318#, 16#0131E#) ETHIOPIC SYLLABLE GGA .. ETHIOPIC SYLLABLE GGO
Lo, -- (16#01320#, 16#01346#) ETHIOPIC SYLLABLE THA .. ETHIOPIC SYLLABLE TZO
Lo, -- (16#01348#, 16#0135A#) ETHIOPIC SYLLABLE FA .. ETHIOPIC SYLLABLE FYA
Po, -- (16#01361#, 16#01368#) ETHIOPIC WORDSPACE .. ETHIOPIC PARAGRAPH SEPARATOR
Nd, -- (16#01369#, 16#01371#) ETHIOPIC DIGIT ONE .. ETHIOPIC DIGIT NINE
No, -- (16#01372#, 16#0137C#) ETHIOPIC NUMBER TEN .. ETHIOPIC NUMBER TEN THOUSAND
Lo, -- (16#013A0#, 16#013F4#) CHEROKEE LETTER A .. CHEROKEE LETTER YV
Lo, -- (16#01401#, 16#0166C#) CANADIAN SYLLABICS E .. CANADIAN SYLLABICS CARRIER TTSA
Po, -- (16#0166D#, 16#0166E#) CANADIAN SYLLABICS CHI SIGN .. CANADIAN SYLLABICS FULL STOP
Lo, -- (16#0166F#, 16#01676#) CANADIAN SYLLABICS QAI .. CANADIAN SYLLABICS NNGAA
Zs, -- (16#01680#, 16#01680#) OGHAM SPACE MARK .. OGHAM SPACE MARK
Lo, -- (16#01681#, 16#0169A#) OGHAM LETTER BEITH .. OGHAM LETTER PEITH
Ps, -- (16#0169B#, 16#0169B#) OGHAM FEATHER MARK .. OGHAM FEATHER MARK
Pe, -- (16#0169C#, 16#0169C#) OGHAM REVERSED FEATHER MARK .. OGHAM REVERSED FEATHER MARK
Lo, -- (16#016A0#, 16#016EA#) RUNIC LETTER FEHU FEOH FE F .. RUNIC LETTER X
Po, -- (16#016EB#, 16#016ED#) RUNIC SINGLE PUNCTUATION .. RUNIC CROSS PUNCTUATION
Nl, -- (16#016EE#, 16#016F0#) RUNIC ARLAUG SYMBOL .. RUNIC BELGTHOR SYMBOL
Lo, -- (16#01700#, 16#0170C#) TAGALOG LETTER A .. TAGALOG LETTER YA
Lo, -- (16#0170E#, 16#01711#) TAGALOG LETTER LA .. TAGALOG LETTER HA
Mn, -- (16#01712#, 16#01714#) TAGALOG VOWEL SIGN I .. TAGALOG SIGN VIRAMA
Lo, -- (16#01720#, 16#01731#) HANUNOO LETTER A .. HANUNOO LETTER HA
Mn, -- (16#01732#, 16#01734#) HANUNOO VOWEL SIGN I .. HANUNOO SIGN PAMUDPOD
Po, -- (16#01735#, 16#01736#) PHILIPPINE SINGLE PUNCTUATION .. PHILIPPINE DOUBLE PUNCTUATION
Lo, -- (16#01740#, 16#01751#) BUHID LETTER A .. BUHID LETTER HA
Mn, -- (16#01752#, 16#01753#) BUHID VOWEL SIGN I .. BUHID VOWEL SIGN U
Lo, -- (16#01760#, 16#0176C#) TAGBANWA LETTER A .. TAGBANWA LETTER YA
Lo, -- (16#0176E#, 16#01770#) TAGBANWA LETTER LA .. TAGBANWA LETTER SA
Mn, -- (16#01772#, 16#01773#) TAGBANWA VOWEL SIGN I .. TAGBANWA VOWEL SIGN U
Lo, -- (16#01780#, 16#017B3#) KHMER LETTER KA .. KHMER INDEPENDENT VOWEL QAU
Cf, -- (16#017B4#, 16#017B5#) KHMER VOWEL INHERENT AQ .. KHMER VOWEL INHERENT AA
Mc, -- (16#017B6#, 16#017B6#) KHMER VOWEL SIGN AA .. KHMER VOWEL SIGN AA
Mn, -- (16#017B7#, 16#017BD#) KHMER VOWEL SIGN I .. KHMER VOWEL SIGN UA
Mc, -- (16#017BE#, 16#017C5#) KHMER VOWEL SIGN OE .. KHMER VOWEL SIGN AU
Mn, -- (16#017C6#, 16#017C6#) KHMER SIGN NIKAHIT .. KHMER SIGN NIKAHIT
Mc, -- (16#017C7#, 16#017C8#) KHMER SIGN REAHMUK .. KHMER SIGN YUUKALEAPINTU
Mn, -- (16#017C9#, 16#017D3#) KHMER SIGN MUUSIKATOAN .. KHMER SIGN BATHAMASAT
Po, -- (16#017D4#, 16#017D6#) KHMER SIGN KHAN .. KHMER SIGN CAMNUC PII KUUH
Lm, -- (16#017D7#, 16#017D7#) KHMER SIGN LEK TOO .. KHMER SIGN LEK TOO
Po, -- (16#017D8#, 16#017DA#) KHMER SIGN BEYYAL .. KHMER SIGN KOOMUUT
Sc, -- (16#017DB#, 16#017DB#) KHMER CURRENCY SYMBOL RIEL .. KHMER CURRENCY SYMBOL RIEL
Lo, -- (16#017DC#, 16#017DC#) KHMER SIGN AVAKRAHASANYA .. KHMER SIGN AVAKRAHASANYA
Mn, -- (16#017DD#, 16#017DD#) KHMER SIGN ATTHACAN .. KHMER SIGN ATTHACAN
Nd, -- (16#017E0#, 16#017E9#) KHMER DIGIT ZERO .. KHMER DIGIT NINE
No, -- (16#017F0#, 16#017F9#) KHMER SYMBOL LEK ATTAK SON .. KHMER SYMBOL LEK ATTAK PRAM-BUON
Po, -- (16#01800#, 16#01805#) MONGOLIAN BIRGA .. MONGOLIAN FOUR DOTS
Pd, -- (16#01806#, 16#01806#) MONGOLIAN TODO SOFT HYPHEN .. MONGOLIAN TODO SOFT HYPHEN
Po, -- (16#01807#, 16#0180A#) MONGOLIAN SIBE SYLLABLE BOUNDARY MARKER .. MONGOLIAN NIRUGU
Mn, -- (16#0180B#, 16#0180D#) MONGOLIAN FREE VARIATION SELECTOR ONE .. MONGOLIAN FREE VARIATION SELECTOR THREE
Zs, -- (16#0180E#, 16#0180E#) MONGOLIAN VOWEL SEPARATOR .. MONGOLIAN VOWEL SEPARATOR
Nd, -- (16#01810#, 16#01819#) MONGOLIAN DIGIT ZERO .. MONGOLIAN DIGIT NINE
Lo, -- (16#01820#, 16#01842#) MONGOLIAN LETTER A .. MONGOLIAN LETTER CHI
Lm, -- (16#01843#, 16#01843#) MONGOLIAN LETTER TODO LONG VOWEL SIGN .. MONGOLIAN LETTER TODO LONG VOWEL SIGN
Lo, -- (16#01844#, 16#01877#) MONGOLIAN LETTER TODO E .. MONGOLIAN LETTER MANCHU ZHA
Lo, -- (16#01880#, 16#018A8#) MONGOLIAN LETTER ALI GALI ANUSVARA ONE .. MONGOLIAN LETTER MANCHU ALI GALI BHA
Mn, -- (16#018A9#, 16#018A9#) MONGOLIAN LETTER ALI GALI DAGALGA .. MONGOLIAN LETTER ALI GALI DAGALGA
Lo, -- (16#01900#, 16#0191C#) LIMBU VOWEL-CARRIER LETTER .. LIMBU LETTER HA
Mn, -- (16#01920#, 16#01922#) LIMBU VOWEL SIGN A .. LIMBU VOWEL SIGN U
Mc, -- (16#01923#, 16#01926#) LIMBU VOWEL SIGN EE .. LIMBU VOWEL SIGN AU
Mn, -- (16#01927#, 16#01928#) LIMBU VOWEL SIGN E .. LIMBU VOWEL SIGN O
Mc, -- (16#01929#, 16#0192B#) LIMBU SUBJOINED LETTER YA .. LIMBU SUBJOINED LETTER WA
Mc, -- (16#01930#, 16#01931#) LIMBU SMALL LETTER KA .. LIMBU SMALL LETTER NGA
Mn, -- (16#01932#, 16#01932#) LIMBU SMALL LETTER ANUSVARA .. LIMBU SMALL LETTER ANUSVARA
Mc, -- (16#01933#, 16#01938#) LIMBU SMALL LETTER TA .. LIMBU SMALL LETTER LA
Mn, -- (16#01939#, 16#0193B#) LIMBU SIGN MUKPHRENG .. LIMBU SIGN SA-I
So, -- (16#01940#, 16#01940#) LIMBU SIGN LOO .. LIMBU SIGN LOO
Po, -- (16#01944#, 16#01945#) LIMBU EXCLAMATION MARK .. LIMBU QUESTION MARK
Nd, -- (16#01946#, 16#0194F#) LIMBU DIGIT ZERO .. LIMBU DIGIT NINE
Lo, -- (16#01950#, 16#0196D#) TAI LE LETTER KA .. TAI LE LETTER AI
Lo, -- (16#01970#, 16#01974#) TAI LE LETTER TONE-2 .. TAI LE LETTER TONE-6
So, -- (16#019E0#, 16#019FF#) KHMER SYMBOL PATHAMASAT .. KHMER SYMBOL DAP-PRAM ROC
Ll, -- (16#01D00#, 16#01D2B#) LATIN LETTER SMALL CAPITAL A .. CYRILLIC LETTER SMALL CAPITAL EL
Lm, -- (16#01D2C#, 16#01D61#) MODIFIER LETTER CAPITAL A .. MODIFIER LETTER SMALL CHI
Ll, -- (16#01D62#, 16#01D6B#) LATIN SUBSCRIPT SMALL LETTER I .. LATIN SMALL LETTER UE
Lu, -- (16#01E00#, 16#01E00#) LATIN CAPITAL LETTER A WITH RING BELOW .. LATIN CAPITAL LETTER A WITH RING BELOW
Ll, -- (16#01E01#, 16#01E01#) LATIN SMALL LETTER A WITH RING BELOW .. LATIN SMALL LETTER A WITH RING BELOW
Lu, -- (16#01E02#, 16#01E02#) LATIN CAPITAL LETTER B WITH DOT ABOVE .. LATIN CAPITAL LETTER B WITH DOT ABOVE
Ll, -- (16#01E03#, 16#01E03#) LATIN SMALL LETTER B WITH DOT ABOVE .. LATIN SMALL LETTER B WITH DOT ABOVE
Lu, -- (16#01E04#, 16#01E04#) LATIN CAPITAL LETTER B WITH DOT BELOW .. LATIN CAPITAL LETTER B WITH DOT BELOW
Ll, -- (16#01E05#, 16#01E05#) LATIN SMALL LETTER B WITH DOT BELOW .. LATIN SMALL LETTER B WITH DOT BELOW
Lu, -- (16#01E06#, 16#01E06#) LATIN CAPITAL LETTER B WITH LINE BELOW .. LATIN CAPITAL LETTER B WITH LINE BELOW
Ll, -- (16#01E07#, 16#01E07#) LATIN SMALL LETTER B WITH LINE BELOW .. LATIN SMALL LETTER B WITH LINE BELOW
Lu, -- (16#01E08#, 16#01E08#) LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE .. LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE
Ll, -- (16#01E09#, 16#01E09#) LATIN SMALL LETTER C WITH CEDILLA AND ACUTE .. LATIN SMALL LETTER C WITH CEDILLA AND ACUTE
Lu, -- (16#01E0A#, 16#01E0A#) LATIN CAPITAL LETTER D WITH DOT ABOVE .. LATIN CAPITAL LETTER D WITH DOT ABOVE
Ll, -- (16#01E0B#, 16#01E0B#) LATIN SMALL LETTER D WITH DOT ABOVE .. LATIN SMALL LETTER D WITH DOT ABOVE
Lu, -- (16#01E0C#, 16#01E0C#) LATIN CAPITAL LETTER D WITH DOT BELOW .. LATIN CAPITAL LETTER D WITH DOT BELOW
Ll, -- (16#01E0D#, 16#01E0D#) LATIN SMALL LETTER D WITH DOT BELOW .. LATIN SMALL LETTER D WITH DOT BELOW
Lu, -- (16#01E0E#, 16#01E0E#) LATIN CAPITAL LETTER D WITH LINE BELOW .. LATIN CAPITAL LETTER D WITH LINE BELOW
Ll, -- (16#01E0F#, 16#01E0F#) LATIN SMALL LETTER D WITH LINE BELOW .. LATIN SMALL LETTER D WITH LINE BELOW
Lu, -- (16#01E10#, 16#01E10#) LATIN CAPITAL LETTER D WITH CEDILLA .. LATIN CAPITAL LETTER D WITH CEDILLA
Ll, -- (16#01E11#, 16#01E11#) LATIN SMALL LETTER D WITH CEDILLA .. LATIN SMALL LETTER D WITH CEDILLA
Lu, -- (16#01E12#, 16#01E12#) LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW
Ll, -- (16#01E13#, 16#01E13#) LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW
Lu, -- (16#01E14#, 16#01E14#) LATIN CAPITAL LETTER E WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER E WITH MACRON AND GRAVE
Ll, -- (16#01E15#, 16#01E15#) LATIN SMALL LETTER E WITH MACRON AND GRAVE .. LATIN SMALL LETTER E WITH MACRON AND GRAVE
Lu, -- (16#01E16#, 16#01E16#) LATIN CAPITAL LETTER E WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER E WITH MACRON AND ACUTE
Ll, -- (16#01E17#, 16#01E17#) LATIN SMALL LETTER E WITH MACRON AND ACUTE .. LATIN SMALL LETTER E WITH MACRON AND ACUTE
Lu, -- (16#01E18#, 16#01E18#) LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW
Ll, -- (16#01E19#, 16#01E19#) LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW
Lu, -- (16#01E1A#, 16#01E1A#) LATIN CAPITAL LETTER E WITH TILDE BELOW .. LATIN CAPITAL LETTER E WITH TILDE BELOW
Ll, -- (16#01E1B#, 16#01E1B#) LATIN SMALL LETTER E WITH TILDE BELOW .. LATIN SMALL LETTER E WITH TILDE BELOW
Lu, -- (16#01E1C#, 16#01E1C#) LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE .. LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE
Ll, -- (16#01E1D#, 16#01E1D#) LATIN SMALL LETTER E WITH CEDILLA AND BREVE .. LATIN SMALL LETTER E WITH CEDILLA AND BREVE
Lu, -- (16#01E1E#, 16#01E1E#) LATIN CAPITAL LETTER F WITH DOT ABOVE .. LATIN CAPITAL LETTER F WITH DOT ABOVE
Ll, -- (16#01E1F#, 16#01E1F#) LATIN SMALL LETTER F WITH DOT ABOVE .. LATIN SMALL LETTER F WITH DOT ABOVE
Lu, -- (16#01E20#, 16#01E20#) LATIN CAPITAL LETTER G WITH MACRON .. LATIN CAPITAL LETTER G WITH MACRON
Ll, -- (16#01E21#, 16#01E21#) LATIN SMALL LETTER G WITH MACRON .. LATIN SMALL LETTER G WITH MACRON
Lu, -- (16#01E22#, 16#01E22#) LATIN CAPITAL LETTER H WITH DOT ABOVE .. LATIN CAPITAL LETTER H WITH DOT ABOVE
Ll, -- (16#01E23#, 16#01E23#) LATIN SMALL LETTER H WITH DOT ABOVE .. LATIN SMALL LETTER H WITH DOT ABOVE
Lu, -- (16#01E24#, 16#01E24#) LATIN CAPITAL LETTER H WITH DOT BELOW .. LATIN CAPITAL LETTER H WITH DOT BELOW
Ll, -- (16#01E25#, 16#01E25#) LATIN SMALL LETTER H WITH DOT BELOW .. LATIN SMALL LETTER H WITH DOT BELOW
Lu, -- (16#01E26#, 16#01E26#) LATIN CAPITAL LETTER H WITH DIAERESIS .. LATIN CAPITAL LETTER H WITH DIAERESIS
Ll, -- (16#01E27#, 16#01E27#) LATIN SMALL LETTER H WITH DIAERESIS .. LATIN SMALL LETTER H WITH DIAERESIS
Lu, -- (16#01E28#, 16#01E28#) LATIN CAPITAL LETTER H WITH CEDILLA .. LATIN CAPITAL LETTER H WITH CEDILLA
Ll, -- (16#01E29#, 16#01E29#) LATIN SMALL LETTER H WITH CEDILLA .. LATIN SMALL LETTER H WITH CEDILLA
Lu, -- (16#01E2A#, 16#01E2A#) LATIN CAPITAL LETTER H WITH BREVE BELOW .. LATIN CAPITAL LETTER H WITH BREVE BELOW
Ll, -- (16#01E2B#, 16#01E2B#) LATIN SMALL LETTER H WITH BREVE BELOW .. LATIN SMALL LETTER H WITH BREVE BELOW
Lu, -- (16#01E2C#, 16#01E2C#) LATIN CAPITAL LETTER I WITH TILDE BELOW .. LATIN CAPITAL LETTER I WITH TILDE BELOW
Ll, -- (16#01E2D#, 16#01E2D#) LATIN SMALL LETTER I WITH TILDE BELOW .. LATIN SMALL LETTER I WITH TILDE BELOW
Lu, -- (16#01E2E#, 16#01E2E#) LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE
Ll, -- (16#01E2F#, 16#01E2F#) LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE
Lu, -- (16#01E30#, 16#01E30#) LATIN CAPITAL LETTER K WITH ACUTE .. LATIN CAPITAL LETTER K WITH ACUTE
Ll, -- (16#01E31#, 16#01E31#) LATIN SMALL LETTER K WITH ACUTE .. LATIN SMALL LETTER K WITH ACUTE
Lu, -- (16#01E32#, 16#01E32#) LATIN CAPITAL LETTER K WITH DOT BELOW .. LATIN CAPITAL LETTER K WITH DOT BELOW
Ll, -- (16#01E33#, 16#01E33#) LATIN SMALL LETTER K WITH DOT BELOW .. LATIN SMALL LETTER K WITH DOT BELOW
Lu, -- (16#01E34#, 16#01E34#) LATIN CAPITAL LETTER K WITH LINE BELOW .. LATIN CAPITAL LETTER K WITH LINE BELOW
Ll, -- (16#01E35#, 16#01E35#) LATIN SMALL LETTER K WITH LINE BELOW .. LATIN SMALL LETTER K WITH LINE BELOW
Lu, -- (16#01E36#, 16#01E36#) LATIN CAPITAL LETTER L WITH DOT BELOW .. LATIN CAPITAL LETTER L WITH DOT BELOW
Ll, -- (16#01E37#, 16#01E37#) LATIN SMALL LETTER L WITH DOT BELOW .. LATIN SMALL LETTER L WITH DOT BELOW
Lu, -- (16#01E38#, 16#01E38#) LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON
Ll, -- (16#01E39#, 16#01E39#) LATIN SMALL LETTER L WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER L WITH DOT BELOW AND MACRON
Lu, -- (16#01E3A#, 16#01E3A#) LATIN CAPITAL LETTER L WITH LINE BELOW .. LATIN CAPITAL LETTER L WITH LINE BELOW
Ll, -- (16#01E3B#, 16#01E3B#) LATIN SMALL LETTER L WITH LINE BELOW .. LATIN SMALL LETTER L WITH LINE BELOW
Lu, -- (16#01E3C#, 16#01E3C#) LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW
Ll, -- (16#01E3D#, 16#01E3D#) LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW
Lu, -- (16#01E3E#, 16#01E3E#) LATIN CAPITAL LETTER M WITH ACUTE .. LATIN CAPITAL LETTER M WITH ACUTE
Ll, -- (16#01E3F#, 16#01E3F#) LATIN SMALL LETTER M WITH ACUTE .. LATIN SMALL LETTER M WITH ACUTE
Lu, -- (16#01E40#, 16#01E40#) LATIN CAPITAL LETTER M WITH DOT ABOVE .. LATIN CAPITAL LETTER M WITH DOT ABOVE
Ll, -- (16#01E41#, 16#01E41#) LATIN SMALL LETTER M WITH DOT ABOVE .. LATIN SMALL LETTER M WITH DOT ABOVE
Lu, -- (16#01E42#, 16#01E42#) LATIN CAPITAL LETTER M WITH DOT BELOW .. LATIN CAPITAL LETTER M WITH DOT BELOW
Ll, -- (16#01E43#, 16#01E43#) LATIN SMALL LETTER M WITH DOT BELOW .. LATIN SMALL LETTER M WITH DOT BELOW
Lu, -- (16#01E44#, 16#01E44#) LATIN CAPITAL LETTER N WITH DOT ABOVE .. LATIN CAPITAL LETTER N WITH DOT ABOVE
Ll, -- (16#01E45#, 16#01E45#) LATIN SMALL LETTER N WITH DOT ABOVE .. LATIN SMALL LETTER N WITH DOT ABOVE
Lu, -- (16#01E46#, 16#01E46#) LATIN CAPITAL LETTER N WITH DOT BELOW .. LATIN CAPITAL LETTER N WITH DOT BELOW
Ll, -- (16#01E47#, 16#01E47#) LATIN SMALL LETTER N WITH DOT BELOW .. LATIN SMALL LETTER N WITH DOT BELOW
Lu, -- (16#01E48#, 16#01E48#) LATIN CAPITAL LETTER N WITH LINE BELOW .. LATIN CAPITAL LETTER N WITH LINE BELOW
Ll, -- (16#01E49#, 16#01E49#) LATIN SMALL LETTER N WITH LINE BELOW .. LATIN SMALL LETTER N WITH LINE BELOW
Lu, -- (16#01E4A#, 16#01E4A#) LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW
Ll, -- (16#01E4B#, 16#01E4B#) LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW
Lu, -- (16#01E4C#, 16#01E4C#) LATIN CAPITAL LETTER O WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER O WITH TILDE AND ACUTE
Ll, -- (16#01E4D#, 16#01E4D#) LATIN SMALL LETTER O WITH TILDE AND ACUTE .. LATIN SMALL LETTER O WITH TILDE AND ACUTE
Lu, -- (16#01E4E#, 16#01E4E#) LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS .. LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS
Ll, -- (16#01E4F#, 16#01E4F#) LATIN SMALL LETTER O WITH TILDE AND DIAERESIS .. LATIN SMALL LETTER O WITH TILDE AND DIAERESIS
Lu, -- (16#01E50#, 16#01E50#) LATIN CAPITAL LETTER O WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER O WITH MACRON AND GRAVE
Ll, -- (16#01E51#, 16#01E51#) LATIN SMALL LETTER O WITH MACRON AND GRAVE .. LATIN SMALL LETTER O WITH MACRON AND GRAVE
Lu, -- (16#01E52#, 16#01E52#) LATIN CAPITAL LETTER O WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER O WITH MACRON AND ACUTE
Ll, -- (16#01E53#, 16#01E53#) LATIN SMALL LETTER O WITH MACRON AND ACUTE .. LATIN SMALL LETTER O WITH MACRON AND ACUTE
Lu, -- (16#01E54#, 16#01E54#) LATIN CAPITAL LETTER P WITH ACUTE .. LATIN CAPITAL LETTER P WITH ACUTE
Ll, -- (16#01E55#, 16#01E55#) LATIN SMALL LETTER P WITH ACUTE .. LATIN SMALL LETTER P WITH ACUTE
Lu, -- (16#01E56#, 16#01E56#) LATIN CAPITAL LETTER P WITH DOT ABOVE .. LATIN CAPITAL LETTER P WITH DOT ABOVE
Ll, -- (16#01E57#, 16#01E57#) LATIN SMALL LETTER P WITH DOT ABOVE .. LATIN SMALL LETTER P WITH DOT ABOVE
Lu, -- (16#01E58#, 16#01E58#) LATIN CAPITAL LETTER R WITH DOT ABOVE .. LATIN CAPITAL LETTER R WITH DOT ABOVE
Ll, -- (16#01E59#, 16#01E59#) LATIN SMALL LETTER R WITH DOT ABOVE .. LATIN SMALL LETTER R WITH DOT ABOVE
Lu, -- (16#01E5A#, 16#01E5A#) LATIN CAPITAL LETTER R WITH DOT BELOW .. LATIN CAPITAL LETTER R WITH DOT BELOW
Ll, -- (16#01E5B#, 16#01E5B#) LATIN SMALL LETTER R WITH DOT BELOW .. LATIN SMALL LETTER R WITH DOT BELOW
Lu, -- (16#01E5C#, 16#01E5C#) LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON
Ll, -- (16#01E5D#, 16#01E5D#) LATIN SMALL LETTER R WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER R WITH DOT BELOW AND MACRON
Lu, -- (16#01E5E#, 16#01E5E#) LATIN CAPITAL LETTER R WITH LINE BELOW .. LATIN CAPITAL LETTER R WITH LINE BELOW
Ll, -- (16#01E5F#, 16#01E5F#) LATIN SMALL LETTER R WITH LINE BELOW .. LATIN SMALL LETTER R WITH LINE BELOW
Lu, -- (16#01E60#, 16#01E60#) LATIN CAPITAL LETTER S WITH DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT ABOVE
Ll, -- (16#01E61#, 16#01E61#) LATIN SMALL LETTER S WITH DOT ABOVE .. LATIN SMALL LETTER S WITH DOT ABOVE
Lu, -- (16#01E62#, 16#01E62#) LATIN CAPITAL LETTER S WITH DOT BELOW .. LATIN CAPITAL LETTER S WITH DOT BELOW
Ll, -- (16#01E63#, 16#01E63#) LATIN SMALL LETTER S WITH DOT BELOW .. LATIN SMALL LETTER S WITH DOT BELOW
Lu, -- (16#01E64#, 16#01E64#) LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE
Ll, -- (16#01E65#, 16#01E65#) LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE
Lu, -- (16#01E66#, 16#01E66#) LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE
Ll, -- (16#01E67#, 16#01E67#) LATIN SMALL LETTER S WITH CARON AND DOT ABOVE .. LATIN SMALL LETTER S WITH CARON AND DOT ABOVE
Lu, -- (16#01E68#, 16#01E68#) LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE
Ll, -- (16#01E69#, 16#01E69#) LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE
Lu, -- (16#01E6A#, 16#01E6A#) LATIN CAPITAL LETTER T WITH DOT ABOVE .. LATIN CAPITAL LETTER T WITH DOT ABOVE
Ll, -- (16#01E6B#, 16#01E6B#) LATIN SMALL LETTER T WITH DOT ABOVE .. LATIN SMALL LETTER T WITH DOT ABOVE
Lu, -- (16#01E6C#, 16#01E6C#) LATIN CAPITAL LETTER T WITH DOT BELOW .. LATIN CAPITAL LETTER T WITH DOT BELOW
Ll, -- (16#01E6D#, 16#01E6D#) LATIN SMALL LETTER T WITH DOT BELOW .. LATIN SMALL LETTER T WITH DOT BELOW
Lu, -- (16#01E6E#, 16#01E6E#) LATIN CAPITAL LETTER T WITH LINE BELOW .. LATIN CAPITAL LETTER T WITH LINE BELOW
Ll, -- (16#01E6F#, 16#01E6F#) LATIN SMALL LETTER T WITH LINE BELOW .. LATIN SMALL LETTER T WITH LINE BELOW
Lu, -- (16#01E70#, 16#01E70#) LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW
Ll, -- (16#01E71#, 16#01E71#) LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW
Lu, -- (16#01E72#, 16#01E72#) LATIN CAPITAL LETTER U WITH DIAERESIS BELOW .. LATIN CAPITAL LETTER U WITH DIAERESIS BELOW
Ll, -- (16#01E73#, 16#01E73#) LATIN SMALL LETTER U WITH DIAERESIS BELOW .. LATIN SMALL LETTER U WITH DIAERESIS BELOW
Lu, -- (16#01E74#, 16#01E74#) LATIN CAPITAL LETTER U WITH TILDE BELOW .. LATIN CAPITAL LETTER U WITH TILDE BELOW
Ll, -- (16#01E75#, 16#01E75#) LATIN SMALL LETTER U WITH TILDE BELOW .. LATIN SMALL LETTER U WITH TILDE BELOW
Lu, -- (16#01E76#, 16#01E76#) LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW
Ll, -- (16#01E77#, 16#01E77#) LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW
Lu, -- (16#01E78#, 16#01E78#) LATIN CAPITAL LETTER U WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER U WITH TILDE AND ACUTE
Ll, -- (16#01E79#, 16#01E79#) LATIN SMALL LETTER U WITH TILDE AND ACUTE .. LATIN SMALL LETTER U WITH TILDE AND ACUTE
Lu, -- (16#01E7A#, 16#01E7A#) LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS .. LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS
Ll, -- (16#01E7B#, 16#01E7B#) LATIN SMALL LETTER U WITH MACRON AND DIAERESIS .. LATIN SMALL LETTER U WITH MACRON AND DIAERESIS
Lu, -- (16#01E7C#, 16#01E7C#) LATIN CAPITAL LETTER V WITH TILDE .. LATIN CAPITAL LETTER V WITH TILDE
Ll, -- (16#01E7D#, 16#01E7D#) LATIN SMALL LETTER V WITH TILDE .. LATIN SMALL LETTER V WITH TILDE
Lu, -- (16#01E7E#, 16#01E7E#) LATIN CAPITAL LETTER V WITH DOT BELOW .. LATIN CAPITAL LETTER V WITH DOT BELOW
Ll, -- (16#01E7F#, 16#01E7F#) LATIN SMALL LETTER V WITH DOT BELOW .. LATIN SMALL LETTER V WITH DOT BELOW
Lu, -- (16#01E80#, 16#01E80#) LATIN CAPITAL LETTER W WITH GRAVE .. LATIN CAPITAL LETTER W WITH GRAVE
Ll, -- (16#01E81#, 16#01E81#) LATIN SMALL LETTER W WITH GRAVE .. LATIN SMALL LETTER W WITH GRAVE
Lu, -- (16#01E82#, 16#01E82#) LATIN CAPITAL LETTER W WITH ACUTE .. LATIN CAPITAL LETTER W WITH ACUTE
Ll, -- (16#01E83#, 16#01E83#) LATIN SMALL LETTER W WITH ACUTE .. LATIN SMALL LETTER W WITH ACUTE
Lu, -- (16#01E84#, 16#01E84#) LATIN CAPITAL LETTER W WITH DIAERESIS .. LATIN CAPITAL LETTER W WITH DIAERESIS
Ll, -- (16#01E85#, 16#01E85#) LATIN SMALL LETTER W WITH DIAERESIS .. LATIN SMALL LETTER W WITH DIAERESIS
Lu, -- (16#01E86#, 16#01E86#) LATIN CAPITAL LETTER W WITH DOT ABOVE .. LATIN CAPITAL LETTER W WITH DOT ABOVE
Ll, -- (16#01E87#, 16#01E87#) LATIN SMALL LETTER W WITH DOT ABOVE .. LATIN SMALL LETTER W WITH DOT ABOVE
Lu, -- (16#01E88#, 16#01E88#) LATIN CAPITAL LETTER W WITH DOT BELOW .. LATIN CAPITAL LETTER W WITH DOT BELOW
Ll, -- (16#01E89#, 16#01E89#) LATIN SMALL LETTER W WITH DOT BELOW .. LATIN SMALL LETTER W WITH DOT BELOW
Lu, -- (16#01E8A#, 16#01E8A#) LATIN CAPITAL LETTER X WITH DOT ABOVE .. LATIN CAPITAL LETTER X WITH DOT ABOVE
Ll, -- (16#01E8B#, 16#01E8B#) LATIN SMALL LETTER X WITH DOT ABOVE .. LATIN SMALL LETTER X WITH DOT ABOVE
Lu, -- (16#01E8C#, 16#01E8C#) LATIN CAPITAL LETTER X WITH DIAERESIS .. LATIN CAPITAL LETTER X WITH DIAERESIS
Ll, -- (16#01E8D#, 16#01E8D#) LATIN SMALL LETTER X WITH DIAERESIS .. LATIN SMALL LETTER X WITH DIAERESIS
Lu, -- (16#01E8E#, 16#01E8E#) LATIN CAPITAL LETTER Y WITH DOT ABOVE .. LATIN CAPITAL LETTER Y WITH DOT ABOVE
Ll, -- (16#01E8F#, 16#01E8F#) LATIN SMALL LETTER Y WITH DOT ABOVE .. LATIN SMALL LETTER Y WITH DOT ABOVE
Lu, -- (16#01E90#, 16#01E90#) LATIN CAPITAL LETTER Z WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Z WITH CIRCUMFLEX
Ll, -- (16#01E91#, 16#01E91#) LATIN SMALL LETTER Z WITH CIRCUMFLEX .. LATIN SMALL LETTER Z WITH CIRCUMFLEX
Lu, -- (16#01E92#, 16#01E92#) LATIN CAPITAL LETTER Z WITH DOT BELOW .. LATIN CAPITAL LETTER Z WITH DOT BELOW
Ll, -- (16#01E93#, 16#01E93#) LATIN SMALL LETTER Z WITH DOT BELOW .. LATIN SMALL LETTER Z WITH DOT BELOW
Lu, -- (16#01E94#, 16#01E94#) LATIN CAPITAL LETTER Z WITH LINE BELOW .. LATIN CAPITAL LETTER Z WITH LINE BELOW
Ll, -- (16#01E95#, 16#01E9B#) LATIN SMALL LETTER Z WITH LINE BELOW .. LATIN SMALL LETTER LONG S WITH DOT ABOVE
Lu, -- (16#01EA0#, 16#01EA0#) LATIN CAPITAL LETTER A WITH DOT BELOW .. LATIN CAPITAL LETTER A WITH DOT BELOW
Ll, -- (16#01EA1#, 16#01EA1#) LATIN SMALL LETTER A WITH DOT BELOW .. LATIN SMALL LETTER A WITH DOT BELOW
Lu, -- (16#01EA2#, 16#01EA2#) LATIN CAPITAL LETTER A WITH HOOK ABOVE .. LATIN CAPITAL LETTER A WITH HOOK ABOVE
Ll, -- (16#01EA3#, 16#01EA3#) LATIN SMALL LETTER A WITH HOOK ABOVE .. LATIN SMALL LETTER A WITH HOOK ABOVE
Lu, -- (16#01EA4#, 16#01EA4#) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE
Ll, -- (16#01EA5#, 16#01EA5#) LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE
Lu, -- (16#01EA6#, 16#01EA6#) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE
Ll, -- (16#01EA7#, 16#01EA7#) LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE
Lu, -- (16#01EA8#, 16#01EA8#) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
Ll, -- (16#01EA9#, 16#01EA9#) LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
Lu, -- (16#01EAA#, 16#01EAA#) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE
Ll, -- (16#01EAB#, 16#01EAB#) LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE
Lu, -- (16#01EAC#, 16#01EAC#) LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW
Ll, -- (16#01EAD#, 16#01EAD#) LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW
Lu, -- (16#01EAE#, 16#01EAE#) LATIN CAPITAL LETTER A WITH BREVE AND ACUTE .. LATIN CAPITAL LETTER A WITH BREVE AND ACUTE
Ll, -- (16#01EAF#, 16#01EAF#) LATIN SMALL LETTER A WITH BREVE AND ACUTE .. LATIN SMALL LETTER A WITH BREVE AND ACUTE
Lu, -- (16#01EB0#, 16#01EB0#) LATIN CAPITAL LETTER A WITH BREVE AND GRAVE .. LATIN CAPITAL LETTER A WITH BREVE AND GRAVE
Ll, -- (16#01EB1#, 16#01EB1#) LATIN SMALL LETTER A WITH BREVE AND GRAVE .. LATIN SMALL LETTER A WITH BREVE AND GRAVE
Lu, -- (16#01EB2#, 16#01EB2#) LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE
Ll, -- (16#01EB3#, 16#01EB3#) LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE
Lu, -- (16#01EB4#, 16#01EB4#) LATIN CAPITAL LETTER A WITH BREVE AND TILDE .. LATIN CAPITAL LETTER A WITH BREVE AND TILDE
Ll, -- (16#01EB5#, 16#01EB5#) LATIN SMALL LETTER A WITH BREVE AND TILDE .. LATIN SMALL LETTER A WITH BREVE AND TILDE
Lu, -- (16#01EB6#, 16#01EB6#) LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW .. LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW
Ll, -- (16#01EB7#, 16#01EB7#) LATIN SMALL LETTER A WITH BREVE AND DOT BELOW .. LATIN SMALL LETTER A WITH BREVE AND DOT BELOW
Lu, -- (16#01EB8#, 16#01EB8#) LATIN CAPITAL LETTER E WITH DOT BELOW .. LATIN CAPITAL LETTER E WITH DOT BELOW
Ll, -- (16#01EB9#, 16#01EB9#) LATIN SMALL LETTER E WITH DOT BELOW .. LATIN SMALL LETTER E WITH DOT BELOW
Lu, -- (16#01EBA#, 16#01EBA#) LATIN CAPITAL LETTER E WITH HOOK ABOVE .. LATIN CAPITAL LETTER E WITH HOOK ABOVE
Ll, -- (16#01EBB#, 16#01EBB#) LATIN SMALL LETTER E WITH HOOK ABOVE .. LATIN SMALL LETTER E WITH HOOK ABOVE
Lu, -- (16#01EBC#, 16#01EBC#) LATIN CAPITAL LETTER E WITH TILDE .. LATIN CAPITAL LETTER E WITH TILDE
Ll, -- (16#01EBD#, 16#01EBD#) LATIN SMALL LETTER E WITH TILDE .. LATIN SMALL LETTER E WITH TILDE
Lu, -- (16#01EBE#, 16#01EBE#) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE
Ll, -- (16#01EBF#, 16#01EBF#) LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE
Lu, -- (16#01EC0#, 16#01EC0#) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE
Ll, -- (16#01EC1#, 16#01EC1#) LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE
Lu, -- (16#01EC2#, 16#01EC2#) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
Ll, -- (16#01EC3#, 16#01EC3#) LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
Lu, -- (16#01EC4#, 16#01EC4#) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE
Ll, -- (16#01EC5#, 16#01EC5#) LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE
Lu, -- (16#01EC6#, 16#01EC6#) LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW
Ll, -- (16#01EC7#, 16#01EC7#) LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW
Lu, -- (16#01EC8#, 16#01EC8#) LATIN CAPITAL LETTER I WITH HOOK ABOVE .. LATIN CAPITAL LETTER I WITH HOOK ABOVE
Ll, -- (16#01EC9#, 16#01EC9#) LATIN SMALL LETTER I WITH HOOK ABOVE .. LATIN SMALL LETTER I WITH HOOK ABOVE
Lu, -- (16#01ECA#, 16#01ECA#) LATIN CAPITAL LETTER I WITH DOT BELOW .. LATIN CAPITAL LETTER I WITH DOT BELOW
Ll, -- (16#01ECB#, 16#01ECB#) LATIN SMALL LETTER I WITH DOT BELOW .. LATIN SMALL LETTER I WITH DOT BELOW
Lu, -- (16#01ECC#, 16#01ECC#) LATIN CAPITAL LETTER O WITH DOT BELOW .. LATIN CAPITAL LETTER O WITH DOT BELOW
Ll, -- (16#01ECD#, 16#01ECD#) LATIN SMALL LETTER O WITH DOT BELOW .. LATIN SMALL LETTER O WITH DOT BELOW
Lu, -- (16#01ECE#, 16#01ECE#) LATIN CAPITAL LETTER O WITH HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HOOK ABOVE
Ll, -- (16#01ECF#, 16#01ECF#) LATIN SMALL LETTER O WITH HOOK ABOVE .. LATIN SMALL LETTER O WITH HOOK ABOVE
Lu, -- (16#01ED0#, 16#01ED0#) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE
Ll, -- (16#01ED1#, 16#01ED1#) LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE
Lu, -- (16#01ED2#, 16#01ED2#) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE
Ll, -- (16#01ED3#, 16#01ED3#) LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE
Lu, -- (16#01ED4#, 16#01ED4#) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
Ll, -- (16#01ED5#, 16#01ED5#) LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
Lu, -- (16#01ED6#, 16#01ED6#) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE
Ll, -- (16#01ED7#, 16#01ED7#) LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE
Lu, -- (16#01ED8#, 16#01ED8#) LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW
Ll, -- (16#01ED9#, 16#01ED9#) LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW
Lu, -- (16#01EDA#, 16#01EDA#) LATIN CAPITAL LETTER O WITH HORN AND ACUTE .. LATIN CAPITAL LETTER O WITH HORN AND ACUTE
Ll, -- (16#01EDB#, 16#01EDB#) LATIN SMALL LETTER O WITH HORN AND ACUTE .. LATIN SMALL LETTER O WITH HORN AND ACUTE
Lu, -- (16#01EDC#, 16#01EDC#) LATIN CAPITAL LETTER O WITH HORN AND GRAVE .. LATIN CAPITAL LETTER O WITH HORN AND GRAVE
Ll, -- (16#01EDD#, 16#01EDD#) LATIN SMALL LETTER O WITH HORN AND GRAVE .. LATIN SMALL LETTER O WITH HORN AND GRAVE
Lu, -- (16#01EDE#, 16#01EDE#) LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE
Ll, -- (16#01EDF#, 16#01EDF#) LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE
Lu, -- (16#01EE0#, 16#01EE0#) LATIN CAPITAL LETTER O WITH HORN AND TILDE .. LATIN CAPITAL LETTER O WITH HORN AND TILDE
Ll, -- (16#01EE1#, 16#01EE1#) LATIN SMALL LETTER O WITH HORN AND TILDE .. LATIN SMALL LETTER O WITH HORN AND TILDE
Lu, -- (16#01EE2#, 16#01EE2#) LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW
Ll, -- (16#01EE3#, 16#01EE3#) LATIN SMALL LETTER O WITH HORN AND DOT BELOW .. LATIN SMALL LETTER O WITH HORN AND DOT BELOW
Lu, -- (16#01EE4#, 16#01EE4#) LATIN CAPITAL LETTER U WITH DOT BELOW .. LATIN CAPITAL LETTER U WITH DOT BELOW
Ll, -- (16#01EE5#, 16#01EE5#) LATIN SMALL LETTER U WITH DOT BELOW .. LATIN SMALL LETTER U WITH DOT BELOW
Lu, -- (16#01EE6#, 16#01EE6#) LATIN CAPITAL LETTER U WITH HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HOOK ABOVE
Ll, -- (16#01EE7#, 16#01EE7#) LATIN SMALL LETTER U WITH HOOK ABOVE .. LATIN SMALL LETTER U WITH HOOK ABOVE
Lu, -- (16#01EE8#, 16#01EE8#) LATIN CAPITAL LETTER U WITH HORN AND ACUTE .. LATIN CAPITAL LETTER U WITH HORN AND ACUTE
Ll, -- (16#01EE9#, 16#01EE9#) LATIN SMALL LETTER U WITH HORN AND ACUTE .. LATIN SMALL LETTER U WITH HORN AND ACUTE
Lu, -- (16#01EEA#, 16#01EEA#) LATIN CAPITAL LETTER U WITH HORN AND GRAVE .. LATIN CAPITAL LETTER U WITH HORN AND GRAVE
Ll, -- (16#01EEB#, 16#01EEB#) LATIN SMALL LETTER U WITH HORN AND GRAVE .. LATIN SMALL LETTER U WITH HORN AND GRAVE
Lu, -- (16#01EEC#, 16#01EEC#) LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE
Ll, -- (16#01EED#, 16#01EED#) LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE
Lu, -- (16#01EEE#, 16#01EEE#) LATIN CAPITAL LETTER U WITH HORN AND TILDE .. LATIN CAPITAL LETTER U WITH HORN AND TILDE
Ll, -- (16#01EEF#, 16#01EEF#) LATIN SMALL LETTER U WITH HORN AND TILDE .. LATIN SMALL LETTER U WITH HORN AND TILDE
Lu, -- (16#01EF0#, 16#01EF0#) LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW
Ll, -- (16#01EF1#, 16#01EF1#) LATIN SMALL LETTER U WITH HORN AND DOT BELOW .. LATIN SMALL LETTER U WITH HORN AND DOT BELOW
Lu, -- (16#01EF2#, 16#01EF2#) LATIN CAPITAL LETTER Y WITH GRAVE .. LATIN CAPITAL LETTER Y WITH GRAVE
Ll, -- (16#01EF3#, 16#01EF3#) LATIN SMALL LETTER Y WITH GRAVE .. LATIN SMALL LETTER Y WITH GRAVE
Lu, -- (16#01EF4#, 16#01EF4#) LATIN CAPITAL LETTER Y WITH DOT BELOW .. LATIN CAPITAL LETTER Y WITH DOT BELOW
Ll, -- (16#01EF5#, 16#01EF5#) LATIN SMALL LETTER Y WITH DOT BELOW .. LATIN SMALL LETTER Y WITH DOT BELOW
Lu, -- (16#01EF6#, 16#01EF6#) LATIN CAPITAL LETTER Y WITH HOOK ABOVE .. LATIN CAPITAL LETTER Y WITH HOOK ABOVE
Ll, -- (16#01EF7#, 16#01EF7#) LATIN SMALL LETTER Y WITH HOOK ABOVE .. LATIN SMALL LETTER Y WITH HOOK ABOVE
Lu, -- (16#01EF8#, 16#01EF8#) LATIN CAPITAL LETTER Y WITH TILDE .. LATIN CAPITAL LETTER Y WITH TILDE
Ll, -- (16#01EF9#, 16#01EF9#) LATIN SMALL LETTER Y WITH TILDE .. LATIN SMALL LETTER Y WITH TILDE
Ll, -- (16#01F00#, 16#01F07#) GREEK SMALL LETTER ALPHA WITH PSILI .. GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI
Lu, -- (16#01F08#, 16#01F0F#) GREEK CAPITAL LETTER ALPHA WITH PSILI .. GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI
Ll, -- (16#01F10#, 16#01F15#) GREEK SMALL LETTER EPSILON WITH PSILI .. GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA
Lu, -- (16#01F18#, 16#01F1D#) GREEK CAPITAL LETTER EPSILON WITH PSILI .. GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA
Ll, -- (16#01F20#, 16#01F27#) GREEK SMALL LETTER ETA WITH PSILI .. GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI
Lu, -- (16#01F28#, 16#01F2F#) GREEK CAPITAL LETTER ETA WITH PSILI .. GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI
Ll, -- (16#01F30#, 16#01F37#) GREEK SMALL LETTER IOTA WITH PSILI .. GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI
Lu, -- (16#01F38#, 16#01F3F#) GREEK CAPITAL LETTER IOTA WITH PSILI .. GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI
Ll, -- (16#01F40#, 16#01F45#) GREEK SMALL LETTER OMICRON WITH PSILI .. GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA
Lu, -- (16#01F48#, 16#01F4D#) GREEK CAPITAL LETTER OMICRON WITH PSILI .. GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA
Ll, -- (16#01F50#, 16#01F57#) GREEK SMALL LETTER UPSILON WITH PSILI .. GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI
Lu, -- (16#01F59#, 16#01F59#) GREEK CAPITAL LETTER UPSILON WITH DASIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA
Lu, -- (16#01F5B#, 16#01F5B#) GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA
Lu, -- (16#01F5D#, 16#01F5D#) GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA
Lu, -- (16#01F5F#, 16#01F5F#) GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI
Ll, -- (16#01F60#, 16#01F67#) GREEK SMALL LETTER OMEGA WITH PSILI .. GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI
Lu, -- (16#01F68#, 16#01F6F#) GREEK CAPITAL LETTER OMEGA WITH PSILI .. GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI
Ll, -- (16#01F70#, 16#01F7D#) GREEK SMALL LETTER ALPHA WITH VARIA .. GREEK SMALL LETTER OMEGA WITH OXIA
Ll, -- (16#01F80#, 16#01F87#) GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI .. GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
Lt, -- (16#01F88#, 16#01F8F#) GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI .. GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
Ll, -- (16#01F90#, 16#01F97#) GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI .. GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
Lt, -- (16#01F98#, 16#01F9F#) GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI .. GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
Ll, -- (16#01FA0#, 16#01FA7#) GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI .. GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
Lt, -- (16#01FA8#, 16#01FAF#) GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI .. GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
Ll, -- (16#01FB0#, 16#01FB4#) GREEK SMALL LETTER ALPHA WITH VRACHY .. GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI
Ll, -- (16#01FB6#, 16#01FB7#) GREEK SMALL LETTER ALPHA WITH PERISPOMENI .. GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI
Lu, -- (16#01FB8#, 16#01FBB#) GREEK CAPITAL LETTER ALPHA WITH VRACHY .. GREEK CAPITAL LETTER ALPHA WITH OXIA
Lt, -- (16#01FBC#, 16#01FBC#) GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI .. GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI
Sk, -- (16#01FBD#, 16#01FBD#) GREEK KORONIS .. GREEK KORONIS
Ll, -- (16#01FBE#, 16#01FBE#) GREEK PROSGEGRAMMENI .. GREEK PROSGEGRAMMENI
Sk, -- (16#01FBF#, 16#01FC1#) GREEK PSILI .. GREEK DIALYTIKA AND PERISPOMENI
Ll, -- (16#01FC2#, 16#01FC4#) GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI .. GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI
Ll, -- (16#01FC6#, 16#01FC7#) GREEK SMALL LETTER ETA WITH PERISPOMENI .. GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI
Lu, -- (16#01FC8#, 16#01FCB#) GREEK CAPITAL LETTER EPSILON WITH VARIA .. GREEK CAPITAL LETTER ETA WITH OXIA
Lt, -- (16#01FCC#, 16#01FCC#) GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI .. GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI
Sk, -- (16#01FCD#, 16#01FCF#) GREEK PSILI AND VARIA .. GREEK PSILI AND PERISPOMENI
Ll, -- (16#01FD0#, 16#01FD3#) GREEK SMALL LETTER IOTA WITH VRACHY .. GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
Ll, -- (16#01FD6#, 16#01FD7#) GREEK SMALL LETTER IOTA WITH PERISPOMENI .. GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI
Lu, -- (16#01FD8#, 16#01FDB#) GREEK CAPITAL LETTER IOTA WITH VRACHY .. GREEK CAPITAL LETTER IOTA WITH OXIA
Sk, -- (16#01FDD#, 16#01FDF#) GREEK DASIA AND VARIA .. GREEK DASIA AND PERISPOMENI
Ll, -- (16#01FE0#, 16#01FE7#) GREEK SMALL LETTER UPSILON WITH VRACHY .. GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI
Lu, -- (16#01FE8#, 16#01FEC#) GREEK CAPITAL LETTER UPSILON WITH VRACHY .. GREEK CAPITAL LETTER RHO WITH DASIA
Sk, -- (16#01FED#, 16#01FEF#) GREEK DIALYTIKA AND VARIA .. GREEK VARIA
Ll, -- (16#01FF2#, 16#01FF4#) GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI .. GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI
Ll, -- (16#01FF6#, 16#01FF7#) GREEK SMALL LETTER OMEGA WITH PERISPOMENI .. GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI
Lu, -- (16#01FF8#, 16#01FFB#) GREEK CAPITAL LETTER OMICRON WITH VARIA .. GREEK CAPITAL LETTER OMEGA WITH OXIA
Lt, -- (16#01FFC#, 16#01FFC#) GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI .. GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI
Sk, -- (16#01FFD#, 16#01FFE#) GREEK OXIA .. GREEK DASIA
Zs, -- (16#02000#, 16#0200B#) EN QUAD .. ZERO WIDTH SPACE
Cf, -- (16#0200C#, 16#0200F#) ZERO WIDTH NON-JOINER .. RIGHT-TO-LEFT MARK
Pd, -- (16#02010#, 16#02015#) HYPHEN .. HORIZONTAL BAR
Po, -- (16#02016#, 16#02017#) DOUBLE VERTICAL LINE .. DOUBLE LOW LINE
Pi, -- (16#02018#, 16#02018#) LEFT SINGLE QUOTATION MARK .. LEFT SINGLE QUOTATION MARK
Pf, -- (16#02019#, 16#02019#) RIGHT SINGLE QUOTATION MARK .. RIGHT SINGLE QUOTATION MARK
Ps, -- (16#0201A#, 16#0201A#) SINGLE LOW-9 QUOTATION MARK .. SINGLE LOW-9 QUOTATION MARK
Pi, -- (16#0201B#, 16#0201C#) SINGLE HIGH-REVERSED-9 QUOTATION MARK .. LEFT DOUBLE QUOTATION MARK
Pf, -- (16#0201D#, 16#0201D#) RIGHT DOUBLE QUOTATION MARK .. RIGHT DOUBLE QUOTATION MARK
Ps, -- (16#0201E#, 16#0201E#) DOUBLE LOW-9 QUOTATION MARK .. DOUBLE LOW-9 QUOTATION MARK
Pi, -- (16#0201F#, 16#0201F#) DOUBLE HIGH-REVERSED-9 QUOTATION MARK .. DOUBLE HIGH-REVERSED-9 QUOTATION MARK
Po, -- (16#02020#, 16#02027#) DAGGER .. HYPHENATION POINT
Zl, -- (16#02028#, 16#02028#) LINE SEPARATOR .. LINE SEPARATOR
Zp, -- (16#02029#, 16#02029#) PARAGRAPH SEPARATOR .. PARAGRAPH SEPARATOR
Cf, -- (16#0202A#, 16#0202E#) LEFT-TO-RIGHT EMBEDDING .. RIGHT-TO-LEFT OVERRIDE
Zs, -- (16#0202F#, 16#0202F#) NARROW NO-BREAK SPACE .. NARROW NO-BREAK SPACE
Po, -- (16#02030#, 16#02038#) PER MILLE SIGN .. CARET
Pi, -- (16#02039#, 16#02039#) SINGLE LEFT-POINTING ANGLE QUOTATION MARK .. SINGLE LEFT-POINTING ANGLE QUOTATION MARK
Pf, -- (16#0203A#, 16#0203A#) SINGLE RIGHT-POINTING ANGLE QUOTATION MARK .. SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
Po, -- (16#0203B#, 16#0203E#) REFERENCE MARK .. OVERLINE
Pc, -- (16#0203F#, 16#02040#) UNDERTIE .. CHARACTER TIE
Po, -- (16#02041#, 16#02043#) CARET INSERTION POINT .. HYPHEN BULLET
Sm, -- (16#02044#, 16#02044#) FRACTION SLASH .. FRACTION SLASH
Ps, -- (16#02045#, 16#02045#) LEFT SQUARE BRACKET WITH QUILL .. LEFT SQUARE BRACKET WITH QUILL
Pe, -- (16#02046#, 16#02046#) RIGHT SQUARE BRACKET WITH QUILL .. RIGHT SQUARE BRACKET WITH QUILL
Po, -- (16#02047#, 16#02051#) DOUBLE QUESTION MARK .. TWO ASTERISKS ALIGNED VERTICALLY
Sm, -- (16#02052#, 16#02052#) COMMERCIAL MINUS SIGN .. COMMERCIAL MINUS SIGN
Po, -- (16#02053#, 16#02053#) SWUNG DASH .. SWUNG DASH
Pc, -- (16#02054#, 16#02054#) INVERTED UNDERTIE .. INVERTED UNDERTIE
Po, -- (16#02057#, 16#02057#) QUADRUPLE PRIME .. QUADRUPLE PRIME
Zs, -- (16#0205F#, 16#0205F#) MEDIUM MATHEMATICAL SPACE .. MEDIUM MATHEMATICAL SPACE
Cf, -- (16#02060#, 16#02063#) WORD JOINER .. INVISIBLE SEPARATOR
Cf, -- (16#0206A#, 16#0206F#) INHIBIT SYMMETRIC SWAPPING .. NOMINAL DIGIT SHAPES
No, -- (16#02070#, 16#02070#) SUPERSCRIPT ZERO .. SUPERSCRIPT ZERO
Ll, -- (16#02071#, 16#02071#) SUPERSCRIPT LATIN SMALL LETTER I .. SUPERSCRIPT LATIN SMALL LETTER I
No, -- (16#02074#, 16#02079#) SUPERSCRIPT FOUR .. SUPERSCRIPT NINE
Sm, -- (16#0207A#, 16#0207C#) SUPERSCRIPT PLUS SIGN .. SUPERSCRIPT EQUALS SIGN
Ps, -- (16#0207D#, 16#0207D#) SUPERSCRIPT LEFT PARENTHESIS .. SUPERSCRIPT LEFT PARENTHESIS
Pe, -- (16#0207E#, 16#0207E#) SUPERSCRIPT RIGHT PARENTHESIS .. SUPERSCRIPT RIGHT PARENTHESIS
Ll, -- (16#0207F#, 16#0207F#) SUPERSCRIPT LATIN SMALL LETTER N .. SUPERSCRIPT LATIN SMALL LETTER N
No, -- (16#02080#, 16#02089#) SUBSCRIPT ZERO .. SUBSCRIPT NINE
Sm, -- (16#0208A#, 16#0208C#) SUBSCRIPT PLUS SIGN .. SUBSCRIPT EQUALS SIGN
Ps, -- (16#0208D#, 16#0208D#) SUBSCRIPT LEFT PARENTHESIS .. SUBSCRIPT LEFT PARENTHESIS
Pe, -- (16#0208E#, 16#0208E#) SUBSCRIPT RIGHT PARENTHESIS .. SUBSCRIPT RIGHT PARENTHESIS
Sc, -- (16#020A0#, 16#020B1#) EURO-CURRENCY SIGN .. PESO SIGN
Mn, -- (16#020D0#, 16#020DC#) COMBINING LEFT HARPOON ABOVE .. COMBINING FOUR DOTS ABOVE
Me, -- (16#020DD#, 16#020E0#) COMBINING ENCLOSING CIRCLE .. COMBINING ENCLOSING CIRCLE BACKSLASH
Mn, -- (16#020E1#, 16#020E1#) COMBINING LEFT RIGHT ARROW ABOVE .. COMBINING LEFT RIGHT ARROW ABOVE
Me, -- (16#020E2#, 16#020E4#) COMBINING ENCLOSING SCREEN .. COMBINING ENCLOSING UPWARD POINTING TRIANGLE
Mn, -- (16#020E5#, 16#020EA#) COMBINING REVERSE SOLIDUS OVERLAY .. COMBINING LEFTWARDS ARROW OVERLAY
So, -- (16#02100#, 16#02101#) ACCOUNT OF .. ADDRESSED TO THE SUBJECT
Lu, -- (16#02102#, 16#02102#) DOUBLE-STRUCK CAPITAL C .. DOUBLE-STRUCK CAPITAL C
So, -- (16#02103#, 16#02106#) DEGREE CELSIUS .. CADA UNA
Lu, -- (16#02107#, 16#02107#) EULER CONSTANT .. EULER CONSTANT
So, -- (16#02108#, 16#02109#) SCRUPLE .. DEGREE FAHRENHEIT
Ll, -- (16#0210A#, 16#0210A#) SCRIPT SMALL G .. SCRIPT SMALL G
Lu, -- (16#0210B#, 16#0210D#) SCRIPT CAPITAL H .. DOUBLE-STRUCK CAPITAL H
Ll, -- (16#0210E#, 16#0210F#) PLANCK CONSTANT .. PLANCK CONSTANT OVER TWO PI
Lu, -- (16#02110#, 16#02112#) SCRIPT CAPITAL I .. SCRIPT CAPITAL L
Ll, -- (16#02113#, 16#02113#) SCRIPT SMALL L .. SCRIPT SMALL L
So, -- (16#02114#, 16#02114#) L B BAR SYMBOL .. L B BAR SYMBOL
Lu, -- (16#02115#, 16#02115#) DOUBLE-STRUCK CAPITAL N .. DOUBLE-STRUCK CAPITAL N
So, -- (16#02116#, 16#02118#) NUMERO SIGN .. SCRIPT CAPITAL P
Lu, -- (16#02119#, 16#0211D#) DOUBLE-STRUCK CAPITAL P .. DOUBLE-STRUCK CAPITAL R
So, -- (16#0211E#, 16#02123#) PRESCRIPTION TAKE .. VERSICLE
Lu, -- (16#02124#, 16#02124#) DOUBLE-STRUCK CAPITAL Z .. DOUBLE-STRUCK CAPITAL Z
So, -- (16#02125#, 16#02125#) OUNCE SIGN .. OUNCE SIGN
Lu, -- (16#02126#, 16#02126#) OHM SIGN .. OHM SIGN
So, -- (16#02127#, 16#02127#) INVERTED OHM SIGN .. INVERTED OHM SIGN
Lu, -- (16#02128#, 16#02128#) BLACK-LETTER CAPITAL Z .. BLACK-LETTER CAPITAL Z
So, -- (16#02129#, 16#02129#) TURNED GREEK SMALL LETTER IOTA .. TURNED GREEK SMALL LETTER IOTA
Lu, -- (16#0212A#, 16#0212D#) KELVIN SIGN .. BLACK-LETTER CAPITAL C
So, -- (16#0212E#, 16#0212E#) ESTIMATED SYMBOL .. ESTIMATED SYMBOL
Ll, -- (16#0212F#, 16#0212F#) SCRIPT SMALL E .. SCRIPT SMALL E
Lu, -- (16#02130#, 16#02131#) SCRIPT CAPITAL E .. SCRIPT CAPITAL F
So, -- (16#02132#, 16#02132#) TURNED CAPITAL F .. TURNED CAPITAL F
Lu, -- (16#02133#, 16#02133#) SCRIPT CAPITAL M .. SCRIPT CAPITAL M
Ll, -- (16#02134#, 16#02134#) SCRIPT SMALL O .. SCRIPT SMALL O
Lo, -- (16#02135#, 16#02138#) ALEF SYMBOL .. DALET SYMBOL
Ll, -- (16#02139#, 16#02139#) INFORMATION SOURCE .. INFORMATION SOURCE
So, -- (16#0213A#, 16#0213B#) ROTATED CAPITAL Q .. FACSIMILE SIGN
Ll, -- (16#0213D#, 16#0213D#) DOUBLE-STRUCK SMALL GAMMA .. DOUBLE-STRUCK SMALL GAMMA
Lu, -- (16#0213E#, 16#0213F#) DOUBLE-STRUCK CAPITAL GAMMA .. DOUBLE-STRUCK CAPITAL PI
Sm, -- (16#02140#, 16#02144#) DOUBLE-STRUCK N-ARY SUMMATION .. TURNED SANS-SERIF CAPITAL Y
Lu, -- (16#02145#, 16#02145#) DOUBLE-STRUCK ITALIC CAPITAL D .. DOUBLE-STRUCK ITALIC CAPITAL D
Ll, -- (16#02146#, 16#02149#) DOUBLE-STRUCK ITALIC SMALL D .. DOUBLE-STRUCK ITALIC SMALL J
So, -- (16#0214A#, 16#0214A#) PROPERTY LINE .. PROPERTY LINE
Sm, -- (16#0214B#, 16#0214B#) TURNED AMPERSAND .. TURNED AMPERSAND
No, -- (16#02153#, 16#0215F#) VULGAR FRACTION ONE THIRD .. FRACTION NUMERATOR ONE
Nl, -- (16#02160#, 16#02183#) ROMAN NUMERAL ONE .. ROMAN NUMERAL REVERSED ONE HUNDRED
Sm, -- (16#02190#, 16#02194#) LEFTWARDS ARROW .. LEFT RIGHT ARROW
So, -- (16#02195#, 16#02199#) UP DOWN ARROW .. SOUTH WEST ARROW
Sm, -- (16#0219A#, 16#0219B#) LEFTWARDS ARROW WITH STROKE .. RIGHTWARDS ARROW WITH STROKE
So, -- (16#0219C#, 16#0219F#) LEFTWARDS WAVE ARROW .. UPWARDS TWO HEADED ARROW
Sm, -- (16#021A0#, 16#021A0#) RIGHTWARDS TWO HEADED ARROW .. RIGHTWARDS TWO HEADED ARROW
So, -- (16#021A1#, 16#021A2#) DOWNWARDS TWO HEADED ARROW .. LEFTWARDS ARROW WITH TAIL
Sm, -- (16#021A3#, 16#021A3#) RIGHTWARDS ARROW WITH TAIL .. RIGHTWARDS ARROW WITH TAIL
So, -- (16#021A4#, 16#021A5#) LEFTWARDS ARROW FROM BAR .. UPWARDS ARROW FROM BAR
Sm, -- (16#021A6#, 16#021A6#) RIGHTWARDS ARROW FROM BAR .. RIGHTWARDS ARROW FROM BAR
So, -- (16#021A7#, 16#021AD#) DOWNWARDS ARROW FROM BAR .. LEFT RIGHT WAVE ARROW
Sm, -- (16#021AE#, 16#021AE#) LEFT RIGHT ARROW WITH STROKE .. LEFT RIGHT ARROW WITH STROKE
So, -- (16#021AF#, 16#021CD#) DOWNWARDS ZIGZAG ARROW .. LEFTWARDS DOUBLE ARROW WITH STROKE
Sm, -- (16#021CE#, 16#021CF#) LEFT RIGHT DOUBLE ARROW WITH STROKE .. RIGHTWARDS DOUBLE ARROW WITH STROKE
So, -- (16#021D0#, 16#021D1#) LEFTWARDS DOUBLE ARROW .. UPWARDS DOUBLE ARROW
Sm, -- (16#021D2#, 16#021D2#) RIGHTWARDS DOUBLE ARROW .. RIGHTWARDS DOUBLE ARROW
So, -- (16#021D3#, 16#021D3#) DOWNWARDS DOUBLE ARROW .. DOWNWARDS DOUBLE ARROW
Sm, -- (16#021D4#, 16#021D4#) LEFT RIGHT DOUBLE ARROW .. LEFT RIGHT DOUBLE ARROW
So, -- (16#021D5#, 16#021F3#) UP DOWN DOUBLE ARROW .. UP DOWN WHITE ARROW
Sm, -- (16#021F4#, 16#022FF#) RIGHT ARROW WITH SMALL CIRCLE .. Z NOTATION BAG MEMBERSHIP
So, -- (16#02300#, 16#02307#) DIAMETER SIGN .. WAVY LINE
Sm, -- (16#02308#, 16#0230B#) LEFT CEILING .. RIGHT FLOOR
So, -- (16#0230C#, 16#0231F#) BOTTOM RIGHT CROP .. BOTTOM RIGHT CORNER
Sm, -- (16#02320#, 16#02321#) TOP HALF INTEGRAL .. BOTTOM HALF INTEGRAL
So, -- (16#02322#, 16#02328#) FROWN .. KEYBOARD
Ps, -- (16#02329#, 16#02329#) LEFT-POINTING ANGLE BRACKET .. LEFT-POINTING ANGLE BRACKET
Pe, -- (16#0232A#, 16#0232A#) RIGHT-POINTING ANGLE BRACKET .. RIGHT-POINTING ANGLE BRACKET
So, -- (16#0232B#, 16#0237B#) ERASE TO THE LEFT .. NOT CHECK MARK
Sm, -- (16#0237C#, 16#0237C#) RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW .. RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW
So, -- (16#0237D#, 16#0239A#) SHOULDERED OPEN BOX .. CLEAR SCREEN SYMBOL
Sm, -- (16#0239B#, 16#023B3#) LEFT PARENTHESIS UPPER HOOK .. SUMMATION BOTTOM
Ps, -- (16#023B4#, 16#023B4#) TOP SQUARE BRACKET .. TOP SQUARE BRACKET
Pe, -- (16#023B5#, 16#023B5#) BOTTOM SQUARE BRACKET .. BOTTOM SQUARE BRACKET
Po, -- (16#023B6#, 16#023B6#) BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET .. BOTTOM SQUARE BRACKET OVER TOP SQUARE BRACKET
So, -- (16#023B7#, 16#023D0#) RADICAL SYMBOL BOTTOM .. VERTICAL LINE EXTENSION
So, -- (16#02400#, 16#02426#) SYMBOL FOR NULL .. SYMBOL FOR SUBSTITUTE FORM TWO
So, -- (16#02440#, 16#0244A#) OCR HOOK .. OCR DOUBLE BACKSLASH
No, -- (16#02460#, 16#0249B#) CIRCLED DIGIT ONE .. NUMBER TWENTY FULL STOP
So, -- (16#0249C#, 16#024E9#) PARENTHESIZED LATIN SMALL LETTER A .. CIRCLED LATIN SMALL LETTER Z
No, -- (16#024EA#, 16#024FF#) CIRCLED DIGIT ZERO .. NEGATIVE CIRCLED DIGIT ZERO
So, -- (16#02500#, 16#025B6#) BOX DRAWINGS LIGHT HORIZONTAL .. BLACK RIGHT-POINTING TRIANGLE
Sm, -- (16#025B7#, 16#025B7#) WHITE RIGHT-POINTING TRIANGLE .. WHITE RIGHT-POINTING TRIANGLE
So, -- (16#025B8#, 16#025C0#) BLACK RIGHT-POINTING SMALL TRIANGLE .. BLACK LEFT-POINTING TRIANGLE
Sm, -- (16#025C1#, 16#025C1#) WHITE LEFT-POINTING TRIANGLE .. WHITE LEFT-POINTING TRIANGLE
So, -- (16#025C2#, 16#025F7#) BLACK LEFT-POINTING SMALL TRIANGLE .. WHITE CIRCLE WITH UPPER RIGHT QUADRANT
Sm, -- (16#025F8#, 16#025FF#) UPPER LEFT TRIANGLE .. LOWER RIGHT TRIANGLE
So, -- (16#02600#, 16#02617#) BLACK SUN WITH RAYS .. BLACK SHOGI PIECE
So, -- (16#02619#, 16#0266E#) REVERSED ROTATED FLORAL HEART BULLET .. MUSIC NATURAL SIGN
Sm, -- (16#0266F#, 16#0266F#) MUSIC SHARP SIGN .. MUSIC SHARP SIGN
So, -- (16#02670#, 16#0267D#) WEST SYRIAC CROSS .. PARTIALLY-RECYCLED PAPER SYMBOL
So, -- (16#02680#, 16#02691#) DIE FACE-1 .. BLACK FLAG
So, -- (16#026A0#, 16#026A1#) WARNING SIGN .. HIGH VOLTAGE SIGN
So, -- (16#02701#, 16#02704#) UPPER BLADE SCISSORS .. WHITE SCISSORS
So, -- (16#02706#, 16#02709#) TELEPHONE LOCATION SIGN .. ENVELOPE
So, -- (16#0270C#, 16#02727#) VICTORY HAND .. WHITE FOUR POINTED STAR
So, -- (16#02729#, 16#0274B#) STRESS OUTLINED WHITE STAR .. HEAVY EIGHT TEARDROP-SPOKED PROPELLER ASTERISK
So, -- (16#0274D#, 16#0274D#) SHADOWED WHITE CIRCLE .. SHADOWED WHITE CIRCLE
So, -- (16#0274F#, 16#02752#) LOWER RIGHT DROP-SHADOWED WHITE SQUARE .. UPPER RIGHT SHADOWED WHITE SQUARE
So, -- (16#02756#, 16#02756#) BLACK DIAMOND MINUS WHITE X .. BLACK DIAMOND MINUS WHITE X
So, -- (16#02758#, 16#0275E#) LIGHT VERTICAL BAR .. HEAVY DOUBLE COMMA QUOTATION MARK ORNAMENT
So, -- (16#02761#, 16#02767#) CURVED STEM PARAGRAPH SIGN ORNAMENT .. ROTATED FLORAL HEART BULLET
Ps, -- (16#02768#, 16#02768#) MEDIUM LEFT PARENTHESIS ORNAMENT .. MEDIUM LEFT PARENTHESIS ORNAMENT
Pe, -- (16#02769#, 16#02769#) MEDIUM RIGHT PARENTHESIS ORNAMENT .. MEDIUM RIGHT PARENTHESIS ORNAMENT
Ps, -- (16#0276A#, 16#0276A#) MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT .. MEDIUM FLATTENED LEFT PARENTHESIS ORNAMENT
Pe, -- (16#0276B#, 16#0276B#) MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT .. MEDIUM FLATTENED RIGHT PARENTHESIS ORNAMENT
Ps, -- (16#0276C#, 16#0276C#) MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT .. MEDIUM LEFT-POINTING ANGLE BRACKET ORNAMENT
Pe, -- (16#0276D#, 16#0276D#) MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT .. MEDIUM RIGHT-POINTING ANGLE BRACKET ORNAMENT
Ps, -- (16#0276E#, 16#0276E#) HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT .. HEAVY LEFT-POINTING ANGLE QUOTATION MARK ORNAMENT
Pe, -- (16#0276F#, 16#0276F#) HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT .. HEAVY RIGHT-POINTING ANGLE QUOTATION MARK ORNAMENT
Ps, -- (16#02770#, 16#02770#) HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT .. HEAVY LEFT-POINTING ANGLE BRACKET ORNAMENT
Pe, -- (16#02771#, 16#02771#) HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT .. HEAVY RIGHT-POINTING ANGLE BRACKET ORNAMENT
Ps, -- (16#02772#, 16#02772#) LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT .. LIGHT LEFT TORTOISE SHELL BRACKET ORNAMENT
Pe, -- (16#02773#, 16#02773#) LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT .. LIGHT RIGHT TORTOISE SHELL BRACKET ORNAMENT
Ps, -- (16#02774#, 16#02774#) MEDIUM LEFT CURLY BRACKET ORNAMENT .. MEDIUM LEFT CURLY BRACKET ORNAMENT
Pe, -- (16#02775#, 16#02775#) MEDIUM RIGHT CURLY BRACKET ORNAMENT .. MEDIUM RIGHT CURLY BRACKET ORNAMENT
No, -- (16#02776#, 16#02793#) DINGBAT NEGATIVE CIRCLED DIGIT ONE .. DINGBAT NEGATIVE CIRCLED SANS-SERIF NUMBER TEN
So, -- (16#02794#, 16#02794#) HEAVY WIDE-HEADED RIGHTWARDS ARROW .. HEAVY WIDE-HEADED RIGHTWARDS ARROW
So, -- (16#02798#, 16#027AF#) HEAVY SOUTH EAST ARROW .. NOTCHED LOWER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW
So, -- (16#027B1#, 16#027BE#) NOTCHED UPPER RIGHT-SHADOWED WHITE RIGHTWARDS ARROW .. OPEN-OUTLINED RIGHTWARDS ARROW
Sm, -- (16#027D0#, 16#027E5#) WHITE DIAMOND WITH CENTRED DOT .. WHITE SQUARE WITH RIGHTWARDS TICK
Ps, -- (16#027E6#, 16#027E6#) MATHEMATICAL LEFT WHITE SQUARE BRACKET .. MATHEMATICAL LEFT WHITE SQUARE BRACKET
Pe, -- (16#027E7#, 16#027E7#) MATHEMATICAL RIGHT WHITE SQUARE BRACKET .. MATHEMATICAL RIGHT WHITE SQUARE BRACKET
Ps, -- (16#027E8#, 16#027E8#) MATHEMATICAL LEFT ANGLE BRACKET .. MATHEMATICAL LEFT ANGLE BRACKET
Pe, -- (16#027E9#, 16#027E9#) MATHEMATICAL RIGHT ANGLE BRACKET .. MATHEMATICAL RIGHT ANGLE BRACKET
Ps, -- (16#027EA#, 16#027EA#) MATHEMATICAL LEFT DOUBLE ANGLE BRACKET .. MATHEMATICAL LEFT DOUBLE ANGLE BRACKET
Pe, -- (16#027EB#, 16#027EB#) MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET .. MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET
Sm, -- (16#027F0#, 16#027FF#) UPWARDS QUADRUPLE ARROW .. LONG RIGHTWARDS SQUIGGLE ARROW
So, -- (16#02800#, 16#028FF#) BRAILLE PATTERN BLANK .. BRAILLE PATTERN DOTS-12345678
Sm, -- (16#02900#, 16#02982#) RIGHTWARDS TWO-HEADED ARROW WITH VERTICAL STROKE .. Z NOTATION TYPE COLON
Ps, -- (16#02983#, 16#02983#) LEFT WHITE CURLY BRACKET .. LEFT WHITE CURLY BRACKET
Pe, -- (16#02984#, 16#02984#) RIGHT WHITE CURLY BRACKET .. RIGHT WHITE CURLY BRACKET
Ps, -- (16#02985#, 16#02985#) LEFT WHITE PARENTHESIS .. LEFT WHITE PARENTHESIS
Pe, -- (16#02986#, 16#02986#) RIGHT WHITE PARENTHESIS .. RIGHT WHITE PARENTHESIS
Ps, -- (16#02987#, 16#02987#) Z NOTATION LEFT IMAGE BRACKET .. Z NOTATION LEFT IMAGE BRACKET
Pe, -- (16#02988#, 16#02988#) Z NOTATION RIGHT IMAGE BRACKET .. Z NOTATION RIGHT IMAGE BRACKET
Ps, -- (16#02989#, 16#02989#) Z NOTATION LEFT BINDING BRACKET .. Z NOTATION LEFT BINDING BRACKET
Pe, -- (16#0298A#, 16#0298A#) Z NOTATION RIGHT BINDING BRACKET .. Z NOTATION RIGHT BINDING BRACKET
Ps, -- (16#0298B#, 16#0298B#) LEFT SQUARE BRACKET WITH UNDERBAR .. LEFT SQUARE BRACKET WITH UNDERBAR
Pe, -- (16#0298C#, 16#0298C#) RIGHT SQUARE BRACKET WITH UNDERBAR .. RIGHT SQUARE BRACKET WITH UNDERBAR
Ps, -- (16#0298D#, 16#0298D#) LEFT SQUARE BRACKET WITH TICK IN TOP CORNER .. LEFT SQUARE BRACKET WITH TICK IN TOP CORNER
Pe, -- (16#0298E#, 16#0298E#) RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER .. RIGHT SQUARE BRACKET WITH TICK IN BOTTOM CORNER
Ps, -- (16#0298F#, 16#0298F#) LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER .. LEFT SQUARE BRACKET WITH TICK IN BOTTOM CORNER
Pe, -- (16#02990#, 16#02990#) RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER .. RIGHT SQUARE BRACKET WITH TICK IN TOP CORNER
Ps, -- (16#02991#, 16#02991#) LEFT ANGLE BRACKET WITH DOT .. LEFT ANGLE BRACKET WITH DOT
Pe, -- (16#02992#, 16#02992#) RIGHT ANGLE BRACKET WITH DOT .. RIGHT ANGLE BRACKET WITH DOT
Ps, -- (16#02993#, 16#02993#) LEFT ARC LESS-THAN BRACKET .. LEFT ARC LESS-THAN BRACKET
Pe, -- (16#02994#, 16#02994#) RIGHT ARC GREATER-THAN BRACKET .. RIGHT ARC GREATER-THAN BRACKET
Ps, -- (16#02995#, 16#02995#) DOUBLE LEFT ARC GREATER-THAN BRACKET .. DOUBLE LEFT ARC GREATER-THAN BRACKET
Pe, -- (16#02996#, 16#02996#) DOUBLE RIGHT ARC LESS-THAN BRACKET .. DOUBLE RIGHT ARC LESS-THAN BRACKET
Ps, -- (16#02997#, 16#02997#) LEFT BLACK TORTOISE SHELL BRACKET .. LEFT BLACK TORTOISE SHELL BRACKET
Pe, -- (16#02998#, 16#02998#) RIGHT BLACK TORTOISE SHELL BRACKET .. RIGHT BLACK TORTOISE SHELL BRACKET
Sm, -- (16#02999#, 16#029D7#) DOTTED FENCE .. BLACK HOURGLASS
Ps, -- (16#029D8#, 16#029D8#) LEFT WIGGLY FENCE .. LEFT WIGGLY FENCE
Pe, -- (16#029D9#, 16#029D9#) RIGHT WIGGLY FENCE .. RIGHT WIGGLY FENCE
Ps, -- (16#029DA#, 16#029DA#) LEFT DOUBLE WIGGLY FENCE .. LEFT DOUBLE WIGGLY FENCE
Pe, -- (16#029DB#, 16#029DB#) RIGHT DOUBLE WIGGLY FENCE .. RIGHT DOUBLE WIGGLY FENCE
Sm, -- (16#029DC#, 16#029FB#) INCOMPLETE INFINITY .. TRIPLE PLUS
Ps, -- (16#029FC#, 16#029FC#) LEFT-POINTING CURVED ANGLE BRACKET .. LEFT-POINTING CURVED ANGLE BRACKET
Pe, -- (16#029FD#, 16#029FD#) RIGHT-POINTING CURVED ANGLE BRACKET .. RIGHT-POINTING CURVED ANGLE BRACKET
Sm, -- (16#029FE#, 16#02AFF#) TINY .. N-ARY WHITE VERTICAL BAR
So, -- (16#02B00#, 16#02B0D#) NORTH EAST WHITE ARROW .. UP DOWN BLACK ARROW
So, -- (16#02E80#, 16#02E99#) CJK RADICAL REPEAT .. CJK RADICAL RAP
So, -- (16#02E9B#, 16#02EF3#) CJK RADICAL CHOKE .. CJK RADICAL C-SIMPLIFIED TURTLE
So, -- (16#02F00#, 16#02FD5#) KANGXI RADICAL ONE .. KANGXI RADICAL FLUTE
So, -- (16#02FF0#, 16#02FFB#) IDEOGRAPHIC DESCRIPTION CHARACTER LEFT TO RIGHT .. IDEOGRAPHIC DESCRIPTION CHARACTER OVERLAID
Zs, -- (16#03000#, 16#03000#) IDEOGRAPHIC SPACE .. IDEOGRAPHIC SPACE
Po, -- (16#03001#, 16#03003#) IDEOGRAPHIC COMMA .. DITTO MARK
So, -- (16#03004#, 16#03004#) JAPANESE INDUSTRIAL STANDARD SYMBOL .. JAPANESE INDUSTRIAL STANDARD SYMBOL
Lm, -- (16#03005#, 16#03005#) IDEOGRAPHIC ITERATION MARK .. IDEOGRAPHIC ITERATION MARK
Lo, -- (16#03006#, 16#03006#) IDEOGRAPHIC CLOSING MARK .. IDEOGRAPHIC CLOSING MARK
Nl, -- (16#03007#, 16#03007#) IDEOGRAPHIC NUMBER ZERO .. IDEOGRAPHIC NUMBER ZERO
Ps, -- (16#03008#, 16#03008#) LEFT ANGLE BRACKET .. LEFT ANGLE BRACKET
Pe, -- (16#03009#, 16#03009#) RIGHT ANGLE BRACKET .. RIGHT ANGLE BRACKET
Ps, -- (16#0300A#, 16#0300A#) LEFT DOUBLE ANGLE BRACKET .. LEFT DOUBLE ANGLE BRACKET
Pe, -- (16#0300B#, 16#0300B#) RIGHT DOUBLE ANGLE BRACKET .. RIGHT DOUBLE ANGLE BRACKET
Ps, -- (16#0300C#, 16#0300C#) LEFT CORNER BRACKET .. LEFT CORNER BRACKET
Pe, -- (16#0300D#, 16#0300D#) RIGHT CORNER BRACKET .. RIGHT CORNER BRACKET
Ps, -- (16#0300E#, 16#0300E#) LEFT WHITE CORNER BRACKET .. LEFT WHITE CORNER BRACKET
Pe, -- (16#0300F#, 16#0300F#) RIGHT WHITE CORNER BRACKET .. RIGHT WHITE CORNER BRACKET
Ps, -- (16#03010#, 16#03010#) LEFT BLACK LENTICULAR BRACKET .. LEFT BLACK LENTICULAR BRACKET
Pe, -- (16#03011#, 16#03011#) RIGHT BLACK LENTICULAR BRACKET .. RIGHT BLACK LENTICULAR BRACKET
So, -- (16#03012#, 16#03013#) POSTAL MARK .. GETA MARK
Ps, -- (16#03014#, 16#03014#) LEFT TORTOISE SHELL BRACKET .. LEFT TORTOISE SHELL BRACKET
Pe, -- (16#03015#, 16#03015#) RIGHT TORTOISE SHELL BRACKET .. RIGHT TORTOISE SHELL BRACKET
Ps, -- (16#03016#, 16#03016#) LEFT WHITE LENTICULAR BRACKET .. LEFT WHITE LENTICULAR BRACKET
Pe, -- (16#03017#, 16#03017#) RIGHT WHITE LENTICULAR BRACKET .. RIGHT WHITE LENTICULAR BRACKET
Ps, -- (16#03018#, 16#03018#) LEFT WHITE TORTOISE SHELL BRACKET .. LEFT WHITE TORTOISE SHELL BRACKET
Pe, -- (16#03019#, 16#03019#) RIGHT WHITE TORTOISE SHELL BRACKET .. RIGHT WHITE TORTOISE SHELL BRACKET
Ps, -- (16#0301A#, 16#0301A#) LEFT WHITE SQUARE BRACKET .. LEFT WHITE SQUARE BRACKET
Pe, -- (16#0301B#, 16#0301B#) RIGHT WHITE SQUARE BRACKET .. RIGHT WHITE SQUARE BRACKET
Pd, -- (16#0301C#, 16#0301C#) WAVE DASH .. WAVE DASH
Ps, -- (16#0301D#, 16#0301D#) REVERSED DOUBLE PRIME QUOTATION MARK .. REVERSED DOUBLE PRIME QUOTATION MARK
Pe, -- (16#0301E#, 16#0301F#) DOUBLE PRIME QUOTATION MARK .. LOW DOUBLE PRIME QUOTATION MARK
So, -- (16#03020#, 16#03020#) POSTAL MARK FACE .. POSTAL MARK FACE
Nl, -- (16#03021#, 16#03029#) HANGZHOU NUMERAL ONE .. HANGZHOU NUMERAL NINE
Mn, -- (16#0302A#, 16#0302F#) IDEOGRAPHIC LEVEL TONE MARK .. HANGUL DOUBLE DOT TONE MARK
Pd, -- (16#03030#, 16#03030#) WAVY DASH .. WAVY DASH
Lm, -- (16#03031#, 16#03035#) VERTICAL KANA REPEAT MARK .. VERTICAL KANA REPEAT MARK LOWER HALF
So, -- (16#03036#, 16#03037#) CIRCLED POSTAL MARK .. IDEOGRAPHIC TELEGRAPH LINE FEED SEPARATOR SYMBOL
Nl, -- (16#03038#, 16#0303A#) HANGZHOU NUMERAL TEN .. HANGZHOU NUMERAL THIRTY
Lm, -- (16#0303B#, 16#0303B#) VERTICAL IDEOGRAPHIC ITERATION MARK .. VERTICAL IDEOGRAPHIC ITERATION MARK
Lo, -- (16#0303C#, 16#0303C#) MASU MARK .. MASU MARK
Po, -- (16#0303D#, 16#0303D#) PART ALTERNATION MARK .. PART ALTERNATION MARK
So, -- (16#0303E#, 16#0303F#) IDEOGRAPHIC VARIATION INDICATOR .. IDEOGRAPHIC HALF FILL SPACE
Lo, -- (16#03041#, 16#03096#) HIRAGANA LETTER SMALL A .. HIRAGANA LETTER SMALL KE
Mn, -- (16#03099#, 16#0309A#) COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK .. COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
Sk, -- (16#0309B#, 16#0309C#) KATAKANA-HIRAGANA VOICED SOUND MARK .. KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
Lm, -- (16#0309D#, 16#0309E#) HIRAGANA ITERATION MARK .. HIRAGANA VOICED ITERATION MARK
Lo, -- (16#0309F#, 16#0309F#) HIRAGANA DIGRAPH YORI .. HIRAGANA DIGRAPH YORI
Pd, -- (16#030A0#, 16#030A0#) KATAKANA-HIRAGANA DOUBLE HYPHEN .. KATAKANA-HIRAGANA DOUBLE HYPHEN
Lo, -- (16#030A1#, 16#030FA#) KATAKANA LETTER SMALL A .. KATAKANA LETTER VO
Pc, -- (16#030FB#, 16#030FB#) KATAKANA MIDDLE DOT .. KATAKANA MIDDLE DOT
Lm, -- (16#030FC#, 16#030FE#) KATAKANA-HIRAGANA PROLONGED SOUND MARK .. KATAKANA VOICED ITERATION MARK
Lo, -- (16#030FF#, 16#030FF#) KATAKANA DIGRAPH KOTO .. KATAKANA DIGRAPH KOTO
Lo, -- (16#03105#, 16#0312C#) BOPOMOFO LETTER B .. BOPOMOFO LETTER GN
Lo, -- (16#03131#, 16#0318E#) HANGUL LETTER KIYEOK .. HANGUL LETTER ARAEAE
So, -- (16#03190#, 16#03191#) IDEOGRAPHIC ANNOTATION LINKING MARK .. IDEOGRAPHIC ANNOTATION REVERSE MARK
No, -- (16#03192#, 16#03195#) IDEOGRAPHIC ANNOTATION ONE MARK .. IDEOGRAPHIC ANNOTATION FOUR MARK
So, -- (16#03196#, 16#0319F#) IDEOGRAPHIC ANNOTATION TOP MARK .. IDEOGRAPHIC ANNOTATION MAN MARK
Lo, -- (16#031A0#, 16#031B7#) BOPOMOFO LETTER BU .. BOPOMOFO FINAL LETTER H
Lo, -- (16#031F0#, 16#031FF#) KATAKANA LETTER SMALL KU .. KATAKANA LETTER SMALL RO
So, -- (16#03200#, 16#0321E#) PARENTHESIZED HANGUL KIYEOK .. PARENTHESIZED KOREAN CHARACTER O HU
No, -- (16#03220#, 16#03229#) PARENTHESIZED IDEOGRAPH ONE .. PARENTHESIZED IDEOGRAPH TEN
So, -- (16#0322A#, 16#03243#) PARENTHESIZED IDEOGRAPH MOON .. PARENTHESIZED IDEOGRAPH REACH
So, -- (16#03250#, 16#03250#) PARTNERSHIP SIGN .. PARTNERSHIP SIGN
No, -- (16#03251#, 16#0325F#) CIRCLED NUMBER TWENTY ONE .. CIRCLED NUMBER THIRTY FIVE
So, -- (16#03260#, 16#0327D#) CIRCLED HANGUL KIYEOK .. CIRCLED KOREAN CHARACTER JUEUI
So, -- (16#0327F#, 16#0327F#) KOREAN STANDARD SYMBOL .. KOREAN STANDARD SYMBOL
No, -- (16#03280#, 16#03289#) CIRCLED IDEOGRAPH ONE .. CIRCLED IDEOGRAPH TEN
So, -- (16#0328A#, 16#032B0#) CIRCLED IDEOGRAPH MOON .. CIRCLED IDEOGRAPH NIGHT
No, -- (16#032B1#, 16#032BF#) CIRCLED NUMBER THIRTY SIX .. CIRCLED NUMBER FIFTY
So, -- (16#032C0#, 16#032FE#) IDEOGRAPHIC TELEGRAPH SYMBOL FOR JANUARY .. CIRCLED KATAKANA WO
So, -- (16#03300#, 16#033FF#) SQUARE APAATO .. SQUARE GAL
Lo, -- (16#03400#, 16#04DB5#) <CJK Ideograph Extension A, First> .. <CJK Ideograph Extension A, Last>
So, -- (16#04DC0#, 16#04DFF#) HEXAGRAM FOR THE CREATIVE HEAVEN .. HEXAGRAM FOR BEFORE COMPLETION
Lo, -- (16#04E00#, 16#09FA5#) <CJK Ideograph, First> .. <CJK Ideograph, Last>
Lo, -- (16#0A000#, 16#0A48C#) YI SYLLABLE IT .. YI SYLLABLE YYR
So, -- (16#0A490#, 16#0A4C6#) YI RADICAL QOT .. YI RADICAL KE
Lo, -- (16#0AC00#, 16#0D7A3#) <Hangul Syllable, First> .. <Hangul Syllable, Last>
Cs, -- (16#0D800#, 16#0F8FF#) <Non Private Use High Surrogate, First> .. <Private Use, Last>
Lo, -- (16#0F900#, 16#0FA2D#) CJK COMPATIBILITY IDEOGRAPH-F900 .. CJK COMPATIBILITY IDEOGRAPH-FA2D
Lo, -- (16#0FA30#, 16#0FA6A#) CJK COMPATIBILITY IDEOGRAPH-FA30 .. CJK COMPATIBILITY IDEOGRAPH-FA6A
Ll, -- (16#0FB00#, 16#0FB06#) LATIN SMALL LIGATURE FF .. LATIN SMALL LIGATURE ST
Ll, -- (16#0FB13#, 16#0FB17#) ARMENIAN SMALL LIGATURE MEN NOW .. ARMENIAN SMALL LIGATURE MEN XEH
Lo, -- (16#0FB1D#, 16#0FB1D#) HEBREW LETTER YOD WITH HIRIQ .. HEBREW LETTER YOD WITH HIRIQ
Mn, -- (16#0FB1E#, 16#0FB1E#) HEBREW POINT JUDEO-SPANISH VARIKA .. HEBREW POINT JUDEO-SPANISH VARIKA
Lo, -- (16#0FB1F#, 16#0FB28#) HEBREW LIGATURE YIDDISH YOD YOD PATAH .. HEBREW LETTER WIDE TAV
Sm, -- (16#0FB29#, 16#0FB29#) HEBREW LETTER ALTERNATIVE PLUS SIGN .. HEBREW LETTER ALTERNATIVE PLUS SIGN
Lo, -- (16#0FB2A#, 16#0FB36#) HEBREW LETTER SHIN WITH SHIN DOT .. HEBREW LETTER ZAYIN WITH DAGESH
Lo, -- (16#0FB38#, 16#0FB3C#) HEBREW LETTER TET WITH DAGESH .. HEBREW LETTER LAMED WITH DAGESH
Lo, -- (16#0FB3E#, 16#0FB3E#) HEBREW LETTER MEM WITH DAGESH .. HEBREW LETTER MEM WITH DAGESH
Lo, -- (16#0FB40#, 16#0FB41#) HEBREW LETTER NUN WITH DAGESH .. HEBREW LETTER SAMEKH WITH DAGESH
Lo, -- (16#0FB43#, 16#0FB44#) HEBREW LETTER FINAL PE WITH DAGESH .. HEBREW LETTER PE WITH DAGESH
Lo, -- (16#0FB46#, 16#0FBB1#) HEBREW LETTER TSADI WITH DAGESH .. ARABIC LETTER YEH BARREE WITH HAMZA ABOVE FINAL FORM
Lo, -- (16#0FBD3#, 16#0FD3D#) ARABIC LETTER NG ISOLATED FORM .. ARABIC LIGATURE ALEF WITH FATHATAN ISOLATED FORM
Ps, -- (16#0FD3E#, 16#0FD3E#) ORNATE LEFT PARENTHESIS .. ORNATE LEFT PARENTHESIS
Pe, -- (16#0FD3F#, 16#0FD3F#) ORNATE RIGHT PARENTHESIS .. ORNATE RIGHT PARENTHESIS
Lo, -- (16#0FD50#, 16#0FD8F#) ARABIC LIGATURE TEH WITH JEEM WITH MEEM INITIAL FORM .. ARABIC LIGATURE MEEM WITH KHAH WITH MEEM INITIAL FORM
Lo, -- (16#0FD92#, 16#0FDC7#) ARABIC LIGATURE MEEM WITH JEEM WITH KHAH INITIAL FORM .. ARABIC LIGATURE NOON WITH JEEM WITH YEH FINAL FORM
Lo, -- (16#0FDF0#, 16#0FDFB#) ARABIC LIGATURE SALLA USED AS KORANIC STOP SIGN ISOLATED FORM .. ARABIC LIGATURE JALLAJALALOUHOU
Sc, -- (16#0FDFC#, 16#0FDFC#) RIAL SIGN .. RIAL SIGN
So, -- (16#0FDFD#, 16#0FDFD#) ARABIC LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM .. ARABIC LIGATURE BISMILLAH AR-RAHMAN AR-RAHEEM
Mn, -- (16#0FE00#, 16#0FE0F#) VARIATION SELECTOR-1 .. VARIATION SELECTOR-16
Mn, -- (16#0FE20#, 16#0FE23#) COMBINING LIGATURE LEFT HALF .. COMBINING DOUBLE TILDE RIGHT HALF
Po, -- (16#0FE30#, 16#0FE30#) PRESENTATION FORM FOR VERTICAL TWO DOT LEADER .. PRESENTATION FORM FOR VERTICAL TWO DOT LEADER
Pd, -- (16#0FE31#, 16#0FE32#) PRESENTATION FORM FOR VERTICAL EM DASH .. PRESENTATION FORM FOR VERTICAL EN DASH
Pc, -- (16#0FE33#, 16#0FE34#) PRESENTATION FORM FOR VERTICAL LOW LINE .. PRESENTATION FORM FOR VERTICAL WAVY LOW LINE
Ps, -- (16#0FE35#, 16#0FE35#) PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS .. PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS
Pe, -- (16#0FE36#, 16#0FE36#) PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS .. PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS
Ps, -- (16#0FE37#, 16#0FE37#) PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET
Pe, -- (16#0FE38#, 16#0FE38#) PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET
Ps, -- (16#0FE39#, 16#0FE39#) PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET
Pe, -- (16#0FE3A#, 16#0FE3A#) PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET
Ps, -- (16#0FE3B#, 16#0FE3B#) PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET
Pe, -- (16#0FE3C#, 16#0FE3C#) PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET
Ps, -- (16#0FE3D#, 16#0FE3D#) PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET
Pe, -- (16#0FE3E#, 16#0FE3E#) PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET
Ps, -- (16#0FE3F#, 16#0FE3F#) PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET
Pe, -- (16#0FE40#, 16#0FE40#) PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET
Ps, -- (16#0FE41#, 16#0FE41#) PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET
Pe, -- (16#0FE42#, 16#0FE42#) PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET
Ps, -- (16#0FE43#, 16#0FE43#) PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET
Pe, -- (16#0FE44#, 16#0FE44#) PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET
Po, -- (16#0FE45#, 16#0FE46#) SESAME DOT .. WHITE SESAME DOT
Ps, -- (16#0FE47#, 16#0FE47#) PRESENTATION FORM FOR VERTICAL LEFT SQUARE BRACKET .. PRESENTATION FORM FOR VERTICAL LEFT SQUARE BRACKET
Pe, -- (16#0FE48#, 16#0FE48#) PRESENTATION FORM FOR VERTICAL RIGHT SQUARE BRACKET .. PRESENTATION FORM FOR VERTICAL RIGHT SQUARE BRACKET
Po, -- (16#0FE49#, 16#0FE4C#) DASHED OVERLINE .. DOUBLE WAVY OVERLINE
Pc, -- (16#0FE4D#, 16#0FE4F#) DASHED LOW LINE .. WAVY LOW LINE
Po, -- (16#0FE50#, 16#0FE52#) SMALL COMMA .. SMALL FULL STOP
Po, -- (16#0FE54#, 16#0FE57#) SMALL SEMICOLON .. SMALL EXCLAMATION MARK
Pd, -- (16#0FE58#, 16#0FE58#) SMALL EM DASH .. SMALL EM DASH
Ps, -- (16#0FE59#, 16#0FE59#) SMALL LEFT PARENTHESIS .. SMALL LEFT PARENTHESIS
Pe, -- (16#0FE5A#, 16#0FE5A#) SMALL RIGHT PARENTHESIS .. SMALL RIGHT PARENTHESIS
Ps, -- (16#0FE5B#, 16#0FE5B#) SMALL LEFT CURLY BRACKET .. SMALL LEFT CURLY BRACKET
Pe, -- (16#0FE5C#, 16#0FE5C#) SMALL RIGHT CURLY BRACKET .. SMALL RIGHT CURLY BRACKET
Ps, -- (16#0FE5D#, 16#0FE5D#) SMALL LEFT TORTOISE SHELL BRACKET .. SMALL LEFT TORTOISE SHELL BRACKET
Pe, -- (16#0FE5E#, 16#0FE5E#) SMALL RIGHT TORTOISE SHELL BRACKET .. SMALL RIGHT TORTOISE SHELL BRACKET
Po, -- (16#0FE5F#, 16#0FE61#) SMALL NUMBER SIGN .. SMALL ASTERISK
Sm, -- (16#0FE62#, 16#0FE62#) SMALL PLUS SIGN .. SMALL PLUS SIGN
Pd, -- (16#0FE63#, 16#0FE63#) SMALL HYPHEN-MINUS .. SMALL HYPHEN-MINUS
Sm, -- (16#0FE64#, 16#0FE66#) SMALL LESS-THAN SIGN .. SMALL EQUALS SIGN
Po, -- (16#0FE68#, 16#0FE68#) SMALL REVERSE SOLIDUS .. SMALL REVERSE SOLIDUS
Sc, -- (16#0FE69#, 16#0FE69#) SMALL DOLLAR SIGN .. SMALL DOLLAR SIGN
Po, -- (16#0FE6A#, 16#0FE6B#) SMALL PERCENT SIGN .. SMALL COMMERCIAL AT
Lo, -- (16#0FE70#, 16#0FE74#) ARABIC FATHATAN ISOLATED FORM .. ARABIC KASRATAN ISOLATED FORM
Lo, -- (16#0FE76#, 16#0FEFC#) ARABIC FATHA ISOLATED FORM .. ARABIC LIGATURE LAM WITH ALEF FINAL FORM
Cf, -- (16#0FEFF#, 16#0FEFF#) ZERO WIDTH NO-BREAK SPACE .. ZERO WIDTH NO-BREAK SPACE
Po, -- (16#0FF01#, 16#0FF03#) FULLWIDTH EXCLAMATION MARK .. FULLWIDTH NUMBER SIGN
Sc, -- (16#0FF04#, 16#0FF04#) FULLWIDTH DOLLAR SIGN .. FULLWIDTH DOLLAR SIGN
Po, -- (16#0FF05#, 16#0FF07#) FULLWIDTH PERCENT SIGN .. FULLWIDTH APOSTROPHE
Ps, -- (16#0FF08#, 16#0FF08#) FULLWIDTH LEFT PARENTHESIS .. FULLWIDTH LEFT PARENTHESIS
Pe, -- (16#0FF09#, 16#0FF09#) FULLWIDTH RIGHT PARENTHESIS .. FULLWIDTH RIGHT PARENTHESIS
Po, -- (16#0FF0A#, 16#0FF0A#) FULLWIDTH ASTERISK .. FULLWIDTH ASTERISK
Sm, -- (16#0FF0B#, 16#0FF0B#) FULLWIDTH PLUS SIGN .. FULLWIDTH PLUS SIGN
Po, -- (16#0FF0C#, 16#0FF0C#) FULLWIDTH COMMA .. FULLWIDTH COMMA
Pd, -- (16#0FF0D#, 16#0FF0D#) FULLWIDTH HYPHEN-MINUS .. FULLWIDTH HYPHEN-MINUS
Po, -- (16#0FF0E#, 16#0FF0F#) FULLWIDTH FULL STOP .. FULLWIDTH SOLIDUS
Nd, -- (16#0FF10#, 16#0FF19#) FULLWIDTH DIGIT ZERO .. FULLWIDTH DIGIT NINE
Po, -- (16#0FF1A#, 16#0FF1B#) FULLWIDTH COLON .. FULLWIDTH SEMICOLON
Sm, -- (16#0FF1C#, 16#0FF1E#) FULLWIDTH LESS-THAN SIGN .. FULLWIDTH GREATER-THAN SIGN
Po, -- (16#0FF1F#, 16#0FF20#) FULLWIDTH QUESTION MARK .. FULLWIDTH COMMERCIAL AT
Lu, -- (16#0FF21#, 16#0FF3A#) FULLWIDTH LATIN CAPITAL LETTER A .. FULLWIDTH LATIN CAPITAL LETTER Z
Ps, -- (16#0FF3B#, 16#0FF3B#) FULLWIDTH LEFT SQUARE BRACKET .. FULLWIDTH LEFT SQUARE BRACKET
Po, -- (16#0FF3C#, 16#0FF3C#) FULLWIDTH REVERSE SOLIDUS .. FULLWIDTH REVERSE SOLIDUS
Pe, -- (16#0FF3D#, 16#0FF3D#) FULLWIDTH RIGHT SQUARE BRACKET .. FULLWIDTH RIGHT SQUARE BRACKET
Sk, -- (16#0FF3E#, 16#0FF3E#) FULLWIDTH CIRCUMFLEX ACCENT .. FULLWIDTH CIRCUMFLEX ACCENT
Pc, -- (16#0FF3F#, 16#0FF3F#) FULLWIDTH LOW LINE .. FULLWIDTH LOW LINE
Sk, -- (16#0FF40#, 16#0FF40#) FULLWIDTH GRAVE ACCENT .. FULLWIDTH GRAVE ACCENT
Ll, -- (16#0FF41#, 16#0FF5A#) FULLWIDTH LATIN SMALL LETTER A .. FULLWIDTH LATIN SMALL LETTER Z
Ps, -- (16#0FF5B#, 16#0FF5B#) FULLWIDTH LEFT CURLY BRACKET .. FULLWIDTH LEFT CURLY BRACKET
Sm, -- (16#0FF5C#, 16#0FF5C#) FULLWIDTH VERTICAL LINE .. FULLWIDTH VERTICAL LINE
Pe, -- (16#0FF5D#, 16#0FF5D#) FULLWIDTH RIGHT CURLY BRACKET .. FULLWIDTH RIGHT CURLY BRACKET
Sm, -- (16#0FF5E#, 16#0FF5E#) FULLWIDTH TILDE .. FULLWIDTH TILDE
Ps, -- (16#0FF5F#, 16#0FF5F#) FULLWIDTH LEFT WHITE PARENTHESIS .. FULLWIDTH LEFT WHITE PARENTHESIS
Pe, -- (16#0FF60#, 16#0FF60#) FULLWIDTH RIGHT WHITE PARENTHESIS .. FULLWIDTH RIGHT WHITE PARENTHESIS
Po, -- (16#0FF61#, 16#0FF61#) HALFWIDTH IDEOGRAPHIC FULL STOP .. HALFWIDTH IDEOGRAPHIC FULL STOP
Ps, -- (16#0FF62#, 16#0FF62#) HALFWIDTH LEFT CORNER BRACKET .. HALFWIDTH LEFT CORNER BRACKET
Pe, -- (16#0FF63#, 16#0FF63#) HALFWIDTH RIGHT CORNER BRACKET .. HALFWIDTH RIGHT CORNER BRACKET
Po, -- (16#0FF64#, 16#0FF64#) HALFWIDTH IDEOGRAPHIC COMMA .. HALFWIDTH IDEOGRAPHIC COMMA
Pc, -- (16#0FF65#, 16#0FF65#) HALFWIDTH KATAKANA MIDDLE DOT .. HALFWIDTH KATAKANA MIDDLE DOT
Lo, -- (16#0FF66#, 16#0FF6F#) HALFWIDTH KATAKANA LETTER WO .. HALFWIDTH KATAKANA LETTER SMALL TU
Lm, -- (16#0FF70#, 16#0FF70#) HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK .. HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK
Lo, -- (16#0FF71#, 16#0FF9D#) HALFWIDTH KATAKANA LETTER A .. HALFWIDTH KATAKANA LETTER N
Lm, -- (16#0FF9E#, 16#0FF9F#) HALFWIDTH KATAKANA VOICED SOUND MARK .. HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK
Lo, -- (16#0FFA0#, 16#0FFBE#) HALFWIDTH HANGUL FILLER .. HALFWIDTH HANGUL LETTER HIEUH
Lo, -- (16#0FFC2#, 16#0FFC7#) HALFWIDTH HANGUL LETTER A .. HALFWIDTH HANGUL LETTER E
Lo, -- (16#0FFCA#, 16#0FFCF#) HALFWIDTH HANGUL LETTER YEO .. HALFWIDTH HANGUL LETTER OE
Lo, -- (16#0FFD2#, 16#0FFD7#) HALFWIDTH HANGUL LETTER YO .. HALFWIDTH HANGUL LETTER YU
Lo, -- (16#0FFDA#, 16#0FFDC#) HALFWIDTH HANGUL LETTER EU .. HALFWIDTH HANGUL LETTER I
Sc, -- (16#0FFE0#, 16#0FFE1#) FULLWIDTH CENT SIGN .. FULLWIDTH POUND SIGN
Sm, -- (16#0FFE2#, 16#0FFE2#) FULLWIDTH NOT SIGN .. FULLWIDTH NOT SIGN
Sk, -- (16#0FFE3#, 16#0FFE3#) FULLWIDTH MACRON .. FULLWIDTH MACRON
So, -- (16#0FFE4#, 16#0FFE4#) FULLWIDTH BROKEN BAR .. FULLWIDTH BROKEN BAR
Sc, -- (16#0FFE5#, 16#0FFE6#) FULLWIDTH YEN SIGN .. FULLWIDTH WON SIGN
So, -- (16#0FFE8#, 16#0FFE8#) HALFWIDTH FORMS LIGHT VERTICAL .. HALFWIDTH FORMS LIGHT VERTICAL
Sm, -- (16#0FFE9#, 16#0FFEC#) HALFWIDTH LEFTWARDS ARROW .. HALFWIDTH DOWNWARDS ARROW
So, -- (16#0FFED#, 16#0FFEE#) HALFWIDTH BLACK SQUARE .. HALFWIDTH WHITE CIRCLE
Cf, -- (16#0FFF9#, 16#0FFFB#) INTERLINEAR ANNOTATION ANCHOR .. INTERLINEAR ANNOTATION TERMINATOR
So, -- (16#0FFFC#, 16#0FFFD#) OBJECT REPLACEMENT CHARACTER .. REPLACEMENT CHARACTER
Lo, -- (16#10000#, 16#1000B#) LINEAR B SYLLABLE B008 A .. LINEAR B SYLLABLE B046 JE
Lo, -- (16#1000D#, 16#10026#) LINEAR B SYLLABLE B036 JO .. LINEAR B SYLLABLE B032 QO
Lo, -- (16#10028#, 16#1003A#) LINEAR B SYLLABLE B060 RA .. LINEAR B SYLLABLE B042 WO
Lo, -- (16#1003C#, 16#1003D#) LINEAR B SYLLABLE B017 ZA .. LINEAR B SYLLABLE B074 ZE
Lo, -- (16#1003F#, 16#1004D#) LINEAR B SYLLABLE B020 ZO .. LINEAR B SYLLABLE B091 TWO
Lo, -- (16#10050#, 16#1005D#) LINEAR B SYMBOL B018 .. LINEAR B SYMBOL B089
Lo, -- (16#10080#, 16#100FA#) LINEAR B IDEOGRAM B100 MAN .. LINEAR B IDEOGRAM VESSEL B305
Po, -- (16#10100#, 16#10101#) AEGEAN WORD SEPARATOR LINE .. AEGEAN WORD SEPARATOR DOT
So, -- (16#10102#, 16#10102#) AEGEAN CHECK MARK .. AEGEAN CHECK MARK
No, -- (16#10107#, 16#10133#) AEGEAN NUMBER ONE .. AEGEAN NUMBER NINETY THOUSAND
So, -- (16#10137#, 16#1013F#) AEGEAN WEIGHT BASE UNIT .. AEGEAN MEASURE THIRD SUBUNIT
Lo, -- (16#10300#, 16#1031E#) OLD ITALIC LETTER A .. OLD ITALIC LETTER UU
No, -- (16#10320#, 16#10323#) OLD ITALIC NUMERAL ONE .. OLD ITALIC NUMERAL FIFTY
Lo, -- (16#10330#, 16#10349#) GOTHIC LETTER AHSA .. GOTHIC LETTER OTHAL
Nl, -- (16#1034A#, 16#1034A#) GOTHIC LETTER NINE HUNDRED .. GOTHIC LETTER NINE HUNDRED
Lo, -- (16#10380#, 16#1039D#) UGARITIC LETTER ALPA .. UGARITIC LETTER SSU
Po, -- (16#1039F#, 16#1039F#) UGARITIC WORD DIVIDER .. UGARITIC WORD DIVIDER
Lu, -- (16#10400#, 16#10427#) DESERET CAPITAL LETTER LONG I .. DESERET CAPITAL LETTER EW
Ll, -- (16#10428#, 16#1044F#) DESERET SMALL LETTER LONG I .. DESERET SMALL LETTER EW
Lo, -- (16#10450#, 16#1049D#) SHAVIAN LETTER PEEP .. OSMANYA LETTER OO
Nd, -- (16#104A0#, 16#104A9#) OSMANYA DIGIT ZERO .. OSMANYA DIGIT NINE
Lo, -- (16#10800#, 16#10805#) CYPRIOT SYLLABLE A .. CYPRIOT SYLLABLE JA
Lo, -- (16#10808#, 16#10808#) CYPRIOT SYLLABLE JO .. CYPRIOT SYLLABLE JO
Lo, -- (16#1080A#, 16#10835#) CYPRIOT SYLLABLE KA .. CYPRIOT SYLLABLE WO
Lo, -- (16#10837#, 16#10838#) CYPRIOT SYLLABLE XA .. CYPRIOT SYLLABLE XE
Lo, -- (16#1083C#, 16#1083C#) CYPRIOT SYLLABLE ZA .. CYPRIOT SYLLABLE ZA
Lo, -- (16#1083F#, 16#1083F#) CYPRIOT SYLLABLE ZO .. CYPRIOT SYLLABLE ZO
So, -- (16#1D000#, 16#1D0F5#) BYZANTINE MUSICAL SYMBOL PSILI .. BYZANTINE MUSICAL SYMBOL GORGON NEO KATO
So, -- (16#1D100#, 16#1D126#) MUSICAL SYMBOL SINGLE BARLINE .. MUSICAL SYMBOL DRUM CLEF-2
So, -- (16#1D12A#, 16#1D164#) MUSICAL SYMBOL DOUBLE SHARP .. MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH NOTE
Mc, -- (16#1D165#, 16#1D166#) MUSICAL SYMBOL COMBINING STEM .. MUSICAL SYMBOL COMBINING SPRECHGESANG STEM
Mn, -- (16#1D167#, 16#1D169#) MUSICAL SYMBOL COMBINING TREMOLO-1 .. MUSICAL SYMBOL COMBINING TREMOLO-3
So, -- (16#1D16A#, 16#1D16C#) MUSICAL SYMBOL FINGERED TREMOLO-1 .. MUSICAL SYMBOL FINGERED TREMOLO-3
Mc, -- (16#1D16D#, 16#1D172#) MUSICAL SYMBOL COMBINING AUGMENTATION DOT .. MUSICAL SYMBOL COMBINING FLAG-5
Cf, -- (16#1D173#, 16#1D17A#) MUSICAL SYMBOL BEGIN BEAM .. MUSICAL SYMBOL END PHRASE
Mn, -- (16#1D17B#, 16#1D182#) MUSICAL SYMBOL COMBINING ACCENT .. MUSICAL SYMBOL COMBINING LOURE
So, -- (16#1D183#, 16#1D184#) MUSICAL SYMBOL ARPEGGIATO UP .. MUSICAL SYMBOL ARPEGGIATO DOWN
Mn, -- (16#1D185#, 16#1D18B#) MUSICAL SYMBOL COMBINING DOIT .. MUSICAL SYMBOL COMBINING TRIPLE TONGUE
So, -- (16#1D18C#, 16#1D1A9#) MUSICAL SYMBOL RINFORZANDO .. MUSICAL SYMBOL DEGREE SLASH
Mn, -- (16#1D1AA#, 16#1D1AD#) MUSICAL SYMBOL COMBINING DOWN BOW .. MUSICAL SYMBOL COMBINING SNAP PIZZICATO
So, -- (16#1D1AE#, 16#1D1DD#) MUSICAL SYMBOL PEDAL MARK .. MUSICAL SYMBOL PES SUBPUNCTIS
So, -- (16#1D300#, 16#1D356#) MONOGRAM FOR EARTH .. TETRAGRAM FOR FOSTERING
Lu, -- (16#1D400#, 16#1D419#) MATHEMATICAL BOLD CAPITAL A .. MATHEMATICAL BOLD CAPITAL Z
Ll, -- (16#1D41A#, 16#1D433#) MATHEMATICAL BOLD SMALL A .. MATHEMATICAL BOLD SMALL Z
Lu, -- (16#1D434#, 16#1D44D#) MATHEMATICAL ITALIC CAPITAL A .. MATHEMATICAL ITALIC CAPITAL Z
Ll, -- (16#1D44E#, 16#1D454#) MATHEMATICAL ITALIC SMALL A .. MATHEMATICAL ITALIC SMALL G
Ll, -- (16#1D456#, 16#1D467#) MATHEMATICAL ITALIC SMALL I .. MATHEMATICAL ITALIC SMALL Z
Lu, -- (16#1D468#, 16#1D481#) MATHEMATICAL BOLD ITALIC CAPITAL A .. MATHEMATICAL BOLD ITALIC CAPITAL Z
Ll, -- (16#1D482#, 16#1D49B#) MATHEMATICAL BOLD ITALIC SMALL A .. MATHEMATICAL BOLD ITALIC SMALL Z
Lu, -- (16#1D49C#, 16#1D49C#) MATHEMATICAL SCRIPT CAPITAL A .. MATHEMATICAL SCRIPT CAPITAL A
Lu, -- (16#1D49E#, 16#1D49F#) MATHEMATICAL SCRIPT CAPITAL C .. MATHEMATICAL SCRIPT CAPITAL D
Lu, -- (16#1D4A2#, 16#1D4A2#) MATHEMATICAL SCRIPT CAPITAL G .. MATHEMATICAL SCRIPT CAPITAL G
Lu, -- (16#1D4A5#, 16#1D4A6#) MATHEMATICAL SCRIPT CAPITAL J .. MATHEMATICAL SCRIPT CAPITAL K
Lu, -- (16#1D4A9#, 16#1D4AC#) MATHEMATICAL SCRIPT CAPITAL N .. MATHEMATICAL SCRIPT CAPITAL Q
Lu, -- (16#1D4AE#, 16#1D4B5#) MATHEMATICAL SCRIPT CAPITAL S .. MATHEMATICAL SCRIPT CAPITAL Z
Ll, -- (16#1D4B6#, 16#1D4B9#) MATHEMATICAL SCRIPT SMALL A .. MATHEMATICAL SCRIPT SMALL D
Ll, -- (16#1D4BB#, 16#1D4BB#) MATHEMATICAL SCRIPT SMALL F .. MATHEMATICAL SCRIPT SMALL F
Ll, -- (16#1D4BD#, 16#1D4C3#) MATHEMATICAL SCRIPT SMALL H .. MATHEMATICAL SCRIPT SMALL N
Ll, -- (16#1D4C5#, 16#1D4CF#) MATHEMATICAL SCRIPT SMALL P .. MATHEMATICAL SCRIPT SMALL Z
Lu, -- (16#1D4D0#, 16#1D4E9#) MATHEMATICAL BOLD SCRIPT CAPITAL A .. MATHEMATICAL BOLD SCRIPT CAPITAL Z
Ll, -- (16#1D4EA#, 16#1D503#) MATHEMATICAL BOLD SCRIPT SMALL A .. MATHEMATICAL BOLD SCRIPT SMALL Z
Lu, -- (16#1D504#, 16#1D505#) MATHEMATICAL FRAKTUR CAPITAL A .. MATHEMATICAL FRAKTUR CAPITAL B
Lu, -- (16#1D507#, 16#1D50A#) MATHEMATICAL FRAKTUR CAPITAL D .. MATHEMATICAL FRAKTUR CAPITAL G
Lu, -- (16#1D50D#, 16#1D514#) MATHEMATICAL FRAKTUR CAPITAL J .. MATHEMATICAL FRAKTUR CAPITAL Q
Lu, -- (16#1D516#, 16#1D51C#) MATHEMATICAL FRAKTUR CAPITAL S .. MATHEMATICAL FRAKTUR CAPITAL Y
Ll, -- (16#1D51E#, 16#1D537#) MATHEMATICAL FRAKTUR SMALL A .. MATHEMATICAL FRAKTUR SMALL Z
Lu, -- (16#1D538#, 16#1D539#) MATHEMATICAL DOUBLE-STRUCK CAPITAL A .. MATHEMATICAL DOUBLE-STRUCK CAPITAL B
Lu, -- (16#1D53B#, 16#1D53E#) MATHEMATICAL DOUBLE-STRUCK CAPITAL D .. MATHEMATICAL DOUBLE-STRUCK CAPITAL G
Lu, -- (16#1D540#, 16#1D544#) MATHEMATICAL DOUBLE-STRUCK CAPITAL I .. MATHEMATICAL DOUBLE-STRUCK CAPITAL M
Lu, -- (16#1D546#, 16#1D546#) MATHEMATICAL DOUBLE-STRUCK CAPITAL O .. MATHEMATICAL DOUBLE-STRUCK CAPITAL O
Lu, -- (16#1D54A#, 16#1D550#) MATHEMATICAL DOUBLE-STRUCK CAPITAL S .. MATHEMATICAL DOUBLE-STRUCK CAPITAL Y
Ll, -- (16#1D552#, 16#1D56B#) MATHEMATICAL DOUBLE-STRUCK SMALL A .. MATHEMATICAL DOUBLE-STRUCK SMALL Z
Lu, -- (16#1D56C#, 16#1D585#) MATHEMATICAL BOLD FRAKTUR CAPITAL A .. MATHEMATICAL BOLD FRAKTUR CAPITAL Z
Ll, -- (16#1D586#, 16#1D59F#) MATHEMATICAL BOLD FRAKTUR SMALL A .. MATHEMATICAL BOLD FRAKTUR SMALL Z
Lu, -- (16#1D5A0#, 16#1D5B9#) MATHEMATICAL SANS-SERIF CAPITAL A .. MATHEMATICAL SANS-SERIF CAPITAL Z
Ll, -- (16#1D5BA#, 16#1D5D3#) MATHEMATICAL SANS-SERIF SMALL A .. MATHEMATICAL SANS-SERIF SMALL Z
Lu, -- (16#1D5D4#, 16#1D5ED#) MATHEMATICAL SANS-SERIF BOLD CAPITAL A .. MATHEMATICAL SANS-SERIF BOLD CAPITAL Z
Ll, -- (16#1D5EE#, 16#1D607#) MATHEMATICAL SANS-SERIF BOLD SMALL A .. MATHEMATICAL SANS-SERIF BOLD SMALL Z
Lu, -- (16#1D608#, 16#1D621#) MATHEMATICAL SANS-SERIF ITALIC CAPITAL A .. MATHEMATICAL SANS-SERIF ITALIC CAPITAL Z
Ll, -- (16#1D622#, 16#1D63B#) MATHEMATICAL SANS-SERIF ITALIC SMALL A .. MATHEMATICAL SANS-SERIF ITALIC SMALL Z
Lu, -- (16#1D63C#, 16#1D655#) MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL A .. MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL Z
Ll, -- (16#1D656#, 16#1D66F#) MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL A .. MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL Z
Lu, -- (16#1D670#, 16#1D689#) MATHEMATICAL MONOSPACE CAPITAL A .. MATHEMATICAL MONOSPACE CAPITAL Z
Ll, -- (16#1D68A#, 16#1D6A3#) MATHEMATICAL MONOSPACE SMALL A .. MATHEMATICAL MONOSPACE SMALL Z
Lu, -- (16#1D6A8#, 16#1D6C0#) MATHEMATICAL BOLD CAPITAL ALPHA .. MATHEMATICAL BOLD CAPITAL OMEGA
Sm, -- (16#1D6C1#, 16#1D6C1#) MATHEMATICAL BOLD NABLA .. MATHEMATICAL BOLD NABLA
Ll, -- (16#1D6C2#, 16#1D6DA#) MATHEMATICAL BOLD SMALL ALPHA .. MATHEMATICAL BOLD SMALL OMEGA
Sm, -- (16#1D6DB#, 16#1D6DB#) MATHEMATICAL BOLD PARTIAL DIFFERENTIAL .. MATHEMATICAL BOLD PARTIAL DIFFERENTIAL
Ll, -- (16#1D6DC#, 16#1D6E1#) MATHEMATICAL BOLD EPSILON SYMBOL .. MATHEMATICAL BOLD PI SYMBOL
Lu, -- (16#1D6E2#, 16#1D6FA#) MATHEMATICAL ITALIC CAPITAL ALPHA .. MATHEMATICAL ITALIC CAPITAL OMEGA
Sm, -- (16#1D6FB#, 16#1D6FB#) MATHEMATICAL ITALIC NABLA .. MATHEMATICAL ITALIC NABLA
Ll, -- (16#1D6FC#, 16#1D714#) MATHEMATICAL ITALIC SMALL ALPHA .. MATHEMATICAL ITALIC SMALL OMEGA
Sm, -- (16#1D715#, 16#1D715#) MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL .. MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL
Ll, -- (16#1D716#, 16#1D71B#) MATHEMATICAL ITALIC EPSILON SYMBOL .. MATHEMATICAL ITALIC PI SYMBOL
Lu, -- (16#1D71C#, 16#1D734#) MATHEMATICAL BOLD ITALIC CAPITAL ALPHA .. MATHEMATICAL BOLD ITALIC CAPITAL OMEGA
Sm, -- (16#1D735#, 16#1D735#) MATHEMATICAL BOLD ITALIC NABLA .. MATHEMATICAL BOLD ITALIC NABLA
Ll, -- (16#1D736#, 16#1D74E#) MATHEMATICAL BOLD ITALIC SMALL ALPHA .. MATHEMATICAL BOLD ITALIC SMALL OMEGA
Sm, -- (16#1D74F#, 16#1D74F#) MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL .. MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL
Ll, -- (16#1D750#, 16#1D755#) MATHEMATICAL BOLD ITALIC EPSILON SYMBOL .. MATHEMATICAL BOLD ITALIC PI SYMBOL
Lu, -- (16#1D756#, 16#1D76E#) MATHEMATICAL SANS-SERIF BOLD CAPITAL ALPHA .. MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA
Sm, -- (16#1D76F#, 16#1D76F#) MATHEMATICAL SANS-SERIF BOLD NABLA .. MATHEMATICAL SANS-SERIF BOLD NABLA
Ll, -- (16#1D770#, 16#1D788#) MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA .. MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA
Sm, -- (16#1D789#, 16#1D789#) MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL .. MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL
Ll, -- (16#1D78A#, 16#1D78F#) MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL .. MATHEMATICAL SANS-SERIF BOLD PI SYMBOL
Lu, -- (16#1D790#, 16#1D7A8#) MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL ALPHA .. MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA
Sm, -- (16#1D7A9#, 16#1D7A9#) MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA .. MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA
Ll, -- (16#1D7AA#, 16#1D7C2#) MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA .. MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA
Sm, -- (16#1D7C3#, 16#1D7C3#) MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL .. MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL
Ll, -- (16#1D7C4#, 16#1D7C9#) MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL .. MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL
Nd, -- (16#1D7CE#, 16#1D7FF#) MATHEMATICAL BOLD DIGIT ZERO .. MATHEMATICAL MONOSPACE DIGIT NINE
Lo, -- (16#20000#, 16#2A6D6#) <CJK Ideograph Extension B, First> .. <CJK Ideograph Extension B, Last>
Lo, -- (16#2F800#, 16#2FA1D#) CJK COMPATIBILITY IDEOGRAPH-2F800 .. CJK COMPATIBILITY IDEOGRAPH-2FA1D
Cf, -- (16#E0001#, 16#E0001#) LANGUAGE TAG .. LANGUAGE TAG
Cf, -- (16#E0020#, 16#E007F#) TAG SPACE .. CANCEL TAG
Mn, -- (16#E0100#, 16#E01EF#) VARIATION SELECTOR-17 .. VARIATION SELECTOR-256
Co, -- (16#F0000#, 16#FFFFD#) <Plane 15 Private Use, First> .. <Plane 15 Private Use, Last>
Co); -- (16#100000#, 16#10FFFD#) <Plane 16 Private Use, First> .. <Plane 16 Private Use, Last>
-- The following array includes all characters considered digits, i.e.
-- all characters from the Unicode table with categories:
-- Number, Decimal Digit (Nd)
UTF_32_Digits : constant UTF_32_Ranges := (
(16#00030#, 16#00039#), -- DIGIT ZERO .. DIGIT NINE
(16#00660#, 16#00669#), -- ARABIC-INDIC DIGIT ZERO .. ARABIC-INDIC DIGIT NINE
(16#006F0#, 16#006F9#), -- EXTENDED ARABIC-INDIC DIGIT ZERO .. EXTENDED ARABIC-INDIC DIGIT NINE
(16#00966#, 16#0096F#), -- DEVANAGARI DIGIT ZERO .. DEVANAGARI DIGIT NINE
(16#009E6#, 16#009EF#), -- BENGALI DIGIT ZERO .. BENGALI DIGIT NINE
(16#00A66#, 16#00A6F#), -- GURMUKHI DIGIT ZERO .. GURMUKHI DIGIT NINE
(16#00AE6#, 16#00AEF#), -- GUJARATI DIGIT ZERO .. GUJARATI DIGIT NINE
(16#00B66#, 16#00B6F#), -- ORIYA DIGIT ZERO .. ORIYA DIGIT NINE
(16#00BE7#, 16#00BEF#), -- TAMIL DIGIT ONE .. TAMIL DIGIT NINE
(16#00C66#, 16#00C6F#), -- TELUGU DIGIT ZERO .. TELUGU DIGIT NINE
(16#00CE6#, 16#00CEF#), -- KANNADA DIGIT ZERO .. KANNADA DIGIT NINE
(16#00D66#, 16#00D6F#), -- MALAYALAM DIGIT ZERO .. MALAYALAM DIGIT NINE
(16#00E50#, 16#00E59#), -- THAI DIGIT ZERO .. THAI DIGIT NINE
(16#00ED0#, 16#00ED9#), -- LAO DIGIT ZERO .. LAO DIGIT NINE
(16#00F20#, 16#00F29#), -- TIBETAN DIGIT ZERO .. TIBETAN DIGIT NINE
(16#01040#, 16#01049#), -- MYANMAR DIGIT ZERO .. MYANMAR DIGIT NINE
(16#01369#, 16#01371#), -- ETHIOPIC DIGIT ONE .. ETHIOPIC DIGIT NINE
(16#017E0#, 16#017E9#), -- KHMER DIGIT ZERO .. KHMER DIGIT NINE
(16#01810#, 16#01819#), -- MONGOLIAN DIGIT ZERO .. MONGOLIAN DIGIT NINE
(16#01946#, 16#0194F#), -- LIMBU DIGIT ZERO .. LIMBU DIGIT NINE
(16#0FF10#, 16#0FF19#), -- FULLWIDTH DIGIT ZERO .. FULLWIDTH DIGIT NINE
(16#104A0#, 16#104A9#), -- OSMANYA DIGIT ZERO .. OSMANYA DIGIT NINE
(16#1D7CE#, 16#1D7FF#)); -- MATHEMATICAL BOLD DIGIT ZERO .. MATHEMATICAL MONOSPACE DIGIT NINE
-- The following table includes all characters considered letters, i.e.
-- all characters from the Unicode table with categories:
-- Letter, Uppercase (Lu)
-- Letter, Lowercase (Ll)
-- Letter, Titlecase (Lt)
-- Letter, Modifier (Lm)
-- Letter, Other (Lo)
-- Number, Letter (Nl)
UTF_32_Letters : constant UTF_32_Ranges := (
(16#00041#, 16#0005A#), -- LATIN CAPITAL LETTER A .. LATIN CAPITAL LETTER Z
(16#00061#, 16#0007A#), -- LATIN SMALL LETTER A .. LATIN SMALL LETTER Z
(16#000AA#, 16#000AA#), -- FEMININE ORDINAL INDICATOR .. FEMININE ORDINAL INDICATOR
(16#000B5#, 16#000B5#), -- MICRO SIGN .. MICRO SIGN
(16#000BA#, 16#000BA#), -- MASCULINE ORDINAL INDICATOR .. MASCULINE ORDINAL INDICATOR
(16#000C0#, 16#000D6#), -- LATIN CAPITAL LETTER A WITH GRAVE .. LATIN CAPITAL LETTER O WITH DIAERESIS
(16#000D8#, 16#000F6#), -- LATIN CAPITAL LETTER O WITH STROKE .. LATIN SMALL LETTER O WITH DIAERESIS
(16#000F8#, 16#00236#), -- LATIN SMALL LETTER O WITH STROKE .. LATIN SMALL LETTER T WITH CURL
(16#00250#, 16#002C1#), -- LATIN SMALL LETTER TURNED A .. MODIFIER LETTER REVERSED GLOTTAL STOP
(16#002C6#, 16#002D1#), -- MODIFIER LETTER CIRCUMFLEX ACCENT .. MODIFIER LETTER HALF TRIANGULAR COLON
(16#002E0#, 16#002E4#), -- MODIFIER LETTER SMALL GAMMA .. MODIFIER LETTER SMALL REVERSED GLOTTAL STOP
(16#002EE#, 16#002EE#), -- MODIFIER LETTER DOUBLE APOSTROPHE .. MODIFIER LETTER DOUBLE APOSTROPHE
(16#0037A#, 16#0037A#), -- GREEK YPOGEGRAMMENI .. GREEK YPOGEGRAMMENI
(16#00386#, 16#00386#), -- GREEK CAPITAL LETTER ALPHA WITH TONOS .. GREEK CAPITAL LETTER ALPHA WITH TONOS
(16#00388#, 16#0038A#), -- GREEK CAPITAL LETTER EPSILON WITH TONOS .. GREEK CAPITAL LETTER IOTA WITH TONOS
(16#0038C#, 16#0038C#), -- GREEK CAPITAL LETTER OMICRON WITH TONOS .. GREEK CAPITAL LETTER OMICRON WITH TONOS
(16#0038E#, 16#003A1#), -- GREEK CAPITAL LETTER UPSILON WITH TONOS .. GREEK CAPITAL LETTER RHO
(16#003A3#, 16#003CE#), -- GREEK CAPITAL LETTER SIGMA .. GREEK SMALL LETTER OMEGA WITH TONOS
(16#003D0#, 16#003F5#), -- GREEK BETA SYMBOL .. GREEK LUNATE EPSILON SYMBOL
(16#003F7#, 16#003FB#), -- GREEK CAPITAL LETTER SHO .. GREEK SMALL LETTER SAN
(16#00400#, 16#00481#), -- CYRILLIC CAPITAL LETTER IE WITH GRAVE .. CYRILLIC SMALL LETTER KOPPA
(16#0048A#, 16#004CE#), -- CYRILLIC CAPITAL LETTER SHORT I WITH TAIL .. CYRILLIC SMALL LETTER EM WITH TAIL
(16#004D0#, 16#004F5#), -- CYRILLIC CAPITAL LETTER A WITH BREVE .. CYRILLIC SMALL LETTER CHE WITH DIAERESIS
(16#004F8#, 16#004F9#), -- CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS .. CYRILLIC SMALL LETTER YERU WITH DIAERESIS
(16#00500#, 16#0050F#), -- CYRILLIC CAPITAL LETTER KOMI DE .. CYRILLIC SMALL LETTER KOMI TJE
(16#00531#, 16#00556#), -- ARMENIAN CAPITAL LETTER AYB .. ARMENIAN CAPITAL LETTER FEH
(16#00559#, 16#00559#), -- ARMENIAN MODIFIER LETTER LEFT HALF RING .. ARMENIAN MODIFIER LETTER LEFT HALF RING
(16#00561#, 16#00587#), -- ARMENIAN SMALL LETTER AYB .. ARMENIAN SMALL LIGATURE ECH YIWN
(16#005D0#, 16#005EA#), -- HEBREW LETTER ALEF .. HEBREW LETTER TAV
(16#005F0#, 16#005F2#), -- HEBREW LIGATURE YIDDISH DOUBLE VAV .. HEBREW LIGATURE YIDDISH DOUBLE YOD
(16#00621#, 16#0063A#), -- ARABIC LETTER HAMZA .. ARABIC LETTER GHAIN
(16#00640#, 16#0064A#), -- ARABIC TATWEEL .. ARABIC LETTER YEH
(16#0066E#, 16#0066F#), -- ARABIC LETTER DOTLESS BEH .. ARABIC LETTER DOTLESS QAF
(16#00671#, 16#006D3#), -- ARABIC LETTER ALEF WASLA .. ARABIC LETTER YEH BARREE WITH HAMZA ABOVE
(16#006D5#, 16#006D5#), -- ARABIC LETTER AE .. ARABIC LETTER AE
(16#006E5#, 16#006E6#), -- ARABIC SMALL WAW .. ARABIC SMALL YEH
(16#006EE#, 16#006EF#), -- ARABIC LETTER DAL WITH INVERTED V .. ARABIC LETTER REH WITH INVERTED V
(16#006FA#, 16#006FC#), -- ARABIC LETTER SHEEN WITH DOT BELOW .. ARABIC LETTER GHAIN WITH DOT BELOW
(16#006FF#, 16#006FF#), -- ARABIC LETTER HEH WITH INVERTED V .. ARABIC LETTER HEH WITH INVERTED V
(16#00710#, 16#00710#), -- SYRIAC LETTER ALAPH .. SYRIAC LETTER ALAPH
(16#00712#, 16#0072F#), -- SYRIAC LETTER BETH .. SYRIAC LETTER PERSIAN DHALATH
(16#0074D#, 16#0074F#), -- SYRIAC LETTER SOGDIAN ZHAIN .. SYRIAC LETTER SOGDIAN FE
(16#00780#, 16#007A5#), -- THAANA LETTER HAA .. THAANA LETTER WAAVU
(16#007B1#, 16#007B1#), -- THAANA LETTER NAA .. THAANA LETTER NAA
(16#00904#, 16#00939#), -- DEVANAGARI LETTER SHORT A .. DEVANAGARI LETTER HA
(16#0093D#, 16#0093D#), -- DEVANAGARI SIGN AVAGRAHA .. DEVANAGARI SIGN AVAGRAHA
(16#00950#, 16#00950#), -- DEVANAGARI OM .. DEVANAGARI OM
(16#00958#, 16#00961#), -- DEVANAGARI LETTER QA .. DEVANAGARI LETTER VOCALIC LL
(16#00985#, 16#0098C#), -- BENGALI LETTER A .. BENGALI LETTER VOCALIC L
(16#0098F#, 16#00990#), -- BENGALI LETTER E .. BENGALI LETTER AI
(16#00993#, 16#009A8#), -- BENGALI LETTER O .. BENGALI LETTER NA
(16#009AA#, 16#009B0#), -- BENGALI LETTER PA .. BENGALI LETTER RA
(16#009B2#, 16#009B2#), -- BENGALI LETTER LA .. BENGALI LETTER LA
(16#009B6#, 16#009B9#), -- BENGALI LETTER SHA .. BENGALI LETTER HA
(16#009BD#, 16#009BD#), -- BENGALI SIGN AVAGRAHA .. BENGALI SIGN AVAGRAHA
(16#009DC#, 16#009DD#), -- BENGALI LETTER RRA .. BENGALI LETTER RHA
(16#009DF#, 16#009E1#), -- BENGALI LETTER YYA .. BENGALI LETTER VOCALIC LL
(16#009F0#, 16#009F1#), -- BENGALI LETTER RA WITH MIDDLE DIAGONAL .. BENGALI LETTER RA WITH LOWER DIAGONAL
(16#00A05#, 16#00A0A#), -- GURMUKHI LETTER A .. GURMUKHI LETTER UU
(16#00A0F#, 16#00A10#), -- GURMUKHI LETTER EE .. GURMUKHI LETTER AI
(16#00A13#, 16#00A28#), -- GURMUKHI LETTER OO .. GURMUKHI LETTER NA
(16#00A2A#, 16#00A30#), -- GURMUKHI LETTER PA .. GURMUKHI LETTER RA
(16#00A32#, 16#00A33#), -- GURMUKHI LETTER LA .. GURMUKHI LETTER LLA
(16#00A35#, 16#00A36#), -- GURMUKHI LETTER VA .. GURMUKHI LETTER SHA
(16#00A38#, 16#00A39#), -- GURMUKHI LETTER SA .. GURMUKHI LETTER HA
(16#00A59#, 16#00A5C#), -- GURMUKHI LETTER KHHA .. GURMUKHI LETTER RRA
(16#00A5E#, 16#00A5E#), -- GURMUKHI LETTER FA .. GURMUKHI LETTER FA
(16#00A72#, 16#00A74#), -- GURMUKHI IRI .. GURMUKHI EK ONKAR
(16#00A85#, 16#00A8D#), -- GUJARATI LETTER A .. GUJARATI VOWEL CANDRA E
(16#00A8F#, 16#00A91#), -- GUJARATI LETTER E .. GUJARATI VOWEL CANDRA O
(16#00A93#, 16#00AA8#), -- GUJARATI LETTER O .. GUJARATI LETTER NA
(16#00AAA#, 16#00AB0#), -- GUJARATI LETTER PA .. GUJARATI LETTER RA
(16#00AB2#, 16#00AB3#), -- GUJARATI LETTER LA .. GUJARATI LETTER LLA
(16#00AB5#, 16#00AB9#), -- GUJARATI LETTER VA .. GUJARATI LETTER HA
(16#00ABD#, 16#00ABD#), -- GUJARATI SIGN AVAGRAHA .. GUJARATI SIGN AVAGRAHA
(16#00AD0#, 16#00AD0#), -- GUJARATI OM .. GUJARATI OM
(16#00AE0#, 16#00AE1#), -- GUJARATI LETTER VOCALIC RR .. GUJARATI LETTER VOCALIC LL
(16#00B05#, 16#00B0C#), -- ORIYA LETTER A .. ORIYA LETTER VOCALIC L
(16#00B0F#, 16#00B10#), -- ORIYA LETTER E .. ORIYA LETTER AI
(16#00B13#, 16#00B28#), -- ORIYA LETTER O .. ORIYA LETTER NA
(16#00B2A#, 16#00B30#), -- ORIYA LETTER PA .. ORIYA LETTER RA
(16#00B32#, 16#00B33#), -- ORIYA LETTER LA .. ORIYA LETTER LLA
(16#00B35#, 16#00B39#), -- ORIYA LETTER VA .. ORIYA LETTER HA
(16#00B3D#, 16#00B3D#), -- ORIYA SIGN AVAGRAHA .. ORIYA SIGN AVAGRAHA
(16#00B5C#, 16#00B5D#), -- ORIYA LETTER RRA .. ORIYA LETTER RHA
(16#00B5F#, 16#00B61#), -- ORIYA LETTER YYA .. ORIYA LETTER VOCALIC LL
(16#00B71#, 16#00B71#), -- ORIYA LETTER WA .. ORIYA LETTER WA
(16#00B83#, 16#00B83#), -- TAMIL SIGN VISARGA .. TAMIL SIGN VISARGA
(16#00B85#, 16#00B8A#), -- TAMIL LETTER A .. TAMIL LETTER UU
(16#00B8E#, 16#00B90#), -- TAMIL LETTER E .. TAMIL LETTER AI
(16#00B92#, 16#00B95#), -- TAMIL LETTER O .. TAMIL LETTER KA
(16#00B99#, 16#00B9A#), -- TAMIL LETTER NGA .. TAMIL LETTER CA
(16#00B9C#, 16#00B9C#), -- TAMIL LETTER JA .. TAMIL LETTER JA
(16#00B9E#, 16#00B9F#), -- TAMIL LETTER NYA .. TAMIL LETTER TTA
(16#00BA3#, 16#00BA4#), -- TAMIL LETTER NNA .. TAMIL LETTER TA
(16#00BA8#, 16#00BAA#), -- TAMIL LETTER NA .. TAMIL LETTER PA
(16#00BAE#, 16#00BB5#), -- TAMIL LETTER MA .. TAMIL LETTER VA
(16#00BB7#, 16#00BB9#), -- TAMIL LETTER SSA .. TAMIL LETTER HA
(16#00C05#, 16#00C0C#), -- TELUGU LETTER A .. TELUGU LETTER VOCALIC L
(16#00C0E#, 16#00C10#), -- TELUGU LETTER E .. TELUGU LETTER AI
(16#00C12#, 16#00C28#), -- TELUGU LETTER O .. TELUGU LETTER NA
(16#00C2A#, 16#00C33#), -- TELUGU LETTER PA .. TELUGU LETTER LLA
(16#00C35#, 16#00C39#), -- TELUGU LETTER VA .. TELUGU LETTER HA
(16#00C60#, 16#00C61#), -- TELUGU LETTER VOCALIC RR .. TELUGU LETTER VOCALIC LL
(16#00C85#, 16#00C8C#), -- KANNADA LETTER A .. KANNADA LETTER VOCALIC L
(16#00C8E#, 16#00C90#), -- KANNADA LETTER E .. KANNADA LETTER AI
(16#00C92#, 16#00CA8#), -- KANNADA LETTER O .. KANNADA LETTER NA
(16#00CAA#, 16#00CB3#), -- KANNADA LETTER PA .. KANNADA LETTER LLA
(16#00CB5#, 16#00CB9#), -- KANNADA LETTER VA .. KANNADA LETTER HA
(16#00CBD#, 16#00CBD#), -- KANNADA SIGN AVAGRAHA .. KANNADA SIGN AVAGRAHA
(16#00CDE#, 16#00CDE#), -- KANNADA LETTER FA .. KANNADA LETTER FA
(16#00CE0#, 16#00CE1#), -- KANNADA LETTER VOCALIC RR .. KANNADA LETTER VOCALIC LL
(16#00D05#, 16#00D0C#), -- MALAYALAM LETTER A .. MALAYALAM LETTER VOCALIC L
(16#00D0E#, 16#00D10#), -- MALAYALAM LETTER E .. MALAYALAM LETTER AI
(16#00D12#, 16#00D28#), -- MALAYALAM LETTER O .. MALAYALAM LETTER NA
(16#00D2A#, 16#00D39#), -- MALAYALAM LETTER PA .. MALAYALAM LETTER HA
(16#00D60#, 16#00D61#), -- MALAYALAM LETTER VOCALIC RR .. MALAYALAM LETTER VOCALIC LL
(16#00D85#, 16#00D96#), -- SINHALA LETTER AYANNA .. SINHALA LETTER AUYANNA
(16#00D9A#, 16#00DB1#), -- SINHALA LETTER ALPAPRAANA KAYANNA .. SINHALA LETTER DANTAJA NAYANNA
(16#00DB3#, 16#00DBB#), -- SINHALA LETTER SANYAKA DAYANNA .. SINHALA LETTER RAYANNA
(16#00DBD#, 16#00DBD#), -- SINHALA LETTER DANTAJA LAYANNA .. SINHALA LETTER DANTAJA LAYANNA
(16#00DC0#, 16#00DC6#), -- SINHALA LETTER VAYANNA .. SINHALA LETTER FAYANNA
(16#00E01#, 16#00E30#), -- THAI CHARACTER KO KAI .. THAI CHARACTER SARA A
(16#00E32#, 16#00E33#), -- THAI CHARACTER SARA AA .. THAI CHARACTER SARA AM
(16#00E40#, 16#00E46#), -- THAI CHARACTER SARA E .. THAI CHARACTER MAIYAMOK
(16#00E81#, 16#00E82#), -- LAO LETTER KO .. LAO LETTER KHO SUNG
(16#00E84#, 16#00E84#), -- LAO LETTER KHO TAM .. LAO LETTER KHO TAM
(16#00E87#, 16#00E88#), -- LAO LETTER NGO .. LAO LETTER CO
(16#00E8A#, 16#00E8A#), -- LAO LETTER SO TAM .. LAO LETTER SO TAM
(16#00E8D#, 16#00E8D#), -- LAO LETTER NYO .. LAO LETTER NYO
(16#00E94#, 16#00E97#), -- LAO LETTER DO .. LAO LETTER THO TAM
(16#00E99#, 16#00E9F#), -- LAO LETTER NO .. LAO LETTER FO SUNG
(16#00EA1#, 16#00EA3#), -- LAO LETTER MO .. LAO LETTER LO LING
(16#00EA5#, 16#00EA5#), -- LAO LETTER LO LOOT .. LAO LETTER LO LOOT
(16#00EA7#, 16#00EA7#), -- LAO LETTER WO .. LAO LETTER WO
(16#00EAA#, 16#00EAB#), -- LAO LETTER SO SUNG .. LAO LETTER HO SUNG
(16#00EAD#, 16#00EB0#), -- LAO LETTER O .. LAO VOWEL SIGN A
(16#00EB2#, 16#00EB3#), -- LAO VOWEL SIGN AA .. LAO VOWEL SIGN AM
(16#00EBD#, 16#00EBD#), -- LAO SEMIVOWEL SIGN NYO .. LAO SEMIVOWEL SIGN NYO
(16#00EC0#, 16#00EC4#), -- LAO VOWEL SIGN E .. LAO VOWEL SIGN AI
(16#00EC6#, 16#00EC6#), -- LAO KO LA .. LAO KO LA
(16#00EDC#, 16#00EDD#), -- LAO HO NO .. LAO HO MO
(16#00F00#, 16#00F00#), -- TIBETAN SYLLABLE OM .. TIBETAN SYLLABLE OM
(16#00F40#, 16#00F47#), -- TIBETAN LETTER KA .. TIBETAN LETTER JA
(16#00F49#, 16#00F6A#), -- TIBETAN LETTER NYA .. TIBETAN LETTER FIXED-FORM RA
(16#00F88#, 16#00F8B#), -- TIBETAN SIGN LCE TSA CAN .. TIBETAN SIGN GRU MED RGYINGS
(16#01000#, 16#01021#), -- MYANMAR LETTER KA .. MYANMAR LETTER A
(16#01023#, 16#01027#), -- MYANMAR LETTER I .. MYANMAR LETTER E
(16#01029#, 16#0102A#), -- MYANMAR LETTER O .. MYANMAR LETTER AU
(16#01050#, 16#01055#), -- MYANMAR LETTER SHA .. MYANMAR LETTER VOCALIC LL
(16#010A0#, 16#010C5#), -- GEORGIAN CAPITAL LETTER AN .. GEORGIAN CAPITAL LETTER HOE
(16#010D0#, 16#010F8#), -- GEORGIAN LETTER AN .. GEORGIAN LETTER ELIFI
(16#01100#, 16#01159#), -- HANGUL CHOSEONG KIYEOK .. HANGUL CHOSEONG YEORINHIEUH
(16#0115F#, 16#011A2#), -- HANGUL CHOSEONG FILLER .. HANGUL JUNGSEONG SSANGARAEA
(16#011A8#, 16#011F9#), -- HANGUL JONGSEONG KIYEOK .. HANGUL JONGSEONG YEORINHIEUH
(16#01200#, 16#01206#), -- ETHIOPIC SYLLABLE HA .. ETHIOPIC SYLLABLE HO
(16#01208#, 16#01246#), -- ETHIOPIC SYLLABLE LA .. ETHIOPIC SYLLABLE QO
(16#01248#, 16#01248#), -- ETHIOPIC SYLLABLE QWA .. ETHIOPIC SYLLABLE QWA
(16#0124A#, 16#0124D#), -- ETHIOPIC SYLLABLE QWI .. ETHIOPIC SYLLABLE QWE
(16#01250#, 16#01256#), -- ETHIOPIC SYLLABLE QHA .. ETHIOPIC SYLLABLE QHO
(16#01258#, 16#01258#), -- ETHIOPIC SYLLABLE QHWA .. ETHIOPIC SYLLABLE QHWA
(16#0125A#, 16#0125D#), -- ETHIOPIC SYLLABLE QHWI .. ETHIOPIC SYLLABLE QHWE
(16#01260#, 16#01286#), -- ETHIOPIC SYLLABLE BA .. ETHIOPIC SYLLABLE XO
(16#01288#, 16#01288#), -- ETHIOPIC SYLLABLE XWA .. ETHIOPIC SYLLABLE XWA
(16#0128A#, 16#0128D#), -- ETHIOPIC SYLLABLE XWI .. ETHIOPIC SYLLABLE XWE
(16#01290#, 16#012AE#), -- ETHIOPIC SYLLABLE NA .. ETHIOPIC SYLLABLE KO
(16#012B0#, 16#012B0#), -- ETHIOPIC SYLLABLE KWA .. ETHIOPIC SYLLABLE KWA
(16#012B2#, 16#012B5#), -- ETHIOPIC SYLLABLE KWI .. ETHIOPIC SYLLABLE KWE
(16#012B8#, 16#012BE#), -- ETHIOPIC SYLLABLE KXA .. ETHIOPIC SYLLABLE KXO
(16#012C0#, 16#012C0#), -- ETHIOPIC SYLLABLE KXWA .. ETHIOPIC SYLLABLE KXWA
(16#012C2#, 16#012C5#), -- ETHIOPIC SYLLABLE KXWI .. ETHIOPIC SYLLABLE KXWE
(16#012C8#, 16#012CE#), -- ETHIOPIC SYLLABLE WA .. ETHIOPIC SYLLABLE WO
(16#012D0#, 16#012D6#), -- ETHIOPIC SYLLABLE PHARYNGEAL A .. ETHIOPIC SYLLABLE PHARYNGEAL O
(16#012D8#, 16#012EE#), -- ETHIOPIC SYLLABLE ZA .. ETHIOPIC SYLLABLE YO
(16#012F0#, 16#0130E#), -- ETHIOPIC SYLLABLE DA .. ETHIOPIC SYLLABLE GO
(16#01310#, 16#01310#), -- ETHIOPIC SYLLABLE GWA .. ETHIOPIC SYLLABLE GWA
(16#01312#, 16#01315#), -- ETHIOPIC SYLLABLE GWI .. ETHIOPIC SYLLABLE GWE
(16#01318#, 16#0131E#), -- ETHIOPIC SYLLABLE GGA .. ETHIOPIC SYLLABLE GGO
(16#01320#, 16#01346#), -- ETHIOPIC SYLLABLE THA .. ETHIOPIC SYLLABLE TZO
(16#01348#, 16#0135A#), -- ETHIOPIC SYLLABLE FA .. ETHIOPIC SYLLABLE FYA
(16#013A0#, 16#013F4#), -- CHEROKEE LETTER A .. CHEROKEE LETTER YV
(16#01401#, 16#0166C#), -- CANADIAN SYLLABICS E .. CANADIAN SYLLABICS CARRIER TTSA
(16#0166F#, 16#01676#), -- CANADIAN SYLLABICS QAI .. CANADIAN SYLLABICS NNGAA
(16#01681#, 16#0169A#), -- OGHAM LETTER BEITH .. OGHAM LETTER PEITH
(16#016A0#, 16#016EA#), -- RUNIC LETTER FEHU FEOH FE F .. RUNIC LETTER X
(16#016EE#, 16#016F0#), -- RUNIC ARLAUG SYMBOL .. RUNIC BELGTHOR SYMBOL
(16#01700#, 16#0170C#), -- TAGALOG LETTER A .. TAGALOG LETTER YA
(16#0170E#, 16#01711#), -- TAGALOG LETTER LA .. TAGALOG LETTER HA
(16#01720#, 16#01731#), -- HANUNOO LETTER A .. HANUNOO LETTER HA
(16#01740#, 16#01751#), -- BUHID LETTER A .. BUHID LETTER HA
(16#01760#, 16#0176C#), -- TAGBANWA LETTER A .. TAGBANWA LETTER YA
(16#0176E#, 16#01770#), -- TAGBANWA LETTER LA .. TAGBANWA LETTER SA
(16#01780#, 16#017B3#), -- KHMER LETTER KA .. KHMER INDEPENDENT VOWEL QAU
(16#017D7#, 16#017D7#), -- KHMER SIGN LEK TOO .. KHMER SIGN LEK TOO
(16#017DC#, 16#017DC#), -- KHMER SIGN AVAKRAHASANYA .. KHMER SIGN AVAKRAHASANYA
(16#01820#, 16#01877#), -- MONGOLIAN LETTER A .. MONGOLIAN LETTER MANCHU ZHA
(16#01880#, 16#018A8#), -- MONGOLIAN LETTER ALI GALI ANUSVARA ONE .. MONGOLIAN LETTER MANCHU ALI GALI BHA
(16#01900#, 16#0191C#), -- LIMBU VOWEL-CARRIER LETTER .. LIMBU LETTER HA
(16#01950#, 16#0196D#), -- TAI LE LETTER KA .. TAI LE LETTER AI
(16#01970#, 16#01974#), -- TAI LE LETTER TONE-2 .. TAI LE LETTER TONE-6
(16#01D00#, 16#01D6B#), -- LATIN LETTER SMALL CAPITAL A .. LATIN SMALL LETTER UE
(16#01E00#, 16#01E9B#), -- LATIN CAPITAL LETTER A WITH RING BELOW .. LATIN SMALL LETTER LONG S WITH DOT ABOVE
(16#01EA0#, 16#01EF9#), -- LATIN CAPITAL LETTER A WITH DOT BELOW .. LATIN SMALL LETTER Y WITH TILDE
(16#01F00#, 16#01F15#), -- GREEK SMALL LETTER ALPHA WITH PSILI .. GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA
(16#01F18#, 16#01F1D#), -- GREEK CAPITAL LETTER EPSILON WITH PSILI .. GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA
(16#01F20#, 16#01F45#), -- GREEK SMALL LETTER ETA WITH PSILI .. GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA
(16#01F48#, 16#01F4D#), -- GREEK CAPITAL LETTER OMICRON WITH PSILI .. GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA
(16#01F50#, 16#01F57#), -- GREEK SMALL LETTER UPSILON WITH PSILI .. GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI
(16#01F59#, 16#01F59#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA
(16#01F5B#, 16#01F5B#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA
(16#01F5D#, 16#01F5D#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA
(16#01F5F#, 16#01F7D#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI .. GREEK SMALL LETTER OMEGA WITH OXIA
(16#01F80#, 16#01FB4#), -- GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI .. GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI
(16#01FB6#, 16#01FBC#), -- GREEK SMALL LETTER ALPHA WITH PERISPOMENI .. GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI
(16#01FBE#, 16#01FBE#), -- GREEK PROSGEGRAMMENI .. GREEK PROSGEGRAMMENI
(16#01FC2#, 16#01FC4#), -- GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI .. GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI
(16#01FC6#, 16#01FCC#), -- GREEK SMALL LETTER ETA WITH PERISPOMENI .. GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI
(16#01FD0#, 16#01FD3#), -- GREEK SMALL LETTER IOTA WITH VRACHY .. GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
(16#01FD6#, 16#01FDB#), -- GREEK SMALL LETTER IOTA WITH PERISPOMENI .. GREEK CAPITAL LETTER IOTA WITH OXIA
(16#01FE0#, 16#01FEC#), -- GREEK SMALL LETTER UPSILON WITH VRACHY .. GREEK CAPITAL LETTER RHO WITH DASIA
(16#01FF2#, 16#01FF4#), -- GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI .. GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI
(16#01FF6#, 16#01FFC#), -- GREEK SMALL LETTER OMEGA WITH PERISPOMENI .. GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI
(16#02071#, 16#02071#), -- SUPERSCRIPT LATIN SMALL LETTER I .. SUPERSCRIPT LATIN SMALL LETTER I
(16#0207F#, 16#0207F#), -- SUPERSCRIPT LATIN SMALL LETTER N .. SUPERSCRIPT LATIN SMALL LETTER N
(16#02102#, 16#02102#), -- DOUBLE-STRUCK CAPITAL C .. DOUBLE-STRUCK CAPITAL C
(16#02107#, 16#02107#), -- EULER CONSTANT .. EULER CONSTANT
(16#0210A#, 16#02113#), -- SCRIPT SMALL G .. SCRIPT SMALL L
(16#02115#, 16#02115#), -- DOUBLE-STRUCK CAPITAL N .. DOUBLE-STRUCK CAPITAL N
(16#02119#, 16#0211D#), -- DOUBLE-STRUCK CAPITAL P .. DOUBLE-STRUCK CAPITAL R
(16#02124#, 16#02124#), -- DOUBLE-STRUCK CAPITAL Z .. DOUBLE-STRUCK CAPITAL Z
(16#02126#, 16#02126#), -- OHM SIGN .. OHM SIGN
(16#02128#, 16#02128#), -- BLACK-LETTER CAPITAL Z .. BLACK-LETTER CAPITAL Z
(16#0212A#, 16#0212D#), -- KELVIN SIGN .. BLACK-LETTER CAPITAL C
(16#0212F#, 16#02131#), -- SCRIPT SMALL E .. SCRIPT CAPITAL F
(16#02133#, 16#02139#), -- SCRIPT CAPITAL M .. INFORMATION SOURCE
(16#0213D#, 16#0213F#), -- DOUBLE-STRUCK SMALL GAMMA .. DOUBLE-STRUCK CAPITAL PI
(16#02145#, 16#02149#), -- DOUBLE-STRUCK ITALIC CAPITAL D .. DOUBLE-STRUCK ITALIC SMALL J
(16#02160#, 16#02183#), -- ROMAN NUMERAL ONE .. ROMAN NUMERAL REVERSED ONE HUNDRED
(16#03005#, 16#03007#), -- IDEOGRAPHIC ITERATION MARK .. IDEOGRAPHIC NUMBER ZERO
(16#03021#, 16#03029#), -- HANGZHOU NUMERAL ONE .. HANGZHOU NUMERAL NINE
(16#03031#, 16#03035#), -- VERTICAL KANA REPEAT MARK .. VERTICAL KANA REPEAT MARK LOWER HALF
(16#03038#, 16#0303C#), -- HANGZHOU NUMERAL TEN .. MASU MARK
(16#03041#, 16#03096#), -- HIRAGANA LETTER SMALL A .. HIRAGANA LETTER SMALL KE
(16#0309D#, 16#0309F#), -- HIRAGANA ITERATION MARK .. HIRAGANA DIGRAPH YORI
(16#030A1#, 16#030FA#), -- KATAKANA LETTER SMALL A .. KATAKANA LETTER VO
(16#030FC#, 16#030FF#), -- KATAKANA-HIRAGANA PROLONGED SOUND MARK .. KATAKANA DIGRAPH KOTO
(16#03105#, 16#0312C#), -- BOPOMOFO LETTER B .. BOPOMOFO LETTER GN
(16#03131#, 16#0318E#), -- HANGUL LETTER KIYEOK .. HANGUL LETTER ARAEAE
(16#031A0#, 16#031B7#), -- BOPOMOFO LETTER BU .. BOPOMOFO FINAL LETTER H
(16#031F0#, 16#031FF#), -- KATAKANA LETTER SMALL KU .. KATAKANA LETTER SMALL RO
(16#03400#, 16#04DB5#), -- <CJK Ideograph Extension A, First> .. <CJK Ideograph Extension A, Last>
(16#04E00#, 16#09FA5#), -- <CJK Ideograph, First> .. <CJK Ideograph, Last>
(16#0A000#, 16#0A48C#), -- YI SYLLABLE IT .. YI SYLLABLE YYR
(16#0AC00#, 16#0D7A3#), -- <Hangul Syllable, First> .. <Hangul Syllable, Last>
(16#0F900#, 16#0FA2D#), -- CJK COMPATIBILITY IDEOGRAPH-F900 .. CJK COMPATIBILITY IDEOGRAPH-FA2D
(16#0FA30#, 16#0FA6A#), -- CJK COMPATIBILITY IDEOGRAPH-FA30 .. CJK COMPATIBILITY IDEOGRAPH-FA6A
(16#0FB00#, 16#0FB06#), -- LATIN SMALL LIGATURE FF .. LATIN SMALL LIGATURE ST
(16#0FB13#, 16#0FB17#), -- ARMENIAN SMALL LIGATURE MEN NOW .. ARMENIAN SMALL LIGATURE MEN XEH
(16#0FB1D#, 16#0FB1D#), -- HEBREW LETTER YOD WITH HIRIQ .. HEBREW LETTER YOD WITH HIRIQ
(16#0FB1F#, 16#0FB28#), -- HEBREW LIGATURE YIDDISH YOD YOD PATAH .. HEBREW LETTER WIDE TAV
(16#0FB2A#, 16#0FB36#), -- HEBREW LETTER SHIN WITH SHIN DOT .. HEBREW LETTER ZAYIN WITH DAGESH
(16#0FB38#, 16#0FB3C#), -- HEBREW LETTER TET WITH DAGESH .. HEBREW LETTER LAMED WITH DAGESH
(16#0FB3E#, 16#0FB3E#), -- HEBREW LETTER MEM WITH DAGESH .. HEBREW LETTER MEM WITH DAGESH
(16#0FB40#, 16#0FB41#), -- HEBREW LETTER NUN WITH DAGESH .. HEBREW LETTER SAMEKH WITH DAGESH
(16#0FB43#, 16#0FB44#), -- HEBREW LETTER FINAL PE WITH DAGESH .. HEBREW LETTER PE WITH DAGESH
(16#0FB46#, 16#0FBB1#), -- HEBREW LETTER TSADI WITH DAGESH .. ARABIC LETTER YEH BARREE WITH HAMZA ABOVE FINAL FORM
(16#0FBD3#, 16#0FD3D#), -- ARABIC LETTER NG ISOLATED FORM .. ARABIC LIGATURE ALEF WITH FATHATAN ISOLATED FORM
(16#0FD50#, 16#0FD8F#), -- ARABIC LIGATURE TEH WITH JEEM WITH MEEM INITIAL FORM .. ARABIC LIGATURE MEEM WITH KHAH WITH MEEM INITIAL FORM
(16#0FD92#, 16#0FDC7#), -- ARABIC LIGATURE MEEM WITH JEEM WITH KHAH INITIAL FORM .. ARABIC LIGATURE NOON WITH JEEM WITH YEH FINAL FORM
(16#0FDF0#, 16#0FDFB#), -- ARABIC LIGATURE SALLA USED AS KORANIC STOP SIGN ISOLATED FORM .. ARABIC LIGATURE JALLAJALALOUHOU
(16#0FE70#, 16#0FE74#), -- ARABIC FATHATAN ISOLATED FORM .. ARABIC KASRATAN ISOLATED FORM
(16#0FE76#, 16#0FEFC#), -- ARABIC FATHA ISOLATED FORM .. ARABIC LIGATURE LAM WITH ALEF FINAL FORM
(16#0FF21#, 16#0FF3A#), -- FULLWIDTH LATIN CAPITAL LETTER A .. FULLWIDTH LATIN CAPITAL LETTER Z
(16#0FF41#, 16#0FF5A#), -- FULLWIDTH LATIN SMALL LETTER A .. FULLWIDTH LATIN SMALL LETTER Z
(16#0FF66#, 16#0FFBE#), -- HALFWIDTH KATAKANA LETTER WO .. HALFWIDTH HANGUL LETTER HIEUH
(16#0FFC2#, 16#0FFC7#), -- HALFWIDTH HANGUL LETTER A .. HALFWIDTH HANGUL LETTER E
(16#0FFCA#, 16#0FFCF#), -- HALFWIDTH HANGUL LETTER YEO .. HALFWIDTH HANGUL LETTER OE
(16#0FFD2#, 16#0FFD7#), -- HALFWIDTH HANGUL LETTER YO .. HALFWIDTH HANGUL LETTER YU
(16#0FFDA#, 16#0FFDC#), -- HALFWIDTH HANGUL LETTER EU .. HALFWIDTH HANGUL LETTER I
(16#10000#, 16#1000B#), -- LINEAR B SYLLABLE B008 A .. LINEAR B SYLLABLE B046 JE
(16#1000D#, 16#10026#), -- LINEAR B SYLLABLE B036 JO .. LINEAR B SYLLABLE B032 QO
(16#10028#, 16#1003A#), -- LINEAR B SYLLABLE B060 RA .. LINEAR B SYLLABLE B042 WO
(16#1003C#, 16#1003D#), -- LINEAR B SYLLABLE B017 ZA .. LINEAR B SYLLABLE B074 ZE
(16#1003F#, 16#1004D#), -- LINEAR B SYLLABLE B020 ZO .. LINEAR B SYLLABLE B091 TWO
(16#10050#, 16#1005D#), -- LINEAR B SYMBOL B018 .. LINEAR B SYMBOL B089
(16#10080#, 16#100FA#), -- LINEAR B IDEOGRAM B100 MAN .. LINEAR B IDEOGRAM VESSEL B305
(16#10300#, 16#1031E#), -- OLD ITALIC LETTER A .. OLD ITALIC LETTER UU
(16#10330#, 16#1034A#), -- GOTHIC LETTER AHSA .. GOTHIC LETTER NINE HUNDRED
(16#10380#, 16#1039D#), -- UGARITIC LETTER ALPA .. UGARITIC LETTER SSU
(16#10400#, 16#1049D#), -- DESERET CAPITAL LETTER LONG I .. OSMANYA LETTER OO
(16#10800#, 16#10805#), -- CYPRIOT SYLLABLE A .. CYPRIOT SYLLABLE JA
(16#10808#, 16#10808#), -- CYPRIOT SYLLABLE JO .. CYPRIOT SYLLABLE JO
(16#1080A#, 16#10835#), -- CYPRIOT SYLLABLE KA .. CYPRIOT SYLLABLE WO
(16#10837#, 16#10838#), -- CYPRIOT SYLLABLE XA .. CYPRIOT SYLLABLE XE
(16#1083C#, 16#1083C#), -- CYPRIOT SYLLABLE ZA .. CYPRIOT SYLLABLE ZA
(16#1083F#, 16#1083F#), -- CYPRIOT SYLLABLE ZO .. CYPRIOT SYLLABLE ZO
(16#1D400#, 16#1D454#), -- MATHEMATICAL BOLD CAPITAL A .. MATHEMATICAL ITALIC SMALL G
(16#1D456#, 16#1D49C#), -- MATHEMATICAL ITALIC SMALL I .. MATHEMATICAL SCRIPT CAPITAL A
(16#1D49E#, 16#1D49F#), -- MATHEMATICAL SCRIPT CAPITAL C .. MATHEMATICAL SCRIPT CAPITAL D
(16#1D4A2#, 16#1D4A2#), -- MATHEMATICAL SCRIPT CAPITAL G .. MATHEMATICAL SCRIPT CAPITAL G
(16#1D4A5#, 16#1D4A6#), -- MATHEMATICAL SCRIPT CAPITAL J .. MATHEMATICAL SCRIPT CAPITAL K
(16#1D4A9#, 16#1D4AC#), -- MATHEMATICAL SCRIPT CAPITAL N .. MATHEMATICAL SCRIPT CAPITAL Q
(16#1D4AE#, 16#1D4B9#), -- MATHEMATICAL SCRIPT CAPITAL S .. MATHEMATICAL SCRIPT SMALL D
(16#1D4BB#, 16#1D4BB#), -- MATHEMATICAL SCRIPT SMALL F .. MATHEMATICAL SCRIPT SMALL F
(16#1D4BD#, 16#1D4C3#), -- MATHEMATICAL SCRIPT SMALL H .. MATHEMATICAL SCRIPT SMALL N
(16#1D4C5#, 16#1D505#), -- MATHEMATICAL SCRIPT SMALL P .. MATHEMATICAL FRAKTUR CAPITAL B
(16#1D507#, 16#1D50A#), -- MATHEMATICAL FRAKTUR CAPITAL D .. MATHEMATICAL FRAKTUR CAPITAL G
(16#1D50D#, 16#1D514#), -- MATHEMATICAL FRAKTUR CAPITAL J .. MATHEMATICAL FRAKTUR CAPITAL Q
(16#1D516#, 16#1D51C#), -- MATHEMATICAL FRAKTUR CAPITAL S .. MATHEMATICAL FRAKTUR CAPITAL Y
(16#1D51E#, 16#1D539#), -- MATHEMATICAL FRAKTUR SMALL A .. MATHEMATICAL DOUBLE-STRUCK CAPITAL B
(16#1D53B#, 16#1D53E#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL D .. MATHEMATICAL DOUBLE-STRUCK CAPITAL G
(16#1D540#, 16#1D544#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL I .. MATHEMATICAL DOUBLE-STRUCK CAPITAL M
(16#1D546#, 16#1D546#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL O .. MATHEMATICAL DOUBLE-STRUCK CAPITAL O
(16#1D54A#, 16#1D550#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL S .. MATHEMATICAL DOUBLE-STRUCK CAPITAL Y
(16#1D552#, 16#1D6A3#), -- MATHEMATICAL DOUBLE-STRUCK SMALL A .. MATHEMATICAL MONOSPACE SMALL Z
(16#1D6A8#, 16#1D6C0#), -- MATHEMATICAL BOLD CAPITAL ALPHA .. MATHEMATICAL BOLD CAPITAL OMEGA
(16#1D6C2#, 16#1D6DA#), -- MATHEMATICAL BOLD SMALL ALPHA .. MATHEMATICAL BOLD SMALL OMEGA
(16#1D6DC#, 16#1D6FA#), -- MATHEMATICAL BOLD EPSILON SYMBOL .. MATHEMATICAL ITALIC CAPITAL OMEGA
(16#1D6FC#, 16#1D714#), -- MATHEMATICAL ITALIC SMALL ALPHA .. MATHEMATICAL ITALIC SMALL OMEGA
(16#1D716#, 16#1D734#), -- MATHEMATICAL ITALIC EPSILON SYMBOL .. MATHEMATICAL BOLD ITALIC CAPITAL OMEGA
(16#1D736#, 16#1D74E#), -- MATHEMATICAL BOLD ITALIC SMALL ALPHA .. MATHEMATICAL BOLD ITALIC SMALL OMEGA
(16#1D750#, 16#1D76E#), -- MATHEMATICAL BOLD ITALIC EPSILON SYMBOL .. MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA
(16#1D770#, 16#1D788#), -- MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA .. MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA
(16#1D78A#, 16#1D7A8#), -- MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL .. MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA
(16#1D7AA#, 16#1D7C2#), -- MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA .. MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA
(16#1D7C4#, 16#1D7C9#), -- MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL .. MATHEMATICAL SANS-SERIF BOLD ITALIC PI SYMBOL
(16#20000#, 16#2A6D6#), -- <CJK Ideograph Extension B, First> .. <CJK Ideograph Extension B, Last>
(16#2F800#, 16#2FA1D#)); -- CJK COMPATIBILITY IDEOGRAPH-2F800 .. CJK COMPATIBILITY IDEOGRAPH-2FA1D
-- The following table includes all characters considered spaces, i.e.
-- all characters from the Unicode table with categories:
-- Separator, Space (Zs)
UTF_32_Spaces : constant UTF_32_Ranges := (
(16#00020#, 16#00020#), -- SPACE .. SPACE
(16#000A0#, 16#000A0#), -- NO-BREAK SPACE .. NO-BREAK SPACE
(16#01680#, 16#01680#), -- OGHAM SPACE MARK .. OGHAM SPACE MARK
(16#0180E#, 16#0180E#), -- MONGOLIAN VOWEL SEPARATOR .. MONGOLIAN VOWEL SEPARATOR
(16#02000#, 16#0200B#), -- EN QUAD .. ZERO WIDTH SPACE
(16#0202F#, 16#0202F#), -- NARROW NO-BREAK SPACE .. NARROW NO-BREAK SPACE
(16#0205F#, 16#0205F#), -- MEDIUM MATHEMATICAL SPACE .. MEDIUM MATHEMATICAL SPACE
(16#03000#, 16#03000#)); -- IDEOGRAPHIC SPACE .. IDEOGRAPHIC SPACE
-- The following table includes all characters considered punctuation,
-- i.e. all characters from the Unicode table with categories:
-- Punctuation, Connector (Pc)
UTF_32_Punctuation : constant UTF_32_Ranges := (
(16#0005F#, 16#0005F#), -- LOW LINE .. LOW LINE
(16#0203F#, 16#02040#), -- UNDERTIE .. CHARACTER TIE
(16#02054#, 16#02054#), -- INVERTED UNDERTIE .. INVERTED UNDERTIE
(16#030FB#, 16#030FB#), -- KATAKANA MIDDLE DOT .. KATAKANA MIDDLE DOT
(16#0FE33#, 16#0FE34#), -- PRESENTATION FORM FOR VERTICAL LOW LINE .. PRESENTATION FORM FOR VERTICAL WAVY LOW LINE
(16#0FE4D#, 16#0FE4F#), -- DASHED LOW LINE .. WAVY LOW LINE
(16#0FF3F#, 16#0FF3F#), -- FULLWIDTH LOW LINE .. FULLWIDTH LOW LINE
(16#0FF65#, 16#0FF65#)); -- HALFWIDTH KATAKANA MIDDLE DOT .. HALFWIDTH KATAKANA MIDDLE DOT
-- The following table includes all characters considered as other format,
-- i.e. all characters from the Unicode table with categories:
-- Other, Format (Cf)
UTF_32_Other_Format : constant UTF_32_Ranges := (
(16#000AD#, 16#000AD#), -- SOFT HYPHEN .. SOFT HYPHEN
(16#00600#, 16#00603#), -- ARABIC NUMBER SIGN .. ARABIC SIGN SAFHA
(16#006DD#, 16#006DD#), -- ARABIC END OF AYAH .. ARABIC END OF AYAH
(16#0070F#, 16#0070F#), -- SYRIAC ABBREVIATION MARK .. SYRIAC ABBREVIATION MARK
(16#017B4#, 16#017B5#), -- KHMER VOWEL INHERENT AQ .. KHMER VOWEL INHERENT AA
(16#0200C#, 16#0200F#), -- ZERO WIDTH NON-JOINER .. RIGHT-TO-LEFT MARK
(16#0202A#, 16#0202E#), -- LEFT-TO-RIGHT EMBEDDING .. RIGHT-TO-LEFT OVERRIDE
(16#02060#, 16#02063#), -- WORD JOINER .. INVISIBLE SEPARATOR
(16#0206A#, 16#0206F#), -- INHIBIT SYMMETRIC SWAPPING .. NOMINAL DIGIT SHAPES
(16#0FEFF#, 16#0FEFF#), -- ZERO WIDTH NO-BREAK SPACE .. ZERO WIDTH NO-BREAK SPACE
(16#0FFF9#, 16#0FFFB#), -- INTERLINEAR ANNOTATION ANCHOR .. INTERLINEAR ANNOTATION TERMINATOR
(16#1D173#, 16#1D17A#), -- MUSICAL SYMBOL BEGIN BEAM .. MUSICAL SYMBOL END PHRASE
(16#E0001#, 16#E0001#), -- LANGUAGE TAG .. LANGUAGE TAG
(16#E0020#, 16#E007F#)); -- TAG SPACE .. CANCEL TAG
-- The following table includes all characters considered marks i.e.
-- all characters from the Unicode table with categories:
-- Mark, Nonspacing (Mn)
-- Mark, Spacing Combining (Mc)
UTF_32_Marks : constant UTF_32_Ranges := (
(16#00300#, 16#00357#), -- COMBINING GRAVE ACCENT .. COMBINING RIGHT HALF RING ABOVE
(16#0035D#, 16#0036F#), -- COMBINING DOUBLE BREVE .. COMBINING LATIN SMALL LETTER X
(16#00483#, 16#00486#), -- COMBINING CYRILLIC TITLO .. COMBINING CYRILLIC PSILI PNEUMATA
(16#00591#, 16#005A1#), -- HEBREW ACCENT ETNAHTA .. HEBREW ACCENT PAZER
(16#005A3#, 16#005B9#), -- HEBREW ACCENT MUNAH .. HEBREW POINT HOLAM
(16#005BB#, 16#005BD#), -- HEBREW POINT QUBUTS .. HEBREW POINT METEG
(16#005BF#, 16#005BF#), -- HEBREW POINT RAFE .. HEBREW POINT RAFE
(16#005C1#, 16#005C2#), -- HEBREW POINT SHIN DOT .. HEBREW POINT SIN DOT
(16#005C4#, 16#005C4#), -- HEBREW MARK UPPER DOT .. HEBREW MARK UPPER DOT
(16#00610#, 16#00615#), -- ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM .. ARABIC SMALL HIGH TAH
(16#0064B#, 16#00658#), -- ARABIC FATHATAN .. ARABIC MARK NOON GHUNNA
(16#00670#, 16#00670#), -- ARABIC LETTER SUPERSCRIPT ALEF .. ARABIC LETTER SUPERSCRIPT ALEF
(16#006D6#, 16#006DC#), -- ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA .. ARABIC SMALL HIGH SEEN
(16#006DF#, 16#006E4#), -- ARABIC SMALL HIGH ROUNDED ZERO .. ARABIC SMALL HIGH MADDA
(16#006E7#, 16#006E8#), -- ARABIC SMALL HIGH YEH .. ARABIC SMALL HIGH NOON
(16#006EA#, 16#006ED#), -- ARABIC EMPTY CENTRE LOW STOP .. ARABIC SMALL LOW MEEM
(16#00711#, 16#00711#), -- SYRIAC LETTER SUPERSCRIPT ALAPH .. SYRIAC LETTER SUPERSCRIPT ALAPH
(16#00730#, 16#0074A#), -- SYRIAC PTHAHA ABOVE .. SYRIAC BARREKH
(16#007A6#, 16#007B0#), -- THAANA ABAFILI .. THAANA SUKUN
(16#00901#, 16#00903#), -- DEVANAGARI SIGN CANDRABINDU .. DEVANAGARI SIGN VISARGA
(16#0093C#, 16#0093C#), -- DEVANAGARI SIGN NUKTA .. DEVANAGARI SIGN NUKTA
(16#0093E#, 16#0094D#), -- DEVANAGARI VOWEL SIGN AA .. DEVANAGARI SIGN VIRAMA
(16#00951#, 16#00954#), -- DEVANAGARI STRESS SIGN UDATTA .. DEVANAGARI ACUTE ACCENT
(16#00962#, 16#00963#), -- DEVANAGARI VOWEL SIGN VOCALIC L .. DEVANAGARI VOWEL SIGN VOCALIC LL
(16#00981#, 16#00983#), -- BENGALI SIGN CANDRABINDU .. BENGALI SIGN VISARGA
(16#009BC#, 16#009BC#), -- BENGALI SIGN NUKTA .. BENGALI SIGN NUKTA
(16#009BE#, 16#009C4#), -- BENGALI VOWEL SIGN AA .. BENGALI VOWEL SIGN VOCALIC RR
(16#009C7#, 16#009C8#), -- BENGALI VOWEL SIGN E .. BENGALI VOWEL SIGN AI
(16#009CB#, 16#009CD#), -- BENGALI VOWEL SIGN O .. BENGALI SIGN VIRAMA
(16#009D7#, 16#009D7#), -- BENGALI AU LENGTH MARK .. BENGALI AU LENGTH MARK
(16#009E2#, 16#009E3#), -- BENGALI VOWEL SIGN VOCALIC L .. BENGALI VOWEL SIGN VOCALIC LL
(16#00A01#, 16#00A03#), -- GURMUKHI SIGN ADAK BINDI .. GURMUKHI SIGN VISARGA
(16#00A3C#, 16#00A3C#), -- GURMUKHI SIGN NUKTA .. GURMUKHI SIGN NUKTA
(16#00A3E#, 16#00A42#), -- GURMUKHI VOWEL SIGN AA .. GURMUKHI VOWEL SIGN UU
(16#00A47#, 16#00A48#), -- GURMUKHI VOWEL SIGN EE .. GURMUKHI VOWEL SIGN AI
(16#00A4B#, 16#00A4D#), -- GURMUKHI VOWEL SIGN OO .. GURMUKHI SIGN VIRAMA
(16#00A70#, 16#00A71#), -- GURMUKHI TIPPI .. GURMUKHI ADDAK
(16#00A81#, 16#00A83#), -- GUJARATI SIGN CANDRABINDU .. GUJARATI SIGN VISARGA
(16#00ABC#, 16#00ABC#), -- GUJARATI SIGN NUKTA .. GUJARATI SIGN NUKTA
(16#00ABE#, 16#00AC5#), -- GUJARATI VOWEL SIGN AA .. GUJARATI VOWEL SIGN CANDRA E
(16#00AC7#, 16#00AC9#), -- GUJARATI VOWEL SIGN E .. GUJARATI VOWEL SIGN CANDRA O
(16#00ACB#, 16#00ACD#), -- GUJARATI VOWEL SIGN O .. GUJARATI SIGN VIRAMA
(16#00AE2#, 16#00AE3#), -- GUJARATI VOWEL SIGN VOCALIC L .. GUJARATI VOWEL SIGN VOCALIC LL
(16#00B01#, 16#00B03#), -- ORIYA SIGN CANDRABINDU .. ORIYA SIGN VISARGA
(16#00B3C#, 16#00B3C#), -- ORIYA SIGN NUKTA .. ORIYA SIGN NUKTA
(16#00B3E#, 16#00B43#), -- ORIYA VOWEL SIGN AA .. ORIYA VOWEL SIGN VOCALIC R
(16#00B47#, 16#00B48#), -- ORIYA VOWEL SIGN E .. ORIYA VOWEL SIGN AI
(16#00B4B#, 16#00B4D#), -- ORIYA VOWEL SIGN O .. ORIYA SIGN VIRAMA
(16#00B56#, 16#00B57#), -- ORIYA AI LENGTH MARK .. ORIYA AU LENGTH MARK
(16#00B82#, 16#00B82#), -- TAMIL SIGN ANUSVARA .. TAMIL SIGN ANUSVARA
(16#00BBE#, 16#00BC2#), -- TAMIL VOWEL SIGN AA .. TAMIL VOWEL SIGN UU
(16#00BC6#, 16#00BC8#), -- TAMIL VOWEL SIGN E .. TAMIL VOWEL SIGN AI
(16#00BCA#, 16#00BCD#), -- TAMIL VOWEL SIGN O .. TAMIL SIGN VIRAMA
(16#00BD7#, 16#00BD7#), -- TAMIL AU LENGTH MARK .. TAMIL AU LENGTH MARK
(16#00C01#, 16#00C03#), -- TELUGU SIGN CANDRABINDU .. TELUGU SIGN VISARGA
(16#00C3E#, 16#00C44#), -- TELUGU VOWEL SIGN AA .. TELUGU VOWEL SIGN VOCALIC RR
(16#00C46#, 16#00C48#), -- TELUGU VOWEL SIGN E .. TELUGU VOWEL SIGN AI
(16#00C4A#, 16#00C4D#), -- TELUGU VOWEL SIGN O .. TELUGU SIGN VIRAMA
(16#00C55#, 16#00C56#), -- TELUGU LENGTH MARK .. TELUGU AI LENGTH MARK
(16#00C82#, 16#00C83#), -- KANNADA SIGN ANUSVARA .. KANNADA SIGN VISARGA
(16#00CBC#, 16#00CBC#), -- KANNADA SIGN NUKTA .. KANNADA SIGN NUKTA
(16#00CBE#, 16#00CC4#), -- KANNADA VOWEL SIGN AA .. KANNADA VOWEL SIGN VOCALIC RR
(16#00CC6#, 16#00CC8#), -- KANNADA VOWEL SIGN E .. KANNADA VOWEL SIGN AI
(16#00CCA#, 16#00CCD#), -- KANNADA VOWEL SIGN O .. KANNADA SIGN VIRAMA
(16#00CD5#, 16#00CD6#), -- KANNADA LENGTH MARK .. KANNADA AI LENGTH MARK
(16#00D02#, 16#00D03#), -- MALAYALAM SIGN ANUSVARA .. MALAYALAM SIGN VISARGA
(16#00D3E#, 16#00D43#), -- MALAYALAM VOWEL SIGN AA .. MALAYALAM VOWEL SIGN VOCALIC R
(16#00D46#, 16#00D48#), -- MALAYALAM VOWEL SIGN E .. MALAYALAM VOWEL SIGN AI
(16#00D4A#, 16#00D4D#), -- MALAYALAM VOWEL SIGN O .. MALAYALAM SIGN VIRAMA
(16#00D57#, 16#00D57#), -- MALAYALAM AU LENGTH MARK .. MALAYALAM AU LENGTH MARK
(16#00D82#, 16#00D83#), -- SINHALA SIGN ANUSVARAYA .. SINHALA SIGN VISARGAYA
(16#00DCA#, 16#00DCA#), -- SINHALA SIGN AL-LAKUNA .. SINHALA SIGN AL-LAKUNA
(16#00DCF#, 16#00DD4#), -- SINHALA VOWEL SIGN AELA-PILLA .. SINHALA VOWEL SIGN KETTI PAA-PILLA
(16#00DD6#, 16#00DD6#), -- SINHALA VOWEL SIGN DIGA PAA-PILLA .. SINHALA VOWEL SIGN DIGA PAA-PILLA
(16#00DD8#, 16#00DDF#), -- SINHALA VOWEL SIGN GAETTA-PILLA .. SINHALA VOWEL SIGN GAYANUKITTA
(16#00DF2#, 16#00DF3#), -- SINHALA VOWEL SIGN DIGA GAETTA-PILLA .. SINHALA VOWEL SIGN DIGA GAYANUKITTA
(16#00E31#, 16#00E31#), -- THAI CHARACTER MAI HAN-AKAT .. THAI CHARACTER MAI HAN-AKAT
(16#00E34#, 16#00E3A#), -- THAI CHARACTER SARA I .. THAI CHARACTER PHINTHU
(16#00E47#, 16#00E4E#), -- THAI CHARACTER MAITAIKHU .. THAI CHARACTER YAMAKKAN
(16#00EB1#, 16#00EB1#), -- LAO VOWEL SIGN MAI KAN .. LAO VOWEL SIGN MAI KAN
(16#00EB4#, 16#00EB9#), -- LAO VOWEL SIGN I .. LAO VOWEL SIGN UU
(16#00EBB#, 16#00EBC#), -- LAO VOWEL SIGN MAI KON .. LAO SEMIVOWEL SIGN LO
(16#00EC8#, 16#00ECD#), -- LAO TONE MAI EK .. LAO NIGGAHITA
(16#00F18#, 16#00F19#), -- TIBETAN ASTROLOGICAL SIGN -KHYUD PA .. TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS
(16#00F35#, 16#00F35#), -- TIBETAN MARK NGAS BZUNG NYI ZLA .. TIBETAN MARK NGAS BZUNG NYI ZLA
(16#00F37#, 16#00F37#), -- TIBETAN MARK NGAS BZUNG SGOR RTAGS .. TIBETAN MARK NGAS BZUNG SGOR RTAGS
(16#00F39#, 16#00F39#), -- TIBETAN MARK TSA -PHRU .. TIBETAN MARK TSA -PHRU
(16#00F3E#, 16#00F3F#), -- TIBETAN SIGN YAR TSHES .. TIBETAN SIGN MAR TSHES
(16#00F71#, 16#00F84#), -- TIBETAN VOWEL SIGN AA .. TIBETAN MARK HALANTA
(16#00F86#, 16#00F87#), -- TIBETAN SIGN LCI RTAGS .. TIBETAN SIGN YANG RTAGS
(16#00F90#, 16#00F97#), -- TIBETAN SUBJOINED LETTER KA .. TIBETAN SUBJOINED LETTER JA
(16#00F99#, 16#00FBC#), -- TIBETAN SUBJOINED LETTER NYA .. TIBETAN SUBJOINED LETTER FIXED-FORM RA
(16#00FC6#, 16#00FC6#), -- TIBETAN SYMBOL PADMA GDAN .. TIBETAN SYMBOL PADMA GDAN
(16#0102C#, 16#01032#), -- MYANMAR VOWEL SIGN AA .. MYANMAR VOWEL SIGN AI
(16#01036#, 16#01039#), -- MYANMAR SIGN ANUSVARA .. MYANMAR SIGN VIRAMA
(16#01056#, 16#01059#), -- MYANMAR VOWEL SIGN VOCALIC R .. MYANMAR VOWEL SIGN VOCALIC LL
(16#01712#, 16#01714#), -- TAGALOG VOWEL SIGN I .. TAGALOG SIGN VIRAMA
(16#01732#, 16#01734#), -- HANUNOO VOWEL SIGN I .. HANUNOO SIGN PAMUDPOD
(16#01752#, 16#01753#), -- BUHID VOWEL SIGN I .. BUHID VOWEL SIGN U
(16#01772#, 16#01773#), -- TAGBANWA VOWEL SIGN I .. TAGBANWA VOWEL SIGN U
(16#017B6#, 16#017D3#), -- KHMER VOWEL SIGN AA .. KHMER SIGN BATHAMASAT
(16#017DD#, 16#017DD#), -- KHMER SIGN ATTHACAN .. KHMER SIGN ATTHACAN
(16#0180B#, 16#0180D#), -- MONGOLIAN FREE VARIATION SELECTOR ONE .. MONGOLIAN FREE VARIATION SELECTOR THREE
(16#018A9#, 16#018A9#), -- MONGOLIAN LETTER ALI GALI DAGALGA .. MONGOLIAN LETTER ALI GALI DAGALGA
(16#01920#, 16#0192B#), -- LIMBU VOWEL SIGN A .. LIMBU SUBJOINED LETTER WA
(16#01930#, 16#0193B#), -- LIMBU SMALL LETTER KA .. LIMBU SIGN SA-I
(16#020D0#, 16#020DC#), -- COMBINING LEFT HARPOON ABOVE .. COMBINING FOUR DOTS ABOVE
(16#020E1#, 16#020E1#), -- COMBINING LEFT RIGHT ARROW ABOVE .. COMBINING LEFT RIGHT ARROW ABOVE
(16#020E5#, 16#020EA#), -- COMBINING REVERSE SOLIDUS OVERLAY .. COMBINING LEFTWARDS ARROW OVERLAY
(16#0302A#, 16#0302F#), -- IDEOGRAPHIC LEVEL TONE MARK .. HANGUL DOUBLE DOT TONE MARK
(16#03099#, 16#0309A#), -- COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK .. COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
(16#0FB1E#, 16#0FB1E#), -- HEBREW POINT JUDEO-SPANISH VARIKA .. HEBREW POINT JUDEO-SPANISH VARIKA
(16#0FE00#, 16#0FE0F#), -- VARIATION SELECTOR-1 .. VARIATION SELECTOR-16
(16#0FE20#, 16#0FE23#), -- COMBINING LIGATURE LEFT HALF .. COMBINING DOUBLE TILDE RIGHT HALF
(16#1D165#, 16#1D169#), -- MUSICAL SYMBOL COMBINING STEM .. MUSICAL SYMBOL COMBINING TREMOLO-3
(16#1D16D#, 16#1D172#), -- MUSICAL SYMBOL COMBINING AUGMENTATION DOT .. MUSICAL SYMBOL COMBINING FLAG-5
(16#1D17B#, 16#1D182#), -- MUSICAL SYMBOL COMBINING ACCENT .. MUSICAL SYMBOL COMBINING LOURE
(16#1D185#, 16#1D18B#), -- MUSICAL SYMBOL COMBINING DOIT .. MUSICAL SYMBOL COMBINING TRIPLE TONGUE
(16#1D1AA#, 16#1D1AD#), -- MUSICAL SYMBOL COMBINING DOWN BOW .. MUSICAL SYMBOL COMBINING SNAP PIZZICATO
(16#E0100#, 16#E01EF#)); -- VARIATION SELECTOR-17 .. VARIATION SELECTOR-256
-- The following table includes all characters considered non-graphic,
-- i.e. all characters from the Unicode table with categories:
-- Other, Control (Cc)
-- Other, Private Use (Co)
-- Other, Surrogate (Cs)
-- Separator, Line (Zl)
-- Separator, Paragraph (Zp)
-- Note that characters with relative positions FFFE and FFFF in their
-- planes are not included in this table (we really don't want to add
-- 32K entries for this purpose). Instead we handle these positions in
-- a completely different manner.
-- Note: unassigned characters (category Cn) are deliberately NOT included
-- in the set of non-graphics, since the idea is that if any of these are
-- defined in the future, we don't want to have to modify the standard.
-- Note that Other, Format (Cf) is also quite deliberately not included
-- in the list of categories above. This means that these characters can
-- be included in character and string literals.
UTF_32_Non_Graphic : constant UTF_32_Ranges := (
(16#00000#, 16#0001F#), -- <control> .. <control>
(16#0007F#, 16#0009F#), -- <control> .. <control>
(16#02028#, 16#02029#), -- LINE SEPARATOR .. PARAGRAPH SEPARATOR
(16#0D800#, 16#0DB7F#), -- <Non Private Use High Surrogate, First> .. <Non Private Use High Surrogate, Last>
(16#0DB80#, 16#0DBFF#), -- <Private Use High Surrogate, First> .. <Private Use High Surrogate, Last>
(16#0DC00#, 16#0DFFF#), -- <Low_Surrogate, First> .. <Low Surrogate, Last>
(16#0E000#, 16#0F8FF#), -- <Private Use, First> .. <Private Use, Last>
(16#F0000#, 16#FFFFD#), -- <Plane 15 Private Use, First> .. <Plane 15 Private Use, Last>
(16#100000#, 16#10FFFD#)); -- <Plane 16 Private Use, First> .. <Plane 16 Private Use, Last>
-- The following two tables define the mapping to upper case. The first
-- table gives the ranges of lower case letters. The corresponding entry
-- in Uppercase_Adjust shows the amount to be added to (or subtracted from
-- if the value is negative) the code value to get the corresponding upper
-- case letter.
--
-- An entry is in this table if its 10646 has the string SMALL LETTER
-- the name, and there is a corresponding entry which has the string
-- CAPITAL LETTER in its name.
Lower_Case_Letters : constant UTF_32_Ranges := (
(16#00061#, 16#0007A#), -- LATIN SMALL LETTER A .. LATIN SMALL LETTER Z
(16#000E0#, 16#000F6#), -- LATIN SMALL LETTER A WITH GRAVE .. LATIN SMALL LETTER O WITH DIAERESIS
(16#000F8#, 16#000FE#), -- LATIN SMALL LETTER O WITH STROKE .. LATIN SMALL LETTER THORN
(16#000FF#, 16#000FF#), -- LATIN SMALL LETTER Y WITH DIAERESIS .. LATIN SMALL LETTER Y WITH DIAERESIS
(16#00101#, 16#00101#), -- LATIN SMALL LETTER A WITH MACRON .. LATIN SMALL LETTER A WITH MACRON
(16#00103#, 16#00103#), -- LATIN SMALL LETTER A WITH BREVE .. LATIN SMALL LETTER A WITH BREVE
(16#00105#, 16#00105#), -- LATIN SMALL LETTER A WITH OGONEK .. LATIN SMALL LETTER A WITH OGONEK
(16#00107#, 16#00107#), -- LATIN SMALL LETTER C WITH ACUTE .. LATIN SMALL LETTER C WITH ACUTE
(16#00109#, 16#00109#), -- LATIN SMALL LETTER C WITH CIRCUMFLEX .. LATIN SMALL LETTER C WITH CIRCUMFLEX
(16#0010B#, 16#0010B#), -- LATIN SMALL LETTER C WITH DOT ABOVE .. LATIN SMALL LETTER C WITH DOT ABOVE
(16#0010D#, 16#0010D#), -- LATIN SMALL LETTER C WITH CARON .. LATIN SMALL LETTER C WITH CARON
(16#0010F#, 16#0010F#), -- LATIN SMALL LETTER D WITH CARON .. LATIN SMALL LETTER D WITH CARON
(16#00111#, 16#00111#), -- LATIN SMALL LETTER D WITH STROKE .. LATIN SMALL LETTER D WITH STROKE
(16#00113#, 16#00113#), -- LATIN SMALL LETTER E WITH MACRON .. LATIN SMALL LETTER E WITH MACRON
(16#00115#, 16#00115#), -- LATIN SMALL LETTER E WITH BREVE .. LATIN SMALL LETTER E WITH BREVE
(16#00117#, 16#00117#), -- LATIN SMALL LETTER E WITH DOT ABOVE .. LATIN SMALL LETTER E WITH DOT ABOVE
(16#00119#, 16#00119#), -- LATIN SMALL LETTER E WITH OGONEK .. LATIN SMALL LETTER E WITH OGONEK
(16#0011B#, 16#0011B#), -- LATIN SMALL LETTER E WITH CARON .. LATIN SMALL LETTER E WITH CARON
(16#0011D#, 16#0011D#), -- LATIN SMALL LETTER G WITH CIRCUMFLEX .. LATIN SMALL LETTER G WITH CIRCUMFLEX
(16#0011F#, 16#0011F#), -- LATIN SMALL LETTER G WITH BREVE .. LATIN SMALL LETTER G WITH BREVE
(16#00121#, 16#00121#), -- LATIN SMALL LETTER G WITH DOT ABOVE .. LATIN SMALL LETTER G WITH DOT ABOVE
(16#00123#, 16#00123#), -- LATIN SMALL LETTER G WITH CEDILLA .. LATIN SMALL LETTER G WITH CEDILLA
(16#00125#, 16#00125#), -- LATIN SMALL LETTER H WITH CIRCUMFLEX .. LATIN SMALL LETTER H WITH CIRCUMFLEX
(16#00127#, 16#00127#), -- LATIN SMALL LETTER H WITH STROKE .. LATIN SMALL LETTER H WITH STROKE
(16#00129#, 16#00129#), -- LATIN SMALL LETTER I WITH TILDE .. LATIN SMALL LETTER I WITH TILDE
(16#0012B#, 16#0012B#), -- LATIN SMALL LETTER I WITH MACRON .. LATIN SMALL LETTER I WITH MACRON
(16#0012D#, 16#0012D#), -- LATIN SMALL LETTER I WITH BREVE .. LATIN SMALL LETTER I WITH BREVE
(16#0012F#, 16#0012F#), -- LATIN SMALL LETTER I WITH OGONEK .. LATIN SMALL LETTER I WITH OGONEK
(16#00133#, 16#00133#), -- LATIN SMALL LETTER I J .. LATIN SMALL LETTER I J
(16#00135#, 16#00135#), -- LATIN SMALL LETTER J WITH CIRCUMFLEX .. LATIN SMALL LETTER J WITH CIRCUMFLEX
(16#00137#, 16#00137#), -- LATIN SMALL LETTER K WITH CEDILLA .. LATIN SMALL LETTER K WITH CEDILLA
(16#0013A#, 16#0013A#), -- LATIN SMALL LETTER L WITH ACUTE .. LATIN SMALL LETTER L WITH ACUTE
(16#0013C#, 16#0013C#), -- LATIN SMALL LETTER L WITH CEDILLA .. LATIN SMALL LETTER L WITH CEDILLA
(16#0013E#, 16#0013E#), -- LATIN SMALL LETTER L WITH CARON .. LATIN SMALL LETTER L WITH CARON
(16#00140#, 16#00140#), -- LATIN SMALL LETTER L WITH MIDDLE DOT .. LATIN SMALL LETTER L WITH MIDDLE DOT
(16#00142#, 16#00142#), -- LATIN SMALL LETTER L WITH STROKE .. LATIN SMALL LETTER L WITH STROKE
(16#00144#, 16#00144#), -- LATIN SMALL LETTER N WITH ACUTE .. LATIN SMALL LETTER N WITH ACUTE
(16#00146#, 16#00146#), -- LATIN SMALL LETTER N WITH CEDILLA .. LATIN SMALL LETTER N WITH CEDILLA
(16#00148#, 16#00148#), -- LATIN SMALL LETTER N WITH CARON .. LATIN SMALL LETTER N WITH CARON
(16#0014B#, 16#0014B#), -- LATIN SMALL LETTER ENG .. LATIN SMALL LETTER ENG
(16#0014D#, 16#0014D#), -- LATIN SMALL LETTER O WITH MACRON .. LATIN SMALL LETTER O WITH MACRON
(16#0014F#, 16#0014F#), -- LATIN SMALL LETTER O WITH BREVE .. LATIN SMALL LETTER O WITH BREVE
(16#00151#, 16#00151#), -- LATIN SMALL LETTER O WITH DOUBLE ACUTE .. LATIN SMALL LETTER O WITH DOUBLE ACUTE
(16#00153#, 16#00153#), -- LATIN SMALL LETTER O E .. LATIN SMALL LETTER O E
(16#00155#, 16#00155#), -- LATIN SMALL LETTER R WITH ACUTE .. LATIN SMALL LETTER R WITH ACUTE
(16#00157#, 16#00157#), -- LATIN SMALL LETTER R WITH CEDILLA .. LATIN SMALL LETTER R WITH CEDILLA
(16#00159#, 16#00159#), -- LATIN SMALL LETTER R WITH CARON .. LATIN SMALL LETTER R WITH CARON
(16#0015B#, 16#0015B#), -- LATIN SMALL LETTER S WITH ACUTE .. LATIN SMALL LETTER S WITH ACUTE
(16#0015D#, 16#0015D#), -- LATIN SMALL LETTER S WITH CIRCUMFLEX .. LATIN SMALL LETTER S WITH CIRCUMFLEX
(16#0015F#, 16#0015F#), -- LATIN SMALL LETTER S WITH CEDILLA .. LATIN SMALL LETTER S WITH CEDILLA
(16#00161#, 16#00161#), -- LATIN SMALL LETTER S WITH CARON .. LATIN SMALL LETTER S WITH CARON
(16#00163#, 16#00163#), -- LATIN SMALL LETTER T WITH CEDILLA .. LATIN SMALL LETTER T WITH CEDILLA
(16#00165#, 16#00165#), -- LATIN SMALL LETTER T WITH CARON .. LATIN SMALL LETTER T WITH CARON
(16#00167#, 16#00167#), -- LATIN SMALL LETTER T WITH STROKE .. LATIN SMALL LETTER T WITH STROKE
(16#00169#, 16#00169#), -- LATIN SMALL LETTER U WITH TILDE .. LATIN SMALL LETTER U WITH TILDE
(16#0016B#, 16#0016B#), -- LATIN SMALL LETTER U WITH MACRON .. LATIN SMALL LETTER U WITH MACRON
(16#0016D#, 16#0016D#), -- LATIN SMALL LETTER U WITH BREVE .. LATIN SMALL LETTER U WITH BREVE
(16#0016F#, 16#0016F#), -- LATIN SMALL LETTER U WITH RING ABOVE .. LATIN SMALL LETTER U WITH RING ABOVE
(16#00171#, 16#00171#), -- LATIN SMALL LETTER U WITH DOUBLE ACUTE .. LATIN SMALL LETTER U WITH DOUBLE ACUTE
(16#00173#, 16#00173#), -- LATIN SMALL LETTER U WITH OGONEK .. LATIN SMALL LETTER U WITH OGONEK
(16#00175#, 16#00175#), -- LATIN SMALL LETTER W WITH CIRCUMFLEX .. LATIN SMALL LETTER W WITH CIRCUMFLEX
(16#00177#, 16#00177#), -- LATIN SMALL LETTER Y WITH CIRCUMFLEX .. LATIN SMALL LETTER Y WITH CIRCUMFLEX
(16#0017A#, 16#0017A#), -- LATIN SMALL LETTER Z WITH ACUTE .. LATIN SMALL LETTER Z WITH ACUTE
(16#0017C#, 16#0017C#), -- LATIN SMALL LETTER Z WITH DOT ABOVE .. LATIN SMALL LETTER Z WITH DOT ABOVE
(16#0017E#, 16#0017E#), -- LATIN SMALL LETTER Z WITH CARON .. LATIN SMALL LETTER Z WITH CARON
(16#00183#, 16#00183#), -- LATIN SMALL LETTER B WITH TOPBAR .. LATIN SMALL LETTER B WITH TOPBAR
(16#00185#, 16#00185#), -- LATIN SMALL LETTER TONE SIX .. LATIN SMALL LETTER TONE SIX
(16#00188#, 16#00188#), -- LATIN SMALL LETTER C WITH HOOK .. LATIN SMALL LETTER C WITH HOOK
(16#0018C#, 16#0018C#), -- LATIN SMALL LETTER D WITH TOPBAR .. LATIN SMALL LETTER D WITH TOPBAR
(16#00192#, 16#00192#), -- LATIN SMALL LETTER F WITH HOOK .. LATIN SMALL LETTER F WITH HOOK
(16#00199#, 16#00199#), -- LATIN SMALL LETTER K WITH HOOK .. LATIN SMALL LETTER K WITH HOOK
(16#0019E#, 16#0019E#), -- LATIN SMALL LETTER N WITH LONG RIGHT LEG .. LATIN SMALL LETTER N WITH LONG RIGHT LEG
(16#001A1#, 16#001A1#), -- LATIN SMALL LETTER O WITH HORN .. LATIN SMALL LETTER O WITH HORN
(16#001A3#, 16#001A3#), -- LATIN SMALL LETTER OI .. LATIN SMALL LETTER OI
(16#001A5#, 16#001A5#), -- LATIN SMALL LETTER P WITH HOOK .. LATIN SMALL LETTER P WITH HOOK
(16#001A8#, 16#001A8#), -- LATIN SMALL LETTER TONE TWO .. LATIN SMALL LETTER TONE TWO
(16#001AD#, 16#001AD#), -- LATIN SMALL LETTER T WITH HOOK .. LATIN SMALL LETTER T WITH HOOK
(16#001B0#, 16#001B0#), -- LATIN SMALL LETTER U WITH HORN .. LATIN SMALL LETTER U WITH HORN
(16#001B4#, 16#001B4#), -- LATIN SMALL LETTER Y WITH HOOK .. LATIN SMALL LETTER Y WITH HOOK
(16#001B6#, 16#001B6#), -- LATIN SMALL LETTER Z WITH STROKE .. LATIN SMALL LETTER Z WITH STROKE
(16#001B9#, 16#001B9#), -- LATIN SMALL LETTER EZH REVERSED .. LATIN SMALL LETTER EZH REVERSED
(16#001BD#, 16#001BD#), -- LATIN SMALL LETTER TONE FIVE .. LATIN SMALL LETTER TONE FIVE
(16#001C6#, 16#001C6#), -- LATIN SMALL LETTER DZ WITH CARON .. LATIN SMALL LETTER DZ WITH CARON
(16#001C9#, 16#001C9#), -- LATIN SMALL LETTER LJ .. LATIN SMALL LETTER LJ
(16#001CC#, 16#001CC#), -- LATIN SMALL LETTER NJ .. LATIN SMALL LETTER NJ
(16#001CE#, 16#001CE#), -- LATIN SMALL LETTER A WITH CARON .. LATIN SMALL LETTER A WITH CARON
(16#001D0#, 16#001D0#), -- LATIN SMALL LETTER I WITH CARON .. LATIN SMALL LETTER I WITH CARON
(16#001D2#, 16#001D2#), -- LATIN SMALL LETTER O WITH CARON .. LATIN SMALL LETTER O WITH CARON
(16#001D4#, 16#001D4#), -- LATIN SMALL LETTER U WITH CARON .. LATIN SMALL LETTER U WITH CARON
(16#001D6#, 16#001D6#), -- LATIN SMALL LETTER U WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER U WITH DIAERESIS AND MACRON
(16#001D8#, 16#001D8#), -- LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE
(16#001DA#, 16#001DA#), -- LATIN SMALL LETTER U WITH DIAERESIS AND CARON .. LATIN SMALL LETTER U WITH DIAERESIS AND CARON
(16#001DC#, 16#001DC#), -- LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE .. LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE
(16#001DF#, 16#001DF#), -- LATIN SMALL LETTER A WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER A WITH DIAERESIS AND MACRON
(16#001E1#, 16#001E1#), -- LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON
(16#001E3#, 16#001E3#), -- LATIN SMALL LETTER AE WITH MACRON .. LATIN SMALL LETTER AE WITH MACRON
(16#001E5#, 16#001E5#), -- LATIN SMALL LETTER G WITH STROKE .. LATIN SMALL LETTER G WITH STROKE
(16#001E7#, 16#001E7#), -- LATIN SMALL LETTER G WITH CARON .. LATIN SMALL LETTER G WITH CARON
(16#001E9#, 16#001E9#), -- LATIN SMALL LETTER K WITH CARON .. LATIN SMALL LETTER K WITH CARON
(16#001EB#, 16#001EB#), -- LATIN SMALL LETTER O WITH OGONEK .. LATIN SMALL LETTER O WITH OGONEK
(16#001ED#, 16#001ED#), -- LATIN SMALL LETTER O WITH OGONEK AND MACRON .. LATIN SMALL LETTER O WITH OGONEK AND MACRON
(16#001EF#, 16#001EF#), -- LATIN SMALL LETTER EZH WITH CARON .. LATIN SMALL LETTER EZH WITH CARON
(16#001F3#, 16#001F3#), -- LATIN SMALL LETTER DZ .. LATIN SMALL LETTER DZ
(16#001F5#, 16#001F5#), -- LATIN SMALL LETTER G WITH ACUTE .. LATIN SMALL LETTER G WITH ACUTE
(16#001F9#, 16#001F9#), -- LATIN SMALL LETTER N WITH GRAVE .. LATIN SMALL LETTER N WITH GRAVE
(16#001FB#, 16#001FB#), -- LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE .. LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE
(16#001FD#, 16#001FD#), -- LATIN SMALL LETTER AE WITH ACUTE .. LATIN SMALL LETTER AE WITH ACUTE
(16#001FF#, 16#001FF#), -- LATIN SMALL LETTER O WITH STROKE AND ACUTE .. LATIN SMALL LETTER O WITH STROKE AND ACUTE
(16#00201#, 16#00201#), -- LATIN SMALL LETTER A WITH DOUBLE GRAVE .. LATIN SMALL LETTER A WITH DOUBLE GRAVE
(16#00203#, 16#00203#), -- LATIN SMALL LETTER A WITH INVERTED BREVE .. LATIN SMALL LETTER A WITH INVERTED BREVE
(16#00205#, 16#00205#), -- LATIN SMALL LETTER E WITH DOUBLE GRAVE .. LATIN SMALL LETTER E WITH DOUBLE GRAVE
(16#00207#, 16#00207#), -- LATIN SMALL LETTER E WITH INVERTED BREVE .. LATIN SMALL LETTER E WITH INVERTED BREVE
(16#00209#, 16#00209#), -- LATIN SMALL LETTER I WITH DOUBLE GRAVE .. LATIN SMALL LETTER I WITH DOUBLE GRAVE
(16#0020B#, 16#0020B#), -- LATIN SMALL LETTER I WITH INVERTED BREVE .. LATIN SMALL LETTER I WITH INVERTED BREVE
(16#0020D#, 16#0020D#), -- LATIN SMALL LETTER O WITH DOUBLE GRAVE .. LATIN SMALL LETTER O WITH DOUBLE GRAVE
(16#0020F#, 16#0020F#), -- LATIN SMALL LETTER O WITH INVERTED BREVE .. LATIN SMALL LETTER O WITH INVERTED BREVE
(16#00211#, 16#00211#), -- LATIN SMALL LETTER R WITH DOUBLE GRAVE .. LATIN SMALL LETTER R WITH DOUBLE GRAVE
(16#00213#, 16#00213#), -- LATIN SMALL LETTER R WITH INVERTED BREVE .. LATIN SMALL LETTER R WITH INVERTED BREVE
(16#00215#, 16#00215#), -- LATIN SMALL LETTER U WITH DOUBLE GRAVE .. LATIN SMALL LETTER U WITH DOUBLE GRAVE
(16#00217#, 16#00217#), -- LATIN SMALL LETTER U WITH INVERTED BREVE .. LATIN SMALL LETTER U WITH INVERTED BREVE
(16#00219#, 16#00219#), -- LATIN SMALL LETTER S WITH COMMA BELOW .. LATIN SMALL LETTER S WITH COMMA BELOW
(16#0021B#, 16#0021B#), -- LATIN SMALL LETTER T WITH COMMA BELOW .. LATIN SMALL LETTER T WITH COMMA BELOW
(16#0021D#, 16#0021D#), -- LATIN SMALL LETTER YOGH .. LATIN SMALL LETTER YOGH
(16#0021F#, 16#0021F#), -- LATIN SMALL LETTER H WITH CARON .. LATIN SMALL LETTER H WITH CARON
(16#00223#, 16#00223#), -- LATIN SMALL LETTER OU .. LATIN SMALL LETTER OU
(16#00225#, 16#00225#), -- LATIN SMALL LETTER Z WITH HOOK .. LATIN SMALL LETTER Z WITH HOOK
(16#00227#, 16#00227#), -- LATIN SMALL LETTER A WITH DOT ABOVE .. LATIN SMALL LETTER A WITH DOT ABOVE
(16#00229#, 16#00229#), -- LATIN SMALL LETTER E WITH CEDILLA .. LATIN SMALL LETTER E WITH CEDILLA
(16#0022B#, 16#0022B#), -- LATIN SMALL LETTER O WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER O WITH DIAERESIS AND MACRON
(16#0022D#, 16#0022D#), -- LATIN SMALL LETTER O WITH TILDE AND MACRON .. LATIN SMALL LETTER O WITH TILDE AND MACRON
(16#0022F#, 16#0022F#), -- LATIN SMALL LETTER O WITH DOT ABOVE .. LATIN SMALL LETTER O WITH DOT ABOVE
(16#00231#, 16#00231#), -- LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON
(16#00233#, 16#00233#), -- LATIN SMALL LETTER Y WITH MACRON .. LATIN SMALL LETTER Y WITH MACRON
(16#00253#, 16#00253#), -- LATIN SMALL LETTER B WITH HOOK .. LATIN SMALL LETTER B WITH HOOK
(16#00254#, 16#00254#), -- LATIN SMALL LETTER OPEN O .. LATIN SMALL LETTER OPEN O
(16#00257#, 16#00257#), -- LATIN SMALL LETTER D WITH HOOK .. LATIN SMALL LETTER D WITH HOOK
(16#00258#, 16#00259#), -- LATIN SMALL LETTER REVERSED E .. LATIN SMALL LETTER SCHWA
(16#0025B#, 16#0025B#), -- LATIN SMALL LETTER OPEN E .. LATIN SMALL LETTER OPEN E
(16#00260#, 16#00260#), -- LATIN SMALL LETTER G WITH HOOK .. LATIN SMALL LETTER G WITH HOOK
(16#00263#, 16#00263#), -- LATIN SMALL LETTER GAMMA .. LATIN SMALL LETTER GAMMA
(16#00268#, 16#00268#), -- LATIN SMALL LETTER I WITH STROKE .. LATIN SMALL LETTER I WITH STROKE
(16#00269#, 16#00269#), -- LATIN SMALL LETTER IOTA .. LATIN SMALL LETTER IOTA
(16#0026F#, 16#0026F#), -- LATIN SMALL LETTER TURNED M .. LATIN SMALL LETTER TURNED M
(16#00272#, 16#00272#), -- LATIN SMALL LETTER N WITH LEFT HOOK .. LATIN SMALL LETTER N WITH LEFT HOOK
(16#00283#, 16#00283#), -- LATIN SMALL LETTER ESH .. LATIN SMALL LETTER ESH
(16#00288#, 16#00288#), -- LATIN SMALL LETTER T WITH RETROFLEX HOOK .. LATIN SMALL LETTER T WITH RETROFLEX HOOK
(16#0028A#, 16#0028B#), -- LATIN SMALL LETTER UPSILON .. LATIN SMALL LETTER V WITH HOOK
(16#00292#, 16#00292#), -- LATIN SMALL LETTER EZH .. LATIN SMALL LETTER EZH
(16#003AC#, 16#003AC#), -- GREEK SMALL LETTER ALPHA WITH TONOS .. GREEK SMALL LETTER ALPHA WITH TONOS
(16#003AD#, 16#003AF#), -- GREEK SMALL LETTER EPSILON WITH TONOS .. GREEK SMALL LETTER IOTA WITH TONOS
(16#003B1#, 16#003C1#), -- GREEK SMALL LETTER ALPHA .. GREEK SMALL LETTER RHO
(16#003C3#, 16#003CB#), -- GREEK SMALL LETTER SIGMA .. GREEK SMALL LETTER UPSILON WITH DIALYTIKA
(16#003CC#, 16#003CC#), -- GREEK SMALL LETTER OMICRON WITH TONOS .. GREEK SMALL LETTER OMICRON WITH TONOS
(16#003CD#, 16#003CE#), -- GREEK SMALL LETTER UPSILON WITH TONOS .. GREEK SMALL LETTER OMEGA WITH TONOS
(16#003DB#, 16#003DB#), -- GREEK SMALL LETTER STIGMA .. GREEK SMALL LETTER STIGMA
(16#003DD#, 16#003DD#), -- GREEK SMALL LETTER DIGAMMA .. GREEK SMALL LETTER DIGAMMA
(16#003DF#, 16#003DF#), -- GREEK SMALL LETTER KOPPA .. GREEK SMALL LETTER KOPPA
(16#003E1#, 16#003E1#), -- GREEK SMALL LETTER SAMPI .. GREEK SMALL LETTER SAMPI
(16#003E3#, 16#003E3#), -- COPTIC SMALL LETTER SHEI .. COPTIC SMALL LETTER SHEI
(16#003E5#, 16#003E5#), -- COPTIC SMALL LETTER FEI .. COPTIC SMALL LETTER FEI
(16#003E7#, 16#003E7#), -- COPTIC SMALL LETTER KHEI .. COPTIC SMALL LETTER KHEI
(16#003E9#, 16#003E9#), -- COPTIC SMALL LETTER HORI .. COPTIC SMALL LETTER HORI
(16#003EB#, 16#003EB#), -- COPTIC SMALL LETTER GANGIA .. COPTIC SMALL LETTER GANGIA
(16#003ED#, 16#003ED#), -- COPTIC SMALL LETTER SHIMA .. COPTIC SMALL LETTER SHIMA
(16#003EF#, 16#003EF#), -- COPTIC SMALL LETTER DEI .. COPTIC SMALL LETTER DEI
(16#003F8#, 16#003F8#), -- GREEK SMALL LETTER SHO .. GREEK SMALL LETTER SHO
(16#003FB#, 16#003FB#), -- GREEK SMALL LETTER SAN .. GREEK SMALL LETTER SAN
(16#00430#, 16#0044F#), -- CYRILLIC SMALL LETTER A .. CYRILLIC SMALL LETTER YA
(16#00450#, 16#0045F#), -- CYRILLIC SMALL LETTER IE WITH GRAVE .. CYRILLIC SMALL LETTER DZHE
(16#00461#, 16#00461#), -- CYRILLIC SMALL LETTER OMEGA .. CYRILLIC SMALL LETTER OMEGA
(16#00463#, 16#00463#), -- CYRILLIC SMALL LETTER YAT .. CYRILLIC SMALL LETTER YAT
(16#00465#, 16#00465#), -- CYRILLIC SMALL LETTER IOTIFIED E .. CYRILLIC SMALL LETTER IOTIFIED E
(16#00467#, 16#00467#), -- CYRILLIC SMALL LETTER LITTLE YUS .. CYRILLIC SMALL LETTER LITTLE YUS
(16#00469#, 16#00469#), -- CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS .. CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS
(16#0046B#, 16#0046B#), -- CYRILLIC SMALL LETTER BIG YUS .. CYRILLIC SMALL LETTER BIG YUS
(16#0046D#, 16#0046D#), -- CYRILLIC SMALL LETTER IOTIFIED BIG YUS .. CYRILLIC SMALL LETTER IOTIFIED BIG YUS
(16#0046F#, 16#0046F#), -- CYRILLIC SMALL LETTER KSI .. CYRILLIC SMALL LETTER KSI
(16#00471#, 16#00471#), -- CYRILLIC SMALL LETTER PSI .. CYRILLIC SMALL LETTER PSI
(16#00473#, 16#00473#), -- CYRILLIC SMALL LETTER FITA .. CYRILLIC SMALL LETTER FITA
(16#00475#, 16#00475#), -- CYRILLIC SMALL LETTER IZHITSA .. CYRILLIC SMALL LETTER IZHITSA
(16#00477#, 16#00477#), -- CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
(16#00479#, 16#00479#), -- CYRILLIC SMALL LETTER UK .. CYRILLIC SMALL LETTER UK
(16#0047B#, 16#0047B#), -- CYRILLIC SMALL LETTER ROUND OMEGA .. CYRILLIC SMALL LETTER ROUND OMEGA
(16#0047D#, 16#0047D#), -- CYRILLIC SMALL LETTER OMEGA WITH TITLO .. CYRILLIC SMALL LETTER OMEGA WITH TITLO
(16#0047F#, 16#0047F#), -- CYRILLIC SMALL LETTER OT .. CYRILLIC SMALL LETTER OT
(16#00481#, 16#00481#), -- CYRILLIC SMALL LETTER KOPPA .. CYRILLIC SMALL LETTER KOPPA
(16#0048B#, 16#0048B#), -- CYRILLIC SMALL LETTER SHORT I WITH TAIL .. CYRILLIC SMALL LETTER SHORT I WITH TAIL
(16#0048D#, 16#0048D#), -- CYRILLIC SMALL LETTER SEMISOFT SIGN .. CYRILLIC SMALL LETTER SEMISOFT SIGN
(16#0048F#, 16#0048F#), -- CYRILLIC SMALL LETTER ER WITH TICK .. CYRILLIC SMALL LETTER ER WITH TICK
(16#00491#, 16#00491#), -- CYRILLIC SMALL LETTER GHE WITH UPTURN .. CYRILLIC SMALL LETTER GHE WITH UPTURN
(16#00493#, 16#00493#), -- CYRILLIC SMALL LETTER GHE WITH STROKE .. CYRILLIC SMALL LETTER GHE WITH STROKE
(16#00495#, 16#00495#), -- CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK
(16#00497#, 16#00497#), -- CYRILLIC SMALL LETTER ZHE WITH DESCENDER .. CYRILLIC SMALL LETTER ZHE WITH DESCENDER
(16#00499#, 16#00499#), -- CYRILLIC SMALL LETTER ZE WITH DESCENDER .. CYRILLIC SMALL LETTER ZE WITH DESCENDER
(16#0049B#, 16#0049B#), -- CYRILLIC SMALL LETTER KA WITH DESCENDER .. CYRILLIC SMALL LETTER KA WITH DESCENDER
(16#0049D#, 16#0049D#), -- CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE
(16#0049F#, 16#0049F#), -- CYRILLIC SMALL LETTER KA WITH STROKE .. CYRILLIC SMALL LETTER KA WITH STROKE
(16#004A1#, 16#004A1#), -- CYRILLIC SMALL LETTER BASHKIR KA .. CYRILLIC SMALL LETTER BASHKIR KA
(16#004A3#, 16#004A3#), -- CYRILLIC SMALL LETTER EN WITH DESCENDER .. CYRILLIC SMALL LETTER EN WITH DESCENDER
(16#004A5#, 16#004A5#), -- CYRILLIC SMALL LETTER EN GE .. CYRILLIC SMALL LETTER EN GE
(16#004A7#, 16#004A7#), -- CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK
(16#004A9#, 16#004A9#), -- CYRILLIC SMALL LETTER ABKHASIAN HA .. CYRILLIC SMALL LETTER ABKHASIAN HA
(16#004AB#, 16#004AB#), -- CYRILLIC SMALL LETTER ES WITH DESCENDER .. CYRILLIC SMALL LETTER ES WITH DESCENDER
(16#004AD#, 16#004AD#), -- CYRILLIC SMALL LETTER TE WITH DESCENDER .. CYRILLIC SMALL LETTER TE WITH DESCENDER
(16#004AF#, 16#004AF#), -- CYRILLIC SMALL LETTER STRAIGHT U .. CYRILLIC SMALL LETTER STRAIGHT U
(16#004B1#, 16#004B1#), -- CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE .. CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE
(16#004B3#, 16#004B3#), -- CYRILLIC SMALL LETTER HA WITH DESCENDER .. CYRILLIC SMALL LETTER HA WITH DESCENDER
(16#004B5#, 16#004B5#), -- CYRILLIC SMALL LETTER TE TSE .. CYRILLIC SMALL LETTER TE TSE
(16#004B7#, 16#004B7#), -- CYRILLIC SMALL LETTER CHE WITH DESCENDER .. CYRILLIC SMALL LETTER CHE WITH DESCENDER
(16#004B9#, 16#004B9#), -- CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE
(16#004BB#, 16#004BB#), -- CYRILLIC SMALL LETTER SHHA .. CYRILLIC SMALL LETTER SHHA
(16#004BD#, 16#004BD#), -- CYRILLIC SMALL LETTER ABKHASIAN CHE .. CYRILLIC SMALL LETTER ABKHASIAN CHE
(16#004BF#, 16#004BF#), -- CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER
(16#004C2#, 16#004C2#), -- CYRILLIC SMALL LETTER ZHE WITH BREVE .. CYRILLIC SMALL LETTER ZHE WITH BREVE
(16#004C4#, 16#004C4#), -- CYRILLIC SMALL LETTER KA WITH HOOK .. CYRILLIC SMALL LETTER KA WITH HOOK
(16#004C6#, 16#004C6#), -- CYRILLIC SMALL LETTER EL WITH TAIL .. CYRILLIC SMALL LETTER EL WITH TAIL
(16#004C8#, 16#004C8#), -- CYRILLIC SMALL LETTER EN WITH HOOK .. CYRILLIC SMALL LETTER EN WITH HOOK
(16#004CA#, 16#004CA#), -- CYRILLIC SMALL LETTER EN WITH TAIL .. CYRILLIC SMALL LETTER EN WITH TAIL
(16#004CC#, 16#004CC#), -- CYRILLIC SMALL LETTER KHAKASSIAN CHE .. CYRILLIC SMALL LETTER KHAKASSIAN CHE
(16#004CE#, 16#004CE#), -- CYRILLIC SMALL LETTER EM WITH TAIL .. CYRILLIC SMALL LETTER EM WITH TAIL
(16#004D1#, 16#004D1#), -- CYRILLIC SMALL LETTER A WITH BREVE .. CYRILLIC SMALL LETTER A WITH BREVE
(16#004D3#, 16#004D3#), -- CYRILLIC SMALL LETTER A WITH DIAERESIS .. CYRILLIC SMALL LETTER A WITH DIAERESIS
(16#004D7#, 16#004D7#), -- CYRILLIC SMALL LETTER IE WITH BREVE .. CYRILLIC SMALL LETTER IE WITH BREVE
(16#004D9#, 16#004D9#), -- CYRILLIC SMALL LETTER SCHWA .. CYRILLIC SMALL LETTER SCHWA
(16#004DB#, 16#004DB#), -- CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS .. CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS
(16#004DD#, 16#004DD#), -- CYRILLIC SMALL LETTER ZHE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZHE WITH DIAERESIS
(16#004DF#, 16#004DF#), -- CYRILLIC SMALL LETTER ZE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZE WITH DIAERESIS
(16#004E1#, 16#004E1#), -- CYRILLIC SMALL LETTER ABKHASIAN DZE .. CYRILLIC SMALL LETTER ABKHASIAN DZE
(16#004E3#, 16#004E3#), -- CYRILLIC SMALL LETTER I WITH MACRON .. CYRILLIC SMALL LETTER I WITH MACRON
(16#004E5#, 16#004E5#), -- CYRILLIC SMALL LETTER I WITH DIAERESIS .. CYRILLIC SMALL LETTER I WITH DIAERESIS
(16#004E7#, 16#004E7#), -- CYRILLIC SMALL LETTER O WITH DIAERESIS .. CYRILLIC SMALL LETTER O WITH DIAERESIS
(16#004E9#, 16#004E9#), -- CYRILLIC SMALL LETTER BARRED O .. CYRILLIC SMALL LETTER BARRED O
(16#004EB#, 16#004EB#), -- CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS .. CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS
(16#004ED#, 16#004ED#), -- CYRILLIC SMALL LETTER E WITH DIAERESIS .. CYRILLIC SMALL LETTER E WITH DIAERESIS
(16#004EF#, 16#004EF#), -- CYRILLIC SMALL LETTER U WITH MACRON .. CYRILLIC SMALL LETTER U WITH MACRON
(16#004F1#, 16#004F1#), -- CYRILLIC SMALL LETTER U WITH DIAERESIS .. CYRILLIC SMALL LETTER U WITH DIAERESIS
(16#004F3#, 16#004F3#), -- CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE .. CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE
(16#004F5#, 16#004F5#), -- CYRILLIC SMALL LETTER CHE WITH DIAERESIS .. CYRILLIC SMALL LETTER CHE WITH DIAERESIS
(16#004F9#, 16#004F9#), -- CYRILLIC SMALL LETTER YERU WITH DIAERESIS .. CYRILLIC SMALL LETTER YERU WITH DIAERESIS
(16#00501#, 16#00501#), -- CYRILLIC SMALL LETTER KOMI DE .. CYRILLIC SMALL LETTER KOMI DE
(16#00503#, 16#00503#), -- CYRILLIC SMALL LETTER KOMI DJE .. CYRILLIC SMALL LETTER KOMI DJE
(16#00505#, 16#00505#), -- CYRILLIC SMALL LETTER KOMI ZJE .. CYRILLIC SMALL LETTER KOMI ZJE
(16#00507#, 16#00507#), -- CYRILLIC SMALL LETTER KOMI DZJE .. CYRILLIC SMALL LETTER KOMI DZJE
(16#00509#, 16#00509#), -- CYRILLIC SMALL LETTER KOMI LJE .. CYRILLIC SMALL LETTER KOMI LJE
(16#0050B#, 16#0050B#), -- CYRILLIC SMALL LETTER KOMI NJE .. CYRILLIC SMALL LETTER KOMI NJE
(16#0050D#, 16#0050D#), -- CYRILLIC SMALL LETTER KOMI SJE .. CYRILLIC SMALL LETTER KOMI SJE
(16#0050F#, 16#0050F#), -- CYRILLIC SMALL LETTER KOMI TJE .. CYRILLIC SMALL LETTER KOMI TJE
(16#00561#, 16#00586#), -- ARMENIAN SMALL LETTER AYB .. ARMENIAN SMALL LETTER FEH
(16#010D0#, 16#010F5#), -- GEORGIAN SMALL LETTER AN .. GEORGIAN SMALL LETTER HOE
(16#01E01#, 16#01E01#), -- LATIN SMALL LETTER A WITH RING BELOW .. LATIN SMALL LETTER A WITH RING BELOW
(16#01E03#, 16#01E03#), -- LATIN SMALL LETTER B WITH DOT ABOVE .. LATIN SMALL LETTER B WITH DOT ABOVE
(16#01E05#, 16#01E05#), -- LATIN SMALL LETTER B WITH DOT BELOW .. LATIN SMALL LETTER B WITH DOT BELOW
(16#01E07#, 16#01E07#), -- LATIN SMALL LETTER B WITH LINE BELOW .. LATIN SMALL LETTER B WITH LINE BELOW
(16#01E09#, 16#01E09#), -- LATIN SMALL LETTER C WITH CEDILLA AND ACUTE .. LATIN SMALL LETTER C WITH CEDILLA AND ACUTE
(16#01E0B#, 16#01E0B#), -- LATIN SMALL LETTER D WITH DOT ABOVE .. LATIN SMALL LETTER D WITH DOT ABOVE
(16#01E0D#, 16#01E0D#), -- LATIN SMALL LETTER D WITH DOT BELOW .. LATIN SMALL LETTER D WITH DOT BELOW
(16#01E0F#, 16#01E0F#), -- LATIN SMALL LETTER D WITH LINE BELOW .. LATIN SMALL LETTER D WITH LINE BELOW
(16#01E11#, 16#01E11#), -- LATIN SMALL LETTER D WITH CEDILLA .. LATIN SMALL LETTER D WITH CEDILLA
(16#01E13#, 16#01E13#), -- LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW
(16#01E15#, 16#01E15#), -- LATIN SMALL LETTER E WITH MACRON AND GRAVE .. LATIN SMALL LETTER E WITH MACRON AND GRAVE
(16#01E17#, 16#01E17#), -- LATIN SMALL LETTER E WITH MACRON AND ACUTE .. LATIN SMALL LETTER E WITH MACRON AND ACUTE
(16#01E19#, 16#01E19#), -- LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW
(16#01E1B#, 16#01E1B#), -- LATIN SMALL LETTER E WITH TILDE BELOW .. LATIN SMALL LETTER E WITH TILDE BELOW
(16#01E1D#, 16#01E1D#), -- LATIN SMALL LETTER E WITH CEDILLA AND BREVE .. LATIN SMALL LETTER E WITH CEDILLA AND BREVE
(16#01E1F#, 16#01E1F#), -- LATIN SMALL LETTER F WITH DOT ABOVE .. LATIN SMALL LETTER F WITH DOT ABOVE
(16#01E21#, 16#01E21#), -- LATIN SMALL LETTER G WITH MACRON .. LATIN SMALL LETTER G WITH MACRON
(16#01E23#, 16#01E23#), -- LATIN SMALL LETTER H WITH DOT ABOVE .. LATIN SMALL LETTER H WITH DOT ABOVE
(16#01E25#, 16#01E25#), -- LATIN SMALL LETTER H WITH DOT BELOW .. LATIN SMALL LETTER H WITH DOT BELOW
(16#01E27#, 16#01E27#), -- LATIN SMALL LETTER H WITH DIAERESIS .. LATIN SMALL LETTER H WITH DIAERESIS
(16#01E29#, 16#01E29#), -- LATIN SMALL LETTER H WITH CEDILLA .. LATIN SMALL LETTER H WITH CEDILLA
(16#01E2B#, 16#01E2B#), -- LATIN SMALL LETTER H WITH BREVE BELOW .. LATIN SMALL LETTER H WITH BREVE BELOW
(16#01E2D#, 16#01E2D#), -- LATIN SMALL LETTER I WITH TILDE BELOW .. LATIN SMALL LETTER I WITH TILDE BELOW
(16#01E2F#, 16#01E2F#), -- LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE
(16#01E31#, 16#01E31#), -- LATIN SMALL LETTER K WITH ACUTE .. LATIN SMALL LETTER K WITH ACUTE
(16#01E33#, 16#01E33#), -- LATIN SMALL LETTER K WITH DOT BELOW .. LATIN SMALL LETTER K WITH DOT BELOW
(16#01E35#, 16#01E35#), -- LATIN SMALL LETTER K WITH LINE BELOW .. LATIN SMALL LETTER K WITH LINE BELOW
(16#01E37#, 16#01E37#), -- LATIN SMALL LETTER L WITH DOT BELOW .. LATIN SMALL LETTER L WITH DOT BELOW
(16#01E39#, 16#01E39#), -- LATIN SMALL LETTER L WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER L WITH DOT BELOW AND MACRON
(16#01E3B#, 16#01E3B#), -- LATIN SMALL LETTER L WITH LINE BELOW .. LATIN SMALL LETTER L WITH LINE BELOW
(16#01E3D#, 16#01E3D#), -- LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW
(16#01E3F#, 16#01E3F#), -- LATIN SMALL LETTER M WITH ACUTE .. LATIN SMALL LETTER M WITH ACUTE
(16#01E41#, 16#01E41#), -- LATIN SMALL LETTER M WITH DOT ABOVE .. LATIN SMALL LETTER M WITH DOT ABOVE
(16#01E43#, 16#01E43#), -- LATIN SMALL LETTER M WITH DOT BELOW .. LATIN SMALL LETTER M WITH DOT BELOW
(16#01E45#, 16#01E45#), -- LATIN SMALL LETTER N WITH DOT ABOVE .. LATIN SMALL LETTER N WITH DOT ABOVE
(16#01E47#, 16#01E47#), -- LATIN SMALL LETTER N WITH DOT BELOW .. LATIN SMALL LETTER N WITH DOT BELOW
(16#01E49#, 16#01E49#), -- LATIN SMALL LETTER N WITH LINE BELOW .. LATIN SMALL LETTER N WITH LINE BELOW
(16#01E4B#, 16#01E4B#), -- LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW
(16#01E4D#, 16#01E4D#), -- LATIN SMALL LETTER O WITH TILDE AND ACUTE .. LATIN SMALL LETTER O WITH TILDE AND ACUTE
(16#01E4F#, 16#01E4F#), -- LATIN SMALL LETTER O WITH TILDE AND DIAERESIS .. LATIN SMALL LETTER O WITH TILDE AND DIAERESIS
(16#01E51#, 16#01E51#), -- LATIN SMALL LETTER O WITH MACRON AND GRAVE .. LATIN SMALL LETTER O WITH MACRON AND GRAVE
(16#01E53#, 16#01E53#), -- LATIN SMALL LETTER O WITH MACRON AND ACUTE .. LATIN SMALL LETTER O WITH MACRON AND ACUTE
(16#01E55#, 16#01E55#), -- LATIN SMALL LETTER P WITH ACUTE .. LATIN SMALL LETTER P WITH ACUTE
(16#01E57#, 16#01E57#), -- LATIN SMALL LETTER P WITH DOT ABOVE .. LATIN SMALL LETTER P WITH DOT ABOVE
(16#01E59#, 16#01E59#), -- LATIN SMALL LETTER R WITH DOT ABOVE .. LATIN SMALL LETTER R WITH DOT ABOVE
(16#01E5B#, 16#01E5B#), -- LATIN SMALL LETTER R WITH DOT BELOW .. LATIN SMALL LETTER R WITH DOT BELOW
(16#01E5D#, 16#01E5D#), -- LATIN SMALL LETTER R WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER R WITH DOT BELOW AND MACRON
(16#01E5F#, 16#01E5F#), -- LATIN SMALL LETTER R WITH LINE BELOW .. LATIN SMALL LETTER R WITH LINE BELOW
(16#01E61#, 16#01E61#), -- LATIN SMALL LETTER S WITH DOT ABOVE .. LATIN SMALL LETTER S WITH DOT ABOVE
(16#01E63#, 16#01E63#), -- LATIN SMALL LETTER S WITH DOT BELOW .. LATIN SMALL LETTER S WITH DOT BELOW
(16#01E65#, 16#01E65#), -- LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE
(16#01E67#, 16#01E67#), -- LATIN SMALL LETTER S WITH CARON AND DOT ABOVE .. LATIN SMALL LETTER S WITH CARON AND DOT ABOVE
(16#01E69#, 16#01E69#), -- LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE
(16#01E6B#, 16#01E6B#), -- LATIN SMALL LETTER T WITH DOT ABOVE .. LATIN SMALL LETTER T WITH DOT ABOVE
(16#01E6D#, 16#01E6D#), -- LATIN SMALL LETTER T WITH DOT BELOW .. LATIN SMALL LETTER T WITH DOT BELOW
(16#01E6F#, 16#01E6F#), -- LATIN SMALL LETTER T WITH LINE BELOW .. LATIN SMALL LETTER T WITH LINE BELOW
(16#01E71#, 16#01E71#), -- LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW
(16#01E73#, 16#01E73#), -- LATIN SMALL LETTER U WITH DIAERESIS BELOW .. LATIN SMALL LETTER U WITH DIAERESIS BELOW
(16#01E75#, 16#01E75#), -- LATIN SMALL LETTER U WITH TILDE BELOW .. LATIN SMALL LETTER U WITH TILDE BELOW
(16#01E77#, 16#01E77#), -- LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW
(16#01E79#, 16#01E79#), -- LATIN SMALL LETTER U WITH TILDE AND ACUTE .. LATIN SMALL LETTER U WITH TILDE AND ACUTE
(16#01E7B#, 16#01E7B#), -- LATIN SMALL LETTER U WITH MACRON AND DIAERESIS .. LATIN SMALL LETTER U WITH MACRON AND DIAERESIS
(16#01E7D#, 16#01E7D#), -- LATIN SMALL LETTER V WITH TILDE .. LATIN SMALL LETTER V WITH TILDE
(16#01E7F#, 16#01E7F#), -- LATIN SMALL LETTER V WITH DOT BELOW .. LATIN SMALL LETTER V WITH DOT BELOW
(16#01E81#, 16#01E81#), -- LATIN SMALL LETTER W WITH GRAVE .. LATIN SMALL LETTER W WITH GRAVE
(16#01E83#, 16#01E83#), -- LATIN SMALL LETTER W WITH ACUTE .. LATIN SMALL LETTER W WITH ACUTE
(16#01E85#, 16#01E85#), -- LATIN SMALL LETTER W WITH DIAERESIS .. LATIN SMALL LETTER W WITH DIAERESIS
(16#01E87#, 16#01E87#), -- LATIN SMALL LETTER W WITH DOT ABOVE .. LATIN SMALL LETTER W WITH DOT ABOVE
(16#01E89#, 16#01E89#), -- LATIN SMALL LETTER W WITH DOT BELOW .. LATIN SMALL LETTER W WITH DOT BELOW
(16#01E8B#, 16#01E8B#), -- LATIN SMALL LETTER X WITH DOT ABOVE .. LATIN SMALL LETTER X WITH DOT ABOVE
(16#01E8D#, 16#01E8D#), -- LATIN SMALL LETTER X WITH DIAERESIS .. LATIN SMALL LETTER X WITH DIAERESIS
(16#01E8F#, 16#01E8F#), -- LATIN SMALL LETTER Y WITH DOT ABOVE .. LATIN SMALL LETTER Y WITH DOT ABOVE
(16#01E91#, 16#01E91#), -- LATIN SMALL LETTER Z WITH CIRCUMFLEX .. LATIN SMALL LETTER Z WITH CIRCUMFLEX
(16#01E93#, 16#01E93#), -- LATIN SMALL LETTER Z WITH DOT BELOW .. LATIN SMALL LETTER Z WITH DOT BELOW
(16#01E95#, 16#01E95#), -- LATIN SMALL LETTER Z WITH LINE BELOW .. LATIN SMALL LETTER Z WITH LINE BELOW
(16#01EA1#, 16#01EA1#), -- LATIN SMALL LETTER A WITH DOT BELOW .. LATIN SMALL LETTER A WITH DOT BELOW
(16#01EA3#, 16#01EA3#), -- LATIN SMALL LETTER A WITH HOOK ABOVE .. LATIN SMALL LETTER A WITH HOOK ABOVE
(16#01EA5#, 16#01EA5#), -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE
(16#01EA7#, 16#01EA7#), -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE
(16#01EA9#, 16#01EA9#), -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EAB#, 16#01EAB#), -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE
(16#01EAD#, 16#01EAD#), -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW
(16#01EAF#, 16#01EAF#), -- LATIN SMALL LETTER A WITH BREVE AND ACUTE .. LATIN SMALL LETTER A WITH BREVE AND ACUTE
(16#01EB1#, 16#01EB1#), -- LATIN SMALL LETTER A WITH BREVE AND GRAVE .. LATIN SMALL LETTER A WITH BREVE AND GRAVE
(16#01EB3#, 16#01EB3#), -- LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE
(16#01EB5#, 16#01EB5#), -- LATIN SMALL LETTER A WITH BREVE AND TILDE .. LATIN SMALL LETTER A WITH BREVE AND TILDE
(16#01EB7#, 16#01EB7#), -- LATIN SMALL LETTER A WITH BREVE AND DOT BELOW .. LATIN SMALL LETTER A WITH BREVE AND DOT BELOW
(16#01EB9#, 16#01EB9#), -- LATIN SMALL LETTER E WITH DOT BELOW .. LATIN SMALL LETTER E WITH DOT BELOW
(16#01EBB#, 16#01EBB#), -- LATIN SMALL LETTER E WITH HOOK ABOVE .. LATIN SMALL LETTER E WITH HOOK ABOVE
(16#01EBD#, 16#01EBD#), -- LATIN SMALL LETTER E WITH TILDE .. LATIN SMALL LETTER E WITH TILDE
(16#01EBF#, 16#01EBF#), -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE
(16#01EC1#, 16#01EC1#), -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE
(16#01EC3#, 16#01EC3#), -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EC5#, 16#01EC5#), -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE
(16#01EC7#, 16#01EC7#), -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW
(16#01EC9#, 16#01EC9#), -- LATIN SMALL LETTER I WITH HOOK ABOVE .. LATIN SMALL LETTER I WITH HOOK ABOVE
(16#01ECB#, 16#01ECB#), -- LATIN SMALL LETTER I WITH DOT BELOW .. LATIN SMALL LETTER I WITH DOT BELOW
(16#01ECD#, 16#01ECD#), -- LATIN SMALL LETTER O WITH DOT BELOW .. LATIN SMALL LETTER O WITH DOT BELOW
(16#01ECF#, 16#01ECF#), -- LATIN SMALL LETTER O WITH HOOK ABOVE .. LATIN SMALL LETTER O WITH HOOK ABOVE
(16#01ED1#, 16#01ED1#), -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE
(16#01ED3#, 16#01ED3#), -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE
(16#01ED5#, 16#01ED5#), -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
(16#01ED7#, 16#01ED7#), -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE
(16#01ED9#, 16#01ED9#), -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW
(16#01EDB#, 16#01EDB#), -- LATIN SMALL LETTER O WITH HORN AND ACUTE .. LATIN SMALL LETTER O WITH HORN AND ACUTE
(16#01EDD#, 16#01EDD#), -- LATIN SMALL LETTER O WITH HORN AND GRAVE .. LATIN SMALL LETTER O WITH HORN AND GRAVE
(16#01EDF#, 16#01EDF#), -- LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE
(16#01EE1#, 16#01EE1#), -- LATIN SMALL LETTER O WITH HORN AND TILDE .. LATIN SMALL LETTER O WITH HORN AND TILDE
(16#01EE3#, 16#01EE3#), -- LATIN SMALL LETTER O WITH HORN AND DOT BELOW .. LATIN SMALL LETTER O WITH HORN AND DOT BELOW
(16#01EE5#, 16#01EE5#), -- LATIN SMALL LETTER U WITH DOT BELOW .. LATIN SMALL LETTER U WITH DOT BELOW
(16#01EE7#, 16#01EE7#), -- LATIN SMALL LETTER U WITH HOOK ABOVE .. LATIN SMALL LETTER U WITH HOOK ABOVE
(16#01EE9#, 16#01EE9#), -- LATIN SMALL LETTER U WITH HORN AND ACUTE .. LATIN SMALL LETTER U WITH HORN AND ACUTE
(16#01EEB#, 16#01EEB#), -- LATIN SMALL LETTER U WITH HORN AND GRAVE .. LATIN SMALL LETTER U WITH HORN AND GRAVE
(16#01EED#, 16#01EED#), -- LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE
(16#01EEF#, 16#01EEF#), -- LATIN SMALL LETTER U WITH HORN AND TILDE .. LATIN SMALL LETTER U WITH HORN AND TILDE
(16#01EF1#, 16#01EF1#), -- LATIN SMALL LETTER U WITH HORN AND DOT BELOW .. LATIN SMALL LETTER U WITH HORN AND DOT BELOW
(16#01EF3#, 16#01EF3#), -- LATIN SMALL LETTER Y WITH GRAVE .. LATIN SMALL LETTER Y WITH GRAVE
(16#01EF5#, 16#01EF5#), -- LATIN SMALL LETTER Y WITH DOT BELOW .. LATIN SMALL LETTER Y WITH DOT BELOW
(16#01EF7#, 16#01EF7#), -- LATIN SMALL LETTER Y WITH HOOK ABOVE .. LATIN SMALL LETTER Y WITH HOOK ABOVE
(16#01EF9#, 16#01EF9#), -- LATIN SMALL LETTER Y WITH TILDE .. LATIN SMALL LETTER Y WITH TILDE
(16#01F00#, 16#01F07#), -- GREEK SMALL LETTER ALPHA WITH PSILI .. GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI
(16#01F10#, 16#01F15#), -- GREEK SMALL LETTER EPSILON WITH PSILI .. GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA
(16#01F20#, 16#01F27#), -- GREEK SMALL LETTER ETA WITH PSILI .. GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI
(16#01F30#, 16#01F37#), -- GREEK SMALL LETTER IOTA WITH PSILI .. GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI
(16#01F40#, 16#01F45#), -- GREEK SMALL LETTER OMICRON WITH PSILI .. GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA
(16#01F51#, 16#01F51#), -- GREEK SMALL LETTER UPSILON WITH DASIA .. GREEK SMALL LETTER UPSILON WITH DASIA
(16#01F53#, 16#01F53#), -- GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA .. GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA
(16#01F55#, 16#01F55#), -- GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA .. GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA
(16#01F57#, 16#01F57#), -- GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI .. GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI
(16#01F60#, 16#01F67#), -- GREEK SMALL LETTER OMEGA WITH PSILI .. GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI
(16#01F70#, 16#01F71#), -- GREEK SMALL LETTER ALPHA WITH VARIA .. GREEK SMALL LETTER ALPHA WITH OXIA
(16#01F72#, 16#01F75#), -- GREEK SMALL LETTER EPSILON WITH VARIA .. GREEK SMALL LETTER ETA WITH OXIA
(16#01F76#, 16#01F77#), -- GREEK SMALL LETTER IOTA WITH VARIA .. GREEK SMALL LETTER IOTA WITH OXIA
(16#01F78#, 16#01F79#), -- GREEK SMALL LETTER OMICRON WITH VARIA .. GREEK SMALL LETTER OMICRON WITH OXIA
(16#01F7A#, 16#01F7B#), -- GREEK SMALL LETTER UPSILON WITH VARIA .. GREEK SMALL LETTER UPSILON WITH OXIA
(16#01F7C#, 16#01F7D#), -- GREEK SMALL LETTER OMEGA WITH VARIA .. GREEK SMALL LETTER OMEGA WITH OXIA
(16#01FB0#, 16#01FB1#), -- GREEK SMALL LETTER ALPHA WITH VRACHY .. GREEK SMALL LETTER ALPHA WITH MACRON
(16#01FD0#, 16#01FD1#), -- GREEK SMALL LETTER IOTA WITH VRACHY .. GREEK SMALL LETTER IOTA WITH MACRON
(16#01FE0#, 16#01FE1#), -- GREEK SMALL LETTER UPSILON WITH VRACHY .. GREEK SMALL LETTER UPSILON WITH MACRON
(16#01FE5#, 16#01FE5#), -- GREEK SMALL LETTER RHO WITH DASIA .. GREEK SMALL LETTER RHO WITH DASIA
(16#024D0#, 16#024E9#), -- CIRCLED LATIN SMALL LETTER A .. CIRCLED LATIN SMALL LETTER Z
(16#0FF41#, 16#0FF5A#), -- FULLWIDTH LATIN SMALL LETTER A .. FULLWIDTH LATIN SMALL LETTER Z
(16#10428#, 16#1044F#), -- DESERET SMALL LETTER LONG I .. DESERET SMALL LETTER EW
(16#E0061#, 16#E007A#)); -- TAG LATIN SMALL LETTER A .. TAG LATIN SMALL LETTER Z
Lower_Case_Adjust : constant array (Lower_Case_Letters'Range)
of UTF_32'Base := (
-32, -- LATIN SMALL LETTER A .. LATIN SMALL LETTER Z
-32, -- LATIN SMALL LETTER A WITH GRAVE .. LATIN SMALL LETTER O WITH DIAERESIS
-32, -- LATIN SMALL LETTER O WITH STROKE .. LATIN SMALL LETTER THORN
121, -- LATIN SMALL LETTER Y WITH DIAERESIS .. LATIN SMALL LETTER Y WITH DIAERESIS
-1, -- LATIN SMALL LETTER A WITH MACRON .. LATIN SMALL LETTER A WITH MACRON
-1, -- LATIN SMALL LETTER A WITH BREVE .. LATIN SMALL LETTER A WITH BREVE
-1, -- LATIN SMALL LETTER A WITH OGONEK .. LATIN SMALL LETTER A WITH OGONEK
-1, -- LATIN SMALL LETTER C WITH ACUTE .. LATIN SMALL LETTER C WITH ACUTE
-1, -- LATIN SMALL LETTER C WITH CIRCUMFLEX .. LATIN SMALL LETTER C WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER C WITH DOT ABOVE .. LATIN SMALL LETTER C WITH DOT ABOVE
-1, -- LATIN SMALL LETTER C WITH CARON .. LATIN SMALL LETTER C WITH CARON
-1, -- LATIN SMALL LETTER D WITH CARON .. LATIN SMALL LETTER D WITH CARON
-1, -- LATIN SMALL LETTER D WITH STROKE .. LATIN SMALL LETTER D WITH STROKE
-1, -- LATIN SMALL LETTER E WITH MACRON .. LATIN SMALL LETTER E WITH MACRON
-1, -- LATIN SMALL LETTER E WITH BREVE .. LATIN SMALL LETTER E WITH BREVE
-1, -- LATIN SMALL LETTER E WITH DOT ABOVE .. LATIN SMALL LETTER E WITH DOT ABOVE
-1, -- LATIN SMALL LETTER E WITH OGONEK .. LATIN SMALL LETTER E WITH OGONEK
-1, -- LATIN SMALL LETTER E WITH CARON .. LATIN SMALL LETTER E WITH CARON
-1, -- LATIN SMALL LETTER G WITH CIRCUMFLEX .. LATIN SMALL LETTER G WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER G WITH BREVE .. LATIN SMALL LETTER G WITH BREVE
-1, -- LATIN SMALL LETTER G WITH DOT ABOVE .. LATIN SMALL LETTER G WITH DOT ABOVE
-1, -- LATIN SMALL LETTER G WITH CEDILLA .. LATIN SMALL LETTER G WITH CEDILLA
-1, -- LATIN SMALL LETTER H WITH CIRCUMFLEX .. LATIN SMALL LETTER H WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER H WITH STROKE .. LATIN SMALL LETTER H WITH STROKE
-1, -- LATIN SMALL LETTER I WITH TILDE .. LATIN SMALL LETTER I WITH TILDE
-1, -- LATIN SMALL LETTER I WITH MACRON .. LATIN SMALL LETTER I WITH MACRON
-1, -- LATIN SMALL LETTER I WITH BREVE .. LATIN SMALL LETTER I WITH BREVE
-1, -- LATIN SMALL LETTER I WITH OGONEK .. LATIN SMALL LETTER I WITH OGONEK
-1, -- LATIN SMALL LETTER I J .. LATIN SMALL LETTER I J
-1, -- LATIN SMALL LETTER J WITH CIRCUMFLEX .. LATIN SMALL LETTER J WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER K WITH CEDILLA .. LATIN SMALL LETTER K WITH CEDILLA
-1, -- LATIN SMALL LETTER L WITH ACUTE .. LATIN SMALL LETTER L WITH ACUTE
-1, -- LATIN SMALL LETTER L WITH CEDILLA .. LATIN SMALL LETTER L WITH CEDILLA
-1, -- LATIN SMALL LETTER L WITH CARON .. LATIN SMALL LETTER L WITH CARON
-1, -- LATIN SMALL LETTER L WITH MIDDLE DOT .. LATIN SMALL LETTER L WITH MIDDLE DOT
-1, -- LATIN SMALL LETTER L WITH STROKE .. LATIN SMALL LETTER L WITH STROKE
-1, -- LATIN SMALL LETTER N WITH ACUTE .. LATIN SMALL LETTER N WITH ACUTE
-1, -- LATIN SMALL LETTER N WITH CEDILLA .. LATIN SMALL LETTER N WITH CEDILLA
-1, -- LATIN SMALL LETTER N WITH CARON .. LATIN SMALL LETTER N WITH CARON
-1, -- LATIN SMALL LETTER ENG .. LATIN SMALL LETTER ENG
-1, -- LATIN SMALL LETTER O WITH MACRON .. LATIN SMALL LETTER O WITH MACRON
-1, -- LATIN SMALL LETTER O WITH BREVE .. LATIN SMALL LETTER O WITH BREVE
-1, -- LATIN SMALL LETTER O WITH DOUBLE ACUTE .. LATIN SMALL LETTER O WITH DOUBLE ACUTE
-1, -- LATIN SMALL LETTER O E .. LATIN SMALL LETTER O E
-1, -- LATIN SMALL LETTER R WITH ACUTE .. LATIN SMALL LETTER R WITH ACUTE
-1, -- LATIN SMALL LETTER R WITH CEDILLA .. LATIN SMALL LETTER R WITH CEDILLA
-1, -- LATIN SMALL LETTER R WITH CARON .. LATIN SMALL LETTER R WITH CARON
-1, -- LATIN SMALL LETTER S WITH ACUTE .. LATIN SMALL LETTER S WITH ACUTE
-1, -- LATIN SMALL LETTER S WITH CIRCUMFLEX .. LATIN SMALL LETTER S WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER S WITH CEDILLA .. LATIN SMALL LETTER S WITH CEDILLA
-1, -- LATIN SMALL LETTER S WITH CARON .. LATIN SMALL LETTER S WITH CARON
-1, -- LATIN SMALL LETTER T WITH CEDILLA .. LATIN SMALL LETTER T WITH CEDILLA
-1, -- LATIN SMALL LETTER T WITH CARON .. LATIN SMALL LETTER T WITH CARON
-1, -- LATIN SMALL LETTER T WITH STROKE .. LATIN SMALL LETTER T WITH STROKE
-1, -- LATIN SMALL LETTER U WITH TILDE .. LATIN SMALL LETTER U WITH TILDE
-1, -- LATIN SMALL LETTER U WITH MACRON .. LATIN SMALL LETTER U WITH MACRON
-1, -- LATIN SMALL LETTER U WITH BREVE .. LATIN SMALL LETTER U WITH BREVE
-1, -- LATIN SMALL LETTER U WITH RING ABOVE .. LATIN SMALL LETTER U WITH RING ABOVE
-1, -- LATIN SMALL LETTER U WITH DOUBLE ACUTE .. LATIN SMALL LETTER U WITH DOUBLE ACUTE
-1, -- LATIN SMALL LETTER U WITH OGONEK .. LATIN SMALL LETTER U WITH OGONEK
-1, -- LATIN SMALL LETTER W WITH CIRCUMFLEX .. LATIN SMALL LETTER W WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER Y WITH CIRCUMFLEX .. LATIN SMALL LETTER Y WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER Z WITH ACUTE .. LATIN SMALL LETTER Z WITH ACUTE
-1, -- LATIN SMALL LETTER Z WITH DOT ABOVE .. LATIN SMALL LETTER Z WITH DOT ABOVE
-1, -- LATIN SMALL LETTER Z WITH CARON .. LATIN SMALL LETTER Z WITH CARON
-1, -- LATIN SMALL LETTER B WITH TOPBAR .. LATIN SMALL LETTER B WITH TOPBAR
-1, -- LATIN SMALL LETTER TONE SIX .. LATIN SMALL LETTER TONE SIX
-1, -- LATIN SMALL LETTER C WITH HOOK .. LATIN SMALL LETTER C WITH HOOK
-1, -- LATIN SMALL LETTER D WITH TOPBAR .. LATIN SMALL LETTER D WITH TOPBAR
-1, -- LATIN SMALL LETTER F WITH HOOK .. LATIN SMALL LETTER F WITH HOOK
-1, -- LATIN SMALL LETTER K WITH HOOK .. LATIN SMALL LETTER K WITH HOOK
130, -- LATIN SMALL LETTER N WITH LONG RIGHT LEG .. LATIN SMALL LETTER N WITH LONG RIGHT LEG
-1, -- LATIN SMALL LETTER O WITH HORN .. LATIN SMALL LETTER O WITH HORN
-1, -- LATIN SMALL LETTER OI .. LATIN SMALL LETTER OI
-1, -- LATIN SMALL LETTER P WITH HOOK .. LATIN SMALL LETTER P WITH HOOK
-1, -- LATIN SMALL LETTER TONE TWO .. LATIN SMALL LETTER TONE TWO
-1, -- LATIN SMALL LETTER T WITH HOOK .. LATIN SMALL LETTER T WITH HOOK
-1, -- LATIN SMALL LETTER U WITH HORN .. LATIN SMALL LETTER U WITH HORN
-1, -- LATIN SMALL LETTER Y WITH HOOK .. LATIN SMALL LETTER Y WITH HOOK
-1, -- LATIN SMALL LETTER Z WITH STROKE .. LATIN SMALL LETTER Z WITH STROKE
-1, -- LATIN SMALL LETTER EZH REVERSED .. LATIN SMALL LETTER EZH REVERSED
-1, -- LATIN SMALL LETTER TONE FIVE .. LATIN SMALL LETTER TONE FIVE
-2, -- LATIN SMALL LETTER DZ WITH CARON .. LATIN SMALL LETTER DZ WITH CARON
-2, -- LATIN SMALL LETTER LJ .. LATIN SMALL LETTER LJ
-2, -- LATIN SMALL LETTER NJ .. LATIN SMALL LETTER NJ
-1, -- LATIN SMALL LETTER A WITH CARON .. LATIN SMALL LETTER A WITH CARON
-1, -- LATIN SMALL LETTER I WITH CARON .. LATIN SMALL LETTER I WITH CARON
-1, -- LATIN SMALL LETTER O WITH CARON .. LATIN SMALL LETTER O WITH CARON
-1, -- LATIN SMALL LETTER U WITH CARON .. LATIN SMALL LETTER U WITH CARON
-1, -- LATIN SMALL LETTER U WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER U WITH DIAERESIS AND MACRON
-1, -- LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE
-1, -- LATIN SMALL LETTER U WITH DIAERESIS AND CARON .. LATIN SMALL LETTER U WITH DIAERESIS AND CARON
-1, -- LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE .. LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE
-1, -- LATIN SMALL LETTER A WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER A WITH DIAERESIS AND MACRON
-1, -- LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON
-1, -- LATIN SMALL LETTER AE WITH MACRON .. LATIN SMALL LETTER AE WITH MACRON
-1, -- LATIN SMALL LETTER G WITH STROKE .. LATIN SMALL LETTER G WITH STROKE
-1, -- LATIN SMALL LETTER G WITH CARON .. LATIN SMALL LETTER G WITH CARON
-1, -- LATIN SMALL LETTER K WITH CARON .. LATIN SMALL LETTER K WITH CARON
-1, -- LATIN SMALL LETTER O WITH OGONEK .. LATIN SMALL LETTER O WITH OGONEK
-1, -- LATIN SMALL LETTER O WITH OGONEK AND MACRON .. LATIN SMALL LETTER O WITH OGONEK AND MACRON
-1, -- LATIN SMALL LETTER EZH WITH CARON .. LATIN SMALL LETTER EZH WITH CARON
-2, -- LATIN SMALL LETTER DZ .. LATIN SMALL LETTER DZ
-1, -- LATIN SMALL LETTER G WITH ACUTE .. LATIN SMALL LETTER G WITH ACUTE
-1, -- LATIN SMALL LETTER N WITH GRAVE .. LATIN SMALL LETTER N WITH GRAVE
-1, -- LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE .. LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE
-1, -- LATIN SMALL LETTER AE WITH ACUTE .. LATIN SMALL LETTER AE WITH ACUTE
-1, -- LATIN SMALL LETTER O WITH STROKE AND ACUTE .. LATIN SMALL LETTER O WITH STROKE AND ACUTE
-1, -- LATIN SMALL LETTER A WITH DOUBLE GRAVE .. LATIN SMALL LETTER A WITH DOUBLE GRAVE
-1, -- LATIN SMALL LETTER A WITH INVERTED BREVE .. LATIN SMALL LETTER A WITH INVERTED BREVE
-1, -- LATIN SMALL LETTER E WITH DOUBLE GRAVE .. LATIN SMALL LETTER E WITH DOUBLE GRAVE
-1, -- LATIN SMALL LETTER E WITH INVERTED BREVE .. LATIN SMALL LETTER E WITH INVERTED BREVE
-1, -- LATIN SMALL LETTER I WITH DOUBLE GRAVE .. LATIN SMALL LETTER I WITH DOUBLE GRAVE
-1, -- LATIN SMALL LETTER I WITH INVERTED BREVE .. LATIN SMALL LETTER I WITH INVERTED BREVE
-1, -- LATIN SMALL LETTER O WITH DOUBLE GRAVE .. LATIN SMALL LETTER O WITH DOUBLE GRAVE
-1, -- LATIN SMALL LETTER O WITH INVERTED BREVE .. LATIN SMALL LETTER O WITH INVERTED BREVE
-1, -- LATIN SMALL LETTER R WITH DOUBLE GRAVE .. LATIN SMALL LETTER R WITH DOUBLE GRAVE
-1, -- LATIN SMALL LETTER R WITH INVERTED BREVE .. LATIN SMALL LETTER R WITH INVERTED BREVE
-1, -- LATIN SMALL LETTER U WITH DOUBLE GRAVE .. LATIN SMALL LETTER U WITH DOUBLE GRAVE
-1, -- LATIN SMALL LETTER U WITH INVERTED BREVE .. LATIN SMALL LETTER U WITH INVERTED BREVE
-1, -- LATIN SMALL LETTER S WITH COMMA BELOW .. LATIN SMALL LETTER S WITH COMMA BELOW
-1, -- LATIN SMALL LETTER T WITH COMMA BELOW .. LATIN SMALL LETTER T WITH COMMA BELOW
-1, -- LATIN SMALL LETTER YOGH .. LATIN SMALL LETTER YOGH
-1, -- LATIN SMALL LETTER H WITH CARON .. LATIN SMALL LETTER H WITH CARON
-1, -- LATIN SMALL LETTER OU .. LATIN SMALL LETTER OU
-1, -- LATIN SMALL LETTER Z WITH HOOK .. LATIN SMALL LETTER Z WITH HOOK
-1, -- LATIN SMALL LETTER A WITH DOT ABOVE .. LATIN SMALL LETTER A WITH DOT ABOVE
-1, -- LATIN SMALL LETTER E WITH CEDILLA .. LATIN SMALL LETTER E WITH CEDILLA
-1, -- LATIN SMALL LETTER O WITH DIAERESIS AND MACRON .. LATIN SMALL LETTER O WITH DIAERESIS AND MACRON
-1, -- LATIN SMALL LETTER O WITH TILDE AND MACRON .. LATIN SMALL LETTER O WITH TILDE AND MACRON
-1, -- LATIN SMALL LETTER O WITH DOT ABOVE .. LATIN SMALL LETTER O WITH DOT ABOVE
-1, -- LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON .. LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON
-1, -- LATIN SMALL LETTER Y WITH MACRON .. LATIN SMALL LETTER Y WITH MACRON
-210, -- LATIN SMALL LETTER B WITH HOOK .. LATIN SMALL LETTER B WITH HOOK
-206, -- LATIN SMALL LETTER OPEN O .. LATIN SMALL LETTER OPEN O
-205, -- LATIN SMALL LETTER D WITH HOOK .. LATIN SMALL LETTER D WITH HOOK
-202, -- LATIN SMALL LETTER REVERSED E .. LATIN SMALL LETTER SCHWA
-203, -- LATIN SMALL LETTER OPEN E .. LATIN SMALL LETTER OPEN E
-205, -- LATIN SMALL LETTER G WITH HOOK .. LATIN SMALL LETTER G WITH HOOK
-207, -- LATIN SMALL LETTER GAMMA .. LATIN SMALL LETTER GAMMA
-209, -- LATIN SMALL LETTER I WITH STROKE .. LATIN SMALL LETTER I WITH STROKE
-211, -- LATIN SMALL LETTER IOTA .. LATIN SMALL LETTER IOTA
-211, -- LATIN SMALL LETTER TURNED M .. LATIN SMALL LETTER TURNED M
-213, -- LATIN SMALL LETTER N WITH LEFT HOOK .. LATIN SMALL LETTER N WITH LEFT HOOK
-218, -- LATIN SMALL LETTER ESH .. LATIN SMALL LETTER ESH
-218, -- LATIN SMALL LETTER T WITH RETROFLEX HOOK .. LATIN SMALL LETTER T WITH RETROFLEX HOOK
-217, -- LATIN SMALL LETTER UPSILON .. LATIN SMALL LETTER V WITH HOOK
-219, -- LATIN SMALL LETTER EZH .. LATIN SMALL LETTER EZH
-38, -- GREEK SMALL LETTER ALPHA WITH TONOS .. GREEK SMALL LETTER ALPHA WITH TONOS
-37, -- GREEK SMALL LETTER EPSILON WITH TONOS .. GREEK SMALL LETTER IOTA WITH TONOS
-32, -- GREEK SMALL LETTER ALPHA .. GREEK SMALL LETTER RHO
-32, -- GREEK SMALL LETTER SIGMA .. GREEK SMALL LETTER UPSILON WITH DIALYTIKA
-64, -- GREEK SMALL LETTER OMICRON WITH TONOS .. GREEK SMALL LETTER OMICRON WITH TONOS
-63, -- GREEK SMALL LETTER UPSILON WITH TONOS .. GREEK SMALL LETTER OMEGA WITH TONOS
-1, -- GREEK SMALL LETTER STIGMA .. GREEK SMALL LETTER STIGMA
-1, -- GREEK SMALL LETTER DIGAMMA .. GREEK SMALL LETTER DIGAMMA
-1, -- GREEK SMALL LETTER KOPPA .. GREEK SMALL LETTER KOPPA
-1, -- GREEK SMALL LETTER SAMPI .. GREEK SMALL LETTER SAMPI
-1, -- COPTIC SMALL LETTER SHEI .. COPTIC SMALL LETTER SHEI
-1, -- COPTIC SMALL LETTER FEI .. COPTIC SMALL LETTER FEI
-1, -- COPTIC SMALL LETTER KHEI .. COPTIC SMALL LETTER KHEI
-1, -- COPTIC SMALL LETTER HORI .. COPTIC SMALL LETTER HORI
-1, -- COPTIC SMALL LETTER GANGIA .. COPTIC SMALL LETTER GANGIA
-1, -- COPTIC SMALL LETTER SHIMA .. COPTIC SMALL LETTER SHIMA
-1, -- COPTIC SMALL LETTER DEI .. COPTIC SMALL LETTER DEI
-1, -- GREEK SMALL LETTER SHO .. GREEK SMALL LETTER SHO
-1, -- GREEK SMALL LETTER SAN .. GREEK SMALL LETTER SAN
-32, -- CYRILLIC SMALL LETTER A .. CYRILLIC SMALL LETTER YA
-80, -- CYRILLIC SMALL LETTER IE WITH GRAVE .. CYRILLIC SMALL LETTER DZHE
-1, -- CYRILLIC SMALL LETTER OMEGA .. CYRILLIC SMALL LETTER OMEGA
-1, -- CYRILLIC SMALL LETTER YAT .. CYRILLIC SMALL LETTER YAT
-1, -- CYRILLIC SMALL LETTER IOTIFIED E .. CYRILLIC SMALL LETTER IOTIFIED E
-1, -- CYRILLIC SMALL LETTER LITTLE YUS .. CYRILLIC SMALL LETTER LITTLE YUS
-1, -- CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS .. CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS
-1, -- CYRILLIC SMALL LETTER BIG YUS .. CYRILLIC SMALL LETTER BIG YUS
-1, -- CYRILLIC SMALL LETTER IOTIFIED BIG YUS .. CYRILLIC SMALL LETTER IOTIFIED BIG YUS
-1, -- CYRILLIC SMALL LETTER KSI .. CYRILLIC SMALL LETTER KSI
-1, -- CYRILLIC SMALL LETTER PSI .. CYRILLIC SMALL LETTER PSI
-1, -- CYRILLIC SMALL LETTER FITA .. CYRILLIC SMALL LETTER FITA
-1, -- CYRILLIC SMALL LETTER IZHITSA .. CYRILLIC SMALL LETTER IZHITSA
-1, -- CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
-1, -- CYRILLIC SMALL LETTER UK .. CYRILLIC SMALL LETTER UK
-1, -- CYRILLIC SMALL LETTER ROUND OMEGA .. CYRILLIC SMALL LETTER ROUND OMEGA
-1, -- CYRILLIC SMALL LETTER OMEGA WITH TITLO .. CYRILLIC SMALL LETTER OMEGA WITH TITLO
-1, -- CYRILLIC SMALL LETTER OT .. CYRILLIC SMALL LETTER OT
-1, -- CYRILLIC SMALL LETTER KOPPA .. CYRILLIC SMALL LETTER KOPPA
-1, -- CYRILLIC SMALL LETTER SHORT I WITH TAIL .. CYRILLIC SMALL LETTER SHORT I WITH TAIL
-1, -- CYRILLIC SMALL LETTER SEMISOFT SIGN .. CYRILLIC SMALL LETTER SEMISOFT SIGN
-1, -- CYRILLIC SMALL LETTER ER WITH TICK .. CYRILLIC SMALL LETTER ER WITH TICK
-1, -- CYRILLIC SMALL LETTER GHE WITH UPTURN .. CYRILLIC SMALL LETTER GHE WITH UPTURN
-1, -- CYRILLIC SMALL LETTER GHE WITH STROKE .. CYRILLIC SMALL LETTER GHE WITH STROKE
-1, -- CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK
-1, -- CYRILLIC SMALL LETTER ZHE WITH DESCENDER .. CYRILLIC SMALL LETTER ZHE WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER ZE WITH DESCENDER .. CYRILLIC SMALL LETTER ZE WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER KA WITH DESCENDER .. CYRILLIC SMALL LETTER KA WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE
-1, -- CYRILLIC SMALL LETTER KA WITH STROKE .. CYRILLIC SMALL LETTER KA WITH STROKE
-1, -- CYRILLIC SMALL LETTER BASHKIR KA .. CYRILLIC SMALL LETTER BASHKIR KA
-1, -- CYRILLIC SMALL LETTER EN WITH DESCENDER .. CYRILLIC SMALL LETTER EN WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER EN GE .. CYRILLIC SMALL LETTER EN GE
-1, -- CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK .. CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK
-1, -- CYRILLIC SMALL LETTER ABKHASIAN HA .. CYRILLIC SMALL LETTER ABKHASIAN HA
-1, -- CYRILLIC SMALL LETTER ES WITH DESCENDER .. CYRILLIC SMALL LETTER ES WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER TE WITH DESCENDER .. CYRILLIC SMALL LETTER TE WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER STRAIGHT U .. CYRILLIC SMALL LETTER STRAIGHT U
-1, -- CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE .. CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE
-1, -- CYRILLIC SMALL LETTER HA WITH DESCENDER .. CYRILLIC SMALL LETTER HA WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER TE TSE .. CYRILLIC SMALL LETTER TE TSE
-1, -- CYRILLIC SMALL LETTER CHE WITH DESCENDER .. CYRILLIC SMALL LETTER CHE WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE
-1, -- CYRILLIC SMALL LETTER SHHA .. CYRILLIC SMALL LETTER SHHA
-1, -- CYRILLIC SMALL LETTER ABKHASIAN CHE .. CYRILLIC SMALL LETTER ABKHASIAN CHE
-1, -- CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER
-1, -- CYRILLIC SMALL LETTER ZHE WITH BREVE .. CYRILLIC SMALL LETTER ZHE WITH BREVE
-1, -- CYRILLIC SMALL LETTER KA WITH HOOK .. CYRILLIC SMALL LETTER KA WITH HOOK
-1, -- CYRILLIC SMALL LETTER EL WITH TAIL .. CYRILLIC SMALL LETTER EL WITH TAIL
-1, -- CYRILLIC SMALL LETTER EN WITH HOOK .. CYRILLIC SMALL LETTER EN WITH HOOK
-1, -- CYRILLIC SMALL LETTER EN WITH TAIL .. CYRILLIC SMALL LETTER EN WITH TAIL
-1, -- CYRILLIC SMALL LETTER KHAKASSIAN CHE .. CYRILLIC SMALL LETTER KHAKASSIAN CHE
-1, -- CYRILLIC SMALL LETTER EM WITH TAIL .. CYRILLIC SMALL LETTER EM WITH TAIL
-1, -- CYRILLIC SMALL LETTER A WITH BREVE .. CYRILLIC SMALL LETTER A WITH BREVE
-1, -- CYRILLIC SMALL LETTER A WITH DIAERESIS .. CYRILLIC SMALL LETTER A WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER IE WITH BREVE .. CYRILLIC SMALL LETTER IE WITH BREVE
-1, -- CYRILLIC SMALL LETTER SCHWA .. CYRILLIC SMALL LETTER SCHWA
-1, -- CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS .. CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER ZHE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZHE WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER ZE WITH DIAERESIS .. CYRILLIC SMALL LETTER ZE WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER ABKHASIAN DZE .. CYRILLIC SMALL LETTER ABKHASIAN DZE
-1, -- CYRILLIC SMALL LETTER I WITH MACRON .. CYRILLIC SMALL LETTER I WITH MACRON
-1, -- CYRILLIC SMALL LETTER I WITH DIAERESIS .. CYRILLIC SMALL LETTER I WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER O WITH DIAERESIS .. CYRILLIC SMALL LETTER O WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER BARRED O .. CYRILLIC SMALL LETTER BARRED O
-1, -- CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS .. CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER E WITH DIAERESIS .. CYRILLIC SMALL LETTER E WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER U WITH MACRON .. CYRILLIC SMALL LETTER U WITH MACRON
-1, -- CYRILLIC SMALL LETTER U WITH DIAERESIS .. CYRILLIC SMALL LETTER U WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE .. CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE
-1, -- CYRILLIC SMALL LETTER CHE WITH DIAERESIS .. CYRILLIC SMALL LETTER CHE WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER YERU WITH DIAERESIS .. CYRILLIC SMALL LETTER YERU WITH DIAERESIS
-1, -- CYRILLIC SMALL LETTER KOMI DE .. CYRILLIC SMALL LETTER KOMI DE
-1, -- CYRILLIC SMALL LETTER KOMI DJE .. CYRILLIC SMALL LETTER KOMI DJE
-1, -- CYRILLIC SMALL LETTER KOMI ZJE .. CYRILLIC SMALL LETTER KOMI ZJE
-1, -- CYRILLIC SMALL LETTER KOMI DZJE .. CYRILLIC SMALL LETTER KOMI DZJE
-1, -- CYRILLIC SMALL LETTER KOMI LJE .. CYRILLIC SMALL LETTER KOMI LJE
-1, -- CYRILLIC SMALL LETTER KOMI NJE .. CYRILLIC SMALL LETTER KOMI NJE
-1, -- CYRILLIC SMALL LETTER KOMI SJE .. CYRILLIC SMALL LETTER KOMI SJE
-1, -- CYRILLIC SMALL LETTER KOMI TJE .. CYRILLIC SMALL LETTER KOMI TJE
-48, -- ARMENIAN SMALL LETTER AYB .. ARMENIAN SMALL LETTER FEH
-48, -- GEORGIAN SMALL LETTER AN .. GEORGIAN SMALL LETTER HOE
-1, -- LATIN SMALL LETTER A WITH RING BELOW .. LATIN SMALL LETTER A WITH RING BELOW
-1, -- LATIN SMALL LETTER B WITH DOT ABOVE .. LATIN SMALL LETTER B WITH DOT ABOVE
-1, -- LATIN SMALL LETTER B WITH DOT BELOW .. LATIN SMALL LETTER B WITH DOT BELOW
-1, -- LATIN SMALL LETTER B WITH LINE BELOW .. LATIN SMALL LETTER B WITH LINE BELOW
-1, -- LATIN SMALL LETTER C WITH CEDILLA AND ACUTE .. LATIN SMALL LETTER C WITH CEDILLA AND ACUTE
-1, -- LATIN SMALL LETTER D WITH DOT ABOVE .. LATIN SMALL LETTER D WITH DOT ABOVE
-1, -- LATIN SMALL LETTER D WITH DOT BELOW .. LATIN SMALL LETTER D WITH DOT BELOW
-1, -- LATIN SMALL LETTER D WITH LINE BELOW .. LATIN SMALL LETTER D WITH LINE BELOW
-1, -- LATIN SMALL LETTER D WITH CEDILLA .. LATIN SMALL LETTER D WITH CEDILLA
-1, -- LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW
-1, -- LATIN SMALL LETTER E WITH MACRON AND GRAVE .. LATIN SMALL LETTER E WITH MACRON AND GRAVE
-1, -- LATIN SMALL LETTER E WITH MACRON AND ACUTE .. LATIN SMALL LETTER E WITH MACRON AND ACUTE
-1, -- LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW
-1, -- LATIN SMALL LETTER E WITH TILDE BELOW .. LATIN SMALL LETTER E WITH TILDE BELOW
-1, -- LATIN SMALL LETTER E WITH CEDILLA AND BREVE .. LATIN SMALL LETTER E WITH CEDILLA AND BREVE
-1, -- LATIN SMALL LETTER F WITH DOT ABOVE .. LATIN SMALL LETTER F WITH DOT ABOVE
-1, -- LATIN SMALL LETTER G WITH MACRON .. LATIN SMALL LETTER G WITH MACRON
-1, -- LATIN SMALL LETTER H WITH DOT ABOVE .. LATIN SMALL LETTER H WITH DOT ABOVE
-1, -- LATIN SMALL LETTER H WITH DOT BELOW .. LATIN SMALL LETTER H WITH DOT BELOW
-1, -- LATIN SMALL LETTER H WITH DIAERESIS .. LATIN SMALL LETTER H WITH DIAERESIS
-1, -- LATIN SMALL LETTER H WITH CEDILLA .. LATIN SMALL LETTER H WITH CEDILLA
-1, -- LATIN SMALL LETTER H WITH BREVE BELOW .. LATIN SMALL LETTER H WITH BREVE BELOW
-1, -- LATIN SMALL LETTER I WITH TILDE BELOW .. LATIN SMALL LETTER I WITH TILDE BELOW
-1, -- LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE .. LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE
-1, -- LATIN SMALL LETTER K WITH ACUTE .. LATIN SMALL LETTER K WITH ACUTE
-1, -- LATIN SMALL LETTER K WITH DOT BELOW .. LATIN SMALL LETTER K WITH DOT BELOW
-1, -- LATIN SMALL LETTER K WITH LINE BELOW .. LATIN SMALL LETTER K WITH LINE BELOW
-1, -- LATIN SMALL LETTER L WITH DOT BELOW .. LATIN SMALL LETTER L WITH DOT BELOW
-1, -- LATIN SMALL LETTER L WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER L WITH DOT BELOW AND MACRON
-1, -- LATIN SMALL LETTER L WITH LINE BELOW .. LATIN SMALL LETTER L WITH LINE BELOW
-1, -- LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW
-1, -- LATIN SMALL LETTER M WITH ACUTE .. LATIN SMALL LETTER M WITH ACUTE
-1, -- LATIN SMALL LETTER M WITH DOT ABOVE .. LATIN SMALL LETTER M WITH DOT ABOVE
-1, -- LATIN SMALL LETTER M WITH DOT BELOW .. LATIN SMALL LETTER M WITH DOT BELOW
-1, -- LATIN SMALL LETTER N WITH DOT ABOVE .. LATIN SMALL LETTER N WITH DOT ABOVE
-1, -- LATIN SMALL LETTER N WITH DOT BELOW .. LATIN SMALL LETTER N WITH DOT BELOW
-1, -- LATIN SMALL LETTER N WITH LINE BELOW .. LATIN SMALL LETTER N WITH LINE BELOW
-1, -- LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW
-1, -- LATIN SMALL LETTER O WITH TILDE AND ACUTE .. LATIN SMALL LETTER O WITH TILDE AND ACUTE
-1, -- LATIN SMALL LETTER O WITH TILDE AND DIAERESIS .. LATIN SMALL LETTER O WITH TILDE AND DIAERESIS
-1, -- LATIN SMALL LETTER O WITH MACRON AND GRAVE .. LATIN SMALL LETTER O WITH MACRON AND GRAVE
-1, -- LATIN SMALL LETTER O WITH MACRON AND ACUTE .. LATIN SMALL LETTER O WITH MACRON AND ACUTE
-1, -- LATIN SMALL LETTER P WITH ACUTE .. LATIN SMALL LETTER P WITH ACUTE
-1, -- LATIN SMALL LETTER P WITH DOT ABOVE .. LATIN SMALL LETTER P WITH DOT ABOVE
-1, -- LATIN SMALL LETTER R WITH DOT ABOVE .. LATIN SMALL LETTER R WITH DOT ABOVE
-1, -- LATIN SMALL LETTER R WITH DOT BELOW .. LATIN SMALL LETTER R WITH DOT BELOW
-1, -- LATIN SMALL LETTER R WITH DOT BELOW AND MACRON .. LATIN SMALL LETTER R WITH DOT BELOW AND MACRON
-1, -- LATIN SMALL LETTER R WITH LINE BELOW .. LATIN SMALL LETTER R WITH LINE BELOW
-1, -- LATIN SMALL LETTER S WITH DOT ABOVE .. LATIN SMALL LETTER S WITH DOT ABOVE
-1, -- LATIN SMALL LETTER S WITH DOT BELOW .. LATIN SMALL LETTER S WITH DOT BELOW
-1, -- LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE
-1, -- LATIN SMALL LETTER S WITH CARON AND DOT ABOVE .. LATIN SMALL LETTER S WITH CARON AND DOT ABOVE
-1, -- LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE
-1, -- LATIN SMALL LETTER T WITH DOT ABOVE .. LATIN SMALL LETTER T WITH DOT ABOVE
-1, -- LATIN SMALL LETTER T WITH DOT BELOW .. LATIN SMALL LETTER T WITH DOT BELOW
-1, -- LATIN SMALL LETTER T WITH LINE BELOW .. LATIN SMALL LETTER T WITH LINE BELOW
-1, -- LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW
-1, -- LATIN SMALL LETTER U WITH DIAERESIS BELOW .. LATIN SMALL LETTER U WITH DIAERESIS BELOW
-1, -- LATIN SMALL LETTER U WITH TILDE BELOW .. LATIN SMALL LETTER U WITH TILDE BELOW
-1, -- LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW .. LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW
-1, -- LATIN SMALL LETTER U WITH TILDE AND ACUTE .. LATIN SMALL LETTER U WITH TILDE AND ACUTE
-1, -- LATIN SMALL LETTER U WITH MACRON AND DIAERESIS .. LATIN SMALL LETTER U WITH MACRON AND DIAERESIS
-1, -- LATIN SMALL LETTER V WITH TILDE .. LATIN SMALL LETTER V WITH TILDE
-1, -- LATIN SMALL LETTER V WITH DOT BELOW .. LATIN SMALL LETTER V WITH DOT BELOW
-1, -- LATIN SMALL LETTER W WITH GRAVE .. LATIN SMALL LETTER W WITH GRAVE
-1, -- LATIN SMALL LETTER W WITH ACUTE .. LATIN SMALL LETTER W WITH ACUTE
-1, -- LATIN SMALL LETTER W WITH DIAERESIS .. LATIN SMALL LETTER W WITH DIAERESIS
-1, -- LATIN SMALL LETTER W WITH DOT ABOVE .. LATIN SMALL LETTER W WITH DOT ABOVE
-1, -- LATIN SMALL LETTER W WITH DOT BELOW .. LATIN SMALL LETTER W WITH DOT BELOW
-1, -- LATIN SMALL LETTER X WITH DOT ABOVE .. LATIN SMALL LETTER X WITH DOT ABOVE
-1, -- LATIN SMALL LETTER X WITH DIAERESIS .. LATIN SMALL LETTER X WITH DIAERESIS
-1, -- LATIN SMALL LETTER Y WITH DOT ABOVE .. LATIN SMALL LETTER Y WITH DOT ABOVE
-1, -- LATIN SMALL LETTER Z WITH CIRCUMFLEX .. LATIN SMALL LETTER Z WITH CIRCUMFLEX
-1, -- LATIN SMALL LETTER Z WITH DOT BELOW .. LATIN SMALL LETTER Z WITH DOT BELOW
-1, -- LATIN SMALL LETTER Z WITH LINE BELOW .. LATIN SMALL LETTER Z WITH LINE BELOW
-1, -- LATIN SMALL LETTER A WITH DOT BELOW .. LATIN SMALL LETTER A WITH DOT BELOW
-1, -- LATIN SMALL LETTER A WITH HOOK ABOVE .. LATIN SMALL LETTER A WITH HOOK ABOVE
-1, -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE
-1, -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE
-1, -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
-1, -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE
-1, -- LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW
-1, -- LATIN SMALL LETTER A WITH BREVE AND ACUTE .. LATIN SMALL LETTER A WITH BREVE AND ACUTE
-1, -- LATIN SMALL LETTER A WITH BREVE AND GRAVE .. LATIN SMALL LETTER A WITH BREVE AND GRAVE
-1, -- LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE
-1, -- LATIN SMALL LETTER A WITH BREVE AND TILDE .. LATIN SMALL LETTER A WITH BREVE AND TILDE
-1, -- LATIN SMALL LETTER A WITH BREVE AND DOT BELOW .. LATIN SMALL LETTER A WITH BREVE AND DOT BELOW
-1, -- LATIN SMALL LETTER E WITH DOT BELOW .. LATIN SMALL LETTER E WITH DOT BELOW
-1, -- LATIN SMALL LETTER E WITH HOOK ABOVE .. LATIN SMALL LETTER E WITH HOOK ABOVE
-1, -- LATIN SMALL LETTER E WITH TILDE .. LATIN SMALL LETTER E WITH TILDE
-1, -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE
-1, -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE
-1, -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
-1, -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE
-1, -- LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW
-1, -- LATIN SMALL LETTER I WITH HOOK ABOVE .. LATIN SMALL LETTER I WITH HOOK ABOVE
-1, -- LATIN SMALL LETTER I WITH DOT BELOW .. LATIN SMALL LETTER I WITH DOT BELOW
-1, -- LATIN SMALL LETTER O WITH DOT BELOW .. LATIN SMALL LETTER O WITH DOT BELOW
-1, -- LATIN SMALL LETTER O WITH HOOK ABOVE .. LATIN SMALL LETTER O WITH HOOK ABOVE
-1, -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE
-1, -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE
-1, -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
-1, -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE
-1, -- LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW
-1, -- LATIN SMALL LETTER O WITH HORN AND ACUTE .. LATIN SMALL LETTER O WITH HORN AND ACUTE
-1, -- LATIN SMALL LETTER O WITH HORN AND GRAVE .. LATIN SMALL LETTER O WITH HORN AND GRAVE
-1, -- LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE
-1, -- LATIN SMALL LETTER O WITH HORN AND TILDE .. LATIN SMALL LETTER O WITH HORN AND TILDE
-1, -- LATIN SMALL LETTER O WITH HORN AND DOT BELOW .. LATIN SMALL LETTER O WITH HORN AND DOT BELOW
-1, -- LATIN SMALL LETTER U WITH DOT BELOW .. LATIN SMALL LETTER U WITH DOT BELOW
-1, -- LATIN SMALL LETTER U WITH HOOK ABOVE .. LATIN SMALL LETTER U WITH HOOK ABOVE
-1, -- LATIN SMALL LETTER U WITH HORN AND ACUTE .. LATIN SMALL LETTER U WITH HORN AND ACUTE
-1, -- LATIN SMALL LETTER U WITH HORN AND GRAVE .. LATIN SMALL LETTER U WITH HORN AND GRAVE
-1, -- LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE .. LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE
-1, -- LATIN SMALL LETTER U WITH HORN AND TILDE .. LATIN SMALL LETTER U WITH HORN AND TILDE
-1, -- LATIN SMALL LETTER U WITH HORN AND DOT BELOW .. LATIN SMALL LETTER U WITH HORN AND DOT BELOW
-1, -- LATIN SMALL LETTER Y WITH GRAVE .. LATIN SMALL LETTER Y WITH GRAVE
-1, -- LATIN SMALL LETTER Y WITH DOT BELOW .. LATIN SMALL LETTER Y WITH DOT BELOW
-1, -- LATIN SMALL LETTER Y WITH HOOK ABOVE .. LATIN SMALL LETTER Y WITH HOOK ABOVE
-1, -- LATIN SMALL LETTER Y WITH TILDE .. LATIN SMALL LETTER Y WITH TILDE
8, -- GREEK SMALL LETTER ALPHA WITH PSILI .. GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI
8, -- GREEK SMALL LETTER EPSILON WITH PSILI .. GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA
8, -- GREEK SMALL LETTER ETA WITH PSILI .. GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI
8, -- GREEK SMALL LETTER IOTA WITH PSILI .. GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI
8, -- GREEK SMALL LETTER OMICRON WITH PSILI .. GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA
8, -- GREEK SMALL LETTER UPSILON WITH DASIA .. GREEK SMALL LETTER UPSILON WITH DASIA
8, -- GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA .. GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA
8, -- GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA .. GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA
8, -- GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI .. GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI
8, -- GREEK SMALL LETTER OMEGA WITH PSILI .. GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI
74, -- GREEK SMALL LETTER ALPHA WITH VARIA .. GREEK SMALL LETTER ALPHA WITH OXIA
86, -- GREEK SMALL LETTER EPSILON WITH VARIA .. GREEK SMALL LETTER ETA WITH OXIA
100, -- GREEK SMALL LETTER IOTA WITH VARIA .. GREEK SMALL LETTER IOTA WITH OXIA
128, -- GREEK SMALL LETTER OMICRON WITH VARIA .. GREEK SMALL LETTER OMICRON WITH OXIA
112, -- GREEK SMALL LETTER UPSILON WITH VARIA .. GREEK SMALL LETTER UPSILON WITH OXIA
126, -- GREEK SMALL LETTER OMEGA WITH VARIA .. GREEK SMALL LETTER OMEGA WITH OXIA
8, -- GREEK SMALL LETTER ALPHA WITH VRACHY .. GREEK SMALL LETTER ALPHA WITH MACRON
8, -- GREEK SMALL LETTER IOTA WITH VRACHY .. GREEK SMALL LETTER IOTA WITH MACRON
8, -- GREEK SMALL LETTER UPSILON WITH VRACHY .. GREEK SMALL LETTER UPSILON WITH MACRON
7, -- GREEK SMALL LETTER RHO WITH DASIA .. GREEK SMALL LETTER RHO WITH DASIA
-26, -- CIRCLED LATIN SMALL LETTER A .. CIRCLED LATIN SMALL LETTER Z
-32, -- FULLWIDTH LATIN SMALL LETTER A .. FULLWIDTH LATIN SMALL LETTER Z
-40, -- DESERET SMALL LETTER LONG I .. DESERET SMALL LETTER EW
-32); -- TAG LATIN SMALL LETTER A .. TAG LATIN SMALL LETTER Z
-- The following is a list of the 10646 names for SMALL LETTER entries
-- that have no matching CAPITAL LETTER entry and are thus not folded
-- LATIN SMALL LETTER SHARP S
-- LATIN SMALL LETTER DOTLESS I
-- LATIN SMALL LETTER KRA
-- LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
-- LATIN SMALL LETTER LONG S
-- LATIN SMALL LETTER B WITH STROKE
-- LATIN SMALL LETTER TURNED DELTA
-- LATIN SMALL LETTER HV
-- LATIN SMALL LETTER L WITH BAR
-- LATIN SMALL LETTER LAMBDA WITH STROKE
-- LATIN SMALL LETTER T WITH PALATAL HOOK
-- LATIN SMALL LETTER EZH WITH TAIL
-- LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON
-- LATIN CAPITAL LETTER L WITH SMALL LETTER J
-- LATIN CAPITAL LETTER N WITH SMALL LETTER J
-- LATIN SMALL LETTER TURNED E
-- LATIN SMALL LETTER J WITH CARON
-- LATIN CAPITAL LETTER D WITH SMALL LETTER Z
-- LATIN SMALL LETTER D WITH CURL
-- LATIN SMALL LETTER L WITH CURL
-- LATIN SMALL LETTER N WITH CURL
-- LATIN SMALL LETTER T WITH CURL
-- LATIN SMALL LETTER TURNED A
-- LATIN SMALL LETTER ALPHA
-- LATIN SMALL LETTER TURNED ALPHA
-- LATIN SMALL LETTER C WITH CURL
-- LATIN SMALL LETTER D WITH TAIL
-- LATIN SMALL LETTER SCHWA WITH HOOK
-- LATIN SMALL LETTER REVERSED OPEN E
-- LATIN SMALL LETTER REVERSED OPEN E WITH HOOK
-- LATIN SMALL LETTER CLOSED REVERSED OPEN E
-- LATIN SMALL LETTER DOTLESS J WITH STROKE
-- LATIN SMALL LETTER SCRIPT G
-- LATIN SMALL LETTER RAMS HORN
-- LATIN SMALL LETTER TURNED H
-- LATIN SMALL LETTER H WITH HOOK
-- LATIN SMALL LETTER HENG WITH HOOK
-- LATIN SMALL LETTER L WITH MIDDLE TILDE
-- LATIN SMALL LETTER L WITH BELT
-- LATIN SMALL LETTER L WITH RETROFLEX HOOK
-- LATIN SMALL LETTER LEZH
-- LATIN SMALL LETTER TURNED M WITH LONG LEG
-- LATIN SMALL LETTER M WITH HOOK
-- LATIN SMALL LETTER N WITH RETROFLEX HOOK
-- LATIN SMALL LETTER BARRED O
-- LATIN SMALL LETTER CLOSED OMEGA
-- LATIN SMALL LETTER PHI
-- LATIN SMALL LETTER TURNED R
-- LATIN SMALL LETTER TURNED R WITH LONG LEG
-- LATIN SMALL LETTER TURNED R WITH HOOK
-- LATIN SMALL LETTER R WITH LONG LEG
-- LATIN SMALL LETTER R WITH TAIL
-- LATIN SMALL LETTER R WITH FISHHOOK
-- LATIN SMALL LETTER REVERSED R WITH FISHHOOK
-- LATIN SMALL LETTER S WITH HOOK
-- LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK
-- LATIN SMALL LETTER SQUAT REVERSED ESH
-- LATIN SMALL LETTER ESH WITH CURL
-- LATIN SMALL LETTER TURNED T
-- LATIN SMALL LETTER U BAR
-- LATIN SMALL LETTER TURNED V
-- LATIN SMALL LETTER TURNED W
-- LATIN SMALL LETTER TURNED Y
-- LATIN SMALL LETTER Z WITH RETROFLEX HOOK
-- LATIN SMALL LETTER Z WITH CURL
-- LATIN SMALL LETTER EZH WITH CURL
-- LATIN SMALL LETTER CLOSED OPEN E
-- LATIN SMALL LETTER J WITH CROSSED-TAIL
-- LATIN SMALL LETTER TURNED K
-- LATIN SMALL LETTER Q WITH HOOK
-- LATIN SMALL LETTER DZ DIGRAPH
-- LATIN SMALL LETTER DEZH DIGRAPH
-- LATIN SMALL LETTER DZ DIGRAPH WITH CURL
-- LATIN SMALL LETTER TS DIGRAPH
-- LATIN SMALL LETTER TESH DIGRAPH
-- LATIN SMALL LETTER TC DIGRAPH WITH CURL
-- LATIN SMALL LETTER FENG DIGRAPH
-- LATIN SMALL LETTER LS DIGRAPH
-- LATIN SMALL LETTER LZ DIGRAPH
-- LATIN SMALL LETTER TURNED H WITH FISHHOOK
-- LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL
-- COMBINING LATIN SMALL LETTER A
-- COMBINING LATIN SMALL LETTER E
-- COMBINING LATIN SMALL LETTER I
-- COMBINING LATIN SMALL LETTER O
-- COMBINING LATIN SMALL LETTER U
-- COMBINING LATIN SMALL LETTER C
-- COMBINING LATIN SMALL LETTER D
-- COMBINING LATIN SMALL LETTER H
-- COMBINING LATIN SMALL LETTER M
-- COMBINING LATIN SMALL LETTER R
-- COMBINING LATIN SMALL LETTER T
-- COMBINING LATIN SMALL LETTER V
-- COMBINING LATIN SMALL LETTER X
-- GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
-- GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
-- GREEK SMALL LETTER FINAL SIGMA
-- GREEK SMALL LETTER CURLED BETA
-- GREEK SMALL LETTER SCRIPT THETA
-- GREEK SMALL LETTER SCRIPT PHI
-- GREEK SMALL LETTER OMEGA PI
-- GREEK SMALL LETTER ARCHAIC KOPPA
-- GREEK SMALL LETTER SCRIPT KAPPA
-- GREEK SMALL LETTER TAILED RHO
-- GREEK SMALL LETTER LUNATE SIGMA
-- GEORGIAN SMALL LETTER FI
-- LIMBU SMALL LETTER KA
-- LIMBU SMALL LETTER NGA
-- LIMBU SMALL LETTER ANUSVARA
-- LIMBU SMALL LETTER TA
-- LIMBU SMALL LETTER NA
-- LIMBU SMALL LETTER PA
-- LIMBU SMALL LETTER MA
-- LIMBU SMALL LETTER RA
-- LIMBU SMALL LETTER LA
-- LATIN SMALL LETTER TURNED AE
-- LATIN SMALL LETTER TURNED OPEN E
-- LATIN SMALL LETTER TURNED I
-- LATIN SMALL LETTER SIDEWAYS O
-- LATIN SMALL LETTER SIDEWAYS OPEN O
-- LATIN SMALL LETTER SIDEWAYS O WITH STROKE
-- LATIN SMALL LETTER TURNED OE
-- LATIN SMALL LETTER TOP HALF O
-- LATIN SMALL LETTER BOTTOM HALF O
-- LATIN SMALL LETTER SIDEWAYS U
-- LATIN SMALL LETTER SIDEWAYS DIAERESIZED U
-- LATIN SMALL LETTER SIDEWAYS TURNED M
-- LATIN SUBSCRIPT SMALL LETTER I
-- LATIN SUBSCRIPT SMALL LETTER R
-- LATIN SUBSCRIPT SMALL LETTER U
-- LATIN SUBSCRIPT SMALL LETTER V
-- GREEK SUBSCRIPT SMALL LETTER BETA
-- GREEK SUBSCRIPT SMALL LETTER GAMMA
-- GREEK SUBSCRIPT SMALL LETTER RHO
-- GREEK SUBSCRIPT SMALL LETTER PHI
-- GREEK SUBSCRIPT SMALL LETTER CHI
-- LATIN SMALL LETTER UE
-- LATIN SMALL LETTER H WITH LINE BELOW
-- LATIN SMALL LETTER T WITH DIAERESIS
-- LATIN SMALL LETTER W WITH RING ABOVE
-- LATIN SMALL LETTER Y WITH RING ABOVE
-- LATIN SMALL LETTER A WITH RIGHT HALF RING
-- LATIN SMALL LETTER LONG S WITH DOT ABOVE
-- GREEK SMALL LETTER UPSILON WITH PSILI
-- GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA
-- GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA
-- GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI
-- GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ALPHA WITH PERISPOMENI
-- GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER ETA WITH PERISPOMENI
-- GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI
-- GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA
-- GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
-- GREEK SMALL LETTER IOTA WITH PERISPOMENI
-- GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI
-- GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA
-- GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA
-- GREEK SMALL LETTER RHO WITH PSILI
-- GREEK SMALL LETTER UPSILON WITH PERISPOMENI
-- GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI
-- GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI
-- GREEK SMALL LETTER OMEGA WITH PERISPOMENI
-- GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI
-- SUPERSCRIPT LATIN SMALL LETTER I
-- SUPERSCRIPT LATIN SMALL LETTER N
-- TURNED GREEK SMALL LETTER IOTA
-- PARENTHESIZED LATIN SMALL LETTER A
-- PARENTHESIZED LATIN SMALL LETTER B
-- PARENTHESIZED LATIN SMALL LETTER C
-- PARENTHESIZED LATIN SMALL LETTER D
-- PARENTHESIZED LATIN SMALL LETTER E
-- PARENTHESIZED LATIN SMALL LETTER F
-- PARENTHESIZED LATIN SMALL LETTER G
-- PARENTHESIZED LATIN SMALL LETTER H
-- PARENTHESIZED LATIN SMALL LETTER I
-- PARENTHESIZED LATIN SMALL LETTER J
-- PARENTHESIZED LATIN SMALL LETTER K
-- PARENTHESIZED LATIN SMALL LETTER L
-- PARENTHESIZED LATIN SMALL LETTER M
-- PARENTHESIZED LATIN SMALL LETTER N
-- PARENTHESIZED LATIN SMALL LETTER O
-- PARENTHESIZED LATIN SMALL LETTER P
-- PARENTHESIZED LATIN SMALL LETTER Q
-- PARENTHESIZED LATIN SMALL LETTER R
-- PARENTHESIZED LATIN SMALL LETTER S
-- PARENTHESIZED LATIN SMALL LETTER T
-- PARENTHESIZED LATIN SMALL LETTER U
-- PARENTHESIZED LATIN SMALL LETTER V
-- PARENTHESIZED LATIN SMALL LETTER W
-- PARENTHESIZED LATIN SMALL LETTER X
-- PARENTHESIZED LATIN SMALL LETTER Y
-- PARENTHESIZED LATIN SMALL LETTER Z
-- The following two tables define the mapping to lower case. The first
-- table gives the ranges of upper case letters. The corresponding entry
-- in Lower_Case_Adjust shows the amount to be added to (or subtracted from
-- if the value is negative) the code value to get the corresponding lower
-- case letter.
-- An entry is in this table if its 10646 has the string CAPITAL LETTER
-- the name, and there is a corresponding entry which has the string
-- SMALL LETTER in its name.
Upper_Case_Letters : constant UTF_32_Ranges := (
(16#00041#, 16#0005A#), -- LATIN CAPITAL LETTER A .. LATIN CAPITAL LETTER Z
(16#000C0#, 16#000D6#), -- LATIN CAPITAL LETTER A WITH GRAVE .. LATIN CAPITAL LETTER O WITH DIAERESIS
(16#000D8#, 16#000DE#), -- LATIN CAPITAL LETTER O WITH STROKE .. LATIN CAPITAL LETTER THORN
(16#00100#, 16#00100#), -- LATIN CAPITAL LETTER A WITH MACRON .. LATIN CAPITAL LETTER A WITH MACRON
(16#00102#, 16#00102#), -- LATIN CAPITAL LETTER A WITH BREVE .. LATIN CAPITAL LETTER A WITH BREVE
(16#00104#, 16#00104#), -- LATIN CAPITAL LETTER A WITH OGONEK .. LATIN CAPITAL LETTER A WITH OGONEK
(16#00106#, 16#00106#), -- LATIN CAPITAL LETTER C WITH ACUTE .. LATIN CAPITAL LETTER C WITH ACUTE
(16#00108#, 16#00108#), -- LATIN CAPITAL LETTER C WITH CIRCUMFLEX .. LATIN CAPITAL LETTER C WITH CIRCUMFLEX
(16#0010A#, 16#0010A#), -- LATIN CAPITAL LETTER C WITH DOT ABOVE .. LATIN CAPITAL LETTER C WITH DOT ABOVE
(16#0010C#, 16#0010C#), -- LATIN CAPITAL LETTER C WITH CARON .. LATIN CAPITAL LETTER C WITH CARON
(16#0010E#, 16#0010E#), -- LATIN CAPITAL LETTER D WITH CARON .. LATIN CAPITAL LETTER D WITH CARON
(16#00110#, 16#00110#), -- LATIN CAPITAL LETTER D WITH STROKE .. LATIN CAPITAL LETTER D WITH STROKE
(16#00112#, 16#00112#), -- LATIN CAPITAL LETTER E WITH MACRON .. LATIN CAPITAL LETTER E WITH MACRON
(16#00114#, 16#00114#), -- LATIN CAPITAL LETTER E WITH BREVE .. LATIN CAPITAL LETTER E WITH BREVE
(16#00116#, 16#00116#), -- LATIN CAPITAL LETTER E WITH DOT ABOVE .. LATIN CAPITAL LETTER E WITH DOT ABOVE
(16#00118#, 16#00118#), -- LATIN CAPITAL LETTER E WITH OGONEK .. LATIN CAPITAL LETTER E WITH OGONEK
(16#0011A#, 16#0011A#), -- LATIN CAPITAL LETTER E WITH CARON .. LATIN CAPITAL LETTER E WITH CARON
(16#0011C#, 16#0011C#), -- LATIN CAPITAL LETTER G WITH CIRCUMFLEX .. LATIN CAPITAL LETTER G WITH CIRCUMFLEX
(16#0011E#, 16#0011E#), -- LATIN CAPITAL LETTER G WITH BREVE .. LATIN CAPITAL LETTER G WITH BREVE
(16#00120#, 16#00120#), -- LATIN CAPITAL LETTER G WITH DOT ABOVE .. LATIN CAPITAL LETTER G WITH DOT ABOVE
(16#00122#, 16#00122#), -- LATIN CAPITAL LETTER G WITH CEDILLA .. LATIN CAPITAL LETTER G WITH CEDILLA
(16#00124#, 16#00124#), -- LATIN CAPITAL LETTER H WITH CIRCUMFLEX .. LATIN CAPITAL LETTER H WITH CIRCUMFLEX
(16#00126#, 16#00126#), -- LATIN CAPITAL LETTER H WITH STROKE .. LATIN CAPITAL LETTER H WITH STROKE
(16#00128#, 16#00128#), -- LATIN CAPITAL LETTER I WITH TILDE .. LATIN CAPITAL LETTER I WITH TILDE
(16#0012A#, 16#0012A#), -- LATIN CAPITAL LETTER I WITH MACRON .. LATIN CAPITAL LETTER I WITH MACRON
(16#0012C#, 16#0012C#), -- LATIN CAPITAL LETTER I WITH BREVE .. LATIN CAPITAL LETTER I WITH BREVE
(16#0012E#, 16#0012E#), -- LATIN CAPITAL LETTER I WITH OGONEK .. LATIN CAPITAL LETTER I WITH OGONEK
(16#00132#, 16#00132#), -- LATIN CAPITAL LETTER I J .. LATIN CAPITAL LETTER I J
(16#00134#, 16#00134#), -- LATIN CAPITAL LETTER J WITH CIRCUMFLEX .. LATIN CAPITAL LETTER J WITH CIRCUMFLEX
(16#00136#, 16#00136#), -- LATIN CAPITAL LETTER K WITH CEDILLA .. LATIN CAPITAL LETTER K WITH CEDILLA
(16#00139#, 16#00139#), -- LATIN CAPITAL LETTER L WITH ACUTE .. LATIN CAPITAL LETTER L WITH ACUTE
(16#0013B#, 16#0013B#), -- LATIN CAPITAL LETTER L WITH CEDILLA .. LATIN CAPITAL LETTER L WITH CEDILLA
(16#0013D#, 16#0013D#), -- LATIN CAPITAL LETTER L WITH CARON .. LATIN CAPITAL LETTER L WITH CARON
(16#0013F#, 16#0013F#), -- LATIN CAPITAL LETTER L WITH MIDDLE DOT .. LATIN CAPITAL LETTER L WITH MIDDLE DOT
(16#00141#, 16#00141#), -- LATIN CAPITAL LETTER L WITH STROKE .. LATIN CAPITAL LETTER L WITH STROKE
(16#00143#, 16#00143#), -- LATIN CAPITAL LETTER N WITH ACUTE .. LATIN CAPITAL LETTER N WITH ACUTE
(16#00145#, 16#00145#), -- LATIN CAPITAL LETTER N WITH CEDILLA .. LATIN CAPITAL LETTER N WITH CEDILLA
(16#00147#, 16#00147#), -- LATIN CAPITAL LETTER N WITH CARON .. LATIN CAPITAL LETTER N WITH CARON
(16#0014A#, 16#0014A#), -- LATIN CAPITAL LETTER ENG .. LATIN CAPITAL LETTER ENG
(16#0014C#, 16#0014C#), -- LATIN CAPITAL LETTER O WITH MACRON .. LATIN CAPITAL LETTER O WITH MACRON
(16#0014E#, 16#0014E#), -- LATIN CAPITAL LETTER O WITH BREVE .. LATIN CAPITAL LETTER O WITH BREVE
(16#00150#, 16#00150#), -- LATIN CAPITAL LETTER O WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
(16#00152#, 16#00152#), -- LATIN CAPITAL LETTER O E .. LATIN CAPITAL LETTER O E
(16#00154#, 16#00154#), -- LATIN CAPITAL LETTER R WITH ACUTE .. LATIN CAPITAL LETTER R WITH ACUTE
(16#00156#, 16#00156#), -- LATIN CAPITAL LETTER R WITH CEDILLA .. LATIN CAPITAL LETTER R WITH CEDILLA
(16#00158#, 16#00158#), -- LATIN CAPITAL LETTER R WITH CARON .. LATIN CAPITAL LETTER R WITH CARON
(16#0015A#, 16#0015A#), -- LATIN CAPITAL LETTER S WITH ACUTE .. LATIN CAPITAL LETTER S WITH ACUTE
(16#0015C#, 16#0015C#), -- LATIN CAPITAL LETTER S WITH CIRCUMFLEX .. LATIN CAPITAL LETTER S WITH CIRCUMFLEX
(16#0015E#, 16#0015E#), -- LATIN CAPITAL LETTER S WITH CEDILLA .. LATIN CAPITAL LETTER S WITH CEDILLA
(16#00160#, 16#00160#), -- LATIN CAPITAL LETTER S WITH CARON .. LATIN CAPITAL LETTER S WITH CARON
(16#00162#, 16#00162#), -- LATIN CAPITAL LETTER T WITH CEDILLA .. LATIN CAPITAL LETTER T WITH CEDILLA
(16#00164#, 16#00164#), -- LATIN CAPITAL LETTER T WITH CARON .. LATIN CAPITAL LETTER T WITH CARON
(16#00166#, 16#00166#), -- LATIN CAPITAL LETTER T WITH STROKE .. LATIN CAPITAL LETTER T WITH STROKE
(16#00168#, 16#00168#), -- LATIN CAPITAL LETTER U WITH TILDE .. LATIN CAPITAL LETTER U WITH TILDE
(16#0016A#, 16#0016A#), -- LATIN CAPITAL LETTER U WITH MACRON .. LATIN CAPITAL LETTER U WITH MACRON
(16#0016C#, 16#0016C#), -- LATIN CAPITAL LETTER U WITH BREVE .. LATIN CAPITAL LETTER U WITH BREVE
(16#0016E#, 16#0016E#), -- LATIN CAPITAL LETTER U WITH RING ABOVE .. LATIN CAPITAL LETTER U WITH RING ABOVE
(16#00170#, 16#00170#), -- LATIN CAPITAL LETTER U WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER U WITH DOUBLE ACUTE
(16#00172#, 16#00172#), -- LATIN CAPITAL LETTER U WITH OGONEK .. LATIN CAPITAL LETTER U WITH OGONEK
(16#00174#, 16#00174#), -- LATIN CAPITAL LETTER W WITH CIRCUMFLEX .. LATIN CAPITAL LETTER W WITH CIRCUMFLEX
(16#00176#, 16#00176#), -- LATIN CAPITAL LETTER Y WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
(16#00178#, 16#00178#), -- LATIN CAPITAL LETTER Y WITH DIAERESIS .. LATIN CAPITAL LETTER Y WITH DIAERESIS
(16#00179#, 16#00179#), -- LATIN CAPITAL LETTER Z WITH ACUTE .. LATIN CAPITAL LETTER Z WITH ACUTE
(16#0017B#, 16#0017B#), -- LATIN CAPITAL LETTER Z WITH DOT ABOVE .. LATIN CAPITAL LETTER Z WITH DOT ABOVE
(16#0017D#, 16#0017D#), -- LATIN CAPITAL LETTER Z WITH CARON .. LATIN CAPITAL LETTER Z WITH CARON
(16#00181#, 16#00181#), -- LATIN CAPITAL LETTER B WITH HOOK .. LATIN CAPITAL LETTER B WITH HOOK
(16#00182#, 16#00182#), -- LATIN CAPITAL LETTER B WITH TOPBAR .. LATIN CAPITAL LETTER B WITH TOPBAR
(16#00184#, 16#00184#), -- LATIN CAPITAL LETTER TONE SIX .. LATIN CAPITAL LETTER TONE SIX
(16#00186#, 16#00186#), -- LATIN CAPITAL LETTER OPEN O .. LATIN CAPITAL LETTER OPEN O
(16#00187#, 16#00187#), -- LATIN CAPITAL LETTER C WITH HOOK .. LATIN CAPITAL LETTER C WITH HOOK
(16#0018A#, 16#0018A#), -- LATIN CAPITAL LETTER D WITH HOOK .. LATIN CAPITAL LETTER D WITH HOOK
(16#0018B#, 16#0018B#), -- LATIN CAPITAL LETTER D WITH TOPBAR .. LATIN CAPITAL LETTER D WITH TOPBAR
(16#0018E#, 16#0018F#), -- LATIN CAPITAL LETTER REVERSED E .. LATIN CAPITAL LETTER SCHWA
(16#00190#, 16#00190#), -- LATIN CAPITAL LETTER OPEN E .. LATIN CAPITAL LETTER OPEN E
(16#00191#, 16#00191#), -- LATIN CAPITAL LETTER F WITH HOOK .. LATIN CAPITAL LETTER F WITH HOOK
(16#00193#, 16#00193#), -- LATIN CAPITAL LETTER G WITH HOOK .. LATIN CAPITAL LETTER G WITH HOOK
(16#00194#, 16#00194#), -- LATIN CAPITAL LETTER GAMMA .. LATIN CAPITAL LETTER GAMMA
(16#00196#, 16#00196#), -- LATIN CAPITAL LETTER IOTA .. LATIN CAPITAL LETTER IOTA
(16#00197#, 16#00197#), -- LATIN CAPITAL LETTER I WITH STROKE .. LATIN CAPITAL LETTER I WITH STROKE
(16#00198#, 16#00198#), -- LATIN CAPITAL LETTER K WITH HOOK .. LATIN CAPITAL LETTER K WITH HOOK
(16#0019C#, 16#0019C#), -- LATIN CAPITAL LETTER TURNED M .. LATIN CAPITAL LETTER TURNED M
(16#0019D#, 16#0019D#), -- LATIN CAPITAL LETTER N WITH LEFT HOOK .. LATIN CAPITAL LETTER N WITH LEFT HOOK
(16#001A0#, 16#001A0#), -- LATIN CAPITAL LETTER O WITH HORN .. LATIN CAPITAL LETTER O WITH HORN
(16#001A2#, 16#001A2#), -- LATIN CAPITAL LETTER OI .. LATIN CAPITAL LETTER OI
(16#001A4#, 16#001A4#), -- LATIN CAPITAL LETTER P WITH HOOK .. LATIN CAPITAL LETTER P WITH HOOK
(16#001A7#, 16#001A7#), -- LATIN CAPITAL LETTER TONE TWO .. LATIN CAPITAL LETTER TONE TWO
(16#001A9#, 16#001A9#), -- LATIN CAPITAL LETTER ESH .. LATIN CAPITAL LETTER ESH
(16#001AC#, 16#001AC#), -- LATIN CAPITAL LETTER T WITH HOOK .. LATIN CAPITAL LETTER T WITH HOOK
(16#001AE#, 16#001AE#), -- LATIN CAPITAL LETTER T WITH RETROFLEX HOOK .. LATIN CAPITAL LETTER T WITH RETROFLEX HOOK
(16#001AF#, 16#001AF#), -- LATIN CAPITAL LETTER U WITH HORN .. LATIN CAPITAL LETTER U WITH HORN
(16#001B1#, 16#001B2#), -- LATIN CAPITAL LETTER UPSILON .. LATIN CAPITAL LETTER V WITH HOOK
(16#001B3#, 16#001B3#), -- LATIN CAPITAL LETTER Y WITH HOOK .. LATIN CAPITAL LETTER Y WITH HOOK
(16#001B5#, 16#001B5#), -- LATIN CAPITAL LETTER Z WITH STROKE .. LATIN CAPITAL LETTER Z WITH STROKE
(16#001B7#, 16#001B7#), -- LATIN CAPITAL LETTER EZH .. LATIN CAPITAL LETTER EZH
(16#001B8#, 16#001B8#), -- LATIN CAPITAL LETTER EZH REVERSED .. LATIN CAPITAL LETTER EZH REVERSED
(16#001BC#, 16#001BC#), -- LATIN CAPITAL LETTER TONE FIVE .. LATIN CAPITAL LETTER TONE FIVE
(16#001C4#, 16#001C4#), -- LATIN CAPITAL LETTER DZ WITH CARON .. LATIN CAPITAL LETTER DZ WITH CARON
(16#001C7#, 16#001C7#), -- LATIN CAPITAL LETTER LJ .. LATIN CAPITAL LETTER LJ
(16#001CA#, 16#001CA#), -- LATIN CAPITAL LETTER NJ .. LATIN CAPITAL LETTER NJ
(16#001CD#, 16#001CD#), -- LATIN CAPITAL LETTER A WITH CARON .. LATIN CAPITAL LETTER A WITH CARON
(16#001CF#, 16#001CF#), -- LATIN CAPITAL LETTER I WITH CARON .. LATIN CAPITAL LETTER I WITH CARON
(16#001D1#, 16#001D1#), -- LATIN CAPITAL LETTER O WITH CARON .. LATIN CAPITAL LETTER O WITH CARON
(16#001D3#, 16#001D3#), -- LATIN CAPITAL LETTER U WITH CARON .. LATIN CAPITAL LETTER U WITH CARON
(16#001D5#, 16#001D5#), -- LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON
(16#001D7#, 16#001D7#), -- LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE
(16#001D9#, 16#001D9#), -- LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON
(16#001DB#, 16#001DB#), -- LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE
(16#001DE#, 16#001DE#), -- LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON
(16#001E0#, 16#001E0#), -- LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON
(16#001E2#, 16#001E2#), -- LATIN CAPITAL LETTER AE WITH MACRON .. LATIN CAPITAL LETTER AE WITH MACRON
(16#001E4#, 16#001E4#), -- LATIN CAPITAL LETTER G WITH STROKE .. LATIN CAPITAL LETTER G WITH STROKE
(16#001E6#, 16#001E6#), -- LATIN CAPITAL LETTER G WITH CARON .. LATIN CAPITAL LETTER G WITH CARON
(16#001E8#, 16#001E8#), -- LATIN CAPITAL LETTER K WITH CARON .. LATIN CAPITAL LETTER K WITH CARON
(16#001EA#, 16#001EA#), -- LATIN CAPITAL LETTER O WITH OGONEK .. LATIN CAPITAL LETTER O WITH OGONEK
(16#001EC#, 16#001EC#), -- LATIN CAPITAL LETTER O WITH OGONEK AND MACRON .. LATIN CAPITAL LETTER O WITH OGONEK AND MACRON
(16#001EE#, 16#001EE#), -- LATIN CAPITAL LETTER EZH WITH CARON .. LATIN CAPITAL LETTER EZH WITH CARON
(16#001F1#, 16#001F1#), -- LATIN CAPITAL LETTER DZ .. LATIN CAPITAL LETTER DZ
(16#001F4#, 16#001F4#), -- LATIN CAPITAL LETTER G WITH ACUTE .. LATIN CAPITAL LETTER G WITH ACUTE
(16#001F8#, 16#001F8#), -- LATIN CAPITAL LETTER N WITH GRAVE .. LATIN CAPITAL LETTER N WITH GRAVE
(16#001FA#, 16#001FA#), -- LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE .. LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE
(16#001FC#, 16#001FC#), -- LATIN CAPITAL LETTER AE WITH ACUTE .. LATIN CAPITAL LETTER AE WITH ACUTE
(16#001FE#, 16#001FE#), -- LATIN CAPITAL LETTER O WITH STROKE AND ACUTE .. LATIN CAPITAL LETTER O WITH STROKE AND ACUTE
(16#00200#, 16#00200#), -- LATIN CAPITAL LETTER A WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER A WITH DOUBLE GRAVE
(16#00202#, 16#00202#), -- LATIN CAPITAL LETTER A WITH INVERTED BREVE .. LATIN CAPITAL LETTER A WITH INVERTED BREVE
(16#00204#, 16#00204#), -- LATIN CAPITAL LETTER E WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER E WITH DOUBLE GRAVE
(16#00206#, 16#00206#), -- LATIN CAPITAL LETTER E WITH INVERTED BREVE .. LATIN CAPITAL LETTER E WITH INVERTED BREVE
(16#00208#, 16#00208#), -- LATIN CAPITAL LETTER I WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER I WITH DOUBLE GRAVE
(16#0020A#, 16#0020A#), -- LATIN CAPITAL LETTER I WITH INVERTED BREVE .. LATIN CAPITAL LETTER I WITH INVERTED BREVE
(16#0020C#, 16#0020C#), -- LATIN CAPITAL LETTER O WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER O WITH DOUBLE GRAVE
(16#0020E#, 16#0020E#), -- LATIN CAPITAL LETTER O WITH INVERTED BREVE .. LATIN CAPITAL LETTER O WITH INVERTED BREVE
(16#00210#, 16#00210#), -- LATIN CAPITAL LETTER R WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER R WITH DOUBLE GRAVE
(16#00212#, 16#00212#), -- LATIN CAPITAL LETTER R WITH INVERTED BREVE .. LATIN CAPITAL LETTER R WITH INVERTED BREVE
(16#00214#, 16#00214#), -- LATIN CAPITAL LETTER U WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER U WITH DOUBLE GRAVE
(16#00216#, 16#00216#), -- LATIN CAPITAL LETTER U WITH INVERTED BREVE .. LATIN CAPITAL LETTER U WITH INVERTED BREVE
(16#00218#, 16#00218#), -- LATIN CAPITAL LETTER S WITH COMMA BELOW .. LATIN CAPITAL LETTER S WITH COMMA BELOW
(16#0021A#, 16#0021A#), -- LATIN CAPITAL LETTER T WITH COMMA BELOW .. LATIN CAPITAL LETTER T WITH COMMA BELOW
(16#0021C#, 16#0021C#), -- LATIN CAPITAL LETTER YOGH .. LATIN CAPITAL LETTER YOGH
(16#0021E#, 16#0021E#), -- LATIN CAPITAL LETTER H WITH CARON .. LATIN CAPITAL LETTER H WITH CARON
(16#00220#, 16#00220#), -- LATIN CAPITAL LETTER N WITH LONG RIGHT LEG .. LATIN CAPITAL LETTER N WITH LONG RIGHT LEG
(16#00222#, 16#00222#), -- LATIN CAPITAL LETTER OU .. LATIN CAPITAL LETTER OU
(16#00224#, 16#00224#), -- LATIN CAPITAL LETTER Z WITH HOOK .. LATIN CAPITAL LETTER Z WITH HOOK
(16#00226#, 16#00226#), -- LATIN CAPITAL LETTER A WITH DOT ABOVE .. LATIN CAPITAL LETTER A WITH DOT ABOVE
(16#00228#, 16#00228#), -- LATIN CAPITAL LETTER E WITH CEDILLA .. LATIN CAPITAL LETTER E WITH CEDILLA
(16#0022A#, 16#0022A#), -- LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON
(16#0022C#, 16#0022C#), -- LATIN CAPITAL LETTER O WITH TILDE AND MACRON .. LATIN CAPITAL LETTER O WITH TILDE AND MACRON
(16#0022E#, 16#0022E#), -- LATIN CAPITAL LETTER O WITH DOT ABOVE .. LATIN CAPITAL LETTER O WITH DOT ABOVE
(16#00230#, 16#00230#), -- LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON
(16#00232#, 16#00232#), -- LATIN CAPITAL LETTER Y WITH MACRON .. LATIN CAPITAL LETTER Y WITH MACRON
(16#00386#, 16#00386#), -- GREEK CAPITAL LETTER ALPHA WITH TONOS .. GREEK CAPITAL LETTER ALPHA WITH TONOS
(16#00388#, 16#0038A#), -- GREEK CAPITAL LETTER EPSILON WITH TONOS .. GREEK CAPITAL LETTER IOTA WITH TONOS
(16#0038C#, 16#0038C#), -- GREEK CAPITAL LETTER OMICRON WITH TONOS .. GREEK CAPITAL LETTER OMICRON WITH TONOS
(16#0038E#, 16#0038F#), -- GREEK CAPITAL LETTER UPSILON WITH TONOS .. GREEK CAPITAL LETTER OMEGA WITH TONOS
(16#00391#, 16#003A1#), -- GREEK CAPITAL LETTER ALPHA .. GREEK CAPITAL LETTER RHO
(16#003A3#, 16#003AB#), -- GREEK CAPITAL LETTER SIGMA .. GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
(16#003DA#, 16#003DA#), -- GREEK CAPITAL LETTER STIGMA .. GREEK CAPITAL LETTER STIGMA
(16#003DC#, 16#003DC#), -- GREEK CAPITAL LETTER DIGAMMA .. GREEK CAPITAL LETTER DIGAMMA
(16#003DE#, 16#003DE#), -- GREEK CAPITAL LETTER KOPPA .. GREEK CAPITAL LETTER KOPPA
(16#003E0#, 16#003E0#), -- GREEK CAPITAL LETTER SAMPI .. GREEK CAPITAL LETTER SAMPI
(16#003E2#, 16#003E2#), -- COPTIC CAPITAL LETTER SHEI .. COPTIC CAPITAL LETTER SHEI
(16#003E4#, 16#003E4#), -- COPTIC CAPITAL LETTER FEI .. COPTIC CAPITAL LETTER FEI
(16#003E6#, 16#003E6#), -- COPTIC CAPITAL LETTER KHEI .. COPTIC CAPITAL LETTER KHEI
(16#003E8#, 16#003E8#), -- COPTIC CAPITAL LETTER HORI .. COPTIC CAPITAL LETTER HORI
(16#003EA#, 16#003EA#), -- COPTIC CAPITAL LETTER GANGIA .. COPTIC CAPITAL LETTER GANGIA
(16#003EC#, 16#003EC#), -- COPTIC CAPITAL LETTER SHIMA .. COPTIC CAPITAL LETTER SHIMA
(16#003EE#, 16#003EE#), -- COPTIC CAPITAL LETTER DEI .. COPTIC CAPITAL LETTER DEI
(16#003F7#, 16#003F7#), -- GREEK CAPITAL LETTER SHO .. GREEK CAPITAL LETTER SHO
(16#003FA#, 16#003FA#), -- GREEK CAPITAL LETTER SAN .. GREEK CAPITAL LETTER SAN
(16#00400#, 16#0040F#), -- CYRILLIC CAPITAL LETTER IE WITH GRAVE .. CYRILLIC CAPITAL LETTER DZHE
(16#00410#, 16#0042F#), -- CYRILLIC CAPITAL LETTER A .. CYRILLIC CAPITAL LETTER YA
(16#00460#, 16#00460#), -- CYRILLIC CAPITAL LETTER OMEGA .. CYRILLIC CAPITAL LETTER OMEGA
(16#00462#, 16#00462#), -- CYRILLIC CAPITAL LETTER YAT .. CYRILLIC CAPITAL LETTER YAT
(16#00464#, 16#00464#), -- CYRILLIC CAPITAL LETTER IOTIFIED E .. CYRILLIC CAPITAL LETTER IOTIFIED E
(16#00466#, 16#00466#), -- CYRILLIC CAPITAL LETTER LITTLE YUS .. CYRILLIC CAPITAL LETTER LITTLE YUS
(16#00468#, 16#00468#), -- CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS .. CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS
(16#0046A#, 16#0046A#), -- CYRILLIC CAPITAL LETTER BIG YUS .. CYRILLIC CAPITAL LETTER BIG YUS
(16#0046C#, 16#0046C#), -- CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS .. CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS
(16#0046E#, 16#0046E#), -- CYRILLIC CAPITAL LETTER KSI .. CYRILLIC CAPITAL LETTER KSI
(16#00470#, 16#00470#), -- CYRILLIC CAPITAL LETTER PSI .. CYRILLIC CAPITAL LETTER PSI
(16#00472#, 16#00472#), -- CYRILLIC CAPITAL LETTER FITA .. CYRILLIC CAPITAL LETTER FITA
(16#00474#, 16#00474#), -- CYRILLIC CAPITAL LETTER IZHITSA .. CYRILLIC CAPITAL LETTER IZHITSA
(16#00476#, 16#00476#), -- CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
(16#00478#, 16#00478#), -- CYRILLIC CAPITAL LETTER UK .. CYRILLIC CAPITAL LETTER UK
(16#0047A#, 16#0047A#), -- CYRILLIC CAPITAL LETTER ROUND OMEGA .. CYRILLIC CAPITAL LETTER ROUND OMEGA
(16#0047C#, 16#0047C#), -- CYRILLIC CAPITAL LETTER OMEGA WITH TITLO .. CYRILLIC CAPITAL LETTER OMEGA WITH TITLO
(16#0047E#, 16#0047E#), -- CYRILLIC CAPITAL LETTER OT .. CYRILLIC CAPITAL LETTER OT
(16#00480#, 16#00480#), -- CYRILLIC CAPITAL LETTER KOPPA .. CYRILLIC CAPITAL LETTER KOPPA
(16#0048A#, 16#0048A#), -- CYRILLIC CAPITAL LETTER SHORT I WITH TAIL .. CYRILLIC CAPITAL LETTER SHORT I WITH TAIL
(16#0048C#, 16#0048C#), -- CYRILLIC CAPITAL LETTER SEMISOFT SIGN .. CYRILLIC CAPITAL LETTER SEMISOFT SIGN
(16#0048E#, 16#0048E#), -- CYRILLIC CAPITAL LETTER ER WITH TICK .. CYRILLIC CAPITAL LETTER ER WITH TICK
(16#00490#, 16#00490#), -- CYRILLIC CAPITAL LETTER GHE WITH UPTURN .. CYRILLIC CAPITAL LETTER GHE WITH UPTURN
(16#00492#, 16#00492#), -- CYRILLIC CAPITAL LETTER GHE WITH STROKE .. CYRILLIC CAPITAL LETTER GHE WITH STROKE
(16#00494#, 16#00494#), -- CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK
(16#00496#, 16#00496#), -- CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER
(16#00498#, 16#00498#), -- CYRILLIC CAPITAL LETTER ZE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZE WITH DESCENDER
(16#0049A#, 16#0049A#), -- CYRILLIC CAPITAL LETTER KA WITH DESCENDER .. CYRILLIC CAPITAL LETTER KA WITH DESCENDER
(16#0049C#, 16#0049C#), -- CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE
(16#0049E#, 16#0049E#), -- CYRILLIC CAPITAL LETTER KA WITH STROKE .. CYRILLIC CAPITAL LETTER KA WITH STROKE
(16#004A0#, 16#004A0#), -- CYRILLIC CAPITAL LETTER BASHKIR KA .. CYRILLIC CAPITAL LETTER BASHKIR KA
(16#004A2#, 16#004A2#), -- CYRILLIC CAPITAL LETTER EN WITH DESCENDER .. CYRILLIC CAPITAL LETTER EN WITH DESCENDER
(16#004A4#, 16#004A4#), -- CYRILLIC CAPITAL LETTER EN GE .. CYRILLIC CAPITAL LETTER EN GE
(16#004A6#, 16#004A6#), -- CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK
(16#004A8#, 16#004A8#), -- CYRILLIC CAPITAL LETTER ABKHASIAN HA .. CYRILLIC CAPITAL LETTER ABKHASIAN HA
(16#004AA#, 16#004AA#), -- CYRILLIC CAPITAL LETTER ES WITH DESCENDER .. CYRILLIC CAPITAL LETTER ES WITH DESCENDER
(16#004AC#, 16#004AC#), -- CYRILLIC CAPITAL LETTER TE WITH DESCENDER .. CYRILLIC CAPITAL LETTER TE WITH DESCENDER
(16#004AE#, 16#004AE#), -- CYRILLIC CAPITAL LETTER STRAIGHT U .. CYRILLIC CAPITAL LETTER STRAIGHT U
(16#004B0#, 16#004B0#), -- CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE .. CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE
(16#004B2#, 16#004B2#), -- CYRILLIC CAPITAL LETTER HA WITH DESCENDER .. CYRILLIC CAPITAL LETTER HA WITH DESCENDER
(16#004B4#, 16#004B4#), -- CYRILLIC CAPITAL LETTER TE TSE .. CYRILLIC CAPITAL LETTER TE TSE
(16#004B6#, 16#004B6#), -- CYRILLIC CAPITAL LETTER CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER CHE WITH DESCENDER
(16#004B8#, 16#004B8#), -- CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE
(16#004BA#, 16#004BA#), -- CYRILLIC CAPITAL LETTER SHHA .. CYRILLIC CAPITAL LETTER SHHA
(16#004BC#, 16#004BC#), -- CYRILLIC CAPITAL LETTER ABKHASIAN CHE .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE
(16#004BE#, 16#004BE#), -- CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER
(16#004C1#, 16#004C1#), -- CYRILLIC CAPITAL LETTER ZHE WITH BREVE .. CYRILLIC CAPITAL LETTER ZHE WITH BREVE
(16#004C3#, 16#004C3#), -- CYRILLIC CAPITAL LETTER KA WITH HOOK .. CYRILLIC CAPITAL LETTER KA WITH HOOK
(16#004C5#, 16#004C5#), -- CYRILLIC CAPITAL LETTER EL WITH TAIL .. CYRILLIC CAPITAL LETTER EL WITH TAIL
(16#004C7#, 16#004C7#), -- CYRILLIC CAPITAL LETTER EN WITH HOOK .. CYRILLIC CAPITAL LETTER EN WITH HOOK
(16#004C9#, 16#004C9#), -- CYRILLIC CAPITAL LETTER EN WITH TAIL .. CYRILLIC CAPITAL LETTER EN WITH TAIL
(16#004CB#, 16#004CB#), -- CYRILLIC CAPITAL LETTER KHAKASSIAN CHE .. CYRILLIC CAPITAL LETTER KHAKASSIAN CHE
(16#004CD#, 16#004CD#), -- CYRILLIC CAPITAL LETTER EM WITH TAIL .. CYRILLIC CAPITAL LETTER EM WITH TAIL
(16#004D0#, 16#004D0#), -- CYRILLIC CAPITAL LETTER A WITH BREVE .. CYRILLIC CAPITAL LETTER A WITH BREVE
(16#004D2#, 16#004D2#), -- CYRILLIC CAPITAL LETTER A WITH DIAERESIS .. CYRILLIC CAPITAL LETTER A WITH DIAERESIS
(16#004D6#, 16#004D6#), -- CYRILLIC CAPITAL LETTER IE WITH BREVE .. CYRILLIC CAPITAL LETTER IE WITH BREVE
(16#004D8#, 16#004D8#), -- CYRILLIC CAPITAL LETTER SCHWA .. CYRILLIC CAPITAL LETTER SCHWA
(16#004DA#, 16#004DA#), -- CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS .. CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS
(16#004DC#, 16#004DC#), -- CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS
(16#004DE#, 16#004DE#), -- CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS
(16#004E0#, 16#004E0#), -- CYRILLIC CAPITAL LETTER ABKHASIAN DZE .. CYRILLIC CAPITAL LETTER ABKHASIAN DZE
(16#004E2#, 16#004E2#), -- CYRILLIC CAPITAL LETTER I WITH MACRON .. CYRILLIC CAPITAL LETTER I WITH MACRON
(16#004E4#, 16#004E4#), -- CYRILLIC CAPITAL LETTER I WITH DIAERESIS .. CYRILLIC CAPITAL LETTER I WITH DIAERESIS
(16#004E6#, 16#004E6#), -- CYRILLIC CAPITAL LETTER O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER O WITH DIAERESIS
(16#004E8#, 16#004E8#), -- CYRILLIC CAPITAL LETTER BARRED O .. CYRILLIC CAPITAL LETTER BARRED O
(16#004EA#, 16#004EA#), -- CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS
(16#004EC#, 16#004EC#), -- CYRILLIC CAPITAL LETTER E WITH DIAERESIS .. CYRILLIC CAPITAL LETTER E WITH DIAERESIS
(16#004EE#, 16#004EE#), -- CYRILLIC CAPITAL LETTER U WITH MACRON .. CYRILLIC CAPITAL LETTER U WITH MACRON
(16#004F0#, 16#004F0#), -- CYRILLIC CAPITAL LETTER U WITH DIAERESIS .. CYRILLIC CAPITAL LETTER U WITH DIAERESIS
(16#004F2#, 16#004F2#), -- CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE .. CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE
(16#004F4#, 16#004F4#), -- CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS
(16#004F8#, 16#004F8#), -- CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS .. CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS
(16#00500#, 16#00500#), -- CYRILLIC CAPITAL LETTER KOMI DE .. CYRILLIC CAPITAL LETTER KOMI DE
(16#00502#, 16#00502#), -- CYRILLIC CAPITAL LETTER KOMI DJE .. CYRILLIC CAPITAL LETTER KOMI DJE
(16#00504#, 16#00504#), -- CYRILLIC CAPITAL LETTER KOMI ZJE .. CYRILLIC CAPITAL LETTER KOMI ZJE
(16#00506#, 16#00506#), -- CYRILLIC CAPITAL LETTER KOMI DZJE .. CYRILLIC CAPITAL LETTER KOMI DZJE
(16#00508#, 16#00508#), -- CYRILLIC CAPITAL LETTER KOMI LJE .. CYRILLIC CAPITAL LETTER KOMI LJE
(16#0050A#, 16#0050A#), -- CYRILLIC CAPITAL LETTER KOMI NJE .. CYRILLIC CAPITAL LETTER KOMI NJE
(16#0050C#, 16#0050C#), -- CYRILLIC CAPITAL LETTER KOMI SJE .. CYRILLIC CAPITAL LETTER KOMI SJE
(16#0050E#, 16#0050E#), -- CYRILLIC CAPITAL LETTER KOMI TJE .. CYRILLIC CAPITAL LETTER KOMI TJE
(16#00531#, 16#00556#), -- ARMENIAN CAPITAL LETTER AYB .. ARMENIAN CAPITAL LETTER FEH
(16#010A0#, 16#010C5#), -- GEORGIAN CAPITAL LETTER AN .. GEORGIAN CAPITAL LETTER HOE
(16#01E00#, 16#01E00#), -- LATIN CAPITAL LETTER A WITH RING BELOW .. LATIN CAPITAL LETTER A WITH RING BELOW
(16#01E02#, 16#01E02#), -- LATIN CAPITAL LETTER B WITH DOT ABOVE .. LATIN CAPITAL LETTER B WITH DOT ABOVE
(16#01E04#, 16#01E04#), -- LATIN CAPITAL LETTER B WITH DOT BELOW .. LATIN CAPITAL LETTER B WITH DOT BELOW
(16#01E06#, 16#01E06#), -- LATIN CAPITAL LETTER B WITH LINE BELOW .. LATIN CAPITAL LETTER B WITH LINE BELOW
(16#01E08#, 16#01E08#), -- LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE .. LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE
(16#01E0A#, 16#01E0A#), -- LATIN CAPITAL LETTER D WITH DOT ABOVE .. LATIN CAPITAL LETTER D WITH DOT ABOVE
(16#01E0C#, 16#01E0C#), -- LATIN CAPITAL LETTER D WITH DOT BELOW .. LATIN CAPITAL LETTER D WITH DOT BELOW
(16#01E0E#, 16#01E0E#), -- LATIN CAPITAL LETTER D WITH LINE BELOW .. LATIN CAPITAL LETTER D WITH LINE BELOW
(16#01E10#, 16#01E10#), -- LATIN CAPITAL LETTER D WITH CEDILLA .. LATIN CAPITAL LETTER D WITH CEDILLA
(16#01E12#, 16#01E12#), -- LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW
(16#01E14#, 16#01E14#), -- LATIN CAPITAL LETTER E WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER E WITH MACRON AND GRAVE
(16#01E16#, 16#01E16#), -- LATIN CAPITAL LETTER E WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER E WITH MACRON AND ACUTE
(16#01E18#, 16#01E18#), -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW
(16#01E1A#, 16#01E1A#), -- LATIN CAPITAL LETTER E WITH TILDE BELOW .. LATIN CAPITAL LETTER E WITH TILDE BELOW
(16#01E1C#, 16#01E1C#), -- LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE .. LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE
(16#01E1E#, 16#01E1E#), -- LATIN CAPITAL LETTER F WITH DOT ABOVE .. LATIN CAPITAL LETTER F WITH DOT ABOVE
(16#01E20#, 16#01E20#), -- LATIN CAPITAL LETTER G WITH MACRON .. LATIN CAPITAL LETTER G WITH MACRON
(16#01E22#, 16#01E22#), -- LATIN CAPITAL LETTER H WITH DOT ABOVE .. LATIN CAPITAL LETTER H WITH DOT ABOVE
(16#01E24#, 16#01E24#), -- LATIN CAPITAL LETTER H WITH DOT BELOW .. LATIN CAPITAL LETTER H WITH DOT BELOW
(16#01E26#, 16#01E26#), -- LATIN CAPITAL LETTER H WITH DIAERESIS .. LATIN CAPITAL LETTER H WITH DIAERESIS
(16#01E28#, 16#01E28#), -- LATIN CAPITAL LETTER H WITH CEDILLA .. LATIN CAPITAL LETTER H WITH CEDILLA
(16#01E2A#, 16#01E2A#), -- LATIN CAPITAL LETTER H WITH BREVE BELOW .. LATIN CAPITAL LETTER H WITH BREVE BELOW
(16#01E2C#, 16#01E2C#), -- LATIN CAPITAL LETTER I WITH TILDE BELOW .. LATIN CAPITAL LETTER I WITH TILDE BELOW
(16#01E2E#, 16#01E2E#), -- LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE
(16#01E30#, 16#01E30#), -- LATIN CAPITAL LETTER K WITH ACUTE .. LATIN CAPITAL LETTER K WITH ACUTE
(16#01E32#, 16#01E32#), -- LATIN CAPITAL LETTER K WITH DOT BELOW .. LATIN CAPITAL LETTER K WITH DOT BELOW
(16#01E34#, 16#01E34#), -- LATIN CAPITAL LETTER K WITH LINE BELOW .. LATIN CAPITAL LETTER K WITH LINE BELOW
(16#01E36#, 16#01E36#), -- LATIN CAPITAL LETTER L WITH DOT BELOW .. LATIN CAPITAL LETTER L WITH DOT BELOW
(16#01E38#, 16#01E38#), -- LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON
(16#01E3A#, 16#01E3A#), -- LATIN CAPITAL LETTER L WITH LINE BELOW .. LATIN CAPITAL LETTER L WITH LINE BELOW
(16#01E3C#, 16#01E3C#), -- LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW
(16#01E3E#, 16#01E3E#), -- LATIN CAPITAL LETTER M WITH ACUTE .. LATIN CAPITAL LETTER M WITH ACUTE
(16#01E40#, 16#01E40#), -- LATIN CAPITAL LETTER M WITH DOT ABOVE .. LATIN CAPITAL LETTER M WITH DOT ABOVE
(16#01E42#, 16#01E42#), -- LATIN CAPITAL LETTER M WITH DOT BELOW .. LATIN CAPITAL LETTER M WITH DOT BELOW
(16#01E44#, 16#01E44#), -- LATIN CAPITAL LETTER N WITH DOT ABOVE .. LATIN CAPITAL LETTER N WITH DOT ABOVE
(16#01E46#, 16#01E46#), -- LATIN CAPITAL LETTER N WITH DOT BELOW .. LATIN CAPITAL LETTER N WITH DOT BELOW
(16#01E48#, 16#01E48#), -- LATIN CAPITAL LETTER N WITH LINE BELOW .. LATIN CAPITAL LETTER N WITH LINE BELOW
(16#01E4A#, 16#01E4A#), -- LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW
(16#01E4C#, 16#01E4C#), -- LATIN CAPITAL LETTER O WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER O WITH TILDE AND ACUTE
(16#01E4E#, 16#01E4E#), -- LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS .. LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS
(16#01E50#, 16#01E50#), -- LATIN CAPITAL LETTER O WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER O WITH MACRON AND GRAVE
(16#01E52#, 16#01E52#), -- LATIN CAPITAL LETTER O WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER O WITH MACRON AND ACUTE
(16#01E54#, 16#01E54#), -- LATIN CAPITAL LETTER P WITH ACUTE .. LATIN CAPITAL LETTER P WITH ACUTE
(16#01E56#, 16#01E56#), -- LATIN CAPITAL LETTER P WITH DOT ABOVE .. LATIN CAPITAL LETTER P WITH DOT ABOVE
(16#01E58#, 16#01E58#), -- LATIN CAPITAL LETTER R WITH DOT ABOVE .. LATIN CAPITAL LETTER R WITH DOT ABOVE
(16#01E5A#, 16#01E5A#), -- LATIN CAPITAL LETTER R WITH DOT BELOW .. LATIN CAPITAL LETTER R WITH DOT BELOW
(16#01E5C#, 16#01E5C#), -- LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON
(16#01E5E#, 16#01E5E#), -- LATIN CAPITAL LETTER R WITH LINE BELOW .. LATIN CAPITAL LETTER R WITH LINE BELOW
(16#01E60#, 16#01E60#), -- LATIN CAPITAL LETTER S WITH DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT ABOVE
(16#01E62#, 16#01E62#), -- LATIN CAPITAL LETTER S WITH DOT BELOW .. LATIN CAPITAL LETTER S WITH DOT BELOW
(16#01E64#, 16#01E64#), -- LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE
(16#01E66#, 16#01E66#), -- LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE
(16#01E68#, 16#01E68#), -- LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE
(16#01E6A#, 16#01E6A#), -- LATIN CAPITAL LETTER T WITH DOT ABOVE .. LATIN CAPITAL LETTER T WITH DOT ABOVE
(16#01E6C#, 16#01E6C#), -- LATIN CAPITAL LETTER T WITH DOT BELOW .. LATIN CAPITAL LETTER T WITH DOT BELOW
(16#01E6E#, 16#01E6E#), -- LATIN CAPITAL LETTER T WITH LINE BELOW .. LATIN CAPITAL LETTER T WITH LINE BELOW
(16#01E70#, 16#01E70#), -- LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW
(16#01E72#, 16#01E72#), -- LATIN CAPITAL LETTER U WITH DIAERESIS BELOW .. LATIN CAPITAL LETTER U WITH DIAERESIS BELOW
(16#01E74#, 16#01E74#), -- LATIN CAPITAL LETTER U WITH TILDE BELOW .. LATIN CAPITAL LETTER U WITH TILDE BELOW
(16#01E76#, 16#01E76#), -- LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW
(16#01E78#, 16#01E78#), -- LATIN CAPITAL LETTER U WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER U WITH TILDE AND ACUTE
(16#01E7A#, 16#01E7A#), -- LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS .. LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS
(16#01E7C#, 16#01E7C#), -- LATIN CAPITAL LETTER V WITH TILDE .. LATIN CAPITAL LETTER V WITH TILDE
(16#01E7E#, 16#01E7E#), -- LATIN CAPITAL LETTER V WITH DOT BELOW .. LATIN CAPITAL LETTER V WITH DOT BELOW
(16#01E80#, 16#01E80#), -- LATIN CAPITAL LETTER W WITH GRAVE .. LATIN CAPITAL LETTER W WITH GRAVE
(16#01E82#, 16#01E82#), -- LATIN CAPITAL LETTER W WITH ACUTE .. LATIN CAPITAL LETTER W WITH ACUTE
(16#01E84#, 16#01E84#), -- LATIN CAPITAL LETTER W WITH DIAERESIS .. LATIN CAPITAL LETTER W WITH DIAERESIS
(16#01E86#, 16#01E86#), -- LATIN CAPITAL LETTER W WITH DOT ABOVE .. LATIN CAPITAL LETTER W WITH DOT ABOVE
(16#01E88#, 16#01E88#), -- LATIN CAPITAL LETTER W WITH DOT BELOW .. LATIN CAPITAL LETTER W WITH DOT BELOW
(16#01E8A#, 16#01E8A#), -- LATIN CAPITAL LETTER X WITH DOT ABOVE .. LATIN CAPITAL LETTER X WITH DOT ABOVE
(16#01E8C#, 16#01E8C#), -- LATIN CAPITAL LETTER X WITH DIAERESIS .. LATIN CAPITAL LETTER X WITH DIAERESIS
(16#01E8E#, 16#01E8E#), -- LATIN CAPITAL LETTER Y WITH DOT ABOVE .. LATIN CAPITAL LETTER Y WITH DOT ABOVE
(16#01E90#, 16#01E90#), -- LATIN CAPITAL LETTER Z WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Z WITH CIRCUMFLEX
(16#01E92#, 16#01E92#), -- LATIN CAPITAL LETTER Z WITH DOT BELOW .. LATIN CAPITAL LETTER Z WITH DOT BELOW
(16#01E94#, 16#01E94#), -- LATIN CAPITAL LETTER Z WITH LINE BELOW .. LATIN CAPITAL LETTER Z WITH LINE BELOW
(16#01EA0#, 16#01EA0#), -- LATIN CAPITAL LETTER A WITH DOT BELOW .. LATIN CAPITAL LETTER A WITH DOT BELOW
(16#01EA2#, 16#01EA2#), -- LATIN CAPITAL LETTER A WITH HOOK ABOVE .. LATIN CAPITAL LETTER A WITH HOOK ABOVE
(16#01EA4#, 16#01EA4#), -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE
(16#01EA6#, 16#01EA6#), -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE
(16#01EA8#, 16#01EA8#), -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EAA#, 16#01EAA#), -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE
(16#01EAC#, 16#01EAC#), -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW
(16#01EAE#, 16#01EAE#), -- LATIN CAPITAL LETTER A WITH BREVE AND ACUTE .. LATIN CAPITAL LETTER A WITH BREVE AND ACUTE
(16#01EB0#, 16#01EB0#), -- LATIN CAPITAL LETTER A WITH BREVE AND GRAVE .. LATIN CAPITAL LETTER A WITH BREVE AND GRAVE
(16#01EB2#, 16#01EB2#), -- LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE
(16#01EB4#, 16#01EB4#), -- LATIN CAPITAL LETTER A WITH BREVE AND TILDE .. LATIN CAPITAL LETTER A WITH BREVE AND TILDE
(16#01EB6#, 16#01EB6#), -- LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW .. LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW
(16#01EB8#, 16#01EB8#), -- LATIN CAPITAL LETTER E WITH DOT BELOW .. LATIN CAPITAL LETTER E WITH DOT BELOW
(16#01EBA#, 16#01EBA#), -- LATIN CAPITAL LETTER E WITH HOOK ABOVE .. LATIN CAPITAL LETTER E WITH HOOK ABOVE
(16#01EBC#, 16#01EBC#), -- LATIN CAPITAL LETTER E WITH TILDE .. LATIN CAPITAL LETTER E WITH TILDE
(16#01EBE#, 16#01EBE#), -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE
(16#01EC0#, 16#01EC0#), -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE
(16#01EC2#, 16#01EC2#), -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
(16#01EC4#, 16#01EC4#), -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE
(16#01EC6#, 16#01EC6#), -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW
(16#01EC8#, 16#01EC8#), -- LATIN CAPITAL LETTER I WITH HOOK ABOVE .. LATIN CAPITAL LETTER I WITH HOOK ABOVE
(16#01ECA#, 16#01ECA#), -- LATIN CAPITAL LETTER I WITH DOT BELOW .. LATIN CAPITAL LETTER I WITH DOT BELOW
(16#01ECC#, 16#01ECC#), -- LATIN CAPITAL LETTER O WITH DOT BELOW .. LATIN CAPITAL LETTER O WITH DOT BELOW
(16#01ECE#, 16#01ECE#), -- LATIN CAPITAL LETTER O WITH HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HOOK ABOVE
(16#01ED0#, 16#01ED0#), -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE
(16#01ED2#, 16#01ED2#), -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE
(16#01ED4#, 16#01ED4#), -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
(16#01ED6#, 16#01ED6#), -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE
(16#01ED8#, 16#01ED8#), -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW
(16#01EDA#, 16#01EDA#), -- LATIN CAPITAL LETTER O WITH HORN AND ACUTE .. LATIN CAPITAL LETTER O WITH HORN AND ACUTE
(16#01EDC#, 16#01EDC#), -- LATIN CAPITAL LETTER O WITH HORN AND GRAVE .. LATIN CAPITAL LETTER O WITH HORN AND GRAVE
(16#01EDE#, 16#01EDE#), -- LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE
(16#01EE0#, 16#01EE0#), -- LATIN CAPITAL LETTER O WITH HORN AND TILDE .. LATIN CAPITAL LETTER O WITH HORN AND TILDE
(16#01EE2#, 16#01EE2#), -- LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW
(16#01EE4#, 16#01EE4#), -- LATIN CAPITAL LETTER U WITH DOT BELOW .. LATIN CAPITAL LETTER U WITH DOT BELOW
(16#01EE6#, 16#01EE6#), -- LATIN CAPITAL LETTER U WITH HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HOOK ABOVE
(16#01EE8#, 16#01EE8#), -- LATIN CAPITAL LETTER U WITH HORN AND ACUTE .. LATIN CAPITAL LETTER U WITH HORN AND ACUTE
(16#01EEA#, 16#01EEA#), -- LATIN CAPITAL LETTER U WITH HORN AND GRAVE .. LATIN CAPITAL LETTER U WITH HORN AND GRAVE
(16#01EEC#, 16#01EEC#), -- LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE
(16#01EEE#, 16#01EEE#), -- LATIN CAPITAL LETTER U WITH HORN AND TILDE .. LATIN CAPITAL LETTER U WITH HORN AND TILDE
(16#01EF0#, 16#01EF0#), -- LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW
(16#01EF2#, 16#01EF2#), -- LATIN CAPITAL LETTER Y WITH GRAVE .. LATIN CAPITAL LETTER Y WITH GRAVE
(16#01EF4#, 16#01EF4#), -- LATIN CAPITAL LETTER Y WITH DOT BELOW .. LATIN CAPITAL LETTER Y WITH DOT BELOW
(16#01EF6#, 16#01EF6#), -- LATIN CAPITAL LETTER Y WITH HOOK ABOVE .. LATIN CAPITAL LETTER Y WITH HOOK ABOVE
(16#01EF8#, 16#01EF8#), -- LATIN CAPITAL LETTER Y WITH TILDE .. LATIN CAPITAL LETTER Y WITH TILDE
(16#01F08#, 16#01F0F#), -- GREEK CAPITAL LETTER ALPHA WITH PSILI .. GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI
(16#01F18#, 16#01F1D#), -- GREEK CAPITAL LETTER EPSILON WITH PSILI .. GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA
(16#01F28#, 16#01F2F#), -- GREEK CAPITAL LETTER ETA WITH PSILI .. GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI
(16#01F38#, 16#01F3F#), -- GREEK CAPITAL LETTER IOTA WITH PSILI .. GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI
(16#01F48#, 16#01F4D#), -- GREEK CAPITAL LETTER OMICRON WITH PSILI .. GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA
(16#01F59#, 16#01F59#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA
(16#01F5B#, 16#01F5B#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA
(16#01F5D#, 16#01F5D#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA
(16#01F5F#, 16#01F5F#), -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI
(16#01F68#, 16#01F6F#), -- GREEK CAPITAL LETTER OMEGA WITH PSILI .. GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI
(16#01FB8#, 16#01FB9#), -- GREEK CAPITAL LETTER ALPHA WITH VRACHY .. GREEK CAPITAL LETTER ALPHA WITH MACRON
(16#01FBA#, 16#01FBB#), -- GREEK CAPITAL LETTER ALPHA WITH VARIA .. GREEK CAPITAL LETTER ALPHA WITH OXIA
(16#01FC8#, 16#01FCB#), -- GREEK CAPITAL LETTER EPSILON WITH VARIA .. GREEK CAPITAL LETTER ETA WITH OXIA
(16#01FD8#, 16#01FD9#), -- GREEK CAPITAL LETTER IOTA WITH VRACHY .. GREEK CAPITAL LETTER IOTA WITH MACRON
(16#01FDA#, 16#01FDB#), -- GREEK CAPITAL LETTER IOTA WITH VARIA .. GREEK CAPITAL LETTER IOTA WITH OXIA
(16#01FE8#, 16#01FE9#), -- GREEK CAPITAL LETTER UPSILON WITH VRACHY .. GREEK CAPITAL LETTER UPSILON WITH MACRON
(16#01FEA#, 16#01FEB#), -- GREEK CAPITAL LETTER UPSILON WITH VARIA .. GREEK CAPITAL LETTER UPSILON WITH OXIA
(16#01FEC#, 16#01FEC#), -- GREEK CAPITAL LETTER RHO WITH DASIA .. GREEK CAPITAL LETTER RHO WITH DASIA
(16#01FF8#, 16#01FF9#), -- GREEK CAPITAL LETTER OMICRON WITH VARIA .. GREEK CAPITAL LETTER OMICRON WITH OXIA
(16#01FFA#, 16#01FFB#), -- GREEK CAPITAL LETTER OMEGA WITH VARIA .. GREEK CAPITAL LETTER OMEGA WITH OXIA
(16#024B6#, 16#024CF#), -- CIRCLED LATIN CAPITAL LETTER A .. CIRCLED LATIN CAPITAL LETTER Z
(16#0FF21#, 16#0FF3A#), -- FULLWIDTH LATIN CAPITAL LETTER A .. FULLWIDTH LATIN CAPITAL LETTER Z
(16#10400#, 16#10427#), -- DESERET CAPITAL LETTER LONG I .. DESERET CAPITAL LETTER EW
(16#E0041#, 16#E005A#)); -- TAG LATIN CAPITAL LETTER A .. TAG LATIN CAPITAL LETTER Z
Upper_Case_Adjust : constant array (Lower_Case_Letters'Range)
of UTF_32'Base := (
32, -- LATIN CAPITAL LETTER A .. LATIN CAPITAL LETTER Z
32, -- LATIN CAPITAL LETTER A WITH GRAVE .. LATIN CAPITAL LETTER O WITH DIAERESIS
32, -- LATIN CAPITAL LETTER O WITH STROKE .. LATIN CAPITAL LETTER THORN
1, -- LATIN CAPITAL LETTER A WITH MACRON .. LATIN CAPITAL LETTER A WITH MACRON
1, -- LATIN CAPITAL LETTER A WITH BREVE .. LATIN CAPITAL LETTER A WITH BREVE
1, -- LATIN CAPITAL LETTER A WITH OGONEK .. LATIN CAPITAL LETTER A WITH OGONEK
1, -- LATIN CAPITAL LETTER C WITH ACUTE .. LATIN CAPITAL LETTER C WITH ACUTE
1, -- LATIN CAPITAL LETTER C WITH CIRCUMFLEX .. LATIN CAPITAL LETTER C WITH CIRCUMFLEX
1, -- LATIN CAPITAL LETTER C WITH DOT ABOVE .. LATIN CAPITAL LETTER C WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER C WITH CARON .. LATIN CAPITAL LETTER C WITH CARON
1, -- LATIN CAPITAL LETTER D WITH CARON .. LATIN CAPITAL LETTER D WITH CARON
1, -- LATIN CAPITAL LETTER D WITH STROKE .. LATIN CAPITAL LETTER D WITH STROKE
1, -- LATIN CAPITAL LETTER E WITH MACRON .. LATIN CAPITAL LETTER E WITH MACRON
1, -- LATIN CAPITAL LETTER E WITH BREVE .. LATIN CAPITAL LETTER E WITH BREVE
1, -- LATIN CAPITAL LETTER E WITH DOT ABOVE .. LATIN CAPITAL LETTER E WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER E WITH OGONEK .. LATIN CAPITAL LETTER E WITH OGONEK
1, -- LATIN CAPITAL LETTER E WITH CARON .. LATIN CAPITAL LETTER E WITH CARON
1, -- LATIN CAPITAL LETTER G WITH CIRCUMFLEX .. LATIN CAPITAL LETTER G WITH CIRCUMFLEX
1, -- LATIN CAPITAL LETTER G WITH BREVE .. LATIN CAPITAL LETTER G WITH BREVE
1, -- LATIN CAPITAL LETTER G WITH DOT ABOVE .. LATIN CAPITAL LETTER G WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER G WITH CEDILLA .. LATIN CAPITAL LETTER G WITH CEDILLA
1, -- LATIN CAPITAL LETTER H WITH CIRCUMFLEX .. LATIN CAPITAL LETTER H WITH CIRCUMFLEX
1, -- LATIN CAPITAL LETTER H WITH STROKE .. LATIN CAPITAL LETTER H WITH STROKE
1, -- LATIN CAPITAL LETTER I WITH TILDE .. LATIN CAPITAL LETTER I WITH TILDE
1, -- LATIN CAPITAL LETTER I WITH MACRON .. LATIN CAPITAL LETTER I WITH MACRON
1, -- LATIN CAPITAL LETTER I WITH BREVE .. LATIN CAPITAL LETTER I WITH BREVE
1, -- LATIN CAPITAL LETTER I WITH OGONEK .. LATIN CAPITAL LETTER I WITH OGONEK
1, -- LATIN CAPITAL LETTER I J .. LATIN CAPITAL LETTER I J
1, -- LATIN CAPITAL LETTER J WITH CIRCUMFLEX .. LATIN CAPITAL LETTER J WITH CIRCUMFLEX
1, -- LATIN CAPITAL LETTER K WITH CEDILLA .. LATIN CAPITAL LETTER K WITH CEDILLA
1, -- LATIN CAPITAL LETTER L WITH ACUTE .. LATIN CAPITAL LETTER L WITH ACUTE
1, -- LATIN CAPITAL LETTER L WITH CEDILLA .. LATIN CAPITAL LETTER L WITH CEDILLA
1, -- LATIN CAPITAL LETTER L WITH CARON .. LATIN CAPITAL LETTER L WITH CARON
1, -- LATIN CAPITAL LETTER L WITH MIDDLE DOT .. LATIN CAPITAL LETTER L WITH MIDDLE DOT
1, -- LATIN CAPITAL LETTER L WITH STROKE .. LATIN CAPITAL LETTER L WITH STROKE
1, -- LATIN CAPITAL LETTER N WITH ACUTE .. LATIN CAPITAL LETTER N WITH ACUTE
1, -- LATIN CAPITAL LETTER N WITH CEDILLA .. LATIN CAPITAL LETTER N WITH CEDILLA
1, -- LATIN CAPITAL LETTER N WITH CARON .. LATIN CAPITAL LETTER N WITH CARON
1, -- LATIN CAPITAL LETTER ENG .. LATIN CAPITAL LETTER ENG
1, -- LATIN CAPITAL LETTER O WITH MACRON .. LATIN CAPITAL LETTER O WITH MACRON
1, -- LATIN CAPITAL LETTER O WITH BREVE .. LATIN CAPITAL LETTER O WITH BREVE
1, -- LATIN CAPITAL LETTER O WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
1, -- LATIN CAPITAL LETTER O E .. LATIN CAPITAL LETTER O E
1, -- LATIN CAPITAL LETTER R WITH ACUTE .. LATIN CAPITAL LETTER R WITH ACUTE
1, -- LATIN CAPITAL LETTER R WITH CEDILLA .. LATIN CAPITAL LETTER R WITH CEDILLA
1, -- LATIN CAPITAL LETTER R WITH CARON .. LATIN CAPITAL LETTER R WITH CARON
1, -- LATIN CAPITAL LETTER S WITH ACUTE .. LATIN CAPITAL LETTER S WITH ACUTE
1, -- LATIN CAPITAL LETTER S WITH CIRCUMFLEX .. LATIN CAPITAL LETTER S WITH CIRCUMFLEX
1, -- LATIN CAPITAL LETTER S WITH CEDILLA .. LATIN CAPITAL LETTER S WITH CEDILLA
1, -- LATIN CAPITAL LETTER S WITH CARON .. LATIN CAPITAL LETTER S WITH CARON
1, -- LATIN CAPITAL LETTER T WITH CEDILLA .. LATIN CAPITAL LETTER T WITH CEDILLA
1, -- LATIN CAPITAL LETTER T WITH CARON .. LATIN CAPITAL LETTER T WITH CARON
1, -- LATIN CAPITAL LETTER T WITH STROKE .. LATIN CAPITAL LETTER T WITH STROKE
1, -- LATIN CAPITAL LETTER U WITH TILDE .. LATIN CAPITAL LETTER U WITH TILDE
1, -- LATIN CAPITAL LETTER U WITH MACRON .. LATIN CAPITAL LETTER U WITH MACRON
1, -- LATIN CAPITAL LETTER U WITH BREVE .. LATIN CAPITAL LETTER U WITH BREVE
1, -- LATIN CAPITAL LETTER U WITH RING ABOVE .. LATIN CAPITAL LETTER U WITH RING ABOVE
1, -- LATIN CAPITAL LETTER U WITH DOUBLE ACUTE .. LATIN CAPITAL LETTER U WITH DOUBLE ACUTE
1, -- LATIN CAPITAL LETTER U WITH OGONEK .. LATIN CAPITAL LETTER U WITH OGONEK
1, -- LATIN CAPITAL LETTER W WITH CIRCUMFLEX .. LATIN CAPITAL LETTER W WITH CIRCUMFLEX
1, -- LATIN CAPITAL LETTER Y WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
-121, -- LATIN CAPITAL LETTER Y WITH DIAERESIS .. LATIN CAPITAL LETTER Y WITH DIAERESIS
1, -- LATIN CAPITAL LETTER Z WITH ACUTE .. LATIN CAPITAL LETTER Z WITH ACUTE
1, -- LATIN CAPITAL LETTER Z WITH DOT ABOVE .. LATIN CAPITAL LETTER Z WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER Z WITH CARON .. LATIN CAPITAL LETTER Z WITH CARON
210, -- LATIN CAPITAL LETTER B WITH HOOK .. LATIN CAPITAL LETTER B WITH HOOK
1, -- LATIN CAPITAL LETTER B WITH TOPBAR .. LATIN CAPITAL LETTER B WITH TOPBAR
1, -- LATIN CAPITAL LETTER TONE SIX .. LATIN CAPITAL LETTER TONE SIX
206, -- LATIN CAPITAL LETTER OPEN O .. LATIN CAPITAL LETTER OPEN O
1, -- LATIN CAPITAL LETTER C WITH HOOK .. LATIN CAPITAL LETTER C WITH HOOK
205, -- LATIN CAPITAL LETTER D WITH HOOK .. LATIN CAPITAL LETTER D WITH HOOK
1, -- LATIN CAPITAL LETTER D WITH TOPBAR .. LATIN CAPITAL LETTER D WITH TOPBAR
202, -- LATIN CAPITAL LETTER REVERSED E .. LATIN CAPITAL LETTER SCHWA
203, -- LATIN CAPITAL LETTER OPEN E .. LATIN CAPITAL LETTER OPEN E
1, -- LATIN CAPITAL LETTER F WITH HOOK .. LATIN CAPITAL LETTER F WITH HOOK
205, -- LATIN CAPITAL LETTER G WITH HOOK .. LATIN CAPITAL LETTER G WITH HOOK
207, -- LATIN CAPITAL LETTER GAMMA .. LATIN CAPITAL LETTER GAMMA
211, -- LATIN CAPITAL LETTER IOTA .. LATIN CAPITAL LETTER IOTA
209, -- LATIN CAPITAL LETTER I WITH STROKE .. LATIN CAPITAL LETTER I WITH STROKE
1, -- LATIN CAPITAL LETTER K WITH HOOK .. LATIN CAPITAL LETTER K WITH HOOK
211, -- LATIN CAPITAL LETTER TURNED M .. LATIN CAPITAL LETTER TURNED M
213, -- LATIN CAPITAL LETTER N WITH LEFT HOOK .. LATIN CAPITAL LETTER N WITH LEFT HOOK
1, -- LATIN CAPITAL LETTER O WITH HORN .. LATIN CAPITAL LETTER O WITH HORN
1, -- LATIN CAPITAL LETTER OI .. LATIN CAPITAL LETTER OI
1, -- LATIN CAPITAL LETTER P WITH HOOK .. LATIN CAPITAL LETTER P WITH HOOK
1, -- LATIN CAPITAL LETTER TONE TWO .. LATIN CAPITAL LETTER TONE TWO
218, -- LATIN CAPITAL LETTER ESH .. LATIN CAPITAL LETTER ESH
1, -- LATIN CAPITAL LETTER T WITH HOOK .. LATIN CAPITAL LETTER T WITH HOOK
218, -- LATIN CAPITAL LETTER T WITH RETROFLEX HOOK .. LATIN CAPITAL LETTER T WITH RETROFLEX HOOK
1, -- LATIN CAPITAL LETTER U WITH HORN .. LATIN CAPITAL LETTER U WITH HORN
217, -- LATIN CAPITAL LETTER UPSILON .. LATIN CAPITAL LETTER V WITH HOOK
1, -- LATIN CAPITAL LETTER Y WITH HOOK .. LATIN CAPITAL LETTER Y WITH HOOK
1, -- LATIN CAPITAL LETTER Z WITH STROKE .. LATIN CAPITAL LETTER Z WITH STROKE
219, -- LATIN CAPITAL LETTER EZH .. LATIN CAPITAL LETTER EZH
1, -- LATIN CAPITAL LETTER EZH REVERSED .. LATIN CAPITAL LETTER EZH REVERSED
1, -- LATIN CAPITAL LETTER TONE FIVE .. LATIN CAPITAL LETTER TONE FIVE
2, -- LATIN CAPITAL LETTER DZ WITH CARON .. LATIN CAPITAL LETTER DZ WITH CARON
2, -- LATIN CAPITAL LETTER LJ .. LATIN CAPITAL LETTER LJ
2, -- LATIN CAPITAL LETTER NJ .. LATIN CAPITAL LETTER NJ
1, -- LATIN CAPITAL LETTER A WITH CARON .. LATIN CAPITAL LETTER A WITH CARON
1, -- LATIN CAPITAL LETTER I WITH CARON .. LATIN CAPITAL LETTER I WITH CARON
1, -- LATIN CAPITAL LETTER O WITH CARON .. LATIN CAPITAL LETTER O WITH CARON
1, -- LATIN CAPITAL LETTER U WITH CARON .. LATIN CAPITAL LETTER U WITH CARON
1, -- LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON
1, -- LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE
1, -- LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON .. LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON
1, -- LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE .. LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE
1, -- LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON
1, -- LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON
1, -- LATIN CAPITAL LETTER AE WITH MACRON .. LATIN CAPITAL LETTER AE WITH MACRON
1, -- LATIN CAPITAL LETTER G WITH STROKE .. LATIN CAPITAL LETTER G WITH STROKE
1, -- LATIN CAPITAL LETTER G WITH CARON .. LATIN CAPITAL LETTER G WITH CARON
1, -- LATIN CAPITAL LETTER K WITH CARON .. LATIN CAPITAL LETTER K WITH CARON
1, -- LATIN CAPITAL LETTER O WITH OGONEK .. LATIN CAPITAL LETTER O WITH OGONEK
1, -- LATIN CAPITAL LETTER O WITH OGONEK AND MACRON .. LATIN CAPITAL LETTER O WITH OGONEK AND MACRON
1, -- LATIN CAPITAL LETTER EZH WITH CARON .. LATIN CAPITAL LETTER EZH WITH CARON
2, -- LATIN CAPITAL LETTER DZ .. LATIN CAPITAL LETTER DZ
1, -- LATIN CAPITAL LETTER G WITH ACUTE .. LATIN CAPITAL LETTER G WITH ACUTE
1, -- LATIN CAPITAL LETTER N WITH GRAVE .. LATIN CAPITAL LETTER N WITH GRAVE
1, -- LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE .. LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE
1, -- LATIN CAPITAL LETTER AE WITH ACUTE .. LATIN CAPITAL LETTER AE WITH ACUTE
1, -- LATIN CAPITAL LETTER O WITH STROKE AND ACUTE .. LATIN CAPITAL LETTER O WITH STROKE AND ACUTE
1, -- LATIN CAPITAL LETTER A WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER A WITH DOUBLE GRAVE
1, -- LATIN CAPITAL LETTER A WITH INVERTED BREVE .. LATIN CAPITAL LETTER A WITH INVERTED BREVE
1, -- LATIN CAPITAL LETTER E WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER E WITH DOUBLE GRAVE
1, -- LATIN CAPITAL LETTER E WITH INVERTED BREVE .. LATIN CAPITAL LETTER E WITH INVERTED BREVE
1, -- LATIN CAPITAL LETTER I WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER I WITH DOUBLE GRAVE
1, -- LATIN CAPITAL LETTER I WITH INVERTED BREVE .. LATIN CAPITAL LETTER I WITH INVERTED BREVE
1, -- LATIN CAPITAL LETTER O WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER O WITH DOUBLE GRAVE
1, -- LATIN CAPITAL LETTER O WITH INVERTED BREVE .. LATIN CAPITAL LETTER O WITH INVERTED BREVE
1, -- LATIN CAPITAL LETTER R WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER R WITH DOUBLE GRAVE
1, -- LATIN CAPITAL LETTER R WITH INVERTED BREVE .. LATIN CAPITAL LETTER R WITH INVERTED BREVE
1, -- LATIN CAPITAL LETTER U WITH DOUBLE GRAVE .. LATIN CAPITAL LETTER U WITH DOUBLE GRAVE
1, -- LATIN CAPITAL LETTER U WITH INVERTED BREVE .. LATIN CAPITAL LETTER U WITH INVERTED BREVE
1, -- LATIN CAPITAL LETTER S WITH COMMA BELOW .. LATIN CAPITAL LETTER S WITH COMMA BELOW
1, -- LATIN CAPITAL LETTER T WITH COMMA BELOW .. LATIN CAPITAL LETTER T WITH COMMA BELOW
1, -- LATIN CAPITAL LETTER YOGH .. LATIN CAPITAL LETTER YOGH
1, -- LATIN CAPITAL LETTER H WITH CARON .. LATIN CAPITAL LETTER H WITH CARON
-130, -- LATIN CAPITAL LETTER N WITH LONG RIGHT LEG .. LATIN CAPITAL LETTER N WITH LONG RIGHT LEG
1, -- LATIN CAPITAL LETTER OU .. LATIN CAPITAL LETTER OU
1, -- LATIN CAPITAL LETTER Z WITH HOOK .. LATIN CAPITAL LETTER Z WITH HOOK
1, -- LATIN CAPITAL LETTER A WITH DOT ABOVE .. LATIN CAPITAL LETTER A WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER E WITH CEDILLA .. LATIN CAPITAL LETTER E WITH CEDILLA
1, -- LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON .. LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON
1, -- LATIN CAPITAL LETTER O WITH TILDE AND MACRON .. LATIN CAPITAL LETTER O WITH TILDE AND MACRON
1, -- LATIN CAPITAL LETTER O WITH DOT ABOVE .. LATIN CAPITAL LETTER O WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON .. LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON
1, -- LATIN CAPITAL LETTER Y WITH MACRON .. LATIN CAPITAL LETTER Y WITH MACRON
38, -- GREEK CAPITAL LETTER ALPHA WITH TONOS .. GREEK CAPITAL LETTER ALPHA WITH TONOS
37, -- GREEK CAPITAL LETTER EPSILON WITH TONOS .. GREEK CAPITAL LETTER IOTA WITH TONOS
64, -- GREEK CAPITAL LETTER OMICRON WITH TONOS .. GREEK CAPITAL LETTER OMICRON WITH TONOS
63, -- GREEK CAPITAL LETTER UPSILON WITH TONOS .. GREEK CAPITAL LETTER OMEGA WITH TONOS
32, -- GREEK CAPITAL LETTER ALPHA .. GREEK CAPITAL LETTER RHO
32, -- GREEK CAPITAL LETTER SIGMA .. GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
1, -- GREEK CAPITAL LETTER STIGMA .. GREEK CAPITAL LETTER STIGMA
1, -- GREEK CAPITAL LETTER DIGAMMA .. GREEK CAPITAL LETTER DIGAMMA
1, -- GREEK CAPITAL LETTER KOPPA .. GREEK CAPITAL LETTER KOPPA
1, -- GREEK CAPITAL LETTER SAMPI .. GREEK CAPITAL LETTER SAMPI
1, -- COPTIC CAPITAL LETTER SHEI .. COPTIC CAPITAL LETTER SHEI
1, -- COPTIC CAPITAL LETTER FEI .. COPTIC CAPITAL LETTER FEI
1, -- COPTIC CAPITAL LETTER KHEI .. COPTIC CAPITAL LETTER KHEI
1, -- COPTIC CAPITAL LETTER HORI .. COPTIC CAPITAL LETTER HORI
1, -- COPTIC CAPITAL LETTER GANGIA .. COPTIC CAPITAL LETTER GANGIA
1, -- COPTIC CAPITAL LETTER SHIMA .. COPTIC CAPITAL LETTER SHIMA
1, -- COPTIC CAPITAL LETTER DEI .. COPTIC CAPITAL LETTER DEI
1, -- GREEK CAPITAL LETTER SHO .. GREEK CAPITAL LETTER SHO
1, -- GREEK CAPITAL LETTER SAN .. GREEK CAPITAL LETTER SAN
80, -- CYRILLIC CAPITAL LETTER IE WITH GRAVE .. CYRILLIC CAPITAL LETTER DZHE
32, -- CYRILLIC CAPITAL LETTER A .. CYRILLIC CAPITAL LETTER YA
1, -- CYRILLIC CAPITAL LETTER OMEGA .. CYRILLIC CAPITAL LETTER OMEGA
1, -- CYRILLIC CAPITAL LETTER YAT .. CYRILLIC CAPITAL LETTER YAT
1, -- CYRILLIC CAPITAL LETTER IOTIFIED E .. CYRILLIC CAPITAL LETTER IOTIFIED E
1, -- CYRILLIC CAPITAL LETTER LITTLE YUS .. CYRILLIC CAPITAL LETTER LITTLE YUS
1, -- CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS .. CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS
1, -- CYRILLIC CAPITAL LETTER BIG YUS .. CYRILLIC CAPITAL LETTER BIG YUS
1, -- CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS .. CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS
1, -- CYRILLIC CAPITAL LETTER KSI .. CYRILLIC CAPITAL LETTER KSI
1, -- CYRILLIC CAPITAL LETTER PSI .. CYRILLIC CAPITAL LETTER PSI
1, -- CYRILLIC CAPITAL LETTER FITA .. CYRILLIC CAPITAL LETTER FITA
1, -- CYRILLIC CAPITAL LETTER IZHITSA .. CYRILLIC CAPITAL LETTER IZHITSA
1, -- CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT .. CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT
1, -- CYRILLIC CAPITAL LETTER UK .. CYRILLIC CAPITAL LETTER UK
1, -- CYRILLIC CAPITAL LETTER ROUND OMEGA .. CYRILLIC CAPITAL LETTER ROUND OMEGA
1, -- CYRILLIC CAPITAL LETTER OMEGA WITH TITLO .. CYRILLIC CAPITAL LETTER OMEGA WITH TITLO
1, -- CYRILLIC CAPITAL LETTER OT .. CYRILLIC CAPITAL LETTER OT
1, -- CYRILLIC CAPITAL LETTER KOPPA .. CYRILLIC CAPITAL LETTER KOPPA
1, -- CYRILLIC CAPITAL LETTER SHORT I WITH TAIL .. CYRILLIC CAPITAL LETTER SHORT I WITH TAIL
1, -- CYRILLIC CAPITAL LETTER SEMISOFT SIGN .. CYRILLIC CAPITAL LETTER SEMISOFT SIGN
1, -- CYRILLIC CAPITAL LETTER ER WITH TICK .. CYRILLIC CAPITAL LETTER ER WITH TICK
1, -- CYRILLIC CAPITAL LETTER GHE WITH UPTURN .. CYRILLIC CAPITAL LETTER GHE WITH UPTURN
1, -- CYRILLIC CAPITAL LETTER GHE WITH STROKE .. CYRILLIC CAPITAL LETTER GHE WITH STROKE
1, -- CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK
1, -- CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER ZE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ZE WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER KA WITH DESCENDER .. CYRILLIC CAPITAL LETTER KA WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE
1, -- CYRILLIC CAPITAL LETTER KA WITH STROKE .. CYRILLIC CAPITAL LETTER KA WITH STROKE
1, -- CYRILLIC CAPITAL LETTER BASHKIR KA .. CYRILLIC CAPITAL LETTER BASHKIR KA
1, -- CYRILLIC CAPITAL LETTER EN WITH DESCENDER .. CYRILLIC CAPITAL LETTER EN WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER EN GE .. CYRILLIC CAPITAL LETTER EN GE
1, -- CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK .. CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK
1, -- CYRILLIC CAPITAL LETTER ABKHASIAN HA .. CYRILLIC CAPITAL LETTER ABKHASIAN HA
1, -- CYRILLIC CAPITAL LETTER ES WITH DESCENDER .. CYRILLIC CAPITAL LETTER ES WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER TE WITH DESCENDER .. CYRILLIC CAPITAL LETTER TE WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER STRAIGHT U .. CYRILLIC CAPITAL LETTER STRAIGHT U
1, -- CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE .. CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE
1, -- CYRILLIC CAPITAL LETTER HA WITH DESCENDER .. CYRILLIC CAPITAL LETTER HA WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER TE TSE .. CYRILLIC CAPITAL LETTER TE TSE
1, -- CYRILLIC CAPITAL LETTER CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER CHE WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE .. CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE
1, -- CYRILLIC CAPITAL LETTER SHHA .. CYRILLIC CAPITAL LETTER SHHA
1, -- CYRILLIC CAPITAL LETTER ABKHASIAN CHE .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE
1, -- CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER .. CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER
1, -- CYRILLIC CAPITAL LETTER ZHE WITH BREVE .. CYRILLIC CAPITAL LETTER ZHE WITH BREVE
1, -- CYRILLIC CAPITAL LETTER KA WITH HOOK .. CYRILLIC CAPITAL LETTER KA WITH HOOK
1, -- CYRILLIC CAPITAL LETTER EL WITH TAIL .. CYRILLIC CAPITAL LETTER EL WITH TAIL
1, -- CYRILLIC CAPITAL LETTER EN WITH HOOK .. CYRILLIC CAPITAL LETTER EN WITH HOOK
1, -- CYRILLIC CAPITAL LETTER EN WITH TAIL .. CYRILLIC CAPITAL LETTER EN WITH TAIL
1, -- CYRILLIC CAPITAL LETTER KHAKASSIAN CHE .. CYRILLIC CAPITAL LETTER KHAKASSIAN CHE
1, -- CYRILLIC CAPITAL LETTER EM WITH TAIL .. CYRILLIC CAPITAL LETTER EM WITH TAIL
1, -- CYRILLIC CAPITAL LETTER A WITH BREVE .. CYRILLIC CAPITAL LETTER A WITH BREVE
1, -- CYRILLIC CAPITAL LETTER A WITH DIAERESIS .. CYRILLIC CAPITAL LETTER A WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER IE WITH BREVE .. CYRILLIC CAPITAL LETTER IE WITH BREVE
1, -- CYRILLIC CAPITAL LETTER SCHWA .. CYRILLIC CAPITAL LETTER SCHWA
1, -- CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS .. CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER ABKHASIAN DZE .. CYRILLIC CAPITAL LETTER ABKHASIAN DZE
1, -- CYRILLIC CAPITAL LETTER I WITH MACRON .. CYRILLIC CAPITAL LETTER I WITH MACRON
1, -- CYRILLIC CAPITAL LETTER I WITH DIAERESIS .. CYRILLIC CAPITAL LETTER I WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER O WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER BARRED O .. CYRILLIC CAPITAL LETTER BARRED O
1, -- CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS .. CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER E WITH DIAERESIS .. CYRILLIC CAPITAL LETTER E WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER U WITH MACRON .. CYRILLIC CAPITAL LETTER U WITH MACRON
1, -- CYRILLIC CAPITAL LETTER U WITH DIAERESIS .. CYRILLIC CAPITAL LETTER U WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE .. CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE
1, -- CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS .. CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS .. CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS
1, -- CYRILLIC CAPITAL LETTER KOMI DE .. CYRILLIC CAPITAL LETTER KOMI DE
1, -- CYRILLIC CAPITAL LETTER KOMI DJE .. CYRILLIC CAPITAL LETTER KOMI DJE
1, -- CYRILLIC CAPITAL LETTER KOMI ZJE .. CYRILLIC CAPITAL LETTER KOMI ZJE
1, -- CYRILLIC CAPITAL LETTER KOMI DZJE .. CYRILLIC CAPITAL LETTER KOMI DZJE
1, -- CYRILLIC CAPITAL LETTER KOMI LJE .. CYRILLIC CAPITAL LETTER KOMI LJE
1, -- CYRILLIC CAPITAL LETTER KOMI NJE .. CYRILLIC CAPITAL LETTER KOMI NJE
1, -- CYRILLIC CAPITAL LETTER KOMI SJE .. CYRILLIC CAPITAL LETTER KOMI SJE
1, -- CYRILLIC CAPITAL LETTER KOMI TJE .. CYRILLIC CAPITAL LETTER KOMI TJE
48, -- ARMENIAN CAPITAL LETTER AYB .. ARMENIAN CAPITAL LETTER FEH
48, -- GEORGIAN CAPITAL LETTER AN .. GEORGIAN CAPITAL LETTER HOE
1, -- LATIN CAPITAL LETTER A WITH RING BELOW .. LATIN CAPITAL LETTER A WITH RING BELOW
1, -- LATIN CAPITAL LETTER B WITH DOT ABOVE .. LATIN CAPITAL LETTER B WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER B WITH DOT BELOW .. LATIN CAPITAL LETTER B WITH DOT BELOW
1, -- LATIN CAPITAL LETTER B WITH LINE BELOW .. LATIN CAPITAL LETTER B WITH LINE BELOW
1, -- LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE .. LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE
1, -- LATIN CAPITAL LETTER D WITH DOT ABOVE .. LATIN CAPITAL LETTER D WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER D WITH DOT BELOW .. LATIN CAPITAL LETTER D WITH DOT BELOW
1, -- LATIN CAPITAL LETTER D WITH LINE BELOW .. LATIN CAPITAL LETTER D WITH LINE BELOW
1, -- LATIN CAPITAL LETTER D WITH CEDILLA .. LATIN CAPITAL LETTER D WITH CEDILLA
1, -- LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW
1, -- LATIN CAPITAL LETTER E WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER E WITH MACRON AND GRAVE
1, -- LATIN CAPITAL LETTER E WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER E WITH MACRON AND ACUTE
1, -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW
1, -- LATIN CAPITAL LETTER E WITH TILDE BELOW .. LATIN CAPITAL LETTER E WITH TILDE BELOW
1, -- LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE .. LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE
1, -- LATIN CAPITAL LETTER F WITH DOT ABOVE .. LATIN CAPITAL LETTER F WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER G WITH MACRON .. LATIN CAPITAL LETTER G WITH MACRON
1, -- LATIN CAPITAL LETTER H WITH DOT ABOVE .. LATIN CAPITAL LETTER H WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER H WITH DOT BELOW .. LATIN CAPITAL LETTER H WITH DOT BELOW
1, -- LATIN CAPITAL LETTER H WITH DIAERESIS .. LATIN CAPITAL LETTER H WITH DIAERESIS
1, -- LATIN CAPITAL LETTER H WITH CEDILLA .. LATIN CAPITAL LETTER H WITH CEDILLA
1, -- LATIN CAPITAL LETTER H WITH BREVE BELOW .. LATIN CAPITAL LETTER H WITH BREVE BELOW
1, -- LATIN CAPITAL LETTER I WITH TILDE BELOW .. LATIN CAPITAL LETTER I WITH TILDE BELOW
1, -- LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE .. LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE
1, -- LATIN CAPITAL LETTER K WITH ACUTE .. LATIN CAPITAL LETTER K WITH ACUTE
1, -- LATIN CAPITAL LETTER K WITH DOT BELOW .. LATIN CAPITAL LETTER K WITH DOT BELOW
1, -- LATIN CAPITAL LETTER K WITH LINE BELOW .. LATIN CAPITAL LETTER K WITH LINE BELOW
1, -- LATIN CAPITAL LETTER L WITH DOT BELOW .. LATIN CAPITAL LETTER L WITH DOT BELOW
1, -- LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON
1, -- LATIN CAPITAL LETTER L WITH LINE BELOW .. LATIN CAPITAL LETTER L WITH LINE BELOW
1, -- LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW
1, -- LATIN CAPITAL LETTER M WITH ACUTE .. LATIN CAPITAL LETTER M WITH ACUTE
1, -- LATIN CAPITAL LETTER M WITH DOT ABOVE .. LATIN CAPITAL LETTER M WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER M WITH DOT BELOW .. LATIN CAPITAL LETTER M WITH DOT BELOW
1, -- LATIN CAPITAL LETTER N WITH DOT ABOVE .. LATIN CAPITAL LETTER N WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER N WITH DOT BELOW .. LATIN CAPITAL LETTER N WITH DOT BELOW
1, -- LATIN CAPITAL LETTER N WITH LINE BELOW .. LATIN CAPITAL LETTER N WITH LINE BELOW
1, -- LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW
1, -- LATIN CAPITAL LETTER O WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER O WITH TILDE AND ACUTE
1, -- LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS .. LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS
1, -- LATIN CAPITAL LETTER O WITH MACRON AND GRAVE .. LATIN CAPITAL LETTER O WITH MACRON AND GRAVE
1, -- LATIN CAPITAL LETTER O WITH MACRON AND ACUTE .. LATIN CAPITAL LETTER O WITH MACRON AND ACUTE
1, -- LATIN CAPITAL LETTER P WITH ACUTE .. LATIN CAPITAL LETTER P WITH ACUTE
1, -- LATIN CAPITAL LETTER P WITH DOT ABOVE .. LATIN CAPITAL LETTER P WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER R WITH DOT ABOVE .. LATIN CAPITAL LETTER R WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER R WITH DOT BELOW .. LATIN CAPITAL LETTER R WITH DOT BELOW
1, -- LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON .. LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON
1, -- LATIN CAPITAL LETTER R WITH LINE BELOW .. LATIN CAPITAL LETTER R WITH LINE BELOW
1, -- LATIN CAPITAL LETTER S WITH DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER S WITH DOT BELOW .. LATIN CAPITAL LETTER S WITH DOT BELOW
1, -- LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE
1, -- LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE
1, -- LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE .. LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE
1, -- LATIN CAPITAL LETTER T WITH DOT ABOVE .. LATIN CAPITAL LETTER T WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER T WITH DOT BELOW .. LATIN CAPITAL LETTER T WITH DOT BELOW
1, -- LATIN CAPITAL LETTER T WITH LINE BELOW .. LATIN CAPITAL LETTER T WITH LINE BELOW
1, -- LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW
1, -- LATIN CAPITAL LETTER U WITH DIAERESIS BELOW .. LATIN CAPITAL LETTER U WITH DIAERESIS BELOW
1, -- LATIN CAPITAL LETTER U WITH TILDE BELOW .. LATIN CAPITAL LETTER U WITH TILDE BELOW
1, -- LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW .. LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW
1, -- LATIN CAPITAL LETTER U WITH TILDE AND ACUTE .. LATIN CAPITAL LETTER U WITH TILDE AND ACUTE
1, -- LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS .. LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS
1, -- LATIN CAPITAL LETTER V WITH TILDE .. LATIN CAPITAL LETTER V WITH TILDE
1, -- LATIN CAPITAL LETTER V WITH DOT BELOW .. LATIN CAPITAL LETTER V WITH DOT BELOW
1, -- LATIN CAPITAL LETTER W WITH GRAVE .. LATIN CAPITAL LETTER W WITH GRAVE
1, -- LATIN CAPITAL LETTER W WITH ACUTE .. LATIN CAPITAL LETTER W WITH ACUTE
1, -- LATIN CAPITAL LETTER W WITH DIAERESIS .. LATIN CAPITAL LETTER W WITH DIAERESIS
1, -- LATIN CAPITAL LETTER W WITH DOT ABOVE .. LATIN CAPITAL LETTER W WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER W WITH DOT BELOW .. LATIN CAPITAL LETTER W WITH DOT BELOW
1, -- LATIN CAPITAL LETTER X WITH DOT ABOVE .. LATIN CAPITAL LETTER X WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER X WITH DIAERESIS .. LATIN CAPITAL LETTER X WITH DIAERESIS
1, -- LATIN CAPITAL LETTER Y WITH DOT ABOVE .. LATIN CAPITAL LETTER Y WITH DOT ABOVE
1, -- LATIN CAPITAL LETTER Z WITH CIRCUMFLEX .. LATIN CAPITAL LETTER Z WITH CIRCUMFLEX
1, -- LATIN CAPITAL LETTER Z WITH DOT BELOW .. LATIN CAPITAL LETTER Z WITH DOT BELOW
1, -- LATIN CAPITAL LETTER Z WITH LINE BELOW .. LATIN CAPITAL LETTER Z WITH LINE BELOW
1, -- LATIN CAPITAL LETTER A WITH DOT BELOW .. LATIN CAPITAL LETTER A WITH DOT BELOW
1, -- LATIN CAPITAL LETTER A WITH HOOK ABOVE .. LATIN CAPITAL LETTER A WITH HOOK ABOVE
1, -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE
1, -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE
1, -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE
1, -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE
1, -- LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW
1, -- LATIN CAPITAL LETTER A WITH BREVE AND ACUTE .. LATIN CAPITAL LETTER A WITH BREVE AND ACUTE
1, -- LATIN CAPITAL LETTER A WITH BREVE AND GRAVE .. LATIN CAPITAL LETTER A WITH BREVE AND GRAVE
1, -- LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE .. LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE
1, -- LATIN CAPITAL LETTER A WITH BREVE AND TILDE .. LATIN CAPITAL LETTER A WITH BREVE AND TILDE
1, -- LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW .. LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW
1, -- LATIN CAPITAL LETTER E WITH DOT BELOW .. LATIN CAPITAL LETTER E WITH DOT BELOW
1, -- LATIN CAPITAL LETTER E WITH HOOK ABOVE .. LATIN CAPITAL LETTER E WITH HOOK ABOVE
1, -- LATIN CAPITAL LETTER E WITH TILDE .. LATIN CAPITAL LETTER E WITH TILDE
1, -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE
1, -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE
1, -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE
1, -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE
1, -- LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW
1, -- LATIN CAPITAL LETTER I WITH HOOK ABOVE .. LATIN CAPITAL LETTER I WITH HOOK ABOVE
1, -- LATIN CAPITAL LETTER I WITH DOT BELOW .. LATIN CAPITAL LETTER I WITH DOT BELOW
1, -- LATIN CAPITAL LETTER O WITH DOT BELOW .. LATIN CAPITAL LETTER O WITH DOT BELOW
1, -- LATIN CAPITAL LETTER O WITH HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HOOK ABOVE
1, -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE
1, -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE
1, -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE
1, -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE
1, -- LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW .. LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW
1, -- LATIN CAPITAL LETTER O WITH HORN AND ACUTE .. LATIN CAPITAL LETTER O WITH HORN AND ACUTE
1, -- LATIN CAPITAL LETTER O WITH HORN AND GRAVE .. LATIN CAPITAL LETTER O WITH HORN AND GRAVE
1, -- LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE
1, -- LATIN CAPITAL LETTER O WITH HORN AND TILDE .. LATIN CAPITAL LETTER O WITH HORN AND TILDE
1, -- LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW
1, -- LATIN CAPITAL LETTER U WITH DOT BELOW .. LATIN CAPITAL LETTER U WITH DOT BELOW
1, -- LATIN CAPITAL LETTER U WITH HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HOOK ABOVE
1, -- LATIN CAPITAL LETTER U WITH HORN AND ACUTE .. LATIN CAPITAL LETTER U WITH HORN AND ACUTE
1, -- LATIN CAPITAL LETTER U WITH HORN AND GRAVE .. LATIN CAPITAL LETTER U WITH HORN AND GRAVE
1, -- LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE .. LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE
1, -- LATIN CAPITAL LETTER U WITH HORN AND TILDE .. LATIN CAPITAL LETTER U WITH HORN AND TILDE
1, -- LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW .. LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW
1, -- LATIN CAPITAL LETTER Y WITH GRAVE .. LATIN CAPITAL LETTER Y WITH GRAVE
1, -- LATIN CAPITAL LETTER Y WITH DOT BELOW .. LATIN CAPITAL LETTER Y WITH DOT BELOW
1, -- LATIN CAPITAL LETTER Y WITH HOOK ABOVE .. LATIN CAPITAL LETTER Y WITH HOOK ABOVE
1, -- LATIN CAPITAL LETTER Y WITH TILDE .. LATIN CAPITAL LETTER Y WITH TILDE
-8, -- GREEK CAPITAL LETTER ALPHA WITH PSILI .. GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI
-8, -- GREEK CAPITAL LETTER EPSILON WITH PSILI .. GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA
-8, -- GREEK CAPITAL LETTER ETA WITH PSILI .. GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI
-8, -- GREEK CAPITAL LETTER IOTA WITH PSILI .. GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI
-8, -- GREEK CAPITAL LETTER OMICRON WITH PSILI .. GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA
-8, -- GREEK CAPITAL LETTER UPSILON WITH DASIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA
-8, -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA
-8, -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA
-8, -- GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI .. GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI
-8, -- GREEK CAPITAL LETTER OMEGA WITH PSILI .. GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI
-8, -- GREEK CAPITAL LETTER ALPHA WITH VRACHY .. GREEK CAPITAL LETTER ALPHA WITH MACRON
-74, -- GREEK CAPITAL LETTER ALPHA WITH VARIA .. GREEK CAPITAL LETTER ALPHA WITH OXIA
-86, -- GREEK CAPITAL LETTER EPSILON WITH VARIA .. GREEK CAPITAL LETTER ETA WITH OXIA
-8, -- GREEK CAPITAL LETTER IOTA WITH VRACHY .. GREEK CAPITAL LETTER IOTA WITH MACRON
-100, -- GREEK CAPITAL LETTER IOTA WITH VARIA .. GREEK CAPITAL LETTER IOTA WITH OXIA
-8, -- GREEK CAPITAL LETTER UPSILON WITH VRACHY .. GREEK CAPITAL LETTER UPSILON WITH MACRON
-112, -- GREEK CAPITAL LETTER UPSILON WITH VARIA .. GREEK CAPITAL LETTER UPSILON WITH OXIA
-7, -- GREEK CAPITAL LETTER RHO WITH DASIA .. GREEK CAPITAL LETTER RHO WITH DASIA
-128, -- GREEK CAPITAL LETTER OMICRON WITH VARIA .. GREEK CAPITAL LETTER OMICRON WITH OXIA
-126, -- GREEK CAPITAL LETTER OMEGA WITH VARIA .. GREEK CAPITAL LETTER OMEGA WITH OXIA
26, -- CIRCLED LATIN CAPITAL LETTER A .. CIRCLED LATIN CAPITAL LETTER Z
32, -- FULLWIDTH LATIN CAPITAL LETTER A .. FULLWIDTH LATIN CAPITAL LETTER Z
40, -- DESERET CAPITAL LETTER LONG I .. DESERET CAPITAL LETTER EW
32); -- TAG LATIN CAPITAL LETTER A .. TAG LATIN CAPITAL LETTER Z
-- The following is a list of the 10646 names for CAPITAL LETTER entries
-- that have no matching SMALL LETTER entry and are thus not folded
-- LATIN CAPITAL LETTER I WITH DOT ABOVE
-- LATIN CAPITAL LETTER AFRICAN D
-- LATIN CAPITAL LETTER O WITH MIDDLE TILDE
-- LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON
-- LATIN CAPITAL LETTER L WITH SMALL LETTER J
-- LATIN CAPITAL LETTER N WITH SMALL LETTER J
-- LATIN CAPITAL LETTER D WITH SMALL LETTER Z
-- LATIN CAPITAL LETTER HWAIR
-- LATIN CAPITAL LETTER WYNN
-- GREEK CAPITAL LETTER UPSILON HOOK
-- GREEK CAPITAL LETTER UPSILON HOOK TONOS
-- GREEK CAPITAL LETTER UPSILON HOOK DIAERESIS
-- GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI
-- GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI
-- GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI
-- The following array includes all characters in the Unicode table with
-- the category NFKC_Quick_Check=No, taken from
-- www.unicode.org/Public/UCD/latest/ucd/DerivedNormalizationProps.txt
UTF_32_NFKC_QC_No : constant UTF_32_Ranges := (
(16#00A0#, 16#00A0#), -- NO-BREAK SPACE
(16#00A8#, 16#00A8#), -- DIAERESIS
(16#00AA#, 16#00AA#), -- FEMININE ORDINAL INDICATOR
(16#00AF#, 16#00AF#), -- MACRON
(16#00B2#, 16#00B3#), -- SUPERSCRIPT TWO..SUPERSCRIPT THREE
(16#00B4#, 16#00B4#), -- ACUTE ACCENT
(16#00B5#, 16#00B5#), -- MICRO SIGN
(16#00B8#, 16#00B8#), -- CEDILLA
(16#00B9#, 16#00B9#), -- SUPERSCRIPT ONE
(16#00BA#, 16#00BA#), -- MASCULINE ORDINAL INDICATOR
(16#00BC#, 16#00BE#), -- VULGAR FRACTION ONE QUARTER..VULGAR FRACTION THREE QUARTERS
(16#0132#, 16#0133#), -- LATIN CAPITAL LIGATURE IJ..LATIN SMALL LIGATURE IJ
(16#013F#, 16#0140#), -- LATIN CAPITAL LETTER L WITH MIDDLE DOT..LATIN SMALL LETTER L WITH MIDDLE DOT
(16#0149#, 16#0149#), -- LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
(16#017F#, 16#017F#), -- LATIN SMALL LETTER LONG S
(16#01C4#, 16#01CC#), -- LATIN CAPITAL LETTER DZ WITH CARON..LATIN SMALL LETTER NJ
(16#01F1#, 16#01F3#), -- LATIN CAPITAL LETTER DZ..LATIN SMALL LETTER DZ
(16#02B0#, 16#02B8#), -- MODIFIER LETTER SMALL H..MODIFIER LETTER SMALL Y
(16#02D8#, 16#02DD#), -- BREVE..DOUBLE ACUTE ACCENT
(16#02E0#, 16#02E4#), -- MODIFIER LETTER SMALL GAMMA..MODIFIER LETTER SMALL REVERSED GLOTTAL STOP
(16#0340#, 16#0341#), -- COMBINING GRAVE TONE MARK..COMBINING ACUTE TONE MARK
(16#0343#, 16#0344#), -- COMBINING GREEK KORONIS..COMBINING GREEK DIALYTIKA TONOS
(16#0374#, 16#0374#), -- GREEK NUMERAL SIGN
(16#037A#, 16#037A#), -- GREEK YPOGEGRAMMENI
(16#037E#, 16#037E#), -- GREEK QUESTION MARK
(16#0384#, 16#0385#), -- GREEK TONOS..GREEK DIALYTIKA TONOS
(16#0387#, 16#0387#), -- GREEK ANO TELEIA
(16#03D0#, 16#03D6#), -- GREEK BETA SYMBOL..GREEK PI SYMBOL
(16#03F0#, 16#03F2#), -- GREEK KAPPA SYMBOL..GREEK LUNATE SIGMA SYMBOL
(16#03F4#, 16#03F5#), -- GREEK CAPITAL THETA SYMBOL..GREEK LUNATE EPSILON SYMBOL
(16#03F9#, 16#03F9#), -- GREEK CAPITAL LUNATE SIGMA SYMBOL
(16#0587#, 16#0587#), -- ARMENIAN SMALL LIGATURE ECH YIWN
(16#0675#, 16#0678#), -- ARABIC LETTER HIGH HAMZA ALEF..ARABIC LETTER HIGH HAMZA YEH
(16#0958#, 16#095F#), -- DEVANAGARI LETTER QA..DEVANAGARI LETTER YYA
(16#09DC#, 16#09DD#), -- BENGALI LETTER RRA..BENGALI LETTER RHA
(16#09DF#, 16#09DF#), -- BENGALI LETTER YYA
(16#0A33#, 16#0A33#), -- GURMUKHI LETTER LLA
(16#0A36#, 16#0A36#), -- GURMUKHI LETTER SHA
(16#0A59#, 16#0A5B#), -- GURMUKHI LETTER KHHA..GURMUKHI LETTER ZA
(16#0A5E#, 16#0A5E#), -- GURMUKHI LETTER FA
(16#0B5C#, 16#0B5D#), -- ORIYA LETTER RRA..ORIYA LETTER RHA
(16#0E33#, 16#0E33#), -- THAI CHARACTER SARA AM
(16#0EB3#, 16#0EB3#), -- LAO VOWEL SIGN AM
(16#0EDC#, 16#0EDD#), -- LAO HO NO..LAO HO MO
(16#0F0C#, 16#0F0C#), -- TIBETAN MARK DELIMITER TSHEG BSTAR
(16#0F43#, 16#0F43#), -- TIBETAN LETTER GHA
(16#0F4D#, 16#0F4D#), -- TIBETAN LETTER DDHA
(16#0F52#, 16#0F52#), -- TIBETAN LETTER DHA
(16#0F57#, 16#0F57#), -- TIBETAN LETTER BHA
(16#0F5C#, 16#0F5C#), -- TIBETAN LETTER DZHA
(16#0F69#, 16#0F69#), -- TIBETAN LETTER KSSA
(16#0F73#, 16#0F73#), -- TIBETAN VOWEL SIGN II
(16#0F75#, 16#0F79#), -- TIBETAN VOWEL SIGN UU..TIBETAN VOWEL SIGN VOCALIC LL
(16#0F81#, 16#0F81#), -- TIBETAN VOWEL SIGN REVERSED II
(16#0F93#, 16#0F93#), -- TIBETAN SUBJOINED LETTER GHA
(16#0F9D#, 16#0F9D#), -- TIBETAN SUBJOINED LETTER DDHA
(16#0FA2#, 16#0FA2#), -- TIBETAN SUBJOINED LETTER DHA
(16#0FA7#, 16#0FA7#), -- TIBETAN SUBJOINED LETTER BHA
(16#0FAC#, 16#0FAC#), -- TIBETAN SUBJOINED LETTER DZHA
(16#0FB9#, 16#0FB9#), -- TIBETAN SUBJOINED LETTER KSSA
(16#10FC#, 16#10FC#), -- MODIFIER LETTER GEORGIAN NAR
(16#1D2C#, 16#1D2E#), -- MODIFIER LETTER CAPITAL A..MODIFIER LETTER CAPITAL B
(16#1D30#, 16#1D3A#), -- MODIFIER LETTER CAPITAL D..MODIFIER LETTER CAPITAL N
(16#1D3C#, 16#1D4D#), -- MODIFIER LETTER CAPITAL O..MODIFIER LETTER SMALL G
(16#1D4F#, 16#1D6A#), -- MODIFIER LETTER SMALL K..GREEK SUBSCRIPT SMALL LETTER CHI
(16#1D78#, 16#1D78#), -- MODIFIER LETTER CYRILLIC EN
(16#1D9B#, 16#1DBF#), -- MODIFIER LETTER SMALL TURNED ALPHA..MODIFIER LETTER SMALL THETA
(16#1E9A#, 16#1E9B#), -- LATIN SMALL LETTER A WITH RIGHT HALF RING..LATIN SMALL LETTER LONG S WITH DOT ABOVE
(16#1F71#, 16#1F71#), -- GREEK SMALL LETTER ALPHA WITH OXIA
(16#1F73#, 16#1F73#), -- GREEK SMALL LETTER EPSILON WITH OXIA
(16#1F75#, 16#1F75#), -- GREEK SMALL LETTER ETA WITH OXIA
(16#1F77#, 16#1F77#), -- GREEK SMALL LETTER IOTA WITH OXIA
(16#1F79#, 16#1F79#), -- GREEK SMALL LETTER OMICRON WITH OXIA
(16#1F7B#, 16#1F7B#), -- GREEK SMALL LETTER UPSILON WITH OXIA
(16#1F7D#, 16#1F7D#), -- GREEK SMALL LETTER OMEGA WITH OXIA
(16#1FBB#, 16#1FBB#), -- GREEK CAPITAL LETTER ALPHA WITH OXIA
(16#1FBD#, 16#1FBD#), -- GREEK KORONIS
(16#1FBE#, 16#1FBE#), -- GREEK PROSGEGRAMMENI
(16#1FBF#, 16#1FC1#), -- GREEK PSILI..GREEK DIALYTIKA AND PERISPOMENI
(16#1FC9#, 16#1FC9#), -- GREEK CAPITAL LETTER EPSILON WITH OXIA
(16#1FCB#, 16#1FCB#), -- GREEK CAPITAL LETTER ETA WITH OXIA
(16#1FCD#, 16#1FCF#), -- GREEK PSILI AND VARIA..GREEK PSILI AND PERISPOMENI
(16#1FD3#, 16#1FD3#), -- GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
(16#1FDB#, 16#1FDB#), -- GREEK CAPITAL LETTER IOTA WITH OXIA
(16#1FDD#, 16#1FDF#), -- GREEK DASIA AND VARIA..GREEK DASIA AND PERISPOMENI
(16#1FE3#, 16#1FE3#), -- GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA
(16#1FEB#, 16#1FEB#), -- GREEK CAPITAL LETTER UPSILON WITH OXIA
(16#1FED#, 16#1FEF#), -- GREEK DIALYTIKA AND VARIA..GREEK VARIA
(16#1FF9#, 16#1FF9#), -- GREEK CAPITAL LETTER OMICRON WITH OXIA
(16#1FFB#, 16#1FFB#), -- GREEK CAPITAL LETTER OMEGA WITH OXIA
(16#1FFD#, 16#1FFE#), -- GREEK OXIA..GREEK DASIA
(16#2000#, 16#200A#), -- EN QUAD..HAIR SPACE
(16#2011#, 16#2011#), -- NON-BREAKING HYPHEN
(16#2017#, 16#2017#), -- DOUBLE LOW LINE
(16#2024#, 16#2026#), -- ONE DOT LEADER..HORIZONTAL ELLIPSIS
(16#202F#, 16#202F#), -- NARROW NO-BREAK SPACE
(16#2033#, 16#2034#), -- DOUBLE PRIME..TRIPLE PRIME
(16#2036#, 16#2037#), -- REVERSED DOUBLE PRIME..REVERSED TRIPLE PRIME
(16#203C#, 16#203C#), -- DOUBLE EXCLAMATION MARK
(16#203E#, 16#203E#), -- OVERLINE
(16#2047#, 16#2049#), -- DOUBLE QUESTION MARK..EXCLAMATION QUESTION MARK
(16#2057#, 16#2057#), -- QUADRUPLE PRIME
(16#205F#, 16#205F#), -- MEDIUM MATHEMATICAL SPACE
(16#2070#, 16#2070#), -- SUPERSCRIPT ZERO
(16#2071#, 16#2071#), -- SUPERSCRIPT LATIN SMALL LETTER I
(16#2074#, 16#2079#), -- SUPERSCRIPT FOUR..SUPERSCRIPT NINE
(16#207A#, 16#207C#), -- SUPERSCRIPT PLUS SIGN..SUPERSCRIPT EQUALS SIGN
(16#207D#, 16#207D#), -- SUPERSCRIPT LEFT PARENTHESIS
(16#207E#, 16#207E#), -- SUPERSCRIPT RIGHT PARENTHESIS
(16#207F#, 16#207F#), -- SUPERSCRIPT LATIN SMALL LETTER N
(16#2080#, 16#2089#), -- SUBSCRIPT ZERO..SUBSCRIPT NINE
(16#208A#, 16#208C#), -- SUBSCRIPT PLUS SIGN..SUBSCRIPT EQUALS SIGN
(16#208D#, 16#208D#), -- SUBSCRIPT LEFT PARENTHESIS
(16#208E#, 16#208E#), -- SUBSCRIPT RIGHT PARENTHESIS
(16#2090#, 16#209C#), -- LATIN SUBSCRIPT SMALL LETTER A..LATIN SUBSCRIPT SMALL LETTER T
(16#20A8#, 16#20A8#), -- RUPEE SIGN
(16#2100#, 16#2101#), -- ACCOUNT OF..ADDRESSED TO THE SUBJECT
(16#2102#, 16#2102#), -- DOUBLE-STRUCK CAPITAL C
(16#2103#, 16#2103#), -- DEGREE CELSIUS
(16#2105#, 16#2106#), -- CARE OF..CADA UNA
(16#2107#, 16#2107#), -- EULER CONSTANT
(16#2109#, 16#2109#), -- DEGREE FAHRENHEIT
(16#210A#, 16#2113#), -- SCRIPT SMALL G..SCRIPT SMALL L
(16#2115#, 16#2115#), -- DOUBLE-STRUCK CAPITAL N
(16#2116#, 16#2116#), -- NUMERO SIGN
(16#2119#, 16#211D#), -- DOUBLE-STRUCK CAPITAL P..DOUBLE-STRUCK CAPITAL R
(16#2120#, 16#2122#), -- SERVICE MARK..TRADE MARK SIGN
(16#2124#, 16#2124#), -- DOUBLE-STRUCK CAPITAL Z
(16#2126#, 16#2126#), -- OHM SIGN
(16#2128#, 16#2128#), -- BLACK-LETTER CAPITAL Z
(16#212A#, 16#212D#), -- KELVIN SIGN..BLACK-LETTER CAPITAL C
(16#212F#, 16#2131#), -- SCRIPT SMALL E..SCRIPT CAPITAL F
(16#2133#, 16#2134#), -- SCRIPT CAPITAL M..SCRIPT SMALL O
(16#2135#, 16#2138#), -- ALEF SYMBOL..DALET SYMBOL
(16#2139#, 16#2139#), -- INFORMATION SOURCE
(16#213B#, 16#213B#), -- FACSIMILE SIGN
(16#213C#, 16#213F#), -- DOUBLE-STRUCK SMALL PI..DOUBLE-STRUCK CAPITAL PI
(16#2140#, 16#2140#), -- DOUBLE-STRUCK N-ARY SUMMATION
(16#2145#, 16#2149#), -- DOUBLE-STRUCK ITALIC CAPITAL D..DOUBLE-STRUCK ITALIC SMALL J
(16#2150#, 16#215F#), -- VULGAR FRACTION ONE SEVENTH..FRACTION NUMERATOR ONE
(16#2160#, 16#217F#), -- ROMAN NUMERAL ONE..SMALL ROMAN NUMERAL ONE THOUSAND
(16#2189#, 16#2189#), -- VULGAR FRACTION ZERO THIRDS
(16#222C#, 16#222D#), -- DOUBLE INTEGRAL..TRIPLE INTEGRAL
(16#222F#, 16#2230#), -- SURFACE INTEGRAL..VOLUME INTEGRAL
(16#2329#, 16#2329#), -- LEFT-POINTING ANGLE BRACKET
(16#232A#, 16#232A#), -- RIGHT-POINTING ANGLE BRACKET
(16#2460#, 16#249B#), -- CIRCLED DIGIT ONE..NUMBER TWENTY FULL STOP
(16#249C#, 16#24E9#), -- PARENTHESIZED LATIN SMALL LETTER A..CIRCLED LATIN SMALL LETTER Z
(16#24EA#, 16#24EA#), -- CIRCLED DIGIT ZERO
(16#2A0C#, 16#2A0C#), -- QUADRUPLE INTEGRAL OPERATOR
(16#2A74#, 16#2A76#), -- DOUBLE COLON EQUAL..THREE CONSECUTIVE EQUALS SIGNS
(16#2ADC#, 16#2ADC#), -- FORKING
(16#2C7C#, 16#2C7D#), -- LATIN SUBSCRIPT SMALL LETTER J..MODIFIER LETTER CAPITAL V
(16#2D6F#, 16#2D6F#), -- TIFINAGH MODIFIER LETTER LABIALIZATION MARK
(16#2E9F#, 16#2E9F#), -- CJK RADICAL MOTHER
(16#2EF3#, 16#2EF3#), -- CJK RADICAL C-SIMPLIFIED TURTLE
(16#2F00#, 16#2FD5#), -- KANGXI RADICAL ONE..KANGXI RADICAL FLUTE
(16#3000#, 16#3000#), -- IDEOGRAPHIC SPACE
(16#3036#, 16#3036#), -- CIRCLED POSTAL MARK
(16#3038#, 16#303A#), -- HANGZHOU NUMERAL TEN..HANGZHOU NUMERAL THIRTY
(16#309B#, 16#309C#), -- KATAKANA-HIRAGANA VOICED SOUND MARK..KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK
(16#309F#, 16#309F#), -- HIRAGANA DIGRAPH YORI
(16#30FF#, 16#30FF#), -- KATAKANA DIGRAPH KOTO
(16#3131#, 16#318E#), -- HANGUL LETTER KIYEOK..HANGUL LETTER ARAEAE
(16#3192#, 16#3195#), -- IDEOGRAPHIC ANNOTATION ONE MARK..IDEOGRAPHIC ANNOTATION FOUR MARK
(16#3196#, 16#319F#), -- IDEOGRAPHIC ANNOTATION TOP MARK..IDEOGRAPHIC ANNOTATION MAN MARK
(16#3200#, 16#321E#), -- PARENTHESIZED HANGUL KIYEOK..PARENTHESIZED KOREAN CHARACTER O HU
(16#3220#, 16#3229#), -- PARENTHESIZED IDEOGRAPH ONE..PARENTHESIZED IDEOGRAPH TEN
(16#322A#, 16#3247#), -- PARENTHESIZED IDEOGRAPH MOON..CIRCLED IDEOGRAPH KOTO
(16#3250#, 16#3250#), -- PARTNERSHIP SIGN
(16#3251#, 16#325F#), -- CIRCLED NUMBER TWENTY ONE..CIRCLED NUMBER THIRTY FIVE
(16#3260#, 16#327E#), -- CIRCLED HANGUL KIYEOK..CIRCLED HANGUL IEUNG U
(16#3280#, 16#3289#), -- CIRCLED IDEOGRAPH ONE..CIRCLED IDEOGRAPH TEN
(16#328A#, 16#32B0#), -- CIRCLED IDEOGRAPH MOON..CIRCLED IDEOGRAPH NIGHT
(16#32B1#, 16#32BF#), -- CIRCLED NUMBER THIRTY SIX..CIRCLED NUMBER FIFTY
(16#32C0#, 16#33FF#), -- IDEOGRAPHIC TELEGRAPH SYMBOL FOR JANUARY..SQUARE GAL
(16#A69C#, 16#A69D#), -- MODIFIER LETTER CYRILLIC HARD SIGN..MODIFIER LETTER CYRILLIC SOFT SIGN
(16#A770#, 16#A770#), -- MODIFIER LETTER US
(16#A7F8#, 16#A7F9#), -- MODIFIER LETTER CAPITAL H WITH STROKE..MODIFIER LETTER SMALL LIGATURE OE
(16#AB5C#, 16#AB5F#), -- MODIFIER LETTER SMALL HENG..MODIFIER LETTER SMALL U WITH LEFT HOOK
(16#AB69#, 16#AB69#), -- MODIFIER LETTER SMALL TURNED W
(16#F900#, 16#FA0D#), -- CJK COMPATIBILITY IDEOGRAPH-F900..CJK COMPATIBILITY IDEOGRAPH-FA0D
(16#FA10#, 16#FA10#), -- CJK COMPATIBILITY IDEOGRAPH-FA10
(16#FA12#, 16#FA12#), -- CJK COMPATIBILITY IDEOGRAPH-FA12
(16#FA15#, 16#FA1E#), -- CJK COMPATIBILITY IDEOGRAPH-FA15..CJK COMPATIBILITY IDEOGRAPH-FA1E
(16#FA20#, 16#FA20#), -- CJK COMPATIBILITY IDEOGRAPH-FA20
(16#FA22#, 16#FA22#), -- CJK COMPATIBILITY IDEOGRAPH-FA22
(16#FA25#, 16#FA26#), -- CJK COMPATIBILITY IDEOGRAPH-FA25..CJK COMPATIBILITY IDEOGRAPH-FA26
(16#FA2A#, 16#FA6D#), -- CJK COMPATIBILITY IDEOGRAPH-FA2A..CJK COMPATIBILITY IDEOGRAPH-FA6D
(16#FA70#, 16#FAD9#), -- CJK COMPATIBILITY IDEOGRAPH-FA70..CJK COMPATIBILITY IDEOGRAPH-FAD9
(16#FB00#, 16#FB06#), -- LATIN SMALL LIGATURE FF..LATIN SMALL LIGATURE ST
(16#FB13#, 16#FB17#), -- ARMENIAN SMALL LIGATURE MEN NOW..ARMENIAN SMALL LIGATURE MEN XEH
(16#FB1D#, 16#FB1D#), -- HEBREW LETTER YOD WITH HIRIQ
(16#FB1F#, 16#FB28#), -- HEBREW LIGATURE YIDDISH YOD YOD PATAH..HEBREW LETTER WIDE TAV
(16#FB29#, 16#FB29#), -- HEBREW LETTER ALTERNATIVE PLUS SIGN
(16#FB2A#, 16#FB36#), -- HEBREW LETTER SHIN WITH SHIN DOT..HEBREW LETTER ZAYIN WITH DAGESH
(16#FB38#, 16#FB3C#), -- HEBREW LETTER TET WITH DAGESH..HEBREW LETTER LAMED WITH DAGESH
(16#FB3E#, 16#FB3E#), -- HEBREW LETTER MEM WITH DAGESH
(16#FB40#, 16#FB41#), -- HEBREW LETTER NUN WITH DAGESH..HEBREW LETTER SAMEKH WITH DAGESH
(16#FB43#, 16#FB44#), -- HEBREW LETTER FINAL PE WITH DAGESH..HEBREW LETTER PE WITH DAGESH
(16#FB46#, 16#FBB1#), -- HEBREW LETTER TSADI WITH DAGESH..ARABIC LETTER YEH BARREE WITH HAMZA ABOVE FINAL FORM
(16#FBD3#, 16#FD3D#), -- ARABIC LETTER NG ISOLATED FORM..ARABIC LIGATURE ALEF WITH FATHATAN ISOLATED FORM
(16#FD50#, 16#FD8F#), -- ARABIC LIGATURE TEH WITH JEEM WITH MEEM INITIAL FORM..ARABIC LIGATURE MEEM WITH KHAH WITH MEEM INITIAL FORM
(16#FD92#, 16#FDC7#), -- ARABIC LIGATURE MEEM WITH JEEM WITH KHAH INITIAL FORM..ARABIC LIGATURE NOON WITH JEEM WITH YEH FINAL FORM
(16#FDF0#, 16#FDFB#), -- ARABIC LIGATURE SALLA USED AS KORANIC STOP SIGN ISOLATED FORM..ARABIC LIGATURE JALLAJALALOUHOU
(16#FDFC#, 16#FDFC#), -- RIAL SIGN
(16#FE10#, 16#FE16#), -- PRESENTATION FORM FOR VERTICAL COMMA..PRESENTATION FORM FOR VERTICAL QUESTION MARK
(16#FE17#, 16#FE17#), -- PRESENTATION FORM FOR VERTICAL LEFT WHITE LENTICULAR BRACKET
(16#FE18#, 16#FE18#), -- PRESENTATION FORM FOR VERTICAL RIGHT WHITE LENTICULAR BRAKCET
(16#FE19#, 16#FE19#), -- PRESENTATION FORM FOR VERTICAL HORIZONTAL ELLIPSIS
(16#FE30#, 16#FE30#), -- PRESENTATION FORM FOR VERTICAL TWO DOT LEADER
(16#FE31#, 16#FE32#), -- PRESENTATION FORM FOR VERTICAL EM DASH..PRESENTATION FORM FOR VERTICAL EN DASH
(16#FE33#, 16#FE34#), -- PRESENTATION FORM FOR VERTICAL LOW LINE..PRESENTATION FORM FOR VERTICAL WAVY LOW LINE
(16#FE35#, 16#FE35#), -- PRESENTATION FORM FOR VERTICAL LEFT PARENTHESIS
(16#FE36#, 16#FE36#), -- PRESENTATION FORM FOR VERTICAL RIGHT PARENTHESIS
(16#FE37#, 16#FE37#), -- PRESENTATION FORM FOR VERTICAL LEFT CURLY BRACKET
(16#FE38#, 16#FE38#), -- PRESENTATION FORM FOR VERTICAL RIGHT CURLY BRACKET
(16#FE39#, 16#FE39#), -- PRESENTATION FORM FOR VERTICAL LEFT TORTOISE SHELL BRACKET
(16#FE3A#, 16#FE3A#), -- PRESENTATION FORM FOR VERTICAL RIGHT TORTOISE SHELL BRACKET
(16#FE3B#, 16#FE3B#), -- PRESENTATION FORM FOR VERTICAL LEFT BLACK LENTICULAR BRACKET
(16#FE3C#, 16#FE3C#), -- PRESENTATION FORM FOR VERTICAL RIGHT BLACK LENTICULAR BRACKET
(16#FE3D#, 16#FE3D#), -- PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET
(16#FE3E#, 16#FE3E#), -- PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET
(16#FE3F#, 16#FE3F#), -- PRESENTATION FORM FOR VERTICAL LEFT ANGLE BRACKET
(16#FE40#, 16#FE40#), -- PRESENTATION FORM FOR VERTICAL RIGHT ANGLE BRACKET
(16#FE41#, 16#FE41#), -- PRESENTATION FORM FOR VERTICAL LEFT CORNER BRACKET
(16#FE42#, 16#FE42#), -- PRESENTATION FORM FOR VERTICAL RIGHT CORNER BRACKET
(16#FE43#, 16#FE43#), -- PRESENTATION FORM FOR VERTICAL LEFT WHITE CORNER BRACKET
(16#FE44#, 16#FE44#), -- PRESENTATION FORM FOR VERTICAL RIGHT WHITE CORNER BRACKET
(16#FE47#, 16#FE47#), -- PRESENTATION FORM FOR VERTICAL LEFT SQUARE BRACKET
(16#FE48#, 16#FE48#), -- PRESENTATION FORM FOR VERTICAL RIGHT SQUARE BRACKET
(16#FE49#, 16#FE4C#), -- DASHED OVERLINE..DOUBLE WAVY OVERLINE
(16#FE4D#, 16#FE4F#), -- DASHED LOW LINE..WAVY LOW LINE
(16#FE50#, 16#FE52#), -- SMALL COMMA..SMALL FULL STOP
(16#FE54#, 16#FE57#), -- SMALL SEMICOLON..SMALL EXCLAMATION MARK
(16#FE58#, 16#FE58#), -- SMALL EM DASH
(16#FE59#, 16#FE59#), -- SMALL LEFT PARENTHESIS
(16#FE5A#, 16#FE5A#), -- SMALL RIGHT PARENTHESIS
(16#FE5B#, 16#FE5B#), -- SMALL LEFT CURLY BRACKET
(16#FE5C#, 16#FE5C#), -- SMALL RIGHT CURLY BRACKET
(16#FE5D#, 16#FE5D#), -- SMALL LEFT TORTOISE SHELL BRACKET
(16#FE5E#, 16#FE5E#), -- SMALL RIGHT TORTOISE SHELL BRACKET
(16#FE5F#, 16#FE61#), -- SMALL NUMBER SIGN..SMALL ASTERISK
(16#FE62#, 16#FE62#), -- SMALL PLUS SIGN
(16#FE63#, 16#FE63#), -- SMALL HYPHEN-MINUS
(16#FE64#, 16#FE66#), -- SMALL LESS-THAN SIGN..SMALL EQUALS SIGN
(16#FE68#, 16#FE68#), -- SMALL REVERSE SOLIDUS
(16#FE69#, 16#FE69#), -- SMALL DOLLAR SIGN
(16#FE6A#, 16#FE6B#), -- SMALL PERCENT SIGN..SMALL COMMERCIAL AT
(16#FE70#, 16#FE72#), -- ARABIC FATHATAN ISOLATED FORM..ARABIC DAMMATAN ISOLATED FORM
(16#FE74#, 16#FE74#), -- ARABIC KASRATAN ISOLATED FORM
(16#FE76#, 16#FEFC#), -- ARABIC FATHA ISOLATED FORM..ARABIC LIGATURE LAM WITH ALEF FINAL FORM
(16#FF01#, 16#FF03#), -- FULLWIDTH EXCLAMATION MARK..FULLWIDTH NUMBER SIGN
(16#FF04#, 16#FF04#), -- FULLWIDTH DOLLAR SIGN
(16#FF05#, 16#FF07#), -- FULLWIDTH PERCENT SIGN..FULLWIDTH APOSTROPHE
(16#FF08#, 16#FF08#), -- FULLWIDTH LEFT PARENTHESIS
(16#FF09#, 16#FF09#), -- FULLWIDTH RIGHT PARENTHESIS
(16#FF0A#, 16#FF0A#), -- FULLWIDTH ASTERISK
(16#FF0B#, 16#FF0B#), -- FULLWIDTH PLUS SIGN
(16#FF0C#, 16#FF0C#), -- FULLWIDTH COMMA
(16#FF0D#, 16#FF0D#), -- FULLWIDTH HYPHEN-MINUS
(16#FF0E#, 16#FF0F#), -- FULLWIDTH FULL STOP..FULLWIDTH SOLIDUS
(16#FF10#, 16#FF19#), -- FULLWIDTH DIGIT ZERO..FULLWIDTH DIGIT NINE
(16#FF1A#, 16#FF1B#), -- FULLWIDTH COLON..FULLWIDTH SEMICOLON
(16#FF1C#, 16#FF1E#), -- FULLWIDTH LESS-THAN SIGN..FULLWIDTH GREATER-THAN SIGN
(16#FF1F#, 16#FF20#), -- FULLWIDTH QUESTION MARK..FULLWIDTH COMMERCIAL AT
(16#FF21#, 16#FF3A#), -- FULLWIDTH LATIN CAPITAL LETTER A..FULLWIDTH LATIN CAPITAL LETTER Z
(16#FF3B#, 16#FF3B#), -- FULLWIDTH LEFT SQUARE BRACKET
(16#FF3C#, 16#FF3C#), -- FULLWIDTH REVERSE SOLIDUS
(16#FF3D#, 16#FF3D#), -- FULLWIDTH RIGHT SQUARE BRACKET
(16#FF3E#, 16#FF3E#), -- FULLWIDTH CIRCUMFLEX ACCENT
(16#FF3F#, 16#FF3F#), -- FULLWIDTH LOW LINE
(16#FF40#, 16#FF40#), -- FULLWIDTH GRAVE ACCENT
(16#FF41#, 16#FF5A#), -- FULLWIDTH LATIN SMALL LETTER A..FULLWIDTH LATIN SMALL LETTER Z
(16#FF5B#, 16#FF5B#), -- FULLWIDTH LEFT CURLY BRACKET
(16#FF5C#, 16#FF5C#), -- FULLWIDTH VERTICAL LINE
(16#FF5D#, 16#FF5D#), -- FULLWIDTH RIGHT CURLY BRACKET
(16#FF5E#, 16#FF5E#), -- FULLWIDTH TILDE
(16#FF5F#, 16#FF5F#), -- FULLWIDTH LEFT WHITE PARENTHESIS
(16#FF60#, 16#FF60#), -- FULLWIDTH RIGHT WHITE PARENTHESIS
(16#FF61#, 16#FF61#), -- HALFWIDTH IDEOGRAPHIC FULL STOP
(16#FF62#, 16#FF62#), -- HALFWIDTH LEFT CORNER BRACKET
(16#FF63#, 16#FF63#), -- HALFWIDTH RIGHT CORNER BRACKET
(16#FF64#, 16#FF65#), -- HALFWIDTH IDEOGRAPHIC COMMA..HALFWIDTH KATAKANA MIDDLE DOT
(16#FF66#, 16#FF6F#), -- HALFWIDTH KATAKANA LETTER WO..HALFWIDTH KATAKANA LETTER SMALL TU
(16#FF70#, 16#FF70#), -- HALFWIDTH KATAKANA-HIRAGANA PROLONGED SOUND MARK
(16#FF71#, 16#FF9D#), -- HALFWIDTH KATAKANA LETTER A..HALFWIDTH KATAKANA LETTER N
(16#FF9E#, 16#FF9F#), -- HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK
(16#FFA0#, 16#FFBE#), -- HALFWIDTH HANGUL FILLER..HALFWIDTH HANGUL LETTER HIEUH
(16#FFC2#, 16#FFC7#), -- HALFWIDTH HANGUL LETTER A..HALFWIDTH HANGUL LETTER E
(16#FFCA#, 16#FFCF#), -- HALFWIDTH HANGUL LETTER YEO..HALFWIDTH HANGUL LETTER OE
(16#FFD2#, 16#FFD7#), -- HALFWIDTH HANGUL LETTER YO..HALFWIDTH HANGUL LETTER YU
(16#FFDA#, 16#FFDC#), -- HALFWIDTH HANGUL LETTER EU..HALFWIDTH HANGUL LETTER I
(16#FFE0#, 16#FFE1#), -- FULLWIDTH CENT SIGN..FULLWIDTH POUND SIGN
(16#FFE2#, 16#FFE2#), -- FULLWIDTH NOT SIGN
(16#FFE3#, 16#FFE3#), -- FULLWIDTH MACRON
(16#FFE4#, 16#FFE4#), -- FULLWIDTH BROKEN BAR
(16#FFE5#, 16#FFE6#), -- FULLWIDTH YEN SIGN..FULLWIDTH WON SIGN
(16#FFE8#, 16#FFE8#), -- HALFWIDTH FORMS LIGHT VERTICAL
(16#FFE9#, 16#FFEC#), -- HALFWIDTH LEFTWARDS ARROW..HALFWIDTH DOWNWARDS ARROW
(16#FFED#, 16#FFEE#), -- HALFWIDTH BLACK SQUARE..HALFWIDTH WHITE CIRCLE
(16#1D15E#, 16#1D164#), -- MUSICAL SYMBOL HALF NOTE..MUSICAL SYMBOL ONE HUNDRED TWENTY-EIGHTH NOTE
(16#1D1BB#, 16#1D1C0#), -- MUSICAL SYMBOL MINIMA..MUSICAL SYMBOL FUSA BLACK
(16#1D400#, 16#1D454#), -- MATHEMATICAL BOLD CAPITAL A..MATHEMATICAL ITALIC SMALL G
(16#1D456#, 16#1D49C#), -- MATHEMATICAL ITALIC SMALL I..MATHEMATICAL SCRIPT CAPITAL A
(16#1D49E#, 16#1D49F#), -- MATHEMATICAL SCRIPT CAPITAL C..MATHEMATICAL SCRIPT CAPITAL D
(16#1D4A2#, 16#1D4A2#), -- MATHEMATICAL SCRIPT CAPITAL G
(16#1D4A5#, 16#1D4A6#), -- MATHEMATICAL SCRIPT CAPITAL J..MATHEMATICAL SCRIPT CAPITAL K
(16#1D4A9#, 16#1D4AC#), -- MATHEMATICAL SCRIPT CAPITAL N..MATHEMATICAL SCRIPT CAPITAL Q
(16#1D4AE#, 16#1D4B9#), -- MATHEMATICAL SCRIPT CAPITAL S..MATHEMATICAL SCRIPT SMALL D
(16#1D4BB#, 16#1D4BB#), -- MATHEMATICAL SCRIPT SMALL F
(16#1D4BD#, 16#1D4C3#), -- MATHEMATICAL SCRIPT SMALL H..MATHEMATICAL SCRIPT SMALL N
(16#1D4C5#, 16#1D505#), -- MATHEMATICAL SCRIPT SMALL P..MATHEMATICAL FRAKTUR CAPITAL B
(16#1D507#, 16#1D50A#), -- MATHEMATICAL FRAKTUR CAPITAL D..MATHEMATICAL FRAKTUR CAPITAL G
(16#1D50D#, 16#1D514#), -- MATHEMATICAL FRAKTUR CAPITAL J..MATHEMATICAL FRAKTUR CAPITAL Q
(16#1D516#, 16#1D51C#), -- MATHEMATICAL FRAKTUR CAPITAL S..MATHEMATICAL FRAKTUR CAPITAL Y
(16#1D51E#, 16#1D539#), -- MATHEMATICAL FRAKTUR SMALL A..MATHEMATICAL DOUBLE-STRUCK CAPITAL B
(16#1D53B#, 16#1D53E#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL D..MATHEMATICAL DOUBLE-STRUCK CAPITAL G
(16#1D540#, 16#1D544#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL I..MATHEMATICAL DOUBLE-STRUCK CAPITAL M
(16#1D546#, 16#1D546#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL O
(16#1D54A#, 16#1D550#), -- MATHEMATICAL DOUBLE-STRUCK CAPITAL S..MATHEMATICAL DOUBLE-STRUCK CAPITAL Y
(16#1D552#, 16#1D6A5#), -- MATHEMATICAL DOUBLE-STRUCK SMALL A..MATHEMATICAL ITALIC SMALL DOTLESS J
(16#1D6A8#, 16#1D6C0#), -- MATHEMATICAL BOLD CAPITAL ALPHA..MATHEMATICAL BOLD CAPITAL OMEGA
(16#1D6C1#, 16#1D6C1#), -- MATHEMATICAL BOLD NABLA
(16#1D6C2#, 16#1D6DA#), -- MATHEMATICAL BOLD SMALL ALPHA..MATHEMATICAL BOLD SMALL OMEGA
(16#1D6DB#, 16#1D6DB#), -- MATHEMATICAL BOLD PARTIAL DIFFERENTIAL
(16#1D6DC#, 16#1D6FA#), -- MATHEMATICAL BOLD EPSILON SYMBOL..MATHEMATICAL ITALIC CAPITAL OMEGA
(16#1D6FB#, 16#1D6FB#), -- MATHEMATICAL ITALIC NABLA
(16#1D6FC#, 16#1D714#), -- MATHEMATICAL ITALIC SMALL ALPHA..MATHEMATICAL ITALIC SMALL OMEGA
(16#1D715#, 16#1D715#), -- MATHEMATICAL ITALIC PARTIAL DIFFERENTIAL
(16#1D716#, 16#1D734#), -- MATHEMATICAL ITALIC EPSILON SYMBOL..MATHEMATICAL BOLD ITALIC CAPITAL OMEGA
(16#1D735#, 16#1D735#), -- MATHEMATICAL BOLD ITALIC NABLA
(16#1D736#, 16#1D74E#), -- MATHEMATICAL BOLD ITALIC SMALL ALPHA..MATHEMATICAL BOLD ITALIC SMALL OMEGA
(16#1D74F#, 16#1D74F#), -- MATHEMATICAL BOLD ITALIC PARTIAL DIFFERENTIAL
(16#1D750#, 16#1D76E#), -- MATHEMATICAL BOLD ITALIC EPSILON SYMBOL..MATHEMATICAL SANS-SERIF BOLD CAPITAL OMEGA
(16#1D76F#, 16#1D76F#), -- MATHEMATICAL SANS-SERIF BOLD NABLA
(16#1D770#, 16#1D788#), -- MATHEMATICAL SANS-SERIF BOLD SMALL ALPHA..MATHEMATICAL SANS-SERIF BOLD SMALL OMEGA
(16#1D789#, 16#1D789#), -- MATHEMATICAL SANS-SERIF BOLD PARTIAL DIFFERENTIAL
(16#1D78A#, 16#1D7A8#), -- MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL..MATHEMATICAL SANS-SERIF BOLD ITALIC CAPITAL OMEGA
(16#1D7A9#, 16#1D7A9#), -- MATHEMATICAL SANS-SERIF BOLD ITALIC NABLA
(16#1D7AA#, 16#1D7C2#), -- MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL ALPHA..MATHEMATICAL SANS-SERIF BOLD ITALIC SMALL OMEGA
(16#1D7C3#, 16#1D7C3#), -- MATHEMATICAL SANS-SERIF BOLD ITALIC PARTIAL DIFFERENTIAL
(16#1D7C4#, 16#1D7CB#), -- MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL..MATHEMATICAL BOLD SMALL DIGAMMA
(16#1D7CE#, 16#1D7FF#), -- MATHEMATICAL BOLD DIGIT ZERO..MATHEMATICAL MONOSPACE DIGIT NINE
(16#1EE00#, 16#1EE03#), -- ARABIC MATHEMATICAL ALEF..ARABIC MATHEMATICAL DAL
(16#1EE05#, 16#1EE1F#), -- ARABIC MATHEMATICAL WAW..ARABIC MATHEMATICAL DOTLESS QAF
(16#1EE21#, 16#1EE22#), -- ARABIC MATHEMATICAL INITIAL BEH..ARABIC MATHEMATICAL INITIAL JEEM
(16#1EE24#, 16#1EE24#), -- ARABIC MATHEMATICAL INITIAL HEH
(16#1EE27#, 16#1EE27#), -- ARABIC MATHEMATICAL INITIAL HAH
(16#1EE29#, 16#1EE32#), -- ARABIC MATHEMATICAL INITIAL YEH..ARABIC MATHEMATICAL INITIAL QAF
(16#1EE34#, 16#1EE37#), -- ARABIC MATHEMATICAL INITIAL SHEEN..ARABIC MATHEMATICAL INITIAL KHAH
(16#1EE39#, 16#1EE39#), -- ARABIC MATHEMATICAL INITIAL DAD
(16#1EE3B#, 16#1EE3B#), -- ARABIC MATHEMATICAL INITIAL GHAIN
(16#1EE42#, 16#1EE42#), -- ARABIC MATHEMATICAL TAILED JEEM
(16#1EE47#, 16#1EE47#), -- ARABIC MATHEMATICAL TAILED HAH
(16#1EE49#, 16#1EE49#), -- ARABIC MATHEMATICAL TAILED YEH
(16#1EE4B#, 16#1EE4B#), -- ARABIC MATHEMATICAL TAILED LAM
(16#1EE4D#, 16#1EE4F#), -- ARABIC MATHEMATICAL TAILED NOON..ARABIC MATHEMATICAL TAILED AIN
(16#1EE51#, 16#1EE52#), -- ARABIC MATHEMATICAL TAILED SAD..ARABIC MATHEMATICAL TAILED QAF
(16#1EE54#, 16#1EE54#), -- ARABIC MATHEMATICAL TAILED SHEEN
(16#1EE57#, 16#1EE57#), -- ARABIC MATHEMATICAL TAILED KHAH
(16#1EE59#, 16#1EE59#), -- ARABIC MATHEMATICAL TAILED DAD
(16#1EE5B#, 16#1EE5B#), -- ARABIC MATHEMATICAL TAILED GHAIN
(16#1EE5D#, 16#1EE5D#), -- ARABIC MATHEMATICAL TAILED DOTLESS NOON
(16#1EE5F#, 16#1EE5F#), -- ARABIC MATHEMATICAL TAILED DOTLESS QAF
(16#1EE61#, 16#1EE62#), -- ARABIC MATHEMATICAL STRETCHED BEH..ARABIC MATHEMATICAL STRETCHED JEEM
(16#1EE64#, 16#1EE64#), -- ARABIC MATHEMATICAL STRETCHED HEH
(16#1EE67#, 16#1EE6A#), -- ARABIC MATHEMATICAL STRETCHED HAH..ARABIC MATHEMATICAL STRETCHED KAF
(16#1EE6C#, 16#1EE72#), -- ARABIC MATHEMATICAL STRETCHED MEEM..ARABIC MATHEMATICAL STRETCHED QAF
(16#1EE74#, 16#1EE77#), -- ARABIC MATHEMATICAL STRETCHED SHEEN..ARABIC MATHEMATICAL STRETCHED KHAH
(16#1EE79#, 16#1EE7C#), -- ARABIC MATHEMATICAL STRETCHED DAD..ARABIC MATHEMATICAL STRETCHED DOTLESS BEH
(16#1EE7E#, 16#1EE7E#), -- ARABIC MATHEMATICAL STRETCHED DOTLESS FEH
(16#1EE80#, 16#1EE89#), -- ARABIC MATHEMATICAL LOOPED ALEF..ARABIC MATHEMATICAL LOOPED YEH
(16#1EE8B#, 16#1EE9B#), -- ARABIC MATHEMATICAL LOOPED LAM..ARABIC MATHEMATICAL LOOPED GHAIN
(16#1EEA1#, 16#1EEA3#), -- ARABIC MATHEMATICAL DOUBLE-STRUCK BEH..ARABIC MATHEMATICAL DOUBLE-STRUCK DAL
(16#1EEA5#, 16#1EEA9#), -- ARABIC MATHEMATICAL DOUBLE-STRUCK WAW..ARABIC MATHEMATICAL DOUBLE-STRUCK YEH
(16#1EEAB#, 16#1EEBB#), -- ARABIC MATHEMATICAL DOUBLE-STRUCK LAM..ARABIC MATHEMATICAL DOUBLE-STRUCK GHAIN
(16#1F100#, 16#1F10A#), -- DIGIT ZERO FULL STOP..DIGIT NINE COMMA
(16#1F110#, 16#1F12E#), -- PARENTHESIZED LATIN CAPITAL LETTER A..CIRCLED WZ
(16#1F130#, 16#1F14F#), -- SQUARED LATIN CAPITAL LETTER A..SQUARED WC
(16#1F16A#, 16#1F16C#), -- RAISED MC SIGN..RAISED MR SIGN
(16#1F190#, 16#1F190#), -- SQUARE DJ
(16#1F200#, 16#1F202#), -- SQUARE HIRAGANA HOKA..SQUARED KATAKANA SA
(16#1F210#, 16#1F23B#), -- SQUARED CJK UNIFIED IDEOGRAPH-624B..SQUARED CJK UNIFIED IDEOGRAPH-914D
(16#1F240#, 16#1F248#), -- TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-672C..TORTOISE SHELL BRACKETED CJK UNIFIED IDEOGRAPH-6557
(16#1F250#, 16#1F251#), -- CIRCLED IDEOGRAPH ADVANTAGE..CIRCLED IDEOGRAPH ACCEPT
(16#1FBF0#, 16#1FBF9#), -- SEGMENTED DIGIT ZERO..SEGMENTED DIGIT NINE
(16#2F800#, 16#2FA1D#)); -- CJK COMPATIBILITY IDEOGRAPH-2F800..CJK COMPATIBILITY IDEOGRAPH-2FA1D
pragma Warnings (On);
-- Temporary until pragma Warnings at start can be activated ???
type Decomposition_Mapping is record
Item : UTF_32;
First_Char_Mapping : UTF_32;
end record;
-- Item is a UTF_32 character with a decomposition mapping.
-- First_Char_Mapping is the first UTF_32 character of the decomposition
-- mapping of Item.
type Unicode_Decomposition_Array is
array (Positive range <>) of Decomposition_Mapping;
Unicode_Decomposition : constant Unicode_Decomposition_Array := (
(16#00A0#, 16#0020#),
(16#00A8#, 16#0020#),
(16#00AA#, 16#0061#),
(16#00AF#, 16#0020#),
(16#00B2#, 16#0032#),
(16#00B3#, 16#0033#),
(16#00B4#, 16#0020#),
(16#00B5#, 16#03BC#),
(16#00B8#, 16#0020#),
(16#00B9#, 16#0031#),
(16#00BA#, 16#006F#),
(16#00BC#, 16#0031#),
(16#00BD#, 16#0031#),
(16#00BE#, 16#0033#),
(16#00C0#, 16#0041#),
(16#00C1#, 16#0041#),
(16#00C2#, 16#0041#),
(16#00C3#, 16#0041#),
(16#00C4#, 16#0041#),
(16#00C5#, 16#0041#),
(16#00C7#, 16#0043#),
(16#00C8#, 16#0045#),
(16#00C9#, 16#0045#),
(16#00CA#, 16#0045#),
(16#00CB#, 16#0045#),
(16#00CC#, 16#0049#),
(16#00CD#, 16#0049#),
(16#00CE#, 16#0049#),
(16#00CF#, 16#0049#),
(16#00D1#, 16#004E#),
(16#00D2#, 16#004F#),
(16#00D3#, 16#004F#),
(16#00D4#, 16#004F#),
(16#00D5#, 16#004F#),
(16#00D6#, 16#004F#),
(16#00D9#, 16#0055#),
(16#00DA#, 16#0055#),
(16#00DB#, 16#0055#),
(16#00DC#, 16#0055#),
(16#00DD#, 16#0059#),
(16#00E0#, 16#0061#),
(16#00E1#, 16#0061#),
(16#00E2#, 16#0061#),
(16#00E3#, 16#0061#),
(16#00E4#, 16#0061#),
(16#00E5#, 16#0061#),
(16#00E7#, 16#0063#),
(16#00E8#, 16#0065#),
(16#00E9#, 16#0065#),
(16#00EA#, 16#0065#),
(16#00EB#, 16#0065#),
(16#00EC#, 16#0069#),
(16#00ED#, 16#0069#),
(16#00EE#, 16#0069#),
(16#00EF#, 16#0069#),
(16#00F1#, 16#006E#),
(16#00F2#, 16#006F#),
(16#00F3#, 16#006F#),
(16#00F4#, 16#006F#),
(16#00F5#, 16#006F#),
(16#00F6#, 16#006F#),
(16#00F9#, 16#0075#),
(16#00FA#, 16#0075#),
(16#00FB#, 16#0075#),
(16#00FC#, 16#0075#),
(16#00FD#, 16#0079#),
(16#00FF#, 16#0079#),
(16#0100#, 16#0041#),
(16#0101#, 16#0061#),
(16#0102#, 16#0041#),
(16#0103#, 16#0061#),
(16#0104#, 16#0041#),
(16#0105#, 16#0061#),
(16#0106#, 16#0043#),
(16#0107#, 16#0063#),
(16#0108#, 16#0043#),
(16#0109#, 16#0063#),
(16#010A#, 16#0043#),
(16#010B#, 16#0063#),
(16#010C#, 16#0043#),
(16#010D#, 16#0063#),
(16#010E#, 16#0044#),
(16#010F#, 16#0064#),
(16#0112#, 16#0045#),
(16#0113#, 16#0065#),
(16#0114#, 16#0045#),
(16#0115#, 16#0065#),
(16#0116#, 16#0045#),
(16#0117#, 16#0065#),
(16#0118#, 16#0045#),
(16#0119#, 16#0065#),
(16#011A#, 16#0045#),
(16#011B#, 16#0065#),
(16#011C#, 16#0047#),
(16#011D#, 16#0067#),
(16#011E#, 16#0047#),
(16#011F#, 16#0067#),
(16#0120#, 16#0047#),
(16#0121#, 16#0067#),
(16#0122#, 16#0047#),
(16#0123#, 16#0067#),
(16#0124#, 16#0048#),
(16#0125#, 16#0068#),
(16#0128#, 16#0049#),
(16#0129#, 16#0069#),
(16#012A#, 16#0049#),
(16#012B#, 16#0069#),
(16#012C#, 16#0049#),
(16#012D#, 16#0069#),
(16#012E#, 16#0049#),
(16#012F#, 16#0069#),
(16#0130#, 16#0049#),
(16#0132#, 16#0049#),
(16#0133#, 16#0069#),
(16#0134#, 16#004A#),
(16#0135#, 16#006A#),
(16#0136#, 16#004B#),
(16#0137#, 16#006B#),
(16#0139#, 16#004C#),
(16#013A#, 16#006C#),
(16#013B#, 16#004C#),
(16#013C#, 16#006C#),
(16#013D#, 16#004C#),
(16#013E#, 16#006C#),
(16#013F#, 16#004C#),
(16#0140#, 16#006C#),
(16#0143#, 16#004E#),
(16#0144#, 16#006E#),
(16#0145#, 16#004E#),
(16#0146#, 16#006E#),
(16#0147#, 16#004E#),
(16#0148#, 16#006E#),
(16#0149#, 16#02BC#),
(16#014C#, 16#004F#),
(16#014D#, 16#006F#),
(16#014E#, 16#004F#),
(16#014F#, 16#006F#),
(16#0150#, 16#004F#),
(16#0151#, 16#006F#),
(16#0154#, 16#0052#),
(16#0155#, 16#0072#),
(16#0156#, 16#0052#),
(16#0157#, 16#0072#),
(16#0158#, 16#0052#),
(16#0159#, 16#0072#),
(16#015A#, 16#0053#),
(16#015B#, 16#0073#),
(16#015C#, 16#0053#),
(16#015D#, 16#0073#),
(16#015E#, 16#0053#),
(16#015F#, 16#0073#),
(16#0160#, 16#0053#),
(16#0161#, 16#0073#),
(16#0162#, 16#0054#),
(16#0163#, 16#0074#),
(16#0164#, 16#0054#),
(16#0165#, 16#0074#),
(16#0168#, 16#0055#),
(16#0169#, 16#0075#),
(16#016A#, 16#0055#),
(16#016B#, 16#0075#),
(16#016C#, 16#0055#),
(16#016D#, 16#0075#),
(16#016E#, 16#0055#),
(16#016F#, 16#0075#),
(16#0170#, 16#0055#),
(16#0171#, 16#0075#),
(16#0172#, 16#0055#),
(16#0173#, 16#0075#),
(16#0174#, 16#0057#),
(16#0175#, 16#0077#),
(16#0176#, 16#0059#),
(16#0177#, 16#0079#),
(16#0178#, 16#0059#),
(16#0179#, 16#005A#),
(16#017A#, 16#007A#),
(16#017B#, 16#005A#),
(16#017C#, 16#007A#),
(16#017D#, 16#005A#),
(16#017E#, 16#007A#),
(16#017F#, 16#0073#),
(16#01A0#, 16#004F#),
(16#01A1#, 16#006F#),
(16#01AF#, 16#0055#),
(16#01B0#, 16#0075#),
(16#01C4#, 16#0044#),
(16#01C5#, 16#0044#),
(16#01C6#, 16#0064#),
(16#01C7#, 16#004C#),
(16#01C8#, 16#004C#),
(16#01C9#, 16#006C#),
(16#01CA#, 16#004E#),
(16#01CB#, 16#004E#),
(16#01CC#, 16#006E#),
(16#01CD#, 16#0041#),
(16#01CE#, 16#0061#),
(16#01CF#, 16#0049#),
(16#01D0#, 16#0069#),
(16#01D1#, 16#004F#),
(16#01D2#, 16#006F#),
(16#01D3#, 16#0055#),
(16#01D4#, 16#0075#),
(16#01D5#, 16#00DC#),
(16#01D6#, 16#00FC#),
(16#01D7#, 16#00DC#),
(16#01D8#, 16#00FC#),
(16#01D9#, 16#00DC#),
(16#01DA#, 16#00FC#),
(16#01DB#, 16#00DC#),
(16#01DC#, 16#00FC#),
(16#01DE#, 16#00C4#),
(16#01DF#, 16#00E4#),
(16#01E0#, 16#0226#),
(16#01E1#, 16#0227#),
(16#01E2#, 16#00C6#),
(16#01E3#, 16#00E6#),
(16#01E6#, 16#0047#),
(16#01E7#, 16#0067#),
(16#01E8#, 16#004B#),
(16#01E9#, 16#006B#),
(16#01EA#, 16#004F#),
(16#01EB#, 16#006F#),
(16#01EC#, 16#01EA#),
(16#01ED#, 16#01EB#),
(16#01EE#, 16#01B7#),
(16#01EF#, 16#0292#),
(16#01F0#, 16#006A#),
(16#01F1#, 16#0044#),
(16#01F2#, 16#0044#),
(16#01F3#, 16#0064#),
(16#01F4#, 16#0047#),
(16#01F5#, 16#0067#),
(16#01F8#, 16#004E#),
(16#01F9#, 16#006E#),
(16#01FA#, 16#00C5#),
(16#01FB#, 16#00E5#),
(16#01FC#, 16#00C6#),
(16#01FD#, 16#00E6#),
(16#01FE#, 16#00D8#),
(16#01FF#, 16#00F8#),
(16#0200#, 16#0041#),
(16#0201#, 16#0061#),
(16#0202#, 16#0041#),
(16#0203#, 16#0061#),
(16#0204#, 16#0045#),
(16#0205#, 16#0065#),
(16#0206#, 16#0045#),
(16#0207#, 16#0065#),
(16#0208#, 16#0049#),
(16#0209#, 16#0069#),
(16#020A#, 16#0049#),
(16#020B#, 16#0069#),
(16#020C#, 16#004F#),
(16#020D#, 16#006F#),
(16#020E#, 16#004F#),
(16#020F#, 16#006F#),
(16#0210#, 16#0052#),
(16#0211#, 16#0072#),
(16#0212#, 16#0052#),
(16#0213#, 16#0072#),
(16#0214#, 16#0055#),
(16#0215#, 16#0075#),
(16#0216#, 16#0055#),
(16#0217#, 16#0075#),
(16#0218#, 16#0053#),
(16#0219#, 16#0073#),
(16#021A#, 16#0054#),
(16#021B#, 16#0074#),
(16#021E#, 16#0048#),
(16#021F#, 16#0068#),
(16#0226#, 16#0041#),
(16#0227#, 16#0061#),
(16#0228#, 16#0045#),
(16#0229#, 16#0065#),
(16#022A#, 16#00D6#),
(16#022B#, 16#00F6#),
(16#022C#, 16#00D5#),
(16#022D#, 16#00F5#),
(16#022E#, 16#004F#),
(16#022F#, 16#006F#),
(16#0230#, 16#022E#),
(16#0231#, 16#022F#),
(16#0232#, 16#0059#),
(16#0233#, 16#0079#),
(16#02B0#, 16#0068#),
(16#02B1#, 16#0266#),
(16#02B2#, 16#006A#),
(16#02B3#, 16#0072#),
(16#02B4#, 16#0279#),
(16#02B5#, 16#027B#),
(16#02B6#, 16#0281#),
(16#02B7#, 16#0077#),
(16#02B8#, 16#0079#),
(16#02D8#, 16#0020#),
(16#02D9#, 16#0020#),
(16#02DA#, 16#0020#),
(16#02DB#, 16#0020#),
(16#02DC#, 16#0020#),
(16#02DD#, 16#0020#),
(16#02E0#, 16#0263#),
(16#02E1#, 16#006C#),
(16#02E2#, 16#0073#),
(16#02E3#, 16#0078#),
(16#02E4#, 16#0295#),
(16#0340#, 16#0300#),
(16#0341#, 16#0301#),
(16#0343#, 16#0313#),
(16#0344#, 16#0308#),
(16#0374#, 16#02B9#),
(16#037A#, 16#0020#),
(16#037E#, 16#003B#),
(16#0384#, 16#0020#),
(16#0385#, 16#00A8#),
(16#0386#, 16#0391#),
(16#0387#, 16#00B7#),
(16#0388#, 16#0395#),
(16#0389#, 16#0397#),
(16#038A#, 16#0399#),
(16#038C#, 16#039F#),
(16#038E#, 16#03A5#),
(16#038F#, 16#03A9#),
(16#0390#, 16#03CA#),
(16#03AA#, 16#0399#),
(16#03AB#, 16#03A5#),
(16#03AC#, 16#03B1#),
(16#03AD#, 16#03B5#),
(16#03AE#, 16#03B7#),
(16#03AF#, 16#03B9#),
(16#03B0#, 16#03CB#),
(16#03CA#, 16#03B9#),
(16#03CB#, 16#03C5#),
(16#03CC#, 16#03BF#),
(16#03CD#, 16#03C5#),
(16#03CE#, 16#03C9#),
(16#03D0#, 16#03B2#),
(16#03D1#, 16#03B8#),
(16#03D2#, 16#03A5#),
(16#03D3#, 16#03D2#),
(16#03D4#, 16#03D2#),
(16#03D5#, 16#03C6#),
(16#03D6#, 16#03C0#),
(16#03F0#, 16#03BA#),
(16#03F1#, 16#03C1#),
(16#03F2#, 16#03C2#),
(16#03F4#, 16#0398#),
(16#03F5#, 16#03B5#),
(16#03F9#, 16#03A3#),
(16#0400#, 16#0415#),
(16#0401#, 16#0415#),
(16#0403#, 16#0413#),
(16#0407#, 16#0406#),
(16#040C#, 16#041A#),
(16#040D#, 16#0418#),
(16#040E#, 16#0423#),
(16#0419#, 16#0418#),
(16#0439#, 16#0438#),
(16#0450#, 16#0435#),
(16#0451#, 16#0435#),
(16#0453#, 16#0433#),
(16#0457#, 16#0456#),
(16#045C#, 16#043A#),
(16#045D#, 16#0438#),
(16#045E#, 16#0443#),
(16#0476#, 16#0474#),
(16#0477#, 16#0475#),
(16#04C1#, 16#0416#),
(16#04C2#, 16#0436#),
(16#04D0#, 16#0410#),
(16#04D1#, 16#0430#),
(16#04D2#, 16#0410#),
(16#04D3#, 16#0430#),
(16#04D6#, 16#0415#),
(16#04D7#, 16#0435#),
(16#04DA#, 16#04D8#),
(16#04DB#, 16#04D9#),
(16#04DC#, 16#0416#),
(16#04DD#, 16#0436#),
(16#04DE#, 16#0417#),
(16#04DF#, 16#0437#),
(16#04E2#, 16#0418#),
(16#04E3#, 16#0438#),
(16#04E4#, 16#0418#),
(16#04E5#, 16#0438#),
(16#04E6#, 16#041E#),
(16#04E7#, 16#043E#),
(16#04EA#, 16#04E8#),
(16#04EB#, 16#04E9#),
(16#04EC#, 16#042D#),
(16#04ED#, 16#044D#),
(16#04EE#, 16#0423#),
(16#04EF#, 16#0443#),
(16#04F0#, 16#0423#),
(16#04F1#, 16#0443#),
(16#04F2#, 16#0423#),
(16#04F3#, 16#0443#),
(16#04F4#, 16#0427#),
(16#04F5#, 16#0447#),
(16#04F8#, 16#042B#),
(16#04F9#, 16#044B#),
(16#0587#, 16#0565#),
(16#0622#, 16#0627#),
(16#0623#, 16#0627#),
(16#0624#, 16#0648#),
(16#0625#, 16#0627#),
(16#0626#, 16#064A#),
(16#0675#, 16#0627#),
(16#0676#, 16#0648#),
(16#0677#, 16#06C7#),
(16#0678#, 16#064A#),
(16#06C0#, 16#06D5#),
(16#06C2#, 16#06C1#),
(16#06D3#, 16#06D2#),
(16#0929#, 16#0928#),
(16#0931#, 16#0930#),
(16#0934#, 16#0933#),
(16#0958#, 16#0915#),
(16#0959#, 16#0916#),
(16#095A#, 16#0917#),
(16#095B#, 16#091C#),
(16#095C#, 16#0921#),
(16#095D#, 16#0922#),
(16#095E#, 16#092B#),
(16#095F#, 16#092F#),
(16#09CB#, 16#09C7#),
(16#09CC#, 16#09C7#),
(16#09DC#, 16#09A1#),
(16#09DD#, 16#09A2#),
(16#09DF#, 16#09AF#),
(16#0A33#, 16#0A32#),
(16#0A36#, 16#0A38#),
(16#0A59#, 16#0A16#),
(16#0A5A#, 16#0A17#),
(16#0A5B#, 16#0A1C#),
(16#0A5E#, 16#0A2B#),
(16#0B48#, 16#0B47#),
(16#0B4B#, 16#0B47#),
(16#0B4C#, 16#0B47#),
(16#0B5C#, 16#0B21#),
(16#0B5D#, 16#0B22#),
(16#0B94#, 16#0B92#),
(16#0BCA#, 16#0BC6#),
(16#0BCB#, 16#0BC7#),
(16#0BCC#, 16#0BC6#),
(16#0C48#, 16#0C46#),
(16#0CC0#, 16#0CBF#),
(16#0CC7#, 16#0CC6#),
(16#0CC8#, 16#0CC6#),
(16#0CCA#, 16#0CC6#),
(16#0CCB#, 16#0CCA#),
(16#0D4A#, 16#0D46#),
(16#0D4B#, 16#0D47#),
(16#0D4C#, 16#0D46#),
(16#0DDA#, 16#0DD9#),
(16#0DDC#, 16#0DD9#),
(16#0DDD#, 16#0DDC#),
(16#0DDE#, 16#0DD9#),
(16#0E33#, 16#0E4D#),
(16#0EB3#, 16#0ECD#),
(16#0EDC#, 16#0EAB#),
(16#0EDD#, 16#0EAB#),
(16#0F0C#, 16#0F0B#),
(16#0F43#, 16#0F42#),
(16#0F4D#, 16#0F4C#),
(16#0F52#, 16#0F51#),
(16#0F57#, 16#0F56#),
(16#0F5C#, 16#0F5B#),
(16#0F69#, 16#0F40#),
(16#0F73#, 16#0F71#),
(16#0F75#, 16#0F71#),
(16#0F76#, 16#0FB2#),
(16#0F77#, 16#0FB2#),
(16#0F78#, 16#0FB3#),
(16#0F79#, 16#0FB3#),
(16#0F81#, 16#0F71#),
(16#0F93#, 16#0F92#),
(16#0F9D#, 16#0F9C#),
(16#0FA2#, 16#0FA1#),
(16#0FA7#, 16#0FA6#),
(16#0FAC#, 16#0FAB#),
(16#0FB9#, 16#0F90#),
(16#1026#, 16#1025#),
(16#10FC#, 16#10DC#),
(16#1B06#, 16#1B05#),
(16#1B08#, 16#1B07#),
(16#1B0A#, 16#1B09#),
(16#1B0C#, 16#1B0B#),
(16#1B0E#, 16#1B0D#),
(16#1B12#, 16#1B11#),
(16#1B3B#, 16#1B3A#),
(16#1B3D#, 16#1B3C#),
(16#1B40#, 16#1B3E#),
(16#1B41#, 16#1B3F#),
(16#1B43#, 16#1B42#),
(16#1D2C#, 16#0041#),
(16#1D2D#, 16#00C6#),
(16#1D2E#, 16#0042#),
(16#1D30#, 16#0044#),
(16#1D31#, 16#0045#),
(16#1D32#, 16#018E#),
(16#1D33#, 16#0047#),
(16#1D34#, 16#0048#),
(16#1D35#, 16#0049#),
(16#1D36#, 16#004A#),
(16#1D37#, 16#004B#),
(16#1D38#, 16#004C#),
(16#1D39#, 16#004D#),
(16#1D3A#, 16#004E#),
(16#1D3C#, 16#004F#),
(16#1D3D#, 16#0222#),
(16#1D3E#, 16#0050#),
(16#1D3F#, 16#0052#),
(16#1D40#, 16#0054#),
(16#1D41#, 16#0055#),
(16#1D42#, 16#0057#),
(16#1D43#, 16#0061#),
(16#1D44#, 16#0250#),
(16#1D45#, 16#0251#),
(16#1D46#, 16#1D02#),
(16#1D47#, 16#0062#),
(16#1D48#, 16#0064#),
(16#1D49#, 16#0065#),
(16#1D4A#, 16#0259#),
(16#1D4B#, 16#025B#),
(16#1D4C#, 16#025C#),
(16#1D4D#, 16#0067#),
(16#1D4F#, 16#006B#),
(16#1D50#, 16#006D#),
(16#1D51#, 16#014B#),
(16#1D52#, 16#006F#),
(16#1D53#, 16#0254#),
(16#1D54#, 16#1D16#),
(16#1D55#, 16#1D17#),
(16#1D56#, 16#0070#),
(16#1D57#, 16#0074#),
(16#1D58#, 16#0075#),
(16#1D59#, 16#1D1D#),
(16#1D5A#, 16#026F#),
(16#1D5B#, 16#0076#),
(16#1D5C#, 16#1D25#),
(16#1D5D#, 16#03B2#),
(16#1D5E#, 16#03B3#),
(16#1D5F#, 16#03B4#),
(16#1D60#, 16#03C6#),
(16#1D61#, 16#03C7#),
(16#1D62#, 16#0069#),
(16#1D63#, 16#0072#),
(16#1D64#, 16#0075#),
(16#1D65#, 16#0076#),
(16#1D66#, 16#03B2#),
(16#1D67#, 16#03B3#),
(16#1D68#, 16#03C1#),
(16#1D69#, 16#03C6#),
(16#1D6A#, 16#03C7#),
(16#1D78#, 16#043D#),
(16#1D9B#, 16#0252#),
(16#1D9C#, 16#0063#),
(16#1D9D#, 16#0255#),
(16#1D9E#, 16#00F0#),
(16#1D9F#, 16#025C#),
(16#1DA0#, 16#0066#),
(16#1DA1#, 16#025F#),
(16#1DA2#, 16#0261#),
(16#1DA3#, 16#0265#),
(16#1DA4#, 16#0268#),
(16#1DA5#, 16#0269#),
(16#1DA6#, 16#026A#),
(16#1DA7#, 16#1D7B#),
(16#1DA8#, 16#029D#),
(16#1DA9#, 16#026D#),
(16#1DAA#, 16#1D85#),
(16#1DAB#, 16#029F#),
(16#1DAC#, 16#0271#),
(16#1DAD#, 16#0270#),
(16#1DAE#, 16#0272#),
(16#1DAF#, 16#0273#),
(16#1DB0#, 16#0274#),
(16#1DB1#, 16#0275#),
(16#1DB2#, 16#0278#),
(16#1DB3#, 16#0282#),
(16#1DB4#, 16#0283#),
(16#1DB5#, 16#01AB#),
(16#1DB6#, 16#0289#),
(16#1DB7#, 16#028A#),
(16#1DB8#, 16#1D1C#),
(16#1DB9#, 16#028B#),
(16#1DBA#, 16#028C#),
(16#1DBB#, 16#007A#),
(16#1DBC#, 16#0290#),
(16#1DBD#, 16#0291#),
(16#1DBE#, 16#0292#),
(16#1DBF#, 16#03B8#),
(16#1E00#, 16#0041#),
(16#1E01#, 16#0061#),
(16#1E02#, 16#0042#),
(16#1E03#, 16#0062#),
(16#1E04#, 16#0042#),
(16#1E05#, 16#0062#),
(16#1E06#, 16#0042#),
(16#1E07#, 16#0062#),
(16#1E08#, 16#00C7#),
(16#1E09#, 16#00E7#),
(16#1E0A#, 16#0044#),
(16#1E0B#, 16#0064#),
(16#1E0C#, 16#0044#),
(16#1E0D#, 16#0064#),
(16#1E0E#, 16#0044#),
(16#1E0F#, 16#0064#),
(16#1E10#, 16#0044#),
(16#1E11#, 16#0064#),
(16#1E12#, 16#0044#),
(16#1E13#, 16#0064#),
(16#1E14#, 16#0112#),
(16#1E15#, 16#0113#),
(16#1E16#, 16#0112#),
(16#1E17#, 16#0113#),
(16#1E18#, 16#0045#),
(16#1E19#, 16#0065#),
(16#1E1A#, 16#0045#),
(16#1E1B#, 16#0065#),
(16#1E1C#, 16#0228#),
(16#1E1D#, 16#0229#),
(16#1E1E#, 16#0046#),
(16#1E1F#, 16#0066#),
(16#1E20#, 16#0047#),
(16#1E21#, 16#0067#),
(16#1E22#, 16#0048#),
(16#1E23#, 16#0068#),
(16#1E24#, 16#0048#),
(16#1E25#, 16#0068#),
(16#1E26#, 16#0048#),
(16#1E27#, 16#0068#),
(16#1E28#, 16#0048#),
(16#1E29#, 16#0068#),
(16#1E2A#, 16#0048#),
(16#1E2B#, 16#0068#),
(16#1E2C#, 16#0049#),
(16#1E2D#, 16#0069#),
(16#1E2E#, 16#00CF#),
(16#1E2F#, 16#00EF#),
(16#1E30#, 16#004B#),
(16#1E31#, 16#006B#),
(16#1E32#, 16#004B#),
(16#1E33#, 16#006B#),
(16#1E34#, 16#004B#),
(16#1E35#, 16#006B#),
(16#1E36#, 16#004C#),
(16#1E37#, 16#006C#),
(16#1E38#, 16#1E36#),
(16#1E39#, 16#1E37#),
(16#1E3A#, 16#004C#),
(16#1E3B#, 16#006C#),
(16#1E3C#, 16#004C#),
(16#1E3D#, 16#006C#),
(16#1E3E#, 16#004D#),
(16#1E3F#, 16#006D#),
(16#1E40#, 16#004D#),
(16#1E41#, 16#006D#),
(16#1E42#, 16#004D#),
(16#1E43#, 16#006D#),
(16#1E44#, 16#004E#),
(16#1E45#, 16#006E#),
(16#1E46#, 16#004E#),
(16#1E47#, 16#006E#),
(16#1E48#, 16#004E#),
(16#1E49#, 16#006E#),
(16#1E4A#, 16#004E#),
(16#1E4B#, 16#006E#),
(16#1E4C#, 16#00D5#),
(16#1E4D#, 16#00F5#),
(16#1E4E#, 16#00D5#),
(16#1E4F#, 16#00F5#),
(16#1E50#, 16#014C#),
(16#1E51#, 16#014D#),
(16#1E52#, 16#014C#),
(16#1E53#, 16#014D#),
(16#1E54#, 16#0050#),
(16#1E55#, 16#0070#),
(16#1E56#, 16#0050#),
(16#1E57#, 16#0070#),
(16#1E58#, 16#0052#),
(16#1E59#, 16#0072#),
(16#1E5A#, 16#0052#),
(16#1E5B#, 16#0072#),
(16#1E5C#, 16#1E5A#),
(16#1E5D#, 16#1E5B#),
(16#1E5E#, 16#0052#),
(16#1E5F#, 16#0072#),
(16#1E60#, 16#0053#),
(16#1E61#, 16#0073#),
(16#1E62#, 16#0053#),
(16#1E63#, 16#0073#),
(16#1E64#, 16#015A#),
(16#1E65#, 16#015B#),
(16#1E66#, 16#0160#),
(16#1E67#, 16#0161#),
(16#1E68#, 16#1E62#),
(16#1E69#, 16#1E63#),
(16#1E6A#, 16#0054#),
(16#1E6B#, 16#0074#),
(16#1E6C#, 16#0054#),
(16#1E6D#, 16#0074#),
(16#1E6E#, 16#0054#),
(16#1E6F#, 16#0074#),
(16#1E70#, 16#0054#),
(16#1E71#, 16#0074#),
(16#1E72#, 16#0055#),
(16#1E73#, 16#0075#),
(16#1E74#, 16#0055#),
(16#1E75#, 16#0075#),
(16#1E76#, 16#0055#),
(16#1E77#, 16#0075#),
(16#1E78#, 16#0168#),
(16#1E79#, 16#0169#),
(16#1E7A#, 16#016A#),
(16#1E7B#, 16#016B#),
(16#1E7C#, 16#0056#),
(16#1E7D#, 16#0076#),
(16#1E7E#, 16#0056#),
(16#1E7F#, 16#0076#),
(16#1E80#, 16#0057#),
(16#1E81#, 16#0077#),
(16#1E82#, 16#0057#),
(16#1E83#, 16#0077#),
(16#1E84#, 16#0057#),
(16#1E85#, 16#0077#),
(16#1E86#, 16#0057#),
(16#1E87#, 16#0077#),
(16#1E88#, 16#0057#),
(16#1E89#, 16#0077#),
(16#1E8A#, 16#0058#),
(16#1E8B#, 16#0078#),
(16#1E8C#, 16#0058#),
(16#1E8D#, 16#0078#),
(16#1E8E#, 16#0059#),
(16#1E8F#, 16#0079#),
(16#1E90#, 16#005A#),
(16#1E91#, 16#007A#),
(16#1E92#, 16#005A#),
(16#1E93#, 16#007A#),
(16#1E94#, 16#005A#),
(16#1E95#, 16#007A#),
(16#1E96#, 16#0068#),
(16#1E97#, 16#0074#),
(16#1E98#, 16#0077#),
(16#1E99#, 16#0079#),
(16#1E9A#, 16#0061#),
(16#1E9B#, 16#017F#),
(16#1EA0#, 16#0041#),
(16#1EA1#, 16#0061#),
(16#1EA2#, 16#0041#),
(16#1EA3#, 16#0061#),
(16#1EA4#, 16#00C2#),
(16#1EA5#, 16#00E2#),
(16#1EA6#, 16#00C2#),
(16#1EA7#, 16#00E2#),
(16#1EA8#, 16#00C2#),
(16#1EA9#, 16#00E2#),
(16#1EAA#, 16#00C2#),
(16#1EAB#, 16#00E2#),
(16#1EAC#, 16#1EA0#),
(16#1EAD#, 16#1EA1#),
(16#1EAE#, 16#0102#),
(16#1EAF#, 16#0103#),
(16#1EB0#, 16#0102#),
(16#1EB1#, 16#0103#),
(16#1EB2#, 16#0102#),
(16#1EB3#, 16#0103#),
(16#1EB4#, 16#0102#),
(16#1EB5#, 16#0103#),
(16#1EB6#, 16#1EA0#),
(16#1EB7#, 16#1EA1#),
(16#1EB8#, 16#0045#),
(16#1EB9#, 16#0065#),
(16#1EBA#, 16#0045#),
(16#1EBB#, 16#0065#),
(16#1EBC#, 16#0045#),
(16#1EBD#, 16#0065#),
(16#1EBE#, 16#00CA#),
(16#1EBF#, 16#00EA#),
(16#1EC0#, 16#00CA#),
(16#1EC1#, 16#00EA#),
(16#1EC2#, 16#00CA#),
(16#1EC3#, 16#00EA#),
(16#1EC4#, 16#00CA#),
(16#1EC5#, 16#00EA#),
(16#1EC6#, 16#1EB8#),
(16#1EC7#, 16#1EB9#),
(16#1EC8#, 16#0049#),
(16#1EC9#, 16#0069#),
(16#1ECA#, 16#0049#),
(16#1ECB#, 16#0069#),
(16#1ECC#, 16#004F#),
(16#1ECD#, 16#006F#),
(16#1ECE#, 16#004F#),
(16#1ECF#, 16#006F#),
(16#1ED0#, 16#00D4#),
(16#1ED1#, 16#00F4#),
(16#1ED2#, 16#00D4#),
(16#1ED3#, 16#00F4#),
(16#1ED4#, 16#00D4#),
(16#1ED5#, 16#00F4#),
(16#1ED6#, 16#00D4#),
(16#1ED7#, 16#00F4#),
(16#1ED8#, 16#1ECC#),
(16#1ED9#, 16#1ECD#),
(16#1EDA#, 16#01A0#),
(16#1EDB#, 16#01A1#),
(16#1EDC#, 16#01A0#),
(16#1EDD#, 16#01A1#),
(16#1EDE#, 16#01A0#),
(16#1EDF#, 16#01A1#),
(16#1EE0#, 16#01A0#),
(16#1EE1#, 16#01A1#),
(16#1EE2#, 16#01A0#),
(16#1EE3#, 16#01A1#),
(16#1EE4#, 16#0055#),
(16#1EE5#, 16#0075#),
(16#1EE6#, 16#0055#),
(16#1EE7#, 16#0075#),
(16#1EE8#, 16#01AF#),
(16#1EE9#, 16#01B0#),
(16#1EEA#, 16#01AF#),
(16#1EEB#, 16#01B0#),
(16#1EEC#, 16#01AF#),
(16#1EED#, 16#01B0#),
(16#1EEE#, 16#01AF#),
(16#1EEF#, 16#01B0#),
(16#1EF0#, 16#01AF#),
(16#1EF1#, 16#01B0#),
(16#1EF2#, 16#0059#),
(16#1EF3#, 16#0079#),
(16#1EF4#, 16#0059#),
(16#1EF5#, 16#0079#),
(16#1EF6#, 16#0059#),
(16#1EF7#, 16#0079#),
(16#1EF8#, 16#0059#),
(16#1EF9#, 16#0079#),
(16#1F00#, 16#03B1#),
(16#1F01#, 16#03B1#),
(16#1F02#, 16#1F00#),
(16#1F03#, 16#1F01#),
(16#1F04#, 16#1F00#),
(16#1F05#, 16#1F01#),
(16#1F06#, 16#1F00#),
(16#1F07#, 16#1F01#),
(16#1F08#, 16#0391#),
(16#1F09#, 16#0391#),
(16#1F0A#, 16#1F08#),
(16#1F0B#, 16#1F09#),
(16#1F0C#, 16#1F08#),
(16#1F0D#, 16#1F09#),
(16#1F0E#, 16#1F08#),
(16#1F0F#, 16#1F09#),
(16#1F10#, 16#03B5#),
(16#1F11#, 16#03B5#),
(16#1F12#, 16#1F10#),
(16#1F13#, 16#1F11#),
(16#1F14#, 16#1F10#),
(16#1F15#, 16#1F11#),
(16#1F18#, 16#0395#),
(16#1F19#, 16#0395#),
(16#1F1A#, 16#1F18#),
(16#1F1B#, 16#1F19#),
(16#1F1C#, 16#1F18#),
(16#1F1D#, 16#1F19#),
(16#1F20#, 16#03B7#),
(16#1F21#, 16#03B7#),
(16#1F22#, 16#1F20#),
(16#1F23#, 16#1F21#),
(16#1F24#, 16#1F20#),
(16#1F25#, 16#1F21#),
(16#1F26#, 16#1F20#),
(16#1F27#, 16#1F21#),
(16#1F28#, 16#0397#),
(16#1F29#, 16#0397#),
(16#1F2A#, 16#1F28#),
(16#1F2B#, 16#1F29#),
(16#1F2C#, 16#1F28#),
(16#1F2D#, 16#1F29#),
(16#1F2E#, 16#1F28#),
(16#1F2F#, 16#1F29#),
(16#1F30#, 16#03B9#),
(16#1F31#, 16#03B9#),
(16#1F32#, 16#1F30#),
(16#1F33#, 16#1F31#),
(16#1F34#, 16#1F30#),
(16#1F35#, 16#1F31#),
(16#1F36#, 16#1F30#),
(16#1F37#, 16#1F31#),
(16#1F38#, 16#0399#),
(16#1F39#, 16#0399#),
(16#1F3A#, 16#1F38#),
(16#1F3B#, 16#1F39#),
(16#1F3C#, 16#1F38#),
(16#1F3D#, 16#1F39#),
(16#1F3E#, 16#1F38#),
(16#1F3F#, 16#1F39#),
(16#1F40#, 16#03BF#),
(16#1F41#, 16#03BF#),
(16#1F42#, 16#1F40#),
(16#1F43#, 16#1F41#),
(16#1F44#, 16#1F40#),
(16#1F45#, 16#1F41#),
(16#1F48#, 16#039F#),
(16#1F49#, 16#039F#),
(16#1F4A#, 16#1F48#),
(16#1F4B#, 16#1F49#),
(16#1F4C#, 16#1F48#),
(16#1F4D#, 16#1F49#),
(16#1F50#, 16#03C5#),
(16#1F51#, 16#03C5#),
(16#1F52#, 16#1F50#),
(16#1F53#, 16#1F51#),
(16#1F54#, 16#1F50#),
(16#1F55#, 16#1F51#),
(16#1F56#, 16#1F50#),
(16#1F57#, 16#1F51#),
(16#1F59#, 16#03A5#),
(16#1F5B#, 16#1F59#),
(16#1F5D#, 16#1F59#),
(16#1F5F#, 16#1F59#),
(16#1F60#, 16#03C9#),
(16#1F61#, 16#03C9#),
(16#1F62#, 16#1F60#),
(16#1F63#, 16#1F61#),
(16#1F64#, 16#1F60#),
(16#1F65#, 16#1F61#),
(16#1F66#, 16#1F60#),
(16#1F67#, 16#1F61#),
(16#1F68#, 16#03A9#),
(16#1F69#, 16#03A9#),
(16#1F6A#, 16#1F68#),
(16#1F6B#, 16#1F69#),
(16#1F6C#, 16#1F68#),
(16#1F6D#, 16#1F69#),
(16#1F6E#, 16#1F68#),
(16#1F6F#, 16#1F69#),
(16#1F70#, 16#03B1#),
(16#1F71#, 16#03AC#),
(16#1F72#, 16#03B5#),
(16#1F73#, 16#03AD#),
(16#1F74#, 16#03B7#),
(16#1F75#, 16#03AE#),
(16#1F76#, 16#03B9#),
(16#1F77#, 16#03AF#),
(16#1F78#, 16#03BF#),
(16#1F79#, 16#03CC#),
(16#1F7A#, 16#03C5#),
(16#1F7B#, 16#03CD#),
(16#1F7C#, 16#03C9#),
(16#1F7D#, 16#03CE#),
(16#1F80#, 16#1F00#),
(16#1F81#, 16#1F01#),
(16#1F82#, 16#1F02#),
(16#1F83#, 16#1F03#),
(16#1F84#, 16#1F04#),
(16#1F85#, 16#1F05#),
(16#1F86#, 16#1F06#),
(16#1F87#, 16#1F07#),
(16#1F88#, 16#1F08#),
(16#1F89#, 16#1F09#),
(16#1F8A#, 16#1F0A#),
(16#1F8B#, 16#1F0B#),
(16#1F8C#, 16#1F0C#),
(16#1F8D#, 16#1F0D#),
(16#1F8E#, 16#1F0E#),
(16#1F8F#, 16#1F0F#),
(16#1F90#, 16#1F20#),
(16#1F91#, 16#1F21#),
(16#1F92#, 16#1F22#),
(16#1F93#, 16#1F23#),
(16#1F94#, 16#1F24#),
(16#1F95#, 16#1F25#),
(16#1F96#, 16#1F26#),
(16#1F97#, 16#1F27#),
(16#1F98#, 16#1F28#),
(16#1F99#, 16#1F29#),
(16#1F9A#, 16#1F2A#),
(16#1F9B#, 16#1F2B#),
(16#1F9C#, 16#1F2C#),
(16#1F9D#, 16#1F2D#),
(16#1F9E#, 16#1F2E#),
(16#1F9F#, 16#1F2F#),
(16#1FA0#, 16#1F60#),
(16#1FA1#, 16#1F61#),
(16#1FA2#, 16#1F62#),
(16#1FA3#, 16#1F63#),
(16#1FA4#, 16#1F64#),
(16#1FA5#, 16#1F65#),
(16#1FA6#, 16#1F66#),
(16#1FA7#, 16#1F67#),
(16#1FA8#, 16#1F68#),
(16#1FA9#, 16#1F69#),
(16#1FAA#, 16#1F6A#),
(16#1FAB#, 16#1F6B#),
(16#1FAC#, 16#1F6C#),
(16#1FAD#, 16#1F6D#),
(16#1FAE#, 16#1F6E#),
(16#1FAF#, 16#1F6F#),
(16#1FB0#, 16#03B1#),
(16#1FB1#, 16#03B1#),
(16#1FB2#, 16#1F70#),
(16#1FB3#, 16#03B1#),
(16#1FB4#, 16#03AC#),
(16#1FB6#, 16#03B1#),
(16#1FB7#, 16#1FB6#),
(16#1FB8#, 16#0391#),
(16#1FB9#, 16#0391#),
(16#1FBA#, 16#0391#),
(16#1FBB#, 16#0386#),
(16#1FBC#, 16#0391#),
(16#1FBD#, 16#0020#),
(16#1FBE#, 16#03B9#),
(16#1FBF#, 16#0020#),
(16#1FC0#, 16#0020#),
(16#1FC1#, 16#00A8#),
(16#1FC2#, 16#1F74#),
(16#1FC3#, 16#03B7#),
(16#1FC4#, 16#03AE#),
(16#1FC6#, 16#03B7#),
(16#1FC7#, 16#1FC6#),
(16#1FC8#, 16#0395#),
(16#1FC9#, 16#0388#),
(16#1FCA#, 16#0397#),
(16#1FCB#, 16#0389#),
(16#1FCC#, 16#0397#),
(16#1FCD#, 16#1FBF#),
(16#1FCE#, 16#1FBF#),
(16#1FCF#, 16#1FBF#),
(16#1FD0#, 16#03B9#),
(16#1FD1#, 16#03B9#),
(16#1FD2#, 16#03CA#),
(16#1FD3#, 16#0390#),
(16#1FD6#, 16#03B9#),
(16#1FD7#, 16#03CA#),
(16#1FD8#, 16#0399#),
(16#1FD9#, 16#0399#),
(16#1FDA#, 16#0399#),
(16#1FDB#, 16#038A#),
(16#1FDD#, 16#1FFE#),
(16#1FDE#, 16#1FFE#),
(16#1FDF#, 16#1FFE#),
(16#1FE0#, 16#03C5#),
(16#1FE1#, 16#03C5#),
(16#1FE2#, 16#03CB#),
(16#1FE3#, 16#03B0#),
(16#1FE4#, 16#03C1#),
(16#1FE5#, 16#03C1#),
(16#1FE6#, 16#03C5#),
(16#1FE7#, 16#03CB#),
(16#1FE8#, 16#03A5#),
(16#1FE9#, 16#03A5#),
(16#1FEA#, 16#03A5#),
(16#1FEB#, 16#038E#),
(16#1FEC#, 16#03A1#),
(16#1FED#, 16#00A8#),
(16#1FEE#, 16#0385#),
(16#1FEF#, 16#0060#),
(16#1FF2#, 16#1F7C#),
(16#1FF3#, 16#03C9#),
(16#1FF4#, 16#03CE#),
(16#1FF6#, 16#03C9#),
(16#1FF7#, 16#1FF6#),
(16#1FF8#, 16#039F#),
(16#1FF9#, 16#038C#),
(16#1FFA#, 16#03A9#),
(16#1FFB#, 16#038F#),
(16#1FFC#, 16#03A9#),
(16#1FFD#, 16#00B4#),
(16#1FFE#, 16#0020#),
(16#2000#, 16#2002#),
(16#2001#, 16#2003#),
(16#2002#, 16#0020#),
(16#2003#, 16#0020#),
(16#2004#, 16#0020#),
(16#2005#, 16#0020#),
(16#2006#, 16#0020#),
(16#2007#, 16#0020#),
(16#2008#, 16#0020#),
(16#2009#, 16#0020#),
(16#200A#, 16#0020#),
(16#2011#, 16#2010#),
(16#2017#, 16#0020#),
(16#2024#, 16#002E#),
(16#2025#, 16#002E#),
(16#2026#, 16#002E#),
(16#202F#, 16#0020#),
(16#2033#, 16#2032#),
(16#2034#, 16#2032#),
(16#2036#, 16#2035#),
(16#2037#, 16#2035#),
(16#203C#, 16#0021#),
(16#203E#, 16#0020#),
(16#2047#, 16#003F#),
(16#2048#, 16#003F#),
(16#2049#, 16#0021#),
(16#2057#, 16#2032#),
(16#205F#, 16#0020#),
(16#2070#, 16#0030#),
(16#2071#, 16#0069#),
(16#2074#, 16#0034#),
(16#2075#, 16#0035#),
(16#2076#, 16#0036#),
(16#2077#, 16#0037#),
(16#2078#, 16#0038#),
(16#2079#, 16#0039#),
(16#207A#, 16#002B#),
(16#207B#, 16#2212#),
(16#207C#, 16#003D#),
(16#207D#, 16#0028#),
(16#207E#, 16#0029#),
(16#207F#, 16#006E#),
(16#2080#, 16#0030#),
(16#2081#, 16#0031#),
(16#2082#, 16#0032#),
(16#2083#, 16#0033#),
(16#2084#, 16#0034#),
(16#2085#, 16#0035#),
(16#2086#, 16#0036#),
(16#2087#, 16#0037#),
(16#2088#, 16#0038#),
(16#2089#, 16#0039#),
(16#208A#, 16#002B#),
(16#208B#, 16#2212#),
(16#208C#, 16#003D#),
(16#208D#, 16#0028#),
(16#208E#, 16#0029#),
(16#2090#, 16#0061#),
(16#2091#, 16#0065#),
(16#2092#, 16#006F#),
(16#2093#, 16#0078#),
(16#2094#, 16#0259#),
(16#2095#, 16#0068#),
(16#2096#, 16#006B#),
(16#2097#, 16#006C#),
(16#2098#, 16#006D#),
(16#2099#, 16#006E#),
(16#209A#, 16#0070#),
(16#209B#, 16#0073#),
(16#209C#, 16#0074#),
(16#20A8#, 16#0052#),
(16#2100#, 16#0061#),
(16#2101#, 16#0061#),
(16#2102#, 16#0043#),
(16#2103#, 16#00B0#),
(16#2105#, 16#0063#),
(16#2106#, 16#0063#),
(16#2107#, 16#0190#),
(16#2109#, 16#00B0#),
(16#210A#, 16#0067#),
(16#210B#, 16#0048#),
(16#210C#, 16#0048#),
(16#210D#, 16#0048#),
(16#210E#, 16#0068#),
(16#210F#, 16#0127#),
(16#2110#, 16#0049#),
(16#2111#, 16#0049#),
(16#2112#, 16#004C#),
(16#2113#, 16#006C#),
(16#2115#, 16#004E#),
(16#2116#, 16#004E#),
(16#2119#, 16#0050#),
(16#211A#, 16#0051#),
(16#211B#, 16#0052#),
(16#211C#, 16#0052#),
(16#211D#, 16#0052#),
(16#2120#, 16#0053#),
(16#2121#, 16#0054#),
(16#2122#, 16#0054#),
(16#2124#, 16#005A#),
(16#2126#, 16#03A9#),
(16#2128#, 16#005A#),
(16#212A#, 16#004B#),
(16#212B#, 16#00C5#),
(16#212C#, 16#0042#),
(16#212D#, 16#0043#),
(16#212F#, 16#0065#),
(16#2130#, 16#0045#),
(16#2131#, 16#0046#),
(16#2133#, 16#004D#),
(16#2134#, 16#006F#),
(16#2135#, 16#05D0#),
(16#2136#, 16#05D1#),
(16#2137#, 16#05D2#),
(16#2138#, 16#05D3#),
(16#2139#, 16#0069#),
(16#213B#, 16#0046#),
(16#213C#, 16#03C0#),
(16#213D#, 16#03B3#),
(16#213E#, 16#0393#),
(16#213F#, 16#03A0#),
(16#2140#, 16#2211#),
(16#2145#, 16#0044#),
(16#2146#, 16#0064#),
(16#2147#, 16#0065#),
(16#2148#, 16#0069#),
(16#2149#, 16#006A#),
(16#2150#, 16#0031#),
(16#2151#, 16#0031#),
(16#2152#, 16#0031#),
(16#2153#, 16#0031#),
(16#2154#, 16#0032#),
(16#2155#, 16#0031#),
(16#2156#, 16#0032#),
(16#2157#, 16#0033#),
(16#2158#, 16#0034#),
(16#2159#, 16#0031#),
(16#215A#, 16#0035#),
(16#215B#, 16#0031#),
(16#215C#, 16#0033#),
(16#215D#, 16#0035#),
(16#215E#, 16#0037#),
(16#215F#, 16#0031#),
(16#2160#, 16#0049#),
(16#2161#, 16#0049#),
(16#2162#, 16#0049#),
(16#2163#, 16#0049#),
(16#2164#, 16#0056#),
(16#2165#, 16#0056#),
(16#2166#, 16#0056#),
(16#2167#, 16#0056#),
(16#2168#, 16#0049#),
(16#2169#, 16#0058#),
(16#216A#, 16#0058#),
(16#216B#, 16#0058#),
(16#216C#, 16#004C#),
(16#216D#, 16#0043#),
(16#216E#, 16#0044#),
(16#216F#, 16#004D#),
(16#2170#, 16#0069#),
(16#2171#, 16#0069#),
(16#2172#, 16#0069#),
(16#2173#, 16#0069#),
(16#2174#, 16#0076#),
(16#2175#, 16#0076#),
(16#2176#, 16#0076#),
(16#2177#, 16#0076#),
(16#2178#, 16#0069#),
(16#2179#, 16#0078#),
(16#217A#, 16#0078#),
(16#217B#, 16#0078#),
(16#217C#, 16#006C#),
(16#217D#, 16#0063#),
(16#217E#, 16#0064#),
(16#217F#, 16#006D#),
(16#2189#, 16#0030#),
(16#219A#, 16#2190#),
(16#219B#, 16#2192#),
(16#21AE#, 16#2194#),
(16#21CD#, 16#21D0#),
(16#21CE#, 16#21D4#),
(16#21CF#, 16#21D2#),
(16#2204#, 16#2203#),
(16#2209#, 16#2208#),
(16#220C#, 16#220B#),
(16#2224#, 16#2223#),
(16#2226#, 16#2225#),
(16#222C#, 16#222B#),
(16#222D#, 16#222B#),
(16#222F#, 16#222E#),
(16#2230#, 16#222E#),
(16#2241#, 16#223C#),
(16#2244#, 16#2243#),
(16#2247#, 16#2245#),
(16#2249#, 16#2248#),
(16#2260#, 16#003D#),
(16#2262#, 16#2261#),
(16#226D#, 16#224D#),
(16#226E#, 16#003C#),
(16#226F#, 16#003E#),
(16#2270#, 16#2264#),
(16#2271#, 16#2265#),
(16#2274#, 16#2272#),
(16#2275#, 16#2273#),
(16#2278#, 16#2276#),
(16#2279#, 16#2277#),
(16#2280#, 16#227A#),
(16#2281#, 16#227B#),
(16#2284#, 16#2282#),
(16#2285#, 16#2283#),
(16#2288#, 16#2286#),
(16#2289#, 16#2287#),
(16#22AC#, 16#22A2#),
(16#22AD#, 16#22A8#),
(16#22AE#, 16#22A9#),
(16#22AF#, 16#22AB#),
(16#22E0#, 16#227C#),
(16#22E1#, 16#227D#),
(16#22E2#, 16#2291#),
(16#22E3#, 16#2292#),
(16#22EA#, 16#22B2#),
(16#22EB#, 16#22B3#),
(16#22EC#, 16#22B4#),
(16#22ED#, 16#22B5#),
(16#2329#, 16#3008#),
(16#232A#, 16#3009#),
(16#2460#, 16#0031#),
(16#2461#, 16#0032#),
(16#2462#, 16#0033#),
(16#2463#, 16#0034#),
(16#2464#, 16#0035#),
(16#2465#, 16#0036#),
(16#2466#, 16#0037#),
(16#2467#, 16#0038#),
(16#2468#, 16#0039#),
(16#2469#, 16#0031#),
(16#246A#, 16#0031#),
(16#246B#, 16#0031#),
(16#246C#, 16#0031#),
(16#246D#, 16#0031#),
(16#246E#, 16#0031#),
(16#246F#, 16#0031#),
(16#2470#, 16#0031#),
(16#2471#, 16#0031#),
(16#2472#, 16#0031#),
(16#2473#, 16#0032#),
(16#2474#, 16#0028#),
(16#2475#, 16#0028#),
(16#2476#, 16#0028#),
(16#2477#, 16#0028#),
(16#2478#, 16#0028#),
(16#2479#, 16#0028#),
(16#247A#, 16#0028#),
(16#247B#, 16#0028#),
(16#247C#, 16#0028#),
(16#247D#, 16#0028#),
(16#247E#, 16#0028#),
(16#247F#, 16#0028#),
(16#2480#, 16#0028#),
(16#2481#, 16#0028#),
(16#2482#, 16#0028#),
(16#2483#, 16#0028#),
(16#2484#, 16#0028#),
(16#2485#, 16#0028#),
(16#2486#, 16#0028#),
(16#2487#, 16#0028#),
(16#2488#, 16#0031#),
(16#2489#, 16#0032#),
(16#248A#, 16#0033#),
(16#248B#, 16#0034#),
(16#248C#, 16#0035#),
(16#248D#, 16#0036#),
(16#248E#, 16#0037#),
(16#248F#, 16#0038#),
(16#2490#, 16#0039#),
(16#2491#, 16#0031#),
(16#2492#, 16#0031#),
(16#2493#, 16#0031#),
(16#2494#, 16#0031#),
(16#2495#, 16#0031#),
(16#2496#, 16#0031#),
(16#2497#, 16#0031#),
(16#2498#, 16#0031#),
(16#2499#, 16#0031#),
(16#249A#, 16#0031#),
(16#249B#, 16#0032#),
(16#249C#, 16#0028#),
(16#249D#, 16#0028#),
(16#249E#, 16#0028#),
(16#249F#, 16#0028#),
(16#24A0#, 16#0028#),
(16#24A1#, 16#0028#),
(16#24A2#, 16#0028#),
(16#24A3#, 16#0028#),
(16#24A4#, 16#0028#),
(16#24A5#, 16#0028#),
(16#24A6#, 16#0028#),
(16#24A7#, 16#0028#),
(16#24A8#, 16#0028#),
(16#24A9#, 16#0028#),
(16#24AA#, 16#0028#),
(16#24AB#, 16#0028#),
(16#24AC#, 16#0028#),
(16#24AD#, 16#0028#),
(16#24AE#, 16#0028#),
(16#24AF#, 16#0028#),
(16#24B0#, 16#0028#),
(16#24B1#, 16#0028#),
(16#24B2#, 16#0028#),
(16#24B3#, 16#0028#),
(16#24B4#, 16#0028#),
(16#24B5#, 16#0028#),
(16#24B6#, 16#0041#),
(16#24B7#, 16#0042#),
(16#24B8#, 16#0043#),
(16#24B9#, 16#0044#),
(16#24BA#, 16#0045#),
(16#24BB#, 16#0046#),
(16#24BC#, 16#0047#),
(16#24BD#, 16#0048#),
(16#24BE#, 16#0049#),
(16#24BF#, 16#004A#),
(16#24C0#, 16#004B#),
(16#24C1#, 16#004C#),
(16#24C2#, 16#004D#),
(16#24C3#, 16#004E#),
(16#24C4#, 16#004F#),
(16#24C5#, 16#0050#),
(16#24C6#, 16#0051#),
(16#24C7#, 16#0052#),
(16#24C8#, 16#0053#),
(16#24C9#, 16#0054#),
(16#24CA#, 16#0055#),
(16#24CB#, 16#0056#),
(16#24CC#, 16#0057#),
(16#24CD#, 16#0058#),
(16#24CE#, 16#0059#),
(16#24CF#, 16#005A#),
(16#24D0#, 16#0061#),
(16#24D1#, 16#0062#),
(16#24D2#, 16#0063#),
(16#24D3#, 16#0064#),
(16#24D4#, 16#0065#),
(16#24D5#, 16#0066#),
(16#24D6#, 16#0067#),
(16#24D7#, 16#0068#),
(16#24D8#, 16#0069#),
(16#24D9#, 16#006A#),
(16#24DA#, 16#006B#),
(16#24DB#, 16#006C#),
(16#24DC#, 16#006D#),
(16#24DD#, 16#006E#),
(16#24DE#, 16#006F#),
(16#24DF#, 16#0070#),
(16#24E0#, 16#0071#),
(16#24E1#, 16#0072#),
(16#24E2#, 16#0073#),
(16#24E3#, 16#0074#),
(16#24E4#, 16#0075#),
(16#24E5#, 16#0076#),
(16#24E6#, 16#0077#),
(16#24E7#, 16#0078#),
(16#24E8#, 16#0079#),
(16#24E9#, 16#007A#),
(16#24EA#, 16#0030#),
(16#2A0C#, 16#222B#),
(16#2A74#, 16#003A#),
(16#2A75#, 16#003D#),
(16#2A76#, 16#003D#),
(16#2ADC#, 16#2ADD#),
(16#2C7C#, 16#006A#),
(16#2C7D#, 16#0056#),
(16#2D6F#, 16#2D61#),
(16#2E9F#, 16#6BCD#),
(16#2EF3#, 16#9F9F#),
(16#2F00#, 16#4E00#),
(16#2F01#, 16#4E28#),
(16#2F02#, 16#4E36#),
(16#2F03#, 16#4E3F#),
(16#2F04#, 16#4E59#),
(16#2F05#, 16#4E85#),
(16#2F06#, 16#4E8C#),
(16#2F07#, 16#4EA0#),
(16#2F08#, 16#4EBA#),
(16#2F09#, 16#513F#),
(16#2F0A#, 16#5165#),
(16#2F0B#, 16#516B#),
(16#2F0C#, 16#5182#),
(16#2F0D#, 16#5196#),
(16#2F0E#, 16#51AB#),
(16#2F0F#, 16#51E0#),
(16#2F10#, 16#51F5#),
(16#2F11#, 16#5200#),
(16#2F12#, 16#529B#),
(16#2F13#, 16#52F9#),
(16#2F14#, 16#5315#),
(16#2F15#, 16#531A#),
(16#2F16#, 16#5338#),
(16#2F17#, 16#5341#),
(16#2F18#, 16#535C#),
(16#2F19#, 16#5369#),
(16#2F1A#, 16#5382#),
(16#2F1B#, 16#53B6#),
(16#2F1C#, 16#53C8#),
(16#2F1D#, 16#53E3#),
(16#2F1E#, 16#56D7#),
(16#2F1F#, 16#571F#),
(16#2F20#, 16#58EB#),
(16#2F21#, 16#5902#),
(16#2F22#, 16#590A#),
(16#2F23#, 16#5915#),
(16#2F24#, 16#5927#),
(16#2F25#, 16#5973#),
(16#2F26#, 16#5B50#),
(16#2F27#, 16#5B80#),
(16#2F28#, 16#5BF8#),
(16#2F29#, 16#5C0F#),
(16#2F2A#, 16#5C22#),
(16#2F2B#, 16#5C38#),
(16#2F2C#, 16#5C6E#),
(16#2F2D#, 16#5C71#),
(16#2F2E#, 16#5DDB#),
(16#2F2F#, 16#5DE5#),
(16#2F30#, 16#5DF1#),
(16#2F31#, 16#5DFE#),
(16#2F32#, 16#5E72#),
(16#2F33#, 16#5E7A#),
(16#2F34#, 16#5E7F#),
(16#2F35#, 16#5EF4#),
(16#2F36#, 16#5EFE#),
(16#2F37#, 16#5F0B#),
(16#2F38#, 16#5F13#),
(16#2F39#, 16#5F50#),
(16#2F3A#, 16#5F61#),
(16#2F3B#, 16#5F73#),
(16#2F3C#, 16#5FC3#),
(16#2F3D#, 16#6208#),
(16#2F3E#, 16#6236#),
(16#2F3F#, 16#624B#),
(16#2F40#, 16#652F#),
(16#2F41#, 16#6534#),
(16#2F42#, 16#6587#),
(16#2F43#, 16#6597#),
(16#2F44#, 16#65A4#),
(16#2F45#, 16#65B9#),
(16#2F46#, 16#65E0#),
(16#2F47#, 16#65E5#),
(16#2F48#, 16#66F0#),
(16#2F49#, 16#6708#),
(16#2F4A#, 16#6728#),
(16#2F4B#, 16#6B20#),
(16#2F4C#, 16#6B62#),
(16#2F4D#, 16#6B79#),
(16#2F4E#, 16#6BB3#),
(16#2F4F#, 16#6BCB#),
(16#2F50#, 16#6BD4#),
(16#2F51#, 16#6BDB#),
(16#2F52#, 16#6C0F#),
(16#2F53#, 16#6C14#),
(16#2F54#, 16#6C34#),
(16#2F55#, 16#706B#),
(16#2F56#, 16#722A#),
(16#2F57#, 16#7236#),
(16#2F58#, 16#723B#),
(16#2F59#, 16#723F#),
(16#2F5A#, 16#7247#),
(16#2F5B#, 16#7259#),
(16#2F5C#, 16#725B#),
(16#2F5D#, 16#72AC#),
(16#2F5E#, 16#7384#),
(16#2F5F#, 16#7389#),
(16#2F60#, 16#74DC#),
(16#2F61#, 16#74E6#),
(16#2F62#, 16#7518#),
(16#2F63#, 16#751F#),
(16#2F64#, 16#7528#),
(16#2F65#, 16#7530#),
(16#2F66#, 16#758B#),
(16#2F67#, 16#7592#),
(16#2F68#, 16#7676#),
(16#2F69#, 16#767D#),
(16#2F6A#, 16#76AE#),
(16#2F6B#, 16#76BF#),
(16#2F6C#, 16#76EE#),
(16#2F6D#, 16#77DB#),
(16#2F6E#, 16#77E2#),
(16#2F6F#, 16#77F3#),
(16#2F70#, 16#793A#),
(16#2F71#, 16#79B8#),
(16#2F72#, 16#79BE#),
(16#2F73#, 16#7A74#),
(16#2F74#, 16#7ACB#),
(16#2F75#, 16#7AF9#),
(16#2F76#, 16#7C73#),
(16#2F77#, 16#7CF8#),
(16#2F78#, 16#7F36#),
(16#2F79#, 16#7F51#),
(16#2F7A#, 16#7F8A#),
(16#2F7B#, 16#7FBD#),
(16#2F7C#, 16#8001#),
(16#2F7D#, 16#800C#),
(16#2F7E#, 16#8012#),
(16#2F7F#, 16#8033#),
(16#2F80#, 16#807F#),
(16#2F81#, 16#8089#),
(16#2F82#, 16#81E3#),
(16#2F83#, 16#81EA#),
(16#2F84#, 16#81F3#),
(16#2F85#, 16#81FC#),
(16#2F86#, 16#820C#),
(16#2F87#, 16#821B#),
(16#2F88#, 16#821F#),
(16#2F89#, 16#826E#),
(16#2F8A#, 16#8272#),
(16#2F8B#, 16#8278#),
(16#2F8C#, 16#864D#),
(16#2F8D#, 16#866B#),
(16#2F8E#, 16#8840#),
(16#2F8F#, 16#884C#),
(16#2F90#, 16#8863#),
(16#2F91#, 16#897E#),
(16#2F92#, 16#898B#),
(16#2F93#, 16#89D2#),
(16#2F94#, 16#8A00#),
(16#2F95#, 16#8C37#),
(16#2F96#, 16#8C46#),
(16#2F97#, 16#8C55#),
(16#2F98#, 16#8C78#),
(16#2F99#, 16#8C9D#),
(16#2F9A#, 16#8D64#),
(16#2F9B#, 16#8D70#),
(16#2F9C#, 16#8DB3#),
(16#2F9D#, 16#8EAB#),
(16#2F9E#, 16#8ECA#),
(16#2F9F#, 16#8F9B#),
(16#2FA0#, 16#8FB0#),
(16#2FA1#, 16#8FB5#),
(16#2FA2#, 16#9091#),
(16#2FA3#, 16#9149#),
(16#2FA4#, 16#91C6#),
(16#2FA5#, 16#91CC#),
(16#2FA6#, 16#91D1#),
(16#2FA7#, 16#9577#),
(16#2FA8#, 16#9580#),
(16#2FA9#, 16#961C#),
(16#2FAA#, 16#96B6#),
(16#2FAB#, 16#96B9#),
(16#2FAC#, 16#96E8#),
(16#2FAD#, 16#9751#),
(16#2FAE#, 16#975E#),
(16#2FAF#, 16#9762#),
(16#2FB0#, 16#9769#),
(16#2FB1#, 16#97CB#),
(16#2FB2#, 16#97ED#),
(16#2FB3#, 16#97F3#),
(16#2FB4#, 16#9801#),
(16#2FB5#, 16#98A8#),
(16#2FB6#, 16#98DB#),
(16#2FB7#, 16#98DF#),
(16#2FB8#, 16#9996#),
(16#2FB9#, 16#9999#),
(16#2FBA#, 16#99AC#),
(16#2FBB#, 16#9AA8#),
(16#2FBC#, 16#9AD8#),
(16#2FBD#, 16#9ADF#),
(16#2FBE#, 16#9B25#),
(16#2FBF#, 16#9B2F#),
(16#2FC0#, 16#9B32#),
(16#2FC1#, 16#9B3C#),
(16#2FC2#, 16#9B5A#),
(16#2FC3#, 16#9CE5#),
(16#2FC4#, 16#9E75#),
(16#2FC5#, 16#9E7F#),
(16#2FC6#, 16#9EA5#),
(16#2FC7#, 16#9EBB#),
(16#2FC8#, 16#9EC3#),
(16#2FC9#, 16#9ECD#),
(16#2FCA#, 16#9ED1#),
(16#2FCB#, 16#9EF9#),
(16#2FCC#, 16#9EFD#),
(16#2FCD#, 16#9F0E#),
(16#2FCE#, 16#9F13#),
(16#2FCF#, 16#9F20#),
(16#2FD0#, 16#9F3B#),
(16#2FD1#, 16#9F4A#),
(16#2FD2#, 16#9F52#),
(16#2FD3#, 16#9F8D#),
(16#2FD4#, 16#9F9C#),
(16#2FD5#, 16#9FA0#),
(16#3000#, 16#0020#),
(16#3036#, 16#3012#),
(16#3038#, 16#5341#),
(16#3039#, 16#5344#),
(16#303A#, 16#5345#),
(16#304C#, 16#304B#),
(16#304E#, 16#304D#),
(16#3050#, 16#304F#),
(16#3052#, 16#3051#),
(16#3054#, 16#3053#),
(16#3056#, 16#3055#),
(16#3058#, 16#3057#),
(16#305A#, 16#3059#),
(16#305C#, 16#305B#),
(16#305E#, 16#305D#),
(16#3060#, 16#305F#),
(16#3062#, 16#3061#),
(16#3065#, 16#3064#),
(16#3067#, 16#3066#),
(16#3069#, 16#3068#),
(16#3070#, 16#306F#),
(16#3071#, 16#306F#),
(16#3073#, 16#3072#),
(16#3074#, 16#3072#),
(16#3076#, 16#3075#),
(16#3077#, 16#3075#),
(16#3079#, 16#3078#),
(16#307A#, 16#3078#),
(16#307C#, 16#307B#),
(16#307D#, 16#307B#),
(16#3094#, 16#3046#),
(16#309B#, 16#0020#),
(16#309C#, 16#0020#),
(16#309E#, 16#309D#),
(16#309F#, 16#3088#),
(16#30AC#, 16#30AB#),
(16#30AE#, 16#30AD#),
(16#30B0#, 16#30AF#),
(16#30B2#, 16#30B1#),
(16#30B4#, 16#30B3#),
(16#30B6#, 16#30B5#),
(16#30B8#, 16#30B7#),
(16#30BA#, 16#30B9#),
(16#30BC#, 16#30BB#),
(16#30BE#, 16#30BD#),
(16#30C0#, 16#30BF#),
(16#30C2#, 16#30C1#),
(16#30C5#, 16#30C4#),
(16#30C7#, 16#30C6#),
(16#30C9#, 16#30C8#),
(16#30D0#, 16#30CF#),
(16#30D1#, 16#30CF#),
(16#30D3#, 16#30D2#),
(16#30D4#, 16#30D2#),
(16#30D6#, 16#30D5#),
(16#30D7#, 16#30D5#),
(16#30D9#, 16#30D8#),
(16#30DA#, 16#30D8#),
(16#30DC#, 16#30DB#),
(16#30DD#, 16#30DB#),
(16#30F4#, 16#30A6#),
(16#30F7#, 16#30EF#),
(16#30F8#, 16#30F0#),
(16#30F9#, 16#30F1#),
(16#30FA#, 16#30F2#),
(16#30FE#, 16#30FD#),
(16#30FF#, 16#30B3#),
(16#3131#, 16#1100#),
(16#3132#, 16#1101#),
(16#3133#, 16#11AA#),
(16#3134#, 16#1102#),
(16#3135#, 16#11AC#),
(16#3136#, 16#11AD#),
(16#3137#, 16#1103#),
(16#3138#, 16#1104#),
(16#3139#, 16#1105#),
(16#313A#, 16#11B0#),
(16#313B#, 16#11B1#),
(16#313C#, 16#11B2#),
(16#313D#, 16#11B3#),
(16#313E#, 16#11B4#),
(16#313F#, 16#11B5#),
(16#3140#, 16#111A#),
(16#3141#, 16#1106#),
(16#3142#, 16#1107#),
(16#3143#, 16#1108#),
(16#3144#, 16#1121#),
(16#3145#, 16#1109#),
(16#3146#, 16#110A#),
(16#3147#, 16#110B#),
(16#3148#, 16#110C#),
(16#3149#, 16#110D#),
(16#314A#, 16#110E#),
(16#314B#, 16#110F#),
(16#314C#, 16#1110#),
(16#314D#, 16#1111#),
(16#314E#, 16#1112#),
(16#314F#, 16#1161#),
(16#3150#, 16#1162#),
(16#3151#, 16#1163#),
(16#3152#, 16#1164#),
(16#3153#, 16#1165#),
(16#3154#, 16#1166#),
(16#3155#, 16#1167#),
(16#3156#, 16#1168#),
(16#3157#, 16#1169#),
(16#3158#, 16#116A#),
(16#3159#, 16#116B#),
(16#315A#, 16#116C#),
(16#315B#, 16#116D#),
(16#315C#, 16#116E#),
(16#315D#, 16#116F#),
(16#315E#, 16#1170#),
(16#315F#, 16#1171#),
(16#3160#, 16#1172#),
(16#3161#, 16#1173#),
(16#3162#, 16#1174#),
(16#3163#, 16#1175#),
(16#3164#, 16#1160#),
(16#3165#, 16#1114#),
(16#3166#, 16#1115#),
(16#3167#, 16#11C7#),
(16#3168#, 16#11C8#),
(16#3169#, 16#11CC#),
(16#316A#, 16#11CE#),
(16#316B#, 16#11D3#),
(16#316C#, 16#11D7#),
(16#316D#, 16#11D9#),
(16#316E#, 16#111C#),
(16#316F#, 16#11DD#),
(16#3170#, 16#11DF#),
(16#3171#, 16#111D#),
(16#3172#, 16#111E#),
(16#3173#, 16#1120#),
(16#3174#, 16#1122#),
(16#3175#, 16#1123#),
(16#3176#, 16#1127#),
(16#3177#, 16#1129#),
(16#3178#, 16#112B#),
(16#3179#, 16#112C#),
(16#317A#, 16#112D#),
(16#317B#, 16#112E#),
(16#317C#, 16#112F#),
(16#317D#, 16#1132#),
(16#317E#, 16#1136#),
(16#317F#, 16#1140#),
(16#3180#, 16#1147#),
(16#3181#, 16#114C#),
(16#3182#, 16#11F1#),
(16#3183#, 16#11F2#),
(16#3184#, 16#1157#),
(16#3185#, 16#1158#),
(16#3186#, 16#1159#),
(16#3187#, 16#1184#),
(16#3188#, 16#1185#),
(16#3189#, 16#1188#),
(16#318A#, 16#1191#),
(16#318B#, 16#1192#),
(16#318C#, 16#1194#),
(16#318D#, 16#119E#),
(16#318E#, 16#11A1#),
(16#3192#, 16#4E00#),
(16#3193#, 16#4E8C#),
(16#3194#, 16#4E09#),
(16#3195#, 16#56DB#),
(16#3196#, 16#4E0A#),
(16#3197#, 16#4E2D#),
(16#3198#, 16#4E0B#),
(16#3199#, 16#7532#),
(16#319A#, 16#4E59#),
(16#319B#, 16#4E19#),
(16#319C#, 16#4E01#),
(16#319D#, 16#5929#),
(16#319E#, 16#5730#),
(16#319F#, 16#4EBA#),
(16#3200#, 16#0028#),
(16#3201#, 16#0028#),
(16#3202#, 16#0028#),
(16#3203#, 16#0028#),
(16#3204#, 16#0028#),
(16#3205#, 16#0028#),
(16#3206#, 16#0028#),
(16#3207#, 16#0028#),
(16#3208#, 16#0028#),
(16#3209#, 16#0028#),
(16#320A#, 16#0028#),
(16#320B#, 16#0028#),
(16#320C#, 16#0028#),
(16#320D#, 16#0028#),
(16#320E#, 16#0028#),
(16#320F#, 16#0028#),
(16#3210#, 16#0028#),
(16#3211#, 16#0028#),
(16#3212#, 16#0028#),
(16#3213#, 16#0028#),
(16#3214#, 16#0028#),
(16#3215#, 16#0028#),
(16#3216#, 16#0028#),
(16#3217#, 16#0028#),
(16#3218#, 16#0028#),
(16#3219#, 16#0028#),
(16#321A#, 16#0028#),
(16#321B#, 16#0028#),
(16#321C#, 16#0028#),
(16#321D#, 16#0028#),
(16#321E#, 16#0028#),
(16#3220#, 16#0028#),
(16#3221#, 16#0028#),
(16#3222#, 16#0028#),
(16#3223#, 16#0028#),
(16#3224#, 16#0028#),
(16#3225#, 16#0028#),
(16#3226#, 16#0028#),
(16#3227#, 16#0028#),
(16#3228#, 16#0028#),
(16#3229#, 16#0028#),
(16#322A#, 16#0028#),
(16#322B#, 16#0028#),
(16#322C#, 16#0028#),
(16#322D#, 16#0028#),
(16#322E#, 16#0028#),
(16#322F#, 16#0028#),
(16#3230#, 16#0028#),
(16#3231#, 16#0028#),
(16#3232#, 16#0028#),
(16#3233#, 16#0028#),
(16#3234#, 16#0028#),
(16#3235#, 16#0028#),
(16#3236#, 16#0028#),
(16#3237#, 16#0028#),
(16#3238#, 16#0028#),
(16#3239#, 16#0028#),
(16#323A#, 16#0028#),
(16#323B#, 16#0028#),
(16#323C#, 16#0028#),
(16#323D#, 16#0028#),
(16#323E#, 16#0028#),
(16#323F#, 16#0028#),
(16#3240#, 16#0028#),
(16#3241#, 16#0028#),
(16#3242#, 16#0028#),
(16#3243#, 16#0028#),
(16#3244#, 16#554F#),
(16#3245#, 16#5E7C#),
(16#3246#, 16#6587#),
(16#3247#, 16#7B8F#),
(16#3250#, 16#0050#),
(16#3251#, 16#0032#),
(16#3252#, 16#0032#),
(16#3253#, 16#0032#),
(16#3254#, 16#0032#),
(16#3255#, 16#0032#),
(16#3256#, 16#0032#),
(16#3257#, 16#0032#),
(16#3258#, 16#0032#),
(16#3259#, 16#0032#),
(16#325A#, 16#0033#),
(16#325B#, 16#0033#),
(16#325C#, 16#0033#),
(16#325D#, 16#0033#),
(16#325E#, 16#0033#),
(16#325F#, 16#0033#),
(16#3260#, 16#1100#),
(16#3261#, 16#1102#),
(16#3262#, 16#1103#),
(16#3263#, 16#1105#),
(16#3264#, 16#1106#),
(16#3265#, 16#1107#),
(16#3266#, 16#1109#),
(16#3267#, 16#110B#),
(16#3268#, 16#110C#),
(16#3269#, 16#110E#),
(16#326A#, 16#110F#),
(16#326B#, 16#1110#),
(16#326C#, 16#1111#),
(16#326D#, 16#1112#),
(16#326E#, 16#1100#),
(16#326F#, 16#1102#),
(16#3270#, 16#1103#),
(16#3271#, 16#1105#),
(16#3272#, 16#1106#),
(16#3273#, 16#1107#),
(16#3274#, 16#1109#),
(16#3275#, 16#110B#),
(16#3276#, 16#110C#),
(16#3277#, 16#110E#),
(16#3278#, 16#110F#),
(16#3279#, 16#1110#),
(16#327A#, 16#1111#),
(16#327B#, 16#1112#),
(16#327C#, 16#110E#),
(16#327D#, 16#110C#),
(16#327E#, 16#110B#),
(16#3280#, 16#4E00#),
(16#3281#, 16#4E8C#),
(16#3282#, 16#4E09#),
(16#3283#, 16#56DB#),
(16#3284#, 16#4E94#),
(16#3285#, 16#516D#),
(16#3286#, 16#4E03#),
(16#3287#, 16#516B#),
(16#3288#, 16#4E5D#),
(16#3289#, 16#5341#),
(16#328A#, 16#6708#),
(16#328B#, 16#706B#),
(16#328C#, 16#6C34#),
(16#328D#, 16#6728#),
(16#328E#, 16#91D1#),
(16#328F#, 16#571F#),
(16#3290#, 16#65E5#),
(16#3291#, 16#682A#),
(16#3292#, 16#6709#),
(16#3293#, 16#793E#),
(16#3294#, 16#540D#),
(16#3295#, 16#7279#),
(16#3296#, 16#8CA1#),
(16#3297#, 16#795D#),
(16#3298#, 16#52B4#),
(16#3299#, 16#79D8#),
(16#329A#, 16#7537#),
(16#329B#, 16#5973#),
(16#329C#, 16#9069#),
(16#329D#, 16#512A#),
(16#329E#, 16#5370#),
(16#329F#, 16#6CE8#),
(16#32A0#, 16#9805#),
(16#32A1#, 16#4F11#),
(16#32A2#, 16#5199#),
(16#32A3#, 16#6B63#),
(16#32A4#, 16#4E0A#),
(16#32A5#, 16#4E2D#),
(16#32A6#, 16#4E0B#),
(16#32A7#, 16#5DE6#),
(16#32A8#, 16#53F3#),
(16#32A9#, 16#533B#),
(16#32AA#, 16#5B97#),
(16#32AB#, 16#5B66#),
(16#32AC#, 16#76E3#),
(16#32AD#, 16#4F01#),
(16#32AE#, 16#8CC7#),
(16#32AF#, 16#5354#),
(16#32B0#, 16#591C#),
(16#32B1#, 16#0033#),
(16#32B2#, 16#0033#),
(16#32B3#, 16#0033#),
(16#32B4#, 16#0033#),
(16#32B5#, 16#0034#),
(16#32B6#, 16#0034#),
(16#32B7#, 16#0034#),
(16#32B8#, 16#0034#),
(16#32B9#, 16#0034#),
(16#32BA#, 16#0034#),
(16#32BB#, 16#0034#),
(16#32BC#, 16#0034#),
(16#32BD#, 16#0034#),
(16#32BE#, 16#0034#),
(16#32BF#, 16#0035#),
(16#32C0#, 16#0031#),
(16#32C1#, 16#0032#),
(16#32C2#, 16#0033#),
(16#32C3#, 16#0034#),
(16#32C4#, 16#0035#),
(16#32C5#, 16#0036#),
(16#32C6#, 16#0037#),
(16#32C7#, 16#0038#),
(16#32C8#, 16#0039#),
(16#32C9#, 16#0031#),
(16#32CA#, 16#0031#),
(16#32CB#, 16#0031#),
(16#32CC#, 16#0048#),
(16#32CD#, 16#0065#),
(16#32CE#, 16#0065#),
(16#32CF#, 16#004C#),
(16#32D0#, 16#30A2#),
(16#32D1#, 16#30A4#),
(16#32D2#, 16#30A6#),
(16#32D3#, 16#30A8#),
(16#32D4#, 16#30AA#),
(16#32D5#, 16#30AB#),
(16#32D6#, 16#30AD#),
(16#32D7#, 16#30AF#),
(16#32D8#, 16#30B1#),
(16#32D9#, 16#30B3#),
(16#32DA#, 16#30B5#),
(16#32DB#, 16#30B7#),
(16#32DC#, 16#30B9#),
(16#32DD#, 16#30BB#),
(16#32DE#, 16#30BD#),
(16#32DF#, 16#30BF#),
(16#32E0#, 16#30C1#),
(16#32E1#, 16#30C4#),
(16#32E2#, 16#30C6#),
(16#32E3#, 16#30C8#),
(16#32E4#, 16#30CA#),
(16#32E5#, 16#30CB#),
(16#32E6#, 16#30CC#),
(16#32E7#, 16#30CD#),
(16#32E8#, 16#30CE#),
(16#32E9#, 16#30CF#),
(16#32EA#, 16#30D2#),
(16#32EB#, 16#30D5#),
(16#32EC#, 16#30D8#),
(16#32ED#, 16#30DB#),
(16#32EE#, 16#30DE#),
(16#32EF#, 16#30DF#),
(16#32F0#, 16#30E0#),
(16#32F1#, 16#30E1#),
(16#32F2#, 16#30E2#),
(16#32F3#, 16#30E4#),
(16#32F4#, 16#30E6#),
(16#32F5#, 16#30E8#),
(16#32F6#, 16#30E9#),
(16#32F7#, 16#30EA#),
(16#32F8#, 16#30EB#),
(16#32F9#, 16#30EC#),
(16#32FA#, 16#30ED#),
(16#32FB#, 16#30EF#),
(16#32FC#, 16#30F0#),
(16#32FD#, 16#30F1#),
(16#32FE#, 16#30F2#),
(16#32FF#, 16#4EE4#),
(16#3300#, 16#30A2#),
(16#3301#, 16#30A2#),
(16#3302#, 16#30A2#),
(16#3303#, 16#30A2#),
(16#3304#, 16#30A4#),
(16#3305#, 16#30A4#),
(16#3306#, 16#30A6#),
(16#3307#, 16#30A8#),
(16#3308#, 16#30A8#),
(16#3309#, 16#30AA#),
(16#330A#, 16#30AA#),
(16#330B#, 16#30AB#),
(16#330C#, 16#30AB#),
(16#330D#, 16#30AB#),
(16#330E#, 16#30AC#),
(16#330F#, 16#30AC#),
(16#3310#, 16#30AE#),
(16#3311#, 16#30AE#),
(16#3312#, 16#30AD#),
(16#3313#, 16#30AE#),
(16#3314#, 16#30AD#),
(16#3315#, 16#30AD#),
(16#3316#, 16#30AD#),
(16#3317#, 16#30AD#),
(16#3318#, 16#30B0#),
(16#3319#, 16#30B0#),
(16#331A#, 16#30AF#),
(16#331B#, 16#30AF#),
(16#331C#, 16#30B1#),
(16#331D#, 16#30B3#),
(16#331E#, 16#30B3#),
(16#331F#, 16#30B5#),
(16#3320#, 16#30B5#),
(16#3321#, 16#30B7#),
(16#3322#, 16#30BB#),
(16#3323#, 16#30BB#),
(16#3324#, 16#30C0#),
(16#3325#, 16#30C7#),
(16#3326#, 16#30C9#),
(16#3327#, 16#30C8#),
(16#3328#, 16#30CA#),
(16#3329#, 16#30CE#),
(16#332A#, 16#30CF#),
(16#332B#, 16#30D1#),
(16#332C#, 16#30D1#),
(16#332D#, 16#30D0#),
(16#332E#, 16#30D4#),
(16#332F#, 16#30D4#),
(16#3330#, 16#30D4#),
(16#3331#, 16#30D3#),
(16#3332#, 16#30D5#),
(16#3333#, 16#30D5#),
(16#3334#, 16#30D6#),
(16#3335#, 16#30D5#),
(16#3336#, 16#30D8#),
(16#3337#, 16#30DA#),
(16#3338#, 16#30DA#),
(16#3339#, 16#30D8#),
(16#333A#, 16#30DA#),
(16#333B#, 16#30DA#),
(16#333C#, 16#30D9#),
(16#333D#, 16#30DD#),
(16#333E#, 16#30DC#),
(16#333F#, 16#30DB#),
(16#3340#, 16#30DD#),
(16#3341#, 16#30DB#),
(16#3342#, 16#30DB#),
(16#3343#, 16#30DE#),
(16#3344#, 16#30DE#),
(16#3345#, 16#30DE#),
(16#3346#, 16#30DE#),
(16#3347#, 16#30DE#),
(16#3348#, 16#30DF#),
(16#3349#, 16#30DF#),
(16#334A#, 16#30DF#),
(16#334B#, 16#30E1#),
(16#334C#, 16#30E1#),
(16#334D#, 16#30E1#),
(16#334E#, 16#30E4#),
(16#334F#, 16#30E4#),
(16#3350#, 16#30E6#),
(16#3351#, 16#30EA#),
(16#3352#, 16#30EA#),
(16#3353#, 16#30EB#),
(16#3354#, 16#30EB#),
(16#3355#, 16#30EC#),
(16#3356#, 16#30EC#),
(16#3357#, 16#30EF#),
(16#3358#, 16#0030#),
(16#3359#, 16#0031#),
(16#335A#, 16#0032#),
(16#335B#, 16#0033#),
(16#335C#, 16#0034#),
(16#335D#, 16#0035#),
(16#335E#, 16#0036#),
(16#335F#, 16#0037#),
(16#3360#, 16#0038#),
(16#3361#, 16#0039#),
(16#3362#, 16#0031#),
(16#3363#, 16#0031#),
(16#3364#, 16#0031#),
(16#3365#, 16#0031#),
(16#3366#, 16#0031#),
(16#3367#, 16#0031#),
(16#3368#, 16#0031#),
(16#3369#, 16#0031#),
(16#336A#, 16#0031#),
(16#336B#, 16#0031#),
(16#336C#, 16#0032#),
(16#336D#, 16#0032#),
(16#336E#, 16#0032#),
(16#336F#, 16#0032#),
(16#3370#, 16#0032#),
(16#3371#, 16#0068#),
(16#3372#, 16#0064#),
(16#3373#, 16#0041#),
(16#3374#, 16#0062#),
(16#3375#, 16#006F#),
(16#3376#, 16#0070#),
(16#3377#, 16#0064#),
(16#3378#, 16#0064#),
(16#3379#, 16#0064#),
(16#337A#, 16#0049#),
(16#337B#, 16#5E73#),
(16#337C#, 16#662D#),
(16#337D#, 16#5927#),
(16#337E#, 16#660E#),
(16#337F#, 16#682A#),
(16#3380#, 16#0070#),
(16#3381#, 16#006E#),
(16#3382#, 16#03BC#),
(16#3383#, 16#006D#),
(16#3384#, 16#006B#),
(16#3385#, 16#004B#),
(16#3386#, 16#004D#),
(16#3387#, 16#0047#),
(16#3388#, 16#0063#),
(16#3389#, 16#006B#),
(16#338A#, 16#0070#),
(16#338B#, 16#006E#),
(16#338C#, 16#03BC#),
(16#338D#, 16#03BC#),
(16#338E#, 16#006D#),
(16#338F#, 16#006B#),
(16#3390#, 16#0048#),
(16#3391#, 16#006B#),
(16#3392#, 16#004D#),
(16#3393#, 16#0047#),
(16#3394#, 16#0054#),
(16#3395#, 16#03BC#),
(16#3396#, 16#006D#),
(16#3397#, 16#0064#),
(16#3398#, 16#006B#),
(16#3399#, 16#0066#),
(16#339A#, 16#006E#),
(16#339B#, 16#03BC#),
(16#339C#, 16#006D#),
(16#339D#, 16#0063#),
(16#339E#, 16#006B#),
(16#339F#, 16#006D#),
(16#33A0#, 16#0063#),
(16#33A1#, 16#006D#),
(16#33A2#, 16#006B#),
(16#33A3#, 16#006D#),
(16#33A4#, 16#0063#),
(16#33A5#, 16#006D#),
(16#33A6#, 16#006B#),
(16#33A7#, 16#006D#),
(16#33A8#, 16#006D#),
(16#33A9#, 16#0050#),
(16#33AA#, 16#006B#),
(16#33AB#, 16#004D#),
(16#33AC#, 16#0047#),
(16#33AD#, 16#0072#),
(16#33AE#, 16#0072#),
(16#33AF#, 16#0072#),
(16#33B0#, 16#0070#),
(16#33B1#, 16#006E#),
(16#33B2#, 16#03BC#),
(16#33B3#, 16#006D#),
(16#33B4#, 16#0070#),
(16#33B5#, 16#006E#),
(16#33B6#, 16#03BC#),
(16#33B7#, 16#006D#),
(16#33B8#, 16#006B#),
(16#33B9#, 16#004D#),
(16#33BA#, 16#0070#),
(16#33BB#, 16#006E#),
(16#33BC#, 16#03BC#),
(16#33BD#, 16#006D#),
(16#33BE#, 16#006B#),
(16#33BF#, 16#004D#),
(16#33C0#, 16#006B#),
(16#33C1#, 16#004D#),
(16#33C2#, 16#0061#),
(16#33C3#, 16#0042#),
(16#33C4#, 16#0063#),
(16#33C5#, 16#0063#),
(16#33C6#, 16#0043#),
(16#33C7#, 16#0043#),
(16#33C8#, 16#0064#),
(16#33C9#, 16#0047#),
(16#33CA#, 16#0068#),
(16#33CB#, 16#0048#),
(16#33CC#, 16#0069#),
(16#33CD#, 16#004B#),
(16#33CE#, 16#004B#),
(16#33CF#, 16#006B#),
(16#33D0#, 16#006C#),
(16#33D1#, 16#006C#),
(16#33D2#, 16#006C#),
(16#33D3#, 16#006C#),
(16#33D4#, 16#006D#),
(16#33D5#, 16#006D#),
(16#33D6#, 16#006D#),
(16#33D7#, 16#0050#),
(16#33D8#, 16#0070#),
(16#33D9#, 16#0050#),
(16#33DA#, 16#0050#),
(16#33DB#, 16#0073#),
(16#33DC#, 16#0053#),
(16#33DD#, 16#0057#),
(16#33DE#, 16#0056#),
(16#33DF#, 16#0041#),
(16#33E0#, 16#0031#),
(16#33E1#, 16#0032#),
(16#33E2#, 16#0033#),
(16#33E3#, 16#0034#),
(16#33E4#, 16#0035#),
(16#33E5#, 16#0036#),
(16#33E6#, 16#0037#),
(16#33E7#, 16#0038#),
(16#33E8#, 16#0039#),
(16#33E9#, 16#0031#),
(16#33EA#, 16#0031#),
(16#33EB#, 16#0031#),
(16#33EC#, 16#0031#),
(16#33ED#, 16#0031#),
(16#33EE#, 16#0031#),
(16#33EF#, 16#0031#),
(16#33F0#, 16#0031#),
(16#33F1#, 16#0031#),
(16#33F2#, 16#0031#),
(16#33F3#, 16#0032#),
(16#33F4#, 16#0032#),
(16#33F5#, 16#0032#),
(16#33F6#, 16#0032#),
(16#33F7#, 16#0032#),
(16#33F8#, 16#0032#),
(16#33F9#, 16#0032#),
(16#33FA#, 16#0032#),
(16#33FB#, 16#0032#),
(16#33FC#, 16#0032#),
(16#33FD#, 16#0033#),
(16#33FE#, 16#0033#),
(16#33FF#, 16#0067#),
(16#A69C#, 16#044A#),
(16#A69D#, 16#044C#),
(16#A770#, 16#A76F#),
(16#A7F8#, 16#0126#),
(16#A7F9#, 16#0153#),
(16#AB5C#, 16#A727#),
(16#AB5D#, 16#AB37#),
(16#AB5E#, 16#026B#),
(16#AB5F#, 16#AB52#),
(16#AB69#, 16#028D#),
(16#F900#, 16#8C48#),
(16#F901#, 16#66F4#),
(16#F902#, 16#8ECA#),
(16#F903#, 16#8CC8#),
(16#F904#, 16#6ED1#),
(16#F905#, 16#4E32#),
(16#F906#, 16#53E5#),
(16#F907#, 16#9F9C#),
(16#F908#, 16#9F9C#),
(16#F909#, 16#5951#),
(16#F90A#, 16#91D1#),
(16#F90B#, 16#5587#),
(16#F90C#, 16#5948#),
(16#F90D#, 16#61F6#),
(16#F90E#, 16#7669#),
(16#F90F#, 16#7F85#),
(16#F910#, 16#863F#),
(16#F911#, 16#87BA#),
(16#F912#, 16#88F8#),
(16#F913#, 16#908F#),
(16#F914#, 16#6A02#),
(16#F915#, 16#6D1B#),
(16#F916#, 16#70D9#),
(16#F917#, 16#73DE#),
(16#F918#, 16#843D#),
(16#F919#, 16#916A#),
(16#F91A#, 16#99F1#),
(16#F91B#, 16#4E82#),
(16#F91C#, 16#5375#),
(16#F91D#, 16#6B04#),
(16#F91E#, 16#721B#),
(16#F91F#, 16#862D#),
(16#F920#, 16#9E1E#),
(16#F921#, 16#5D50#),
(16#F922#, 16#6FEB#),
(16#F923#, 16#85CD#),
(16#F924#, 16#8964#),
(16#F925#, 16#62C9#),
(16#F926#, 16#81D8#),
(16#F927#, 16#881F#),
(16#F928#, 16#5ECA#),
(16#F929#, 16#6717#),
(16#F92A#, 16#6D6A#),
(16#F92B#, 16#72FC#),
(16#F92C#, 16#90CE#),
(16#F92D#, 16#4F86#),
(16#F92E#, 16#51B7#),
(16#F92F#, 16#52DE#),
(16#F930#, 16#64C4#),
(16#F931#, 16#6AD3#),
(16#F932#, 16#7210#),
(16#F933#, 16#76E7#),
(16#F934#, 16#8001#),
(16#F935#, 16#8606#),
(16#F936#, 16#865C#),
(16#F937#, 16#8DEF#),
(16#F938#, 16#9732#),
(16#F939#, 16#9B6F#),
(16#F93A#, 16#9DFA#),
(16#F93B#, 16#788C#),
(16#F93C#, 16#797F#),
(16#F93D#, 16#7DA0#),
(16#F93E#, 16#83C9#),
(16#F93F#, 16#9304#),
(16#F940#, 16#9E7F#),
(16#F941#, 16#8AD6#),
(16#F942#, 16#58DF#),
(16#F943#, 16#5F04#),
(16#F944#, 16#7C60#),
(16#F945#, 16#807E#),
(16#F946#, 16#7262#),
(16#F947#, 16#78CA#),
(16#F948#, 16#8CC2#),
(16#F949#, 16#96F7#),
(16#F94A#, 16#58D8#),
(16#F94B#, 16#5C62#),
(16#F94C#, 16#6A13#),
(16#F94D#, 16#6DDA#),
(16#F94E#, 16#6F0F#),
(16#F94F#, 16#7D2F#),
(16#F950#, 16#7E37#),
(16#F951#, 16#964B#),
(16#F952#, 16#52D2#),
(16#F953#, 16#808B#),
(16#F954#, 16#51DC#),
(16#F955#, 16#51CC#),
(16#F956#, 16#7A1C#),
(16#F957#, 16#7DBE#),
(16#F958#, 16#83F1#),
(16#F959#, 16#9675#),
(16#F95A#, 16#8B80#),
(16#F95B#, 16#62CF#),
(16#F95C#, 16#6A02#),
(16#F95D#, 16#8AFE#),
(16#F95E#, 16#4E39#),
(16#F95F#, 16#5BE7#),
(16#F960#, 16#6012#),
(16#F961#, 16#7387#),
(16#F962#, 16#7570#),
(16#F963#, 16#5317#),
(16#F964#, 16#78FB#),
(16#F965#, 16#4FBF#),
(16#F966#, 16#5FA9#),
(16#F967#, 16#4E0D#),
(16#F968#, 16#6CCC#),
(16#F969#, 16#6578#),
(16#F96A#, 16#7D22#),
(16#F96B#, 16#53C3#),
(16#F96C#, 16#585E#),
(16#F96D#, 16#7701#),
(16#F96E#, 16#8449#),
(16#F96F#, 16#8AAA#),
(16#F970#, 16#6BBA#),
(16#F971#, 16#8FB0#),
(16#F972#, 16#6C88#),
(16#F973#, 16#62FE#),
(16#F974#, 16#82E5#),
(16#F975#, 16#63A0#),
(16#F976#, 16#7565#),
(16#F977#, 16#4EAE#),
(16#F978#, 16#5169#),
(16#F979#, 16#51C9#),
(16#F97A#, 16#6881#),
(16#F97B#, 16#7CE7#),
(16#F97C#, 16#826F#),
(16#F97D#, 16#8AD2#),
(16#F97E#, 16#91CF#),
(16#F97F#, 16#52F5#),
(16#F980#, 16#5442#),
(16#F981#, 16#5973#),
(16#F982#, 16#5EEC#),
(16#F983#, 16#65C5#),
(16#F984#, 16#6FFE#),
(16#F985#, 16#792A#),
(16#F986#, 16#95AD#),
(16#F987#, 16#9A6A#),
(16#F988#, 16#9E97#),
(16#F989#, 16#9ECE#),
(16#F98A#, 16#529B#),
(16#F98B#, 16#66C6#),
(16#F98C#, 16#6B77#),
(16#F98D#, 16#8F62#),
(16#F98E#, 16#5E74#),
(16#F98F#, 16#6190#),
(16#F990#, 16#6200#),
(16#F991#, 16#649A#),
(16#F992#, 16#6F23#),
(16#F993#, 16#7149#),
(16#F994#, 16#7489#),
(16#F995#, 16#79CA#),
(16#F996#, 16#7DF4#),
(16#F997#, 16#806F#),
(16#F998#, 16#8F26#),
(16#F999#, 16#84EE#),
(16#F99A#, 16#9023#),
(16#F99B#, 16#934A#),
(16#F99C#, 16#5217#),
(16#F99D#, 16#52A3#),
(16#F99E#, 16#54BD#),
(16#F99F#, 16#70C8#),
(16#F9A0#, 16#88C2#),
(16#F9A1#, 16#8AAA#),
(16#F9A2#, 16#5EC9#),
(16#F9A3#, 16#5FF5#),
(16#F9A4#, 16#637B#),
(16#F9A5#, 16#6BAE#),
(16#F9A6#, 16#7C3E#),
(16#F9A7#, 16#7375#),
(16#F9A8#, 16#4EE4#),
(16#F9A9#, 16#56F9#),
(16#F9AA#, 16#5BE7#),
(16#F9AB#, 16#5DBA#),
(16#F9AC#, 16#601C#),
(16#F9AD#, 16#73B2#),
(16#F9AE#, 16#7469#),
(16#F9AF#, 16#7F9A#),
(16#F9B0#, 16#8046#),
(16#F9B1#, 16#9234#),
(16#F9B2#, 16#96F6#),
(16#F9B3#, 16#9748#),
(16#F9B4#, 16#9818#),
(16#F9B5#, 16#4F8B#),
(16#F9B6#, 16#79AE#),
(16#F9B7#, 16#91B4#),
(16#F9B8#, 16#96B8#),
(16#F9B9#, 16#60E1#),
(16#F9BA#, 16#4E86#),
(16#F9BB#, 16#50DA#),
(16#F9BC#, 16#5BEE#),
(16#F9BD#, 16#5C3F#),
(16#F9BE#, 16#6599#),
(16#F9BF#, 16#6A02#),
(16#F9C0#, 16#71CE#),
(16#F9C1#, 16#7642#),
(16#F9C2#, 16#84FC#),
(16#F9C3#, 16#907C#),
(16#F9C4#, 16#9F8D#),
(16#F9C5#, 16#6688#),
(16#F9C6#, 16#962E#),
(16#F9C7#, 16#5289#),
(16#F9C8#, 16#677B#),
(16#F9C9#, 16#67F3#),
(16#F9CA#, 16#6D41#),
(16#F9CB#, 16#6E9C#),
(16#F9CC#, 16#7409#),
(16#F9CD#, 16#7559#),
(16#F9CE#, 16#786B#),
(16#F9CF#, 16#7D10#),
(16#F9D0#, 16#985E#),
(16#F9D1#, 16#516D#),
(16#F9D2#, 16#622E#),
(16#F9D3#, 16#9678#),
(16#F9D4#, 16#502B#),
(16#F9D5#, 16#5D19#),
(16#F9D6#, 16#6DEA#),
(16#F9D7#, 16#8F2A#),
(16#F9D8#, 16#5F8B#),
(16#F9D9#, 16#6144#),
(16#F9DA#, 16#6817#),
(16#F9DB#, 16#7387#),
(16#F9DC#, 16#9686#),
(16#F9DD#, 16#5229#),
(16#F9DE#, 16#540F#),
(16#F9DF#, 16#5C65#),
(16#F9E0#, 16#6613#),
(16#F9E1#, 16#674E#),
(16#F9E2#, 16#68A8#),
(16#F9E3#, 16#6CE5#),
(16#F9E4#, 16#7406#),
(16#F9E5#, 16#75E2#),
(16#F9E6#, 16#7F79#),
(16#F9E7#, 16#88CF#),
(16#F9E8#, 16#88E1#),
(16#F9E9#, 16#91CC#),
(16#F9EA#, 16#96E2#),
(16#F9EB#, 16#533F#),
(16#F9EC#, 16#6EBA#),
(16#F9ED#, 16#541D#),
(16#F9EE#, 16#71D0#),
(16#F9EF#, 16#7498#),
(16#F9F0#, 16#85FA#),
(16#F9F1#, 16#96A3#),
(16#F9F2#, 16#9C57#),
(16#F9F3#, 16#9E9F#),
(16#F9F4#, 16#6797#),
(16#F9F5#, 16#6DCB#),
(16#F9F6#, 16#81E8#),
(16#F9F7#, 16#7ACB#),
(16#F9F8#, 16#7B20#),
(16#F9F9#, 16#7C92#),
(16#F9FA#, 16#72C0#),
(16#F9FB#, 16#7099#),
(16#F9FC#, 16#8B58#),
(16#F9FD#, 16#4EC0#),
(16#F9FE#, 16#8336#),
(16#F9FF#, 16#523A#),
(16#FA00#, 16#5207#),
(16#FA01#, 16#5EA6#),
(16#FA02#, 16#62D3#),
(16#FA03#, 16#7CD6#),
(16#FA04#, 16#5B85#),
(16#FA05#, 16#6D1E#),
(16#FA06#, 16#66B4#),
(16#FA07#, 16#8F3B#),
(16#FA08#, 16#884C#),
(16#FA09#, 16#964D#),
(16#FA0A#, 16#898B#),
(16#FA0B#, 16#5ED3#),
(16#FA0C#, 16#5140#),
(16#FA0D#, 16#55C0#),
(16#FA10#, 16#585A#),
(16#FA12#, 16#6674#),
(16#FA15#, 16#51DE#),
(16#FA16#, 16#732A#),
(16#FA17#, 16#76CA#),
(16#FA18#, 16#793C#),
(16#FA19#, 16#795E#),
(16#FA1A#, 16#7965#),
(16#FA1B#, 16#798F#),
(16#FA1C#, 16#9756#),
(16#FA1D#, 16#7CBE#),
(16#FA1E#, 16#7FBD#),
(16#FA20#, 16#8612#),
(16#FA22#, 16#8AF8#),
(16#FA25#, 16#9038#),
(16#FA26#, 16#90FD#),
(16#FA2A#, 16#98EF#),
(16#FA2B#, 16#98FC#),
(16#FA2C#, 16#9928#),
(16#FA2D#, 16#9DB4#),
(16#FA2E#, 16#90DE#),
(16#FA2F#, 16#96B7#),
(16#FA30#, 16#4FAE#),
(16#FA31#, 16#50E7#),
(16#FA32#, 16#514D#),
(16#FA33#, 16#52C9#),
(16#FA34#, 16#52E4#),
(16#FA35#, 16#5351#),
(16#FA36#, 16#559D#),
(16#FA37#, 16#5606#),
(16#FA38#, 16#5668#),
(16#FA39#, 16#5840#),
(16#FA3A#, 16#58A8#),
(16#FA3B#, 16#5C64#),
(16#FA3C#, 16#5C6E#),
(16#FA3D#, 16#6094#),
(16#FA3E#, 16#6168#),
(16#FA3F#, 16#618E#),
(16#FA40#, 16#61F2#),
(16#FA41#, 16#654F#),
(16#FA42#, 16#65E2#),
(16#FA43#, 16#6691#),
(16#FA44#, 16#6885#),
(16#FA45#, 16#6D77#),
(16#FA46#, 16#6E1A#),
(16#FA47#, 16#6F22#),
(16#FA48#, 16#716E#),
(16#FA49#, 16#722B#),
(16#FA4A#, 16#7422#),
(16#FA4B#, 16#7891#),
(16#FA4C#, 16#793E#),
(16#FA4D#, 16#7949#),
(16#FA4E#, 16#7948#),
(16#FA4F#, 16#7950#),
(16#FA50#, 16#7956#),
(16#FA51#, 16#795D#),
(16#FA52#, 16#798D#),
(16#FA53#, 16#798E#),
(16#FA54#, 16#7A40#),
(16#FA55#, 16#7A81#),
(16#FA56#, 16#7BC0#),
(16#FA57#, 16#7DF4#),
(16#FA58#, 16#7E09#),
(16#FA59#, 16#7E41#),
(16#FA5A#, 16#7F72#),
(16#FA5B#, 16#8005#),
(16#FA5C#, 16#81ED#),
(16#FA5D#, 16#8279#),
(16#FA5E#, 16#8279#),
(16#FA5F#, 16#8457#),
(16#FA60#, 16#8910#),
(16#FA61#, 16#8996#),
(16#FA62#, 16#8B01#),
(16#FA63#, 16#8B39#),
(16#FA64#, 16#8CD3#),
(16#FA65#, 16#8D08#),
(16#FA66#, 16#8FB6#),
(16#FA67#, 16#9038#),
(16#FA68#, 16#96E3#),
(16#FA69#, 16#97FF#),
(16#FA6A#, 16#983B#),
(16#FA6B#, 16#6075#),
(16#FA6C#, 16#242EE#),
(16#FA6D#, 16#8218#),
(16#FA70#, 16#4E26#),
(16#FA71#, 16#51B5#),
(16#FA72#, 16#5168#),
(16#FA73#, 16#4F80#),
(16#FA74#, 16#5145#),
(16#FA75#, 16#5180#),
(16#FA76#, 16#52C7#),
(16#FA77#, 16#52FA#),
(16#FA78#, 16#559D#),
(16#FA79#, 16#5555#),
(16#FA7A#, 16#5599#),
(16#FA7B#, 16#55E2#),
(16#FA7C#, 16#585A#),
(16#FA7D#, 16#58B3#),
(16#FA7E#, 16#5944#),
(16#FA7F#, 16#5954#),
(16#FA80#, 16#5A62#),
(16#FA81#, 16#5B28#),
(16#FA82#, 16#5ED2#),
(16#FA83#, 16#5ED9#),
(16#FA84#, 16#5F69#),
(16#FA85#, 16#5FAD#),
(16#FA86#, 16#60D8#),
(16#FA87#, 16#614E#),
(16#FA88#, 16#6108#),
(16#FA89#, 16#618E#),
(16#FA8A#, 16#6160#),
(16#FA8B#, 16#61F2#),
(16#FA8C#, 16#6234#),
(16#FA8D#, 16#63C4#),
(16#FA8E#, 16#641C#),
(16#FA8F#, 16#6452#),
(16#FA90#, 16#6556#),
(16#FA91#, 16#6674#),
(16#FA92#, 16#6717#),
(16#FA93#, 16#671B#),
(16#FA94#, 16#6756#),
(16#FA95#, 16#6B79#),
(16#FA96#, 16#6BBA#),
(16#FA97#, 16#6D41#),
(16#FA98#, 16#6EDB#),
(16#FA99#, 16#6ECB#),
(16#FA9A#, 16#6F22#),
(16#FA9B#, 16#701E#),
(16#FA9C#, 16#716E#),
(16#FA9D#, 16#77A7#),
(16#FA9E#, 16#7235#),
(16#FA9F#, 16#72AF#),
(16#FAA0#, 16#732A#),
(16#FAA1#, 16#7471#),
(16#FAA2#, 16#7506#),
(16#FAA3#, 16#753B#),
(16#FAA4#, 16#761D#),
(16#FAA5#, 16#761F#),
(16#FAA6#, 16#76CA#),
(16#FAA7#, 16#76DB#),
(16#FAA8#, 16#76F4#),
(16#FAA9#, 16#774A#),
(16#FAAA#, 16#7740#),
(16#FAAB#, 16#78CC#),
(16#FAAC#, 16#7AB1#),
(16#FAAD#, 16#7BC0#),
(16#FAAE#, 16#7C7B#),
(16#FAAF#, 16#7D5B#),
(16#FAB0#, 16#7DF4#),
(16#FAB1#, 16#7F3E#),
(16#FAB2#, 16#8005#),
(16#FAB3#, 16#8352#),
(16#FAB4#, 16#83EF#),
(16#FAB5#, 16#8779#),
(16#FAB6#, 16#8941#),
(16#FAB7#, 16#8986#),
(16#FAB8#, 16#8996#),
(16#FAB9#, 16#8ABF#),
(16#FABA#, 16#8AF8#),
(16#FABB#, 16#8ACB#),
(16#FABC#, 16#8B01#),
(16#FABD#, 16#8AFE#),
(16#FABE#, 16#8AED#),
(16#FABF#, 16#8B39#),
(16#FAC0#, 16#8B8A#),
(16#FAC1#, 16#8D08#),
(16#FAC2#, 16#8F38#),
(16#FAC3#, 16#9072#),
(16#FAC4#, 16#9199#),
(16#FAC5#, 16#9276#),
(16#FAC6#, 16#967C#),
(16#FAC7#, 16#96E3#),
(16#FAC8#, 16#9756#),
(16#FAC9#, 16#97DB#),
(16#FACA#, 16#97FF#),
(16#FACB#, 16#980B#),
(16#FACC#, 16#983B#),
(16#FACD#, 16#9B12#),
(16#FACE#, 16#9F9C#),
(16#FACF#, 16#2284A#),
(16#FAD0#, 16#22844#),
(16#FAD1#, 16#233D5#),
(16#FAD2#, 16#3B9D#),
(16#FAD3#, 16#4018#),
(16#FAD4#, 16#4039#),
(16#FAD5#, 16#25249#),
(16#FAD6#, 16#25CD0#),
(16#FAD7#, 16#27ED3#),
(16#FAD8#, 16#9F43#),
(16#FAD9#, 16#9F8E#),
(16#FB00#, 16#0066#),
(16#FB01#, 16#0066#),
(16#FB02#, 16#0066#),
(16#FB03#, 16#0066#),
(16#FB04#, 16#0066#),
(16#FB05#, 16#017F#),
(16#FB06#, 16#0073#),
(16#FB13#, 16#0574#),
(16#FB14#, 16#0574#),
(16#FB15#, 16#0574#),
(16#FB16#, 16#057E#),
(16#FB17#, 16#0574#),
(16#FB1D#, 16#05D9#),
(16#FB1F#, 16#05F2#),
(16#FB20#, 16#05E2#),
(16#FB21#, 16#05D0#),
(16#FB22#, 16#05D3#),
(16#FB23#, 16#05D4#),
(16#FB24#, 16#05DB#),
(16#FB25#, 16#05DC#),
(16#FB26#, 16#05DD#),
(16#FB27#, 16#05E8#),
(16#FB28#, 16#05EA#),
(16#FB29#, 16#002B#),
(16#FB2A#, 16#05E9#),
(16#FB2B#, 16#05E9#),
(16#FB2C#, 16#FB49#),
(16#FB2D#, 16#FB49#),
(16#FB2E#, 16#05D0#),
(16#FB2F#, 16#05D0#),
(16#FB30#, 16#05D0#),
(16#FB31#, 16#05D1#),
(16#FB32#, 16#05D2#),
(16#FB33#, 16#05D3#),
(16#FB34#, 16#05D4#),
(16#FB35#, 16#05D5#),
(16#FB36#, 16#05D6#),
(16#FB38#, 16#05D8#),
(16#FB39#, 16#05D9#),
(16#FB3A#, 16#05DA#),
(16#FB3B#, 16#05DB#),
(16#FB3C#, 16#05DC#),
(16#FB3E#, 16#05DE#),
(16#FB40#, 16#05E0#),
(16#FB41#, 16#05E1#),
(16#FB43#, 16#05E3#),
(16#FB44#, 16#05E4#),
(16#FB46#, 16#05E6#),
(16#FB47#, 16#05E7#),
(16#FB48#, 16#05E8#),
(16#FB49#, 16#05E9#),
(16#FB4A#, 16#05EA#),
(16#FB4B#, 16#05D5#),
(16#FB4C#, 16#05D1#),
(16#FB4D#, 16#05DB#),
(16#FB4E#, 16#05E4#),
(16#FB4F#, 16#05D0#),
(16#FB50#, 16#0671#),
(16#FB51#, 16#0671#),
(16#FB52#, 16#067B#),
(16#FB53#, 16#067B#),
(16#FB54#, 16#067B#),
(16#FB55#, 16#067B#),
(16#FB56#, 16#067E#),
(16#FB57#, 16#067E#),
(16#FB58#, 16#067E#),
(16#FB59#, 16#067E#),
(16#FB5A#, 16#0680#),
(16#FB5B#, 16#0680#),
(16#FB5C#, 16#0680#),
(16#FB5D#, 16#0680#),
(16#FB5E#, 16#067A#),
(16#FB5F#, 16#067A#),
(16#FB60#, 16#067A#),
(16#FB61#, 16#067A#),
(16#FB62#, 16#067F#),
(16#FB63#, 16#067F#),
(16#FB64#, 16#067F#),
(16#FB65#, 16#067F#),
(16#FB66#, 16#0679#),
(16#FB67#, 16#0679#),
(16#FB68#, 16#0679#),
(16#FB69#, 16#0679#),
(16#FB6A#, 16#06A4#),
(16#FB6B#, 16#06A4#),
(16#FB6C#, 16#06A4#),
(16#FB6D#, 16#06A4#),
(16#FB6E#, 16#06A6#),
(16#FB6F#, 16#06A6#),
(16#FB70#, 16#06A6#),
(16#FB71#, 16#06A6#),
(16#FB72#, 16#0684#),
(16#FB73#, 16#0684#),
(16#FB74#, 16#0684#),
(16#FB75#, 16#0684#),
(16#FB76#, 16#0683#),
(16#FB77#, 16#0683#),
(16#FB78#, 16#0683#),
(16#FB79#, 16#0683#),
(16#FB7A#, 16#0686#),
(16#FB7B#, 16#0686#),
(16#FB7C#, 16#0686#),
(16#FB7D#, 16#0686#),
(16#FB7E#, 16#0687#),
(16#FB7F#, 16#0687#),
(16#FB80#, 16#0687#),
(16#FB81#, 16#0687#),
(16#FB82#, 16#068D#),
(16#FB83#, 16#068D#),
(16#FB84#, 16#068C#),
(16#FB85#, 16#068C#),
(16#FB86#, 16#068E#),
(16#FB87#, 16#068E#),
(16#FB88#, 16#0688#),
(16#FB89#, 16#0688#),
(16#FB8A#, 16#0698#),
(16#FB8B#, 16#0698#),
(16#FB8C#, 16#0691#),
(16#FB8D#, 16#0691#),
(16#FB8E#, 16#06A9#),
(16#FB8F#, 16#06A9#),
(16#FB90#, 16#06A9#),
(16#FB91#, 16#06A9#),
(16#FB92#, 16#06AF#),
(16#FB93#, 16#06AF#),
(16#FB94#, 16#06AF#),
(16#FB95#, 16#06AF#),
(16#FB96#, 16#06B3#),
(16#FB97#, 16#06B3#),
(16#FB98#, 16#06B3#),
(16#FB99#, 16#06B3#),
(16#FB9A#, 16#06B1#),
(16#FB9B#, 16#06B1#),
(16#FB9C#, 16#06B1#),
(16#FB9D#, 16#06B1#),
(16#FB9E#, 16#06BA#),
(16#FB9F#, 16#06BA#),
(16#FBA0#, 16#06BB#),
(16#FBA1#, 16#06BB#),
(16#FBA2#, 16#06BB#),
(16#FBA3#, 16#06BB#),
(16#FBA4#, 16#06C0#),
(16#FBA5#, 16#06C0#),
(16#FBA6#, 16#06C1#),
(16#FBA7#, 16#06C1#),
(16#FBA8#, 16#06C1#),
(16#FBA9#, 16#06C1#),
(16#FBAA#, 16#06BE#),
(16#FBAB#, 16#06BE#),
(16#FBAC#, 16#06BE#),
(16#FBAD#, 16#06BE#),
(16#FBAE#, 16#06D2#),
(16#FBAF#, 16#06D2#),
(16#FBB0#, 16#06D3#),
(16#FBB1#, 16#06D3#),
(16#FBD3#, 16#06AD#),
(16#FBD4#, 16#06AD#),
(16#FBD5#, 16#06AD#),
(16#FBD6#, 16#06AD#),
(16#FBD7#, 16#06C7#),
(16#FBD8#, 16#06C7#),
(16#FBD9#, 16#06C6#),
(16#FBDA#, 16#06C6#),
(16#FBDB#, 16#06C8#),
(16#FBDC#, 16#06C8#),
(16#FBDD#, 16#0677#),
(16#FBDE#, 16#06CB#),
(16#FBDF#, 16#06CB#),
(16#FBE0#, 16#06C5#),
(16#FBE1#, 16#06C5#),
(16#FBE2#, 16#06C9#),
(16#FBE3#, 16#06C9#),
(16#FBE4#, 16#06D0#),
(16#FBE5#, 16#06D0#),
(16#FBE6#, 16#06D0#),
(16#FBE7#, 16#06D0#),
(16#FBE8#, 16#0649#),
(16#FBE9#, 16#0649#),
(16#FBEA#, 16#0626#),
(16#FBEB#, 16#0626#),
(16#FBEC#, 16#0626#),
(16#FBED#, 16#0626#),
(16#FBEE#, 16#0626#),
(16#FBEF#, 16#0626#),
(16#FBF0#, 16#0626#),
(16#FBF1#, 16#0626#),
(16#FBF2#, 16#0626#),
(16#FBF3#, 16#0626#),
(16#FBF4#, 16#0626#),
(16#FBF5#, 16#0626#),
(16#FBF6#, 16#0626#),
(16#FBF7#, 16#0626#),
(16#FBF8#, 16#0626#),
(16#FBF9#, 16#0626#),
(16#FBFA#, 16#0626#),
(16#FBFB#, 16#0626#),
(16#FBFC#, 16#06CC#),
(16#FBFD#, 16#06CC#),
(16#FBFE#, 16#06CC#),
(16#FBFF#, 16#06CC#),
(16#FC00#, 16#0626#),
(16#FC01#, 16#0626#),
(16#FC02#, 16#0626#),
(16#FC03#, 16#0626#),
(16#FC04#, 16#0626#),
(16#FC05#, 16#0628#),
(16#FC06#, 16#0628#),
(16#FC07#, 16#0628#),
(16#FC08#, 16#0628#),
(16#FC09#, 16#0628#),
(16#FC0A#, 16#0628#),
(16#FC0B#, 16#062A#),
(16#FC0C#, 16#062A#),
(16#FC0D#, 16#062A#),
(16#FC0E#, 16#062A#),
(16#FC0F#, 16#062A#),
(16#FC10#, 16#062A#),
(16#FC11#, 16#062B#),
(16#FC12#, 16#062B#),
(16#FC13#, 16#062B#),
(16#FC14#, 16#062B#),
(16#FC15#, 16#062C#),
(16#FC16#, 16#062C#),
(16#FC17#, 16#062D#),
(16#FC18#, 16#062D#),
(16#FC19#, 16#062E#),
(16#FC1A#, 16#062E#),
(16#FC1B#, 16#062E#),
(16#FC1C#, 16#0633#),
(16#FC1D#, 16#0633#),
(16#FC1E#, 16#0633#),
(16#FC1F#, 16#0633#),
(16#FC20#, 16#0635#),
(16#FC21#, 16#0635#),
(16#FC22#, 16#0636#),
(16#FC23#, 16#0636#),
(16#FC24#, 16#0636#),
(16#FC25#, 16#0636#),
(16#FC26#, 16#0637#),
(16#FC27#, 16#0637#),
(16#FC28#, 16#0638#),
(16#FC29#, 16#0639#),
(16#FC2A#, 16#0639#),
(16#FC2B#, 16#063A#),
(16#FC2C#, 16#063A#),
(16#FC2D#, 16#0641#),
(16#FC2E#, 16#0641#),
(16#FC2F#, 16#0641#),
(16#FC30#, 16#0641#),
(16#FC31#, 16#0641#),
(16#FC32#, 16#0641#),
(16#FC33#, 16#0642#),
(16#FC34#, 16#0642#),
(16#FC35#, 16#0642#),
(16#FC36#, 16#0642#),
(16#FC37#, 16#0643#),
(16#FC38#, 16#0643#),
(16#FC39#, 16#0643#),
(16#FC3A#, 16#0643#),
(16#FC3B#, 16#0643#),
(16#FC3C#, 16#0643#),
(16#FC3D#, 16#0643#),
(16#FC3E#, 16#0643#),
(16#FC3F#, 16#0644#),
(16#FC40#, 16#0644#),
(16#FC41#, 16#0644#),
(16#FC42#, 16#0644#),
(16#FC43#, 16#0644#),
(16#FC44#, 16#0644#),
(16#FC45#, 16#0645#),
(16#FC46#, 16#0645#),
(16#FC47#, 16#0645#),
(16#FC48#, 16#0645#),
(16#FC49#, 16#0645#),
(16#FC4A#, 16#0645#),
(16#FC4B#, 16#0646#),
(16#FC4C#, 16#0646#),
(16#FC4D#, 16#0646#),
(16#FC4E#, 16#0646#),
(16#FC4F#, 16#0646#),
(16#FC50#, 16#0646#),
(16#FC51#, 16#0647#),
(16#FC52#, 16#0647#),
(16#FC53#, 16#0647#),
(16#FC54#, 16#0647#),
(16#FC55#, 16#064A#),
(16#FC56#, 16#064A#),
(16#FC57#, 16#064A#),
(16#FC58#, 16#064A#),
(16#FC59#, 16#064A#),
(16#FC5A#, 16#064A#),
(16#FC5B#, 16#0630#),
(16#FC5C#, 16#0631#),
(16#FC5D#, 16#0649#),
(16#FC5E#, 16#0020#),
(16#FC5F#, 16#0020#),
(16#FC60#, 16#0020#),
(16#FC61#, 16#0020#),
(16#FC62#, 16#0020#),
(16#FC63#, 16#0020#),
(16#FC64#, 16#0626#),
(16#FC65#, 16#0626#),
(16#FC66#, 16#0626#),
(16#FC67#, 16#0626#),
(16#FC68#, 16#0626#),
(16#FC69#, 16#0626#),
(16#FC6A#, 16#0628#),
(16#FC6B#, 16#0628#),
(16#FC6C#, 16#0628#),
(16#FC6D#, 16#0628#),
(16#FC6E#, 16#0628#),
(16#FC6F#, 16#0628#),
(16#FC70#, 16#062A#),
(16#FC71#, 16#062A#),
(16#FC72#, 16#062A#),
(16#FC73#, 16#062A#),
(16#FC74#, 16#062A#),
(16#FC75#, 16#062A#),
(16#FC76#, 16#062B#),
(16#FC77#, 16#062B#),
(16#FC78#, 16#062B#),
(16#FC79#, 16#062B#),
(16#FC7A#, 16#062B#),
(16#FC7B#, 16#062B#),
(16#FC7C#, 16#0641#),
(16#FC7D#, 16#0641#),
(16#FC7E#, 16#0642#),
(16#FC7F#, 16#0642#),
(16#FC80#, 16#0643#),
(16#FC81#, 16#0643#),
(16#FC82#, 16#0643#),
(16#FC83#, 16#0643#),
(16#FC84#, 16#0643#),
(16#FC85#, 16#0644#),
(16#FC86#, 16#0644#),
(16#FC87#, 16#0644#),
(16#FC88#, 16#0645#),
(16#FC89#, 16#0645#),
(16#FC8A#, 16#0646#),
(16#FC8B#, 16#0646#),
(16#FC8C#, 16#0646#),
(16#FC8D#, 16#0646#),
(16#FC8E#, 16#0646#),
(16#FC8F#, 16#0646#),
(16#FC90#, 16#0649#),
(16#FC91#, 16#064A#),
(16#FC92#, 16#064A#),
(16#FC93#, 16#064A#),
(16#FC94#, 16#064A#),
(16#FC95#, 16#064A#),
(16#FC96#, 16#064A#),
(16#FC97#, 16#0626#),
(16#FC98#, 16#0626#),
(16#FC99#, 16#0626#),
(16#FC9A#, 16#0626#),
(16#FC9B#, 16#0626#),
(16#FC9C#, 16#0628#),
(16#FC9D#, 16#0628#),
(16#FC9E#, 16#0628#),
(16#FC9F#, 16#0628#),
(16#FCA0#, 16#0628#),
(16#FCA1#, 16#062A#),
(16#FCA2#, 16#062A#),
(16#FCA3#, 16#062A#),
(16#FCA4#, 16#062A#),
(16#FCA5#, 16#062A#),
(16#FCA6#, 16#062B#),
(16#FCA7#, 16#062C#),
(16#FCA8#, 16#062C#),
(16#FCA9#, 16#062D#),
(16#FCAA#, 16#062D#),
(16#FCAB#, 16#062E#),
(16#FCAC#, 16#062E#),
(16#FCAD#, 16#0633#),
(16#FCAE#, 16#0633#),
(16#FCAF#, 16#0633#),
(16#FCB0#, 16#0633#),
(16#FCB1#, 16#0635#),
(16#FCB2#, 16#0635#),
(16#FCB3#, 16#0635#),
(16#FCB4#, 16#0636#),
(16#FCB5#, 16#0636#),
(16#FCB6#, 16#0636#),
(16#FCB7#, 16#0636#),
(16#FCB8#, 16#0637#),
(16#FCB9#, 16#0638#),
(16#FCBA#, 16#0639#),
(16#FCBB#, 16#0639#),
(16#FCBC#, 16#063A#),
(16#FCBD#, 16#063A#),
(16#FCBE#, 16#0641#),
(16#FCBF#, 16#0641#),
(16#FCC0#, 16#0641#),
(16#FCC1#, 16#0641#),
(16#FCC2#, 16#0642#),
(16#FCC3#, 16#0642#),
(16#FCC4#, 16#0643#),
(16#FCC5#, 16#0643#),
(16#FCC6#, 16#0643#),
(16#FCC7#, 16#0643#),
(16#FCC8#, 16#0643#),
(16#FCC9#, 16#0644#),
(16#FCCA#, 16#0644#),
(16#FCCB#, 16#0644#),
(16#FCCC#, 16#0644#),
(16#FCCD#, 16#0644#),
(16#FCCE#, 16#0645#),
(16#FCCF#, 16#0645#),
(16#FCD0#, 16#0645#),
(16#FCD1#, 16#0645#),
(16#FCD2#, 16#0646#),
(16#FCD3#, 16#0646#),
(16#FCD4#, 16#0646#),
(16#FCD5#, 16#0646#),
(16#FCD6#, 16#0646#),
(16#FCD7#, 16#0647#),
(16#FCD8#, 16#0647#),
(16#FCD9#, 16#0647#),
(16#FCDA#, 16#064A#),
(16#FCDB#, 16#064A#),
(16#FCDC#, 16#064A#),
(16#FCDD#, 16#064A#),
(16#FCDE#, 16#064A#),
(16#FCDF#, 16#0626#),
(16#FCE0#, 16#0626#),
(16#FCE1#, 16#0628#),
(16#FCE2#, 16#0628#),
(16#FCE3#, 16#062A#),
(16#FCE4#, 16#062A#),
(16#FCE5#, 16#062B#),
(16#FCE6#, 16#062B#),
(16#FCE7#, 16#0633#),
(16#FCE8#, 16#0633#),
(16#FCE9#, 16#0634#),
(16#FCEA#, 16#0634#),
(16#FCEB#, 16#0643#),
(16#FCEC#, 16#0643#),
(16#FCED#, 16#0644#),
(16#FCEE#, 16#0646#),
(16#FCEF#, 16#0646#),
(16#FCF0#, 16#064A#),
(16#FCF1#, 16#064A#),
(16#FCF2#, 16#0640#),
(16#FCF3#, 16#0640#),
(16#FCF4#, 16#0640#),
(16#FCF5#, 16#0637#),
(16#FCF6#, 16#0637#),
(16#FCF7#, 16#0639#),
(16#FCF8#, 16#0639#),
(16#FCF9#, 16#063A#),
(16#FCFA#, 16#063A#),
(16#FCFB#, 16#0633#),
(16#FCFC#, 16#0633#),
(16#FCFD#, 16#0634#),
(16#FCFE#, 16#0634#),
(16#FCFF#, 16#062D#),
(16#FD00#, 16#062D#),
(16#FD01#, 16#062C#),
(16#FD02#, 16#062C#),
(16#FD03#, 16#062E#),
(16#FD04#, 16#062E#),
(16#FD05#, 16#0635#),
(16#FD06#, 16#0635#),
(16#FD07#, 16#0636#),
(16#FD08#, 16#0636#),
(16#FD09#, 16#0634#),
(16#FD0A#, 16#0634#),
(16#FD0B#, 16#0634#),
(16#FD0C#, 16#0634#),
(16#FD0D#, 16#0634#),
(16#FD0E#, 16#0633#),
(16#FD0F#, 16#0635#),
(16#FD10#, 16#0636#),
(16#FD11#, 16#0637#),
(16#FD12#, 16#0637#),
(16#FD13#, 16#0639#),
(16#FD14#, 16#0639#),
(16#FD15#, 16#063A#),
(16#FD16#, 16#063A#),
(16#FD17#, 16#0633#),
(16#FD18#, 16#0633#),
(16#FD19#, 16#0634#),
(16#FD1A#, 16#0634#),
(16#FD1B#, 16#062D#),
(16#FD1C#, 16#062D#),
(16#FD1D#, 16#062C#),
(16#FD1E#, 16#062C#),
(16#FD1F#, 16#062E#),
(16#FD20#, 16#062E#),
(16#FD21#, 16#0635#),
(16#FD22#, 16#0635#),
(16#FD23#, 16#0636#),
(16#FD24#, 16#0636#),
(16#FD25#, 16#0634#),
(16#FD26#, 16#0634#),
(16#FD27#, 16#0634#),
(16#FD28#, 16#0634#),
(16#FD29#, 16#0634#),
(16#FD2A#, 16#0633#),
(16#FD2B#, 16#0635#),
(16#FD2C#, 16#0636#),
(16#FD2D#, 16#0634#),
(16#FD2E#, 16#0634#),
(16#FD2F#, 16#0634#),
(16#FD30#, 16#0634#),
(16#FD31#, 16#0633#),
(16#FD32#, 16#0634#),
(16#FD33#, 16#0637#),
(16#FD34#, 16#0633#),
(16#FD35#, 16#0633#),
(16#FD36#, 16#0633#),
(16#FD37#, 16#0634#),
(16#FD38#, 16#0634#),
(16#FD39#, 16#0634#),
(16#FD3A#, 16#0637#),
(16#FD3B#, 16#0638#),
(16#FD3C#, 16#0627#),
(16#FD3D#, 16#0627#),
(16#FD50#, 16#062A#),
(16#FD51#, 16#062A#),
(16#FD52#, 16#062A#),
(16#FD53#, 16#062A#),
(16#FD54#, 16#062A#),
(16#FD55#, 16#062A#),
(16#FD56#, 16#062A#),
(16#FD57#, 16#062A#),
(16#FD58#, 16#062C#),
(16#FD59#, 16#062C#),
(16#FD5A#, 16#062D#),
(16#FD5B#, 16#062D#),
(16#FD5C#, 16#0633#),
(16#FD5D#, 16#0633#),
(16#FD5E#, 16#0633#),
(16#FD5F#, 16#0633#),
(16#FD60#, 16#0633#),
(16#FD61#, 16#0633#),
(16#FD62#, 16#0633#),
(16#FD63#, 16#0633#),
(16#FD64#, 16#0635#),
(16#FD65#, 16#0635#),
(16#FD66#, 16#0635#),
(16#FD67#, 16#0634#),
(16#FD68#, 16#0634#),
(16#FD69#, 16#0634#),
(16#FD6A#, 16#0634#),
(16#FD6B#, 16#0634#),
(16#FD6C#, 16#0634#),
(16#FD6D#, 16#0634#),
(16#FD6E#, 16#0636#),
(16#FD6F#, 16#0636#),
(16#FD70#, 16#0636#),
(16#FD71#, 16#0637#),
(16#FD72#, 16#0637#),
(16#FD73#, 16#0637#),
(16#FD74#, 16#0637#),
(16#FD75#, 16#0639#),
(16#FD76#, 16#0639#),
(16#FD77#, 16#0639#),
(16#FD78#, 16#0639#),
(16#FD79#, 16#063A#),
(16#FD7A#, 16#063A#),
(16#FD7B#, 16#063A#),
(16#FD7C#, 16#0641#),
(16#FD7D#, 16#0641#),
(16#FD7E#, 16#0642#),
(16#FD7F#, 16#0642#),
(16#FD80#, 16#0644#),
(16#FD81#, 16#0644#),
(16#FD82#, 16#0644#),
(16#FD83#, 16#0644#),
(16#FD84#, 16#0644#),
(16#FD85#, 16#0644#),
(16#FD86#, 16#0644#),
(16#FD87#, 16#0644#),
(16#FD88#, 16#0644#),
(16#FD89#, 16#0645#),
(16#FD8A#, 16#0645#),
(16#FD8B#, 16#0645#),
(16#FD8C#, 16#0645#),
(16#FD8D#, 16#0645#),
(16#FD8E#, 16#0645#),
(16#FD8F#, 16#0645#),
(16#FD92#, 16#0645#),
(16#FD93#, 16#0647#),
(16#FD94#, 16#0647#),
(16#FD95#, 16#0646#),
(16#FD96#, 16#0646#),
(16#FD97#, 16#0646#),
(16#FD98#, 16#0646#),
(16#FD99#, 16#0646#),
(16#FD9A#, 16#0646#),
(16#FD9B#, 16#0646#),
(16#FD9C#, 16#064A#),
(16#FD9D#, 16#064A#),
(16#FD9E#, 16#0628#),
(16#FD9F#, 16#062A#),
(16#FDA0#, 16#062A#),
(16#FDA1#, 16#062A#),
(16#FDA2#, 16#062A#),
(16#FDA3#, 16#062A#),
(16#FDA4#, 16#062A#),
(16#FDA5#, 16#062C#),
(16#FDA6#, 16#062C#),
(16#FDA7#, 16#062C#),
(16#FDA8#, 16#0633#),
(16#FDA9#, 16#0635#),
(16#FDAA#, 16#0634#),
(16#FDAB#, 16#0636#),
(16#FDAC#, 16#0644#),
(16#FDAD#, 16#0644#),
(16#FDAE#, 16#064A#),
(16#FDAF#, 16#064A#),
(16#FDB0#, 16#064A#),
(16#FDB1#, 16#0645#),
(16#FDB2#, 16#0642#),
(16#FDB3#, 16#0646#),
(16#FDB4#, 16#0642#),
(16#FDB5#, 16#0644#),
(16#FDB6#, 16#0639#),
(16#FDB7#, 16#0643#),
(16#FDB8#, 16#0646#),
(16#FDB9#, 16#0645#),
(16#FDBA#, 16#0644#),
(16#FDBB#, 16#0643#),
(16#FDBC#, 16#0644#),
(16#FDBD#, 16#0646#),
(16#FDBE#, 16#062C#),
(16#FDBF#, 16#062D#),
(16#FDC0#, 16#0645#),
(16#FDC1#, 16#0641#),
(16#FDC2#, 16#0628#),
(16#FDC3#, 16#0643#),
(16#FDC4#, 16#0639#),
(16#FDC5#, 16#0635#),
(16#FDC6#, 16#0633#),
(16#FDC7#, 16#0646#),
(16#FDF0#, 16#0635#),
(16#FDF1#, 16#0642#),
(16#FDF2#, 16#0627#),
(16#FDF3#, 16#0627#),
(16#FDF4#, 16#0645#),
(16#FDF5#, 16#0635#),
(16#FDF6#, 16#0631#),
(16#FDF7#, 16#0639#),
(16#FDF8#, 16#0648#),
(16#FDF9#, 16#0635#),
(16#FDFA#, 16#0635#),
(16#FDFB#, 16#062C#),
(16#FDFC#, 16#0631#),
(16#FE10#, 16#002C#),
(16#FE11#, 16#3001#),
(16#FE12#, 16#3002#),
(16#FE13#, 16#003A#),
(16#FE14#, 16#003B#),
(16#FE15#, 16#0021#),
(16#FE16#, 16#003F#),
(16#FE17#, 16#3016#),
(16#FE18#, 16#3017#),
(16#FE19#, 16#2026#),
(16#FE30#, 16#2025#),
(16#FE31#, 16#2014#),
(16#FE32#, 16#2013#),
(16#FE33#, 16#005F#),
(16#FE34#, 16#005F#),
(16#FE35#, 16#0028#),
(16#FE36#, 16#0029#),
(16#FE37#, 16#007B#),
(16#FE38#, 16#007D#),
(16#FE39#, 16#3014#),
(16#FE3A#, 16#3015#),
(16#FE3B#, 16#3010#),
(16#FE3C#, 16#3011#),
(16#FE3D#, 16#300A#),
(16#FE3E#, 16#300B#),
(16#FE3F#, 16#3008#),
(16#FE40#, 16#3009#),
(16#FE41#, 16#300C#),
(16#FE42#, 16#300D#),
(16#FE43#, 16#300E#),
(16#FE44#, 16#300F#),
(16#FE47#, 16#005B#),
(16#FE48#, 16#005D#),
(16#FE49#, 16#203E#),
(16#FE4A#, 16#203E#),
(16#FE4B#, 16#203E#),
(16#FE4C#, 16#203E#),
(16#FE4D#, 16#005F#),
(16#FE4E#, 16#005F#),
(16#FE4F#, 16#005F#),
(16#FE50#, 16#002C#),
(16#FE51#, 16#3001#),
(16#FE52#, 16#002E#),
(16#FE54#, 16#003B#),
(16#FE55#, 16#003A#),
(16#FE56#, 16#003F#),
(16#FE57#, 16#0021#),
(16#FE58#, 16#2014#),
(16#FE59#, 16#0028#),
(16#FE5A#, 16#0029#),
(16#FE5B#, 16#007B#),
(16#FE5C#, 16#007D#),
(16#FE5D#, 16#3014#),
(16#FE5E#, 16#3015#),
(16#FE5F#, 16#0023#),
(16#FE60#, 16#0026#),
(16#FE61#, 16#002A#),
(16#FE62#, 16#002B#),
(16#FE63#, 16#002D#),
(16#FE64#, 16#003C#),
(16#FE65#, 16#003E#),
(16#FE66#, 16#003D#),
(16#FE68#, 16#005C#),
(16#FE69#, 16#0024#),
(16#FE6A#, 16#0025#),
(16#FE6B#, 16#0040#),
(16#FE70#, 16#0020#),
(16#FE71#, 16#0640#),
(16#FE72#, 16#0020#),
(16#FE74#, 16#0020#),
(16#FE76#, 16#0020#),
(16#FE77#, 16#0640#),
(16#FE78#, 16#0020#),
(16#FE79#, 16#0640#),
(16#FE7A#, 16#0020#),
(16#FE7B#, 16#0640#),
(16#FE7C#, 16#0020#),
(16#FE7D#, 16#0640#),
(16#FE7E#, 16#0020#),
(16#FE7F#, 16#0640#),
(16#FE80#, 16#0621#),
(16#FE81#, 16#0622#),
(16#FE82#, 16#0622#),
(16#FE83#, 16#0623#),
(16#FE84#, 16#0623#),
(16#FE85#, 16#0624#),
(16#FE86#, 16#0624#),
(16#FE87#, 16#0625#),
(16#FE88#, 16#0625#),
(16#FE89#, 16#0626#),
(16#FE8A#, 16#0626#),
(16#FE8B#, 16#0626#),
(16#FE8C#, 16#0626#),
(16#FE8D#, 16#0627#),
(16#FE8E#, 16#0627#),
(16#FE8F#, 16#0628#),
(16#FE90#, 16#0628#),
(16#FE91#, 16#0628#),
(16#FE92#, 16#0628#),
(16#FE93#, 16#0629#),
(16#FE94#, 16#0629#),
(16#FE95#, 16#062A#),
(16#FE96#, 16#062A#),
(16#FE97#, 16#062A#),
(16#FE98#, 16#062A#),
(16#FE99#, 16#062B#),
(16#FE9A#, 16#062B#),
(16#FE9B#, 16#062B#),
(16#FE9C#, 16#062B#),
(16#FE9D#, 16#062C#),
(16#FE9E#, 16#062C#),
(16#FE9F#, 16#062C#),
(16#FEA0#, 16#062C#),
(16#FEA1#, 16#062D#),
(16#FEA2#, 16#062D#),
(16#FEA3#, 16#062D#),
(16#FEA4#, 16#062D#),
(16#FEA5#, 16#062E#),
(16#FEA6#, 16#062E#),
(16#FEA7#, 16#062E#),
(16#FEA8#, 16#062E#),
(16#FEA9#, 16#062F#),
(16#FEAA#, 16#062F#),
(16#FEAB#, 16#0630#),
(16#FEAC#, 16#0630#),
(16#FEAD#, 16#0631#),
(16#FEAE#, 16#0631#),
(16#FEAF#, 16#0632#),
(16#FEB0#, 16#0632#),
(16#FEB1#, 16#0633#),
(16#FEB2#, 16#0633#),
(16#FEB3#, 16#0633#),
(16#FEB4#, 16#0633#),
(16#FEB5#, 16#0634#),
(16#FEB6#, 16#0634#),
(16#FEB7#, 16#0634#),
(16#FEB8#, 16#0634#),
(16#FEB9#, 16#0635#),
(16#FEBA#, 16#0635#),
(16#FEBB#, 16#0635#),
(16#FEBC#, 16#0635#),
(16#FEBD#, 16#0636#),
(16#FEBE#, 16#0636#),
(16#FEBF#, 16#0636#),
(16#FEC0#, 16#0636#),
(16#FEC1#, 16#0637#),
(16#FEC2#, 16#0637#),
(16#FEC3#, 16#0637#),
(16#FEC4#, 16#0637#),
(16#FEC5#, 16#0638#),
(16#FEC6#, 16#0638#),
(16#FEC7#, 16#0638#),
(16#FEC8#, 16#0638#),
(16#FEC9#, 16#0639#),
(16#FECA#, 16#0639#),
(16#FECB#, 16#0639#),
(16#FECC#, 16#0639#),
(16#FECD#, 16#063A#),
(16#FECE#, 16#063A#),
(16#FECF#, 16#063A#),
(16#FED0#, 16#063A#),
(16#FED1#, 16#0641#),
(16#FED2#, 16#0641#),
(16#FED3#, 16#0641#),
(16#FED4#, 16#0641#),
(16#FED5#, 16#0642#),
(16#FED6#, 16#0642#),
(16#FED7#, 16#0642#),
(16#FED8#, 16#0642#),
(16#FED9#, 16#0643#),
(16#FEDA#, 16#0643#),
(16#FEDB#, 16#0643#),
(16#FEDC#, 16#0643#),
(16#FEDD#, 16#0644#),
(16#FEDE#, 16#0644#),
(16#FEDF#, 16#0644#),
(16#FEE0#, 16#0644#),
(16#FEE1#, 16#0645#),
(16#FEE2#, 16#0645#),
(16#FEE3#, 16#0645#),
(16#FEE4#, 16#0645#),
(16#FEE5#, 16#0646#),
(16#FEE6#, 16#0646#),
(16#FEE7#, 16#0646#),
(16#FEE8#, 16#0646#),
(16#FEE9#, 16#0647#),
(16#FEEA#, 16#0647#),
(16#FEEB#, 16#0647#),
(16#FEEC#, 16#0647#),
(16#FEED#, 16#0648#),
(16#FEEE#, 16#0648#),
(16#FEEF#, 16#0649#),
(16#FEF0#, 16#0649#),
(16#FEF1#, 16#064A#),
(16#FEF2#, 16#064A#),
(16#FEF3#, 16#064A#),
(16#FEF4#, 16#064A#),
(16#FEF5#, 16#0644#),
(16#FEF6#, 16#0644#),
(16#FEF7#, 16#0644#),
(16#FEF8#, 16#0644#),
(16#FEF9#, 16#0644#),
(16#FEFA#, 16#0644#),
(16#FEFB#, 16#0644#),
(16#FEFC#, 16#0644#),
(16#FF01#, 16#0021#),
(16#FF02#, 16#0022#),
(16#FF03#, 16#0023#),
(16#FF04#, 16#0024#),
(16#FF05#, 16#0025#),
(16#FF06#, 16#0026#),
(16#FF07#, 16#0027#),
(16#FF08#, 16#0028#),
(16#FF09#, 16#0029#),
(16#FF0A#, 16#002A#),
(16#FF0B#, 16#002B#),
(16#FF0C#, 16#002C#),
(16#FF0D#, 16#002D#),
(16#FF0E#, 16#002E#),
(16#FF0F#, 16#002F#),
(16#FF10#, 16#0030#),
(16#FF11#, 16#0031#),
(16#FF12#, 16#0032#),
(16#FF13#, 16#0033#),
(16#FF14#, 16#0034#),
(16#FF15#, 16#0035#),
(16#FF16#, 16#0036#),
(16#FF17#, 16#0037#),
(16#FF18#, 16#0038#),
(16#FF19#, 16#0039#),
(16#FF1A#, 16#003A#),
(16#FF1B#, 16#003B#),
(16#FF1C#, 16#003C#),
(16#FF1D#, 16#003D#),
(16#FF1E#, 16#003E#),
(16#FF1F#, 16#003F#),
(16#FF20#, 16#0040#),
(16#FF21#, 16#0041#),
(16#FF22#, 16#0042#),
(16#FF23#, 16#0043#),
(16#FF24#, 16#0044#),
(16#FF25#, 16#0045#),
(16#FF26#, 16#0046#),
(16#FF27#, 16#0047#),
(16#FF28#, 16#0048#),
(16#FF29#, 16#0049#),
(16#FF2A#, 16#004A#),
(16#FF2B#, 16#004B#),
(16#FF2C#, 16#004C#),
(16#FF2D#, 16#004D#),
(16#FF2E#, 16#004E#),
(16#FF2F#, 16#004F#),
(16#FF30#, 16#0050#),
(16#FF31#, 16#0051#),
(16#FF32#, 16#0052#),
(16#FF33#, 16#0053#),
(16#FF34#, 16#0054#),
(16#FF35#, 16#0055#),
(16#FF36#, 16#0056#),
(16#FF37#, 16#0057#),
(16#FF38#, 16#0058#),
(16#FF39#, 16#0059#),
(16#FF3A#, 16#005A#),
(16#FF3B#, 16#005B#),
(16#FF3C#, 16#005C#),
(16#FF3D#, 16#005D#),
(16#FF3E#, 16#005E#),
(16#FF3F#, 16#005F#),
(16#FF40#, 16#0060#),
(16#FF41#, 16#0061#),
(16#FF42#, 16#0062#),
(16#FF43#, 16#0063#),
(16#FF44#, 16#0064#),
(16#FF45#, 16#0065#),
(16#FF46#, 16#0066#),
(16#FF47#, 16#0067#),
(16#FF48#, 16#0068#),
(16#FF49#, 16#0069#),
(16#FF4A#, 16#006A#),
(16#FF4B#, 16#006B#),
(16#FF4C#, 16#006C#),
(16#FF4D#, 16#006D#),
(16#FF4E#, 16#006E#),
(16#FF4F#, 16#006F#),
(16#FF50#, 16#0070#),
(16#FF51#, 16#0071#),
(16#FF52#, 16#0072#),
(16#FF53#, 16#0073#),
(16#FF54#, 16#0074#),
(16#FF55#, 16#0075#),
(16#FF56#, 16#0076#),
(16#FF57#, 16#0077#),
(16#FF58#, 16#0078#),
(16#FF59#, 16#0079#),
(16#FF5A#, 16#007A#),
(16#FF5B#, 16#007B#),
(16#FF5C#, 16#007C#),
(16#FF5D#, 16#007D#),
(16#FF5E#, 16#007E#),
(16#FF5F#, 16#2985#),
(16#FF60#, 16#2986#),
(16#FF61#, 16#3002#),
(16#FF62#, 16#300C#),
(16#FF63#, 16#300D#),
(16#FF64#, 16#3001#),
(16#FF65#, 16#30FB#),
(16#FF66#, 16#30F2#),
(16#FF67#, 16#30A1#),
(16#FF68#, 16#30A3#),
(16#FF69#, 16#30A5#),
(16#FF6A#, 16#30A7#),
(16#FF6B#, 16#30A9#),
(16#FF6C#, 16#30E3#),
(16#FF6D#, 16#30E5#),
(16#FF6E#, 16#30E7#),
(16#FF6F#, 16#30C3#),
(16#FF70#, 16#30FC#),
(16#FF71#, 16#30A2#),
(16#FF72#, 16#30A4#),
(16#FF73#, 16#30A6#),
(16#FF74#, 16#30A8#),
(16#FF75#, 16#30AA#),
(16#FF76#, 16#30AB#),
(16#FF77#, 16#30AD#),
(16#FF78#, 16#30AF#),
(16#FF79#, 16#30B1#),
(16#FF7A#, 16#30B3#),
(16#FF7B#, 16#30B5#),
(16#FF7C#, 16#30B7#),
(16#FF7D#, 16#30B9#),
(16#FF7E#, 16#30BB#),
(16#FF7F#, 16#30BD#),
(16#FF80#, 16#30BF#),
(16#FF81#, 16#30C1#),
(16#FF82#, 16#30C4#),
(16#FF83#, 16#30C6#),
(16#FF84#, 16#30C8#),
(16#FF85#, 16#30CA#),
(16#FF86#, 16#30CB#),
(16#FF87#, 16#30CC#),
(16#FF88#, 16#30CD#),
(16#FF89#, 16#30CE#),
(16#FF8A#, 16#30CF#),
(16#FF8B#, 16#30D2#),
(16#FF8C#, 16#30D5#),
(16#FF8D#, 16#30D8#),
(16#FF8E#, 16#30DB#),
(16#FF8F#, 16#30DE#),
(16#FF90#, 16#30DF#),
(16#FF91#, 16#30E0#),
(16#FF92#, 16#30E1#),
(16#FF93#, 16#30E2#),
(16#FF94#, 16#30E4#),
(16#FF95#, 16#30E6#),
(16#FF96#, 16#30E8#),
(16#FF97#, 16#30E9#),
(16#FF98#, 16#30EA#),
(16#FF99#, 16#30EB#),
(16#FF9A#, 16#30EC#),
(16#FF9B#, 16#30ED#),
(16#FF9C#, 16#30EF#),
(16#FF9D#, 16#30F3#),
(16#FF9E#, 16#3099#),
(16#FF9F#, 16#309A#),
(16#FFA0#, 16#3164#),
(16#FFA1#, 16#3131#),
(16#FFA2#, 16#3132#),
(16#FFA3#, 16#3133#),
(16#FFA4#, 16#3134#),
(16#FFA5#, 16#3135#),
(16#FFA6#, 16#3136#),
(16#FFA7#, 16#3137#),
(16#FFA8#, 16#3138#),
(16#FFA9#, 16#3139#),
(16#FFAA#, 16#313A#),
(16#FFAB#, 16#313B#),
(16#FFAC#, 16#313C#),
(16#FFAD#, 16#313D#),
(16#FFAE#, 16#313E#),
(16#FFAF#, 16#313F#),
(16#FFB0#, 16#3140#),
(16#FFB1#, 16#3141#),
(16#FFB2#, 16#3142#),
(16#FFB3#, 16#3143#),
(16#FFB4#, 16#3144#),
(16#FFB5#, 16#3145#),
(16#FFB6#, 16#3146#),
(16#FFB7#, 16#3147#),
(16#FFB8#, 16#3148#),
(16#FFB9#, 16#3149#),
(16#FFBA#, 16#314A#),
(16#FFBB#, 16#314B#),
(16#FFBC#, 16#314C#),
(16#FFBD#, 16#314D#),
(16#FFBE#, 16#314E#),
(16#FFC2#, 16#314F#),
(16#FFC3#, 16#3150#),
(16#FFC4#, 16#3151#),
(16#FFC5#, 16#3152#),
(16#FFC6#, 16#3153#),
(16#FFC7#, 16#3154#),
(16#FFCA#, 16#3155#),
(16#FFCB#, 16#3156#),
(16#FFCC#, 16#3157#),
(16#FFCD#, 16#3158#),
(16#FFCE#, 16#3159#),
(16#FFCF#, 16#315A#),
(16#FFD2#, 16#315B#),
(16#FFD3#, 16#315C#),
(16#FFD4#, 16#315D#),
(16#FFD5#, 16#315E#),
(16#FFD6#, 16#315F#),
(16#FFD7#, 16#3160#),
(16#FFDA#, 16#3161#),
(16#FFDB#, 16#3162#),
(16#FFDC#, 16#3163#),
(16#FFE0#, 16#00A2#),
(16#FFE1#, 16#00A3#),
(16#FFE2#, 16#00AC#),
(16#FFE3#, 16#00AF#),
(16#FFE4#, 16#00A6#),
(16#FFE5#, 16#00A5#),
(16#FFE6#, 16#20A9#),
(16#FFE8#, 16#2502#),
(16#FFE9#, 16#2190#),
(16#FFEA#, 16#2191#),
(16#FFEB#, 16#2192#),
(16#FFEC#, 16#2193#),
(16#FFED#, 16#25A0#),
(16#FFEE#, 16#25CB#),
(16#1109A#, 16#11099#),
(16#1109C#, 16#1109B#),
(16#110AB#, 16#110A5#),
(16#1112E#, 16#11131#),
(16#1112F#, 16#11132#),
(16#1134B#, 16#11347#),
(16#1134C#, 16#11347#),
(16#114BB#, 16#114B9#),
(16#114BC#, 16#114B9#),
(16#114BE#, 16#114B9#),
(16#115BA#, 16#115B8#),
(16#115BB#, 16#115B9#),
(16#11938#, 16#11935#),
(16#1D15E#, 16#1D157#),
(16#1D15F#, 16#1D158#),
(16#1D160#, 16#1D15F#),
(16#1D161#, 16#1D15F#),
(16#1D162#, 16#1D15F#),
(16#1D163#, 16#1D15F#),
(16#1D164#, 16#1D15F#),
(16#1D1BB#, 16#1D1B9#),
(16#1D1BC#, 16#1D1BA#),
(16#1D1BD#, 16#1D1BB#),
(16#1D1BE#, 16#1D1BC#),
(16#1D1BF#, 16#1D1BB#),
(16#1D1C0#, 16#1D1BC#),
(16#1D400#, 16#0041#),
(16#1D401#, 16#0042#),
(16#1D402#, 16#0043#),
(16#1D403#, 16#0044#),
(16#1D404#, 16#0045#),
(16#1D405#, 16#0046#),
(16#1D406#, 16#0047#),
(16#1D407#, 16#0048#),
(16#1D408#, 16#0049#),
(16#1D409#, 16#004A#),
(16#1D40A#, 16#004B#),
(16#1D40B#, 16#004C#),
(16#1D40C#, 16#004D#),
(16#1D40D#, 16#004E#),
(16#1D40E#, 16#004F#),
(16#1D40F#, 16#0050#),
(16#1D410#, 16#0051#),
(16#1D411#, 16#0052#),
(16#1D412#, 16#0053#),
(16#1D413#, 16#0054#),
(16#1D414#, 16#0055#),
(16#1D415#, 16#0056#),
(16#1D416#, 16#0057#),
(16#1D417#, 16#0058#),
(16#1D418#, 16#0059#),
(16#1D419#, 16#005A#),
(16#1D41A#, 16#0061#),
(16#1D41B#, 16#0062#),
(16#1D41C#, 16#0063#),
(16#1D41D#, 16#0064#),
(16#1D41E#, 16#0065#),
(16#1D41F#, 16#0066#),
(16#1D420#, 16#0067#),
(16#1D421#, 16#0068#),
(16#1D422#, 16#0069#),
(16#1D423#, 16#006A#),
(16#1D424#, 16#006B#),
(16#1D425#, 16#006C#),
(16#1D426#, 16#006D#),
(16#1D427#, 16#006E#),
(16#1D428#, 16#006F#),
(16#1D429#, 16#0070#),
(16#1D42A#, 16#0071#),
(16#1D42B#, 16#0072#),
(16#1D42C#, 16#0073#),
(16#1D42D#, 16#0074#),
(16#1D42E#, 16#0075#),
(16#1D42F#, 16#0076#),
(16#1D430#, 16#0077#),
(16#1D431#, 16#0078#),
(16#1D432#, 16#0079#),
(16#1D433#, 16#007A#),
(16#1D434#, 16#0041#),
(16#1D435#, 16#0042#),
(16#1D436#, 16#0043#),
(16#1D437#, 16#0044#),
(16#1D438#, 16#0045#),
(16#1D439#, 16#0046#),
(16#1D43A#, 16#0047#),
(16#1D43B#, 16#0048#),
(16#1D43C#, 16#0049#),
(16#1D43D#, 16#004A#),
(16#1D43E#, 16#004B#),
(16#1D43F#, 16#004C#),
(16#1D440#, 16#004D#),
(16#1D441#, 16#004E#),
(16#1D442#, 16#004F#),
(16#1D443#, 16#0050#),
(16#1D444#, 16#0051#),
(16#1D445#, 16#0052#),
(16#1D446#, 16#0053#),
(16#1D447#, 16#0054#),
(16#1D448#, 16#0055#),
(16#1D449#, 16#0056#),
(16#1D44A#, 16#0057#),
(16#1D44B#, 16#0058#),
(16#1D44C#, 16#0059#),
(16#1D44D#, 16#005A#),
(16#1D44E#, 16#0061#),
(16#1D44F#, 16#0062#),
(16#1D450#, 16#0063#),
(16#1D451#, 16#0064#),
(16#1D452#, 16#0065#),
(16#1D453#, 16#0066#),
(16#1D454#, 16#0067#),
(16#1D456#, 16#0069#),
(16#1D457#, 16#006A#),
(16#1D458#, 16#006B#),
(16#1D459#, 16#006C#),
(16#1D45A#, 16#006D#),
(16#1D45B#, 16#006E#),
(16#1D45C#, 16#006F#),
(16#1D45D#, 16#0070#),
(16#1D45E#, 16#0071#),
(16#1D45F#, 16#0072#),
(16#1D460#, 16#0073#),
(16#1D461#, 16#0074#),
(16#1D462#, 16#0075#),
(16#1D463#, 16#0076#),
(16#1D464#, 16#0077#),
(16#1D465#, 16#0078#),
(16#1D466#, 16#0079#),
(16#1D467#, 16#007A#),
(16#1D468#, 16#0041#),
(16#1D469#, 16#0042#),
(16#1D46A#, 16#0043#),
(16#1D46B#, 16#0044#),
(16#1D46C#, 16#0045#),
(16#1D46D#, 16#0046#),
(16#1D46E#, 16#0047#),
(16#1D46F#, 16#0048#),
(16#1D470#, 16#0049#),
(16#1D471#, 16#004A#),
(16#1D472#, 16#004B#),
(16#1D473#, 16#004C#),
(16#1D474#, 16#004D#),
(16#1D475#, 16#004E#),
(16#1D476#, 16#004F#),
(16#1D477#, 16#0050#),
(16#1D478#, 16#0051#),
(16#1D479#, 16#0052#),
(16#1D47A#, 16#0053#),
(16#1D47B#, 16#0054#),
(16#1D47C#, 16#0055#),
(16#1D47D#, 16#0056#),
(16#1D47E#, 16#0057#),
(16#1D47F#, 16#0058#),
(16#1D480#, 16#0059#),
(16#1D481#, 16#005A#),
(16#1D482#, 16#0061#),
(16#1D483#, 16#0062#),
(16#1D484#, 16#0063#),
(16#1D485#, 16#0064#),
(16#1D486#, 16#0065#),
(16#1D487#, 16#0066#),
(16#1D488#, 16#0067#),
(16#1D489#, 16#0068#),
(16#1D48A#, 16#0069#),
(16#1D48B#, 16#006A#),
(16#1D48C#, 16#006B#),
(16#1D48D#, 16#006C#),
(16#1D48E#, 16#006D#),
(16#1D48F#, 16#006E#),
(16#1D490#, 16#006F#),
(16#1D491#, 16#0070#),
(16#1D492#, 16#0071#),
(16#1D493#, 16#0072#),
(16#1D494#, 16#0073#),
(16#1D495#, 16#0074#),
(16#1D496#, 16#0075#),
(16#1D497#, 16#0076#),
(16#1D498#, 16#0077#),
(16#1D499#, 16#0078#),
(16#1D49A#, 16#0079#),
(16#1D49B#, 16#007A#),
(16#1D49C#, 16#0041#),
(16#1D49E#, 16#0043#),
(16#1D49F#, 16#0044#),
(16#1D4A2#, 16#0047#),
(16#1D4A5#, 16#004A#),
(16#1D4A6#, 16#004B#),
(16#1D4A9#, 16#004E#),
(16#1D4AA#, 16#004F#),
(16#1D4AB#, 16#0050#),
(16#1D4AC#, 16#0051#),
(16#1D4AE#, 16#0053#),
(16#1D4AF#, 16#0054#),
(16#1D4B0#, 16#0055#),
(16#1D4B1#, 16#0056#),
(16#1D4B2#, 16#0057#),
(16#1D4B3#, 16#0058#),
(16#1D4B4#, 16#0059#),
(16#1D4B5#, 16#005A#),
(16#1D4B6#, 16#0061#),
(16#1D4B7#, 16#0062#),
(16#1D4B8#, 16#0063#),
(16#1D4B9#, 16#0064#),
(16#1D4BB#, 16#0066#),
(16#1D4BD#, 16#0068#),
(16#1D4BE#, 16#0069#),
(16#1D4BF#, 16#006A#),
(16#1D4C0#, 16#006B#),
(16#1D4C1#, 16#006C#),
(16#1D4C2#, 16#006D#),
(16#1D4C3#, 16#006E#),
(16#1D4C5#, 16#0070#),
(16#1D4C6#, 16#0071#),
(16#1D4C7#, 16#0072#),
(16#1D4C8#, 16#0073#),
(16#1D4C9#, 16#0074#),
(16#1D4CA#, 16#0075#),
(16#1D4CB#, 16#0076#),
(16#1D4CC#, 16#0077#),
(16#1D4CD#, 16#0078#),
(16#1D4CE#, 16#0079#),
(16#1D4CF#, 16#007A#),
(16#1D4D0#, 16#0041#),
(16#1D4D1#, 16#0042#),
(16#1D4D2#, 16#0043#),
(16#1D4D3#, 16#0044#),
(16#1D4D4#, 16#0045#),
(16#1D4D5#, 16#0046#),
(16#1D4D6#, 16#0047#),
(16#1D4D7#, 16#0048#),
(16#1D4D8#, 16#0049#),
(16#1D4D9#, 16#004A#),
(16#1D4DA#, 16#004B#),
(16#1D4DB#, 16#004C#),
(16#1D4DC#, 16#004D#),
(16#1D4DD#, 16#004E#),
(16#1D4DE#, 16#004F#),
(16#1D4DF#, 16#0050#),
(16#1D4E0#, 16#0051#),
(16#1D4E1#, 16#0052#),
(16#1D4E2#, 16#0053#),
(16#1D4E3#, 16#0054#),
(16#1D4E4#, 16#0055#),
(16#1D4E5#, 16#0056#),
(16#1D4E6#, 16#0057#),
(16#1D4E7#, 16#0058#),
(16#1D4E8#, 16#0059#),
(16#1D4E9#, 16#005A#),
(16#1D4EA#, 16#0061#),
(16#1D4EB#, 16#0062#),
(16#1D4EC#, 16#0063#),
(16#1D4ED#, 16#0064#),
(16#1D4EE#, 16#0065#),
(16#1D4EF#, 16#0066#),
(16#1D4F0#, 16#0067#),
(16#1D4F1#, 16#0068#),
(16#1D4F2#, 16#0069#),
(16#1D4F3#, 16#006A#),
(16#1D4F4#, 16#006B#),
(16#1D4F5#, 16#006C#),
(16#1D4F6#, 16#006D#),
(16#1D4F7#, 16#006E#),
(16#1D4F8#, 16#006F#),
(16#1D4F9#, 16#0070#),
(16#1D4FA#, 16#0071#),
(16#1D4FB#, 16#0072#),
(16#1D4FC#, 16#0073#),
(16#1D4FD#, 16#0074#),
(16#1D4FE#, 16#0075#),
(16#1D4FF#, 16#0076#),
(16#1D500#, 16#0077#),
(16#1D501#, 16#0078#),
(16#1D502#, 16#0079#),
(16#1D503#, 16#007A#),
(16#1D504#, 16#0041#),
(16#1D505#, 16#0042#),
(16#1D507#, 16#0044#),
(16#1D508#, 16#0045#),
(16#1D509#, 16#0046#),
(16#1D50A#, 16#0047#),
(16#1D50D#, 16#004A#),
(16#1D50E#, 16#004B#),
(16#1D50F#, 16#004C#),
(16#1D510#, 16#004D#),
(16#1D511#, 16#004E#),
(16#1D512#, 16#004F#),
(16#1D513#, 16#0050#),
(16#1D514#, 16#0051#),
(16#1D516#, 16#0053#),
(16#1D517#, 16#0054#),
(16#1D518#, 16#0055#),
(16#1D519#, 16#0056#),
(16#1D51A#, 16#0057#),
(16#1D51B#, 16#0058#),
(16#1D51C#, 16#0059#),
(16#1D51E#, 16#0061#),
(16#1D51F#, 16#0062#),
(16#1D520#, 16#0063#),
(16#1D521#, 16#0064#),
(16#1D522#, 16#0065#),
(16#1D523#, 16#0066#),
(16#1D524#, 16#0067#),
(16#1D525#, 16#0068#),
(16#1D526#, 16#0069#),
(16#1D527#, 16#006A#),
(16#1D528#, 16#006B#),
(16#1D529#, 16#006C#),
(16#1D52A#, 16#006D#),
(16#1D52B#, 16#006E#),
(16#1D52C#, 16#006F#),
(16#1D52D#, 16#0070#),
(16#1D52E#, 16#0071#),
(16#1D52F#, 16#0072#),
(16#1D530#, 16#0073#),
(16#1D531#, 16#0074#),
(16#1D532#, 16#0075#),
(16#1D533#, 16#0076#),
(16#1D534#, 16#0077#),
(16#1D535#, 16#0078#),
(16#1D536#, 16#0079#),
(16#1D537#, 16#007A#),
(16#1D538#, 16#0041#),
(16#1D539#, 16#0042#),
(16#1D53B#, 16#0044#),
(16#1D53C#, 16#0045#),
(16#1D53D#, 16#0046#),
(16#1D53E#, 16#0047#),
(16#1D540#, 16#0049#),
(16#1D541#, 16#004A#),
(16#1D542#, 16#004B#),
(16#1D543#, 16#004C#),
(16#1D544#, 16#004D#),
(16#1D546#, 16#004F#),
(16#1D54A#, 16#0053#),
(16#1D54B#, 16#0054#),
(16#1D54C#, 16#0055#),
(16#1D54D#, 16#0056#),
(16#1D54E#, 16#0057#),
(16#1D54F#, 16#0058#),
(16#1D550#, 16#0059#),
(16#1D552#, 16#0061#),
(16#1D553#, 16#0062#),
(16#1D554#, 16#0063#),
(16#1D555#, 16#0064#),
(16#1D556#, 16#0065#),
(16#1D557#, 16#0066#),
(16#1D558#, 16#0067#),
(16#1D559#, 16#0068#),
(16#1D55A#, 16#0069#),
(16#1D55B#, 16#006A#),
(16#1D55C#, 16#006B#),
(16#1D55D#, 16#006C#),
(16#1D55E#, 16#006D#),
(16#1D55F#, 16#006E#),
(16#1D560#, 16#006F#),
(16#1D561#, 16#0070#),
(16#1D562#, 16#0071#),
(16#1D563#, 16#0072#),
(16#1D564#, 16#0073#),
(16#1D565#, 16#0074#),
(16#1D566#, 16#0075#),
(16#1D567#, 16#0076#),
(16#1D568#, 16#0077#),
(16#1D569#, 16#0078#),
(16#1D56A#, 16#0079#),
(16#1D56B#, 16#007A#),
(16#1D56C#, 16#0041#),
(16#1D56D#, 16#0042#),
(16#1D56E#, 16#0043#),
(16#1D56F#, 16#0044#),
(16#1D570#, 16#0045#),
(16#1D571#, 16#0046#),
(16#1D572#, 16#0047#),
(16#1D573#, 16#0048#),
(16#1D574#, 16#0049#),
(16#1D575#, 16#004A#),
(16#1D576#, 16#004B#),
(16#1D577#, 16#004C#),
(16#1D578#, 16#004D#),
(16#1D579#, 16#004E#),
(16#1D57A#, 16#004F#),
(16#1D57B#, 16#0050#),
(16#1D57C#, 16#0051#),
(16#1D57D#, 16#0052#),
(16#1D57E#, 16#0053#),
(16#1D57F#, 16#0054#),
(16#1D580#, 16#0055#),
(16#1D581#, 16#0056#),
(16#1D582#, 16#0057#),
(16#1D583#, 16#0058#),
(16#1D584#, 16#0059#),
(16#1D585#, 16#005A#),
(16#1D586#, 16#0061#),
(16#1D587#, 16#0062#),
(16#1D588#, 16#0063#),
(16#1D589#, 16#0064#),
(16#1D58A#, 16#0065#),
(16#1D58B#, 16#0066#),
(16#1D58C#, 16#0067#),
(16#1D58D#, 16#0068#),
(16#1D58E#, 16#0069#),
(16#1D58F#, 16#006A#),
(16#1D590#, 16#006B#),
(16#1D591#, 16#006C#),
(16#1D592#, 16#006D#),
(16#1D593#, 16#006E#),
(16#1D594#, 16#006F#),
(16#1D595#, 16#0070#),
(16#1D596#, 16#0071#),
(16#1D597#, 16#0072#),
(16#1D598#, 16#0073#),
(16#1D599#, 16#0074#),
(16#1D59A#, 16#0075#),
(16#1D59B#, 16#0076#),
(16#1D59C#, 16#0077#),
(16#1D59D#, 16#0078#),
(16#1D59E#, 16#0079#),
(16#1D59F#, 16#007A#),
(16#1D5A0#, 16#0041#),
(16#1D5A1#, 16#0042#),
(16#1D5A2#, 16#0043#),
(16#1D5A3#, 16#0044#),
(16#1D5A4#, 16#0045#),
(16#1D5A5#, 16#0046#),
(16#1D5A6#, 16#0047#),
(16#1D5A7#, 16#0048#),
(16#1D5A8#, 16#0049#),
(16#1D5A9#, 16#004A#),
(16#1D5AA#, 16#004B#),
(16#1D5AB#, 16#004C#),
(16#1D5AC#, 16#004D#),
(16#1D5AD#, 16#004E#),
(16#1D5AE#, 16#004F#),
(16#1D5AF#, 16#0050#),
(16#1D5B0#, 16#0051#),
(16#1D5B1#, 16#0052#),
(16#1D5B2#, 16#0053#),
(16#1D5B3#, 16#0054#),
(16#1D5B4#, 16#0055#),
(16#1D5B5#, 16#0056#),
(16#1D5B6#, 16#0057#),
(16#1D5B7#, 16#0058#),
(16#1D5B8#, 16#0059#),
(16#1D5B9#, 16#005A#),
(16#1D5BA#, 16#0061#),
(16#1D5BB#, 16#0062#),
(16#1D5BC#, 16#0063#),
(16#1D5BD#, 16#0064#),
(16#1D5BE#, 16#0065#),
(16#1D5BF#, 16#0066#),
(16#1D5C0#, 16#0067#),
(16#1D5C1#, 16#0068#),
(16#1D5C2#, 16#0069#),
(16#1D5C3#, 16#006A#),
(16#1D5C4#, 16#006B#),
(16#1D5C5#, 16#006C#),
(16#1D5C6#, 16#006D#),
(16#1D5C7#, 16#006E#),
(16#1D5C8#, 16#006F#),
(16#1D5C9#, 16#0070#),
(16#1D5CA#, 16#0071#),
(16#1D5CB#, 16#0072#),
(16#1D5CC#, 16#0073#),
(16#1D5CD#, 16#0074#),
(16#1D5CE#, 16#0075#),
(16#1D5CF#, 16#0076#),
(16#1D5D0#, 16#0077#),
(16#1D5D1#, 16#0078#),
(16#1D5D2#, 16#0079#),
(16#1D5D3#, 16#007A#),
(16#1D5D4#, 16#0041#),
(16#1D5D5#, 16#0042#),
(16#1D5D6#, 16#0043#),
(16#1D5D7#, 16#0044#),
(16#1D5D8#, 16#0045#),
(16#1D5D9#, 16#0046#),
(16#1D5DA#, 16#0047#),
(16#1D5DB#, 16#0048#),
(16#1D5DC#, 16#0049#),
(16#1D5DD#, 16#004A#),
(16#1D5DE#, 16#004B#),
(16#1D5DF#, 16#004C#),
(16#1D5E0#, 16#004D#),
(16#1D5E1#, 16#004E#),
(16#1D5E2#, 16#004F#),
(16#1D5E3#, 16#0050#),
(16#1D5E4#, 16#0051#),
(16#1D5E5#, 16#0052#),
(16#1D5E6#, 16#0053#),
(16#1D5E7#, 16#0054#),
(16#1D5E8#, 16#0055#),
(16#1D5E9#, 16#0056#),
(16#1D5EA#, 16#0057#),
(16#1D5EB#, 16#0058#),
(16#1D5EC#, 16#0059#),
(16#1D5ED#, 16#005A#),
(16#1D5EE#, 16#0061#),
(16#1D5EF#, 16#0062#),
(16#1D5F0#, 16#0063#),
(16#1D5F1#, 16#0064#),
(16#1D5F2#, 16#0065#),
(16#1D5F3#, 16#0066#),
(16#1D5F4#, 16#0067#),
(16#1D5F5#, 16#0068#),
(16#1D5F6#, 16#0069#),
(16#1D5F7#, 16#006A#),
(16#1D5F8#, 16#006B#),
(16#1D5F9#, 16#006C#),
(16#1D5FA#, 16#006D#),
(16#1D5FB#, 16#006E#),
(16#1D5FC#, 16#006F#),
(16#1D5FD#, 16#0070#),
(16#1D5FE#, 16#0071#),
(16#1D5FF#, 16#0072#),
(16#1D600#, 16#0073#),
(16#1D601#, 16#0074#),
(16#1D602#, 16#0075#),
(16#1D603#, 16#0076#),
(16#1D604#, 16#0077#),
(16#1D605#, 16#0078#),
(16#1D606#, 16#0079#),
(16#1D607#, 16#007A#),
(16#1D608#, 16#0041#),
(16#1D609#, 16#0042#),
(16#1D60A#, 16#0043#),
(16#1D60B#, 16#0044#),
(16#1D60C#, 16#0045#),
(16#1D60D#, 16#0046#),
(16#1D60E#, 16#0047#),
(16#1D60F#, 16#0048#),
(16#1D610#, 16#0049#),
(16#1D611#, 16#004A#),
(16#1D612#, 16#004B#),
(16#1D613#, 16#004C#),
(16#1D614#, 16#004D#),
(16#1D615#, 16#004E#),
(16#1D616#, 16#004F#),
(16#1D617#, 16#0050#),
(16#1D618#, 16#0051#),
(16#1D619#, 16#0052#),
(16#1D61A#, 16#0053#),
(16#1D61B#, 16#0054#),
(16#1D61C#, 16#0055#),
(16#1D61D#, 16#0056#),
(16#1D61E#, 16#0057#),
(16#1D61F#, 16#0058#),
(16#1D620#, 16#0059#),
(16#1D621#, 16#005A#),
(16#1D622#, 16#0061#),
(16#1D623#, 16#0062#),
(16#1D624#, 16#0063#),
(16#1D625#, 16#0064#),
(16#1D626#, 16#0065#),
(16#1D627#, 16#0066#),
(16#1D628#, 16#0067#),
(16#1D629#, 16#0068#),
(16#1D62A#, 16#0069#),
(16#1D62B#, 16#006A#),
(16#1D62C#, 16#006B#),
(16#1D62D#, 16#006C#),
(16#1D62E#, 16#006D#),
(16#1D62F#, 16#006E#),
(16#1D630#, 16#006F#),
(16#1D631#, 16#0070#),
(16#1D632#, 16#0071#),
(16#1D633#, 16#0072#),
(16#1D634#, 16#0073#),
(16#1D635#, 16#0074#),
(16#1D636#, 16#0075#),
(16#1D637#, 16#0076#),
(16#1D638#, 16#0077#),
(16#1D639#, 16#0078#),
(16#1D63A#, 16#0079#),
(16#1D63B#, 16#007A#),
(16#1D63C#, 16#0041#),
(16#1D63D#, 16#0042#),
(16#1D63E#, 16#0043#),
(16#1D63F#, 16#0044#),
(16#1D640#, 16#0045#),
(16#1D641#, 16#0046#),
(16#1D642#, 16#0047#),
(16#1D643#, 16#0048#),
(16#1D644#, 16#0049#),
(16#1D645#, 16#004A#),
(16#1D646#, 16#004B#),
(16#1D647#, 16#004C#),
(16#1D648#, 16#004D#),
(16#1D649#, 16#004E#),
(16#1D64A#, 16#004F#),
(16#1D64B#, 16#0050#),
(16#1D64C#, 16#0051#),
(16#1D64D#, 16#0052#),
(16#1D64E#, 16#0053#),
(16#1D64F#, 16#0054#),
(16#1D650#, 16#0055#),
(16#1D651#, 16#0056#),
(16#1D652#, 16#0057#),
(16#1D653#, 16#0058#),
(16#1D654#, 16#0059#),
(16#1D655#, 16#005A#),
(16#1D656#, 16#0061#),
(16#1D657#, 16#0062#),
(16#1D658#, 16#0063#),
(16#1D659#, 16#0064#),
(16#1D65A#, 16#0065#),
(16#1D65B#, 16#0066#),
(16#1D65C#, 16#0067#),
(16#1D65D#, 16#0068#),
(16#1D65E#, 16#0069#),
(16#1D65F#, 16#006A#),
(16#1D660#, 16#006B#),
(16#1D661#, 16#006C#),
(16#1D662#, 16#006D#),
(16#1D663#, 16#006E#),
(16#1D664#, 16#006F#),
(16#1D665#, 16#0070#),
(16#1D666#, 16#0071#),
(16#1D667#, 16#0072#),
(16#1D668#, 16#0073#),
(16#1D669#, 16#0074#),
(16#1D66A#, 16#0075#),
(16#1D66B#, 16#0076#),
(16#1D66C#, 16#0077#),
(16#1D66D#, 16#0078#),
(16#1D66E#, 16#0079#),
(16#1D66F#, 16#007A#),
(16#1D670#, 16#0041#),
(16#1D671#, 16#0042#),
(16#1D672#, 16#0043#),
(16#1D673#, 16#0044#),
(16#1D674#, 16#0045#),
(16#1D675#, 16#0046#),
(16#1D676#, 16#0047#),
(16#1D677#, 16#0048#),
(16#1D678#, 16#0049#),
(16#1D679#, 16#004A#),
(16#1D67A#, 16#004B#),
(16#1D67B#, 16#004C#),
(16#1D67C#, 16#004D#),
(16#1D67D#, 16#004E#),
(16#1D67E#, 16#004F#),
(16#1D67F#, 16#0050#),
(16#1D680#, 16#0051#),
(16#1D681#, 16#0052#),
(16#1D682#, 16#0053#),
(16#1D683#, 16#0054#),
(16#1D684#, 16#0055#),
(16#1D685#, 16#0056#),
(16#1D686#, 16#0057#),
(16#1D687#, 16#0058#),
(16#1D688#, 16#0059#),
(16#1D689#, 16#005A#),
(16#1D68A#, 16#0061#),
(16#1D68B#, 16#0062#),
(16#1D68C#, 16#0063#),
(16#1D68D#, 16#0064#),
(16#1D68E#, 16#0065#),
(16#1D68F#, 16#0066#),
(16#1D690#, 16#0067#),
(16#1D691#, 16#0068#),
(16#1D692#, 16#0069#),
(16#1D693#, 16#006A#),
(16#1D694#, 16#006B#),
(16#1D695#, 16#006C#),
(16#1D696#, 16#006D#),
(16#1D697#, 16#006E#),
(16#1D698#, 16#006F#),
(16#1D699#, 16#0070#),
(16#1D69A#, 16#0071#),
(16#1D69B#, 16#0072#),
(16#1D69C#, 16#0073#),
(16#1D69D#, 16#0074#),
(16#1D69E#, 16#0075#),
(16#1D69F#, 16#0076#),
(16#1D6A0#, 16#0077#),
(16#1D6A1#, 16#0078#),
(16#1D6A2#, 16#0079#),
(16#1D6A3#, 16#007A#),
(16#1D6A4#, 16#0131#),
(16#1D6A5#, 16#0237#),
(16#1D6A8#, 16#0391#),
(16#1D6A9#, 16#0392#),
(16#1D6AA#, 16#0393#),
(16#1D6AB#, 16#0394#),
(16#1D6AC#, 16#0395#),
(16#1D6AD#, 16#0396#),
(16#1D6AE#, 16#0397#),
(16#1D6AF#, 16#0398#),
(16#1D6B0#, 16#0399#),
(16#1D6B1#, 16#039A#),
(16#1D6B2#, 16#039B#),
(16#1D6B3#, 16#039C#),
(16#1D6B4#, 16#039D#),
(16#1D6B5#, 16#039E#),
(16#1D6B6#, 16#039F#),
(16#1D6B7#, 16#03A0#),
(16#1D6B8#, 16#03A1#),
(16#1D6B9#, 16#03F4#),
(16#1D6BA#, 16#03A3#),
(16#1D6BB#, 16#03A4#),
(16#1D6BC#, 16#03A5#),
(16#1D6BD#, 16#03A6#),
(16#1D6BE#, 16#03A7#),
(16#1D6BF#, 16#03A8#),
(16#1D6C0#, 16#03A9#),
(16#1D6C1#, 16#2207#),
(16#1D6C2#, 16#03B1#),
(16#1D6C3#, 16#03B2#),
(16#1D6C4#, 16#03B3#),
(16#1D6C5#, 16#03B4#),
(16#1D6C6#, 16#03B5#),
(16#1D6C7#, 16#03B6#),
(16#1D6C8#, 16#03B7#),
(16#1D6C9#, 16#03B8#),
(16#1D6CA#, 16#03B9#),
(16#1D6CB#, 16#03BA#),
(16#1D6CC#, 16#03BB#),
(16#1D6CD#, 16#03BC#),
(16#1D6CE#, 16#03BD#),
(16#1D6CF#, 16#03BE#),
(16#1D6D0#, 16#03BF#),
(16#1D6D1#, 16#03C0#),
(16#1D6D2#, 16#03C1#),
(16#1D6D3#, 16#03C2#),
(16#1D6D4#, 16#03C3#),
(16#1D6D5#, 16#03C4#),
(16#1D6D6#, 16#03C5#),
(16#1D6D7#, 16#03C6#),
(16#1D6D8#, 16#03C7#),
(16#1D6D9#, 16#03C8#),
(16#1D6DA#, 16#03C9#),
(16#1D6DB#, 16#2202#),
(16#1D6DC#, 16#03F5#),
(16#1D6DD#, 16#03D1#),
(16#1D6DE#, 16#03F0#),
(16#1D6DF#, 16#03D5#),
(16#1D6E0#, 16#03F1#),
(16#1D6E1#, 16#03D6#),
(16#1D6E2#, 16#0391#),
(16#1D6E3#, 16#0392#),
(16#1D6E4#, 16#0393#),
(16#1D6E5#, 16#0394#),
(16#1D6E6#, 16#0395#),
(16#1D6E7#, 16#0396#),
(16#1D6E8#, 16#0397#),
(16#1D6E9#, 16#0398#),
(16#1D6EA#, 16#0399#),
(16#1D6EB#, 16#039A#),
(16#1D6EC#, 16#039B#),
(16#1D6ED#, 16#039C#),
(16#1D6EE#, 16#039D#),
(16#1D6EF#, 16#039E#),
(16#1D6F0#, 16#039F#),
(16#1D6F1#, 16#03A0#),
(16#1D6F2#, 16#03A1#),
(16#1D6F3#, 16#03F4#),
(16#1D6F4#, 16#03A3#),
(16#1D6F5#, 16#03A4#),
(16#1D6F6#, 16#03A5#),
(16#1D6F7#, 16#03A6#),
(16#1D6F8#, 16#03A7#),
(16#1D6F9#, 16#03A8#),
(16#1D6FA#, 16#03A9#),
(16#1D6FB#, 16#2207#),
(16#1D6FC#, 16#03B1#),
(16#1D6FD#, 16#03B2#),
(16#1D6FE#, 16#03B3#),
(16#1D6FF#, 16#03B4#),
(16#1D700#, 16#03B5#),
(16#1D701#, 16#03B6#),
(16#1D702#, 16#03B7#),
(16#1D703#, 16#03B8#),
(16#1D704#, 16#03B9#),
(16#1D705#, 16#03BA#),
(16#1D706#, 16#03BB#),
(16#1D707#, 16#03BC#),
(16#1D708#, 16#03BD#),
(16#1D709#, 16#03BE#),
(16#1D70A#, 16#03BF#),
(16#1D70B#, 16#03C0#),
(16#1D70C#, 16#03C1#),
(16#1D70D#, 16#03C2#),
(16#1D70E#, 16#03C3#),
(16#1D70F#, 16#03C4#),
(16#1D710#, 16#03C5#),
(16#1D711#, 16#03C6#),
(16#1D712#, 16#03C7#),
(16#1D713#, 16#03C8#),
(16#1D714#, 16#03C9#),
(16#1D715#, 16#2202#),
(16#1D716#, 16#03F5#),
(16#1D717#, 16#03D1#),
(16#1D718#, 16#03F0#),
(16#1D719#, 16#03D5#),
(16#1D71A#, 16#03F1#),
(16#1D71B#, 16#03D6#),
(16#1D71C#, 16#0391#),
(16#1D71D#, 16#0392#),
(16#1D71E#, 16#0393#),
(16#1D71F#, 16#0394#),
(16#1D720#, 16#0395#),
(16#1D721#, 16#0396#),
(16#1D722#, 16#0397#),
(16#1D723#, 16#0398#),
(16#1D724#, 16#0399#),
(16#1D725#, 16#039A#),
(16#1D726#, 16#039B#),
(16#1D727#, 16#039C#),
(16#1D728#, 16#039D#),
(16#1D729#, 16#039E#),
(16#1D72A#, 16#039F#),
(16#1D72B#, 16#03A0#),
(16#1D72C#, 16#03A1#),
(16#1D72D#, 16#03F4#),
(16#1D72E#, 16#03A3#),
(16#1D72F#, 16#03A4#),
(16#1D730#, 16#03A5#),
(16#1D731#, 16#03A6#),
(16#1D732#, 16#03A7#),
(16#1D733#, 16#03A8#),
(16#1D734#, 16#03A9#),
(16#1D735#, 16#2207#),
(16#1D736#, 16#03B1#),
(16#1D737#, 16#03B2#),
(16#1D738#, 16#03B3#),
(16#1D739#, 16#03B4#),
(16#1D73A#, 16#03B5#),
(16#1D73B#, 16#03B6#),
(16#1D73C#, 16#03B7#),
(16#1D73D#, 16#03B8#),
(16#1D73E#, 16#03B9#),
(16#1D73F#, 16#03BA#),
(16#1D740#, 16#03BB#),
(16#1D741#, 16#03BC#),
(16#1D742#, 16#03BD#),
(16#1D743#, 16#03BE#),
(16#1D744#, 16#03BF#),
(16#1D745#, 16#03C0#),
(16#1D746#, 16#03C1#),
(16#1D747#, 16#03C2#),
(16#1D748#, 16#03C3#),
(16#1D749#, 16#03C4#),
(16#1D74A#, 16#03C5#),
(16#1D74B#, 16#03C6#),
(16#1D74C#, 16#03C7#),
(16#1D74D#, 16#03C8#),
(16#1D74E#, 16#03C9#),
(16#1D74F#, 16#2202#),
(16#1D750#, 16#03F5#),
(16#1D751#, 16#03D1#),
(16#1D752#, 16#03F0#),
(16#1D753#, 16#03D5#),
(16#1D754#, 16#03F1#),
(16#1D755#, 16#03D6#),
(16#1D756#, 16#0391#),
(16#1D757#, 16#0392#),
(16#1D758#, 16#0393#),
(16#1D759#, 16#0394#),
(16#1D75A#, 16#0395#),
(16#1D75B#, 16#0396#),
(16#1D75C#, 16#0397#),
(16#1D75D#, 16#0398#),
(16#1D75E#, 16#0399#),
(16#1D75F#, 16#039A#),
(16#1D760#, 16#039B#),
(16#1D761#, 16#039C#),
(16#1D762#, 16#039D#),
(16#1D763#, 16#039E#),
(16#1D764#, 16#039F#),
(16#1D765#, 16#03A0#),
(16#1D766#, 16#03A1#),
(16#1D767#, 16#03F4#),
(16#1D768#, 16#03A3#),
(16#1D769#, 16#03A4#),
(16#1D76A#, 16#03A5#),
(16#1D76B#, 16#03A6#),
(16#1D76C#, 16#03A7#),
(16#1D76D#, 16#03A8#),
(16#1D76E#, 16#03A9#),
(16#1D76F#, 16#2207#),
(16#1D770#, 16#03B1#),
(16#1D771#, 16#03B2#),
(16#1D772#, 16#03B3#),
(16#1D773#, 16#03B4#),
(16#1D774#, 16#03B5#),
(16#1D775#, 16#03B6#),
(16#1D776#, 16#03B7#),
(16#1D777#, 16#03B8#),
(16#1D778#, 16#03B9#),
(16#1D779#, 16#03BA#),
(16#1D77A#, 16#03BB#),
(16#1D77B#, 16#03BC#),
(16#1D77C#, 16#03BD#),
(16#1D77D#, 16#03BE#),
(16#1D77E#, 16#03BF#),
(16#1D77F#, 16#03C0#),
(16#1D780#, 16#03C1#),
(16#1D781#, 16#03C2#),
(16#1D782#, 16#03C3#),
(16#1D783#, 16#03C4#),
(16#1D784#, 16#03C5#),
(16#1D785#, 16#03C6#),
(16#1D786#, 16#03C7#),
(16#1D787#, 16#03C8#),
(16#1D788#, 16#03C9#),
(16#1D789#, 16#2202#),
(16#1D78A#, 16#03F5#),
(16#1D78B#, 16#03D1#),
(16#1D78C#, 16#03F0#),
(16#1D78D#, 16#03D5#),
(16#1D78E#, 16#03F1#),
(16#1D78F#, 16#03D6#),
(16#1D790#, 16#0391#),
(16#1D791#, 16#0392#),
(16#1D792#, 16#0393#),
(16#1D793#, 16#0394#),
(16#1D794#, 16#0395#),
(16#1D795#, 16#0396#),
(16#1D796#, 16#0397#),
(16#1D797#, 16#0398#),
(16#1D798#, 16#0399#),
(16#1D799#, 16#039A#),
(16#1D79A#, 16#039B#),
(16#1D79B#, 16#039C#),
(16#1D79C#, 16#039D#),
(16#1D79D#, 16#039E#),
(16#1D79E#, 16#039F#),
(16#1D79F#, 16#03A0#),
(16#1D7A0#, 16#03A1#),
(16#1D7A1#, 16#03F4#),
(16#1D7A2#, 16#03A3#),
(16#1D7A3#, 16#03A4#),
(16#1D7A4#, 16#03A5#),
(16#1D7A5#, 16#03A6#),
(16#1D7A6#, 16#03A7#),
(16#1D7A7#, 16#03A8#),
(16#1D7A8#, 16#03A9#),
(16#1D7A9#, 16#2207#),
(16#1D7AA#, 16#03B1#),
(16#1D7AB#, 16#03B2#),
(16#1D7AC#, 16#03B3#),
(16#1D7AD#, 16#03B4#),
(16#1D7AE#, 16#03B5#),
(16#1D7AF#, 16#03B6#),
(16#1D7B0#, 16#03B7#),
(16#1D7B1#, 16#03B8#),
(16#1D7B2#, 16#03B9#),
(16#1D7B3#, 16#03BA#),
(16#1D7B4#, 16#03BB#),
(16#1D7B5#, 16#03BC#),
(16#1D7B6#, 16#03BD#),
(16#1D7B7#, 16#03BE#),
(16#1D7B8#, 16#03BF#),
(16#1D7B9#, 16#03C0#),
(16#1D7BA#, 16#03C1#),
(16#1D7BB#, 16#03C2#),
(16#1D7BC#, 16#03C3#),
(16#1D7BD#, 16#03C4#),
(16#1D7BE#, 16#03C5#),
(16#1D7BF#, 16#03C6#),
(16#1D7C0#, 16#03C7#),
(16#1D7C1#, 16#03C8#),
(16#1D7C2#, 16#03C9#),
(16#1D7C3#, 16#2202#),
(16#1D7C4#, 16#03F5#),
(16#1D7C5#, 16#03D1#),
(16#1D7C6#, 16#03F0#),
(16#1D7C7#, 16#03D5#),
(16#1D7C8#, 16#03F1#),
(16#1D7C9#, 16#03D6#),
(16#1D7CA#, 16#03DC#),
(16#1D7CB#, 16#03DD#),
(16#1D7CE#, 16#0030#),
(16#1D7CF#, 16#0031#),
(16#1D7D0#, 16#0032#),
(16#1D7D1#, 16#0033#),
(16#1D7D2#, 16#0034#),
(16#1D7D3#, 16#0035#),
(16#1D7D4#, 16#0036#),
(16#1D7D5#, 16#0037#),
(16#1D7D6#, 16#0038#),
(16#1D7D7#, 16#0039#),
(16#1D7D8#, 16#0030#),
(16#1D7D9#, 16#0031#),
(16#1D7DA#, 16#0032#),
(16#1D7DB#, 16#0033#),
(16#1D7DC#, 16#0034#),
(16#1D7DD#, 16#0035#),
(16#1D7DE#, 16#0036#),
(16#1D7DF#, 16#0037#),
(16#1D7E0#, 16#0038#),
(16#1D7E1#, 16#0039#),
(16#1D7E2#, 16#0030#),
(16#1D7E3#, 16#0031#),
(16#1D7E4#, 16#0032#),
(16#1D7E5#, 16#0033#),
(16#1D7E6#, 16#0034#),
(16#1D7E7#, 16#0035#),
(16#1D7E8#, 16#0036#),
(16#1D7E9#, 16#0037#),
(16#1D7EA#, 16#0038#),
(16#1D7EB#, 16#0039#),
(16#1D7EC#, 16#0030#),
(16#1D7ED#, 16#0031#),
(16#1D7EE#, 16#0032#),
(16#1D7EF#, 16#0033#),
(16#1D7F0#, 16#0034#),
(16#1D7F1#, 16#0035#),
(16#1D7F2#, 16#0036#),
(16#1D7F3#, 16#0037#),
(16#1D7F4#, 16#0038#),
(16#1D7F5#, 16#0039#),
(16#1D7F6#, 16#0030#),
(16#1D7F7#, 16#0031#),
(16#1D7F8#, 16#0032#),
(16#1D7F9#, 16#0033#),
(16#1D7FA#, 16#0034#),
(16#1D7FB#, 16#0035#),
(16#1D7FC#, 16#0036#),
(16#1D7FD#, 16#0037#),
(16#1D7FE#, 16#0038#),
(16#1D7FF#, 16#0039#),
(16#1EE00#, 16#0627#),
(16#1EE01#, 16#0628#),
(16#1EE02#, 16#062C#),
(16#1EE03#, 16#062F#),
(16#1EE05#, 16#0648#),
(16#1EE06#, 16#0632#),
(16#1EE07#, 16#062D#),
(16#1EE08#, 16#0637#),
(16#1EE09#, 16#064A#),
(16#1EE0A#, 16#0643#),
(16#1EE0B#, 16#0644#),
(16#1EE0C#, 16#0645#),
(16#1EE0D#, 16#0646#),
(16#1EE0E#, 16#0633#),
(16#1EE0F#, 16#0639#),
(16#1EE10#, 16#0641#),
(16#1EE11#, 16#0635#),
(16#1EE12#, 16#0642#),
(16#1EE13#, 16#0631#),
(16#1EE14#, 16#0634#),
(16#1EE15#, 16#062A#),
(16#1EE16#, 16#062B#),
(16#1EE17#, 16#062E#),
(16#1EE18#, 16#0630#),
(16#1EE19#, 16#0636#),
(16#1EE1A#, 16#0638#),
(16#1EE1B#, 16#063A#),
(16#1EE1C#, 16#066E#),
(16#1EE1D#, 16#06BA#),
(16#1EE1E#, 16#06A1#),
(16#1EE1F#, 16#066F#),
(16#1EE21#, 16#0628#),
(16#1EE22#, 16#062C#),
(16#1EE24#, 16#0647#),
(16#1EE27#, 16#062D#),
(16#1EE29#, 16#064A#),
(16#1EE2A#, 16#0643#),
(16#1EE2B#, 16#0644#),
(16#1EE2C#, 16#0645#),
(16#1EE2D#, 16#0646#),
(16#1EE2E#, 16#0633#),
(16#1EE2F#, 16#0639#),
(16#1EE30#, 16#0641#),
(16#1EE31#, 16#0635#),
(16#1EE32#, 16#0642#),
(16#1EE34#, 16#0634#),
(16#1EE35#, 16#062A#),
(16#1EE36#, 16#062B#),
(16#1EE37#, 16#062E#),
(16#1EE39#, 16#0636#),
(16#1EE3B#, 16#063A#),
(16#1EE42#, 16#062C#),
(16#1EE47#, 16#062D#),
(16#1EE49#, 16#064A#),
(16#1EE4B#, 16#0644#),
(16#1EE4D#, 16#0646#),
(16#1EE4E#, 16#0633#),
(16#1EE4F#, 16#0639#),
(16#1EE51#, 16#0635#),
(16#1EE52#, 16#0642#),
(16#1EE54#, 16#0634#),
(16#1EE57#, 16#062E#),
(16#1EE59#, 16#0636#),
(16#1EE5B#, 16#063A#),
(16#1EE5D#, 16#06BA#),
(16#1EE5F#, 16#066F#),
(16#1EE61#, 16#0628#),
(16#1EE62#, 16#062C#),
(16#1EE64#, 16#0647#),
(16#1EE67#, 16#062D#),
(16#1EE68#, 16#0637#),
(16#1EE69#, 16#064A#),
(16#1EE6A#, 16#0643#),
(16#1EE6C#, 16#0645#),
(16#1EE6D#, 16#0646#),
(16#1EE6E#, 16#0633#),
(16#1EE6F#, 16#0639#),
(16#1EE70#, 16#0641#),
(16#1EE71#, 16#0635#),
(16#1EE72#, 16#0642#),
(16#1EE74#, 16#0634#),
(16#1EE75#, 16#062A#),
(16#1EE76#, 16#062B#),
(16#1EE77#, 16#062E#),
(16#1EE79#, 16#0636#),
(16#1EE7A#, 16#0638#),
(16#1EE7B#, 16#063A#),
(16#1EE7C#, 16#066E#),
(16#1EE7E#, 16#06A1#),
(16#1EE80#, 16#0627#),
(16#1EE81#, 16#0628#),
(16#1EE82#, 16#062C#),
(16#1EE83#, 16#062F#),
(16#1EE84#, 16#0647#),
(16#1EE85#, 16#0648#),
(16#1EE86#, 16#0632#),
(16#1EE87#, 16#062D#),
(16#1EE88#, 16#0637#),
(16#1EE89#, 16#064A#),
(16#1EE8B#, 16#0644#),
(16#1EE8C#, 16#0645#),
(16#1EE8D#, 16#0646#),
(16#1EE8E#, 16#0633#),
(16#1EE8F#, 16#0639#),
(16#1EE90#, 16#0641#),
(16#1EE91#, 16#0635#),
(16#1EE92#, 16#0642#),
(16#1EE93#, 16#0631#),
(16#1EE94#, 16#0634#),
(16#1EE95#, 16#062A#),
(16#1EE96#, 16#062B#),
(16#1EE97#, 16#062E#),
(16#1EE98#, 16#0630#),
(16#1EE99#, 16#0636#),
(16#1EE9A#, 16#0638#),
(16#1EE9B#, 16#063A#),
(16#1EEA1#, 16#0628#),
(16#1EEA2#, 16#062C#),
(16#1EEA3#, 16#062F#),
(16#1EEA5#, 16#0648#),
(16#1EEA6#, 16#0632#),
(16#1EEA7#, 16#062D#),
(16#1EEA8#, 16#0637#),
(16#1EEA9#, 16#064A#),
(16#1EEAB#, 16#0644#),
(16#1EEAC#, 16#0645#),
(16#1EEAD#, 16#0646#),
(16#1EEAE#, 16#0633#),
(16#1EEAF#, 16#0639#),
(16#1EEB0#, 16#0641#),
(16#1EEB1#, 16#0635#),
(16#1EEB2#, 16#0642#),
(16#1EEB3#, 16#0631#),
(16#1EEB4#, 16#0634#),
(16#1EEB5#, 16#062A#),
(16#1EEB6#, 16#062B#),
(16#1EEB7#, 16#062E#),
(16#1EEB8#, 16#0630#),
(16#1EEB9#, 16#0636#),
(16#1EEBA#, 16#0638#),
(16#1EEBB#, 16#063A#),
(16#1F100#, 16#0030#),
(16#1F101#, 16#0030#),
(16#1F102#, 16#0031#),
(16#1F103#, 16#0032#),
(16#1F104#, 16#0033#),
(16#1F105#, 16#0034#),
(16#1F106#, 16#0035#),
(16#1F107#, 16#0036#),
(16#1F108#, 16#0037#),
(16#1F109#, 16#0038#),
(16#1F10A#, 16#0039#),
(16#1F110#, 16#0028#),
(16#1F111#, 16#0028#),
(16#1F112#, 16#0028#),
(16#1F113#, 16#0028#),
(16#1F114#, 16#0028#),
(16#1F115#, 16#0028#),
(16#1F116#, 16#0028#),
(16#1F117#, 16#0028#),
(16#1F118#, 16#0028#),
(16#1F119#, 16#0028#),
(16#1F11A#, 16#0028#),
(16#1F11B#, 16#0028#),
(16#1F11C#, 16#0028#),
(16#1F11D#, 16#0028#),
(16#1F11E#, 16#0028#),
(16#1F11F#, 16#0028#),
(16#1F120#, 16#0028#),
(16#1F121#, 16#0028#),
(16#1F122#, 16#0028#),
(16#1F123#, 16#0028#),
(16#1F124#, 16#0028#),
(16#1F125#, 16#0028#),
(16#1F126#, 16#0028#),
(16#1F127#, 16#0028#),
(16#1F128#, 16#0028#),
(16#1F129#, 16#0028#),
(16#1F12A#, 16#3014#),
(16#1F12B#, 16#0043#),
(16#1F12C#, 16#0052#),
(16#1F12D#, 16#0043#),
(16#1F12E#, 16#0057#),
(16#1F130#, 16#0041#),
(16#1F131#, 16#0042#),
(16#1F132#, 16#0043#),
(16#1F133#, 16#0044#),
(16#1F134#, 16#0045#),
(16#1F135#, 16#0046#),
(16#1F136#, 16#0047#),
(16#1F137#, 16#0048#),
(16#1F138#, 16#0049#),
(16#1F139#, 16#004A#),
(16#1F13A#, 16#004B#),
(16#1F13B#, 16#004C#),
(16#1F13C#, 16#004D#),
(16#1F13D#, 16#004E#),
(16#1F13E#, 16#004F#),
(16#1F13F#, 16#0050#),
(16#1F140#, 16#0051#),
(16#1F141#, 16#0052#),
(16#1F142#, 16#0053#),
(16#1F143#, 16#0054#),
(16#1F144#, 16#0055#),
(16#1F145#, 16#0056#),
(16#1F146#, 16#0057#),
(16#1F147#, 16#0058#),
(16#1F148#, 16#0059#),
(16#1F149#, 16#005A#),
(16#1F14A#, 16#0048#),
(16#1F14B#, 16#004D#),
(16#1F14C#, 16#0053#),
(16#1F14D#, 16#0053#),
(16#1F14E#, 16#0050#),
(16#1F14F#, 16#0057#),
(16#1F16A#, 16#004D#),
(16#1F16B#, 16#004D#),
(16#1F16C#, 16#004D#),
(16#1F190#, 16#0044#),
(16#1F200#, 16#307B#),
(16#1F201#, 16#30B3#),
(16#1F202#, 16#30B5#),
(16#1F210#, 16#624B#),
(16#1F211#, 16#5B57#),
(16#1F212#, 16#53CC#),
(16#1F213#, 16#30C7#),
(16#1F214#, 16#4E8C#),
(16#1F215#, 16#591A#),
(16#1F216#, 16#89E3#),
(16#1F217#, 16#5929#),
(16#1F218#, 16#4EA4#),
(16#1F219#, 16#6620#),
(16#1F21A#, 16#7121#),
(16#1F21B#, 16#6599#),
(16#1F21C#, 16#524D#),
(16#1F21D#, 16#5F8C#),
(16#1F21E#, 16#518D#),
(16#1F21F#, 16#65B0#),
(16#1F220#, 16#521D#),
(16#1F221#, 16#7D42#),
(16#1F222#, 16#751F#),
(16#1F223#, 16#8CA9#),
(16#1F224#, 16#58F0#),
(16#1F225#, 16#5439#),
(16#1F226#, 16#6F14#),
(16#1F227#, 16#6295#),
(16#1F228#, 16#6355#),
(16#1F229#, 16#4E00#),
(16#1F22A#, 16#4E09#),
(16#1F22B#, 16#904A#),
(16#1F22C#, 16#5DE6#),
(16#1F22D#, 16#4E2D#),
(16#1F22E#, 16#53F3#),
(16#1F22F#, 16#6307#),
(16#1F230#, 16#8D70#),
(16#1F231#, 16#6253#),
(16#1F232#, 16#7981#),
(16#1F233#, 16#7A7A#),
(16#1F234#, 16#5408#),
(16#1F235#, 16#6E80#),
(16#1F236#, 16#6709#),
(16#1F237#, 16#6708#),
(16#1F238#, 16#7533#),
(16#1F239#, 16#5272#),
(16#1F23A#, 16#55B6#),
(16#1F23B#, 16#914D#),
(16#1F240#, 16#3014#),
(16#1F241#, 16#3014#),
(16#1F242#, 16#3014#),
(16#1F243#, 16#3014#),
(16#1F244#, 16#3014#),
(16#1F245#, 16#3014#),
(16#1F246#, 16#3014#),
(16#1F247#, 16#3014#),
(16#1F248#, 16#3014#),
(16#1F250#, 16#5F97#),
(16#1F251#, 16#53EF#),
(16#1FBF0#, 16#0030#),
(16#1FBF1#, 16#0031#),
(16#1FBF2#, 16#0032#),
(16#1FBF3#, 16#0033#),
(16#1FBF4#, 16#0034#),
(16#1FBF5#, 16#0035#),
(16#1FBF6#, 16#0036#),
(16#1FBF7#, 16#0037#),
(16#1FBF8#, 16#0038#),
(16#1FBF9#, 16#0039#),
(16#2F800#, 16#4E3D#),
(16#2F801#, 16#4E38#),
(16#2F802#, 16#4E41#),
(16#2F803#, 16#20122#),
(16#2F804#, 16#4F60#),
(16#2F805#, 16#4FAE#),
(16#2F806#, 16#4FBB#),
(16#2F807#, 16#5002#),
(16#2F808#, 16#507A#),
(16#2F809#, 16#5099#),
(16#2F80A#, 16#50E7#),
(16#2F80B#, 16#50CF#),
(16#2F80C#, 16#349E#),
(16#2F80D#, 16#2063A#),
(16#2F80E#, 16#514D#),
(16#2F80F#, 16#5154#),
(16#2F810#, 16#5164#),
(16#2F811#, 16#5177#),
(16#2F812#, 16#2051C#),
(16#2F813#, 16#34B9#),
(16#2F814#, 16#5167#),
(16#2F815#, 16#518D#),
(16#2F816#, 16#2054B#),
(16#2F817#, 16#5197#),
(16#2F818#, 16#51A4#),
(16#2F819#, 16#4ECC#),
(16#2F81A#, 16#51AC#),
(16#2F81B#, 16#51B5#),
(16#2F81C#, 16#291DF#),
(16#2F81D#, 16#51F5#),
(16#2F81E#, 16#5203#),
(16#2F81F#, 16#34DF#),
(16#2F820#, 16#523B#),
(16#2F821#, 16#5246#),
(16#2F822#, 16#5272#),
(16#2F823#, 16#5277#),
(16#2F824#, 16#3515#),
(16#2F825#, 16#52C7#),
(16#2F826#, 16#52C9#),
(16#2F827#, 16#52E4#),
(16#2F828#, 16#52FA#),
(16#2F829#, 16#5305#),
(16#2F82A#, 16#5306#),
(16#2F82B#, 16#5317#),
(16#2F82C#, 16#5349#),
(16#2F82D#, 16#5351#),
(16#2F82E#, 16#535A#),
(16#2F82F#, 16#5373#),
(16#2F830#, 16#537D#),
(16#2F831#, 16#537F#),
(16#2F832#, 16#537F#),
(16#2F833#, 16#537F#),
(16#2F834#, 16#20A2C#),
(16#2F835#, 16#7070#),
(16#2F836#, 16#53CA#),
(16#2F837#, 16#53DF#),
(16#2F838#, 16#20B63#),
(16#2F839#, 16#53EB#),
(16#2F83A#, 16#53F1#),
(16#2F83B#, 16#5406#),
(16#2F83C#, 16#549E#),
(16#2F83D#, 16#5438#),
(16#2F83E#, 16#5448#),
(16#2F83F#, 16#5468#),
(16#2F840#, 16#54A2#),
(16#2F841#, 16#54F6#),
(16#2F842#, 16#5510#),
(16#2F843#, 16#5553#),
(16#2F844#, 16#5563#),
(16#2F845#, 16#5584#),
(16#2F846#, 16#5584#),
(16#2F847#, 16#5599#),
(16#2F848#, 16#55AB#),
(16#2F849#, 16#55B3#),
(16#2F84A#, 16#55C2#),
(16#2F84B#, 16#5716#),
(16#2F84C#, 16#5606#),
(16#2F84D#, 16#5717#),
(16#2F84E#, 16#5651#),
(16#2F84F#, 16#5674#),
(16#2F850#, 16#5207#),
(16#2F851#, 16#58EE#),
(16#2F852#, 16#57CE#),
(16#2F853#, 16#57F4#),
(16#2F854#, 16#580D#),
(16#2F855#, 16#578B#),
(16#2F856#, 16#5832#),
(16#2F857#, 16#5831#),
(16#2F858#, 16#58AC#),
(16#2F859#, 16#214E4#),
(16#2F85A#, 16#58F2#),
(16#2F85B#, 16#58F7#),
(16#2F85C#, 16#5906#),
(16#2F85D#, 16#591A#),
(16#2F85E#, 16#5922#),
(16#2F85F#, 16#5962#),
(16#2F860#, 16#216A8#),
(16#2F861#, 16#216EA#),
(16#2F862#, 16#59EC#),
(16#2F863#, 16#5A1B#),
(16#2F864#, 16#5A27#),
(16#2F865#, 16#59D8#),
(16#2F866#, 16#5A66#),
(16#2F867#, 16#36EE#),
(16#2F868#, 16#36FC#),
(16#2F869#, 16#5B08#),
(16#2F86A#, 16#5B3E#),
(16#2F86B#, 16#5B3E#),
(16#2F86C#, 16#219C8#),
(16#2F86D#, 16#5BC3#),
(16#2F86E#, 16#5BD8#),
(16#2F86F#, 16#5BE7#),
(16#2F870#, 16#5BF3#),
(16#2F871#, 16#21B18#),
(16#2F872#, 16#5BFF#),
(16#2F873#, 16#5C06#),
(16#2F874#, 16#5F53#),
(16#2F875#, 16#5C22#),
(16#2F876#, 16#3781#),
(16#2F877#, 16#5C60#),
(16#2F878#, 16#5C6E#),
(16#2F879#, 16#5CC0#),
(16#2F87A#, 16#5C8D#),
(16#2F87B#, 16#21DE4#),
(16#2F87C#, 16#5D43#),
(16#2F87D#, 16#21DE6#),
(16#2F87E#, 16#5D6E#),
(16#2F87F#, 16#5D6B#),
(16#2F880#, 16#5D7C#),
(16#2F881#, 16#5DE1#),
(16#2F882#, 16#5DE2#),
(16#2F883#, 16#382F#),
(16#2F884#, 16#5DFD#),
(16#2F885#, 16#5E28#),
(16#2F886#, 16#5E3D#),
(16#2F887#, 16#5E69#),
(16#2F888#, 16#3862#),
(16#2F889#, 16#22183#),
(16#2F88A#, 16#387C#),
(16#2F88B#, 16#5EB0#),
(16#2F88C#, 16#5EB3#),
(16#2F88D#, 16#5EB6#),
(16#2F88E#, 16#5ECA#),
(16#2F88F#, 16#2A392#),
(16#2F890#, 16#5EFE#),
(16#2F891#, 16#22331#),
(16#2F892#, 16#22331#),
(16#2F893#, 16#8201#),
(16#2F894#, 16#5F22#),
(16#2F895#, 16#5F22#),
(16#2F896#, 16#38C7#),
(16#2F897#, 16#232B8#),
(16#2F898#, 16#261DA#),
(16#2F899#, 16#5F62#),
(16#2F89A#, 16#5F6B#),
(16#2F89B#, 16#38E3#),
(16#2F89C#, 16#5F9A#),
(16#2F89D#, 16#5FCD#),
(16#2F89E#, 16#5FD7#),
(16#2F89F#, 16#5FF9#),
(16#2F8A0#, 16#6081#),
(16#2F8A1#, 16#393A#),
(16#2F8A2#, 16#391C#),
(16#2F8A3#, 16#6094#),
(16#2F8A4#, 16#226D4#),
(16#2F8A5#, 16#60C7#),
(16#2F8A6#, 16#6148#),
(16#2F8A7#, 16#614C#),
(16#2F8A8#, 16#614E#),
(16#2F8A9#, 16#614C#),
(16#2F8AA#, 16#617A#),
(16#2F8AB#, 16#618E#),
(16#2F8AC#, 16#61B2#),
(16#2F8AD#, 16#61A4#),
(16#2F8AE#, 16#61AF#),
(16#2F8AF#, 16#61DE#),
(16#2F8B0#, 16#61F2#),
(16#2F8B1#, 16#61F6#),
(16#2F8B2#, 16#6210#),
(16#2F8B3#, 16#621B#),
(16#2F8B4#, 16#625D#),
(16#2F8B5#, 16#62B1#),
(16#2F8B6#, 16#62D4#),
(16#2F8B7#, 16#6350#),
(16#2F8B8#, 16#22B0C#),
(16#2F8B9#, 16#633D#),
(16#2F8BA#, 16#62FC#),
(16#2F8BB#, 16#6368#),
(16#2F8BC#, 16#6383#),
(16#2F8BD#, 16#63E4#),
(16#2F8BE#, 16#22BF1#),
(16#2F8BF#, 16#6422#),
(16#2F8C0#, 16#63C5#),
(16#2F8C1#, 16#63A9#),
(16#2F8C2#, 16#3A2E#),
(16#2F8C3#, 16#6469#),
(16#2F8C4#, 16#647E#),
(16#2F8C5#, 16#649D#),
(16#2F8C6#, 16#6477#),
(16#2F8C7#, 16#3A6C#),
(16#2F8C8#, 16#654F#),
(16#2F8C9#, 16#656C#),
(16#2F8CA#, 16#2300A#),
(16#2F8CB#, 16#65E3#),
(16#2F8CC#, 16#66F8#),
(16#2F8CD#, 16#6649#),
(16#2F8CE#, 16#3B19#),
(16#2F8CF#, 16#6691#),
(16#2F8D0#, 16#3B08#),
(16#2F8D1#, 16#3AE4#),
(16#2F8D2#, 16#5192#),
(16#2F8D3#, 16#5195#),
(16#2F8D4#, 16#6700#),
(16#2F8D5#, 16#669C#),
(16#2F8D6#, 16#80AD#),
(16#2F8D7#, 16#43D9#),
(16#2F8D8#, 16#6717#),
(16#2F8D9#, 16#671B#),
(16#2F8DA#, 16#6721#),
(16#2F8DB#, 16#675E#),
(16#2F8DC#, 16#6753#),
(16#2F8DD#, 16#233C3#),
(16#2F8DE#, 16#3B49#),
(16#2F8DF#, 16#67FA#),
(16#2F8E0#, 16#6785#),
(16#2F8E1#, 16#6852#),
(16#2F8E2#, 16#6885#),
(16#2F8E3#, 16#2346D#),
(16#2F8E4#, 16#688E#),
(16#2F8E5#, 16#681F#),
(16#2F8E6#, 16#6914#),
(16#2F8E7#, 16#3B9D#),
(16#2F8E8#, 16#6942#),
(16#2F8E9#, 16#69A3#),
(16#2F8EA#, 16#69EA#),
(16#2F8EB#, 16#6AA8#),
(16#2F8EC#, 16#236A3#),
(16#2F8ED#, 16#6ADB#),
(16#2F8EE#, 16#3C18#),
(16#2F8EF#, 16#6B21#),
(16#2F8F0#, 16#238A7#),
(16#2F8F1#, 16#6B54#),
(16#2F8F2#, 16#3C4E#),
(16#2F8F3#, 16#6B72#),
(16#2F8F4#, 16#6B9F#),
(16#2F8F5#, 16#6BBA#),
(16#2F8F6#, 16#6BBB#),
(16#2F8F7#, 16#23A8D#),
(16#2F8F8#, 16#21D0B#),
(16#2F8F9#, 16#23AFA#),
(16#2F8FA#, 16#6C4E#),
(16#2F8FB#, 16#23CBC#),
(16#2F8FC#, 16#6CBF#),
(16#2F8FD#, 16#6CCD#),
(16#2F8FE#, 16#6C67#),
(16#2F8FF#, 16#6D16#),
(16#2F900#, 16#6D3E#),
(16#2F901#, 16#6D77#),
(16#2F902#, 16#6D41#),
(16#2F903#, 16#6D69#),
(16#2F904#, 16#6D78#),
(16#2F905#, 16#6D85#),
(16#2F906#, 16#23D1E#),
(16#2F907#, 16#6D34#),
(16#2F908#, 16#6E2F#),
(16#2F909#, 16#6E6E#),
(16#2F90A#, 16#3D33#),
(16#2F90B#, 16#6ECB#),
(16#2F90C#, 16#6EC7#),
(16#2F90D#, 16#23ED1#),
(16#2F90E#, 16#6DF9#),
(16#2F90F#, 16#6F6E#),
(16#2F910#, 16#23F5E#),
(16#2F911#, 16#23F8E#),
(16#2F912#, 16#6FC6#),
(16#2F913#, 16#7039#),
(16#2F914#, 16#701E#),
(16#2F915#, 16#701B#),
(16#2F916#, 16#3D96#),
(16#2F917#, 16#704A#),
(16#2F918#, 16#707D#),
(16#2F919#, 16#7077#),
(16#2F91A#, 16#70AD#),
(16#2F91B#, 16#20525#),
(16#2F91C#, 16#7145#),
(16#2F91D#, 16#24263#),
(16#2F91E#, 16#719C#),
(16#2F91F#, 16#243AB#),
(16#2F920#, 16#7228#),
(16#2F921#, 16#7235#),
(16#2F922#, 16#7250#),
(16#2F923#, 16#24608#),
(16#2F924#, 16#7280#),
(16#2F925#, 16#7295#),
(16#2F926#, 16#24735#),
(16#2F927#, 16#24814#),
(16#2F928#, 16#737A#),
(16#2F929#, 16#738B#),
(16#2F92A#, 16#3EAC#),
(16#2F92B#, 16#73A5#),
(16#2F92C#, 16#3EB8#),
(16#2F92D#, 16#3EB8#),
(16#2F92E#, 16#7447#),
(16#2F92F#, 16#745C#),
(16#2F930#, 16#7471#),
(16#2F931#, 16#7485#),
(16#2F932#, 16#74CA#),
(16#2F933#, 16#3F1B#),
(16#2F934#, 16#7524#),
(16#2F935#, 16#24C36#),
(16#2F936#, 16#753E#),
(16#2F937#, 16#24C92#),
(16#2F938#, 16#7570#),
(16#2F939#, 16#2219F#),
(16#2F93A#, 16#7610#),
(16#2F93B#, 16#24FA1#),
(16#2F93C#, 16#24FB8#),
(16#2F93D#, 16#25044#),
(16#2F93E#, 16#3FFC#),
(16#2F93F#, 16#4008#),
(16#2F940#, 16#76F4#),
(16#2F941#, 16#250F3#),
(16#2F942#, 16#250F2#),
(16#2F943#, 16#25119#),
(16#2F944#, 16#25133#),
(16#2F945#, 16#771E#),
(16#2F946#, 16#771F#),
(16#2F947#, 16#771F#),
(16#2F948#, 16#774A#),
(16#2F949#, 16#4039#),
(16#2F94A#, 16#778B#),
(16#2F94B#, 16#4046#),
(16#2F94C#, 16#4096#),
(16#2F94D#, 16#2541D#),
(16#2F94E#, 16#784E#),
(16#2F94F#, 16#788C#),
(16#2F950#, 16#78CC#),
(16#2F951#, 16#40E3#),
(16#2F952#, 16#25626#),
(16#2F953#, 16#7956#),
(16#2F954#, 16#2569A#),
(16#2F955#, 16#256C5#),
(16#2F956#, 16#798F#),
(16#2F957#, 16#79EB#),
(16#2F958#, 16#412F#),
(16#2F959#, 16#7A40#),
(16#2F95A#, 16#7A4A#),
(16#2F95B#, 16#7A4F#),
(16#2F95C#, 16#2597C#),
(16#2F95D#, 16#25AA7#),
(16#2F95E#, 16#25AA7#),
(16#2F95F#, 16#7AEE#),
(16#2F960#, 16#4202#),
(16#2F961#, 16#25BAB#),
(16#2F962#, 16#7BC6#),
(16#2F963#, 16#7BC9#),
(16#2F964#, 16#4227#),
(16#2F965#, 16#25C80#),
(16#2F966#, 16#7CD2#),
(16#2F967#, 16#42A0#),
(16#2F968#, 16#7CE8#),
(16#2F969#, 16#7CE3#),
(16#2F96A#, 16#7D00#),
(16#2F96B#, 16#25F86#),
(16#2F96C#, 16#7D63#),
(16#2F96D#, 16#4301#),
(16#2F96E#, 16#7DC7#),
(16#2F96F#, 16#7E02#),
(16#2F970#, 16#7E45#),
(16#2F971#, 16#4334#),
(16#2F972#, 16#26228#),
(16#2F973#, 16#26247#),
(16#2F974#, 16#4359#),
(16#2F975#, 16#262D9#),
(16#2F976#, 16#7F7A#),
(16#2F977#, 16#2633E#),
(16#2F978#, 16#7F95#),
(16#2F979#, 16#7FFA#),
(16#2F97A#, 16#8005#),
(16#2F97B#, 16#264DA#),
(16#2F97C#, 16#26523#),
(16#2F97D#, 16#8060#),
(16#2F97E#, 16#265A8#),
(16#2F97F#, 16#8070#),
(16#2F980#, 16#2335F#),
(16#2F981#, 16#43D5#),
(16#2F982#, 16#80B2#),
(16#2F983#, 16#8103#),
(16#2F984#, 16#440B#),
(16#2F985#, 16#813E#),
(16#2F986#, 16#5AB5#),
(16#2F987#, 16#267A7#),
(16#2F988#, 16#267B5#),
(16#2F989#, 16#23393#),
(16#2F98A#, 16#2339C#),
(16#2F98B#, 16#8201#),
(16#2F98C#, 16#8204#),
(16#2F98D#, 16#8F9E#),
(16#2F98E#, 16#446B#),
(16#2F98F#, 16#8291#),
(16#2F990#, 16#828B#),
(16#2F991#, 16#829D#),
(16#2F992#, 16#52B3#),
(16#2F993#, 16#82B1#),
(16#2F994#, 16#82B3#),
(16#2F995#, 16#82BD#),
(16#2F996#, 16#82E6#),
(16#2F997#, 16#26B3C#),
(16#2F998#, 16#82E5#),
(16#2F999#, 16#831D#),
(16#2F99A#, 16#8363#),
(16#2F99B#, 16#83AD#),
(16#2F99C#, 16#8323#),
(16#2F99D#, 16#83BD#),
(16#2F99E#, 16#83E7#),
(16#2F99F#, 16#8457#),
(16#2F9A0#, 16#8353#),
(16#2F9A1#, 16#83CA#),
(16#2F9A2#, 16#83CC#),
(16#2F9A3#, 16#83DC#),
(16#2F9A4#, 16#26C36#),
(16#2F9A5#, 16#26D6B#),
(16#2F9A6#, 16#26CD5#),
(16#2F9A7#, 16#452B#),
(16#2F9A8#, 16#84F1#),
(16#2F9A9#, 16#84F3#),
(16#2F9AA#, 16#8516#),
(16#2F9AB#, 16#273CA#),
(16#2F9AC#, 16#8564#),
(16#2F9AD#, 16#26F2C#),
(16#2F9AE#, 16#455D#),
(16#2F9AF#, 16#4561#),
(16#2F9B0#, 16#26FB1#),
(16#2F9B1#, 16#270D2#),
(16#2F9B2#, 16#456B#),
(16#2F9B3#, 16#8650#),
(16#2F9B4#, 16#865C#),
(16#2F9B5#, 16#8667#),
(16#2F9B6#, 16#8669#),
(16#2F9B7#, 16#86A9#),
(16#2F9B8#, 16#8688#),
(16#2F9B9#, 16#870E#),
(16#2F9BA#, 16#86E2#),
(16#2F9BB#, 16#8779#),
(16#2F9BC#, 16#8728#),
(16#2F9BD#, 16#876B#),
(16#2F9BE#, 16#8786#),
(16#2F9BF#, 16#45D7#),
(16#2F9C0#, 16#87E1#),
(16#2F9C1#, 16#8801#),
(16#2F9C2#, 16#45F9#),
(16#2F9C3#, 16#8860#),
(16#2F9C4#, 16#8863#),
(16#2F9C5#, 16#27667#),
(16#2F9C6#, 16#88D7#),
(16#2F9C7#, 16#88DE#),
(16#2F9C8#, 16#4635#),
(16#2F9C9#, 16#88FA#),
(16#2F9CA#, 16#34BB#),
(16#2F9CB#, 16#278AE#),
(16#2F9CC#, 16#27966#),
(16#2F9CD#, 16#46BE#),
(16#2F9CE#, 16#46C7#),
(16#2F9CF#, 16#8AA0#),
(16#2F9D0#, 16#8AED#),
(16#2F9D1#, 16#8B8A#),
(16#2F9D2#, 16#8C55#),
(16#2F9D3#, 16#27CA8#),
(16#2F9D4#, 16#8CAB#),
(16#2F9D5#, 16#8CC1#),
(16#2F9D6#, 16#8D1B#),
(16#2F9D7#, 16#8D77#),
(16#2F9D8#, 16#27F2F#),
(16#2F9D9#, 16#20804#),
(16#2F9DA#, 16#8DCB#),
(16#2F9DB#, 16#8DBC#),
(16#2F9DC#, 16#8DF0#),
(16#2F9DD#, 16#208DE#),
(16#2F9DE#, 16#8ED4#),
(16#2F9DF#, 16#8F38#),
(16#2F9E0#, 16#285D2#),
(16#2F9E1#, 16#285ED#),
(16#2F9E2#, 16#9094#),
(16#2F9E3#, 16#90F1#),
(16#2F9E4#, 16#9111#),
(16#2F9E5#, 16#2872E#),
(16#2F9E6#, 16#911B#),
(16#2F9E7#, 16#9238#),
(16#2F9E8#, 16#92D7#),
(16#2F9E9#, 16#92D8#),
(16#2F9EA#, 16#927C#),
(16#2F9EB#, 16#93F9#),
(16#2F9EC#, 16#9415#),
(16#2F9ED#, 16#28BFA#),
(16#2F9EE#, 16#958B#),
(16#2F9EF#, 16#4995#),
(16#2F9F0#, 16#95B7#),
(16#2F9F1#, 16#28D77#),
(16#2F9F2#, 16#49E6#),
(16#2F9F3#, 16#96C3#),
(16#2F9F4#, 16#5DB2#),
(16#2F9F5#, 16#9723#),
(16#2F9F6#, 16#29145#),
(16#2F9F7#, 16#2921A#),
(16#2F9F8#, 16#4A6E#),
(16#2F9F9#, 16#4A76#),
(16#2F9FA#, 16#97E0#),
(16#2F9FB#, 16#2940A#),
(16#2F9FC#, 16#4AB2#),
(16#2F9FD#, 16#29496#),
(16#2F9FE#, 16#980B#),
(16#2F9FF#, 16#980B#),
(16#2FA00#, 16#9829#),
(16#2FA01#, 16#295B6#),
(16#2FA02#, 16#98E2#),
(16#2FA03#, 16#4B33#),
(16#2FA04#, 16#9929#),
(16#2FA05#, 16#99A7#),
(16#2FA06#, 16#99C2#),
(16#2FA07#, 16#99FE#),
(16#2FA08#, 16#4BCE#),
(16#2FA09#, 16#29B30#),
(16#2FA0A#, 16#9B12#),
(16#2FA0B#, 16#9C40#),
(16#2FA0C#, 16#9CFD#),
(16#2FA0D#, 16#4CCE#),
(16#2FA0E#, 16#4CED#),
(16#2FA0F#, 16#9D67#),
(16#2FA10#, 16#2A0CE#),
(16#2FA11#, 16#4CF8#),
(16#2FA12#, 16#2A105#),
(16#2FA13#, 16#2A20E#),
(16#2FA14#, 16#2A291#),
(16#2FA15#, 16#9EBB#),
(16#2FA16#, 16#4D56#),
(16#2FA17#, 16#9EF9#),
(16#2FA18#, 16#9EFE#),
(16#2FA19#, 16#9F05#),
(16#2FA1A#, 16#9F0F#),
(16#2FA1B#, 16#9F16#),
(16#2FA1C#, 16#9F3B#),
(16#2FA1D#, 16#2A600#));
-----------------------
-- Local Subprograms --
-----------------------
function Decomposition_Search
(U : UTF_32; R : Unicode_Decomposition_Array) return Natural;
-- Searches the given decomposition array and returns the index of the
-- matching character U if found, zero otherwise.
function Range_Search (U : UTF_32; R : UTF_32_Ranges) return Natural;
-- Searches the given ranges (which must be in ascending order by Lo value)
-- and returns the index of the matching range in R if U matches one of the
-- ranges. If U matches none of the ranges, returns zero.
------------------
-- Get_Category --
------------------
function Get_Category (U : UTF_32) return Category is
begin
-- Deal with FFFE/FFFF cases
if U mod 16#1_0000# >= 16#FFFE# then
return Fe;
-- Otherwise search table
else
declare
Index : constant Integer := Range_Search (U, Unicode_Ranges);
begin
if Index = 0 then
return Cn;
else
return Unicode_Categories (Index);
end if;
end;
end if;
end Get_Category;
---------------------
-- Is_UTF_32_Digit --
---------------------
function Is_UTF_32_Digit (U : UTF_32) return Boolean is
begin
return Range_Search (U, UTF_32_Digits) /= 0;
end Is_UTF_32_Digit;
function Is_UTF_32_Digit (C : Category) return Boolean is
begin
return C = Nd;
end Is_UTF_32_Digit;
----------------------
-- Is_UTF_32_Letter --
----------------------
function Is_UTF_32_Letter (U : UTF_32) return Boolean is
begin
return Range_Search (U, UTF_32_Letters) /= 0;
end Is_UTF_32_Letter;
Letter : constant array (Category) of Boolean :=
(Lu => True,
Ll => True,
Lt => True,
Lm => True,
Lo => True,
Nl => True,
others => False);
function Is_UTF_32_Letter (C : Category) return Boolean is
begin
return Letter (C);
end Is_UTF_32_Letter;
-------------------------------
-- Is_UTF_32_Line_Terminator --
-------------------------------
function Is_UTF_32_Line_Terminator (U : UTF_32) return Boolean is
begin
return U in 10 .. 13 -- Ascii.LF Ascii.VT Ascii.FF Ascii.CR
or else U = 16#00085# -- NEL
or else U = 16#02028# -- LINE SEPARATOR
or else U = 16#02029#; -- PARAGRAPH SEPARATOR
end Is_UTF_32_Line_Terminator;
--------------------
-- Is_UTF_32_Mark --
--------------------
function Is_UTF_32_Mark (U : UTF_32) return Boolean is
begin
return Range_Search (U, UTF_32_Marks) /= 0;
end Is_UTF_32_Mark;
function Is_UTF_32_Mark (C : Category) return Boolean is
begin
return C = Mn or else C = Mc;
end Is_UTF_32_Mark;
---------------------------
-- Is_UTF_32_Non_Graphic --
---------------------------
function Is_UTF_32_Non_Graphic (U : UTF_32) return Boolean is
begin
-- We have to deal with FFFE/FFFF specially
if U mod 16#1_0000# >= 16#FFFE# then
return True;
-- Otherwise we can use the table
else
return Range_Search (U, UTF_32_Non_Graphic) /= 0;
end if;
end Is_UTF_32_Non_Graphic;
Non_Graphic : constant array (Category) of Boolean :=
(Cc => True,
Co => True,
Cs => True,
Zl => True,
Zp => True,
Fe => True,
others => False);
function Is_UTF_32_Non_Graphic (C : Category) return Boolean is
begin
return Non_Graphic (C);
end Is_UTF_32_Non_Graphic;
--------------------
-- Is_UTF_32_NFKC --
--------------------
function Is_UTF_32_NFKC (U : UTF_32) return Boolean is
begin
return U < 160 or else Range_Search (U, UTF_32_NFKC_QC_No) = 0;
end Is_UTF_32_NFKC;
---------------------
-- Is_UTF_32_Other --
---------------------
function Is_UTF_32_Other (U : UTF_32) return Boolean is
begin
return Range_Search (U, UTF_32_Other_Format) /= 0;
end Is_UTF_32_Other;
function Is_UTF_32_Other (C : Category) return Boolean is
begin
return C = Cf;
end Is_UTF_32_Other;
---------------------------
-- Is_UTF_32_Punctuation --
---------------------------
function Is_UTF_32_Punctuation (U : UTF_32) return Boolean is
begin
return Range_Search (U, UTF_32_Punctuation) /= 0;
end Is_UTF_32_Punctuation;
function Is_UTF_32_Punctuation (C : Category) return Boolean is
begin
return C = Pc;
end Is_UTF_32_Punctuation;
---------------------
-- Is_UTF_32_Space --
---------------------
function Is_UTF_32_Space (U : UTF_32) return Boolean is
begin
return Range_Search (U, UTF_32_Spaces) /= 0;
end Is_UTF_32_Space;
function Is_UTF_32_Space (C : Category) return Boolean is
begin
return C = Zs;
end Is_UTF_32_Space;
---------------------
-- Is_UTF_32_Basic --
---------------------
function Is_UTF_32_Basic (U : UTF_32) return Boolean is
begin
return Decomposition_Search (U, Unicode_Decomposition) = 0;
end Is_UTF_32_Basic;
--------------------------
-- Decomposition_Search --
--------------------------
function Decomposition_Search
(U : UTF_32; R : Unicode_Decomposition_Array) return Natural
is
Lo : Integer;
Hi : Integer;
Mid : Integer;
begin
Lo := R'First;
Hi := R'Last;
loop
Mid := (Lo + Hi) / 2;
if U < R (Mid).Item then
Hi := Mid - 1;
if Hi < Lo then
return 0;
end if;
elsif R (Mid).Item < U then
Lo := Mid + 1;
if Hi < Lo then
return 0;
end if;
else
return Mid;
end if;
end loop;
end Decomposition_Search;
------------------
-- Range_Search --
------------------
function Range_Search (U : UTF_32; R : UTF_32_Ranges) return Natural is
Lo : Integer;
Hi : Integer;
Mid : Integer;
begin
Lo := R'First;
Hi := R'Last;
loop
Mid := (Lo + Hi) / 2;
if U < R (Mid).Lo then
Hi := Mid - 1;
if Hi < Lo then
return 0;
end if;
elsif R (Mid).Hi < U then
Lo := Mid + 1;
if Hi < Lo then
return 0;
end if;
else
return Mid;
end if;
end loop;
end Range_Search;
---------------------
-- UTF_32_To_Basic --
---------------------
function UTF_32_To_Basic (U : UTF_32) return UTF_32 is
Index : constant Integer :=
Decomposition_Search (U, Unicode_Decomposition);
begin
if Index = 0 then
return U;
else
return Unicode_Decomposition (Index).First_Char_Mapping;
end if;
end UTF_32_To_Basic;
--------------------------
-- UTF_32_To_Lower_Case --
--------------------------
function UTF_32_To_Lower_Case (U : UTF_32) return UTF_32 is
Index : constant Integer := Range_Search (U, Upper_Case_Letters);
begin
if Index = 0 then
return U;
else
return U + Upper_Case_Adjust (Index);
end if;
end UTF_32_To_Lower_Case;
--------------------------
-- UTF_32_To_Upper_Case --
--------------------------
function UTF_32_To_Upper_Case (U : UTF_32) return UTF_32 is
Index : constant Integer := Range_Search (U, Lower_Case_Letters);
begin
if Index = 0 then
return U;
else
return U + Lower_Case_Adjust (Index);
end if;
end UTF_32_To_Upper_Case;
end System.UTF_32;
| 62.402274 | 171 | 0.619033 |
a1a1e74452e2f4709c849f37cc8bc94080c09a83 | 104 | adb | Ada | tentaplugg_albin/stonehedge/henge?.adb | albinjal/ada_basic | 2ee5963f18496870ee9efc2e6466917c87482ddc | [
"MIT"
] | 3 | 2020-01-27T10:04:20.000Z | 2022-02-11T23:17:00.000Z | tentaplugg_albin/stonehedge/henge?.adb | albinjal/ada_basic | 2ee5963f18496870ee9efc2e6466917c87482ddc | [
"MIT"
] | null | null | null | tentaplugg_albin/stonehedge/henge?.adb | albinjal/ada_basic | 2ee5963f18496870ee9efc2e6466917c87482ddc | [
"MIT"
] | null | null | null | with Ada.Text_IO; use Ada.Text_IO;
with Ada.Integer_Text_IO; use Ada.Integer_Text_IO;
procedure henge
| 17.333333 | 50 | 0.807692 |
1d99411fcab286a2648c28d6c34a05803841129d | 11,804 | adb | Ada | awa/plugins/awa-blogs/regtests/awa-blogs-tests.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | null | null | null | awa/plugins/awa-blogs/regtests/awa-blogs-tests.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | null | null | null | awa/plugins/awa-blogs/regtests/awa-blogs-tests.adb | My-Colaborations/ada-awa | cc2dee291a14e4df0dbc9c10285bf284a7f1caa8 | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- awa-blogs-tests -- Unit tests for blogs module
-- Copyright (C) 2017, 2018, 2019, 2020 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.Test_Caller;
with ASF.Requests.Mockup;
with ASF.Responses.Mockup;
with ASF.Tests;
with AWA.Tests.Helpers.Users;
package body AWA.Blogs.Tests is
use Ada.Strings.Unbounded;
use AWA.Tests;
package Caller is new Util.Test_Caller (Test, "Blogs.Beans");
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is
begin
Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.List_Post (Anonymous)",
Test_Anonymous_Access'Access);
Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Create_Blog",
Test_Create_Blog'Access);
Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Update_Post",
Test_Update_Post'Access);
Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.List_Post (Admin)",
Test_Admin_List_Posts'Access);
Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.List_Comments (Admin)",
Test_Admin_List_Comments'Access);
Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Stats (Admin)",
Test_Admin_Blog_Stats'Access);
Caller.Add_Test (Suite, "Test AWA.Blogs.Beans.Update_Post (Publish_Date)",
Test_Update_Publish_Date'Access);
end Add_Tests;
-- ------------------------------
-- Get some access on the blog as anonymous users.
-- ------------------------------
procedure Verify_Anonymous (T : in out Test;
Post : in String) is
Request : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
begin
ASF.Tests.Do_Get (Request, Reply, "/blogs/view.html", "blog-view.html");
ASF.Tests.Assert_Contains (T, "Blog posts", Reply, "Blog view page is invalid");
ASF.Tests.Do_Get (Request, Reply, "/blogs/tagged.html?tag=test", "blog-tagged.html");
ASF.Tests.Assert_Contains (T, "Tag - test", Reply, "Blog tag page is invalid");
ASF.Tests.Do_Get (Request, Reply, "/blogs/post.html?post=missing", "blog-missing.html");
ASF.Tests.Assert_Matches (T, "The post you are looking for does not exist",
Reply, "Blog post missing page is invalid",
ASF.Responses.SC_NOT_FOUND);
if Post = "" then
return;
end if;
ASF.Tests.Do_Get (Request, Reply, "/blogs/post.html?post=" & Post, "blog-post.html");
ASF.Tests.Assert_Matches (T, ".*The blog post.*content.*", Reply,
"Blog post page is invalid"
);
end Verify_Anonymous;
-- ------------------------------
-- Test access to the blog as anonymous user.
-- ------------------------------
procedure Test_Anonymous_Access (T : in out Test) is
begin
T.Verify_Anonymous ("");
end Test_Anonymous_Access;
-- ------------------------------
-- Test creation of blog by simulating web requests.
-- ------------------------------
procedure Test_Create_Blog (T : in out Test) is
Request : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
Uuid : constant String := Util.Tests.Get_Uuid;
begin
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/create-blog.html",
"create-blog-get.html");
T.Assert (Reply.Get_Status = ASF.Responses.SC_OK,
"Invalid response after getting blog creation page");
ASF.Tests.Assert_Matches (T, "<dl id=.title.*<dt><label for=.title.*"
& "<dd><input type=.text.*", Reply,
"Blog post admin page is missing input field");
Request.Set_Parameter ("title", "The Blog Title");
Request.Set_Parameter ("create-blog", "1");
Request.Set_Parameter ("create", "1");
ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/create-blog.html", "create-blog.html");
T.Assert (Reply.Get_Status = ASF.Responses.SC_MOVED_TEMPORARILY,
"Invalid response after blog creation");
declare
Ident : constant String
:= Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/create.html?id=");
begin
Util.Tests.Assert_Matches (T, "^[0-9]+$", Ident,
"Invalid blog identifier in the response");
T.Blog_Ident := To_Unbounded_String (Ident);
Request.Set_Parameter ("post-blog-id", Ident);
Request.Set_Parameter ("post", "1");
Request.Set_Parameter ("post-title", "Post title");
Request.Set_Parameter ("text", "The blog post content.");
Request.Set_Parameter ("uri", Uuid);
Request.Set_Parameter ("save", "1");
Request.Set_Parameter ("post-status", "1");
Request.Set_Parameter ("allow-comment", "0");
Request.Set_Parameter ("post-format", "dotclear");
ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/create.html", "create-post.html");
T.Post_Ident := Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/"
& Ident & "/preview/");
Util.Tests.Assert_Matches (T, "^[0-9]+$", To_String (T.Post_Ident),
"Invalid post identifier in the response");
end;
-- Check public access to the post.
T.Post_Uri := To_Unbounded_String (Uuid);
T.Verify_Anonymous (Uuid);
end Test_Create_Blog;
-- ------------------------------
-- Test updating a post by simulating web requests.
-- ------------------------------
procedure Test_Update_Post (T : in out Test) is
Request : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
Uuid : constant String := Util.Tests.Get_Uuid;
Ident : constant String := To_String (T.Blog_Ident);
Post_Ident : Unbounded_String;
begin
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
Request.Set_Parameter ("post-blog-id", Ident);
Request.Set_Parameter ("post-id", To_String (T.Post_Ident));
Request.Set_Parameter ("post", "1");
Request.Set_Parameter ("post-title", "New post title");
Request.Set_Parameter ("text", "The blog post new content.");
Request.Set_Parameter ("uri", Uuid);
Request.Set_Parameter ("save", "1");
Request.Set_Parameter ("post-status", "POST_PUBLISHED");
Request.Set_Parameter ("post-format", "dotclear");
Request.Set_Parameter ("allow-comment", "0");
ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/edit.html", "edit-post.html");
Post_Ident := Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/"
& Ident & "/preview/");
Util.Tests.Assert_Equals (T, To_String (T.Post_Ident), To_String (Post_Ident),
"Invalid post identifier returned after post update");
T.Verify_Anonymous (Uuid);
end Test_Update_Post;
-- ------------------------------
-- Test updating the publication date by simulating web requests.
-- ------------------------------
procedure Test_Update_Publish_Date (T : in out Test) is
Request : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
Uuid : constant String := Util.Tests.Get_Uuid;
Ident : constant String := To_String (T.Blog_Ident);
Post_Ident : Unbounded_String;
begin
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
Request.Set_Parameter ("post_id", To_String (T.Post_Ident));
Request.Set_Parameter ("blog_id", Ident);
ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/edit.html", "edit-post-form.html");
Request.Set_Parameter ("post-blog-id", Ident);
Request.Set_Parameter ("post-id", To_String (T.Post_Ident));
Request.Set_Parameter ("post", "1");
Request.Set_Parameter ("post-title", "New post title");
Request.Set_Parameter ("text", "The blog post new content.");
Request.Set_Parameter ("uri", Uuid);
Request.Set_Parameter ("save", "POST_PUBLISHED");
Request.Set_Parameter ("post-format", "dotclear");
Request.Set_Parameter ("post-status", "1");
Request.Set_Parameter ("allow-comment", "0");
Request.Set_Parameter ("publish-date", "");
ASF.Tests.Do_Post (Request, Reply, "/blogs/admin/edit.html", "edit-post.html");
Post_Ident := Helpers.Extract_Redirect (Reply, "/asfunit/blogs/admin/"
& Ident & "/preview/");
Util.Tests.Assert_Equals (T, To_String (T.Post_Ident), To_String (Post_Ident),
"Invalid post identifier returned after post update");
T.Verify_Anonymous (Uuid);
end Test_Update_Publish_Date;
-- ------------------------------
-- Test listing the blog posts.
-- ------------------------------
procedure Test_Admin_List_Posts (T : in out Test) is
Request : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
Ident : constant String := To_String (T.Blog_Ident);
begin
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/list.html?id=" & Ident, "blog-list.html");
ASF.Tests.Assert_Contains (T, "blog-post-list-header", Reply, "Blog admin page is invalid");
end Test_Admin_List_Posts;
-- ------------------------------
-- Test listing the blog comments.
-- ------------------------------
procedure Test_Admin_List_Comments (T : in out Test) is
Request : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
Ident : constant String := To_String (T.Blog_Ident);
begin
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/list-comments.html?id=" & Ident,
"blog-list-comments.html");
ASF.Tests.Assert_Contains (T, "blog-comment-list-header", Reply,
"Blog admin comments page is invalid");
end Test_Admin_List_Comments;
-- ------------------------------
-- Test getting the JSON blog stats (for graphs).
-- ------------------------------
procedure Test_Admin_Blog_Stats (T : in out Test) is
Request : ASF.Requests.Mockup.Request;
Reply : ASF.Responses.Mockup.Response;
Ident : constant String := To_String (T.Blog_Ident);
begin
AWA.Tests.Helpers.Users.Login ("[email protected]", Request);
ASF.Tests.Do_Get (Request, Reply, "/blogs/admin/" & Ident & "/stats",
"blog-stats.html");
ASF.Tests.Assert_Contains (T, "data", Reply,
"Blog admin stats page is invalid");
end Test_Admin_Blog_Stats;
end AWA.Blogs.Tests;
| 46.290196 | 98 | 0.587343 |
59684e649a16a1781af5de6583ddfe6a98992415 | 6,040 | ads | Ada | src/sdl-video-textures.ads | alire-project/sdlada | 9593807925f5f6651d81514c7f2d163ab3156dc1 | [
"Zlib"
] | null | null | null | src/sdl-video-textures.ads | alire-project/sdlada | 9593807925f5f6651d81514c7f2d163ab3156dc1 | [
"Zlib"
] | null | null | null | src/sdl-video-textures.ads | alire-project/sdlada | 9593807925f5f6651d81514c7f2d163ab3156dc1 | [
"Zlib"
] | null | null | null | --------------------------------------------------------------------------------------------------------------------
-- Copyright (c) 2013-2018 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.
--------------------------------------------------------------------------------------------------------------------
-- SDL.Video.Textures
--
-- Texture abstraction.
--------------------------------------------------------------------------------------------------------------------
with Ada.Finalization;
with System;
private with SDL.C_Pointers;
with SDL.Video.Palettes;
with SDL.Video.Pixel_Formats;
with SDL.Video.Pixels;
with SDL.Video.Rectangles;
limited with SDL.Video.Renderers;
with SDL.Video.Surfaces;
with SDL.Video;
package SDL.Video.Textures is
Texture_Error : exception;
-- Was SDL_TextureAccess.
type Kinds is (Static, Streaming, Target) with
Convention => C;
type Texture is new Ada.Finalization.Limited_Controlled with private;
Null_Texture : constant Texture;
procedure Destroy (Self : in out Texture);
-- Get the alpha value to be multiplied (modulated) into render copy operations.
function Get_Alpha (Self : in Texture) return SDL.Video.Palettes.Colour_Component;
procedure Set_Alpha (Self : in out Texture; Alpha : in SDL.Video.Palettes.Colour_Component);
function Get_Blend_Mode (Self : in Texture) return Blend_Modes;
procedure Set_Blend_Mode (Self : in out Texture; Mode : in Blend_Modes);
function Get_Modulate_Colour (Self : in Texture) return SDL.Video.Palettes.RGB_Colour;
procedure Set_Modulate_Colour (Self : in out Texture; Colour : in SDL.Video.Palettes.RGB_Colour);
-- TODO: Fix this.
-- Lock returns access to pixel data as write-only.
-- function Lock (Self : in out Texture; Pixel_Data : out SDL.Video.Pixels.Pixel) return Boolean with
-- function Lock (Self : in out Texture; Area : in SDL.Video.Rectangles.Rectangle;
-- Pixel_Data : out SDL.Video.Pixels.Pixel) return Boolean with
-- Pre => Self.Locked = False,
-- Post => Result = True and then Self.Locked = True;
--
-- Lock should return an object representing the bitmap data. We should be able to access it like an array,
-- e.g. (x, y) and also using an iterator, which traverses, top -> bottom, left -> right, 1 pixel at a time. We
-- need to be able to do subimage copies using Ada's slices, e.g. bm1 (x .. x2, y .. y2) := bm2 (x .. x2, y .. y2)
--
-- For YV12 format:
--
-- package ARGB_8888_Array is new SDL.Video.Pixels.Texture_Data (Width => , Height => , Element => );
-- procedure Lock_Texture (Self : in out Texture;
-- Pixels : out SDL.Video.Pixels.Pixel_ARGB_8888_Array_Access);
-- Lock
--
-- Lock the entire texture data.
--
-- There will be multiple pixel formats, there should only be one Lock sub-program to handle them all.
generic
type Pixel_Pointer_Type is private;
procedure Lock (Self : in out Texture;
Pixels : out Pixel_Pointer_Type);
-- Lock
--
-- Lock a particular area of the texture data.
generic
type Pixel_Pointer_Type is private;
procedure Lock_Area (Self : in out Texture;
Area : in SDL.Video.Rectangles.Rectangle;
Pixels : out Pixel_Pointer_Type;
Pitch : out SDL.Video.Pixels.Pitches);
procedure Unlock (Self : in out Texture);
procedure Query (Self : in Texture;
Pixel_Format_Name : out SDL.Video.Pixel_Formats.Pixel_Format_Names;
Kind : out Kinds;
Size : out SDL.Sizes);
function Get_Pixel_Format (Self : in Texture) return SDL.Video.Pixel_Formats.Pixel_Format_Names;
function Get_Kind (Self : in Texture) return Kinds;
function Get_Size (Self : in Texture) return SDL.Sizes;
-- SDL_UpdateTexture
-- SDL_UpdateYUVTexture
private
type Texture is new Ada.Finalization.Limited_Controlled with
record
Internal : SDL.C_Pointers.Texture_Pointer := null;
Owns : Boolean := True;
Locked : Boolean := False;
Size : SDL.Sizes := SDL.Zero_Size;
Pixel_Format : SDL.Video.Pixel_Formats.Pixel_Format_Names := SDL.Video.Pixel_Formats.Pixel_Format_Unknown;
end record;
overriding
procedure Finalize (Self : in out Texture);
function Get_Internal_Texture (Self : in Texture) return SDL.C_Pointers.Texture_Pointer with
Export => True,
Convention => Ada;
Null_Texture : constant Texture := (Ada.Finalization.Limited_Controlled with
Internal => null,
Owns => True,
Size => SDL.Zero_Size,
Pixel_Format => Pixel_Formats.Pixel_Format_Unknown,
Locked => False);
end SDL.Video.Textures;
| 44.087591 | 118 | 0.599834 |
311af9592c0096023fce4253c0992c80c88bd4db | 584 | ads | Ada | source/nodes/program-storage_pools.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-storage_pools.ads | optikos/oasis | 9f64d46d26d964790d69f9db681c874cfb3bf96d | [
"MIT"
] | null | null | null | source/nodes/program-storage_pools.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.Dummy_Subpools;
package Program.Storage_Pools is
pragma Preelaborate;
subtype Storage_Pool is Program.Dummy_Subpools.Dummy_Storage_Pool;
type Storage_Pool_Access is not null access all Storage_Pool;
Pool_Access : constant Storage_Pool_Access
with Import, External_Name => "pool_access";
Pool : Storage_Pool renames Pool_Access.all;
end Program.Storage_Pools;
| 26.545455 | 69 | 0.691781 |
12f45b03835652ebe910ef024ee5ada760d1de2c | 884 | ads | Ada | gdb/testsuite/gdb.ada/minsyms/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | 1 | 2020-10-14T03:24:35.000Z | 2020-10-14T03:24:35.000Z | gdb/testsuite/gdb.ada/minsyms/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | gdb/testsuite/gdb.ada/minsyms/pck.ads | greyblue9/binutils-gdb | 05377632b124fe7600eea7f4ee0e9a35d1b0cbdc | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2017-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/>.
package Pck is
Some_Minimal_Symbol : Integer := 1234;
pragma Export (C, Some_Minimal_Symbol, "some_minsym");
procedure Increment (I: in out Integer);
end Pck;
| 40.181818 | 73 | 0.735294 |
2fa490e11c2f6db5c65ddc5373cbe6764711990e | 529,157 | adb | Ada | project_xilinx/tmp.hw_emu/coreConv/coreConv/coreConv/solution/.autopilot/db/coreConv.sched.adb | zjw49246/PipeCNN_aws | 10a55031bcc9edfc949e966a123d3efcd685d45a | [
"Apache-2.0"
] | null | null | null | project_xilinx/tmp.hw_emu/coreConv/coreConv/coreConv/solution/.autopilot/db/coreConv.sched.adb | zjw49246/PipeCNN_aws | 10a55031bcc9edfc949e966a123d3efcd685d45a | [
"Apache-2.0"
] | null | null | null | project_xilinx/tmp.hw_emu/coreConv/coreConv/coreConv/solution/.autopilot/db/coreConv.sched.adb | zjw49246/PipeCNN_aws | 10a55031bcc9edfc949e966a123d3efcd685d45a | [
"Apache-2.0"
] | 1 | 2022-01-09T19:45:49.000Z | 2022-01-09T19:45:49.000Z | <?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>coreConv</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>22</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>output_num</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>output_num</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956995936</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>0</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>conv_loop_cnt</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_loop_cnt</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2439541424</coreId>
</Obj>
<bitwidth>32</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>contol</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>contol</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</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>frac_w</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_w</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956667824</coreId>
</Obj>
<bitwidth>8</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>frac_din</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_din</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>625</coreId>
</Obj>
<bitwidth>8</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>frac_dout</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_dout</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>145</coreId>
</Obj>
<bitwidth>8</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>bias_in_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>bias_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</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="_8">
<Value>
<Obj>
<type>1</type>
<id>8</id>
<name>bias_in_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>bias_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>193</coreId>
</Obj>
<bitwidth>2</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>bias_in_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>bias_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2955841824</coreId>
</Obj>
<bitwidth>2</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>bias_in_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>bias_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</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="_11">
<Value>
<Obj>
<type>1</type>
<id>11</id>
<name>weight_in_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>weight_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>929</coreId>
</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="_12">
<Value>
<Obj>
<type>1</type>
<id>12</id>
<name>weight_in_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>weight_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</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>weight_in_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>weight_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</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>weight_in_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>weight_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>641</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="_15">
<Value>
<Obj>
<type>1</type>
<id>15</id>
<name>data_in_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>data_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</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="_16">
<Value>
<Obj>
<type>1</type>
<id>16</id>
<name>data_in_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>data_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</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="_17">
<Value>
<Obj>
<type>1</type>
<id>17</id>
<name>data_in_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>data_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</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="_18">
<Value>
<Obj>
<type>1</type>
<id>18</id>
<name>data_in_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>data_in</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</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="_19">
<Value>
<Obj>
<type>1</type>
<id>19</id>
<name>conv_out_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>conv_out</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</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="_20">
<Value>
<Obj>
<type>1</type>
<id>20</id>
<name>conv_out_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>conv_out</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>849</coreId>
</Obj>
<bitwidth>2</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="_21">
<Value>
<Obj>
<type>1</type>
<id>21</id>
<name>conv_out_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>conv_out</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>2</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="_22">
<Value>
<Obj>
<type>1</type>
<id>22</id>
<name>conv_out_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>conv_out</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956131696</coreId>
</Obj>
<bitwidth>1</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>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>211</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>conv_inner_cnt</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_inner_cnt</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>835</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>287</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="_24">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>bias</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>288</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="_25">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>bias_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>bias</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>289</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>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>frac_dout_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_dout</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>291</item>
<item>292</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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>frac_din_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_din</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>293</item>
<item>294</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>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>frac_w_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>frac_w</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957019888</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>295</item>
<item>296</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>contol_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>contol</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957020169</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>298</item>
<item>299</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>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>conv_loop_cnt_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>conv_loop_cnt</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>209</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>300</item>
<item>301</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>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>output_num_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>output_num</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>225</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>302</item>
<item>303</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>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>32</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>213</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>304</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>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>mul</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>1667855973</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>305</item>
<item>306</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.29</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>sub113</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>2956868704</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>307</item>
<item>309</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>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>frac_w_cast38</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>2956868681</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>310</item>
</oprand_edges>
<opcode>sext</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="_36">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>frac_w_cast</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>3556769920</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>311</item>
</oprand_edges>
<opcode>sext</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="_37">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>frac_din_cast</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>132</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>312</item>
</oprand_edges>
<opcode>sext</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>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>frac_dout_cast39</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>1521</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>313</item>
</oprand_edges>
<opcode>sext</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="_39">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>frac_dout_cast</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>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>314</item>
</oprand_edges>
<opcode>sext</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="_40">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>tmp</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>2956638824</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>315</item>
<item>317</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.70</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>tmp_cast</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>132</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>318</item>
</oprand_edges>
<opcode>sext</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="_42">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>sub150</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>2956646800</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>319</item>
<item>320</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.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>sub151</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>2009092032</coreId>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>321</item>
<item>322</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.79</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>sub151_cast</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>2009092313</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>323</item>
</oprand_edges>
<opcode>sext</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="_45">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>shr</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>3556769920</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>324</item>
<item>325</item>
</oprand_edges>
<opcode>lshr</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="_46">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>neg</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>3556769920</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>326</item>
<item>327</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.74</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>sub174</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>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>328</item>
<item>329</item>
</oprand_edges>
<opcode>sub</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="_48">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>sub175</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>3681</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>330</item>
<item>331</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.81</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>sext_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</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>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956649144</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>332</item>
</oprand_edges>
<opcode>sext</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>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>conv_inner_cnt_write_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</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>2</count>
<item_version>0</item_version>
<item>334</item>
<item>335</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>0.38</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>br_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</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>336</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.38</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>empty_25</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1932489838</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>338</item>
<item>339</item>
<item>340</item>
<item>341</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>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>empty_26</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1818770291</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>342</item>
<item>343</item>
<item>344</item>
<item>345</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>110</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>empty_27</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>346</item>
<item>347</item>
<item>348</item>
<item>349</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>111</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>empty_28</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>350</item>
<item>351</item>
<item>352</item>
<item>353</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>112</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>empty_29</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>909652269</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>354</item>
<item>355</item>
<item>356</item>
<item>357</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>113</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>empty_30</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1985</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>358</item>
<item>359</item>
<item>360</item>
<item>361</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>114</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>empty_31</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956613032</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>362</item>
<item>363</item>
<item>364</item>
<item>365</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>115</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>empty_32</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>366</item>
<item>367</item>
<item>368</item>
<item>369</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>116</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>empty_33</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</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>4</count>
<item_version>0</item_version>
<item>370</item>
<item>371</item>
<item>372</item>
<item>373</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>117</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>empty_34</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>374</item>
<item>375</item>
<item>376</item>
<item>377</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>118</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>empty_35</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>378</item>
<item>379</item>
<item>380</item>
<item>381</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>119</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>empty_36</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956954800</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>382</item>
<item>383</item>
<item>384</item>
<item>385</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>120</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>k</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<contextNormFuncName></contextNormFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956610448</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>386</item>
<item>387</item>
<item>388</item>
<item>389</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>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>k_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>390</item>
<item>391</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>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>icmp_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>392</item>
<item>393</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.85</m_delay>
<m_topoIndex>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>br_ln101</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>101</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>101</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956977545</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>394</item>
<item>395</item>
<item>396</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>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>conv_inner_cnt_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>104</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>104</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3681</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>397</item>
<item>1221</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>0.00</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>icmp_ln104</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>104</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>104</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>398</item>
<item>399</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.85</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>br_ln104</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>104</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>104</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1249</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>400</item>
<item>401</item>
<item>402</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.38</m_delay>
<m_topoIndex>121</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>empty_37</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>21</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>587</item>
<item>588</item>
<item>589</item>
<item>590</item>
<item>591</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>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>bias_in_tmp_data_V</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>bias_in_tmp.data.V</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956619568</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>592</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>37</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>bias_ch_out_lane</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>bias_ch_out.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>593</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>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>bias_ch_out_lane_2</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>bias_ch_out.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3681</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>595</item>
<item>596</item>
<item>597</item>
<item>599</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>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>bias_1_write_ln122</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956961528</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>600</item>
<item>601</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>0.00</m_delay>
<m_topoIndex>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>bias_write_ln122</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>122</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>602</item>
<item>603</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>0.00</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>br_ln122</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>122</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>122</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>604</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.38</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>empty_38</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>605</item>
<item>606</item>
<item>607</item>
<item>608</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>122</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>empty_39</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</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>4</count>
<item_version>0</item_version>
<item>609</item>
<item>610</item>
<item>611</item>
<item>612</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>123</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>empty_40</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>613</item>
<item>614</item>
<item>615</item>
<item>616</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>124</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>empty_41</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>617</item>
<item>618</item>
<item>619</item>
<item>620</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>125</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>empty_42</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>621</item>
<item>622</item>
<item>623</item>
<item>624</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>126</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>empty_43</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>625</item>
<item>626</item>
<item>627</item>
<item>628</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>127</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>empty_44</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956632256</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>629</item>
<item>630</item>
<item>631</item>
<item>632</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>128</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>empty_45</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956940384</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>633</item>
<item>634</item>
<item>635</item>
<item>636</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>129</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>empty_46</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</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>4</count>
<item_version>0</item_version>
<item>637</item>
<item>638</item>
<item>639</item>
<item>640</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>130</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>empty_47</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956624640</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>641</item>
<item>642</item>
<item>643</item>
<item>644</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>131</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>empty_48</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956626680</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>645</item>
<item>646</item>
<item>647</item>
<item>648</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>132</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>empty_49</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>649</item>
<item>650</item>
<item>651</item>
<item>652</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>133</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>conv_inner_cnt_load_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957097344</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>653</item>
<item>1222</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>0.00</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>empty_50</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>81</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>655</item>
<item>656</item>
<item>657</item>
<item>658</item>
<item>659</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>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>data_in_tmp_data_V</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>data_in_tmp.data.V</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>660</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>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>empty_51</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956078512</coreId>
</Obj>
<bitwidth>81</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>661</item>
<item>662</item>
<item>663</item>
<item>664</item>
<item>665</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>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>weight_in_tmp_data_V</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>293</lineNumber>
<contextFuncName>read</contextFuncName>
<contextNormFuncName>read</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>read</second>
</first>
<second>293</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>weight_in_tmp.data.V</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>666</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>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>mac_data_lane</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>662072943</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>667</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>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>mac_weight_lane</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2955881673</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>668</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>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>mac_data_lane_1</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>226</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>670</item>
<item>671</item>
<item>672</item>
<item>673</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>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>mac_weight_lane_1</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2955883632</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>674</item>
<item>675</item>
<item>676</item>
<item>677</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>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>mac_data_lane_2</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1818851423</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>678</item>
<item>679</item>
<item>681</item>
<item>683</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>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>mac_weight_lane_2</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1936683105</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>684</item>
<item>685</item>
<item>686</item>
<item>687</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>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>mac_data_lane_3</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>688</item>
<item>689</item>
<item>691</item>
<item>692</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>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>mac_weight_lane_3</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2956644648</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>693</item>
<item>694</item>
<item>695</item>
<item>696</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>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>mac_data_lane_4</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1569</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>697</item>
<item>698</item>
<item>700</item>
<item>702</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>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>mac_weight_lane_4</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>417</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>703</item>
<item>704</item>
<item>705</item>
<item>706</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>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>mac_data_lane_5</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>707</item>
<item>708</item>
<item>710</item>
<item>712</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>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>mac_weight_lane_5</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1130721903</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>713</item>
<item>714</item>
<item>715</item>
<item>716</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>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>mac_data_lane_6</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1970040691</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>717</item>
<item>718</item>
<item>720</item>
<item>722</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>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>mac_weight_lane_6</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1767994977</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>723</item>
<item>724</item>
<item>725</item>
<item>726</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>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>mac_data_lane_7</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_data.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1953067621</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>727</item>
<item>728</item>
<item>730</item>
<item>732</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>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>mac_weight_lane_7</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>708</lineNumber>
<contextFuncName>to_uint64</contextFuncName>
<contextNormFuncName>to_uint64</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>to_uint64</second>
</first>
<second>708</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>mac_weight.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1836017711</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>733</item>
<item>734</item>
<item>735</item>
<item>736</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>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>sext_ln55</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1769239916</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>737</item>
</oprand_edges>
<opcode>sext</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>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>sext_ln55_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1953394531</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>738</item>
</oprand_edges>
<opcode>sext</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>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>output</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>output</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>739</item>
<item>740</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.55</m_delay>
<m_topoIndex>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>sext_ln51</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>741</item>
</oprand_edges>
<opcode>sext</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>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>sext_ln55_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>742</item>
</oprand_edges>
<opcode>sext</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>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>sext_ln55_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>743</item>
</oprand_edges>
<opcode>sext</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>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>mul_ln55</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>744</item>
<item>745</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.55</m_delay>
<m_topoIndex>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>sext_ln55_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>746</item>
</oprand_edges>
<opcode>sext</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>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>sext_ln55_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>747</item>
</oprand_edges>
<opcode>sext</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>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>sext_ln55_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4035683067</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>748</item>
</oprand_edges>
<opcode>sext</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>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>mul_ln55_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>749</item>
<item>750</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.99</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>sext_ln55_7</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>751</item>
</oprand_edges>
<opcode>sext</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>93</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>sext_ln55_8</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>752</item>
</oprand_edges>
<opcode>sext</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>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>sext_ln55_9</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>44433</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>753</item>
</oprand_edges>
<opcode>sext</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>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>mul_ln55_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>754</item>
<item>755</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.99</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>sext_ln144</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>909652269</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>756</item>
</oprand_edges>
<opcode>sext</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>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>add_ln144</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>757</item>
<item>758</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.64</m_delay>
<m_topoIndex>95</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>sext_ln144_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957248152</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>759</item>
</oprand_edges>
<opcode>sext</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>134</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>add_ln144_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>227</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>760</item>
<item>761</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.64</m_delay>
<m_topoIndex>96</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>sext_ln144_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>762</item>
</oprand_edges>
<opcode>sext</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>135</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>add_ln144_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957249912</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>763</item>
<item>764</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.00</m_delay>
<m_topoIndex>136</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>conv_acc</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>765</item>
<item>766</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.73</m_delay>
<m_topoIndex>137</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>180</id>
<name>sext_ln55_10</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957252928</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>767</item>
</oprand_edges>
<opcode>sext</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>97</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>sext_ln55_11</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>768</item>
</oprand_edges>
<opcode>sext</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>98</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>output_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>output</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957255296</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>769</item>
<item>770</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.55</m_delay>
<m_topoIndex>99</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>sext_ln51_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>51</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>51</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>771</item>
</oprand_edges>
<opcode>sext</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>100</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>sext_ln55_12</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957258320</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>772</item>
</oprand_edges>
<opcode>sext</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>101</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>sext_ln55_13</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>773</item>
</oprand_edges>
<opcode>sext</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>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>mul_ln55_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957259993</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>774</item>
<item>775</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.55</m_delay>
<m_topoIndex>103</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>sext_ln55_14</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>776</item>
</oprand_edges>
<opcode>sext</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>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>sext_ln55_15</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>24033</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>777</item>
</oprand_edges>
<opcode>sext</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>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>sext_ln55_16</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957264016</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>778</item>
</oprand_edges>
<opcode>sext</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>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>mul_ln55_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957265208</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>779</item>
<item>780</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.99</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>sext_ln55_17</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957266448</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>781</item>
</oprand_edges>
<opcode>sext</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>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>sext_ln55_18</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>782</item>
</oprand_edges>
<opcode>sext</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>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name>sext_ln55_19</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>783</item>
</oprand_edges>
<opcode>sext</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>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>mul_ln55_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>55</lineNumber>
<contextFuncName>mac</contextFuncName>
<contextNormFuncName>mac</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>mac</second>
</first>
<second>55</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>784</item>
<item>785</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.99</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>sext_ln144_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>786</item>
</oprand_edges>
<opcode>sext</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>106</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name>add_ln144_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957272729</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>787</item>
<item>788</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.64</m_delay>
<m_topoIndex>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>sext_ln144_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>789</item>
</oprand_edges>
<opcode>sext</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>138</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>add_ln144_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>17</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>790</item>
<item>791</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.64</m_delay>
<m_topoIndex>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name>sext_ln144_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2074</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>792</item>
</oprand_edges>
<opcode>sext</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>139</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name>add_ln144_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2374</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>793</item>
<item>794</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.00</m_delay>
<m_topoIndex>140</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>conv_acc_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>144</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>144</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lane_accum</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2682</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>795</item>
<item>796</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.73</m_delay>
<m_topoIndex>141</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name>icmp_ln163</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>869</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>797</item>
<item>798</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.85</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>203</id>
<name>br_ln163</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>163</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>799</item>
<item>800</item>
<item>801</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>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name>conv_inner_cnt_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>246</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_inner_cnt</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>580</item>
<item>581</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>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>206</id>
<name>conv_inner_cnt_write_ln246</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>246</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>246</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>5</count>
<item_version>0</item_version>
<item>582</item>
<item>583</item>
<item>1224</item>
<item>1226</item>
<item>1230</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>0.38</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>207</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>791093349</coreId>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>584</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>80</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>209</id>
<name>bias_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>570455150</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>403</item>
<item>1228</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>0.00</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>bias_1_load</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1952802618</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>404</item>
<item>1227</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>0.00</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name>add_ln170</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1634038388</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>405</item>
<item>406</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>146</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>212</id>
<name>add_ln170_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>745305392</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>407</item>
<item>408</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.00</m_delay>
<m_topoIndex>147</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>add_ln170_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1953708602</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>409</item>
<item>410</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.00</m_delay>
<m_topoIndex>142</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name>add_ln170_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>539109687</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>411</item>
<item>412</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.73</m_delay>
<m_topoIndex>143</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>215</id>
<name>conv_acc_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_acc</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>825913456</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>413</item>
<item>414</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.73</m_delay>
<m_topoIndex>148</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>tmp_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>175</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2700850</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>416</item>
<item>417</item>
<item>419</item>
</oprand_edges>
<opcode>bitselect</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>149</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name>conv_sign_exten</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>176</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>176</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sign_exten</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1397314633</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>420</item>
<item>421</item>
<item>422</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.22</m_delay>
<m_topoIndex>154</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>ashr_ln181</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1701865808</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>423</item>
<item>424</item>
</oprand_edges>
<opcode>ashr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.05</m_delay>
<m_topoIndex>155</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>trunc_ln181</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2020501868</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>425</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>156</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name>trunc_ln181_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1667855973</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>426</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>157</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>221</id>
<name>or_ln181</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1667592992</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>427</item>
<item>428</item>
</oprand_edges>
<opcode>or</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>158</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>222</id>
<name>or_ln181_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1599296852</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>429</item>
<item>430</item>
</oprand_edges>
<opcode>or</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>159</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>223</id>
<name>conv_with_rnd_bit</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_with_rnd_bit</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>1701994871</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>431</item>
<item>432</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>160</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>224</id>
<name>add_ln94</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>544826222</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>433</item>
<item>435</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.71</m_delay>
<m_topoIndex>161</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>225</id>
<name>tmp_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>869</coreId>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>437</item>
<item>438</item>
<item>440</item>
<item>441</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>162</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>226</id>
<name>icmp_ln184</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>209</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>442</item>
<item>444</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.76</m_delay>
<m_topoIndex>172</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>227</id>
<name>icmp_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>75</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>445</item>
<item>447</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.85</m_delay>
<m_topoIndex>173</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>228</id>
<name>sext_ln101cast</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2341</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>448</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>174</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>229</id>
<name>ashr_ln192</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>854</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>449</item>
<item>450</item>
</oprand_edges>
<opcode>ashr</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>175</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>230</id>
<name>sext_ln192_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>389</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>451</item>
</oprand_edges>
<opcode>sext</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>176</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>231</id>
<name>or_ln192</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>452</item>
<item>453</item>
</oprand_edges>
<opcode>or</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>177</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>232</id>
<name>conv_sum_bias</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sum_bias</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>454</item>
<item>455</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.71</m_delay>
<m_topoIndex>178</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>233</id>
<name>phitmp2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>457</item>
<item>458</item>
<item>459</item>
<item>460</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>179</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>234</id>
<name>xor_ln184</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957409904</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>461</item>
<item>463</item>
</oprand_edges>
<opcode>xor</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>180</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>235</id>
<name>and_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957410968</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>464</item>
<item>465</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.12</m_delay>
<m_topoIndex>181</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>236</id>
<name>select_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957412616</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>466</item>
<item>468</item>
<item>470</item>
</oprand_edges>
<opcode>select</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>182</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>237</id>
<name>or_ln186</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>471</item>
<item>472</item>
</oprand_edges>
<opcode>or</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>183</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_189">
<Value>
<Obj>
<type>0</type>
<id>238</id>
<name>conv_final</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_final</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>473</item>
<item>474</item>
<item>475</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.30</m_delay>
<m_topoIndex>184</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_190">
<Value>
<Obj>
<type>0</type>
<id>239</id>
<name>trunc_ln96</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>476</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>185</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_191">
<Value>
<Obj>
<type>0</type>
<id>240</id>
<name>tmp_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>221</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>221</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957418784</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>478</item>
<item>479</item>
<item>481</item>
</oprand_edges>
<opcode>bitselect</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>186</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_192">
<Value>
<Obj>
<type>0</type>
<id>241</id>
<name>conv_ch_in_lane</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>222</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>222</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>49</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>482</item>
<item>484</item>
<item>485</item>
</oprand_edges>
<opcode>select</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>187</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_193">
<Value>
<Obj>
<type>0</type>
<id>242</id>
<name>zext_ln82</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>82</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>2957419248</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>486</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>188</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_194">
<Value>
<Obj>
<type>0</type>
<id>243</id>
<name>conv_ch_in_lane_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>82</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>487</item>
<item>488</item>
<item>489</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.30</m_delay>
<m_topoIndex>189</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_195">
<Value>
<Obj>
<type>0</type>
<id>244</id>
<name>add_ln170_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</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>2</count>
<item_version>0</item_version>
<item>490</item>
<item>491</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>150</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_196">
<Value>
<Obj>
<type>0</type>
<id>245</id>
<name>add_ln170_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>492</item>
<item>493</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.00</m_delay>
<m_topoIndex>151</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_197">
<Value>
<Obj>
<type>0</type>
<id>246</id>
<name>add_ln170_7</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>494</item>
<item>495</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.00</m_delay>
<m_topoIndex>144</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_198">
<Value>
<Obj>
<type>0</type>
<id>247</id>
<name>add_ln170_8</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>496</item>
<item>497</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.73</m_delay>
<m_topoIndex>145</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_199">
<Value>
<Obj>
<type>0</type>
<id>248</id>
<name>conv_acc_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>170</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>170</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_acc</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>498</item>
<item>499</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.73</m_delay>
<m_topoIndex>152</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_200">
<Value>
<Obj>
<type>0</type>
<id>249</id>
<name>tmp_4</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>175</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>3556769920</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>500</item>
<item>501</item>
<item>502</item>
</oprand_edges>
<opcode>bitselect</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>153</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_201">
<Value>
<Obj>
<type>0</type>
<id>250</id>
<name>conv_sign_exten_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>176</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>176</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sign_exten</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>132</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>503</item>
<item>504</item>
<item>505</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.22</m_delay>
<m_topoIndex>163</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_202">
<Value>
<Obj>
<type>0</type>
<id>251</id>
<name>ashr_ln181_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>506</item>
<item>507</item>
</oprand_edges>
<opcode>ashr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.05</m_delay>
<m_topoIndex>164</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_203">
<Value>
<Obj>
<type>0</type>
<id>252</id>
<name>trunc_ln181_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>508</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>165</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_204">
<Value>
<Obj>
<type>0</type>
<id>253</id>
<name>trunc_ln181_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>509</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>166</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_205">
<Value>
<Obj>
<type>0</type>
<id>254</id>
<name>or_ln181_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>510</item>
<item>511</item>
</oprand_edges>
<opcode>or</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>167</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_206">
<Value>
<Obj>
<type>0</type>
<id>255</id>
<name>or_ln181_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>512</item>
<item>513</item>
</oprand_edges>
<opcode>or</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>168</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_207">
<Value>
<Obj>
<type>0</type>
<id>256</id>
<name>conv_with_rnd_bit_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_with_rnd_bit</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>514</item>
<item>515</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>169</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_208">
<Value>
<Obj>
<type>0</type>
<id>257</id>
<name>add_ln94_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>94</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>94</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>516</item>
<item>517</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.71</m_delay>
<m_topoIndex>170</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_209">
<Value>
<Obj>
<type>0</type>
<id>258</id>
<name>tmp_5</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>518</item>
<item>519</item>
<item>520</item>
<item>521</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>171</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_210">
<Value>
<Obj>
<type>0</type>
<id>259</id>
<name>icmp_ln184_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>522</item>
<item>523</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.76</m_delay>
<m_topoIndex>190</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_211">
<Value>
<Obj>
<type>0</type>
<id>260</id>
<name>icmp_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>524</item>
<item>525</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.85</m_delay>
<m_topoIndex>191</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_212">
<Value>
<Obj>
<type>0</type>
<id>261</id>
<name>sext_ln101cast34</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>526</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>192</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_213">
<Value>
<Obj>
<type>0</type>
<id>262</id>
<name>ashr_ln192_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>527</item>
<item>528</item>
</oprand_edges>
<opcode>ashr</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>193</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_214">
<Value>
<Obj>
<type>0</type>
<id>263</id>
<name>sext_ln192_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>529</item>
</oprand_edges>
<opcode>sext</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>194</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_215">
<Value>
<Obj>
<type>0</type>
<id>264</id>
<name>or_ln192_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>530</item>
<item>531</item>
</oprand_edges>
<opcode>or</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>195</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_216">
<Value>
<Obj>
<type>0</type>
<id>265</id>
<name>conv_sum_bias_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_sum_bias</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>532</item>
<item>533</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.71</m_delay>
<m_topoIndex>196</m_topoIndex>
<m_clusterGroupNumber>10</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_217">
<Value>
<Obj>
<type>0</type>
<id>266</id>
<name>phitmp3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>192</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>192</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>534</item>
<item>535</item>
<item>536</item>
<item>537</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>197</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_218">
<Value>
<Obj>
<type>0</type>
<id>267</id>
<name>xor_ln184_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>184</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>184</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>538</item>
<item>539</item>
</oprand_edges>
<opcode>xor</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>198</m_topoIndex>
<m_clusterGroupNumber>12</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_219">
<Value>
<Obj>
<type>0</type>
<id>268</id>
<name>and_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>4294967295</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>540</item>
<item>541</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.12</m_delay>
<m_topoIndex>199</m_topoIndex>
<m_clusterGroupNumber>12</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_220">
<Value>
<Obj>
<type>0</type>
<id>269</id>
<name>select_ln186_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>542</item>
<item>543</item>
<item>544</item>
</oprand_edges>
<opcode>select</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>200</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_221">
<Value>
<Obj>
<type>0</type>
<id>270</id>
<name>or_ln186_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>545</item>
<item>546</item>
</oprand_edges>
<opcode>or</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>201</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_222">
<Value>
<Obj>
<type>0</type>
<id>271</id>
<name>conv_final_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>186</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>186</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_final</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>547</item>
<item>548</item>
<item>549</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.30</m_delay>
<m_topoIndex>202</m_topoIndex>
<m_clusterGroupNumber>11</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_223">
<Value>
<Obj>
<type>0</type>
<id>272</id>
<name>trunc_ln96_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>96</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>96</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>550</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>203</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_224">
<Value>
<Obj>
<type>0</type>
<id>273</id>
<name>tmp_6</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>221</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>221</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>551</item>
<item>552</item>
<item>553</item>
</oprand_edges>
<opcode>bitselect</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>204</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_225">
<Value>
<Obj>
<type>0</type>
<id>274</id>
<name>conv_ch_in_lane_2</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>222</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>222</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>554</item>
<item>555</item>
<item>556</item>
</oprand_edges>
<opcode>select</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>205</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_226">
<Value>
<Obj>
<type>0</type>
<id>275</id>
<name>zext_ln82_1</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</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>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>557</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>206</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_227">
<Value>
<Obj>
<type>0</type>
<id>276</id>
<name>conv_ch_in_lane_3</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>82</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>82</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>conv_ch_in.lane</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>558</item>
<item>559</item>
<item>560</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.30</m_delay>
<m_topoIndex>207</m_topoIndex>
<m_clusterGroupNumber>13</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_228">
<Value>
<Obj>
<type>0</type>
<id>277</id>
<name>p_Result_s</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>386</lineNumber>
<contextFuncName>operator=</contextFuncName>
<contextNormFuncName>operator_assign</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_int_ref.h</first>
<second>operator=</second>
</first>
<second>386</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<control></control>
<opType></opType>
<implIndex></implIndex>
<coreName></coreName>
<coreId>0</coreId>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>562</item>
<item>563</item>
<item>564</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>208</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_229">
<Value>
<Obj>
<type>0</type>
<id>278</id>
<name>conv_out_V_data_V_write_ln304</name>
<fileName>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>304</lineNumber>
<contextFuncName>write</contextFuncName>
<contextNormFuncName>write</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/mnt/storage/gefeizuo/Xilinx/Vitis_HLS/2020.2/common/technology/autopilot/ap_axi_sdata.h</first>
<second>write</second>
</first>
<second>304</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>9</count>
<item_version>0</item_version>
<item>566</item>
<item>567</item>
<item>568</item>
<item>569</item>
<item>570</item>
<item>571</item>
<item>573</item>
<item>574</item>
<item>576</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>0.00</m_delay>
<m_topoIndex>209</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_230">
<Value>
<Obj>
<type>0</type>
<id>279</id>
<name>conv_inner_cnt_write_ln244</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>244</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>244</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>5</count>
<item_version>0</item_version>
<item>577</item>
<item>578</item>
<item>1223</item>
<item>1225</item>
<item>1229</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>0.38</m_delay>
<m_topoIndex>81</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_231">
<Value>
<Obj>
<type>0</type>
<id>280</id>
<name>br_ln244</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>244</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>244</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>579</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>210</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_232">
<Value>
<Obj>
<type>0</type>
<id>282</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>585</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>82</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_233">
<Value>
<Obj>
<type>0</type>
<id>284</id>
<name>_ln251</name>
<fileName>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</fileName>
<fileDirectory>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</fileDirectory>
<lineNumber>251</lineNumber>
<contextFuncName>coreConv</contextFuncName>
<contextNormFuncName>coreConv</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/tmp.hw_emu/coreConv/coreConv</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/home/zhoujw/FPGA/PipeCNN/project_xilinx/device/coreConv.cpp</first>
<second>coreConv</second>
</first>
<second>251</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>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>211</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>29</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_234">
<Value>
<Obj>
<type>2</type>
<id>286</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>2956951808</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_235">
<Value>
<Obj>
<type>2</type>
<id>308</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4294967295</content>
</item>
<item class_id_reference="16" object_id="_236">
<Value>
<Obj>
<type>2</type>
<id>316</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>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>511</content>
</item>
<item class_id_reference="16" object_id="_237">
<Value>
<Obj>
<type>2</type>
<id>333</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_238">
<Value>
<Obj>
<type>2</type>
<id>337</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>1752440932</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>5</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_239">
<Value>
<Obj>
<type>2</type>
<id>418</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>3556770000</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_240">
<Value>
<Obj>
<type>2</type>
<id>434</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>0</coreId>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_241">
<Value>
<Obj>
<type>2</type>
<id>439</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_242">
<Value>
<Obj>
<type>2</type>
<id>443</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>28263</coreId>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_243">
<Value>
<Obj>
<type>2</type>
<id>446</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4294967040</content>
</item>
<item class_id_reference="16" object_id="_244">
<Value>
<Obj>
<type>2</type>
<id>462</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>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_245">
<Value>
<Obj>
<type>2</type>
<id>467</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>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>128</content>
</item>
<item class_id_reference="16" object_id="_246">
<Value>
<Obj>
<type>2</type>
<id>469</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>0</coreId>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>127</content>
</item>
<item class_id_reference="16" object_id="_247">
<Value>
<Obj>
<type>2</type>
<id>480</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_248">
<Value>
<Obj>
<type>2</type>
<id>483</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>0</coreId>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_249">
<Value>
<Obj>
<type>2</type>
<id>572</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>0</coreId>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_250">
<Value>
<Obj>
<type>2</type>
<id>575</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>0</coreId>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_251">
<Value>
<Obj>
<type>2</type>
<id>598</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>2957579360</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_252">
<Value>
<Obj>
<type>2</type>
<id>680</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_253">
<Value>
<Obj>
<type>2</type>
<id>682</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>23</content>
</item>
<item class_id_reference="16" object_id="_254">
<Value>
<Obj>
<type>2</type>
<id>690</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>24</content>
</item>
<item class_id_reference="16" object_id="_255">
<Value>
<Obj>
<type>2</type>
<id>699</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>32</content>
</item>
<item class_id_reference="16" object_id="_256">
<Value>
<Obj>
<type>2</type>
<id>701</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>39</content>
</item>
<item class_id_reference="16" object_id="_257">
<Value>
<Obj>
<type>2</type>
<id>709</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>40</content>
</item>
<item class_id_reference="16" object_id="_258">
<Value>
<Obj>
<type>2</type>
<id>711</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>0</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>47</content>
</item>
<item class_id_reference="16" object_id="_259">
<Value>
<Obj>
<type>2</type>
<id>719</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>1</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>48</content>
</item>
<item class_id_reference="16" object_id="_260">
<Value>
<Obj>
<type>2</type>
<id>721</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>501</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>55</content>
</item>
<item class_id_reference="16" object_id="_261">
<Value>
<Obj>
<type>2</type>
<id>729</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>465</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>56</content>
</item>
<item class_id_reference="16" object_id="_262">
<Value>
<Obj>
<type>2</type>
<id>731</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>599</coreId>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_263">
<Obj>
<type>3</type>
<id>93</id>
<name>.lr.ph</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>29</count>
<item_version>0</item_version>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</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>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_264">
<Obj>
<type>3</type>
<id>111</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>2956650528</coreId>
</Obj>
<node_objs>
<count>16</count>
<item_version>0</item_version>
<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>109</item>
<item>110</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_265">
<Obj>
<type>3</type>
<id>116</id>
<name>.split</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>3</count>
<item_version>0</item_version>
<item>112</item>
<item>114</item>
<item>115</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_266">
<Obj>
<type>3</type>
<id>124</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>2957003168</coreId>
</Obj>
<node_objs>
<count>7</count>
<item_version>0</item_version>
<item>117</item>
<item>118</item>
<item>119</item>
<item>120</item>
<item>121</item>
<item>122</item>
<item>123</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_267">
<Obj>
<type>3</type>
<id>204</id>
<name>.split._crit_edge</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>2956972176</coreId>
</Obj>
<node_objs>
<count>79</count>
<item_version>0</item_version>
<item>125</item>
<item>126</item>
<item>127</item>
<item>128</item>
<item>129</item>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
<item>148</item>
<item>149</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
<item>186</item>
<item>187</item>
<item>188</item>
<item>189</item>
<item>190</item>
<item>191</item>
<item>192</item>
<item>193</item>
<item>194</item>
<item>195</item>
<item>196</item>
<item>197</item>
<item>198</item>
<item>199</item>
<item>200</item>
<item>201</item>
<item>202</item>
<item>203</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_268">
<Obj>
<type>3</type>
<id>208</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>2957266464</coreId>
</Obj>
<node_objs>
<count>3</count>
<item_version>0</item_version>
<item>205</item>
<item>206</item>
<item>207</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_269">
<Obj>
<type>3</type>
<id>281</id>
<name>_ifconv</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>6645601</coreId>
</Obj>
<node_objs>
<count>72</count>
<item_version>0</item_version>
<item>209</item>
<item>210</item>
<item>211</item>
<item>212</item>
<item>213</item>
<item>214</item>
<item>215</item>
<item>216</item>
<item>217</item>
<item>218</item>
<item>219</item>
<item>220</item>
<item>221</item>
<item>222</item>
<item>223</item>
<item>224</item>
<item>225</item>
<item>226</item>
<item>227</item>
<item>228</item>
<item>229</item>
<item>230</item>
<item>231</item>
<item>232</item>
<item>233</item>
<item>234</item>
<item>235</item>
<item>236</item>
<item>237</item>
<item>238</item>
<item>239</item>
<item>240</item>
<item>241</item>
<item>242</item>
<item>243</item>
<item>244</item>
<item>245</item>
<item>246</item>
<item>247</item>
<item>248</item>
<item>249</item>
<item>250</item>
<item>251</item>
<item>252</item>
<item>253</item>
<item>254</item>
<item>255</item>
<item>256</item>
<item>257</item>
<item>258</item>
<item>259</item>
<item>260</item>
<item>261</item>
<item>262</item>
<item>263</item>
<item>264</item>
<item>265</item>
<item>266</item>
<item>267</item>
<item>268</item>
<item>269</item>
<item>270</item>
<item>271</item>
<item>272</item>
<item>273</item>
<item>274</item>
<item>275</item>
<item>276</item>
<item>277</item>
<item>278</item>
<item>279</item>
<item>280</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_270">
<Obj>
<type>3</type>
<id>283</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>1</count>
<item_version>0</item_version>
<item>282</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_271">
<Obj>
<type>3</type>
<id>285</id>
<name>._crit_edge.loopexit</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>284</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>462</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_272">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_273">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_277">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>308</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_291">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>316</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>308</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>308</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_305">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>316</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>336</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>339</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>341</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>343</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>345</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>347</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>349</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>351</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>353</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>355</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>356</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>357</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>359</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>361</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>363</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>365</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>367</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>369</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>371</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>373</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>375</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>377</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>379</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>381</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>337</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>383</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>385</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>387</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>389</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>392</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>395</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>396</id>
<edge_type>2</edge_type>
<source_obj>285</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>401</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>402</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>211</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>211</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>212</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>213</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>214</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>214</source_obj>
<sink_obj>215</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_387">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>215</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>216</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>217</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>218</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>219</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>426</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>220</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>221</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>221</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>222</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>221</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>223</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>222</source_obj>
<sink_obj>224</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>224</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>225</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>225</source_obj>
<sink_obj>226</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>443</source_obj>
<sink_obj>226</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>223</source_obj>
<sink_obj>227</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>446</source_obj>
<sink_obj>227</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>228</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>209</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>229</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_415">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>230</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>224</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>231</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>231</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>230</source_obj>
<sink_obj>232</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>232</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>233</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>234</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>227</source_obj>
<sink_obj>235</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>465</id>
<edge_type>1</edge_type>
<source_obj>234</source_obj>
<sink_obj>235</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>235</source_obj>
<sink_obj>236</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>236</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>469</source_obj>
<sink_obj>236</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>235</source_obj>
<sink_obj>237</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>237</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>237</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>233</source_obj>
<sink_obj>238</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>476</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>239</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>240</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>240</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>483</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>241</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>486</id>
<edge_type>1</edge_type>
<source_obj>241</source_obj>
<sink_obj>242</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>242</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>489</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>243</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>491</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>244</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>244</source_obj>
<sink_obj>245</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>245</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>246</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>246</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>496</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>247</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>247</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>498</id>
<edge_type>1</edge_type>
<source_obj>247</source_obj>
<sink_obj>248</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>245</source_obj>
<sink_obj>248</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>501</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>249</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_456">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>249</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>249</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>250</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>506</id>
<edge_type>1</edge_type>
<source_obj>248</source_obj>
<sink_obj>251</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>251</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>252</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_463">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>253</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>254</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>251</source_obj>
<sink_obj>254</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>255</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>255</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>254</source_obj>
<sink_obj>256</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>515</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>256</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>257</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>257</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>258</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_473">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>258</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_474">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>258</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_475">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>258</source_obj>
<sink_obj>259</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_476">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>443</source_obj>
<sink_obj>259</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_477">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>260</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_478">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>446</source_obj>
<sink_obj>260</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_479">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>261</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_480">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>262</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_481">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>261</source_obj>
<sink_obj>262</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_482">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>262</source_obj>
<sink_obj>263</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_483">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>264</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_484">
<id>531</id>
<edge_type>1</edge_type>
<source_obj>434</source_obj>
<sink_obj>264</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_485">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>265</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_486">
<id>533</id>
<edge_type>1</edge_type>
<source_obj>263</source_obj>
<sink_obj>265</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_487">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>265</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_488">
<id>536</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_489">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>266</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_490">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>259</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_491">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>462</source_obj>
<sink_obj>267</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_492">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_493">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>267</source_obj>
<sink_obj>268</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_494">
<id>542</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>269</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_495">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>467</source_obj>
<sink_obj>269</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_496">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>469</source_obj>
<sink_obj>269</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_497">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>270</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_498">
<id>546</id>
<edge_type>1</edge_type>
<source_obj>259</source_obj>
<sink_obj>270</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_499">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>270</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_500">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>269</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_501">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>266</source_obj>
<sink_obj>271</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_502">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>272</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_503">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>273</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_504">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>273</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_505">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>273</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_506">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>483</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_507">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>272</source_obj>
<sink_obj>274</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_508">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>275</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_509">
<id>558</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_510">
<id>559</id>
<edge_type>1</edge_type>
<source_obj>275</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_511">
<id>560</id>
<edge_type>1</edge_type>
<source_obj>271</source_obj>
<sink_obj>276</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_512">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>276</source_obj>
<sink_obj>277</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_513">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>243</source_obj>
<sink_obj>277</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_514">
<id>567</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_515">
<id>568</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_516">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_517">
<id>570</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_518">
<id>571</id>
<edge_type>1</edge_type>
<source_obj>277</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_519">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_520">
<id>574</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_521">
<id>576</id>
<edge_type>1</edge_type>
<source_obj>575</source_obj>
<sink_obj>278</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_522">
<id>577</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_523">
<id>578</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_524">
<id>579</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>280</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_525">
<id>580</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_526">
<id>581</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>205</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_527">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_528">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_529">
<id>584</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>207</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_530">
<id>585</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>282</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_531">
<id>588</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_532">
<id>589</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_533">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_534">
<id>591</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_535">
<id>592</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>118</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_536">
<id>593</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_537">
<id>596</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_538">
<id>597</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_539">
<id>599</id>
<edge_type>1</edge_type>
<source_obj>598</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_540">
<id>600</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_541">
<id>601</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_542">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_543">
<id>603</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>122</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_544">
<id>604</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>123</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_545">
<id>605</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_546">
<id>606</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_547">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_548">
<id>608</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_549">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_550">
<id>610</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_551">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_552">
<id>612</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_553">
<id>613</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_554">
<id>614</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_555">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_556">
<id>616</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_557">
<id>617</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_558">
<id>618</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_559">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_560">
<id>620</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_561">
<id>621</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_562">
<id>622</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_563">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_564">
<id>624</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_565">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_566">
<id>626</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_567">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_568">
<id>628</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_569">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_570">
<id>630</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_571">
<id>631</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_572">
<id>632</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_573">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_574">
<id>634</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_575">
<id>635</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_576">
<id>636</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_577">
<id>637</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_578">
<id>638</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_579">
<id>639</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_580">
<id>640</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_581">
<id>641</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_582">
<id>642</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_583">
<id>643</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_584">
<id>644</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_585">
<id>645</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_586">
<id>646</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_587">
<id>647</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_588">
<id>648</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_589">
<id>649</id>
<edge_type>1</edge_type>
<source_obj>333</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_590">
<id>650</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_591">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_592">
<id>652</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_593">
<id>653</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_594">
<id>656</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_595">
<id>657</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_596">
<id>658</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_597">
<id>659</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_598">
<id>660</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_599">
<id>662</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_600">
<id>663</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_601">
<id>664</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_602">
<id>665</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_603">
<id>666</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_604">
<id>667</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_605">
<id>668</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_606">
<id>671</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_607">
<id>672</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_608">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>598</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_609">
<id>675</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_610">
<id>676</id>
<edge_type>1</edge_type>
<source_obj>439</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_611">
<id>677</id>
<edge_type>1</edge_type>
<source_obj>598</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_612">
<id>679</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_613">
<id>681</id>
<edge_type>1</edge_type>
<source_obj>680</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_614">
<id>683</id>
<edge_type>1</edge_type>
<source_obj>682</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_615">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_616">
<id>686</id>
<edge_type>1</edge_type>
<source_obj>680</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_617">
<id>687</id>
<edge_type>1</edge_type>
<source_obj>682</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_618">
<id>689</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_619">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_620">
<id>692</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_621">
<id>694</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_622">
<id>695</id>
<edge_type>1</edge_type>
<source_obj>690</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_623">
<id>696</id>
<edge_type>1</edge_type>
<source_obj>418</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_624">
<id>698</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_625">
<id>700</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_626">
<id>702</id>
<edge_type>1</edge_type>
<source_obj>701</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_627">
<id>704</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_628">
<id>705</id>
<edge_type>1</edge_type>
<source_obj>699</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_629">
<id>706</id>
<edge_type>1</edge_type>
<source_obj>701</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_630">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_631">
<id>710</id>
<edge_type>1</edge_type>
<source_obj>709</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_632">
<id>712</id>
<edge_type>1</edge_type>
<source_obj>711</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_633">
<id>714</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_634">
<id>715</id>
<edge_type>1</edge_type>
<source_obj>709</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_635">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>711</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_636">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_637">
<id>720</id>
<edge_type>1</edge_type>
<source_obj>719</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_638">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>721</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_639">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_640">
<id>725</id>
<edge_type>1</edge_type>
<source_obj>719</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_641">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>721</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_642">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_643">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>729</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_644">
<id>732</id>
<edge_type>1</edge_type>
<source_obj>731</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_645">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_646">
<id>735</id>
<edge_type>1</edge_type>
<source_obj>729</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_647">
<id>736</id>
<edge_type>1</edge_type>
<source_obj>731</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_648">
<id>737</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_649">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_650">
<id>739</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_651">
<id>740</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_652">
<id>741</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_653">
<id>742</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_654">
<id>743</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_655">
<id>744</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_656">
<id>745</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_657">
<id>746</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_658">
<id>747</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_659">
<id>748</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_660">
<id>749</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_661">
<id>750</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_662">
<id>751</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_663">
<id>752</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_664">
<id>753</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_665">
<id>754</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_666">
<id>755</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_667">
<id>756</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_668">
<id>757</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_669">
<id>758</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_670">
<id>759</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>175</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_671">
<id>760</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_672">
<id>761</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_673">
<id>762</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_674">
<id>763</id>
<edge_type>1</edge_type>
<source_obj>177</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_675">
<id>764</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_676">
<id>765</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_677">
<id>766</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_678">
<id>767</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>180</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_679">
<id>768</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_680">
<id>769</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_681">
<id>770</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_682">
<id>771</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_683">
<id>772</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_684">
<id>773</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_685">
<id>774</id>
<edge_type>1</edge_type>
<source_obj>185</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_686">
<id>775</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_687">
<id>776</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>187</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_688">
<id>777</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_689">
<id>778</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_690">
<id>779</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>190</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_691">
<id>780</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>190</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_692">
<id>781</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>191</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_693">
<id>782</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>192</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_694">
<id>783</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>193</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_695">
<id>784</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_696">
<id>785</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_697">
<id>786</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>195</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_698">
<id>787</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_699">
<id>788</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>196</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_700">
<id>789</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>197</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_701">
<id>790</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_702">
<id>791</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>198</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_703">
<id>792</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>199</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_704">
<id>793</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_705">
<id>794</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>200</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_706">
<id>795</id>
<edge_type>1</edge_type>
<source_obj>200</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_707">
<id>796</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>201</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_708">
<id>797</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_709">
<id>798</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>202</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_710">
<id>799</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_711">
<id>800</id>
<edge_type>2</edge_type>
<source_obj>208</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_712">
<id>801</id>
<edge_type>2</edge_type>
<source_obj>281</source_obj>
<sink_obj>203</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_713">
<id>1210</id>
<edge_type>2</edge_type>
<source_obj>93</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_714">
<id>1211</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>285</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_715">
<id>1212</id>
<edge_type>2</edge_type>
<source_obj>111</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_716">
<id>1213</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_717">
<id>1214</id>
<edge_type>2</edge_type>
<source_obj>116</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_718">
<id>1215</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>204</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_719">
<id>1216</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>281</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_720">
<id>1217</id>
<edge_type>2</edge_type>
<source_obj>204</source_obj>
<sink_obj>208</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_721">
<id>1218</id>
<edge_type>2</edge_type>
<source_obj>208</source_obj>
<sink_obj>283</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_722">
<id>1219</id>
<edge_type>2</edge_type>
<source_obj>281</source_obj>
<sink_obj>283</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_723">
<id>1220</id>
<edge_type>2</edge_type>
<source_obj>283</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_724">
<id>1221</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_725">
<id>1222</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_726">
<id>1223</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_727">
<id>1224</id>
<edge_type>4</edge_type>
<source_obj>91</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_728">
<id>1225</id>
<edge_type>4</edge_type>
<source_obj>112</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_729">
<id>1226</id>
<edge_type>4</edge_type>
<source_obj>112</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_730">
<id>1227</id>
<edge_type>4</edge_type>
<source_obj>121</source_obj>
<sink_obj>210</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_731">
<id>1228</id>
<edge_type>4</edge_type>
<source_obj>122</source_obj>
<sink_obj>209</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_732">
<id>1229</id>
<edge_type>4</edge_type>
<source_obj>137</source_obj>
<sink_obj>279</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_733">
<id>1230</id>
<edge_type>4</edge_type>
<source_obj>137</source_obj>
<sink_obj>206</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_734">
<mId>1</mId>
<mTag>coreConv</mTag>
<mNormTag>coreConv</mNormTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</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>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_735">
<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>93</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>2</mMinLatency>
<mMaxLatency>2</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_736">
<mId>3</mId>
<mTag>VITIS_LOOP_101_1</mTag>
<mNormTag>VITIS_LOOP_101_1</mNormTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>7</count>
<item_version>0</item_version>
<item>111</item>
<item>116</item>
<item>124</item>
<item>204</item>
<item>208</item>
<item>281</item>
<item>283</item>
</basic_blocks>
<mII>1</mII>
<mDepth>8</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>-1</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_737">
<mId>4</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>285</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>211</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>23</first>
<second class_id="28" 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>25</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>1</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>3</first>
<second>2</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>222</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>223</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>224</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>225</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>226</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>227</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>228</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>229</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>230</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>231</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>232</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>233</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>234</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>235</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>236</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>237</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>238</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>239</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>240</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>241</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>242</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>243</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>244</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>245</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>246</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>247</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>248</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>249</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>250</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>251</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>252</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>253</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>254</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>255</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>256</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>257</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>258</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>259</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>260</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>261</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>262</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>263</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>264</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>265</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>266</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>267</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>268</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>269</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>270</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>271</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>272</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>273</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>274</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>275</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>276</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>277</first>
<second>
<first>9</first>
<second>0</second>
</second>
</item>
<item>
<first>278</first>
<second>
<first>9</first>
<second>1</second>
</second>
</item>
<item>
<first>279</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>280</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>282</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>284</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>9</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>93</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>2</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>3</first>
<second>6</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>3</first>
<second>6</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>3</first>
<second>6</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>281</first>
<second>
<first>3</first>
<second>10</second>
</second>
</item>
<item>
<first>283</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>285</first>
<second>
<first>7</first>
<second>7</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_738">
<region_name>VITIS_LOOP_101_1</region_name>
<basic_blocks>
<count>7</count>
<item_version>0</item_version>
<item>111</item>
<item>116</item>
<item>124</item>
<item>204</item>
<item>208</item>
<item>281</item>
<item>283</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>8</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>
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 29.373133 | 115 | 0.621609 |
2f985bfeef1b28548fdb60caaf00b22672ac96d2 | 1,356 | ads | Ada | mat/src/gtk/mat-events-gtkmat.ads | stcarrez/mat | fb242feb5662b8130680cd06e50da7ef40b95bd7 | [
"Apache-2.0"
] | 7 | 2015-01-18T23:04:30.000Z | 2021-04-06T14:07:56.000Z | mat/src/gtk/mat-events-gtkmat.ads | stcarrez/mat | fb242feb5662b8130680cd06e50da7ef40b95bd7 | [
"Apache-2.0"
] | null | null | null | mat/src/gtk/mat-events-gtkmat.ads | stcarrez/mat | fb242feb5662b8130680cd06e50da7ef40b95bd7 | [
"Apache-2.0"
] | null | null | null | -----------------------------------------------------------------------
-- gprofiler-events - Profiler Events Description
-- Copyright (C) 2014 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 Cairo;
with Gtk.Drawing_Area;
with MAT.Events.Tools;
package MAT.Events.Gtkmat is
type Event_Drawing_Type is record
Drawing : Gtk.Drawing_Area.Gtk_Drawing_Area;
List : MAT.Events.Tools.Target_Event_Vector;
end record;
type Event_Drawing_Type_Access is access Event_Drawing_Type;
procedure Create (Drawing : in out Event_Drawing_Type);
procedure Draw (Onto : in Event_Drawing_Type;
Cr : in Cairo.Cairo_Context);
end MAT.Events.Gtkmat;
| 36.648649 | 76 | 0.656342 |
1d6843ea4741ff203552a201dae3b0dbcb9cea51 | 3,068 | ads | Ada | src/core/spat-entity_location.ads | HeisenbugLtd/spat | c3ec2b7675a12bdbe5378862b1ec6b17805d5a6c | [
"WTFPL"
] | 20 | 2020-05-17T18:55:16.000Z | 2021-05-26T14:53:53.000Z | src/core/spat-entity_location.ads | selroc/spat | c3ec2b7675a12bdbe5378862b1ec6b17805d5a6c | [
"WTFPL"
] | 33 | 2020-04-03T13:08:50.000Z | 2020-10-17T04:26:34.000Z | src/core/spat-entity_location.ads | selroc/spat | c3ec2b7675a12bdbe5378862b1ec6b17805d5a6c | [
"WTFPL"
] | 4 | 2020-06-12T12:17:27.000Z | 2021-09-09T14:19:31.000Z | ------------------------------------------------------------------------------
-- 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);
------------------------------------------------------------------------------
--
-- SPARK Proof Analysis Tool
--
-- S.P.A.T. - Object representing an entity (name) with a file location based
-- on a source line and column.
--
------------------------------------------------------------------------------
with SPAT.Entity_Line;
with SPAT.Field_Names;
with SPAT.Preconditions;
package SPAT.Entity_Location is
use all type GNATCOLL.JSON.JSON_Value_Type;
---------------------------------------------------------------------------
-- Has_Required_Fields
---------------------------------------------------------------------------
function Has_Required_Fields (Object : in JSON_Value) return Boolean is
(Preconditions.Ensure_Field (Object => Object,
Field => Field_Names.File,
Kind => JSON_String_Type) and
Preconditions.Ensure_Field (Object => Object,
Field => Field_Names.Line,
Kind => JSON_Int_Type));
type T is new Entity_Line.T with private;
---------------------------------------------------------------------------
-- Create
---------------------------------------------------------------------------
overriding
function Create (Object : in JSON_Value) return T with
Pre => Has_Required_Fields (Object => Object);
---------------------------------------------------------------------------
-- "<"
---------------------------------------------------------------------------
not overriding
function "<" (Left : in T;
Right : in T) return Boolean;
---------------------------------------------------------------------------
-- Image
---------------------------------------------------------------------------
overriding
function Image (This : in T) return String;
---------------------------------------------------------------------------
-- Source_Column
---------------------------------------------------------------------------
not overriding
function Source_Column (This : in T) return Natural;
private
type T is new Entity_Line.T with
record
Column : Natural;
end record;
---------------------------------------------------------------------------
-- Source_Column
---------------------------------------------------------------------------
not overriding
function Source_Column (This : in T) return Natural is
(This.Column);
end SPAT.Entity_Location;
| 37.876543 | 78 | 0.371578 |
3192f46e182ecc4e3262cd15ecce540413379a45 | 487,607 | adb | Ada | fpga/wave/.autopilot/db/sin_cos_range_redux_s.sched.adb | dorin-ionita/RustHPC | 903e5dd8f09213a5cc33f5e651d687e234944e84 | [
"MIT"
] | 2 | 2021-06-22T19:23:55.000Z | 2021-07-03T16:47:01.000Z | fpga/wave/.autopilot/db/sin_cos_range_redux_s.sched.adb | dorin-ionita/RustHPC | 903e5dd8f09213a5cc33f5e651d687e234944e84 | [
"MIT"
] | 60 | 2019-11-05T14:12:34.000Z | 2021-06-21T22:31:17.000Z | fpga/wave/.autopilot/db/sin_cos_range_redux_s.sched.adb | dorin-ionita/wireless-models-experiments | 903e5dd8f09213a5cc33f5e651d687e234944e84 | [
"MIT"
] | null | null | null | <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<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>sin_cos_range_redux_s</name>
<ret_bitwidth>64</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>1</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>t_in</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>t_in</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 class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>201</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_2">
<Value>
<Obj>
<type>0</type>
<id>4</id>
<name>t_in_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>t_in</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>223</item>
<item>224</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>p_Val2_3</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>469</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second class_id="12" tracking_level="0" version="0">
<count>2</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>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>583</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>469</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>val</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>225</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>p_Result_s</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>470</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>583</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>470</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>227</item>
<item>228</item>
<item>230</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>loc_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>471</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>583</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>471</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>loc.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>232</item>
<item>233</item>
<item>235</item>
<item>237</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>loc_V_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>472</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>303</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>472</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>loc.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>tmp_i_cast</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>471</lineNumber>
<contextFuncName>fp_struct</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>583</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>fp_struct</second>
</first>
<second>471</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>239</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>exp</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>304</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>304</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>exp</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>241</item>
<item>242</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>tmp_3</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>309</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>244</item>
<item>245</item>
<item>247</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name></name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>309</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>309</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>248</item>
<item>249</item>
<item>250</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>r_V_5</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>323</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>323</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>53</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>252</item>
<item>254</item>
<item>255</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>addr_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>273</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>273</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>addr.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>257</item>
<item>258</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>p_Result_i_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>274</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>274</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>260</item>
<item>261</item>
<item>263</item>
<item>265</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>tmp_i_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>274</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>274</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>266</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>hls_ref_4oPi_table_s</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>274</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>274</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>267</item>
<item>269</item>
<item>270</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>table_256_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>274</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>274</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>table_256.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>271</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp_4</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>275</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>275</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>272</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>tmp_199_i_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>275</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>275</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>273</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>r_V_6</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>275</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>275</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>256</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>274</item>
<item>275</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>ret_V_5</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>275</lineNumber>
<contextFuncName>table_lookup_4oPi&lt;52, 16&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>324</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>table_lookup_4oPi&lt;52, 16&gt;</second>
</first>
<second>275</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ret.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>125</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>277</item>
<item>278</item>
<item>280</item>
<item>282</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>p_Val2_11</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_big_mult.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>331</lineNumber>
<contextFuncName>big_mult&lt;125, 53&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_big_mult.h</first>
<second>big_mult&lt;125, 53&gt;</second>
</first>
<second>331</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>326</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>178</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>284</item>
<item>285</item>
<item>286</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>h_fract_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>329</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>329</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>h_fract.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>288</item>
<item>289</item>
<item>291</item>
<item>293</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>p_Val2_9</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>330</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>330</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>295</item>
<item>296</item>
<item>298</item>
<item>300</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>m_m_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_big_mult.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>306</lineNumber>
<contextFuncName>big_mult&lt;3, 94, 17&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_big_mult.h</first>
<second>big_mult&lt;3, 94, 17&gt;</second>
</first>
<second>306</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_big_mult.h</first>
<second>big_mult&lt;78, 78&gt;</second>
</first>
<second>341</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_big_mult.h</first>
<second>big_mult&lt;94, 17&gt;</second>
</first>
<second>318</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>332</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>188</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>302</item>
<item>303</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>prod_adj_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>334</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>334</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>prod_adj.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>305</item>
<item>306</item>
<item>308</item>
<item>310</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>tmp_5</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>335</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>335</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>312</item>
<item>313</item>
<item>314</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_185_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>335</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>335</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>316</item>
<item>317</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>tmp_133_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>337</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>337</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>319</item>
<item>320</item>
<item>322</item>
<item>323</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>tmp_134_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>337</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>337</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>325</item>
<item>326</item>
<item>328</item>
<item>329</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>tmp_135_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>335</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>335</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>330</item>
<item>331</item>
<item>332</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name></name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>338</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>338</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>333</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>r_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>228</lineNumber>
<contextFuncName>convToInt&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToInt&lt;78&gt;</second>
</first>
<second>228</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>340</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>335</item>
<item>336</item>
<item>337</item>
<item>339</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>op2_assign</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>229</lineNumber>
<contextFuncName>convToInt&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToInt&lt;78&gt;</second>
</first>
<second>229</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>340</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>op2</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>341</item>
<item>342</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>op2_assign_i_cast</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>229</lineNumber>
<contextFuncName>convToInt&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToInt&lt;78&gt;</second>
</first>
<second>229</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>340</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>343</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>tmp_222_i_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>229</lineNumber>
<contextFuncName>convToInt&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToInt&lt;78&gt;</second>
</first>
<second>229</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>340</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>344</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_223_i_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>229</lineNumber>
<contextFuncName>convToInt&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToInt&lt;78&gt;</second>
</first>
<second>229</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>340</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>345</item>
<item>346</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name></name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>229</lineNumber>
<contextFuncName>convToInt&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToInt&lt;78&gt;</second>
</first>
<second>229</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>340</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>347</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>k_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>348</item>
<item>349</item>
<item>351</item>
<item>352</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>dout_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>335</lineNumber>
<contextFuncName>range_redux_payne_hanek&lt;16, 78, double&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>588</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>range_redux_payne_hanek&lt;16, 78, double&gt;</second>
</first>
<second>335</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ssdm_int&lt;78 + 1024 * 0, false&gt;.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>353</item>
<item>354</item>
<item>355</item>
<item>356</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>r_V_7</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>591</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>591</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>76</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>358</item>
<item>359</item>
<item>361</item>
<item>362</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>loc_V_2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>598</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>598</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>loc.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>363</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name></name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>234</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>234</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</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>364</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>p_Val2_7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tz.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>365</item>
<item>366</item>
<item>367</item>
<item>368</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>p_Val2_6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ty.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>370</item>
<item>371</item>
<item>372</item>
<item>373</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>p_Val2_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>tx.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>375</item>
<item>376</item>
<item>377</item>
<item>378</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>sh_assign</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>380</item>
<item>381</item>
<item>382</item>
<item>383</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>exitcond_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>234</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>234</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</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>384</item>
<item>386</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>k</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>234</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>234</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>387</item>
<item>389</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name></name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>234</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>234</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</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>390</item>
<item>391</item>
<item>392</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>d_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>245</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>245</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>d.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>394</item>
<item>395</item>
<item>396</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>tmp_s</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>254</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>254</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>397</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>y_s_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>254</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>254</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>y_s.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>398</item>
<item>399</item>
</oprand_edges>
<opcode>ashr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>p_Val2_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>116</lineNumber>
<contextFuncName>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</second>
</first>
<second>116</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>255</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>400</item>
<item>401</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>p_Val2_23</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>116</lineNumber>
<contextFuncName>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</second>
</first>
<second>116</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>255</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>402</item>
<item>403</item>
<item>404</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>tx_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>255</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>255</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tx.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>405</item>
<item>406</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>x_s_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>256</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>256</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x_s.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>407</item>
<item>408</item>
</oprand_edges>
<opcode>ashr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>p_Val2_i3</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>116</lineNumber>
<contextFuncName>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, bool&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, bool&gt;</second>
</first>
<second>116</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>257</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>409</item>
<item>410</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>p_Val2_24</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>116</lineNumber>
<contextFuncName>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, bool&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 5, 3, 0&gt;, bool&gt;</second>
</first>
<second>116</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>257</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>411</item>
<item>412</item>
<item>413</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>ty_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>257</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>257</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ty.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>414</item>
<item>415</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>tmp_28</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</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>416</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>hls_cordic_ctab_tab</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</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>417</item>
<item>418</item>
<item>419</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>p_Val2_25</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>126</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>420</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>p_Val2_17_cast</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>76</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>422</item>
<item>423</item>
<item>425</item>
<item>427</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>tmp_43</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</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>429</item>
<item>430</item>
<item>432</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>tmp_188_cast</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>76</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>433</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>p_Val2_27</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>76</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>434</item>
<item>435</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>p_Val2_18_cast</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>258</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>258</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>77</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>436</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>p_Val2_i9</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>116</lineNumber>
<contextFuncName>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 0, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 0, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</second>
</first>
<second>116</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>259</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>77</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>438</item>
<item>439</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>p_Val2_s</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>116</lineNumber>
<contextFuncName>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 0, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 0, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</second>
</first>
<second>116</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>259</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>77</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>440</item>
<item>441</item>
<item>442</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>p_Val2_cast</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>116</lineNumber>
<contextFuncName>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 0, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>addsub&lt;0, 0, ap_fixed&lt;79, 3, 5, 3, 0&gt;, ap_fixed&lt;79, 3, 0, 3, 0&gt;, ap_uint&lt;1&gt; &gt;</second>
</first>
<second>116</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>259</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>443</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>tz_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>259</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>259</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tz.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>79</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>444</item>
<item>445</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name></name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>234</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>234</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</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>446</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>tmp</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>615</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>447</item>
<item>449</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>tmp_7</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>257</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>257</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>77</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>450</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>r_V_8</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>616</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>616</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>452</item>
<item>453</item>
<item>455</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>tmp_8</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>255</lineNumber>
<contextFuncName>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>cordic_circ_v1&lt;78, 0, 0, 0, 79, 3, 79, 3&gt;</second>
</first>
<second>255</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>599</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>77</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>456</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>r_V_9</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>617</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>617</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>457</item>
<item>458</item>
<item>459</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>p_Val2_13</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>460</item>
<item>462</item>
<item>463</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>p_Val2_16</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>615</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>615</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Val2__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>464</item>
<item>466</item>
<item>467</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>p_Result_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>160</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>160</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>469</item>
<item>470</item>
<item>471</item>
<item>472</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>p_Result_2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>160</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>160</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>474</item>
<item>475</item>
<item>477</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>p_Result_4_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>161</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>161</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>478</item>
<item>479</item>
<item>481</item>
<item>483</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>p_Result_3</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>161</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>161</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>484</item>
<item>485</item>
<item>486</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>p_Result_6_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>487</item>
<item>488</item>
<item>490</item>
<item>492</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>p_Result_4</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>493</item>
<item>494</item>
<item>495</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>p_Result_8_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>496</item>
<item>497</item>
<item>499</item>
<item>501</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>p_Result_5</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>502</item>
<item>503</item>
<item>504</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>c1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>506</item>
<item>507</item>
<item>508</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>c2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>166</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>166</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c2</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>509</item>
<item>510</item>
<item>511</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>c3</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c3</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>512</item>
<item>513</item>
<item>514</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>c4</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>168</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c4</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>515</item>
<item>516</item>
<item>517</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>tmp_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>171</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>518</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>tmp_i1_35</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>171</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>519</item>
<item>520</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>tmp_197_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</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>521</item>
<item>523</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>tmp_9</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>166</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>166</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>524</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>shift</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>shift</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>525</item>
<item>526</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>tmp_198_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>527</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>tmp_199_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>528</item>
<item>529</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>tmp_200_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>530</item>
<item>531</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>shift_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>shift</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>532</item>
<item>533</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>tmp_201_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>178</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>178</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>534</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>tmp_202_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>178</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>178</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>535</item>
<item>536</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name>tmp_203_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>179</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>537</item>
<item>538</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>122</id>
<name>shift_2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>180</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>180</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>shift</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>539</item>
<item>540</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name>tmp_204_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>541</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>tmp_205_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>542</item>
<item>543</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>tmp5</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>544</item>
<item>545</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>sel_tmp1_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>546</item>
<item>547</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>sel_tmp5_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>548</item>
<item>549</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>sel_tmp6_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</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>550</item>
<item>551</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>tmp_6</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>166</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>166</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>552</item>
<item>554</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>tmp_12</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>180</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>180</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>555</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>tmp_15</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>556</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>tmp_17</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>557</item>
<item>558</item>
<item>559</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>tmp_18</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>560</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>tmp_19</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>561</item>
<item>562</item>
<item>563</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>tmp_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>564</item>
<item>565</item>
<item>566</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>tmp_2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>568</item>
<item>569</item>
<item>571</item>
<item>573</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>tmp_22</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>574</item>
<item>575</item>
<item>576</item>
<item>577</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>tmp_31</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>578</item>
<item>579</item>
<item>580</item>
<item>581</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>tmp_32</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>582</item>
<item>583</item>
<item>584</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>tmp_10</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>585</item>
<item>586</item>
<item>587</item>
<item>588</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>tmp_11</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>589</item>
<item>590</item>
<item>591</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>loc_V_3</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>loc.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>592</item>
<item>593</item>
<item>594</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>tmp_206_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>188</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>595</item>
<item>596</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>phitmp_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>598</item>
<item>599</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>out_exp_V</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>out.exp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>600</item>
<item>602</item>
<item>603</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>p_Result_6</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>489</lineNumber>
<contextFuncName>data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>190</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>data</second>
</first>
<second>489</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_double</second>
</first>
<second>506</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_ieee</second>
</first>
<second>520</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>605</item>
<item>606</item>
<item>607</item>
<item>608</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>tmp_s_out</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>506</lineNumber>
<contextFuncName>to_double</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>626</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>190</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_double</second>
</first>
<second>506</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_ieee</second>
</first>
<second>520</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp_s_out</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>609</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>p_Result_i2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>160</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>160</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>610</item>
<item>611</item>
<item>612</item>
<item>613</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>p_Result_7</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>160</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>160</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>614</item>
<item>615</item>
<item>616</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>p_Result_4_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>161</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>161</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>617</item>
<item>618</item>
<item>619</item>
<item>620</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>p_Result_8</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>161</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>161</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>621</item>
<item>622</item>
<item>623</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>p_Result_6_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>624</item>
<item>625</item>
<item>626</item>
<item>627</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>p_Result_9</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>162</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>162</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>628</item>
<item>629</item>
<item>630</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>p_Result_8_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>631</item>
<item>632</item>
<item>633</item>
<item>634</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>p_Result_10</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>163</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>163</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>635</item>
<item>636</item>
<item>637</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>c1_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c1</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>638</item>
<item>639</item>
<item>640</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>c2_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>166</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>166</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c2</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>641</item>
<item>642</item>
<item>643</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>c3_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>167</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>167</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c3</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>644</item>
<item>645</item>
<item>646</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>c4_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>168</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>c4</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>647</item>
<item>648</item>
<item>649</item>
</oprand_edges>
<opcode>ctlz</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>tmp_i</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>171</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>650</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>tmp_i2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>171</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>651</item>
<item>652</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>tmp_197_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</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>653</item>
<item>654</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>tmp_33</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>166</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>166</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>655</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>shift_5</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>173</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>173</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>shift</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>656</item>
<item>657</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>tmp_198_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>658</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>tmp_199_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>174</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>174</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>659</item>
<item>660</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>tmp_200_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>661</item>
<item>662</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>shift_6</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>shift</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>663</item>
<item>664</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>tmp_201_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>178</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>178</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>665</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>tmp_202_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>178</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>178</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>666</item>
<item>667</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>tmp_203_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>179</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>179</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>668</item>
<item>669</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>shift_7</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>180</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>180</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>shift</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>670</item>
<item>671</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>tmp_204_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>672</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>tmp_205_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>181</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>181</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>78</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>673</item>
<item>674</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>tmp15</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>675</item>
<item>676</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>sel_tmp1_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>677</item>
<item>678</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>sel_tmp5_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</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>679</item>
<item>680</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>sel_tmp6_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</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>681</item>
<item>682</item>
</oprand_edges>
<opcode>and</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>tmp_13</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>166</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>166</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>683</item>
<item>684</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>180</id>
<name>tmp_34</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>180</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>180</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>685</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>tmp_35</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>177</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>177</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>686</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>tmp_36</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>175</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>175</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>687</item>
<item>688</item>
<item>689</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>tmp_37</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>165</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>165</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>690</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>tmp_38</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>691</item>
<item>692</item>
<item>693</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>tmp_14</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>172</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>172</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>694</item>
<item>695</item>
<item>696</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>tmp_16</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>697</item>
<item>698</item>
<item>699</item>
<item>700</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>tmp_39</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>701</item>
<item>702</item>
<item>703</item>
<item>704</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>tmp_40</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>705</item>
<item>706</item>
<item>707</item>
<item>708</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>tmp_41</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>709</item>
<item>710</item>
<item>711</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>190</id>
<name>tmp_20</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>712</item>
<item>713</item>
<item>714</item>
<item>715</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>tmp_21</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>716</item>
<item>717</item>
<item>718</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>192</id>
<name>loc_V_4</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>187</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>187</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>loc.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>719</item>
<item>720</item>
<item>721</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>193</id>
<name>tmp_206_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>188</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>722</item>
<item>723</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>194</id>
<name>phitmp_i1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>724</item>
<item>725</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>195</id>
<name>out_exp_V_1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>188</lineNumber>
<contextFuncName>convToDouble&lt;78&gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>188</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>out.exp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>726</item>
<item>727</item>
<item>728</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>196</id>
<name>p_Result_11</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>489</lineNumber>
<contextFuncName>data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>190</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>data</second>
</first>
<second>489</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_double</second>
</first>
<second>506</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_ieee</second>
</first>
<second>520</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>729</item>
<item>730</item>
<item>731</item>
<item>732</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_179">
<Value>
<Obj>
<type>0</type>
<id>197</id>
<name>tmp_c_out</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>506</lineNumber>
<contextFuncName>to_double</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>627</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_range_redux.h</first>
<second>convToDouble&lt;78&gt;</second>
</first>
<second>190</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_double</second>
</first>
<second>506</second>
</item>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/utils/x_hls_utils.h</first>
<second>to_ieee</second>
</first>
<second>520</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp_c_out</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>733</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_180">
<Value>
<Obj>
<type>0</type>
<id>198</id>
<name>tmp_23</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>734</item>
<item>736</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_181">
<Value>
<Obj>
<type>0</type>
<id>199</id>
<name>sel</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>sel</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>737</item>
<item>738</item>
<item>739</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_182">
<Value>
<Obj>
<type>0</type>
<id>200</id>
<name>tmp_246_neg</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>660</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>660</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>740</item>
<item>742</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_183">
<Value>
<Obj>
<type>0</type>
<id>201</id>
<name>tmp_24</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>660</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>660</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>743</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_184">
<Value>
<Obj>
<type>0</type>
<id>202</id>
<name>tmp_245_neg</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>656</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>656</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>744</item>
<item>745</item>
</oprand_edges>
<opcode>xor</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_185">
<Value>
<Obj>
<type>0</type>
<id>203</id>
<name>tmp_25</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>656</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>656</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>746</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_186">
<Value>
<Obj>
<type>0</type>
<id>204</id>
<name>sel_tmp</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</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>747</item>
<item>748</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_187">
<Value>
<Obj>
<type>0</type>
<id>205</id>
<name>sel_tmp1</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>749</item>
<item>750</item>
<item>751</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_188">
<Value>
<Obj>
<type>0</type>
<id>206</id>
<name>sel_tmp2</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</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>752</item>
<item>754</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_189">
<Value>
<Obj>
<type>0</type>
<id>207</id>
<name>sel_tmp3</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>755</item>
<item>756</item>
<item>757</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_190">
<Value>
<Obj>
<type>0</type>
<id>208</id>
<name>sel_tmp4</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</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>758</item>
<item>760</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_191">
<Value>
<Obj>
<type>0</type>
<id>209</id>
<name>sel_tmp5</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>761</item>
<item>762</item>
<item>763</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_192">
<Value>
<Obj>
<type>0</type>
<id>210</id>
<name>sel_tmp6</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</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>764</item>
<item>766</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_193">
<Value>
<Obj>
<type>0</type>
<id>211</id>
<name>sel_tmp7</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>767</item>
<item>768</item>
<item>769</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_194">
<Value>
<Obj>
<type>0</type>
<id>212</id>
<name>sel_tmp8</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</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>770</item>
<item>772</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_195">
<Value>
<Obj>
<type>0</type>
<id>213</id>
<name>sel_tmp9</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>773</item>
<item>774</item>
<item>775</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_196">
<Value>
<Obj>
<type>0</type>
<id>214</id>
<name>sel_tmp10</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</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>776</item>
<item>778</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_197">
<Value>
<Obj>
<type>0</type>
<id>215</id>
<name>s_out</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>629</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>629</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>779</item>
<item>780</item>
<item>781</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_198">
<Value>
<Obj>
<type>0</type>
<id>216</id>
<name>tmp_26</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>668</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>668</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>782</item>
<item>784</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_199">
<Value>
<Obj>
<type>0</type>
<id>217</id>
<name>tmp_27</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>671</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>671</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>785</item>
<item>787</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_200">
<Value>
<Obj>
<type>0</type>
<id>218</id>
<name>t_in_s_out</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>671</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>671</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>788</item>
<item>789</item>
<item>790</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_201">
<Value>
<Obj>
<type>0</type>
<id>219</id>
<name>s_out_write_assign</name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>577</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>577</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>s_out</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>791</item>
<item>793</item>
<item>794</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_202">
<Value>
<Obj>
<type>0</type>
<id>220</id>
<name></name>
<fileName>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</fileName>
<fileDirectory>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</fileDirectory>
<lineNumber>577</lineNumber>
<contextFuncName>sin_cos_range_redux_cordic</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>/wrk/2016.4/nightly/2017_01_23_1756540/src/products/hls/hls_lib/src/hls/hls_cordic.h</first>
<second>sin_cos_range_redux_cordic</second>
</first>
<second>577</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>795</item>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>63</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_203">
<Value>
<Obj>
<type>2</type>
<id>229</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="_204">
<Value>
<Obj>
<type>2</type>
<id>234</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>52</content>
</item>
<item class_id_reference="16" object_id="_205">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>62</content>
</item>
<item class_id_reference="16" object_id="_206">
<Value>
<Obj>
<type>2</type>
<id>240</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>12</bitwidth>
</Value>
<const_type>0</const_type>
<content>3073</content>
</item>
<item class_id_reference="16" object_id="_207">
<Value>
<Obj>
<type>2</type>
<id>246</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>11</content>
</item>
<item class_id_reference="16" object_id="_208">
<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>1</content>
</item>
<item class_id_reference="16" object_id="_209">
<Value>
<Obj>
<type>2</type>
<id>256</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>12</bitwidth>
</Value>
<const_type>0</const_type>
<content>3149</content>
</item>
<item class_id_reference="16" object_id="_210">
<Value>
<Obj>
<type>2</type>
<id>262</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>7</content>
</item>
<item class_id_reference="16" object_id="_211">
<Value>
<Obj>
<type>2</type>
<id>264</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>10</content>
</item>
<item class_id_reference="16" object_id="_212">
<Value>
<Obj>
<type>2</type>
<id>268</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="_213">
<Value>
<Obj>
<type>2</type>
<id>279</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>131</content>
</item>
<item class_id_reference="16" object_id="_214">
<Value>
<Obj>
<type>2</type>
<id>281</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>255</content>
</item>
<item class_id_reference="16" object_id="_215">
<Value>
<Obj>
<type>2</type>
<id>283</id>
<name>big_mult_v3small</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>178</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:big_mult_v3small></content>
</item>
<item class_id_reference="16" object_id="_216">
<Value>
<Obj>
<type>2</type>
<id>290</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>44</content>
</item>
<item class_id_reference="16" object_id="_217">
<Value>
<Obj>
<type>2</type>
<id>292</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>121</content>
</item>
<item class_id_reference="16" object_id="_218">
<Value>
<Obj>
<type>2</type>
<id>297</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>122</content>
</item>
<item class_id_reference="16" object_id="_219">
<Value>
<Obj>
<type>2</type>
<id>299</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>124</content>
</item>
<item class_id_reference="16" object_id="_220">
<Value>
<Obj>
<type>2</type>
<id>301</id>
<name>big_mult_v3_94_17_s</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>188</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:big_mult_v3<94, 17>></content>
</item>
<item class_id_reference="16" object_id="_221">
<Value>
<Obj>
<type>2</type>
<id>307</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>77</content>
</item>
<item class_id_reference="16" object_id="_222">
<Value>
<Obj>
<type>2</type>
<id>309</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>155</content>
</item>
<item class_id_reference="16" object_id="_223">
<Value>
<Obj>
<type>2</type>
<id>315</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>79</bitwidth>
</Value>
<const_type>0</const_type>
<content>474744059204542322598499</content>
</item>
<item class_id_reference="16" object_id="_224">
<Value>
<Obj>
<type>2</type>
<id>321</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>78</content>
</item>
<item class_id_reference="16" object_id="_225">
<Value>
<Obj>
<type>2</type>
<id>327</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="_226">
<Value>
<Obj>
<type>2</type>
<id>338</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>25</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_227">
<Value>
<Obj>
<type>2</type>
<id>340</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>12</bitwidth>
</Value>
<const_type>0</const_type>
<content>1022</content>
</item>
<item class_id_reference="16" object_id="_228">
<Value>
<Obj>
<type>2</type>
<id>350</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="_229">
<Value>
<Obj>
<type>2</type>
<id>360</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="_230">
<Value>
<Obj>
<type>2</type>
<id>369</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>79</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_231">
<Value>
<Obj>
<type>2</type>
<id>374</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>79</bitwidth>
</Value>
<const_type>0</const_type>
<content>45882734510562557198175</content>
</item>
<item class_id_reference="16" object_id="_232">
<Value>
<Obj>
<type>2</type>
<id>379</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_233">
<Value>
<Obj>
<type>2</type>
<id>385</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>78</content>
</item>
<item class_id_reference="16" object_id="_234">
<Value>
<Obj>
<type>2</type>
<id>388</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_235">
<Value>
<Obj>
<type>2</type>
<id>424</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>50</content>
</item>
<item class_id_reference="16" object_id="_236">
<Value>
<Obj>
<type>2</type>
<id>426</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>125</content>
</item>
<item class_id_reference="16" object_id="_237">
<Value>
<Obj>
<type>2</type>
<id>431</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>49</content>
</item>
<item class_id_reference="16" object_id="_238">
<Value>
<Obj>
<type>2</type>
<id>437</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>77</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_239">
<Value>
<Obj>
<type>2</type>
<id>448</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>76</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_240">
<Value>
<Obj>
<type>2</type>
<id>454</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="_241">
<Value>
<Obj>
<type>2</type>
<id>461</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>78</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_242">
<Value>
<Obj>
<type>2</type>
<id>465</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>78</bitwidth>
</Value>
<const_type>0</const_type>
<content>151115727451828646838272</content>
</item>
<item class_id_reference="16" object_id="_243">
<Value>
<Obj>
<type>2</type>
<id>476</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>16</bitwidth>
</Value>
<const_type>0</const_type>
<content>32768</content>
</item>
<item class_id_reference="16" object_id="_244">
<Value>
<Obj>
<type>2</type>
<id>480</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>46</content>
</item>
<item class_id_reference="16" object_id="_245">
<Value>
<Obj>
<type>2</type>
<id>482</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>61</content>
</item>
<item class_id_reference="16" object_id="_246">
<Value>
<Obj>
<type>2</type>
<id>489</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>30</content>
</item>
<item class_id_reference="16" object_id="_247">
<Value>
<Obj>
<type>2</type>
<id>491</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>45</content>
</item>
<item class_id_reference="16" object_id="_248">
<Value>
<Obj>
<type>2</type>
<id>498</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>14</content>
</item>
<item class_id_reference="16" object_id="_249">
<Value>
<Obj>
<type>2</type>
<id>500</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>29</content>
</item>
<item class_id_reference="16" object_id="_250">
<Value>
<Obj>
<type>2</type>
<id>522</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>16</content>
</item>
<item class_id_reference="16" object_id="_251">
<Value>
<Obj>
<type>2</type>
<id>553</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>16</content>
</item>
<item class_id_reference="16" object_id="_252">
<Value>
<Obj>
<type>2</type>
<id>570</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>25</content>
</item>
<item class_id_reference="16" object_id="_253">
<Value>
<Obj>
<type>2</type>
<id>572</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>76</content>
</item>
<item class_id_reference="16" object_id="_254">
<Value>
<Obj>
<type>2</type>
<id>597</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1023</content>
</item>
<item class_id_reference="16" object_id="_255">
<Value>
<Obj>
<type>2</type>
<id>601</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_256">
<Value>
<Obj>
<type>2</type>
<id>735</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>7</content>
</item>
<item class_id_reference="16" object_id="_257">
<Value>
<Obj>
<type>2</type>
<id>741</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>9223372036854775808</content>
</item>
<item class_id_reference="16" object_id="_258">
<Value>
<Obj>
<type>2</type>
<id>753</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>6</content>
</item>
<item class_id_reference="16" object_id="_259">
<Value>
<Obj>
<type>2</type>
<id>759</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>5</content>
</item>
<item class_id_reference="16" object_id="_260">
<Value>
<Obj>
<type>2</type>
<id>765</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>4</content>
</item>
<item class_id_reference="16" object_id="_261">
<Value>
<Obj>
<type>2</type>
<id>771</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>2</content>
</item>
<item class_id_reference="16" object_id="_262">
<Value>
<Obj>
<type>2</type>
<id>777</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>1</content>
</item>
<item class_id_reference="16" object_id="_263">
<Value>
<Obj>
<type>2</type>
<id>783</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>2047</content>
</item>
<item class_id_reference="16" object_id="_264">
<Value>
<Obj>
<type>2</type>
<id>786</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>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>999</content>
</item>
<item class_id_reference="16" object_id="_265">
<Value>
<Obj>
<type>2</type>
<id>792</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>1</const_type>
<content>nan</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="_266">
<Obj>
<type>3</type>
<id>13</id>
<name>_ZrsILi78ELb0EE11ap_int_baseIXT_EXT0_EXleT_Li64EEERKS1_i.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>9</count>
<item_version>0</item_version>
<item>4</item>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
<item>10</item>
<item>11</item>
<item>12</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_267">
<Obj>
<type>3</type>
<id>35</id>
<name>_ZlsILi53ELb0EE11ap_int_baseIXT_EXT0_EXleT_Li64EEERKS1_i.exit.i</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>21</count>
<item_version>0</item_version>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
<item>33</item>
<item>34</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_268">
<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>6</count>
<item_version>0</item_version>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_269">
<Obj>
<type>3</type>
<id>48</id>
<name>range_redux_payne_hanek<16, 78, double>.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>5</count>
<item_version>0</item_version>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_270">
<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>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>55</item>
<item>56</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_271">
<Obj>
<type>3</type>
<id>90</id>
<name>operator>>.exit100.i</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>23</count>
<item_version>0</item_version>
<item>58</item>
<item>59</item>
<item>60</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>67</item>
<item>70</item>
<item>71</item>
<item>72</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>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>89</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_272">
<Obj>
<type>3</type>
<id>221</id>
<name>cordic_circ_v1<78, 0, 0, 0, 79, 3, 79, 3>.exit_ifconv</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>130</count>
<item_version>0</item_version>
<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>
<item>132</item>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
<item>148</item>
<item>149</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
<item>186</item>
<item>187</item>
<item>188</item>
<item>189</item>
<item>190</item>
<item>191</item>
<item>192</item>
<item>193</item>
<item>194</item>
<item>195</item>
<item>196</item>
<item>197</item>
<item>198</item>
<item>199</item>
<item>200</item>
<item>201</item>
<item>202</item>
<item>203</item>
<item>204</item>
<item>205</item>
<item>206</item>
<item>207</item>
<item>208</item>
<item>209</item>
<item>210</item>
<item>211</item>
<item>212</item>
<item>213</item>
<item>214</item>
<item>215</item>
<item>216</item>
<item>217</item>
<item>218</item>
<item>219</item>
<item>220</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>441</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_273">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>4</sink_obj>
</item>
<item class_id_reference="20" object_id="_274">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>5</sink_obj>
</item>
<item class_id_reference="20" object_id="_275">
<id>228</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_276">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>229</source_obj>
<sink_obj>6</sink_obj>
</item>
<item class_id_reference="20" object_id="_277">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_278">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>234</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_279">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>7</sink_obj>
</item>
<item class_id_reference="20" object_id="_280">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_281">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>9</sink_obj>
</item>
<item class_id_reference="20" object_id="_282">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_283">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_284">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_285">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>246</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_286">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_287">
<id>249</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_288">
<id>250</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_289">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_290">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_291">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>256</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_292">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_293">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_294">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>262</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_295">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_296">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_297">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_298">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_299">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_300">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_301">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_302">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_303">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_304">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_305">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_306">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>279</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_307">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>281</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_308">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>283</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_309">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_310">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_311">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_312">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>290</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_313">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>292</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_314">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_315">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_316">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>299</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_317">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>301</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_318">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_319">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_320">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_321">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_322">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_323">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>297</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_324">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>315</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_325">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_326">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_327">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>321</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_328">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>309</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_329">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_330">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>327</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_331">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>321</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_332">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_333">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_334">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_335">
<id>333</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_336">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_337">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_338">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>338</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_339">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>340</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_340">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_341">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_342">
<id>344</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_343">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_344">
<id>346</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_345">
<id>347</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_346">
<id>348</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_347">
<id>349</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_348">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>350</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_349">
<id>352</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_350">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_351">
<id>354</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_352">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_353">
<id>356</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_354">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_355">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>360</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_356">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_357">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_358">
<id>364</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_359">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_360">
<id>366</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_361">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_362">
<id>368</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_363">
<id>370</id>
<edge_type>1</edge_type>
<source_obj>369</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_364">
<id>371</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_365">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_366">
<id>373</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_367">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>374</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_368">
<id>376</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_369">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_370">
<id>378</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_371">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>379</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_372">
<id>381</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_373">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_374">
<id>383</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_375">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_376">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>385</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_377">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_378">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>388</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_379">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_380">
<id>391</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_381">
<id>392</id>
<edge_type>2</edge_type>
<source_obj>221</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_382">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_383">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_384">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_385">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_386">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_387">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>369</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_388">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_389">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_390">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_391">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_392">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_393">
<id>406</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_394">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_395">
<id>408</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_396">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>369</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_397">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_398">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_399">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_400">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_401">
<id>414</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_402">
<id>415</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_403">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_404">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_405">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_406">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_407">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_408">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_409">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>424</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_410">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>426</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_411">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_412">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>431</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_413">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_414">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_415">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_416">
<id>436</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_417">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>437</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_418">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_419">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_420">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_421">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_422">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_423">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_424">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_425">
<id>446</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_426">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_427">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>448</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_428">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_429">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_430">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>454</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_431">
<id>456</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_432">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_433">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>454</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_434">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_435">
<id>462</id>
<edge_type>1</edge_type>
<source_obj>461</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_436">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_437">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_438">
<id>466</id>
<edge_type>1</edge_type>
<source_obj>465</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_439">
<id>467</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_440">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_441">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_442">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_443">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_444">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_445">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_446">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_447">
<id>483</id>
<edge_type>1</edge_type>
<source_obj>482</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_448">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_449">
<id>486</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_450">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_451">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>489</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_452">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>491</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_453">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_454">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_455">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_456">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>498</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_457">
<id>501</id>
<edge_type>1</edge_type>
<source_obj>500</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_458">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_459">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_460">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_461">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_462">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_463">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_464">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_465">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_466">
<id>516</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_467">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_468">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_469">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_470">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_471">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_472">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_473">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_474">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_475">
<id>526</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_476">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_477">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_478">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_479">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_480">
<id>531</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_481">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_482">
<id>533</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_483">
<id>534</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_484">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_485">
<id>536</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_486">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_487">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_488">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_489">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>122</sink_obj>
</item>
<item class_id_reference="20" object_id="_490">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_491">
<id>542</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_492">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>123</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_493">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_494">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>121</source_obj>
<sink_obj>125</sink_obj>
</item>
<item class_id_reference="20" object_id="_495">
<id>546</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_496">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_497">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_498">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>127</sink_obj>
</item>
<item class_id_reference="20" object_id="_499">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_500">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>128</sink_obj>
</item>
<item class_id_reference="20" object_id="_501">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_502">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>553</source_obj>
<sink_obj>129</sink_obj>
</item>
<item class_id_reference="20" object_id="_503">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>130</sink_obj>
</item>
<item class_id_reference="20" object_id="_504">
<id>556</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>131</sink_obj>
</item>
<item class_id_reference="20" object_id="_505">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_506">
<id>558</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_507">
<id>559</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>132</sink_obj>
</item>
<item class_id_reference="20" object_id="_508">
<id>560</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>133</sink_obj>
</item>
<item class_id_reference="20" object_id="_509">
<id>561</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_510">
<id>562</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_511">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>133</source_obj>
<sink_obj>134</sink_obj>
</item>
<item class_id_reference="20" object_id="_512">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_513">
<id>565</id>
<edge_type>1</edge_type>
<source_obj>129</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_514">
<id>566</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>135</sink_obj>
</item>
<item class_id_reference="20" object_id="_515">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_516">
<id>571</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_517">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>136</sink_obj>
</item>
<item class_id_reference="20" object_id="_518">
<id>575</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_519">
<id>576</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_520">
<id>577</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>137</sink_obj>
</item>
<item class_id_reference="20" object_id="_521">
<id>579</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_522">
<id>580</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_523">
<id>581</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>138</sink_obj>
</item>
<item class_id_reference="20" object_id="_524">
<id>582</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_525">
<id>583</id>
<edge_type>1</edge_type>
<source_obj>137</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_526">
<id>584</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
</item>
<item class_id_reference="20" object_id="_527">
<id>586</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_528">
<id>587</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_529">
<id>588</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>140</sink_obj>
</item>
<item class_id_reference="20" object_id="_530">
<id>589</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_531">
<id>590</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_532">
<id>591</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>141</sink_obj>
</item>
<item class_id_reference="20" object_id="_533">
<id>592</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_534">
<id>593</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_535">
<id>594</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>142</sink_obj>
</item>
<item class_id_reference="20" object_id="_536">
<id>595</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_537">
<id>596</id>
<edge_type>1</edge_type>
<source_obj>461</source_obj>
<sink_obj>143</sink_obj>
</item>
<item class_id_reference="20" object_id="_538">
<id>598</id>
<edge_type>1</edge_type>
<source_obj>597</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_539">
<id>599</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>144</sink_obj>
</item>
<item class_id_reference="20" object_id="_540">
<id>600</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_541">
<id>602</id>
<edge_type>1</edge_type>
<source_obj>601</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_542">
<id>603</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>145</sink_obj>
</item>
<item class_id_reference="20" object_id="_543">
<id>606</id>
<edge_type>1</edge_type>
<source_obj>454</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_544">
<id>607</id>
<edge_type>1</edge_type>
<source_obj>145</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_545">
<id>608</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>146</sink_obj>
</item>
<item class_id_reference="20" object_id="_546">
<id>609</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>147</sink_obj>
</item>
<item class_id_reference="20" object_id="_547">
<id>611</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_548">
<id>612</id>
<edge_type>1</edge_type>
<source_obj>236</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_549">
<id>613</id>
<edge_type>1</edge_type>
<source_obj>307</source_obj>
<sink_obj>148</sink_obj>
</item>
<item class_id_reference="20" object_id="_550">
<id>615</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_551">
<id>616</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>149</sink_obj>
</item>
<item class_id_reference="20" object_id="_552">
<id>618</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_553">
<id>619</id>
<edge_type>1</edge_type>
<source_obj>480</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_554">
<id>620</id>
<edge_type>1</edge_type>
<source_obj>482</source_obj>
<sink_obj>150</sink_obj>
</item>
<item class_id_reference="20" object_id="_555">
<id>622</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_556">
<id>623</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>151</sink_obj>
</item>
<item class_id_reference="20" object_id="_557">
<id>625</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_558">
<id>626</id>
<edge_type>1</edge_type>
<source_obj>489</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_559">
<id>627</id>
<edge_type>1</edge_type>
<source_obj>491</source_obj>
<sink_obj>152</sink_obj>
</item>
<item class_id_reference="20" object_id="_560">
<id>629</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_561">
<id>630</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>153</sink_obj>
</item>
<item class_id_reference="20" object_id="_562">
<id>632</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_563">
<id>633</id>
<edge_type>1</edge_type>
<source_obj>498</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_564">
<id>634</id>
<edge_type>1</edge_type>
<source_obj>500</source_obj>
<sink_obj>154</sink_obj>
</item>
<item class_id_reference="20" object_id="_565">
<id>636</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_566">
<id>637</id>
<edge_type>1</edge_type>
<source_obj>476</source_obj>
<sink_obj>155</sink_obj>
</item>
<item class_id_reference="20" object_id="_567">
<id>639</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_568">
<id>640</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>156</sink_obj>
</item>
<item class_id_reference="20" object_id="_569">
<id>642</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_570">
<id>643</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>157</sink_obj>
</item>
<item class_id_reference="20" object_id="_571">
<id>645</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_572">
<id>646</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>158</sink_obj>
</item>
<item class_id_reference="20" object_id="_573">
<id>648</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_574">
<id>649</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>159</sink_obj>
</item>
<item class_id_reference="20" object_id="_575">
<id>650</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>160</sink_obj>
</item>
<item class_id_reference="20" object_id="_576">
<id>651</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_577">
<id>652</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
</item>
<item class_id_reference="20" object_id="_578">
<id>653</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_579">
<id>654</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>162</sink_obj>
</item>
<item class_id_reference="20" object_id="_580">
<id>655</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>163</sink_obj>
</item>
<item class_id_reference="20" object_id="_581">
<id>656</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_582">
<id>657</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>164</sink_obj>
</item>
<item class_id_reference="20" object_id="_583">
<id>658</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>165</sink_obj>
</item>
<item class_id_reference="20" object_id="_584">
<id>659</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_585">
<id>660</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>166</sink_obj>
</item>
<item class_id_reference="20" object_id="_586">
<id>661</id>
<edge_type>1</edge_type>
<source_obj>157</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_587">
<id>662</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>167</sink_obj>
</item>
<item class_id_reference="20" object_id="_588">
<id>663</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>168</sink_obj>
</item>
<item class_id_reference="20" object_id="_589">
<id>664</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>168</sink_obj>
</item>
<item class_id_reference="20" object_id="_590">
<id>665</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>169</sink_obj>
</item>
<item class_id_reference="20" object_id="_591">
<id>666</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_592">
<id>667</id>
<edge_type>1</edge_type>
<source_obj>169</source_obj>
<sink_obj>170</sink_obj>
</item>
<item class_id_reference="20" object_id="_593">
<id>668</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_594">
<id>669</id>
<edge_type>1</edge_type>
<source_obj>522</source_obj>
<sink_obj>171</sink_obj>
</item>
<item class_id_reference="20" object_id="_595">
<id>670</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_596">
<id>671</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>172</sink_obj>
</item>
<item class_id_reference="20" object_id="_597">
<id>672</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>173</sink_obj>
</item>
<item class_id_reference="20" object_id="_598">
<id>673</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_599">
<id>674</id>
<edge_type>1</edge_type>
<source_obj>173</source_obj>
<sink_obj>174</sink_obj>
</item>
<item class_id_reference="20" object_id="_600">
<id>675</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_601">
<id>676</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>175</sink_obj>
</item>
<item class_id_reference="20" object_id="_602">
<id>677</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_603">
<id>678</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>176</sink_obj>
</item>
<item class_id_reference="20" object_id="_604">
<id>679</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_605">
<id>680</id>
<edge_type>1</edge_type>
<source_obj>253</source_obj>
<sink_obj>177</sink_obj>
</item>
<item class_id_reference="20" object_id="_606">
<id>681</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_607">
<id>682</id>
<edge_type>1</edge_type>
<source_obj>177</source_obj>
<sink_obj>178</sink_obj>
</item>
<item class_id_reference="20" object_id="_608">
<id>683</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_609">
<id>684</id>
<edge_type>1</edge_type>
<source_obj>553</source_obj>
<sink_obj>179</sink_obj>
</item>
<item class_id_reference="20" object_id="_610">
<id>685</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>180</sink_obj>
</item>
<item class_id_reference="20" object_id="_611">
<id>686</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>181</sink_obj>
</item>
<item class_id_reference="20" object_id="_612">
<id>687</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_613">
<id>688</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_614">
<id>689</id>
<edge_type>1</edge_type>
<source_obj>181</source_obj>
<sink_obj>182</sink_obj>
</item>
<item class_id_reference="20" object_id="_615">
<id>690</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>183</sink_obj>
</item>
<item class_id_reference="20" object_id="_616">
<id>691</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_617">
<id>692</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_618">
<id>693</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>184</sink_obj>
</item>
<item class_id_reference="20" object_id="_619">
<id>694</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_620">
<id>695</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_621">
<id>696</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>185</sink_obj>
</item>
<item class_id_reference="20" object_id="_622">
<id>698</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_623">
<id>699</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_624">
<id>700</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>186</sink_obj>
</item>
<item class_id_reference="20" object_id="_625">
<id>702</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_626">
<id>703</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_627">
<id>704</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>187</sink_obj>
</item>
<item class_id_reference="20" object_id="_628">
<id>706</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_629">
<id>707</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_630">
<id>708</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>188</sink_obj>
</item>
<item class_id_reference="20" object_id="_631">
<id>709</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_632">
<id>710</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_633">
<id>711</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>189</sink_obj>
</item>
<item class_id_reference="20" object_id="_634">
<id>713</id>
<edge_type>1</edge_type>
<source_obj>161</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_635">
<id>714</id>
<edge_type>1</edge_type>
<source_obj>570</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_636">
<id>715</id>
<edge_type>1</edge_type>
<source_obj>572</source_obj>
<sink_obj>190</sink_obj>
</item>
<item class_id_reference="20" object_id="_637">
<id>716</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_638">
<id>717</id>
<edge_type>1</edge_type>
<source_obj>189</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_639">
<id>718</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>191</sink_obj>
</item>
<item class_id_reference="20" object_id="_640">
<id>719</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_641">
<id>720</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_642">
<id>721</id>
<edge_type>1</edge_type>
<source_obj>191</source_obj>
<sink_obj>192</sink_obj>
</item>
<item class_id_reference="20" object_id="_643">
<id>722</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>193</sink_obj>
</item>
<item class_id_reference="20" object_id="_644">
<id>723</id>
<edge_type>1</edge_type>
<source_obj>461</source_obj>
<sink_obj>193</sink_obj>
</item>
<item class_id_reference="20" object_id="_645">
<id>724</id>
<edge_type>1</edge_type>
<source_obj>597</source_obj>
<sink_obj>194</sink_obj>
</item>
<item class_id_reference="20" object_id="_646">
<id>725</id>
<edge_type>1</edge_type>
<source_obj>185</source_obj>
<sink_obj>194</sink_obj>
</item>
<item class_id_reference="20" object_id="_647">
<id>726</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>195</sink_obj>
</item>
<item class_id_reference="20" object_id="_648">
<id>727</id>
<edge_type>1</edge_type>
<source_obj>601</source_obj>
<sink_obj>195</sink_obj>
</item>
<item class_id_reference="20" object_id="_649">
<id>728</id>
<edge_type>1</edge_type>
<source_obj>194</source_obj>
<sink_obj>195</sink_obj>
</item>
<item class_id_reference="20" object_id="_650">
<id>730</id>
<edge_type>1</edge_type>
<source_obj>454</source_obj>
<sink_obj>196</sink_obj>
</item>
<item class_id_reference="20" object_id="_651">
<id>731</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>196</sink_obj>
</item>
<item class_id_reference="20" object_id="_652">
<id>732</id>
<edge_type>1</edge_type>
<source_obj>192</source_obj>
<sink_obj>196</sink_obj>
</item>
<item class_id_reference="20" object_id="_653">
<id>733</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>197</sink_obj>
</item>
<item class_id_reference="20" object_id="_654">
<id>734</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>198</sink_obj>
</item>
<item class_id_reference="20" object_id="_655">
<id>736</id>
<edge_type>1</edge_type>
<source_obj>735</source_obj>
<sink_obj>198</sink_obj>
</item>
<item class_id_reference="20" object_id="_656">
<id>737</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_657">
<id>738</id>
<edge_type>1</edge_type>
<source_obj>198</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_658">
<id>739</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>199</sink_obj>
</item>
<item class_id_reference="20" object_id="_659">
<id>740</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>200</sink_obj>
</item>
<item class_id_reference="20" object_id="_660">
<id>742</id>
<edge_type>1</edge_type>
<source_obj>741</source_obj>
<sink_obj>200</sink_obj>
</item>
<item class_id_reference="20" object_id="_661">
<id>743</id>
<edge_type>1</edge_type>
<source_obj>200</source_obj>
<sink_obj>201</sink_obj>
</item>
<item class_id_reference="20" object_id="_662">
<id>744</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_663">
<id>745</id>
<edge_type>1</edge_type>
<source_obj>741</source_obj>
<sink_obj>202</sink_obj>
</item>
<item class_id_reference="20" object_id="_664">
<id>746</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>203</sink_obj>
</item>
<item class_id_reference="20" object_id="_665">
<id>747</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>204</sink_obj>
</item>
<item class_id_reference="20" object_id="_666">
<id>748</id>
<edge_type>1</edge_type>
<source_obj>735</source_obj>
<sink_obj>204</sink_obj>
</item>
<item class_id_reference="20" object_id="_667">
<id>749</id>
<edge_type>1</edge_type>
<source_obj>204</source_obj>
<sink_obj>205</sink_obj>
</item>
<item class_id_reference="20" object_id="_668">
<id>750</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>205</sink_obj>
</item>
<item class_id_reference="20" object_id="_669">
<id>751</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>205</sink_obj>
</item>
<item class_id_reference="20" object_id="_670">
<id>752</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>206</sink_obj>
</item>
<item class_id_reference="20" object_id="_671">
<id>754</id>
<edge_type>1</edge_type>
<source_obj>753</source_obj>
<sink_obj>206</sink_obj>
</item>
<item class_id_reference="20" object_id="_672">
<id>755</id>
<edge_type>1</edge_type>
<source_obj>206</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_673">
<id>756</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_674">
<id>757</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>207</sink_obj>
</item>
<item class_id_reference="20" object_id="_675">
<id>758</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>208</sink_obj>
</item>
<item class_id_reference="20" object_id="_676">
<id>760</id>
<edge_type>1</edge_type>
<source_obj>759</source_obj>
<sink_obj>208</sink_obj>
</item>
<item class_id_reference="20" object_id="_677">
<id>761</id>
<edge_type>1</edge_type>
<source_obj>208</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_678">
<id>762</id>
<edge_type>1</edge_type>
<source_obj>203</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_679">
<id>763</id>
<edge_type>1</edge_type>
<source_obj>207</source_obj>
<sink_obj>209</sink_obj>
</item>
<item class_id_reference="20" object_id="_680">
<id>764</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>210</sink_obj>
</item>
<item class_id_reference="20" object_id="_681">
<id>766</id>
<edge_type>1</edge_type>
<source_obj>765</source_obj>
<sink_obj>210</sink_obj>
</item>
<item class_id_reference="20" object_id="_682">
<id>767</id>
<edge_type>1</edge_type>
<source_obj>210</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_683">
<id>768</id>
<edge_type>1</edge_type>
<source_obj>201</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_684">
<id>769</id>
<edge_type>1</edge_type>
<source_obj>209</source_obj>
<sink_obj>211</sink_obj>
</item>
<item class_id_reference="20" object_id="_685">
<id>770</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>212</sink_obj>
</item>
<item class_id_reference="20" object_id="_686">
<id>772</id>
<edge_type>1</edge_type>
<source_obj>771</source_obj>
<sink_obj>212</sink_obj>
</item>
<item class_id_reference="20" object_id="_687">
<id>773</id>
<edge_type>1</edge_type>
<source_obj>212</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_688">
<id>774</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_689">
<id>775</id>
<edge_type>1</edge_type>
<source_obj>211</source_obj>
<sink_obj>213</sink_obj>
</item>
<item class_id_reference="20" object_id="_690">
<id>776</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>214</sink_obj>
</item>
<item class_id_reference="20" object_id="_691">
<id>778</id>
<edge_type>1</edge_type>
<source_obj>777</source_obj>
<sink_obj>214</sink_obj>
</item>
<item class_id_reference="20" object_id="_692">
<id>779</id>
<edge_type>1</edge_type>
<source_obj>214</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_693">
<id>780</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_694">
<id>781</id>
<edge_type>1</edge_type>
<source_obj>213</source_obj>
<sink_obj>215</sink_obj>
</item>
<item class_id_reference="20" object_id="_695">
<id>782</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>216</sink_obj>
</item>
<item class_id_reference="20" object_id="_696">
<id>784</id>
<edge_type>1</edge_type>
<source_obj>783</source_obj>
<sink_obj>216</sink_obj>
</item>
<item class_id_reference="20" object_id="_697">
<id>785</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_698">
<id>787</id>
<edge_type>1</edge_type>
<source_obj>786</source_obj>
<sink_obj>217</sink_obj>
</item>
<item class_id_reference="20" object_id="_699">
<id>788</id>
<edge_type>1</edge_type>
<source_obj>217</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_700">
<id>789</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_701">
<id>790</id>
<edge_type>1</edge_type>
<source_obj>215</source_obj>
<sink_obj>218</sink_obj>
</item>
<item class_id_reference="20" object_id="_702">
<id>791</id>
<edge_type>1</edge_type>
<source_obj>216</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_703">
<id>793</id>
<edge_type>1</edge_type>
<source_obj>792</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_704">
<id>794</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>219</sink_obj>
</item>
<item class_id_reference="20" object_id="_705">
<id>795</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>220</sink_obj>
</item>
<item class_id_reference="20" object_id="_706">
<id>837</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_707">
<id>838</id>
<edge_type>2</edge_type>
<source_obj>13</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_708">
<id>839</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_709">
<id>840</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_710">
<id>841</id>
<edge_type>2</edge_type>
<source_obj>48</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_711">
<id>842</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>221</sink_obj>
</item>
<item class_id_reference="20" object_id="_712">
<id>843</id>
<edge_type>2</edge_type>
<source_obj>57</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_713">
<id>844</id>
<edge_type>2</edge_type>
<source_obj>90</source_obj>
<sink_obj>57</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_714">
<mId>1</mId>
<mTag>sin_cos_range_redux_</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</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>940</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_715">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>4</count>
<item_version>0</item_version>
<item>13</item>
<item>35</item>
<item>42</item>
<item>48</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>701</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_716">
<mId>3</mId>
<mTag>Loop 1</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>57</item>
<item>90</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>78</mMinTripCount>
<mMaxTripCount>78</mMaxTripCount>
<mMinLatency>234</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_717">
<mId>4</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>221</item>
</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>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>201</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>4</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>5</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<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>10</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>0</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</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>24</first>
<second>
<first>1</first>
<second>1</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>1</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>3</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>3</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>4</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>4</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>118</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>122</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>190</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>195</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>196</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>197</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>198</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>199</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>200</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>201</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>202</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>203</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>204</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>205</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>206</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>207</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>208</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>209</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>210</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>211</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>212</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>213</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>214</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>215</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>216</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>217</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>218</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>219</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>220</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>13</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>0</first>
<second>3</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>4</first>
<second>6</second>
</second>
</item>
<item>
<first>221</first>
<second>
<first>4</first>
<second>8</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_718">
<region_name>hls::cordic::addsub<0, 0, ap_fixed<79, 3, (ap_q_mode)5, (ap_o_mode)3, 0>, ap_fixed<79, 3, (ap_q_mode)0, (ap_o_mode)3, 0>, ap_uint<1> >.region</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</basic_blocks>
<nodes>
<count>7</count>
<item_version>0</item_version>
<item>82</item>
<item>83</item>
<item>84</item>
<item>85</item>
<item>86</item>
<item>87</item>
<item>88</item>
</nodes>
<anchor_node>82</anchor_node>
<region_type>2</region_type>
<interval>0</interval>
<pipe_depth>0</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>
| 30.075063 | 195 | 0.601046 |
29189db97238f741426948d76649ee9f8c8b4d1d | 31,997 | ads | Ada | arch/ARM/NXP/svd/lpc55s6x/nxp_svd-pint.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | 2 | 2018-05-16T03:56:39.000Z | 2019-07-31T13:53:56.000Z | arch/ARM/NXP/svd/lpc55s6x/nxp_svd-pint.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | arch/ARM/NXP/svd/lpc55s6x/nxp_svd-pint.ads | morbos/Ada_Drivers_Library | a4ab26799be60997c38735f4056160c4af597ef7 | [
"BSD-3-Clause"
] | null | null | null | -- Copyright 2016-2019 NXP
-- All rights reserved.SPDX-License-Identifier: BSD-3-Clause
-- This spec has been automatically generated from LPC55S6x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
pragma Style_Checks (Off);
with HAL;
with System;
package NXP_SVD.PINT is
pragma Preelaborate;
---------------
-- Registers --
---------------
subtype ISEL_PMODE_Field is HAL.UInt8;
-- Pin Interrupt Mode register
type ISEL_Register is record
-- Selects the interrupt mode for each pin interrupt. Bit n configures
-- the pin interrupt selected in PINTSELn. 0 = Edge sensitive 1 = Level
-- sensitive
PMODE : ISEL_PMODE_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for ISEL_Register use record
PMODE at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype IENR_ENRL_Field is HAL.UInt8;
-- Pin interrupt level or rising edge interrupt enable register
type IENR_Register is record
-- Enables the rising edge or level interrupt for each pin interrupt.
-- Bit n configures the pin interrupt selected in PINTSELn. 0 = Disable
-- rising edge or level interrupt. 1 = Enable rising edge or level
-- interrupt.
ENRL : IENR_ENRL_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IENR_Register use record
ENRL at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype SIENR_SETENRL_Field is HAL.UInt8;
-- Pin interrupt level or rising edge interrupt set register
type SIENR_Register is record
-- Write-only. Ones written to this address set bits in the IENR, thus
-- enabling interrupts. Bit n sets bit n in the IENR register. 0 = No
-- operation. 1 = Enable rising edge or level interrupt.
SETENRL : SIENR_SETENRL_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SIENR_Register use record
SETENRL at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CIENR_CENRL_Field is HAL.UInt8;
-- Pin interrupt level (rising edge interrupt) clear register
type CIENR_Register is record
-- Write-only. Ones written to this address clear bits in the IENR, thus
-- disabling the interrupts. Bit n clears bit n in the IENR register. 0
-- = No operation. 1 = Disable rising edge or level interrupt.
CENRL : CIENR_CENRL_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CIENR_Register use record
CENRL at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype IENF_ENAF_Field is HAL.UInt8;
-- Pin interrupt active level or falling edge interrupt enable register
type IENF_Register is record
-- Enables the falling edge or configures the active level interrupt for
-- each pin interrupt. Bit n configures the pin interrupt selected in
-- PINTSELn. 0 = Disable falling edge interrupt or set active interrupt
-- level LOW. 1 = Enable falling edge interrupt enabled or set active
-- interrupt level HIGH.
ENAF : IENF_ENAF_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IENF_Register use record
ENAF at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype SIENF_SETENAF_Field is HAL.UInt8;
-- Pin interrupt active level or falling edge interrupt set register
type SIENF_Register is record
-- Write-only. Ones written to this address set bits in the IENF, thus
-- enabling interrupts. Bit n sets bit n in the IENF register. 0 = No
-- operation. 1 = Select HIGH-active interrupt or enable falling edge
-- interrupt.
SETENAF : SIENF_SETENAF_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SIENF_Register use record
SETENAF at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype CIENF_CENAF_Field is HAL.UInt8;
-- Pin interrupt active level or falling edge interrupt clear register
type CIENF_Register is record
-- Write-only. Ones written to this address clears bits in the IENF,
-- thus disabling interrupts. Bit n clears bit n in the IENF register. 0
-- = No operation. 1 = LOW-active interrupt selected or falling edge
-- interrupt disabled.
CENAF : CIENF_CENAF_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CIENF_Register use record
CENAF at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype RISE_RDET_Field is HAL.UInt8;
-- Pin interrupt rising edge register
type RISE_Register is record
-- Rising edge detect. Bit n detects the rising edge of the pin selected
-- in PINTSELn. Read 0: No rising edge has been detected on this pin
-- since Reset or the last time a one was written to this bit. Write 0:
-- no operation. Read 1: a rising edge has been detected since Reset or
-- the last time a one was written to this bit. Write 1: clear rising
-- edge detection for this pin.
RDET : RISE_RDET_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for RISE_Register use record
RDET at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype FALL_FDET_Field is HAL.UInt8;
-- Pin interrupt falling edge register
type FALL_Register is record
-- Falling edge detect. Bit n detects the falling edge of the pin
-- selected in PINTSELn. Read 0: No falling edge has been detected on
-- this pin since Reset or the last time a one was written to this bit.
-- Write 0: no operation. Read 1: a falling edge has been detected since
-- Reset or the last time a one was written to this bit. Write 1: clear
-- falling edge detection for this pin.
FDET : FALL_FDET_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for FALL_Register use record
FDET at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
subtype IST_PSTAT_Field is HAL.UInt8;
-- Pin interrupt status register
type IST_Register is record
-- Pin interrupt status. Bit n returns the status, clears the edge
-- interrupt, or inverts the active level of the pin selected in
-- PINTSELn. Read 0: interrupt is not being requested for this interrupt
-- pin. Write 0: no operation. Read 1: interrupt is being requested for
-- this interrupt pin. Write 1 (edge-sensitive): clear rising- and
-- falling-edge detection for this pin. Write 1 (level-sensitive):
-- switch the active level for this pin (in the IENF register).
PSTAT : IST_PSTAT_Field := 16#0#;
-- unspecified
Reserved_8_31 : HAL.UInt24 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for IST_Register use record
PSTAT at 0 range 0 .. 7;
Reserved_8_31 at 0 range 8 .. 31;
end record;
-- Specifies whether the 8 pin interrupts are controlled by the pin
-- interrupt function or by the pattern match function.
type PMCTRL_SEL_PMATCH_Field is
(
-- Pin interrupt. Interrupts are driven in response to the standard pin
-- interrupt function.
Pin_Interrupt,
-- Pattern match. Interrupts are driven in response to pattern matches.
Pattern_Match)
with Size => 1;
for PMCTRL_SEL_PMATCH_Field use
(Pin_Interrupt => 0,
Pattern_Match => 1);
-- Enables the RXEV output to the CPU and/or to a GPIO output when the
-- specified boolean expression evaluates to true.
type PMCTRL_ENA_RXEV_Field is
(
-- Disabled. RXEV output to the CPU is disabled.
Disabled,
-- Enabled. RXEV output to the CPU is enabled.
Enabled)
with Size => 1;
for PMCTRL_ENA_RXEV_Field use
(Disabled => 0,
Enabled => 1);
subtype PMCTRL_PMAT_Field is HAL.UInt8;
-- Pattern match interrupt control register
type PMCTRL_Register is record
-- Specifies whether the 8 pin interrupts are controlled by the pin
-- interrupt function or by the pattern match function.
SEL_PMATCH : PMCTRL_SEL_PMATCH_Field := NXP_SVD.PINT.Pin_Interrupt;
-- Enables the RXEV output to the CPU and/or to a GPIO output when the
-- specified boolean expression evaluates to true.
ENA_RXEV : PMCTRL_ENA_RXEV_Field := NXP_SVD.PINT.Disabled;
-- unspecified
Reserved_2_23 : HAL.UInt22 := 16#0#;
-- This field displays the current state of pattern matches. A 1 in any
-- bit of this field indicates that the corresponding product term is
-- matched by the current state of the appropriate inputs.
PMAT : PMCTRL_PMAT_Field := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PMCTRL_Register use record
SEL_PMATCH at 0 range 0 .. 0;
ENA_RXEV at 0 range 1 .. 1;
Reserved_2_23 at 0 range 2 .. 23;
PMAT at 0 range 24 .. 31;
end record;
-- Selects the input source for bit slice 0
type PMSRC_SRC0_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 0.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 0.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 0.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 0.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 0.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 0.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 0.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 0.
Input7)
with Size => 3;
for PMSRC_SRC0_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Selects the input source for bit slice 1
type PMSRC_SRC1_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 1.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 1.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 1.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 1.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 1.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 1.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 1.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 1.
Input7)
with Size => 3;
for PMSRC_SRC1_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Selects the input source for bit slice 2
type PMSRC_SRC2_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 2.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 2.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 2.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 2.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 2.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 2.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 2.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 2.
Input7)
with Size => 3;
for PMSRC_SRC2_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Selects the input source for bit slice 3
type PMSRC_SRC3_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 3.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 3.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 3.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 3.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 3.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 3.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 3.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 3.
Input7)
with Size => 3;
for PMSRC_SRC3_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Selects the input source for bit slice 4
type PMSRC_SRC4_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 4.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 4.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 4.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 4.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 4.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 4.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 4.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 4.
Input7)
with Size => 3;
for PMSRC_SRC4_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Selects the input source for bit slice 5
type PMSRC_SRC5_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 5.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 5.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 5.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 5.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 5.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 5.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 5.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 5.
Input7)
with Size => 3;
for PMSRC_SRC5_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Selects the input source for bit slice 6
type PMSRC_SRC6_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 6.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 6.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 6.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 6.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 6.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 6.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 6.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 6.
Input7)
with Size => 3;
for PMSRC_SRC6_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Selects the input source for bit slice 7
type PMSRC_SRC7_Field is
(
-- Input 0. Selects the pin selected in the PINTSEL0 register as the
-- source to bit slice 7.
Input0,
-- Input 1. Selects the pin selected in the PINTSEL1 register as the
-- source to bit slice 7.
Input1,
-- Input 2. Selects the pin selected in the PINTSEL2 register as the
-- source to bit slice 7.
Input2,
-- Input 3. Selects the pin selected in the PINTSEL3 register as the
-- source to bit slice 7.
Input3,
-- Input 4. Selects the pin selected in the PINTSEL4 register as the
-- source to bit slice 7.
Input4,
-- Input 5. Selects the pin selected in the PINTSEL5 register as the
-- source to bit slice 7.
Input5,
-- Input 6. Selects the pin selected in the PINTSEL6 register as the
-- source to bit slice 7.
Input6,
-- Input 7. Selects the pin selected in the PINTSEL7 register as the
-- source to bit slice 7.
Input7)
with Size => 3;
for PMSRC_SRC7_Field use
(Input0 => 0,
Input1 => 1,
Input2 => 2,
Input3 => 3,
Input4 => 4,
Input5 => 5,
Input6 => 6,
Input7 => 7);
-- Pattern match interrupt bit-slice source register
type PMSRC_Register is record
-- unspecified
Reserved_0_7 : HAL.UInt8 := 16#0#;
-- Selects the input source for bit slice 0
SRC0 : PMSRC_SRC0_Field := NXP_SVD.PINT.Input0;
-- Selects the input source for bit slice 1
SRC1 : PMSRC_SRC1_Field := NXP_SVD.PINT.Input0;
-- Selects the input source for bit slice 2
SRC2 : PMSRC_SRC2_Field := NXP_SVD.PINT.Input0;
-- Selects the input source for bit slice 3
SRC3 : PMSRC_SRC3_Field := NXP_SVD.PINT.Input0;
-- Selects the input source for bit slice 4
SRC4 : PMSRC_SRC4_Field := NXP_SVD.PINT.Input0;
-- Selects the input source for bit slice 5
SRC5 : PMSRC_SRC5_Field := NXP_SVD.PINT.Input0;
-- Selects the input source for bit slice 6
SRC6 : PMSRC_SRC6_Field := NXP_SVD.PINT.Input0;
-- Selects the input source for bit slice 7
SRC7 : PMSRC_SRC7_Field := NXP_SVD.PINT.Input0;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PMSRC_Register use record
Reserved_0_7 at 0 range 0 .. 7;
SRC0 at 0 range 8 .. 10;
SRC1 at 0 range 11 .. 13;
SRC2 at 0 range 14 .. 16;
SRC3 at 0 range 17 .. 19;
SRC4 at 0 range 20 .. 22;
SRC5 at 0 range 23 .. 25;
SRC6 at 0 range 26 .. 28;
SRC7 at 0 range 29 .. 31;
end record;
-- Determines whether slice 0 is an endpoint.
type PMCFG_PROD_ENDPTS0_Field is
(
-- No effect. Slice 0 is not an endpoint.
No_Effect,
-- endpoint. Slice 0 is the endpoint of a product term (minterm). Pin
-- interrupt 0 in the NVIC is raised if the minterm evaluates as true.
Endpoint)
with Size => 1;
for PMCFG_PROD_ENDPTS0_Field use
(No_Effect => 0,
Endpoint => 1);
-- Determines whether slice 1 is an endpoint.
type PMCFG_PROD_ENDPTS1_Field is
(
-- No effect. Slice 1 is not an endpoint.
No_Effect,
-- endpoint. Slice 1 is the endpoint of a product term (minterm). Pin
-- interrupt 1 in the NVIC is raised if the minterm evaluates as true.
Endpoint)
with Size => 1;
for PMCFG_PROD_ENDPTS1_Field use
(No_Effect => 0,
Endpoint => 1);
-- Determines whether slice 2 is an endpoint.
type PMCFG_PROD_ENDPTS2_Field is
(
-- No effect. Slice 2 is not an endpoint.
No_Effect,
-- endpoint. Slice 2 is the endpoint of a product term (minterm). Pin
-- interrupt 2 in the NVIC is raised if the minterm evaluates as true.
Endpoint)
with Size => 1;
for PMCFG_PROD_ENDPTS2_Field use
(No_Effect => 0,
Endpoint => 1);
-- Determines whether slice 3 is an endpoint.
type PMCFG_PROD_ENDPTS3_Field is
(
-- No effect. Slice 3 is not an endpoint.
No_Effect,
-- endpoint. Slice 3 is the endpoint of a product term (minterm). Pin
-- interrupt 3 in the NVIC is raised if the minterm evaluates as true.
Endpoint)
with Size => 1;
for PMCFG_PROD_ENDPTS3_Field use
(No_Effect => 0,
Endpoint => 1);
-- Determines whether slice 4 is an endpoint.
type PMCFG_PROD_ENDPTS4_Field is
(
-- No effect. Slice 4 is not an endpoint.
No_Effect,
-- endpoint. Slice 4 is the endpoint of a product term (minterm). Pin
-- interrupt 4 in the NVIC is raised if the minterm evaluates as true.
Endpoint)
with Size => 1;
for PMCFG_PROD_ENDPTS4_Field use
(No_Effect => 0,
Endpoint => 1);
-- Determines whether slice 5 is an endpoint.
type PMCFG_PROD_ENDPTS5_Field is
(
-- No effect. Slice 5 is not an endpoint.
No_Effect,
-- endpoint. Slice 5 is the endpoint of a product term (minterm). Pin
-- interrupt 5 in the NVIC is raised if the minterm evaluates as true.
Endpoint)
with Size => 1;
for PMCFG_PROD_ENDPTS5_Field use
(No_Effect => 0,
Endpoint => 1);
-- Determines whether slice 6 is an endpoint.
type PMCFG_PROD_ENDPTS6_Field is
(
-- No effect. Slice 6 is not an endpoint.
No_Effect,
-- endpoint. Slice 6 is the endpoint of a product term (minterm). Pin
-- interrupt 6 in the NVIC is raised if the minterm evaluates as true.
Endpoint)
with Size => 1;
for PMCFG_PROD_ENDPTS6_Field use
(No_Effect => 0,
Endpoint => 1);
-- Specifies the match contribution condition for bit slice 0.
type PMCFG_CFG0_Field is
(
-- Constant HIGH. This bit slice always contributes to a product term
-- match.
Constant_High,
-- Sticky rising edge. Match occurs if a rising edge on the specified
-- input has occurred since the last time the edge detection for this
-- bit slice was cleared. This bit is only cleared when the PMCFG or the
-- PMSRC registers are written to.
Sticky_Rising_Edge,
-- Sticky falling edge. Match occurs if a falling edge on the specified
-- input has occurred since the last time the edge detection for this
-- bit slice was cleared. This bit is only cleared when the PMCFG or the
-- PMSRC registers are written to.
Sticky_Falling_Edge,
-- Sticky rising or falling edge. Match occurs if either a rising or
-- falling edge on the specified input has occurred since the last time
-- the edge detection for this bit slice was cleared. This bit is only
-- cleared when the PMCFG or the PMSRC registers are written to.
Sticky_Rising_Falling_Edge,
-- High level. Match (for this bit slice) occurs when there is a high
-- level on the input specified for this bit slice in the PMSRC
-- register.
High_Level,
-- Low level. Match occurs when there is a low level on the specified
-- input.
Low_Level,
-- Constant 0. This bit slice never contributes to a match (should be
-- used to disable any unused bit slices).
Constant_Zero,
-- Event. Non-sticky rising or falling edge. Match occurs on an event -
-- i.e. when either a rising or falling edge is first detected on the
-- specified input (this is a non-sticky version of value 0x3) . This
-- bit is cleared after one clock cycle.
Event)
with Size => 3;
for PMCFG_CFG0_Field use
(Constant_High => 0,
Sticky_Rising_Edge => 1,
Sticky_Falling_Edge => 2,
Sticky_Rising_Falling_Edge => 3,
High_Level => 4,
Low_Level => 5,
Constant_Zero => 6,
Event => 7);
-- PMCFG_CFG array
type PMCFG_CFG_Field_Array is array (0 .. 7) of PMCFG_CFG0_Field
with Component_Size => 3, Size => 24;
-- Type definition for PMCFG_CFG
type PMCFG_CFG_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CFG as a value
Val : HAL.UInt24;
when True =>
-- CFG as an array
Arr : PMCFG_CFG_Field_Array;
end case;
end record
with Unchecked_Union, Size => 24;
for PMCFG_CFG_Field use record
Val at 0 range 0 .. 23;
Arr at 0 range 0 .. 23;
end record;
-- Pattern match interrupt bit slice configuration register
type PMCFG_Register is record
-- Determines whether slice 0 is an endpoint.
PROD_ENDPTS0 : PMCFG_PROD_ENDPTS0_Field := NXP_SVD.PINT.No_Effect;
-- Determines whether slice 1 is an endpoint.
PROD_ENDPTS1 : PMCFG_PROD_ENDPTS1_Field := NXP_SVD.PINT.No_Effect;
-- Determines whether slice 2 is an endpoint.
PROD_ENDPTS2 : PMCFG_PROD_ENDPTS2_Field := NXP_SVD.PINT.No_Effect;
-- Determines whether slice 3 is an endpoint.
PROD_ENDPTS3 : PMCFG_PROD_ENDPTS3_Field := NXP_SVD.PINT.No_Effect;
-- Determines whether slice 4 is an endpoint.
PROD_ENDPTS4 : PMCFG_PROD_ENDPTS4_Field := NXP_SVD.PINT.No_Effect;
-- Determines whether slice 5 is an endpoint.
PROD_ENDPTS5 : PMCFG_PROD_ENDPTS5_Field := NXP_SVD.PINT.No_Effect;
-- Determines whether slice 6 is an endpoint.
PROD_ENDPTS6 : PMCFG_PROD_ENDPTS6_Field := NXP_SVD.PINT.No_Effect;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#0#;
-- Specifies the match contribution condition for bit slice 0.
CFG : PMCFG_CFG_Field := (As_Array => False, Val => 16#0#);
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PMCFG_Register use record
PROD_ENDPTS0 at 0 range 0 .. 0;
PROD_ENDPTS1 at 0 range 1 .. 1;
PROD_ENDPTS2 at 0 range 2 .. 2;
PROD_ENDPTS3 at 0 range 3 .. 3;
PROD_ENDPTS4 at 0 range 4 .. 4;
PROD_ENDPTS5 at 0 range 5 .. 5;
PROD_ENDPTS6 at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
CFG at 0 range 8 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Pin interrupt and pattern match (PINT)
type PINT_Peripheral is record
-- Pin Interrupt Mode register
ISEL : aliased ISEL_Register;
-- Pin interrupt level or rising edge interrupt enable register
IENR : aliased IENR_Register;
-- Pin interrupt level or rising edge interrupt set register
SIENR : aliased SIENR_Register;
-- Pin interrupt level (rising edge interrupt) clear register
CIENR : aliased CIENR_Register;
-- Pin interrupt active level or falling edge interrupt enable register
IENF : aliased IENF_Register;
-- Pin interrupt active level or falling edge interrupt set register
SIENF : aliased SIENF_Register;
-- Pin interrupt active level or falling edge interrupt clear register
CIENF : aliased CIENF_Register;
-- Pin interrupt rising edge register
RISE : aliased RISE_Register;
-- Pin interrupt falling edge register
FALL : aliased FALL_Register;
-- Pin interrupt status register
IST : aliased IST_Register;
-- Pattern match interrupt control register
PMCTRL : aliased PMCTRL_Register;
-- Pattern match interrupt bit-slice source register
PMSRC : aliased PMSRC_Register;
-- Pattern match interrupt bit slice configuration register
PMCFG : aliased PMCFG_Register;
end record
with Volatile;
for PINT_Peripheral use record
ISEL at 16#0# range 0 .. 31;
IENR at 16#4# range 0 .. 31;
SIENR at 16#8# range 0 .. 31;
CIENR at 16#C# range 0 .. 31;
IENF at 16#10# range 0 .. 31;
SIENF at 16#14# range 0 .. 31;
CIENF at 16#18# range 0 .. 31;
RISE at 16#1C# range 0 .. 31;
FALL at 16#20# range 0 .. 31;
IST at 16#24# range 0 .. 31;
PMCTRL at 16#28# range 0 .. 31;
PMSRC at 16#2C# range 0 .. 31;
PMCFG at 16#30# range 0 .. 31;
end record;
-- Pin interrupt and pattern match (PINT)
PINT_Periph : aliased PINT_Peripheral
with Import, Address => System'To_Address (16#40004000#);
-- Pin interrupt and pattern match (PINT)
SECPINT_Periph : aliased PINT_Peripheral
with Import, Address => System'To_Address (16#40005000#);
end NXP_SVD.PINT;
| 36.484607 | 79 | 0.626309 |
2fdc557c5ad9df9f14583e36dec9d15c27ccd7e8 | 24,084 | ads | Ada | software/hal/hpl/STM32/svd/stm32f427x/stm32_svd-fsmc.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 12 | 2017-06-08T14:19:57.000Z | 2022-03-09T02:48:59.000Z | software/hal/hpl/STM32/svd/stm32f427x/stm32_svd-fsmc.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 6 | 2017-06-08T13:13:50.000Z | 2020-05-15T09:32:43.000Z | software/hal/hpl/STM32/svd/stm32f427x/stm32_svd-fsmc.ads | TUM-EI-RCS/StratoX | 5fdd04e01a25efef6052376f43ce85b5bc973392 | [
"BSD-3-Clause"
] | 3 | 2017-06-30T14:05:06.000Z | 2022-02-17T12:20:45.000Z | -- This spec has been automatically generated from STM32F427x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
with System;
with HAL;
package STM32_SVD.FSMC is
pragma Preelaborate;
---------------
-- Registers --
---------------
-------------------
-- BCR1_Register --
-------------------
subtype BCR1_MTYP_Field is HAL.UInt2;
subtype BCR1_MWID_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select control register 1
type BCR1_Register is record
-- MBKEN
MBKEN : Boolean := False;
-- MUXEN
MUXEN : Boolean := False;
-- MTYP
MTYP : BCR1_MTYP_Field := 16#0#;
-- MWID
MWID : BCR1_MWID_Field := 16#1#;
-- FACCEN
FACCEN : Boolean := True;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#1#;
-- BURSTEN
BURSTEN : Boolean := False;
-- WAITPOL
WAITPOL : Boolean := False;
-- unspecified
Reserved_10_10 : HAL.Bit := 16#0#;
-- WAITCFG
WAITCFG : Boolean := False;
-- WREN
WREN : Boolean := True;
-- WAITEN
WAITEN : Boolean := True;
-- EXTMOD
EXTMOD : Boolean := False;
-- ASYNCWAIT
ASYNCWAIT : Boolean := False;
-- unspecified
Reserved_16_18 : HAL.UInt3 := 16#0#;
-- CBURSTRW
CBURSTRW : Boolean := False;
-- CCLKEN
CCLKEN : Boolean := False;
-- unspecified
Reserved_21_31 : HAL.UInt11 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BCR1_Register use record
MBKEN at 0 range 0 .. 0;
MUXEN at 0 range 1 .. 1;
MTYP at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
FACCEN at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
BURSTEN at 0 range 8 .. 8;
WAITPOL at 0 range 9 .. 9;
Reserved_10_10 at 0 range 10 .. 10;
WAITCFG at 0 range 11 .. 11;
WREN at 0 range 12 .. 12;
WAITEN at 0 range 13 .. 13;
EXTMOD at 0 range 14 .. 14;
ASYNCWAIT at 0 range 15 .. 15;
Reserved_16_18 at 0 range 16 .. 18;
CBURSTRW at 0 range 19 .. 19;
CCLKEN at 0 range 20 .. 20;
Reserved_21_31 at 0 range 21 .. 31;
end record;
------------------
-- BTR_Register --
------------------
subtype BTR1_ADDSET_Field is HAL.UInt4;
subtype BTR1_ADDHLD_Field is HAL.UInt4;
subtype BTR1_DATAST_Field is HAL.Byte;
subtype BTR1_BUSTURN_Field is HAL.UInt4;
subtype BTR1_CLKDIV_Field is HAL.UInt4;
subtype BTR1_DATLAT_Field is HAL.UInt4;
subtype BTR1_ACCMOD_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select timing register 1
type BTR_Register is record
-- ADDSET
ADDSET : BTR1_ADDSET_Field := 16#F#;
-- ADDHLD
ADDHLD : BTR1_ADDHLD_Field := 16#F#;
-- DATAST
DATAST : BTR1_DATAST_Field := 16#FF#;
-- BUSTURN
BUSTURN : BTR1_BUSTURN_Field := 16#F#;
-- CLKDIV
CLKDIV : BTR1_CLKDIV_Field := 16#F#;
-- DATLAT
DATLAT : BTR1_DATLAT_Field := 16#F#;
-- ACCMOD
ACCMOD : BTR1_ACCMOD_Field := 16#3#;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#3#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BTR_Register use record
ADDSET at 0 range 0 .. 3;
ADDHLD at 0 range 4 .. 7;
DATAST at 0 range 8 .. 15;
BUSTURN at 0 range 16 .. 19;
CLKDIV at 0 range 20 .. 23;
DATLAT at 0 range 24 .. 27;
ACCMOD at 0 range 28 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
------------------
-- BCR_Register --
------------------
subtype BCR2_MTYP_Field is HAL.UInt2;
subtype BCR2_MWID_Field is HAL.UInt2;
-- SRAM/NOR-Flash chip-select control register 2
type BCR_Register is record
-- MBKEN
MBKEN : Boolean := False;
-- MUXEN
MUXEN : Boolean := False;
-- MTYP
MTYP : BCR2_MTYP_Field := 16#0#;
-- MWID
MWID : BCR2_MWID_Field := 16#1#;
-- FACCEN
FACCEN : Boolean := True;
-- unspecified
Reserved_7_7 : HAL.Bit := 16#1#;
-- BURSTEN
BURSTEN : Boolean := False;
-- WAITPOL
WAITPOL : Boolean := False;
-- WRAPMOD
WRAPMOD : Boolean := False;
-- WAITCFG
WAITCFG : Boolean := False;
-- WREN
WREN : Boolean := True;
-- WAITEN
WAITEN : Boolean := True;
-- EXTMOD
EXTMOD : Boolean := False;
-- ASYNCWAIT
ASYNCWAIT : Boolean := False;
-- unspecified
Reserved_16_18 : HAL.UInt3 := 16#0#;
-- CBURSTRW
CBURSTRW : Boolean := False;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BCR_Register use record
MBKEN at 0 range 0 .. 0;
MUXEN at 0 range 1 .. 1;
MTYP at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
FACCEN at 0 range 6 .. 6;
Reserved_7_7 at 0 range 7 .. 7;
BURSTEN at 0 range 8 .. 8;
WAITPOL at 0 range 9 .. 9;
WRAPMOD at 0 range 10 .. 10;
WAITCFG at 0 range 11 .. 11;
WREN at 0 range 12 .. 12;
WAITEN at 0 range 13 .. 13;
EXTMOD at 0 range 14 .. 14;
ASYNCWAIT at 0 range 15 .. 15;
Reserved_16_18 at 0 range 16 .. 18;
CBURSTRW at 0 range 19 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
------------------
-- PCR_Register --
------------------
subtype PCR2_PWID_Field is HAL.UInt2;
subtype PCR2_TCLR_Field is HAL.UInt4;
subtype PCR2_TAR_Field is HAL.UInt4;
subtype PCR2_ECCPS_Field is HAL.UInt3;
-- PC Card/NAND Flash control register 2
type PCR_Register is record
-- unspecified
Reserved_0_0 : HAL.Bit := 16#0#;
-- PWAITEN
PWAITEN : Boolean := False;
-- PBKEN
PBKEN : Boolean := False;
-- PTYP
PTYP : Boolean := True;
-- PWID
PWID : PCR2_PWID_Field := 16#1#;
-- ECCEN
ECCEN : Boolean := False;
-- unspecified
Reserved_7_8 : HAL.UInt2 := 16#0#;
-- TCLR
TCLR : PCR2_TCLR_Field := 16#0#;
-- TAR
TAR : PCR2_TAR_Field := 16#0#;
-- ECCPS
ECCPS : PCR2_ECCPS_Field := 16#0#;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PCR_Register use record
Reserved_0_0 at 0 range 0 .. 0;
PWAITEN at 0 range 1 .. 1;
PBKEN at 0 range 2 .. 2;
PTYP at 0 range 3 .. 3;
PWID at 0 range 4 .. 5;
ECCEN at 0 range 6 .. 6;
Reserved_7_8 at 0 range 7 .. 8;
TCLR at 0 range 9 .. 12;
TAR at 0 range 13 .. 16;
ECCPS at 0 range 17 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-----------------
-- SR_Register --
-----------------
-- FIFO status and interrupt register 2
type SR_Register is record
-- IRS
IRS : Boolean := False;
-- ILS
ILS : Boolean := False;
-- IFS
IFS : Boolean := False;
-- IREN
IREN : Boolean := False;
-- ILEN
ILEN : Boolean := False;
-- IFEN
IFEN : Boolean := False;
-- Read-only. FEMPT
FEMPT : Boolean := True;
-- unspecified
Reserved_7_31 : HAL.UInt25 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SR_Register use record
IRS at 0 range 0 .. 0;
ILS at 0 range 1 .. 1;
IFS at 0 range 2 .. 2;
IREN at 0 range 3 .. 3;
ILEN at 0 range 4 .. 4;
IFEN at 0 range 5 .. 5;
FEMPT at 0 range 6 .. 6;
Reserved_7_31 at 0 range 7 .. 31;
end record;
-------------------
-- PMEM_Register --
-------------------
subtype PMEM2_MEMSETx_Field is HAL.Byte;
subtype PMEM2_MEMWAITx_Field is HAL.Byte;
subtype PMEM2_MEMHOLDx_Field is HAL.Byte;
subtype PMEM2_MEMHIZx_Field is HAL.Byte;
-- Common memory space timing register 2
type PMEM_Register is record
-- MEMSETx
MEMSETx : PMEM2_MEMSETx_Field := 16#FC#;
-- MEMWAITx
MEMWAITx : PMEM2_MEMWAITx_Field := 16#FC#;
-- MEMHOLDx
MEMHOLDx : PMEM2_MEMHOLDx_Field := 16#FC#;
-- MEMHIZx
MEMHIZx : PMEM2_MEMHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PMEM_Register use record
MEMSETx at 0 range 0 .. 7;
MEMWAITx at 0 range 8 .. 15;
MEMHOLDx at 0 range 16 .. 23;
MEMHIZx at 0 range 24 .. 31;
end record;
-------------------
-- PATT_Register --
-------------------
subtype PATT2_ATTSETx_Field is HAL.Byte;
subtype PATT2_ATTWAITx_Field is HAL.Byte;
subtype PATT2_ATTHOLDx_Field is HAL.Byte;
subtype PATT2_ATTHIZx_Field is HAL.Byte;
-- Attribute memory space timing register 2
type PATT_Register is record
-- ATTSETx
ATTSETx : PATT2_ATTSETx_Field := 16#FC#;
-- ATTWAITx
ATTWAITx : PATT2_ATTWAITx_Field := 16#FC#;
-- ATTHOLDx
ATTHOLDx : PATT2_ATTHOLDx_Field := 16#FC#;
-- ATTHIZx
ATTHIZx : PATT2_ATTHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PATT_Register use record
ATTSETx at 0 range 0 .. 7;
ATTWAITx at 0 range 8 .. 15;
ATTHOLDx at 0 range 16 .. 23;
ATTHIZx at 0 range 24 .. 31;
end record;
-------------------
-- PIO4_Register --
-------------------
subtype PIO4_IOSETx_Field is HAL.Byte;
subtype PIO4_IOWAITx_Field is HAL.Byte;
subtype PIO4_IOHOLDx_Field is HAL.Byte;
subtype PIO4_IOHIZx_Field is HAL.Byte;
-- I/O space timing register 4
type PIO4_Register is record
-- IOSETx
IOSETx : PIO4_IOSETx_Field := 16#FC#;
-- IOWAITx
IOWAITx : PIO4_IOWAITx_Field := 16#FC#;
-- IOHOLDx
IOHOLDx : PIO4_IOHOLDx_Field := 16#FC#;
-- IOHIZx
IOHIZx : PIO4_IOHIZx_Field := 16#FC#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for PIO4_Register use record
IOSETx at 0 range 0 .. 7;
IOWAITx at 0 range 8 .. 15;
IOHOLDx at 0 range 16 .. 23;
IOHIZx at 0 range 24 .. 31;
end record;
-------------------
-- BWTR_Register --
-------------------
subtype BWTR1_ADDSET_Field is HAL.UInt4;
subtype BWTR1_ADDHLD_Field is HAL.UInt4;
subtype BWTR1_DATAST_Field is HAL.Byte;
subtype BWTR1_CLKDIV_Field is HAL.UInt4;
subtype BWTR1_DATLAT_Field is HAL.UInt4;
subtype BWTR1_ACCMOD_Field is HAL.UInt2;
-- SRAM/NOR-Flash write timing registers 1
type BWTR_Register is record
-- ADDSET
ADDSET : BWTR1_ADDSET_Field := 16#F#;
-- ADDHLD
ADDHLD : BWTR1_ADDHLD_Field := 16#F#;
-- DATAST
DATAST : BWTR1_DATAST_Field := 16#FF#;
-- unspecified
Reserved_16_19 : HAL.UInt4 := 16#F#;
-- CLKDIV
CLKDIV : BWTR1_CLKDIV_Field := 16#F#;
-- DATLAT
DATLAT : BWTR1_DATLAT_Field := 16#F#;
-- ACCMOD
ACCMOD : BWTR1_ACCMOD_Field := 16#0#;
-- unspecified
Reserved_30_31 : HAL.UInt2 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for BWTR_Register use record
ADDSET at 0 range 0 .. 3;
ADDHLD at 0 range 4 .. 7;
DATAST at 0 range 8 .. 15;
Reserved_16_19 at 0 range 16 .. 19;
CLKDIV at 0 range 20 .. 23;
DATLAT at 0 range 24 .. 27;
ACCMOD at 0 range 28 .. 29;
Reserved_30_31 at 0 range 30 .. 31;
end record;
-------------------
-- SDCR_Register --
-------------------
subtype SDCR1_NC_Field is HAL.UInt2;
subtype SDCR1_NR_Field is HAL.UInt2;
subtype SDCR1_MWID_Field is HAL.UInt2;
subtype SDCR1_CAS_Field is HAL.UInt2;
subtype SDCR1_SDCLK_Field is HAL.UInt2;
subtype SDCR1_RPIPE_Field is HAL.UInt2;
-- SDRAM Control Register 1
type SDCR_Register is record
-- Number of column address bits
NC : SDCR1_NC_Field := 16#0#;
-- Number of row address bits
NR : SDCR1_NR_Field := 16#0#;
-- Memory data bus width
MWID : SDCR1_MWID_Field := 16#1#;
-- Number of internal banks
NB : Boolean := True;
-- CAS latency
CAS : SDCR1_CAS_Field := 16#1#;
-- Write protection
WP : Boolean := True;
-- SDRAM clock configuration
SDCLK : SDCR1_SDCLK_Field := 16#0#;
-- Burst read
RBURST : Boolean := False;
-- Read pipe
RPIPE : SDCR1_RPIPE_Field := 16#0#;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDCR_Register use record
NC at 0 range 0 .. 1;
NR at 0 range 2 .. 3;
MWID at 0 range 4 .. 5;
NB at 0 range 6 .. 6;
CAS at 0 range 7 .. 8;
WP at 0 range 9 .. 9;
SDCLK at 0 range 10 .. 11;
RBURST at 0 range 12 .. 12;
RPIPE at 0 range 13 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-------------------
-- SDTR_Register --
-------------------
subtype SDTR1_TMRD_Field is HAL.UInt4;
subtype SDTR1_TXSR_Field is HAL.UInt4;
subtype SDTR1_TRAS_Field is HAL.UInt4;
subtype SDTR1_TRC_Field is HAL.UInt4;
subtype SDTR1_TWR_Field is HAL.UInt4;
subtype SDTR1_TRP_Field is HAL.UInt4;
subtype SDTR1_TRCD_Field is HAL.UInt4;
-- SDRAM Timing register 1
type SDTR_Register is record
-- Load Mode Register to Active
TMRD : SDTR1_TMRD_Field := 16#F#;
-- Exit self-refresh delay
TXSR : SDTR1_TXSR_Field := 16#F#;
-- Self refresh time
TRAS : SDTR1_TRAS_Field := 16#F#;
-- Row cycle delay
TRC : SDTR1_TRC_Field := 16#F#;
-- Recovery delay
TWR : SDTR1_TWR_Field := 16#F#;
-- Row precharge delay
TRP : SDTR1_TRP_Field := 16#F#;
-- Row to column delay
TRCD : SDTR1_TRCD_Field := 16#F#;
-- unspecified
Reserved_28_31 : HAL.UInt4 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDTR_Register use record
TMRD at 0 range 0 .. 3;
TXSR at 0 range 4 .. 7;
TRAS at 0 range 8 .. 11;
TRC at 0 range 12 .. 15;
TWR at 0 range 16 .. 19;
TRP at 0 range 20 .. 23;
TRCD at 0 range 24 .. 27;
Reserved_28_31 at 0 range 28 .. 31;
end record;
--------------------
-- SDCMR_Register --
--------------------
subtype SDCMR_MODE_Field is HAL.UInt3;
---------------
-- SDCMR.CTB --
---------------
-- SDCMR_CTB array
type SDCMR_CTB_Field_Array is array (1 .. 2) of Boolean
with Component_Size => 1, Size => 2;
-- Type definition for SDCMR_CTB
type SDCMR_CTB_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- CTB as a value
Val : HAL.UInt2;
when True =>
-- CTB as an array
Arr : SDCMR_CTB_Field_Array;
end case;
end record
with Unchecked_Union, Size => 2;
for SDCMR_CTB_Field use record
Val at 0 range 0 .. 1;
Arr at 0 range 0 .. 1;
end record;
subtype SDCMR_NRFS_Field is HAL.UInt4;
subtype SDCMR_MRD_Field is HAL.UInt13;
-- SDRAM Command Mode register
type SDCMR_Register is record
-- Write-only. Command mode
MODE : SDCMR_MODE_Field := 16#0#;
-- Write-only. Command target bank 2
CTB : SDCMR_CTB_Field := (As_Array => False, Val => 16#0#);
-- Number of Auto-refresh
NRFS : SDCMR_NRFS_Field := 16#0#;
-- Mode Register definition
MRD : SDCMR_MRD_Field := 16#0#;
-- unspecified
Reserved_22_31 : HAL.UInt10 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDCMR_Register use record
MODE at 0 range 0 .. 2;
CTB at 0 range 3 .. 4;
NRFS at 0 range 5 .. 8;
MRD at 0 range 9 .. 21;
Reserved_22_31 at 0 range 22 .. 31;
end record;
--------------------
-- SDRTR_Register --
--------------------
subtype SDRTR_COUNT_Field is HAL.UInt13;
-- SDRAM Refresh Timer register
type SDRTR_Register is record
-- Write-only. Clear Refresh error flag
CRE : Boolean := False;
-- Refresh Timer Count
COUNT : SDRTR_COUNT_Field := 16#0#;
-- RES Interrupt Enable
REIE : Boolean := False;
-- unspecified
Reserved_15_31 : HAL.UInt17 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDRTR_Register use record
CRE at 0 range 0 .. 0;
COUNT at 0 range 1 .. 13;
REIE at 0 range 14 .. 14;
Reserved_15_31 at 0 range 15 .. 31;
end record;
-------------------
-- SDSR_Register --
-------------------
----------------
-- SDSR.MODES --
----------------
-- SDSR_MODES array element
subtype SDSR_MODES_Element is HAL.UInt2;
-- SDSR_MODES array
type SDSR_MODES_Field_Array is array (1 .. 2) of SDSR_MODES_Element
with Component_Size => 2, Size => 4;
-- Type definition for SDSR_MODES
type SDSR_MODES_Field
(As_Array : Boolean := False)
is record
case As_Array is
when False =>
-- MODES as a value
Val : HAL.UInt4;
when True =>
-- MODES as an array
Arr : SDSR_MODES_Field_Array;
end case;
end record
with Unchecked_Union, Size => 4;
for SDSR_MODES_Field use record
Val at 0 range 0 .. 3;
Arr at 0 range 0 .. 3;
end record;
-- SDRAM Status register
type SDSR_Register is record
-- Read-only. Refresh error flag
RE : Boolean;
-- Read-only. Status Mode for Bank 1
MODES : SDSR_MODES_Field;
-- Read-only. Busy status
BUSY : Boolean;
-- unspecified
Reserved_6_31 : HAL.UInt26;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for SDSR_Register use record
RE at 0 range 0 .. 0;
MODES at 0 range 1 .. 4;
BUSY at 0 range 5 .. 5;
Reserved_6_31 at 0 range 6 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Flexible memory controller
type FMC_Peripheral is record
-- SRAM/NOR-Flash chip-select control register 1
BCR1 : BCR1_Register;
-- SRAM/NOR-Flash chip-select timing register 1
BTR1 : BTR_Register;
-- SRAM/NOR-Flash chip-select control register 2
BCR2 : BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 2
BTR2 : BTR_Register;
-- SRAM/NOR-Flash chip-select control register 3
BCR3 : BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 3
BTR3 : BTR_Register;
-- SRAM/NOR-Flash chip-select control register 4
BCR4 : BCR_Register;
-- SRAM/NOR-Flash chip-select timing register 4
BTR4 : BTR_Register;
-- PC Card/NAND Flash control register 2
PCR2 : PCR_Register;
-- FIFO status and interrupt register 2
SR2 : SR_Register;
-- Common memory space timing register 2
PMEM2 : PMEM_Register;
-- Attribute memory space timing register 2
PATT2 : PATT_Register;
-- ECC result register 2
ECCR2 : HAL.Word;
-- PC Card/NAND Flash control register 3
PCR3 : PCR_Register;
-- FIFO status and interrupt register 3
SR3 : SR_Register;
-- Common memory space timing register 3
PMEM3 : PMEM_Register;
-- Attribute memory space timing register 3
PATT3 : PATT_Register;
-- ECC result register 3
ECCR3 : HAL.Word;
-- PC Card/NAND Flash control register 4
PCR4 : PCR_Register;
-- FIFO status and interrupt register 4
SR4 : SR_Register;
-- Common memory space timing register 4
PMEM4 : PMEM_Register;
-- Attribute memory space timing register 4
PATT4 : PATT_Register;
-- I/O space timing register 4
PIO4 : PIO4_Register;
-- SRAM/NOR-Flash write timing registers 1
BWTR1 : BWTR_Register;
-- SRAM/NOR-Flash write timing registers 2
BWTR2 : BWTR_Register;
-- SRAM/NOR-Flash write timing registers 3
BWTR3 : BWTR_Register;
-- SRAM/NOR-Flash write timing registers 4
BWTR4 : BWTR_Register;
-- SDRAM Control Register 1
SDCR1 : SDCR_Register;
-- SDRAM Control Register 2
SDCR2 : SDCR_Register;
-- SDRAM Timing register 1
SDTR1 : SDTR_Register;
-- SDRAM Timing register 2
SDTR2 : SDTR_Register;
-- SDRAM Command Mode register
SDCMR : SDCMR_Register;
-- SDRAM Refresh Timer register
SDRTR : SDRTR_Register;
-- SDRAM Status register
SDSR : SDSR_Register;
end record
with Volatile;
for FMC_Peripheral use record
BCR1 at 0 range 0 .. 31;
BTR1 at 4 range 0 .. 31;
BCR2 at 8 range 0 .. 31;
BTR2 at 12 range 0 .. 31;
BCR3 at 16 range 0 .. 31;
BTR3 at 20 range 0 .. 31;
BCR4 at 24 range 0 .. 31;
BTR4 at 28 range 0 .. 31;
PCR2 at 96 range 0 .. 31;
SR2 at 100 range 0 .. 31;
PMEM2 at 104 range 0 .. 31;
PATT2 at 108 range 0 .. 31;
ECCR2 at 116 range 0 .. 31;
PCR3 at 128 range 0 .. 31;
SR3 at 132 range 0 .. 31;
PMEM3 at 136 range 0 .. 31;
PATT3 at 140 range 0 .. 31;
ECCR3 at 148 range 0 .. 31;
PCR4 at 160 range 0 .. 31;
SR4 at 164 range 0 .. 31;
PMEM4 at 168 range 0 .. 31;
PATT4 at 172 range 0 .. 31;
PIO4 at 176 range 0 .. 31;
BWTR1 at 260 range 0 .. 31;
BWTR2 at 268 range 0 .. 31;
BWTR3 at 276 range 0 .. 31;
BWTR4 at 284 range 0 .. 31;
SDCR1 at 320 range 0 .. 31;
SDCR2 at 324 range 0 .. 31;
SDTR1 at 328 range 0 .. 31;
SDTR2 at 332 range 0 .. 31;
SDCMR at 336 range 0 .. 31;
SDRTR at 340 range 0 .. 31;
SDSR at 344 range 0 .. 31;
end record;
-- Flexible memory controller
FMC_Periph : aliased FMC_Peripheral
with Import, Address => FMC_Base;
end STM32_SVD.FSMC;
| 30.956298 | 76 | 0.538698 |
1211ed2b7ca3c6217944b836c25b875c85449ab3 | 101 | ads | Ada | src/version.ads | GLADORG/glad-cli | d6a804ea51b52d84bf590f061e05f404787a79f2 | [
"MIT"
] | null | null | null | src/version.ads | GLADORG/glad-cli | d6a804ea51b52d84bf590f061e05f404787a79f2 | [
"MIT"
] | 3 | 2021-09-03T16:44:49.000Z | 2021-09-03T16:45:24.000Z | src/version.ads | GLADORG/glad-cli | d6a804ea51b52d84bf590f061e05f404787a79f2 | [
"MIT"
] | null | null | null | package Version with Preelaborate is
Current : constant String := "0.0.1";
private
end Version; | 14.428571 | 40 | 0.722772 |
12be4cb64f60626acc66822598713cb85caf1861 | 4,324 | ads | Ada | orka/src/gl/interface/gl-toggles.ads | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 52 | 2016-07-30T23:00:28.000Z | 2022-02-05T11:54:55.000Z | orka/src/gl/interface/gl-toggles.ads | onox/orka | 9edf99559a16ffa96dfdb208322f4d18efbcbac6 | [
"Apache-2.0"
] | 79 | 2016-08-01T18:36:48.000Z | 2022-02-27T12:14:20.000Z | orka/src/gl/interface/gl-toggles.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) 2012 Felix Krause <[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.
private with GL.Low_Level;
with GL.Types;
package GL.Toggles is
pragma Preelaborate;
type Toggle_State is (Disabled, Enabled);
type Toggle is (Cull_Face, Depth_Test,
Stencil_Test, Dither, Blend, Color_Logic_Op, Scissor_Test,
Polygon_Offset_Point, Polygon_Offset_Line,
Clip_Distance_0, Clip_Distance_1, Clip_Distance_2, Clip_Distance_3,
Clip_Distance_4, Clip_Distance_5, Clip_Distance_6, Clip_Distance_7,
Polygon_Offset_Fill, Multisample,
Sample_Alpha_To_Coverage, Sample_Alpha_To_One, Sample_Coverage,
Debug_Output_Synchronous,
Program_Point_Size, Depth_Clamp,
Texture_Cube_Map_Seamless, Sample_Shading,
Rasterizer_Discard, Primitive_Restart_Fixed_Index,
Framebuffer_SRGB, Sample_Mask, Primitive_Restart,
Debug_Output);
procedure Enable (Subject : Toggle);
procedure Disable (Subject : Toggle);
procedure Set (Subject : Toggle; Value : Toggle_State);
function State (Subject : Toggle) return Toggle_State;
type Toggle_Indexed is (Blend, Scissor_Test);
procedure Enable (Subject : Toggle_Indexed; Index : Types.UInt);
procedure Disable (Subject : Toggle_Indexed; Index : Types.UInt);
procedure Set (Subject : Toggle_Indexed; Index : Types.UInt; Value : Toggle_State);
function State (Subject : Toggle_Indexed; Index : Types.UInt) return Toggle_State;
private
for Toggle use (Cull_Face => 16#0B44#,
Depth_Test => 16#0B71#,
Stencil_Test => 16#0B90#,
Dither => 16#0BD0#,
Blend => 16#0BE2#,
Color_Logic_Op => 16#0BF2#,
Scissor_Test => 16#0C11#,
Polygon_Offset_Point => 16#2A01#,
Polygon_Offset_Line => 16#2A02#,
Clip_Distance_0 => 16#3000#,
Clip_Distance_1 => 16#3001#,
Clip_Distance_2 => 16#3002#,
Clip_Distance_3 => 16#3003#,
Clip_Distance_4 => 16#3004#,
Clip_Distance_5 => 16#3005#,
Clip_Distance_6 => 16#3006#,
Clip_Distance_7 => 16#3007#,
Polygon_Offset_Fill => 16#8037#,
Multisample => 16#809D#,
Sample_Alpha_To_Coverage => 16#809E#,
Sample_Alpha_To_One => 16#809F#,
Sample_Coverage => 16#80A0#,
Debug_Output_Synchronous => 16#8242#,
Program_Point_Size => 16#8642#,
Depth_Clamp => 16#864F#,
Texture_Cube_Map_Seamless => 16#884F#,
Sample_Shading => 16#8C36#,
Rasterizer_Discard => 16#8C89#,
Primitive_Restart_Fixed_Index => 16#8D69#,
Framebuffer_SRGB => 16#8DB9#,
Sample_Mask => 16#8E51#,
Primitive_Restart => 16#8F9D#,
Debug_Output => 16#92E0#);
for Toggle'Size use Low_Level.Enum'Size;
for Toggle_Indexed use
(Blend => 16#0BE2#,
Scissor_Test => 16#0C11#);
for Toggle_Indexed'Size use Low_Level.Enum'Size;
end GL.Toggles;
| 45.041667 | 86 | 0.550648 |
1ddb6187a57f685459f0f0cd9808829b9e1f6e51 | 8,282 | ads | Ada | src/arch/socs/stm32f429/soc-dwt.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | 65 | 2018-09-26T09:10:11.000Z | 2022-01-30T21:17:37.000Z | src/arch/socs/stm32f429/soc-dwt.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | 22 | 2019-04-07T15:15:54.000Z | 2020-10-15T12:45:54.000Z | src/arch/socs/stm32f429/soc-dwt.ads | PThierry/ewok-kernel | e9c23cb3fd0afd8378bc27418778e1117d5e16cc | [
"Apache-2.0"
] | 10 | 2018-09-27T09:43:08.000Z | 2021-01-29T22:50:17.000Z | --
-- Copyright 2018 The wookey project team <[email protected]>
-- - Ryad Benadjila
-- - Arnauld Michelizza
-- - Mathieu Renard
-- - Philippe Thierry
-- - Philippe Trebuchet
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--
with system;
package soc.dwt
with spark_mode => on
is
pragma assertion_policy (pre => IGNORE, post => IGNORE, assert => IGNORE);
-----------------------------------------------------
-- SPARK ghost functions and procedures
-----------------------------------------------------
function init_is_done return boolean;
function check_32bits_overflow return boolean
with ghost;
--------------------------------------------------
-- The Data Watchpoint and Trace unit (DWT) --
-- (Cf. ARMv7-M Arch. Ref. Manual, C1.8, p.779) --
--------------------------------------------------
-- Reset the DWT-based timer
procedure reset_timer
with
pre => not init_is_done;
-- Start the DWT timer. The register is counting the number of CPU cycles
procedure start_timer
with
pre => not init_is_done;
-- Stop the DWT timer
procedure stop_timer
with
pre => init_is_done;
-- Periodically check the DWT CYCCNT register for overflow. This permit
-- to detect each time an overflow happends and increment the
-- overflow counter to keep a valid 64 bit time value
-- precondition check that the package has been initialized and that
-- dwt_loop doesn't overflow
procedure ovf_manage
with
--pre => check_32bits_overflow,
inline_always;
-- Initialize the DWT module
procedure init
with
pre => not init_is_done;
-- Get the DWT timer (without overflow support, keep a 32bit value)
procedure get_cycles_32(cycles : out unsigned_32)
with
inline,
pre => init_is_done;
-- Get the DWT timer with overflow support. permits linear measurement
-- on 64 bits cycles time window (approx. 1270857 days)
procedure get_cycles (cycles : out unsigned_64)
with
pre => init_is_done;
procedure get_microseconds (micros : out unsigned_64)
with
inline,
pre => init_is_done;
procedure get_milliseconds (milli : out unsigned_64)
with
inline,
pre => init_is_done;
private
--
-- Control register
--
type t_DWT_CTRL is record
CYCCNTENA : boolean; -- Enables CYCCNT
POSTPRESET : bits_4;
POSTINIT : bits_4;
CYCTAP : bit;
SYNCTAP : bits_2;
PCSAMPLENA : bit;
reserved_13_15 : bits_3;
EXCTRCENA : bit;
CPIEVTENA : bit;
EXCEVTENA : bit;
SLEEPEVTENA : bit;
LSUEVTENA : bit;
FOLDEVTENA : bit;
CYCEVTENA : bit;
reserved_23 : bit;
NOPRFCNT : bit;
NOCYCCNT : bit;
NOEXTTRIG : bit;
NOTRCPKT : bit;
NUMCOMP : bits_4;
end record
with size => 32;
for t_DWT_CTRL use record
CYCCNTENA at 0 range 0 .. 0;
POSTPRESET at 0 range 1 .. 4;
POSTINIT at 0 range 5 .. 8;
CYCTAP at 0 range 9 .. 9;
SYNCTAP at 0 range 10 .. 11;
PCSAMPLENA at 0 range 12 .. 12;
reserved_13_15 at 0 range 13 .. 15;
EXCTRCENA at 0 range 16 .. 16;
CPIEVTENA at 0 range 17 .. 17;
EXCEVTENA at 0 range 18 .. 18;
SLEEPEVTENA at 0 range 19 .. 19;
LSUEVTENA at 0 range 20 .. 20;
FOLDEVTENA at 0 range 21 .. 21;
CYCEVTENA at 0 range 22 .. 22;
reserved_23 at 0 range 23 .. 23;
NOPRFCNT at 0 range 24 .. 24;
NOCYCCNT at 0 range 25 .. 25;
NOEXTTRIG at 0 range 26 .. 26;
NOTRCPKT at 0 range 27 .. 27;
NUMCOMP at 0 range 28 .. 31;
end record;
DWT_CONTROL : t_DWT_CTRL
with
import,
volatile,
address => system'to_address (16#E000_1000#);
--
-- CYCCNT register
--
subtype t_DWT_CYCCNT is unsigned_32;
DWT_CYCCNT : t_DWT_CYCCNT
with
import,
volatile,
address => system'to_address (16#E000_1004#);
-- Specify the package state. Set to true by init().
init_done : boolean := false;
--
-- DWT CYCCNT register overflow counting
-- This permit to support incremental getcycle
-- with a time window of 64bits length (instead of 32bits)
--
dwt_loops : unsigned_64;
--
-- Last measured DWT CYCCNT. Compared with current measurement,
-- we can detect if the register has generated an overflow or not
--
last_dwt : unsigned_32;
--------------------------------------------------
-- CoreSight Software Lock registers --
-- Ref.: --
-- - ARMv7-M Arch. Ref. Manual, D1.1, p.826) --
-- - CoreSight Arch. Spec. B2.5.9, p.48 --
--------------------------------------------------
--
-- Lock Access Register (LAR)
--
LAR : unsigned_32
with
import,
volatile,
address => system'to_address (16#E000_1FB0#);
LAR_ENABLE_WRITE_KEY : constant := 16#C5AC_CE55#;
---------------------------------------------------------
-- Debug Exception and Monitor Control Register, DEMCR --
-- (Cf. ARMv7-M Arch. Ref. Manual, C1.6.5, p.765) --
---------------------------------------------------------
type t_DEMCR is record
VC_CORERESET : boolean; -- Reset Vector Catch enabled
reserved_1_3 : bits_3;
VC_MMERR : boolean; -- Debug trap on a MemManage exception
VC_NOCPERR : boolean;
-- Debug trap on a UsageFault exception caused by an access to a
-- Coprocessor
VC_CHKERR : boolean;
-- Debug trap on a UsageFault exception caused by a checking error
VC_STATERR : boolean;
-- Debug trap on a UsageFault exception caused by a state information
-- error
VC_BUSERR : boolean; -- Debug trap on a BusFault exception
VC_INTERR : boolean;
-- Debug trap on a fault occurring during exception entry or exception
-- return
VC_HARDERR : boolean; -- Debug trap on a HardFault exception
reserved_11_15 : bits_5;
MON_EN : boolean; -- DebugMonitor exception enabled
MON_PEND : boolean; -- Sets or clears the pending state of the
-- DebugMonitor exception
MON_STEP : boolean; -- Step the processor
MON_REQ : boolean; -- DebugMonitor semaphore bit
reserved_20_23 : bits_4;
TRCENA : boolean; -- DWT and ITM units enabled
end record
with size => 32;
for t_DEMCR use record
VC_CORERESET at 0 range 0 .. 0;
reserved_1_3 at 0 range 1 .. 3;
VC_MMERR at 0 range 4 .. 4;
VC_NOCPERR at 0 range 5 .. 5;
VC_CHKERR at 0 range 6 .. 6;
VC_STATERR at 0 range 7 .. 7;
VC_BUSERR at 0 range 8 .. 8;
VC_INTERR at 0 range 9 .. 9;
VC_HARDERR at 0 range 10 .. 10;
reserved_11_15 at 0 range 11 .. 15;
MON_EN at 0 range 16 .. 16;
MON_PEND at 0 range 17 .. 17;
MON_STEP at 0 range 18 .. 18;
MON_REQ at 0 range 19 .. 19;
reserved_20_23 at 0 range 20 .. 23;
TRCENA at 0 range 24 .. 24;
end record;
DEMCR : t_DEMCR
with import,
volatile,
address => system'to_address (16#E000_EDFC#);
end soc.dwt;
| 30.336996 | 79 | 0.551678 |
0b8f8d12d2048e51d1e928f601b647dab94e7fe7 | 631 | adb | Ada | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/unchecked_convert8.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/unchecked_convert8.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/unchecked_convert8.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 "-g -O" }
with Ada.Unchecked_Conversion;
package body Unchecked_Convert8 is
type T1 is range 0 .. 255;
type T2 is
record
A : T1;
B : T1;
end record;
for T2 use
record
A at 0 range 0 .. 7;
B at 1 range 0 .. 7;
end record;
for T2'Size use 16;
type T3 is range 0 .. (2**16 - 1);
for T3'Size use 16;
function T2_TO_T3 is
new Ada.Unchecked_Conversion (Source => T2, Target => T3);
C : constant T3 := T2_TO_T3 (S => (A => 0, B => 0));
procedure Dummy is begin null; end;
end Unchecked_Convert8;
| 18.028571 | 64 | 0.554675 |
df524547cb683ef5854f69f4ea6fd735159c6ea2 | 344,792 | adb | Ada | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalpool_hls/solution1/.autopilot/db/load_cifm_data.sched.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | 7 | 2021-02-10T17:59:48.000Z | 2021-09-27T15:02:56.000Z | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalpool_hls/solution1/.autopilot/db/load_cifm_data.sched.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | null | null | null | final-project/repositories/Deep_Learning_Inference_Accelerator_with_CNNIOT/MSOC_final-main/finalpool_hls/solution1/.autopilot/db/load_cifm_data.sched.adb | bol-edu/2020-fall-ntu | 5e009875dec5a3bbcebd1b3fae327990371d1b6a | [
"MIT"
] | 1 | 2022-03-22T01:46:01.000Z | 2022-03-22T01:46:01.000Z | <?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>load_cifm_data</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>33</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>cifm</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>cifm</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<direction>0</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>ifm_buff0_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[3]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[4]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[5]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[6]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[7]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_8</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[8]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[9]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_10</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[10]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_11</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[11]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_12</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[12]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_13</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[13]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>ifm_buff0_14</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[14]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_17">
<Value>
<Obj>
<type>1</type>
<id>17</id>
<name>ifm_buff0_15</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff0[15]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_18">
<Value>
<Obj>
<type>1</type>
<id>18</id>
<name>ifm_buff1_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[0]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_19">
<Value>
<Obj>
<type>1</type>
<id>19</id>
<name>ifm_buff1_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[1]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_20">
<Value>
<Obj>
<type>1</type>
<id>20</id>
<name>ifm_buff1_2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[2]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_21">
<Value>
<Obj>
<type>1</type>
<id>21</id>
<name>ifm_buff1_3</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[3]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_22">
<Value>
<Obj>
<type>1</type>
<id>22</id>
<name>ifm_buff1_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[4]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_23">
<Value>
<Obj>
<type>1</type>
<id>23</id>
<name>ifm_buff1_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[5]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_24">
<Value>
<Obj>
<type>1</type>
<id>24</id>
<name>ifm_buff1_6</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[6]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_25">
<Value>
<Obj>
<type>1</type>
<id>25</id>
<name>ifm_buff1_7</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[7]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_26">
<Value>
<Obj>
<type>1</type>
<id>26</id>
<name>ifm_buff1_8</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[8]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_27">
<Value>
<Obj>
<type>1</type>
<id>27</id>
<name>ifm_buff1_9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[9]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_28">
<Value>
<Obj>
<type>1</type>
<id>28</id>
<name>ifm_buff1_10</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[10]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_29">
<Value>
<Obj>
<type>1</type>
<id>29</id>
<name>ifm_buff1_11</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[11]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_30">
<Value>
<Obj>
<type>1</type>
<id>30</id>
<name>ifm_buff1_12</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[12]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_31">
<Value>
<Obj>
<type>1</type>
<id>31</id>
<name>ifm_buff1_13</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[13]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_32">
<Value>
<Obj>
<type>1</type>
<id>32</id>
<name>ifm_buff1_14</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[14]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_33">
<Value>
<Obj>
<type>1</type>
<id>33</id>
<name>ifm_buff1_15</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>ifm_buff1[15]</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>58</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>145</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>_ln9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>D:\Course\mSOC\final</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>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>9</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>195</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.76</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>cifm_counter_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>197</item>
<item>198</item>
<item>199</item>
<item>200</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>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>icmp_ln9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>9</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>201</item>
<item>203</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.42</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>j</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>28</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>28</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>206</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.82</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>_ln9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>9</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>207</item>
<item>208</item>
<item>209</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>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>zext_ln12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>12</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>12</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>211</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>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>cifm_read</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>12</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>12</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>213</item>
<item>214</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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>trunc_ln12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>12</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>12</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>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="_42">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>bitcast_ln12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>12</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>12</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>216</item>
</oprand_edges>
<opcode>bitcast</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="_43">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>ifm_buff0_0_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>12</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>12</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>217</item>
<item>219</item>
<item>220</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>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>ifm_buff0_0_addr_write_ln12</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>12</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>12</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>221</item>
<item>222</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>3.25</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>cifm_a1_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>13</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>224</item>
<item>225</item>
<item>227</item>
<item>229</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>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>bitcast_ln13</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>13</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>230</item>
</oprand_edges>
<opcode>bitcast</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="_47">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>ifm_buff0_1_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>13</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>231</item>
<item>232</item>
<item>233</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>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>ifm_buff0_1_addr_write_ln13</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>13</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>13</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>234</item>
<item>235</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>3.25</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>cifm_a2_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>14</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>236</item>
<item>237</item>
<item>239</item>
<item>241</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>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>bitcast_ln14</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>14</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>242</item>
</oprand_edges>
<opcode>bitcast</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="_51">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>ifm_buff0_2_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>14</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>243</item>
<item>244</item>
<item>245</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>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>ifm_buff0_2_addr_write_ln14</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>14</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>14</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>246</item>
<item>247</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>3.25</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>cifm_a3_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>15</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>15</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>248</item>
<item>249</item>
<item>251</item>
<item>253</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>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>bitcast_ln15</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>15</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>15</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>254</item>
</oprand_edges>
<opcode>bitcast</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="_55">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>ifm_buff0_3_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>15</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>15</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>255</item>
<item>256</item>
<item>257</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>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>ifm_buff0_3_addr_write_ln15</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>15</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>15</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>258</item>
<item>259</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>3.25</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>cifm_a4_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>16</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>260</item>
<item>261</item>
<item>263</item>
<item>265</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>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>bitcast_ln16</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>16</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>266</item>
</oprand_edges>
<opcode>bitcast</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="_59">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>ifm_buff0_4_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>16</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>267</item>
<item>268</item>
<item>269</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>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>ifm_buff0_4_addr_write_ln16</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>16</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>16</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>270</item>
<item>271</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>3.25</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>cifm_a5_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>17</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>272</item>
<item>273</item>
<item>275</item>
<item>277</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>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>bitcast_ln17</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>17</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>278</item>
</oprand_edges>
<opcode>bitcast</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="_63">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>ifm_buff0_5_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>17</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>279</item>
<item>280</item>
<item>281</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>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>ifm_buff0_5_addr_write_ln17</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>17</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>17</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>282</item>
<item>283</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>3.25</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>cifm_a6_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>18</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>284</item>
<item>285</item>
<item>287</item>
<item>289</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>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>bitcast_ln18</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>18</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>290</item>
</oprand_edges>
<opcode>bitcast</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>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>ifm_buff0_6_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>18</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>291</item>
<item>292</item>
<item>293</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>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>ifm_buff0_6_addr_write_ln18</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>18</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>18</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>294</item>
<item>295</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>3.25</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>cifm_a7_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>19</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>296</item>
<item>297</item>
<item>299</item>
<item>301</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>36</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>bitcast_ln19</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>19</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>302</item>
</oprand_edges>
<opcode>bitcast</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="_71">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>ifm_buff0_7_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>19</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>303</item>
<item>304</item>
<item>305</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>38</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>ifm_buff0_7_addr_write_ln19</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>19</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>19</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>306</item>
<item>307</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>3.25</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>cifm_a8_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>20</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>20</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>308</item>
<item>309</item>
<item>311</item>
<item>313</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>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>bitcast_ln20</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>20</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>20</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>314</item>
</oprand_edges>
<opcode>bitcast</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="_75">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>ifm_buff0_8_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>20</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>20</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>315</item>
<item>316</item>
<item>317</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>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>ifm_buff0_8_addr_write_ln20</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>20</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>20</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>318</item>
<item>319</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>3.25</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>cifm_a9_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>21</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>320</item>
<item>321</item>
<item>323</item>
<item>325</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>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>bitcast_ln21</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>21</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>326</item>
</oprand_edges>
<opcode>bitcast</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="_79">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>ifm_buff0_9_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>21</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>327</item>
<item>328</item>
<item>329</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>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>ifm_buff0_9_addr_write_ln21</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>21</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>21</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>330</item>
<item>331</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>3.25</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>cifm_a10_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>22</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>22</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>332</item>
<item>333</item>
<item>335</item>
<item>337</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>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>bitcast_ln22</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>22</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>22</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>338</item>
</oprand_edges>
<opcode>bitcast</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="_83">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>ifm_buff0_10_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>22</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>22</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>339</item>
<item>340</item>
<item>341</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>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>ifm_buff0_10_addr_write_ln22</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>22</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>22</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>342</item>
<item>343</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>3.25</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>cifm_a11_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>23</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>23</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>344</item>
<item>345</item>
<item>347</item>
<item>349</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>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>bitcast_ln23</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>23</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>23</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>350</item>
</oprand_edges>
<opcode>bitcast</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="_87">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>ifm_buff0_11_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>23</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>23</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>351</item>
<item>352</item>
<item>353</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="_88">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>ifm_buff0_11_addr_write_ln23</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>23</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>23</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>354</item>
<item>355</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>3.25</m_delay>
<m_topoIndex>55</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>cifm_a12_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>24</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>356</item>
<item>357</item>
<item>359</item>
<item>361</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>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>bitcast_ln24</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>24</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>362</item>
</oprand_edges>
<opcode>bitcast</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>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>ifm_buff0_12_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>24</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>363</item>
<item>364</item>
<item>365</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>58</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>ifm_buff0_12_addr_write_ln24</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>24</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>24</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>366</item>
<item>367</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>3.25</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>cifm_a13_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>25</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>25</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>368</item>
<item>369</item>
<item>371</item>
<item>373</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>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>bitcast_ln25</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>25</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>25</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>374</item>
</oprand_edges>
<opcode>bitcast</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>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>ifm_buff0_13_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>25</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>25</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>375</item>
<item>376</item>
<item>377</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>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>ifm_buff0_13_addr_write_ln25</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>25</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>25</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>378</item>
<item>379</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>3.25</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>cifm_a14_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>26</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>26</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>380</item>
<item>381</item>
<item>383</item>
<item>385</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>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>bitcast_ln26</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>26</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>26</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>386</item>
</oprand_edges>
<opcode>bitcast</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>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>ifm_buff0_14_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>26</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>26</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>387</item>
<item>388</item>
<item>389</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>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>ifm_buff0_14_addr_write_ln26</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>26</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>26</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>390</item>
<item>391</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>3.25</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>cifm_a15_load_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>27</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>392</item>
<item>393</item>
<item>395</item>
<item>397</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>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>bitcast_ln27</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>27</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>398</item>
</oprand_edges>
<opcode>bitcast</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>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>ifm_buff0_15_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>27</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>399</item>
<item>400</item>
<item>401</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>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>ifm_buff0_15_addr_write_ln27</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>27</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>27</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>402</item>
<item>403</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>3.25</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>_ln9</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>9</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>9</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>404</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>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>_ln32</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>32</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>210</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.76</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>j1_0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>405</item>
<item>406</item>
<item>407</item>
<item>408</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>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>icmp_ln32</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>32</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>409</item>
<item>410</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.42</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>j_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>32</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>411</item>
<item>412</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.82</m_delay>
<m_topoIndex>76</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>_ln32</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>32</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>413</item>
<item>414</item>
<item>415</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>77</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>124</id>
<name>cifm_read_1</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>35</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>512</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>416</item>
<item>417</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>78</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_112">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name>trunc_ln35</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>35</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>418</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>79</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_113">
<Value>
<Obj>
<type>0</type>
<id>126</id>
<name>bitcast_ln35</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>35</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>419</item>
</oprand_edges>
<opcode>bitcast</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>80</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_114">
<Value>
<Obj>
<type>0</type>
<id>127</id>
<name>zext_ln35</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>35</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>420</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>81</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_115">
<Value>
<Obj>
<type>0</type>
<id>128</id>
<name>ifm_buff1_0_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>35</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>421</item>
<item>422</item>
<item>423</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>82</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_116">
<Value>
<Obj>
<type>0</type>
<id>129</id>
<name>ifm_buff1_0_addr_write_ln35</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>35</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>35</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>424</item>
<item>425</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>3.25</m_delay>
<m_topoIndex>83</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_117">
<Value>
<Obj>
<type>0</type>
<id>130</id>
<name>cifm_a1_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>36</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>36</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>426</item>
<item>427</item>
<item>428</item>
<item>429</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>84</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_118">
<Value>
<Obj>
<type>0</type>
<id>131</id>
<name>bitcast_ln36</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>36</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>36</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>430</item>
</oprand_edges>
<opcode>bitcast</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>85</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_119">
<Value>
<Obj>
<type>0</type>
<id>132</id>
<name>ifm_buff1_1_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>36</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>36</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>431</item>
<item>432</item>
<item>433</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>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_120">
<Value>
<Obj>
<type>0</type>
<id>133</id>
<name>ifm_buff1_1_addr_write_ln36</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>36</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>36</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>434</item>
<item>435</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>3.25</m_delay>
<m_topoIndex>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_121">
<Value>
<Obj>
<type>0</type>
<id>134</id>
<name>cifm_a2_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>436</item>
<item>437</item>
<item>438</item>
<item>439</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>88</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_122">
<Value>
<Obj>
<type>0</type>
<id>135</id>
<name>bitcast_ln37</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>37</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>440</item>
</oprand_edges>
<opcode>bitcast</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>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_123">
<Value>
<Obj>
<type>0</type>
<id>136</id>
<name>ifm_buff1_2_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>37</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>441</item>
<item>442</item>
<item>443</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>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_124">
<Value>
<Obj>
<type>0</type>
<id>137</id>
<name>ifm_buff1_2_addr_write_ln37</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>37</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>444</item>
<item>445</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>3.25</m_delay>
<m_topoIndex>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_125">
<Value>
<Obj>
<type>0</type>
<id>138</id>
<name>cifm_a3_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>38</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>446</item>
<item>447</item>
<item>448</item>
<item>449</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>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_126">
<Value>
<Obj>
<type>0</type>
<id>139</id>
<name>bitcast_ln38</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>38</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>450</item>
</oprand_edges>
<opcode>bitcast</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>93</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_127">
<Value>
<Obj>
<type>0</type>
<id>140</id>
<name>ifm_buff1_3_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>38</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>451</item>
<item>452</item>
<item>453</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>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_128">
<Value>
<Obj>
<type>0</type>
<id>141</id>
<name>ifm_buff1_3_addr_write_ln38</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>38</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>454</item>
<item>455</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>3.25</m_delay>
<m_topoIndex>95</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_129">
<Value>
<Obj>
<type>0</type>
<id>142</id>
<name>cifm_a4_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>456</item>
<item>457</item>
<item>458</item>
<item>459</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>96</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_130">
<Value>
<Obj>
<type>0</type>
<id>143</id>
<name>bitcast_ln39</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>39</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>460</item>
</oprand_edges>
<opcode>bitcast</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>97</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_131">
<Value>
<Obj>
<type>0</type>
<id>144</id>
<name>ifm_buff1_4_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>39</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>461</item>
<item>462</item>
<item>463</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>98</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_132">
<Value>
<Obj>
<type>0</type>
<id>145</id>
<name>ifm_buff1_4_addr_write_ln39</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>39</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>464</item>
<item>465</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>3.25</m_delay>
<m_topoIndex>99</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_133">
<Value>
<Obj>
<type>0</type>
<id>146</id>
<name>cifm_a5_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>40</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>466</item>
<item>467</item>
<item>468</item>
<item>469</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>100</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_134">
<Value>
<Obj>
<type>0</type>
<id>147</id>
<name>bitcast_ln40</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>40</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>470</item>
</oprand_edges>
<opcode>bitcast</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>101</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_135">
<Value>
<Obj>
<type>0</type>
<id>148</id>
<name>ifm_buff1_5_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>40</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>471</item>
<item>472</item>
<item>473</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>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_136">
<Value>
<Obj>
<type>0</type>
<id>149</id>
<name>ifm_buff1_5_addr_write_ln40</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>40</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>40</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>474</item>
<item>475</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>3.25</m_delay>
<m_topoIndex>103</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_137">
<Value>
<Obj>
<type>0</type>
<id>150</id>
<name>cifm_a6_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>41</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>476</item>
<item>477</item>
<item>478</item>
<item>479</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>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_138">
<Value>
<Obj>
<type>0</type>
<id>151</id>
<name>bitcast_ln41</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>41</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>480</item>
</oprand_edges>
<opcode>bitcast</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>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_139">
<Value>
<Obj>
<type>0</type>
<id>152</id>
<name>ifm_buff1_6_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>41</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>481</item>
<item>482</item>
<item>483</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>106</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_140">
<Value>
<Obj>
<type>0</type>
<id>153</id>
<name>ifm_buff1_6_addr_write_ln41</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>41</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>41</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>484</item>
<item>485</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>3.25</m_delay>
<m_topoIndex>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_141">
<Value>
<Obj>
<type>0</type>
<id>154</id>
<name>cifm_a7_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>42</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>486</item>
<item>487</item>
<item>488</item>
<item>489</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>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_142">
<Value>
<Obj>
<type>0</type>
<id>155</id>
<name>bitcast_ln42</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>42</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>490</item>
</oprand_edges>
<opcode>bitcast</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>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_143">
<Value>
<Obj>
<type>0</type>
<id>156</id>
<name>ifm_buff1_7_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>42</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>491</item>
<item>492</item>
<item>493</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>110</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_144">
<Value>
<Obj>
<type>0</type>
<id>157</id>
<name>ifm_buff1_7_addr_write_ln42</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>42</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>42</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>494</item>
<item>495</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>3.25</m_delay>
<m_topoIndex>111</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_145">
<Value>
<Obj>
<type>0</type>
<id>158</id>
<name>cifm_a8_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>43</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>496</item>
<item>497</item>
<item>498</item>
<item>499</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>112</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_146">
<Value>
<Obj>
<type>0</type>
<id>159</id>
<name>bitcast_ln43</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>43</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>500</item>
</oprand_edges>
<opcode>bitcast</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>113</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_147">
<Value>
<Obj>
<type>0</type>
<id>160</id>
<name>ifm_buff1_8_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>43</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>501</item>
<item>502</item>
<item>503</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>114</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_148">
<Value>
<Obj>
<type>0</type>
<id>161</id>
<name>ifm_buff1_8_addr_write_ln43</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>43</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>43</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>504</item>
<item>505</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>3.25</m_delay>
<m_topoIndex>115</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_149">
<Value>
<Obj>
<type>0</type>
<id>162</id>
<name>cifm_a9_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>44</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>44</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>506</item>
<item>507</item>
<item>508</item>
<item>509</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>116</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_150">
<Value>
<Obj>
<type>0</type>
<id>163</id>
<name>bitcast_ln44</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>44</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>44</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>510</item>
</oprand_edges>
<opcode>bitcast</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>117</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_151">
<Value>
<Obj>
<type>0</type>
<id>164</id>
<name>ifm_buff1_9_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>44</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>44</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>511</item>
<item>512</item>
<item>513</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>118</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_152">
<Value>
<Obj>
<type>0</type>
<id>165</id>
<name>ifm_buff1_9_addr_write_ln44</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>44</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>44</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>514</item>
<item>515</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>3.25</m_delay>
<m_topoIndex>119</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_153">
<Value>
<Obj>
<type>0</type>
<id>166</id>
<name>cifm_a10_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>45</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>516</item>
<item>517</item>
<item>518</item>
<item>519</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>120</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_154">
<Value>
<Obj>
<type>0</type>
<id>167</id>
<name>bitcast_ln45</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>45</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>520</item>
</oprand_edges>
<opcode>bitcast</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>121</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_155">
<Value>
<Obj>
<type>0</type>
<id>168</id>
<name>ifm_buff1_10_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>45</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>521</item>
<item>522</item>
<item>523</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>122</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_156">
<Value>
<Obj>
<type>0</type>
<id>169</id>
<name>ifm_buff1_10_addr_write_ln45</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>45</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>45</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>524</item>
<item>525</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>3.25</m_delay>
<m_topoIndex>123</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_157">
<Value>
<Obj>
<type>0</type>
<id>170</id>
<name>cifm_a11_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>46</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>526</item>
<item>527</item>
<item>528</item>
<item>529</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>124</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_158">
<Value>
<Obj>
<type>0</type>
<id>171</id>
<name>bitcast_ln46</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>46</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>530</item>
</oprand_edges>
<opcode>bitcast</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>125</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_159">
<Value>
<Obj>
<type>0</type>
<id>172</id>
<name>ifm_buff1_11_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>46</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>531</item>
<item>532</item>
<item>533</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>126</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_160">
<Value>
<Obj>
<type>0</type>
<id>173</id>
<name>ifm_buff1_11_addr_write_ln46</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>46</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>46</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>534</item>
<item>535</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>3.25</m_delay>
<m_topoIndex>127</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_161">
<Value>
<Obj>
<type>0</type>
<id>174</id>
<name>cifm_a12_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>47</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>536</item>
<item>537</item>
<item>538</item>
<item>539</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>128</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_162">
<Value>
<Obj>
<type>0</type>
<id>175</id>
<name>bitcast_ln47</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>47</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>540</item>
</oprand_edges>
<opcode>bitcast</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>129</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_163">
<Value>
<Obj>
<type>0</type>
<id>176</id>
<name>ifm_buff1_12_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>47</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>541</item>
<item>542</item>
<item>543</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>130</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_164">
<Value>
<Obj>
<type>0</type>
<id>177</id>
<name>ifm_buff1_12_addr_write_ln47</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>47</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>47</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>544</item>
<item>545</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>3.25</m_delay>
<m_topoIndex>131</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_165">
<Value>
<Obj>
<type>0</type>
<id>178</id>
<name>cifm_a13_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>48</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>546</item>
<item>547</item>
<item>548</item>
<item>549</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>132</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_166">
<Value>
<Obj>
<type>0</type>
<id>179</id>
<name>bitcast_ln48</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>48</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>550</item>
</oprand_edges>
<opcode>bitcast</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>133</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_167">
<Value>
<Obj>
<type>0</type>
<id>180</id>
<name>ifm_buff1_13_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>48</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>551</item>
<item>552</item>
<item>553</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>134</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_168">
<Value>
<Obj>
<type>0</type>
<id>181</id>
<name>ifm_buff1_13_addr_write_ln48</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>48</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>48</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>554</item>
<item>555</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>3.25</m_delay>
<m_topoIndex>135</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_169">
<Value>
<Obj>
<type>0</type>
<id>182</id>
<name>cifm_a14_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>49</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>49</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>556</item>
<item>557</item>
<item>558</item>
<item>559</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>136</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_170">
<Value>
<Obj>
<type>0</type>
<id>183</id>
<name>bitcast_ln49</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>49</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>49</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>560</item>
</oprand_edges>
<opcode>bitcast</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>137</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_171">
<Value>
<Obj>
<type>0</type>
<id>184</id>
<name>ifm_buff1_14_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>49</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>49</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>561</item>
<item>562</item>
<item>563</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>138</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_172">
<Value>
<Obj>
<type>0</type>
<id>185</id>
<name>ifm_buff1_14_addr_write_ln49</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>49</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>49</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>564</item>
<item>565</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>3.25</m_delay>
<m_topoIndex>139</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_173">
<Value>
<Obj>
<type>0</type>
<id>186</id>
<name>cifm_a15_load_1_new</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>50</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>566</item>
<item>567</item>
<item>568</item>
<item>569</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>140</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_174">
<Value>
<Obj>
<type>0</type>
<id>187</id>
<name>bitcast_ln50</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>50</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>570</item>
</oprand_edges>
<opcode>bitcast</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>141</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_175">
<Value>
<Obj>
<type>0</type>
<id>188</id>
<name>ifm_buff1_15_addr</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>50</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>571</item>
<item>572</item>
<item>573</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>142</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_176">
<Value>
<Obj>
<type>0</type>
<id>189</id>
<name>ifm_buff1_15_addr_write_ln50</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>50</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>574</item>
<item>575</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>3.25</m_delay>
<m_topoIndex>143</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_177">
<Value>
<Obj>
<type>0</type>
<id>191</id>
<name>_ln32</name>
<fileName>finalpool.cpp</fileName>
<fileDirectory>D:\Course\mSOC\final</fileDirectory>
<lineNumber>32</lineNumber>
<contextFuncName>load_cifm_data</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>D:\Course\mSOC\final</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>finalpool.cpp</first>
<second>load_cifm_data</second>
</first>
<second>32</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>576</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>144</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_178">
<Value>
<Obj>
<type>0</type>
<id>193</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>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>145</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>34</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_179">
<Value>
<Obj>
<type>2</type>
<id>196</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>0</content>
</item>
<item class_id_reference="16" object_id="_180">
<Value>
<Obj>
<type>2</type>
<id>202</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>58</content>
</item>
<item class_id_reference="16" object_id="_181">
<Value>
<Obj>
<type>2</type>
<id>205</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>1</content>
</item>
<item class_id_reference="16" object_id="_182">
<Value>
<Obj>
<type>2</type>
<id>218</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="_183">
<Value>
<Obj>
<type>2</type>
<id>226</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>32</content>
</item>
<item class_id_reference="16" object_id="_184">
<Value>
<Obj>
<type>2</type>
<id>228</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="_185">
<Value>
<Obj>
<type>2</type>
<id>238</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>64</content>
</item>
<item class_id_reference="16" object_id="_186">
<Value>
<Obj>
<type>2</type>
<id>240</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>95</content>
</item>
<item class_id_reference="16" object_id="_187">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>96</content>
</item>
<item class_id_reference="16" object_id="_188">
<Value>
<Obj>
<type>2</type>
<id>252</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>127</content>
</item>
<item class_id_reference="16" object_id="_189">
<Value>
<Obj>
<type>2</type>
<id>262</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>128</content>
</item>
<item class_id_reference="16" object_id="_190">
<Value>
<Obj>
<type>2</type>
<id>264</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>159</content>
</item>
<item class_id_reference="16" object_id="_191">
<Value>
<Obj>
<type>2</type>
<id>274</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>160</content>
</item>
<item class_id_reference="16" object_id="_192">
<Value>
<Obj>
<type>2</type>
<id>276</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>191</content>
</item>
<item class_id_reference="16" object_id="_193">
<Value>
<Obj>
<type>2</type>
<id>286</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>192</content>
</item>
<item class_id_reference="16" object_id="_194">
<Value>
<Obj>
<type>2</type>
<id>288</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>223</content>
</item>
<item class_id_reference="16" object_id="_195">
<Value>
<Obj>
<type>2</type>
<id>298</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>224</content>
</item>
<item class_id_reference="16" object_id="_196">
<Value>
<Obj>
<type>2</type>
<id>300</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>255</content>
</item>
<item class_id_reference="16" object_id="_197">
<Value>
<Obj>
<type>2</type>
<id>310</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>256</content>
</item>
<item class_id_reference="16" object_id="_198">
<Value>
<Obj>
<type>2</type>
<id>312</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>287</content>
</item>
<item class_id_reference="16" object_id="_199">
<Value>
<Obj>
<type>2</type>
<id>322</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>288</content>
</item>
<item class_id_reference="16" object_id="_200">
<Value>
<Obj>
<type>2</type>
<id>324</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>319</content>
</item>
<item class_id_reference="16" object_id="_201">
<Value>
<Obj>
<type>2</type>
<id>334</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>320</content>
</item>
<item class_id_reference="16" object_id="_202">
<Value>
<Obj>
<type>2</type>
<id>336</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>351</content>
</item>
<item class_id_reference="16" object_id="_203">
<Value>
<Obj>
<type>2</type>
<id>346</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>352</content>
</item>
<item class_id_reference="16" object_id="_204">
<Value>
<Obj>
<type>2</type>
<id>348</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>383</content>
</item>
<item class_id_reference="16" object_id="_205">
<Value>
<Obj>
<type>2</type>
<id>358</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>384</content>
</item>
<item class_id_reference="16" object_id="_206">
<Value>
<Obj>
<type>2</type>
<id>360</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>415</content>
</item>
<item class_id_reference="16" object_id="_207">
<Value>
<Obj>
<type>2</type>
<id>370</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>416</content>
</item>
<item class_id_reference="16" object_id="_208">
<Value>
<Obj>
<type>2</type>
<id>372</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>447</content>
</item>
<item class_id_reference="16" object_id="_209">
<Value>
<Obj>
<type>2</type>
<id>382</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>448</content>
</item>
<item class_id_reference="16" object_id="_210">
<Value>
<Obj>
<type>2</type>
<id>384</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>479</content>
</item>
<item class_id_reference="16" object_id="_211">
<Value>
<Obj>
<type>2</type>
<id>394</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>480</content>
</item>
<item class_id_reference="16" object_id="_212">
<Value>
<Obj>
<type>2</type>
<id>396</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>511</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="_213">
<Obj>
<type>3</type>
<id>36</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>35</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_214">
<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>4</count>
<item_version>0</item_version>
<item>37</item>
<item>38</item>
<item>40</item>
<item>41</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_215">
<Obj>
<type>3</type>
<id>113</id>
<name>hls_label_0</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>67</count>
<item_version>0</item_version>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
<item>49</item>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>54</item>
<item>55</item>
<item>56</item>
<item>57</item>
<item>58</item>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<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>
<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>112</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_216">
<Obj>
<type>3</type>
<id>115</id>
<name>.preheader.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>114</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_217">
<Obj>
<type>3</type>
<id>121</id>
<name>.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>4</count>
<item_version>0</item_version>
<item>116</item>
<item>117</item>
<item>119</item>
<item>120</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_218">
<Obj>
<type>3</type>
<id>192</id>
<name>hls_label_1</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>67</count>
<item_version>0</item_version>
<item>124</item>
<item>125</item>
<item>126</item>
<item>127</item>
<item>128</item>
<item>129</item>
<item>130</item>
<item>131</item>
<item>132</item>
<item>133</item>
<item>134</item>
<item>135</item>
<item>136</item>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
<item>148</item>
<item>149</item>
<item>150</item>
<item>151</item>
<item>152</item>
<item>153</item>
<item>154</item>
<item>155</item>
<item>156</item>
<item>157</item>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
<item>162</item>
<item>163</item>
<item>164</item>
<item>165</item>
<item>166</item>
<item>167</item>
<item>168</item>
<item>169</item>
<item>170</item>
<item>171</item>
<item>172</item>
<item>173</item>
<item>174</item>
<item>175</item>
<item>176</item>
<item>177</item>
<item>178</item>
<item>179</item>
<item>180</item>
<item>181</item>
<item>182</item>
<item>183</item>
<item>184</item>
<item>185</item>
<item>186</item>
<item>187</item>
<item>188</item>
<item>189</item>
<item>191</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_219">
<Obj>
<type>3</type>
<id>194</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>193</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>322</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_220">
<id>195</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>198</id>
<edge_type>2</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="_223">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>200</id>
<edge_type>2</edge_type>
<source_obj>113</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>201</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="_226">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>208</id>
<edge_type>2</edge_type>
<source_obj>113</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>209</id>
<edge_type>2</edge_type>
<source_obj>115</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>210</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>214</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>222</id>
<edge_type>1</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="_242">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>230</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="_246">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_249">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>235</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="_251">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_260">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_261">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_264">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_267">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>259</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="_269">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>262</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>266</id>
<edge_type>1</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="_273">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>270</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="_277">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>276</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_282">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>288</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>290</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="_291">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_292">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>295</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="_296">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>298</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>300</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>302</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="_300">
<id>303</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="_301">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>307</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="_305">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_306">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>310</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>312</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>314</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="_309">
<id>315</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_312">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_314">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>323</id>
<edge_type>1</edge_type>
<source_obj>322</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_316">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>324</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>326</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>328</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>334</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_325">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>336</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>339</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_328">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>341</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_331">
<id>343</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_332">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>347</id>
<edge_type>1</edge_type>
<source_obj>346</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_334">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>348</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>350</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>92</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>352</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_338">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>93</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_341">
<id>357</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>358</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_343">
<id>361</id>
<edge_type>1</edge_type>
<source_obj>360</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>96</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>363</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_346">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>365</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>366</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>369</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>371</id>
<edge_type>1</edge_type>
<source_obj>370</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>373</id>
<edge_type>1</edge_type>
<source_obj>372</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>375</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_355">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>378</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>381</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>383</id>
<edge_type>1</edge_type>
<source_obj>382</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>384</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>386</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_363">
<id>387</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>388</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_365">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>390</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_368">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>394</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_370">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>396</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_371">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_372">
<id>399</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_373">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_374">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_375">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_376">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_377">
<id>404</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_378">
<id>405</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_379">
<id>406</id>
<edge_type>2</edge_type>
<source_obj>192</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_380">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>196</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_381">
<id>408</id>
<edge_type>2</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_382">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_383">
<id>410</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>117</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_384">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_385">
<id>412</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>119</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_386">
<id>413</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_387">
<id>414</id>
<edge_type>2</edge_type>
<source_obj>192</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_388">
<id>415</id>
<edge_type>2</edge_type>
<source_obj>194</source_obj>
<sink_obj>120</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_389">
<id>417</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>124</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_390">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>125</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_391">
<id>419</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>126</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_392">
<id>420</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>127</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_393">
<id>421</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_394">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_395">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>128</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_396">
<id>424</id>
<edge_type>1</edge_type>
<source_obj>126</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_397">
<id>425</id>
<edge_type>1</edge_type>
<source_obj>128</source_obj>
<sink_obj>129</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_398">
<id>427</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_399">
<id>428</id>
<edge_type>1</edge_type>
<source_obj>226</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_400">
<id>429</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>130</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_401">
<id>430</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>131</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_402">
<id>431</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_403">
<id>432</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_404">
<id>433</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>132</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_405">
<id>434</id>
<edge_type>1</edge_type>
<source_obj>131</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_406">
<id>435</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>133</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_407">
<id>437</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_408">
<id>438</id>
<edge_type>1</edge_type>
<source_obj>238</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_409">
<id>439</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>134</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_410">
<id>440</id>
<edge_type>1</edge_type>
<source_obj>134</source_obj>
<sink_obj>135</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_411">
<id>441</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_412">
<id>442</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_413">
<id>443</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>136</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_414">
<id>444</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_415">
<id>445</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>137</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_416">
<id>447</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_417">
<id>448</id>
<edge_type>1</edge_type>
<source_obj>250</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_418">
<id>449</id>
<edge_type>1</edge_type>
<source_obj>252</source_obj>
<sink_obj>138</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_419">
<id>450</id>
<edge_type>1</edge_type>
<source_obj>138</source_obj>
<sink_obj>139</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_420">
<id>451</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_421">
<id>452</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_422">
<id>453</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>140</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_423">
<id>454</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_424">
<id>455</id>
<edge_type>1</edge_type>
<source_obj>140</source_obj>
<sink_obj>141</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_425">
<id>457</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_426">
<id>458</id>
<edge_type>1</edge_type>
<source_obj>262</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_427">
<id>459</id>
<edge_type>1</edge_type>
<source_obj>264</source_obj>
<sink_obj>142</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_428">
<id>460</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>143</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_429">
<id>461</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_430">
<id>462</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_431">
<id>463</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>144</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_432">
<id>464</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_433">
<id>465</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>145</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_434">
<id>467</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_435">
<id>468</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_436">
<id>469</id>
<edge_type>1</edge_type>
<source_obj>276</source_obj>
<sink_obj>146</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_437">
<id>470</id>
<edge_type>1</edge_type>
<source_obj>146</source_obj>
<sink_obj>147</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_438">
<id>471</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_439">
<id>472</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_440">
<id>473</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>148</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_441">
<id>474</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_442">
<id>475</id>
<edge_type>1</edge_type>
<source_obj>148</source_obj>
<sink_obj>149</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_443">
<id>477</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_444">
<id>478</id>
<edge_type>1</edge_type>
<source_obj>286</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_445">
<id>479</id>
<edge_type>1</edge_type>
<source_obj>288</source_obj>
<sink_obj>150</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_446">
<id>480</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>151</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_447">
<id>481</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_448">
<id>482</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_449">
<id>483</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>152</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_450">
<id>484</id>
<edge_type>1</edge_type>
<source_obj>151</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_451">
<id>485</id>
<edge_type>1</edge_type>
<source_obj>152</source_obj>
<sink_obj>153</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_452">
<id>487</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_453">
<id>488</id>
<edge_type>1</edge_type>
<source_obj>298</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_454">
<id>489</id>
<edge_type>1</edge_type>
<source_obj>300</source_obj>
<sink_obj>154</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_455">
<id>490</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>155</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_456">
<id>491</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_457">
<id>492</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_458">
<id>493</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>156</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_459">
<id>494</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_460">
<id>495</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>157</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_461">
<id>497</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_462">
<id>498</id>
<edge_type>1</edge_type>
<source_obj>310</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_463">
<id>499</id>
<edge_type>1</edge_type>
<source_obj>312</source_obj>
<sink_obj>158</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_464">
<id>500</id>
<edge_type>1</edge_type>
<source_obj>158</source_obj>
<sink_obj>159</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_465">
<id>501</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_466">
<id>502</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_467">
<id>503</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>160</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_468">
<id>504</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_469">
<id>505</id>
<edge_type>1</edge_type>
<source_obj>160</source_obj>
<sink_obj>161</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_470">
<id>507</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_471">
<id>508</id>
<edge_type>1</edge_type>
<source_obj>322</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_472">
<id>509</id>
<edge_type>1</edge_type>
<source_obj>324</source_obj>
<sink_obj>162</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_473">
<id>510</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>163</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_474">
<id>511</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_475">
<id>512</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_476">
<id>513</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>164</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_477">
<id>514</id>
<edge_type>1</edge_type>
<source_obj>163</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_478">
<id>515</id>
<edge_type>1</edge_type>
<source_obj>164</source_obj>
<sink_obj>165</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_479">
<id>517</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_480">
<id>518</id>
<edge_type>1</edge_type>
<source_obj>334</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_481">
<id>519</id>
<edge_type>1</edge_type>
<source_obj>336</source_obj>
<sink_obj>166</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_482">
<id>520</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>167</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_483">
<id>521</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_484">
<id>522</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_485">
<id>523</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>168</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_486">
<id>524</id>
<edge_type>1</edge_type>
<source_obj>167</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_487">
<id>525</id>
<edge_type>1</edge_type>
<source_obj>168</source_obj>
<sink_obj>169</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_488">
<id>527</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_489">
<id>528</id>
<edge_type>1</edge_type>
<source_obj>346</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_490">
<id>529</id>
<edge_type>1</edge_type>
<source_obj>348</source_obj>
<sink_obj>170</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_491">
<id>530</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>171</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_492">
<id>531</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_493">
<id>532</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_494">
<id>533</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>172</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_495">
<id>534</id>
<edge_type>1</edge_type>
<source_obj>171</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_496">
<id>535</id>
<edge_type>1</edge_type>
<source_obj>172</source_obj>
<sink_obj>173</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_497">
<id>537</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_498">
<id>538</id>
<edge_type>1</edge_type>
<source_obj>358</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_499">
<id>539</id>
<edge_type>1</edge_type>
<source_obj>360</source_obj>
<sink_obj>174</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_500">
<id>540</id>
<edge_type>1</edge_type>
<source_obj>174</source_obj>
<sink_obj>175</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_501">
<id>541</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_502">
<id>542</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_503">
<id>543</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>176</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_504">
<id>544</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_505">
<id>545</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>177</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_506">
<id>547</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_507">
<id>548</id>
<edge_type>1</edge_type>
<source_obj>370</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_508">
<id>549</id>
<edge_type>1</edge_type>
<source_obj>372</source_obj>
<sink_obj>178</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_509">
<id>550</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>179</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_510">
<id>551</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>180</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_511">
<id>552</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>180</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_512">
<id>553</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>180</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_513">
<id>554</id>
<edge_type>1</edge_type>
<source_obj>179</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_514">
<id>555</id>
<edge_type>1</edge_type>
<source_obj>180</source_obj>
<sink_obj>181</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_515">
<id>557</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_516">
<id>558</id>
<edge_type>1</edge_type>
<source_obj>382</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_517">
<id>559</id>
<edge_type>1</edge_type>
<source_obj>384</source_obj>
<sink_obj>182</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_518">
<id>560</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>183</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_519">
<id>561</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_520">
<id>562</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_521">
<id>563</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>184</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_522">
<id>564</id>
<edge_type>1</edge_type>
<source_obj>183</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_523">
<id>565</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>185</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_524">
<id>567</id>
<edge_type>1</edge_type>
<source_obj>124</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_525">
<id>568</id>
<edge_type>1</edge_type>
<source_obj>394</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_526">
<id>569</id>
<edge_type>1</edge_type>
<source_obj>396</source_obj>
<sink_obj>186</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_527">
<id>570</id>
<edge_type>1</edge_type>
<source_obj>186</source_obj>
<sink_obj>187</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_528">
<id>571</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_529">
<id>572</id>
<edge_type>1</edge_type>
<source_obj>218</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_530">
<id>573</id>
<edge_type>1</edge_type>
<source_obj>127</source_obj>
<sink_obj>188</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_531">
<id>574</id>
<edge_type>1</edge_type>
<source_obj>187</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_532">
<id>575</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>189</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_533">
<id>576</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>191</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_534">
<id>643</id>
<edge_type>2</edge_type>
<source_obj>36</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_535">
<id>644</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_536">
<id>645</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_537">
<id>646</id>
<edge_type>2</edge_type>
<source_obj>113</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_538">
<id>647</id>
<edge_type>2</edge_type>
<source_obj>115</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_539">
<id>648</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>194</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_540">
<id>649</id>
<edge_type>2</edge_type>
<source_obj>121</source_obj>
<sink_obj>192</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_541">
<id>650</id>
<edge_type>2</edge_type>
<source_obj>192</source_obj>
<sink_obj>121</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_542">
<mId>1</mId>
<mTag>load_cifm_data</mTag>
<mType>0</mType>
<sub_regions>
<count>5</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<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>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>120</mMinLatency>
<mMaxLatency>120</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_543">
<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>36</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="_544">
<mId>3</mId>
<mTag>Loop 1</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>42</item>
<item>113</item>
</basic_blocks>
<mII>1</mII>
<mDepth>1</mDepth>
<mMinTripCount>58</mMinTripCount>
<mMaxTripCount>58</mMaxTripCount>
<mMinLatency>58</mMinLatency>
<mMaxLatency>58</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_545">
<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>115</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="_546">
<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>121</item>
<item>192</item>
</basic_blocks>
<mII>1</mII>
<mDepth>1</mDepth>
<mMinTripCount>58</mMinTripCount>
<mMaxTripCount>58</mMaxTripCount>
<mMinLatency>58</mMinLatency>
<mMaxLatency>58</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_547">
<mId>6</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>194</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>145</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>35</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>37</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>40</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>45</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>63</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>65</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>67</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>70</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>78</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>112</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>117</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>119</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>127</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>128</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>129</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>130</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>131</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>132</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>133</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>134</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>135</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>136</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>137</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>138</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>139</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>140</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>141</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>142</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>143</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>144</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>145</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>146</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>147</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>148</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>149</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>150</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>151</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>152</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>153</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>154</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>155</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>156</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>157</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>158</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>159</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>160</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>161</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>162</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>163</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>164</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>165</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>166</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>167</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>168</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>169</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>170</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>171</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>172</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>173</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>174</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>175</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>176</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>177</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>178</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>179</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>180</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>181</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>182</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>183</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>184</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>185</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>186</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>187</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>188</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>189</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>191</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>193</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>36</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>192</first>
<second>
<first>3</first>
<second>3</second>
</second>
</item>
<item>
<first>194</first>
<second>
<first>4</first>
<second>4</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="32" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="1" version="0" object_id="_548">
<region_name>Loop 1</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>42</item>
<item>113</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>
<item class_id_reference="33" object_id="_549">
<region_name>Loop 2</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>121</item>
<item>192</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="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>
| 27.110552 | 71 | 0.600614 |
fb91bc2bf8fb613c4bf126579741cc84c68622d5 | 3,918 | adb | Ada | 3-mid/opengl/source/lean/shader/opengl-program-lit.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | 1 | 2022-01-20T07:13:42.000Z | 2022-01-20T07:13:42.000Z | 3-mid/opengl/source/lean/shader/opengl-program-lit.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | 3-mid/opengl/source/lean/shader/opengl-program-lit.adb | charlie5/lace-alire | 9ace9682cf4daac7adb9f980c2868d6225b8111c | [
"0BSD"
] | null | null | null | with
openGL.Conversions,
ada.Strings.fixed;
package body openGL.Program.lit
is
overriding
procedure Lights_are (Self : in out Item; Now : in Light.items)
is
begin
Self.light_Count := Now'Length;
Self.Lights (1 .. Now'Length) := Now;
end Lights_are;
overriding
procedure camera_Site_is (Self : in out Item; Now : in Vector_3)
is
begin
Self.camera_Site := Now;
end camera_Site_is;
overriding
procedure model_Matrix_is (Self : in out Item; Now : in Matrix_4x4)
is
begin
Self.model_Transform := Now;
end model_Matrix_is;
overriding
procedure set_Uniforms (Self : in Item)
is
use openGL.Conversions,
linear_Algebra_3d;
the_model_transform_Uniform : constant Variable.uniform.mat4 := Self.uniform_Variable ("model_Transform");
the_inverse_model_rotation_Uniform : constant Variable.uniform.mat3 := Self.uniform_Variable ("inverse_model_Rotation");
the_camera_site_Uniform : constant Variable.uniform.vec3 := Self.uniform_Variable ("camera_Site");
the_light_count_Uniform : constant Variable.uniform.int := Self.uniform_Variable ("light_Count");
the_specular_color_Uniform : constant Variable.uniform.vec3 := Self.uniform_Variable ("specular_Color");
begin
openGL.Program.item (Self).set_Uniforms;
the_camera_site_Uniform.Value_is (Self.camera_Site);
the_model_transform_Uniform .Value_is (Self.model_Transform);
the_inverse_model_rotation_Uniform.Value_is (Inverse (get_Rotation (Self.model_Transform)));
-- Lights.
--
the_light_count_Uniform .Value_is (Self.light_Count);
the_specular_color_Uniform.Value_is (to_Vector_3 (Self.specular_Color));
for i in 1 .. Self.light_Count
loop
declare
use Light;
Light : openGL.Light.item renames Self.Lights (i);
function light_Name return String
is
use ada.Strings,
ada.Strings.fixed;
begin
return "Lights[" & Trim (Integer'Image (i - 1), Left) & "]";
end light_Name;
site_Uniform : constant Variable.uniform.vec4 := Self.uniform_Variable (light_Name & ".Site");
color_Uniform : constant Variable.uniform.vec3 := Self.uniform_Variable (light_Name & ".Color");
attenuation_Uniform : constant Variable.uniform.float := Self.uniform_Variable (light_Name & ".Attenuation");
ambient_coefficient_Uniform : constant Variable.uniform.float := Self.uniform_Variable (light_Name & ".ambient_Coefficient");
cone_angle_Uniform : constant Variable.uniform.float := Self.uniform_Variable (light_Name & ".cone_Angle");
cone_direction_Uniform : constant Variable.uniform.vec3 := Self.uniform_Variable (light_Name & ".cone_Direction");
begin
case Light.Kind
is
when Diffuse => site_Uniform.Value_is (Vector_4 (Light.Site & 1.0));
when Direct => site_Uniform.Value_is (Vector_4 (Light.Site & 0.0)); -- '0.0' tells shader that this light is 'direct'.
end case;
color_Uniform .Value_is (to_Vector_3 (Light.Color));
attenuation_Uniform .Value_is ( Light.Attenuation);
ambient_coefficient_Uniform.Value_is ( Light.ambient_Coefficient);
cone_angle_Uniform .Value_is (Real (Light.cone_Angle));
cone_direction_Uniform .Value_is ( Light.cone_Direction);
end;
end loop;
end set_Uniforms;
procedure specular_Color_is (Self : in out Item; Now : in Color)
is
begin
Self.specular_Color := Now;
end specular_Color_is;
end openGL.Program.lit;
| 35.944954 | 137 | 0.638336 |
4d36a84fd75119da4105fb6daaacf6566bcc1ef1 | 14,290 | ads | Ada | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-except.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-except.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-except.ads | djamal2727/Main-Bearing-Analytical-Model | 2f00c2219c71be0175c6f4f8f1d4cca231d97096 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . E X C E P T I O N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2020, 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. --
-- --
------------------------------------------------------------------------------
-- This is the default version of this package. We also have cert and zfp
-- versions.
with System;
with System.Parameters;
with System.Standard_Library;
with System.Traceback_Entries;
package Ada.Exceptions is
pragma Preelaborate;
-- In accordance with Ada 2005 AI-362.
type Exception_Id is private;
pragma Preelaborable_Initialization (Exception_Id);
Null_Id : constant Exception_Id;
type Exception_Occurrence is limited private;
pragma Preelaborable_Initialization (Exception_Occurrence);
type Exception_Occurrence_Access is access all Exception_Occurrence;
Null_Occurrence : constant Exception_Occurrence;
function Exception_Name (Id : Exception_Id) return String;
function Exception_Name (X : Exception_Occurrence) return String;
function Wide_Exception_Name
(Id : Exception_Id) return Wide_String;
pragma Ada_05 (Wide_Exception_Name);
function Wide_Exception_Name
(X : Exception_Occurrence) return Wide_String;
pragma Ada_05 (Wide_Exception_Name);
function Wide_Wide_Exception_Name
(Id : Exception_Id) return Wide_Wide_String;
pragma Ada_05 (Wide_Wide_Exception_Name);
function Wide_Wide_Exception_Name
(X : Exception_Occurrence) return Wide_Wide_String;
pragma Ada_05 (Wide_Wide_Exception_Name);
procedure Raise_Exception (E : Exception_Id; Message : String := "");
pragma No_Return (Raise_Exception);
-- Note: In accordance with AI-466, CE is raised if E = Null_Id
function Exception_Message (X : Exception_Occurrence) return String;
procedure Reraise_Occurrence (X : Exception_Occurrence);
-- Note: it would be really nice to give a pragma No_Return for this
-- procedure, but it would be wrong, since Reraise_Occurrence does return
-- if the argument is the null exception occurrence. See also procedure
-- Reraise_Occurrence_Always in the private part of this package.
function Exception_Identity (X : Exception_Occurrence) return Exception_Id;
function Exception_Information (X : Exception_Occurrence) return String;
-- The format of the exception information is as follows:
--
-- exception name (as in Exception_Name)
-- message (or a null line if no message)
-- PID=nnnn
-- 0xyyyyyyyy 0xyyyyyyyy ...
--
-- The lines are separated by a ASCII.LF character
--
-- The nnnn is the partition Id given as decimal digits
--
-- The 0x... line represents traceback program counter locations,
-- in order with the first one being the exception location.
-- Note on ordering: the compiler uses the Save_Occurrence procedure, but
-- not the function from Rtsfind, so it is important that the procedure
-- come first, since Rtsfind finds the first matching entity.
procedure Save_Occurrence
(Target : out Exception_Occurrence;
Source : Exception_Occurrence);
function Save_Occurrence
(Source : Exception_Occurrence)
return Exception_Occurrence_Access;
-- Ada 2005 (AI-438): The language revision introduces the following
-- subprograms and attribute definitions. We do not provide them
-- explicitly. instead, the corresponding stream attributes are made
-- available through a pragma Stream_Convert in the private part.
-- procedure Read_Exception_Occurrence
-- (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
-- Item : out Exception_Occurrence);
-- procedure Write_Exception_Occurrence
-- (Stream : not null access Ada.Streams.Root_Stream_Type'Class;
-- Item : Exception_Occurrence);
-- for Exception_Occurrence'Read use Read_Exception_Occurrence;
-- for Exception_Occurrence'Write use Write_Exception_Occurrence;
private
package SSL renames System.Standard_Library;
package SP renames System.Parameters;
subtype EOA is Exception_Occurrence_Access;
Exception_Msg_Max_Length : constant := SP.Default_Exception_Msg_Max_Length;
------------------
-- Exception_Id --
------------------
subtype Code_Loc is System.Address;
-- Code location used in building exception tables and for call addresses
-- when propagating an exception. Values of this type are created by using
-- Label'Address or extracted from machine states using Get_Code_Loc.
Null_Loc : constant Code_Loc := System.Null_Address;
-- Null code location, used to flag outer level frame
type Exception_Id is new SSL.Exception_Data_Ptr;
function EId_To_String (X : Exception_Id) return String;
function String_To_EId (S : String) return Exception_Id;
pragma Stream_Convert (Exception_Id, String_To_EId, EId_To_String);
-- Functions for implementing Exception_Id stream attributes
Null_Id : constant Exception_Id := null;
-------------------------
-- Private Subprograms --
-------------------------
function Exception_Name_Simple (X : Exception_Occurrence) return String;
-- Like Exception_Name, but returns the simple non-qualified name of the
-- exception. This is used to implement the Exception_Name function in
-- Current_Exceptions (the DEC compatible unit). It is called from the
-- compiler generated code (using Rtsfind, which does not respect the
-- private barrier, so we can place this function in the private part
-- where the compiler can find it, but the spec is unchanged.)
procedure Raise_Exception_Always (E : Exception_Id; Message : String := "");
pragma No_Return (Raise_Exception_Always);
pragma Export (Ada, Raise_Exception_Always, "__gnat_raise_exception");
-- This differs from Raise_Exception only in that the caller has determined
-- that for sure the parameter E is not null, and that therefore no check
-- for Null_Id is required. The expander converts Raise_Exception calls to
-- Raise_Exception_Always if it can determine this is the case. The Export
-- allows this routine to be accessed from Pure units.
procedure Raise_From_Signal_Handler
(E : Exception_Id;
M : System.Address);
pragma Export
(Ada, Raise_From_Signal_Handler,
"ada__exceptions__raise_from_signal_handler");
pragma No_Return (Raise_From_Signal_Handler);
-- This routine is used to raise an exception from a signal handler. The
-- signal handler has already stored the machine state (i.e. the state that
-- corresponds to the location at which the signal was raised). E is the
-- Exception_Id specifying what exception is being raised, and M is a
-- pointer to a null-terminated string which is the message to be raised.
-- Note that this routine never returns, so it is permissible to simply
-- jump to this routine, rather than call it. This may be appropriate for
-- systems where the right way to get out of signal handler is to alter the
-- PC value in the machine state or in some other way ask the operating
-- system to return here rather than to the original location.
procedure Raise_From_Controlled_Operation
(X : Ada.Exceptions.Exception_Occurrence);
pragma No_Return (Raise_From_Controlled_Operation);
pragma Export
(Ada, Raise_From_Controlled_Operation,
"__gnat_raise_from_controlled_operation");
-- Raise Program_Error, providing information about X (an exception raised
-- during a controlled operation) in the exception message.
procedure Reraise_Library_Exception_If_Any;
pragma Export
(Ada, Reraise_Library_Exception_If_Any,
"__gnat_reraise_library_exception_if_any");
-- If there was an exception raised during library-level finalization,
-- reraise the exception.
procedure Reraise_Occurrence_Always (X : Exception_Occurrence);
pragma No_Return (Reraise_Occurrence_Always);
-- This differs from Raise_Occurrence only in that the caller guarantees
-- that for sure the parameter X is not the null occurrence, and that
-- therefore this procedure cannot return. The expander uses this routine
-- in the translation of a raise statement with no parameter (reraise).
procedure Reraise_Occurrence_No_Defer (X : Exception_Occurrence);
pragma No_Return (Reraise_Occurrence_No_Defer);
-- Exactly like Reraise_Occurrence, except that abort is not deferred
-- before the call and the parameter X is known not to be the null
-- occurrence. This is used in generated code when it is known that abort
-- is already deferred.
function Triggered_By_Abort return Boolean;
-- Determine whether the current exception (if it exists) is an instance of
-- Standard'Abort_Signal.
--------------------------
-- Exception_Occurrence --
--------------------------
package TBE renames System.Traceback_Entries;
Max_Tracebacks : constant := 50;
-- Maximum number of trace backs stored in exception occurrence
subtype Tracebacks_Array is TBE.Tracebacks_Array (1 .. Max_Tracebacks);
-- Traceback array stored in exception occurrence
type Exception_Occurrence is record
Id : Exception_Id := Null_Id;
-- Exception_Identity for this exception occurrence
Machine_Occurrence : System.Address;
-- The underlying machine occurrence. For GCC, this corresponds to the
-- _Unwind_Exception structure address.
Msg_Length : Natural := 0;
-- Length of message (zero = no message)
Msg : String (1 .. Exception_Msg_Max_Length);
-- Characters of message
Exception_Raised : Boolean := False;
-- Set to true to indicate that this exception occurrence has actually
-- been raised. When an exception occurrence is first created, this is
-- set to False, then when it is processed by Raise_Current_Exception,
-- it is set to True. If Raise_Current_Exception is used to raise an
-- exception for which this flag is already True, then it knows that
-- it is dealing with the reraise case (which is useful to distinguish
-- for exception tracing purposes).
Pid : Natural := 0;
-- Partition_Id for partition raising exception
Num_Tracebacks : Natural range 0 .. Max_Tracebacks := 0;
-- Number of traceback entries stored
Tracebacks : Tracebacks_Array;
-- Stored tracebacks (in Tracebacks (1 .. Num_Tracebacks))
end record;
function "=" (Left, Right : Exception_Occurrence) return Boolean
is abstract;
-- Don't allow comparison on exception occurrences, we should not need
-- this, and it would not work right, because of the Msg and Tracebacks
-- fields which have unused entries not copied by Save_Occurrence.
function Get_Exception_Machine_Occurrence
(X : Exception_Occurrence) return System.Address;
pragma Export (Ada, Get_Exception_Machine_Occurrence,
"__gnat_get_exception_machine_occurrence");
-- Get the machine occurrence corresponding to an exception occurrence.
-- It is Null_Address if there is no machine occurrence (in runtimes that
-- doesn't use GCC mechanism) or if it has been lost (Save_Occurrence
-- doesn't save the machine occurrence).
function EO_To_String (X : Exception_Occurrence) return String;
function String_To_EO (S : String) return Exception_Occurrence;
pragma Stream_Convert (Exception_Occurrence, String_To_EO, EO_To_String);
-- Functions for implementing Exception_Occurrence stream attributes
pragma Warnings (Off, "aggregate not fully initialized");
Null_Occurrence : constant Exception_Occurrence := (others => <>);
pragma Warnings (On, "aggregate not fully initialized");
end Ada.Exceptions;
| 46.245955 | 79 | 0.66508 |
599839c5fcf2e7cdfc4644e2fb455eaa4b95b0ac | 2,519 | ads | Ada | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-exponn.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-exponn.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/s-exponn.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . E X P O N N --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-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. --
-- --
------------------------------------------------------------------------------
-- Signed integer exponentiation (checks off)
generic
type Int is range <>;
function System.Exponn (Left : Int; Right : Natural) return Int;
| 64.589744 | 78 | 0.31838 |
125ae4db9b79d90b046d4dcda74eb44ac86c16a5 | 6,297 | adb | Ada | src/stm32/stm32-eth.adb | stcarrez/ada-enet | 678c0887e980db84c375bf25918ab20fe6151bb3 | [
"Apache-2.0"
] | 16 | 2016-09-24T16:58:24.000Z | 2021-11-23T23:03:50.000Z | src/stm32/stm32-eth.adb | stcarrez/ada-enet | 678c0887e980db84c375bf25918ab20fe6151bb3 | [
"Apache-2.0"
] | 2 | 2017-07-07T04:16:47.000Z | 2018-09-23T02:27:27.000Z | src/stm32/stm32-eth.adb | stcarrez/ada-enet | 678c0887e980db84c375bf25918ab20fe6151bb3 | [
"Apache-2.0"
] | 4 | 2017-06-13T22:12:37.000Z | 2021-07-18T09:14:13.000Z | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015, 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 STMicroelectronics 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 STM32.GPIO;
with STM32.Device;
with STM32_SVD.RCC;
with STM32_SVD.SYSCFG;
with STM32_SVD.Ethernet; use STM32_SVD.Ethernet;
with Ada.Real_Time;
-- SCz 2016-09-27: this is a stripped down version of stm32-eth.adb where the TX/RX
-- ring initialization is removed as well as the interrupt handler with the Wait_Packet
-- operation. The interrupt handler conflicts with the Net.Interfaces.STM32 driver.
-- I've just re-used the MII initialization as well as the Ethernet descriptor types.
package body STM32.Eth is
---------------------
-- Initialize_RMII --
---------------------
procedure Initialize_RMII
is
use STM32.GPIO;
use STM32.Device;
use STM32_SVD.RCC;
Configuration : GPIO_Port_Configuration;
begin
-- Enable GPIO clocks
Enable_Clock (GPIO_A);
Enable_Clock (GPIO_C);
Enable_Clock (GPIO_G);
-- Enable SYSCFG clock
RCC_Periph.APB2ENR.SYSCFGEN := True;
-- Select RMII (before enabling the clocks)
STM32_SVD.SYSCFG.SYSCFG_Periph.PMC.MII_RMII_SEL := True;
Configure_Alternate_Function (PA1, GPIO_AF_ETH_11); -- RMII_REF_CLK
Configure_Alternate_Function (PA2, GPIO_AF_ETH_11); -- RMII_MDIO
Configure_Alternate_Function (PA7, GPIO_AF_ETH_11); -- RMII_CRS_DV
Configure_Alternate_Function (PC1, GPIO_AF_ETH_11); -- RMII_MDC
Configure_Alternate_Function (PC4, GPIO_AF_ETH_11); -- RMII_RXD0
Configure_Alternate_Function (PC5, GPIO_AF_ETH_11); -- RMII_RXD1
Configure_Alternate_Function (PG2, GPIO_AF_ETH_11); -- RMII_RXER
Configure_Alternate_Function (PG11, GPIO_AF_ETH_11); -- RMII_TX_EN
Configure_Alternate_Function (PG13, GPIO_AF_ETH_11); -- RMII_TXD0
Configure_Alternate_Function (PG14, GPIO_AF_ETH_11); -- RMII_TXD1
Configuration := (Mode => Mode_AF,
AF => GPIO_AF_ETH_11,
AF_Speed => Speed_100MHz,
AF_Output_Type => Push_Pull,
Resistors => Floating);
Configure_IO (PA1, Configuration);
Configure_IO (PA2, Configuration);
Configure_IO (PA7, Configuration);
Configure_IO (PC1, Configuration);
Configure_IO (PC4, Configuration);
Configure_IO (PC5, Configuration);
Configure_IO (PG2, Configuration);
Configure_IO (PG11, Configuration);
Configure_IO (PG13, Configuration);
Configure_IO (PG14, Configuration);
-- Enable clocks
RCC_Periph.AHB1ENR.ETHMACEN := True;
RCC_Periph.AHB1ENR.ETHMACTXEN := True;
RCC_Periph.AHB1ENR.ETHMACRXEN := True;
RCC_Periph.AHB1ENR.ETHMACPTPEN := True;
-- Reset
RCC_Periph.AHB1RSTR.ETHMACRST := True;
RCC_Periph.AHB1RSTR.ETHMACRST := False;
-- Software reset
Ethernet_DMA_Periph.DMABMR.SR := True;
while Ethernet_DMA_Periph.DMABMR.SR loop
null;
end loop;
end Initialize_RMII;
--------------
-- Read_MMI --
--------------
procedure Read_MMI (Reg : UInt5; Val : out Unsigned_16)
is
use Ada.Real_Time;
Pa : constant UInt5 := 0;
Cr : UInt3;
begin
case STM32.Device.System_Clock_Frequencies.HCLK is
when 20e6 .. 35e6 - 1 => Cr := 2#010#;
when 35e6 .. 60e6 - 1 => Cr := 2#011#;
when 60e6 .. 100e6 - 1 => Cr := 2#000#;
when 100e6 .. 150e6 - 1 => Cr := 2#001#;
when 150e6 .. 216e6 => Cr := 2#100#;
when others => raise Constraint_Error;
end case;
Ethernet_MAC_Periph.MACMIIAR :=
(PA => Pa,
MR => Reg,
CR => Cr,
MW => False,
MB => True,
others => <>);
loop
exit when not Ethernet_MAC_Periph.MACMIIAR.MB;
delay until Clock + Milliseconds (1);
end loop;
Val := Unsigned_16 (Ethernet_MAC_Periph.MACMIIDR.TD);
end Read_MMI;
end STM32.Eth;
| 43.130137 | 88 | 0.578529 |
2955d5707723a75034926e4f5b75d4bc0590fbdd | 2,588 | ads | Ada | src/sys/http/util-http-rest.ads | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 60 | 2015-01-18T23:05:34.000Z | 2022-03-20T18:56:30.000Z | src/sys/http/util-http-rest.ads | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 20 | 2016-09-15T16:41:30.000Z | 2022-03-29T22:02:32.000Z | src/sys/http/util-http-rest.ads | yrashk/ada-util | 2aaa1d87e92a7137e1c63dce90f0722c549dfafd | [
"Apache-2.0"
] | 10 | 2015-02-13T04:00:45.000Z | 2022-03-20T18:57:54.000Z | -----------------------------------------------------------------------
-- util-http-rest -- REST API support
-- Copyright (C) 2012, 2013 Stephane Carrez
-- Written by Stephane Carrez ([email protected])
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Util.Serialize.IO;
with Util.Http.Clients;
with Util.Serialize.Mappers.Record_Mapper;
-- The <b>Util.Http.Rest</b> package defines a REST client type which helps in writing
-- REST client APIs. A REST client is similar to an HTTP client but it provides additional
-- operations that are useful in REST APIs.
package Util.Http.Rest is
-- -----------------------
-- REST client
-- -----------------------
type Client is new Util.Http.Clients.Client with private;
-- Execute an HTTP GET operation using the <b>Http</b> client on the given <b>URI</b>.
-- Upon successful reception of the response, parse the JSON result and populate the
-- serialization context associated with the parser.
procedure Get (Http : in out Client;
URI : in String;
Parser : in out Util.Serialize.IO.Parser'Class;
Sink : in out Util.Serialize.IO.Reader'Class);
-- Execute an HTTP GET operation on the given <b>URI</b> and parse the JSON response
-- into the target object refered to by <b>Into</b> by using the mapping described
-- in <b>Mapping</b>.
generic
-- Package that maps the element into a record.
with package Element_Mapper is
new Util.Serialize.Mappers.Record_Mapper (<>);
procedure Rest_Get (URI : in String;
Mapping : in Util.Serialize.Mappers.Mapper_Access;
Path : in String := "";
Into : in Element_Mapper.Element_Type_Access);
private
type Client is new Util.Http.Clients.Client with record
Status : Natural := 0;
end record;
end Util.Http.Rest;
| 43.133333 | 93 | 0.608964 |
59bfc1eedbce8208c39a821b9c10f3378f4c7bfc | 40,054 | ads | Ada | tools-src/gnu/gcc/gcc/ada/s-taskin.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-taskin.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-taskin.ads | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . T A S K I N G --
-- --
-- S p e c --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2001, 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 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, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNARL was developed by the GNARL team at Florida State University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides necessary type definitions for compiler interface.
-- Note: the compiler generates direct calls to this interface, via Rtsfind.
-- Any changes to this interface may require corresponding compiler changes.
with Ada.Exceptions;
-- Used for: Exception_Id
with System.Parameters;
-- used for Size_Type
with System.Task_Info;
-- used for Task_Info_Type, Task_Image_Type
with System.Soft_Links;
-- used for TSD
with System.Task_Primitives;
-- used for Private_Data
-- Lock (in System.Tasking.Protected_Objects)
with Unchecked_Conversion;
package System.Tasking is
-- -------------------
-- -- Locking Rules --
-- -------------------
--
-- The following rules must be followed at all times, to prevent
-- deadlock and generally ensure correct operation of locking.
--
-- . Never lock a lock unless abort is deferred.
--
-- . Never undefer abort while holding a lock.
--
-- . Overlapping critical sections must be properly nested,
-- and locks must be released in LIFO order.
-- e.g., the following is not allowed:
--
-- Lock (X);
-- ...
-- Lock (Y);
-- ...
-- Unlock (X);
-- ...
-- Unlock (Y);
--
-- Locks with lower (smaller) level number cannot be locked
-- while holding a lock with a higher level number. (The level
-- number is the number at the left.)
--
-- 1. System.Tasking.PO_Simple.Protection.L (any PO lock)
-- 2. System.Tasking.Initialization.Global_Task_Lock (in body)
-- 3. System.Tasking.Task_Attributes.All_Attrs_L
-- 4. System.Task_Primitives.Operations.All_Tasks_L
-- 5. System.Interrupts.L (in body)
-- 6. System.Tasking.Ada_Task_Control_Block.LL.L (any TCB lock)
--
-- Clearly, there can be no circular chain of hold-and-wait
-- relationships involving locks in different ordering levels.
--
-- We used to have Global_Task_Lock before Protection.L but this was
-- clearly wrong since there can be calls to "new" inside protected
-- operations. The new ordering prevents these failures.
--
-- Sometime we need to hold two ATCB locks at the same time. To allow
-- us to order the locking, each ATCB is given a unique serial
-- number. If one needs to hold locks on several ATCBs at once,
-- the locks with lower serial numbers must be locked first.
--
-- We don't always need to check the serial numbers, since
-- the serial numbers are assigned sequentially, and so:
--
-- . The parent of a task always has a lower serial number.
-- . The activator of a task always has a lower serial number.
-- . The environment task has a lower serial number than any other task.
-- . If the activator of a task is different from the task's parent,
-- the parent always has a lower serial number than the activator.
--
-- For interrupt-handler state, we have a special locking rule.
-- See System.Interrupts (spec) for explanation.
---------------------------------
-- Task_ID related definitions --
---------------------------------
type Ada_Task_Control_Block;
type Task_ID is access all Ada_Task_Control_Block;
Null_Task : constant Task_ID;
type Task_List is array (Positive range <>) of Task_ID;
function Self return Task_ID;
pragma Inline (Self);
-- This is the compiler interface version of this function. Do not call
-- from the run-time system.
function To_Task_Id is new Unchecked_Conversion (System.Address, Task_ID);
function To_Address is new Unchecked_Conversion (Task_ID, System.Address);
-----------------------
-- Enumeration types --
-----------------------
type Task_States is
(Unactivated,
-- Task has been created but has not been activated.
-- It cannot be executing.
-- Active states
-- For all states from here down, the task has been activated.
-- For all states from here down, except for Terminated, the task
-- may be executing.
-- Activator = null iff it has not yet completed activating.
-- For all states from here down,
-- the task has been activated, and may be executing.
Runnable,
-- Task is not blocked for any reason known to Ada.
-- (It may be waiting for a mutex, though.)
-- It is conceptually "executing" in normal mode.
Terminated,
-- The task is terminated, in the sense of ARM 9.3 (5).
-- Any dependents that were waiting on terminate
-- alternatives have been awakened and have terminated themselves.
Activator_Sleep,
-- Task is waiting for created tasks to complete activation.
Acceptor_Sleep,
-- Task is waiting on an accept or selective wait statement.
Entry_Caller_Sleep,
-- Task is waiting on an entry call.
Async_Select_Sleep,
-- Task is waiting to start the abortable part of an
-- asynchronous select statement.
Delay_Sleep,
-- Task is waiting on a select statement with only a delay
-- alternative open.
Master_Completion_Sleep,
-- Master completion has two phases.
-- In Phase 1 the task is sleeping in Complete_Master
-- having completed a master within itself,
-- and is waiting for the tasks dependent on that master to become
-- terminated or waiting on a terminate Phase.
Master_Phase_2_Sleep,
-- In Phase 2 the task is sleeping in Complete_Master
-- waiting for tasks on terminate alternatives to finish
-- terminating.
-- The following are special uses of sleep, for server tasks
-- within the run-time system.
Interrupt_Server_Idle_Sleep,
Interrupt_Server_Blocked_Interrupt_Sleep,
Timer_Server_Sleep,
AST_Server_Sleep,
Asynchronous_Hold,
-- The task has been held by Asynchronous_Task_Control.Hold_Task
Interrupt_Server_Blocked_On_Event_Flag
-- The task has been blocked on a system call waiting for the
-- completion event.
);
type Call_Modes is
(Simple_Call, Conditional_Call, Asynchronous_Call, Timed_Call);
type Select_Modes is (Simple_Mode, Else_Mode, Terminate_Mode, Delay_Mode);
subtype Delay_Modes is Integer;
-------------------------------
-- Entry related definitions --
-------------------------------
Null_Entry : constant := 0;
Max_Entry : constant := Integer'Last;
Interrupt_Entry : constant := -2;
Cancelled_Entry : constant := -1;
type Entry_Index is range Interrupt_Entry .. Max_Entry;
Null_Task_Entry : constant := Null_Entry;
Max_Task_Entry : constant := Max_Entry;
type Task_Entry_Index is new Entry_Index
range Null_Task_Entry .. Max_Task_Entry;
type Entry_Call_Record;
type Entry_Call_Link is access all Entry_Call_Record;
type Entry_Queue is record
Head : Entry_Call_Link;
Tail : Entry_Call_Link;
end record;
type Task_Entry_Queue_Array is
array (Task_Entry_Index range <>) of Entry_Queue;
----------------------------------
-- Entry_Call_Record definition --
----------------------------------
type Entry_Call_State is
(Never_Abortable,
-- the call is not abortable, and never can be
Not_Yet_Abortable,
-- the call is not abortable, but may become so
Was_Abortable,
-- the call is not abortable, but once was
Now_Abortable,
-- the call is abortable
Done,
-- the call has been completed
Cancelled
-- the call was asynchronous, and was cancelled
);
-- Never_Abortable is used for calls that are made in a abort
-- deferred region (see ARM 9.8(5-11), 9.8 (20)).
-- Such a call is never abortable.
-- The Was_ vs. Not_Yet_ distinction is needed to decide whether it
-- is OK to advance into the abortable part of an async. select stmt.
-- That is allowed iff the mode is Now_ or Was_.
-- Done indicates the call has been completed, without cancellation,
-- or no call has been made yet at this ATC nesting level,
-- and so aborting the call is no longer an issue.
-- Completion of the call does not necessarily indicate "success";
-- the call may be returning an exception if Exception_To_Raise is
-- non-null.
-- Cancelled indicates the call was cancelled,
-- and so aborting the call is no longer an issue.
-- The call is on an entry queue unless
-- State >= Done, in which case it may or may not be still Onqueue.
-- Please do not modify the order of the values, without checking
-- all uses of this type. We rely on partial "monotonicity" of
-- Entry_Call_Record.State to avoid locking when we access this
-- value for certain tests. In particular:
-- 1) Once State >= Done, we can rely that the call has been
-- completed. If State >= Done, it will not
-- change until the task does another entry call at this level.
-- 2) Once State >= Was_Abortable, we can rely that the call has
-- been queued abortably at least once, and so the check for
-- whether it is OK to advance to the abortable part of an
-- async. select statement does not need to lock anything.
type Restricted_Entry_Call_Record is record
Self : Task_ID;
-- ID of the caller
Mode : Call_Modes;
State : Entry_Call_State;
pragma Atomic (State);
-- Indicates part of the state of the call.
-- Protection:
-- If the call is not on a queue, it should
-- only be accessed by Self, and Self does not need any
-- lock to modify this field.
-- Once the call is on a queue, the value should be
-- something other than Done unless it is cancelled, and access is
-- controller by the "server" of the queue -- i.e., the lock
-- of Checked_To_Protection (Call_Target)
-- if the call record is on the queue of a PO, or the lock
-- of Called_Target if the call is on the queue of a task.
-- See comments on type declaration for more details.
Uninterpreted_Data : System.Address;
-- Data passed by the compiler.
Exception_To_Raise : Ada.Exceptions.Exception_Id;
-- The exception to raise once this call has been completed without
-- being aborted.
end record;
pragma Suppress_Initialization (Restricted_Entry_Call_Record);
------------------------------------
-- Task related other definitions --
------------------------------------
type Activation_Chain is limited private;
type Activation_Chain_Access is access all Activation_Chain;
type Task_Procedure_Access is access procedure (Arg : System.Address);
type Access_Boolean is access all Boolean;
----------------------------------------------
-- Ada_Task_Control_Block (ATCB) definition --
----------------------------------------------
-- Notes on protection (synchronization) of TRTS data structures.
-- Any field of the TCB can be written by the activator of a task when the
-- task is created, since no other task can access the new task's
-- state until creation is complete.
-- The protection for each field is described in a comment starting with
-- "Protection:".
-- When a lock is used to protect an ATCB field, this lock is simply named.
-- Some protection is described in terms of tasks related to the
-- ATCB being protected. These are:
-- Self: The task which is controlled by this ATCB.
-- Acceptor: A task accepting a call from Self.
-- Caller: A task calling an entry of Self.
-- Parent: The task executing the master on which Self depends.
-- Dependent: A task dependent on Self.
-- Activator: The task that created Self and initiated its activation.
-- Created: A task created and activated by Self.
-- Note: The order of the fields is important to implement efficiently
-- tasking support under gdb.
-- Currently gdb relies on the order of the State, Parent, Base_Priority,
-- Task_Image, Call and LL fields.
----------------------------------------------------------------------
-- Common ATCB section --
-- --
-- This section is used by all GNARL implementations (regular and --
-- restricted) --
----------------------------------------------------------------------
type Common_ATCB is record
State : Task_States;
pragma Atomic (State);
-- Encodes some basic information about the state of a task,
-- including whether it has been activated, whether it is sleeping,
-- and whether it is terminated.
-- Protection: Self.L.
Parent : Task_ID;
-- The task on which this task depends.
-- See also Master_Level and Master_Within.
Base_Priority : System.Any_Priority;
-- Base priority, not changed during entry calls, only changed
-- via dynamic priorities package.
-- Protection: Only written by Self, accessed by anyone.
Current_Priority : System.Any_Priority;
-- Active priority, except that the effects of protected object
-- priority ceilings are not reflected. This only reflects explicit
-- priority changes and priority inherited through task activation
-- and rendezvous.
--
-- Ada 95 notes: In Ada 95, this field will be transferred to the
-- Priority field of an Entry_Calls component when an entry call
-- is initiated. The Priority of the Entry_Calls component will not
-- change for the duration of the call. The accepting task can
-- use it to boost its own priority without fear of its changing in
-- the meantime.
--
-- This can safely be used in the priority ordering
-- of entry queues. Once a call is queued, its priority does not
-- change.
--
-- Since an entry call cannot be made while executing
-- a protected action, the priority of a task will never reflect a
-- priority ceiling change at the point of an entry call.
--
-- Protection: Only written by Self, and only accessed when Acceptor
-- accepts an entry or when Created activates, at which points Self is
-- suspended.
Task_Image : System.Task_Info.Task_Image_Type;
-- holds an access to string that provides a readable id for task,
-- built from the variable of which it is a value or component.
Call : Entry_Call_Link;
-- The entry call that has been accepted by this task.
-- Protection: Self.L. Self will modify this field
-- when Self.Accepting is False, and will not need the mutex to do so.
-- Once a task sets Pending_ATC_Level = 0, no other task can access
-- this field.
LL : aliased Task_Primitives.Private_Data;
-- Control block used by the underlying low-level tasking
-- service (GNULLI).
-- Protection: This is used only by the GNULLI implementation, which
-- takes care of all of its synchronization.
Task_Arg : System.Address;
-- The argument to task procedure. Currently unused; this will
-- provide a handle for discriminant information.
-- Protection: Part of the synchronization between Self and
-- Activator. Activator writes it, once, before Self starts
-- executing. Thereafter, Self only reads it.
Task_Entry_Point : Task_Procedure_Access;
-- Information needed to call the procedure containing the code for
-- the body of this task.
-- Protection: Part of the synchronization between Self and
-- Activator. Activator writes it, once, before Self starts
-- executing. Self reads it, once, as part of its execution.
Compiler_Data : System.Soft_Links.TSD;
-- Task-specific data needed by the compiler to store
-- per-task structures.
-- Protection: Only accessed by Self.
All_Tasks_Link : Task_ID;
-- Used to link this task to the list of all tasks in the system.
-- Protection: All_Tasks.L.
Activation_Link : Task_ID;
-- Used to link this task to a list of tasks to be activated.
-- Protection: Only used by Activator.
Activator : Task_ID;
-- The task that created this task, either by declaring it as a task
-- object or by executing a task allocator.
-- The value is null iff Self has completed activation.
-- Protection: Set by Activator before Self is activated, and
-- only read and modified by Self after that.
Wait_Count : Integer;
-- This count is used by a task that is waiting for other tasks.
-- At all other times, the value should be zero.
-- It is used differently in several different states.
-- Since a task cannot be in more than one of these states at the
-- same time, a single counter suffices.
-- Protection: Self.L.
-- Activator_Sleep
-- This is the number of tasks that this task is activating, i.e. the
-- children that have started activation but have not completed it.
-- Protection: Self.L and Created.L. Both mutexes must be locked,
-- since Self.Activation_Count and Created.State must be synchronized.
-- Master_Completion_Sleep (phase 1)
-- This is the number dependent tasks of a master being
-- completed by Self that are not activated, not terminated, and
-- not waiting on a terminate alternative.
-- Master_Completion_2_Sleep (phase 2)
-- This is the count of tasks dependent on a master being
-- completed by Self which are waiting on a terminate alternative.
Elaborated : Access_Boolean;
-- Pointer to a flag indicating that this task's body has been
-- elaborated. The flag is created and managed by the
-- compiler-generated code.
-- Protection: The field itself is only accessed by Activator. The flag
-- that it points to is updated by Master and read by Activator; access
-- is assumed to be atomic.
Activation_Failed : Boolean;
-- Set to True if activation of a chain of tasks fails,
-- so that the activator should raise Tasking_Error.
Task_Info : System.Task_Info.Task_Info_Type;
-- System-specific attributes of the task as specified by the
-- Task_Info pragma.
end record;
---------------------------------------
-- Restricted_Ada_Task_Control_Block --
---------------------------------------
-- This type should only be used by the restricted GNARLI and by
-- restricted GNULL implementations to allocate an ATCB (see
-- System.Task_Primitives.Operations.New_ATCB) that will take
-- significantly less memory.
-- Note that the restricted GNARLI should only access fields that are
-- present in the Restricted_Ada_Task_Control_Block structure.
type Restricted_Ada_Task_Control_Block (Entry_Num : Task_Entry_Index) is
record
Common : Common_ATCB;
-- The common part between various tasking implementations
Entry_Call : aliased Restricted_Entry_Call_Record;
-- Protection: This field is used on entry call "queues" associated
-- with protected objects, and is protected by the protected object
-- lock.
end record;
pragma Suppress_Initialization (Restricted_Ada_Task_Control_Block);
Interrupt_Manager_ID : Task_ID;
-- This task ID is declared here to break circular dependencies.
-- Also declare Interrupt_Manager_ID after Task_ID is known, to avoid
-- generating unneeded finalization code.
-----------------------
-- List of all Tasks --
-----------------------
All_Tasks_List : Task_ID;
-- Global linked list of all tasks.
------------------------------------------
-- Regular (non restricted) definitions --
------------------------------------------
--------------------------------
-- Master Related Definitions --
--------------------------------
subtype Master_Level is Integer;
subtype Master_ID is Master_Level;
-- Normally, a task starts out with internal master nesting level
-- one larger than external master nesting level. It is incremented
-- to one by Enter_Master, which is called in the task body only if
-- the compiler thinks the task may have dependent tasks. It is set to 1
-- for the environment task, the level 2 is reserved for server tasks of
-- the run-time system (the so called "independent tasks"), and the level
-- 3 is for the library level tasks.
Environment_Task_Level : constant Master_Level := 1;
Independent_Task_Level : constant Master_Level := 2;
Library_Task_Level : constant Master_Level := 3;
------------------------------
-- Task size, priority info --
------------------------------
Unspecified_Priority : constant Integer := System.Priority'First - 1;
Priority_Not_Boosted : constant Integer := System.Priority'First - 1;
-- Definition of Priority actually has to come from the RTS configuration.
subtype Rendezvous_Priority is Integer
range Priority_Not_Boosted .. System.Any_Priority'Last;
------------------------------------
-- Rendezvous related definitions --
------------------------------------
No_Rendezvous : constant := 0;
Max_Select : constant Integer := Integer'Last;
-- RTS-defined
subtype Select_Index is Integer range No_Rendezvous .. Max_Select;
-- type Select_Index is range No_Rendezvous .. Max_Select;
subtype Positive_Select_Index is
Select_Index range 1 .. Select_Index'Last;
type Accept_Alternative is record
Null_Body : Boolean;
S : Task_Entry_Index;
end record;
type Accept_List is
array (Positive_Select_Index range <>) of Accept_Alternative;
type Accept_List_Access is access constant Accept_List;
-----------------------------------
-- ATC_Level related definitions --
-----------------------------------
Max_ATC_Nesting : constant Natural := 20;
subtype ATC_Level_Base is Integer range 0 .. Max_ATC_Nesting;
ATC_Level_Infinity : constant ATC_Level_Base := ATC_Level_Base'Last;
subtype ATC_Level is ATC_Level_Base range 0 .. ATC_Level_Base'Last - 1;
subtype ATC_Level_Index is ATC_Level range 1 .. ATC_Level'Last;
----------------------------------
-- Entry_Call_Record definition --
----------------------------------
type Entry_Call_Record is record
Self : Task_ID;
-- ID of the caller
Mode : Call_Modes;
State : Entry_Call_State;
pragma Atomic (State);
-- Indicates part of the state of the call.
-- Protection:
-- If the call is not on a queue, it should
-- only be accessed by Self, and Self does not need any
-- lock to modify this field.
-- Once the call is on a queue, the value should be
-- something other than Done unless it is cancelled, and access is
-- controller by the "server" of the queue -- i.e., the lock
-- of Checked_To_Protection (Call_Target)
-- if the call record is on the queue of a PO, or the lock
-- of Called_Target if the call is on the queue of a task.
-- See comments on type declaration for more details.
Uninterpreted_Data : System.Address;
-- Data passed by the compiler.
Exception_To_Raise : Ada.Exceptions.Exception_Id;
-- The exception to raise once this call has been completed without
-- being aborted.
Prev : Entry_Call_Link;
Next : Entry_Call_Link;
Level : ATC_Level;
-- One of Self and Level are redundant in this implementation, since
-- each Entry_Call_Record is at Self.Entry_Calls (Level). Since we must
-- have access to the entry call record to be reading this, we could
-- get Self from Level, or Level from Self. However, this requires
-- non-portable address arithmetic.
E : Entry_Index;
Prio : System.Any_Priority;
-- The above fields are those that there may be some hope of packing.
-- They are gathered together to allow for compilers that lay records
-- out contiguously, to allow for such packing.
Called_Task : Task_ID;
pragma Atomic (Called_Task);
-- Use for task entry calls.
-- The value is null if the call record is not in use.
-- Conversely, unless State is Done and Onqueue is false,
-- Called_Task points to an ATCB.
-- Protection: Called_Task.L.
Called_PO : System.Address;
pragma Atomic (Called_PO);
-- Similar to Called_Task but for protected objects.
-- Note that the previous implementation tried to merge both
-- Called_Task and Called_PO but this ended up in many unexpected
-- complications (e.g having to add a magic number in the ATCB, which
-- caused gdb lots of confusion) with no real gain since the Lock_Server
-- implementation still need to loop around chasing for pointer changes
-- even with a single pointer.
Acceptor_Prev_Call : Entry_Call_Link;
-- For task entry calls only.
Acceptor_Prev_Priority : Rendezvous_Priority := Priority_Not_Boosted;
-- For task entry calls only.
-- The priority of the most recent prior call being serviced.
-- For protected entry calls, this function should be performed by
-- GNULLI ceiling locking.
Cancellation_Attempted : Boolean := False;
pragma Atomic (Cancellation_Attempted);
-- Cancellation of the call has been attempted.
-- If it has succeeded, State = Cancelled.
-- ?????
-- Consider merging this into State?
Requeue_With_Abort : Boolean := False;
-- Temporary to tell caller whether requeue is with abort.
-- ?????
-- Find a better way of doing this.
Needs_Requeue : Boolean := False;
-- Temporary to tell acceptor of task entry call that
-- Exceptional_Complete_Rendezvous needs to do requeue.
end record;
------------------------------------
-- Task related other definitions --
------------------------------------
type Access_Address is access all System.Address;
----------------------------------------------
-- Ada_Task_Control_Block (ATCB) definition --
----------------------------------------------
type Entry_Call_Array is array (ATC_Level_Index) of
aliased Entry_Call_Record;
D_I_Count : constant := 2;
-- This constant may be adjusted, to allow more Address-sized
-- attributes to be stored directly in the task control block.
subtype Direct_Index is Integer range 0 .. D_I_Count - 1;
-- Attributes with indices in this range are stored directly in
-- the task control block. Such attributes must be Address-sized.
-- Other attributes will be held in dynamically allocated records
-- chained off of the task control block.
type Direct_Attribute_Array is
array (Direct_Index) of aliased System.Address;
type Direct_Index_Vector is mod 2 ** D_I_Count;
-- This is a bit-vector type, used to store information about
-- the usage of the direct attribute fields.
type Task_Serial_Number is mod 2 ** 64;
-- Used to give each task a unique serial number.
type Ada_Task_Control_Block (Entry_Num : Task_Entry_Index) is record
Common : Common_ATCB;
-- The common part between various tasking implementations
Entry_Calls : Entry_Call_Array;
-- An array of entry calls.
-- Protection: The elements of this array are on entry call queues
-- associated with protected objects or task entries, and are protected
-- by the protected object lock or Acceptor.L, respectively.
New_Base_Priority : System.Any_Priority;
-- New value for Base_Priority (for dynamic priorities package).
-- Protection: Self.L.
Global_Task_Lock_Nesting : Natural := 0;
-- This is the current nesting level of calls to
-- System.Tasking.Stages.Lock_Task_T.
-- This allows a task to call Lock_Task_T multiple times without
-- deadlocking. A task only locks All_Task_Lock when its
-- All_Tasks_Nesting goes from 0 to 1, and only unlocked when it
-- goes from 1 to 0.
-- Protection: Only accessed by Self.
Open_Accepts : Accept_List_Access;
-- This points to the Open_Accepts array of accept alternatives passed
-- to the RTS by the compiler-generated code to Selective_Wait.
-- It is non-null iff this task is ready to accept an entry call.
-- Protection: Self.L.
Chosen_Index : Select_Index;
-- The index in Open_Accepts of the entry call accepted by a selective
-- wait executed by this task.
-- Protection: Written by both Self and Caller. Usually protected
-- by Self.L. However, once the selection is known to have been
-- written it can be accessed without protection. This happens
-- after Self has updated it itself using information from a suspended
-- Caller, or after Caller has updated it and awakened Self.
Master_of_Task : Master_Level;
-- The task executing the master of this task, and the ID of this task's
-- master (unique only among masters currently active within Parent).
-- Protection: Set by Activator before Self is activated, and
-- read after Self is activated.
Master_Within : Master_Level;
-- The ID of the master currently executing within this task; that is,
-- the most deeply nested currently active master.
-- Protection: Only written by Self, and only read by Self or by
-- dependents when Self is attempting to exit a master. Since Self
-- will not write this field until the master is complete, the
-- synchronization should be adequate to prevent races.
Alive_Count : Integer := 0;
-- Number of tasks directly dependent on this task (including itself)
-- that are still "alive", i.e. not terminated.
-- Protection: Self.L.
Awake_Count : Integer := 0;
-- Number of tasks directly dependent on this task (including itself)
-- still "awake", i.e., are not terminated and not waiting on a
-- terminate alternative.
-- Invariant: Awake_Count <= Alive_Count
-- Protection: Self.L.
-- beginning of flags
Aborting : Boolean := False;
pragma Atomic (Aborting);
-- Self is in the process of aborting. While set, prevents multiple
-- abortion signals from being sent by different aborter while abortion
-- is acted upon. This is essential since an aborter which calls
-- Abort_To_Level could set the Pending_ATC_Level to yet a lower level
-- (than the current level), may be preempted and would send the
-- abortion signal when resuming execution. At this point, the abortee
-- may have completed abortion to the proper level such that the
-- signal (and resulting abortion exception) are not handled any more.
-- In other words, the flag prevents a race between multiple aborters
-- and the abortee.
-- Protection: Self.L.
ATC_Hack : Boolean := False;
pragma Atomic (ATC_Hack);
-- ?????
-- Temporary fix, to allow Undefer_Abort to reset Aborting in the
-- handler for Abort_Signal that encloses an async. entry call.
-- For the longer term, this should be done via code in the
-- handler itself.
Callable : Boolean := True;
-- It is OK to call entries of this task.
Dependents_Aborted : Boolean := False;
-- This is set to True by whichever task takes responsibility
-- for aborting the dependents of this task.
-- Protection: Self.L.
Interrupt_Entry : Boolean := False;
-- Indicates if one or more Interrupt Entries are attached to
-- the task. This flag is needed for cleaning up the Interrupt
-- Entry bindings.
Pending_Action : Boolean := False;
-- Unified flag indicating some action needs to be take when abort
-- next becomes undeferred. Currently set if:
-- . Pending_Priority_Change is set
-- . Pending_ATC_Level is changed
-- . Requeue involving POs
-- (Abortable field may have changed and the Wait_Until_Abortable
-- has to recheck the abortable status of the call.)
-- . Exception_To_Raise is non-null
-- Protection: Self.L.
-- This should never be reset back to False outside of the
-- procedure Do_Pending_Action, which is called by Undefer_Abort.
-- It should only be set to True by Set_Priority and Abort_To_Level.
Pending_Priority_Change : Boolean := False;
-- Flag to indicate pending priority change (for dynamic priorities
-- package). The base priority is updated on the next abortion
-- completion point (aka. synchronization point).
-- Protection: Self.L.
Terminate_Alternative : Boolean := False;
-- Task is accepting Select with Terminate Alternative.
-- Protection: Self.L.
-- end of flags
-- beginning of counts
ATC_Nesting_Level : ATC_Level := 1;
-- The dynamic level of ATC nesting (currently executing nested
-- asynchronous select statements) in this task.
-- Protection: Self_ID.L.
-- Only Self reads or updates this field.
-- Decrementing it deallocates an Entry_Calls component, and care must
-- be taken that all references to that component are eliminated
-- before doing the decrement. This in turn will require locking
-- a protected object (for a protected entry call) or the Acceptor's
-- lock (for a task entry call).
-- No other task should attempt to read or modify this value.
Deferral_Level : Natural := 1;
-- This is the number of times that Defer_Abortion has been called by
-- this task without a matching Undefer_Abortion call. Abortion is
-- only allowed when this zero.
-- It is initially 1, to protect the task at startup.
-- Protection: Only updated by Self; access assumed to be atomic.
Pending_ATC_Level : ATC_Level_Base := ATC_Level_Infinity;
-- The ATC level to which this task is currently being aborted.
-- If the value is zero, the entire task has "completed".
-- That may be via abort, exception propagation, or normal exit.
-- If the value is ATC_Level_Infinity, the task is not being
-- aborted to any level.
-- If the value is positive, the task has not completed.
-- This should ONLY be modified by
-- Abort_To_Level and Exit_One_ATC_Level.
-- Protection: Self.L.
Serial_Number : Task_Serial_Number;
-- A growing number to provide some way to check locking
-- rules/ordering.
Known_Tasks_Index : Integer := -1;
-- Index in the System.Tasking.Debug.Known_Tasks array.
User_State : Integer := 0;
-- user-writeable location, for use in debugging tasks;
-- debugger can display this value to show where the task currently
-- is, in user terms
Direct_Attributes : Direct_Attribute_Array;
-- for task attributes that have same size as Address
Is_Defined : Direct_Index_Vector := 0;
-- bit I is 1 iff Direct_Attributes (I) is defined
Indirect_Attributes : Access_Address;
-- a pointer to chain of records for other attributes that
-- are not address-sized, including all tagged types.
Entry_Queues : Task_Entry_Queue_Array (1 .. Entry_Num);
-- An array of task entry queues.
-- Protection: Self.L. Once a task has set Self.Stage to Completing, it
-- has exclusive access to this field.
end record;
pragma Volatile (Ada_Task_Control_Block);
---------------------
-- Initialize_ATCB --
---------------------
procedure Initialize_ATCB
(Self_ID : Task_ID;
Task_Entry_Point : Task_Procedure_Access;
Task_Arg : System.Address;
Parent : Task_ID;
Elaborated : Access_Boolean;
Base_Priority : System.Any_Priority;
Task_Info : System.Task_Info.Task_Info_Type;
Stack_Size : System.Parameters.Size_Type;
T : in out Task_ID;
Success : out Boolean);
-- Initialize fields of a TCB and link into global TCB structures
-- Call this only with abort deferred and holding All_Tasks_L.
private
Null_Task : constant Task_ID := null;
type Activation_Chain is record
T_ID : Task_ID;
end record;
pragma Volatile (Activation_Chain);
-- Activation_chain is an in-out parameter of initialization procedures
-- and it must be passed by reference because the init_proc may terminate
-- abnormally after creating task components, and these must be properly
-- registered for removal (Expunge_Unactivated_Tasks).
end System.Tasking;
| 40.746694 | 79 | 0.630099 |
0613f5e06fb3d9307afd184222ac45294ba97533 | 3,471 | adb | Ada | gcc-gcc-7_3_0-release/gcc/ada/g-boubuf.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-boubuf.adb | best08618/asylo | 5a520a9f5c461ede0f32acc284017b737a43898c | [
"Apache-2.0"
] | null | null | null | gcc-gcc-7_3_0-release/gcc/ada/g-boubuf.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 O U N D E D _ B U F F E R S --
-- --
-- B o d y --
-- --
-- Copyright (C) 2003-2010, 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 is maintained by Ada Core Technologies Inc (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
package body GNAT.Bounded_Buffers is
--------------------
-- Bounded_Buffer --
--------------------
protected body Bounded_Buffer is
------------
-- Insert --
------------
entry Insert (Item : Element) when Count /= Capacity is
begin
Values (Next_In) := Item;
Next_In := (Next_In mod Capacity) + 1;
Count := Count + 1;
end Insert;
------------
-- Remove --
------------
entry Remove (Item : out Element) when Count > 0 is
begin
Item := Values (Next_Out);
Next_Out := (Next_Out mod Capacity) + 1;
Count := Count - 1;
end Remove;
-----------
-- Empty --
-----------
function Empty return Boolean is
begin
return Count = 0;
end Empty;
----------
-- Full --
----------
function Full return Boolean is
begin
return Count = Capacity;
end Full;
------------
-- Extent --
------------
function Extent return Natural is
begin
return Count;
end Extent;
end Bounded_Buffer;
end GNAT.Bounded_Buffers;
| 38.142857 | 78 | 0.378565 |
59ec506fe74def0caea6a4ab2cca81676d30abcf | 2,124 | ads | Ada | include/sf-graphics-glyph.ads | Fabien-Chouteau/ASFML | 52a013554bcfb6150e0d6391871356c1443a6b93 | [
"Zlib"
] | null | null | null | include/sf-graphics-glyph.ads | Fabien-Chouteau/ASFML | 52a013554bcfb6150e0d6391871356c1443a6b93 | [
"Zlib"
] | null | null | null | include/sf-graphics-glyph.ads | Fabien-Chouteau/ASFML | 52a013554bcfb6150e0d6391871356c1443a6b93 | [
"Zlib"
] | null | null | null | --//////////////////////////////////////////////////////////
-- SFML - Simple and Fast Multimedia Library
-- Copyright (C) 2007-2015 Laurent Gomila ([email protected])
-- 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 Sf.Graphics.Rect;
package Sf.Graphics.Glyph is
--//////////////////////////////////////////////////////////
--//////////////////////////////////////////////////////////
--//////////////////////////////////////////////////////////
--//////////////////////////////////////////////////////////
--//////////////////////////////////////////////////////////
--/ @brief sfGlyph describes a glyph (a visual character)
--/
--//////////////////////////////////////////////////////////
--/< Offset to move horizontically to the next character
--/< Bounding rectangle of the glyph, in coordinates relative to the baseline
--/< Texture coordinates of the glyph inside the font's image
type sfGlyph is record
advance : aliased float;
bounds : aliased Sf.Graphics.Rect.sfFloatRect;
textureRect : aliased Sf.Graphics.Rect.sfIntRect;
end record;
pragma Convention (C_Pass_By_Copy, sfGlyph);
private
end Sf.Graphics.Glyph;
| 44.25 | 101 | 0.545669 |
29ae215ffaa05e38dcdb0701e587fa3bdb05b0ce | 285 | adb | Ada | src/libraries/Rewriters_Lib/tests/test_rewriters_lib.adb | Fabien-Chouteau/Renaissance-Ada | f9747d0f61840ed8bdeb0f21ce65f08399a54b4e | [
"BSD-3-Clause"
] | 1 | 2022-03-08T13:00:47.000Z | 2022-03-08T13:00:47.000Z | src/libraries/Rewriters_Lib/tests/test_rewriters_lib.adb | selroc/Renaissance-Ada | 39230b34aced4a9d83831be346ca103136c53715 | [
"BSD-3-Clause"
] | null | null | null | src/libraries/Rewriters_Lib/tests/test_rewriters_lib.adb | selroc/Renaissance-Ada | 39230b34aced4a9d83831be346ca103136c53715 | [
"BSD-3-Clause"
] | null | null | null | with AUnit.Reporter.Text;
with AUnit.Run;
with Rewriters_Lib_Suite; use Rewriters_Lib_Suite;
procedure Test_Rewriters_Lib is
procedure Runner is new AUnit.Run.Test_Runner (Suite);
Reporter : AUnit.Reporter.Text.Text_Reporter;
begin
Runner (Reporter);
end Test_Rewriters_Lib;
| 25.909091 | 57 | 0.803509 |
2947f227b8150fa3bae8e9beef0554efac847cf9 | 251,404 | adb | Ada | Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution3/.autopilot/db/dct_dct_1d.bind.adb | williambong/Vivado | 68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb | [
"MIT"
] | null | null | null | Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution3/.autopilot/db/dct_dct_1d.bind.adb | williambong/Vivado | 68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb | [
"MIT"
] | null | null | null | Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution3/.autopilot/db/dct_dct_1d.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>dct_dct_1d</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>4</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>src</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>src</originalName>
<rtlName></rtlName>
<coreName>RAM</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>tmp_1</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>
<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>dst</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>dst</originalName>
<rtlName></rtlName>
<coreName>RAM</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>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>tmp_11</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>
<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>105</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>tmp_11_read</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>128</item>
<item>129</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>tmp_1_read</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>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>130</item>
<item>131</item>
</oprand_edges>
<opcode>read</opcode>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>tmp_5</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>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>133</item>
<item>134</item>
<item>136</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>tmp_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</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>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>137</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>src_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>138</item>
<item>140</item>
<item>141</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>tmp_7</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>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>142</item>
<item>144</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>p_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>146</item>
<item>148</item>
<item>149</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>tmp_9</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>150</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>src_addr_1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>151</item>
<item>152</item>
<item>153</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>tmp_10</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>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>154</item>
<item>156</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>p_addr1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>157</item>
<item>158</item>
<item>159</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>tmp_12</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>160</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>src_addr_2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>161</item>
<item>162</item>
<item>163</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>tmp_13</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>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>164</item>
<item>166</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>p_addr2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>167</item>
<item>168</item>
<item>169</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp_14</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>170</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>src_addr_3</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>171</item>
<item>172</item>
<item>173</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_15</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>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>174</item>
<item>176</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>p_addr3</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>177</item>
<item>178</item>
<item>179</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>tmp_16</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>180</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>src_addr_4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>181</item>
<item>182</item>
<item>183</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>tmp_17</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>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>184</item>
<item>186</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>p_addr4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>187</item>
<item>188</item>
<item>189</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>tmp_18</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>190</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>src_addr_5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>191</item>
<item>192</item>
<item>193</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_19</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>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>194</item>
<item>196</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>p_addr5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>197</item>
<item>198</item>
<item>199</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_20</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>200</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>src_addr_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>201</item>
<item>202</item>
<item>203</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>tmp_21</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>7</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>206</item>
</oprand_edges>
<opcode>or</opcode>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>p_addr6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>207</item>
<item>208</item>
<item>209</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>tmp_22</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>210</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>src_addr_7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>211</item>
<item>212</item>
<item>213</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_23</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>7</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>214</item>
<item>215</item>
<item>216</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>p_addr16_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>57</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>217</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>57</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>218</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>k</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>220</item>
<item>221</item>
<item>222</item>
<item>223</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>exitcond1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>57</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>224</item>
<item>226</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>k_1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>57</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>k</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>227</item>
<item>229</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>57</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>232</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>tmp</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</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>233</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>dct_coeff_table_0_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>234</item>
<item>235</item>
<item>236</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>dct_coeff_table_0_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>14</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>237</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>coeff_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>238</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>src_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>239</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>tmp_7_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>240</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>tmp_8</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>241</item>
<item>242</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>dct_coeff_table_1_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>243</item>
<item>244</item>
<item>245</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>dct_coeff_table_1_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>246</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>coeff_1_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>247</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>src_load_1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>248</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>tmp_7_1_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>249</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>tmp_8_1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>250</item>
<item>251</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>dct_coeff_table_2_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>252</item>
<item>253</item>
<item>254</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>dct_coeff_table_2_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>255</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>coeff_2_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>256</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>src_load_2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>257</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>tmp_7_2_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>258</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>tmp_8_2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>259</item>
<item>260</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>dct_coeff_table_3_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>261</item>
<item>262</item>
<item>263</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>dct_coeff_table_3_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>264</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>coeff_3_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>265</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>src_load_3</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>266</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>tmp_7_3_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>267</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>tmp_8_3</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>268</item>
<item>269</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>dct_coeff_table_4_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>270</item>
<item>271</item>
<item>272</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>dct_coeff_table_4_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>273</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>coeff_4_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>274</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>src_load_4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>275</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>tmp_7_4_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>276</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>tmp_8_4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>277</item>
<item>278</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>dct_coeff_table_5_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>279</item>
<item>280</item>
<item>281</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>dct_coeff_table_5_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>282</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>coeff_5_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>283</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>src_load_5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>284</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>tmp_7_5_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>285</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>tmp_8_5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>286</item>
<item>287</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>dct_coeff_table_6_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>288</item>
<item>289</item>
<item>290</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>dct_coeff_table_6_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>291</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>coeff_6_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>292</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>src_load_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>293</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>tmp_7_6_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>294</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>tmp_8_6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>295</item>
<item>296</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>dct_coeff_table_7_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>3</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>297</item>
<item>298</item>
<item>299</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>dct_coeff_table_7_load</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>15</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>300</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>coeff_7_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>301</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>src_load_7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</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>302</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>tmp_7_7_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>303</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>tmp_8_7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>61</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>61</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>304</item>
<item>305</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>tmp2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>306</item>
<item>307</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>tmp3</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>308</item>
<item>309</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>tmp1</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>310</item>
<item>311</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>tmp5</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>312</item>
<item>313</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>tmp7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>314</item>
<item>316</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>tmp6</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>317</item>
<item>318</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>tmp4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>319</item>
<item>320</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>tmp_2</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>29</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>321</item>
<item>322</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>tmp_4</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>324</item>
<item>325</item>
<item>327</item>
<item>329</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>117</id>
<name>tmp_trn_cast</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</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>330</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>118</id>
<name>p_addr7</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</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>331</item>
<item>332</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>119</id>
<name>tmp_24</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</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>333</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>120</id>
<name>dst_addr</name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</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>334</item>
<item>335</item>
<item>336</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>121</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>63</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>63</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>337</item>
<item>338</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>123</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>57</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>339</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>125</id>
<name></name>
<fileName>dct.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>dct_1d</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>dct.cpp</first>
<second>dct_1d</second>
</first>
<second>65</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>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>16</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_110">
<Value>
<Obj>
<type>2</type>
<id>135</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="_111">
<Value>
<Obj>
<type>2</type>
<id>139</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="_112">
<Value>
<Obj>
<type>2</type>
<id>143</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_113">
<Value>
<Obj>
<type>2</type>
<id>147</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>25</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_114">
<Value>
<Obj>
<type>2</type>
<id>155</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_115">
<Value>
<Obj>
<type>2</type>
<id>165</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_116">
<Value>
<Obj>
<type>2</type>
<id>175</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_117">
<Value>
<Obj>
<type>2</type>
<id>185</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>5</content>
</item>
<item class_id_reference="16" object_id="_118">
<Value>
<Obj>
<type>2</type>
<id>195</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_119">
<Value>
<Obj>
<type>2</type>
<id>205</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>7</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_120">
<Value>
<Obj>
<type>2</type>
<id>219</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="_121">
<Value>
<Obj>
<type>2</type>
<id>225</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="_122">
<Value>
<Obj>
<type>2</type>
<id>228</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="_123">
<Value>
<Obj>
<type>2</type>
<id>315</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>29</bitwidth>
</Value>
<const_type>0</const_type>
<content>4096</content>
</item>
<item class_id_reference="16" object_id="_124">
<Value>
<Obj>
<type>2</type>
<id>326</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>13</content>
</item>
<item class_id_reference="16" object_id="_125">
<Value>
<Obj>
<type>2</type>
<id>328</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>28</content>
</item>
</consts>
<blocks class_id="17" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="18" tracking_level="1" version="0" object_id="_126">
<Obj>
<type>3</type>
<id>49</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>36</count>
<item_version>0</item_version>
<item>13</item>
<item>14</item>
<item>15</item>
<item>16</item>
<item>17</item>
<item>18</item>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
<item>25</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>32</item>
<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>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
<item>47</item>
<item>48</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_127">
<Obj>
<type>3</type>
<id>54</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>52</item>
<item>53</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_128">
<Obj>
<type>3</type>
<id>124</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>64</count>
<item_version>0</item_version>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</item>
<item>67</item>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
<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>
<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>123</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_129">
<Obj>
<type>3</type>
<id>126</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>125</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>185</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_130">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_131">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_132">
<id>134</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_133">
<id>136</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_134">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_135">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_136">
<id>140</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_137">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>17</sink_obj>
</item>
<item class_id_reference="20" object_id="_138">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_139">
<id>144</id>
<edge_type>1</edge_type>
<source_obj>143</source_obj>
<sink_obj>18</sink_obj>
</item>
<item class_id_reference="20" object_id="_140">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_141">
<id>149</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>153</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>158</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_150">
<id>160</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>24</sink_obj>
</item>
<item class_id_reference="20" object_id="_151">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_152">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_153">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>25</sink_obj>
</item>
<item class_id_reference="20" object_id="_154">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_155">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>165</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_156">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_157">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_158">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_159">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_160">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_161">
<id>173</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_162">
<id>174</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_163">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>175</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_164">
<id>178</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_165">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_166">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_167">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_168">
<id>182</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_169">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_170">
<id>184</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_171">
<id>186</id>
<edge_type>1</edge_type>
<source_obj>185</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_172">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_173">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_174">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_175">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_176">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_177">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_178">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_179">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>195</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_180">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_181">
<id>199</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_182">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_183">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_184">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_185">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_186">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_187">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>205</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_188">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>147</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_189">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_190">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_191">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_192">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_193">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_194">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_195">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>135</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_196">
<id>217</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_197">
<id>218</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_198">
<id>220</id>
<edge_type>1</edge_type>
<source_obj>219</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_199">
<id>221</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_200">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_201">
<id>223</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_202">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_203">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>225</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_204">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_205">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_206">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_207">
<id>231</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_208">
<id>232</id>
<edge_type>2</edge_type>
<source_obj>126</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_209">
<id>233</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_210">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_211">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_212">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>60</sink_obj>
</item>
<item class_id_reference="20" object_id="_213">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_214">
<id>238</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_215">
<id>239</id>
<edge_type>1</edge_type>
<source_obj>17</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_216">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>64</sink_obj>
</item>
<item class_id_reference="20" object_id="_217">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_218">
<id>242</id>
<edge_type>1</edge_type>
<source_obj>62</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_219">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_220">
<id>244</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_221">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>66</sink_obj>
</item>
<item class_id_reference="20" object_id="_222">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
</item>
<item class_id_reference="20" object_id="_223">
<id>247</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>68</sink_obj>
</item>
<item class_id_reference="20" object_id="_224">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>69</sink_obj>
</item>
<item class_id_reference="20" object_id="_225">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>70</sink_obj>
</item>
<item class_id_reference="20" object_id="_226">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>70</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_227">
<id>251</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>71</sink_obj>
</item>
<item class_id_reference="20" object_id="_228">
<id>252</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_229">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_230">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>72</sink_obj>
</item>
<item class_id_reference="20" object_id="_231">
<id>255</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>73</sink_obj>
</item>
<item class_id_reference="20" object_id="_232">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>74</sink_obj>
</item>
<item class_id_reference="20" object_id="_233">
<id>257</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>75</sink_obj>
</item>
<item class_id_reference="20" object_id="_234">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>75</source_obj>
<sink_obj>76</sink_obj>
</item>
<item class_id_reference="20" object_id="_235">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_236">
<id>260</id>
<edge_type>1</edge_type>
<source_obj>74</source_obj>
<sink_obj>77</sink_obj>
</item>
<item class_id_reference="20" object_id="_237">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_238">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_239">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>78</sink_obj>
</item>
<item class_id_reference="20" object_id="_240">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>78</source_obj>
<sink_obj>79</sink_obj>
</item>
<item class_id_reference="20" object_id="_241">
<id>265</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
</item>
<item class_id_reference="20" object_id="_242">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>81</sink_obj>
</item>
<item class_id_reference="20" object_id="_243">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
</item>
<item class_id_reference="20" object_id="_244">
<id>268</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_245">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>80</source_obj>
<sink_obj>83</sink_obj>
</item>
<item class_id_reference="20" object_id="_246">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_247">
<id>271</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_248">
<id>272</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>84</sink_obj>
</item>
<item class_id_reference="20" object_id="_249">
<id>273</id>
<edge_type>1</edge_type>
<source_obj>84</source_obj>
<sink_obj>85</sink_obj>
</item>
<item class_id_reference="20" object_id="_250">
<id>274</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>86</sink_obj>
</item>
<item class_id_reference="20" object_id="_251">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>87</sink_obj>
</item>
<item class_id_reference="20" object_id="_252">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>87</source_obj>
<sink_obj>88</sink_obj>
</item>
<item class_id_reference="20" object_id="_253">
<id>277</id>
<edge_type>1</edge_type>
<source_obj>88</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_254">
<id>278</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>89</sink_obj>
</item>
<item class_id_reference="20" object_id="_255">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_256">
<id>280</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_257">
<id>281</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>90</sink_obj>
</item>
<item class_id_reference="20" object_id="_258">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>90</source_obj>
<sink_obj>91</sink_obj>
</item>
<item class_id_reference="20" object_id="_259">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>92</sink_obj>
</item>
<item class_id_reference="20" object_id="_260">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>93</sink_obj>
</item>
<item class_id_reference="20" object_id="_261">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>93</source_obj>
<sink_obj>94</sink_obj>
</item>
<item class_id_reference="20" object_id="_262">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_263">
<id>287</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>95</sink_obj>
</item>
<item class_id_reference="20" object_id="_264">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_265">
<id>289</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_266">
<id>290</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>96</sink_obj>
</item>
<item class_id_reference="20" object_id="_267">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>97</sink_obj>
</item>
<item class_id_reference="20" object_id="_268">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>98</sink_obj>
</item>
<item class_id_reference="20" object_id="_269">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>99</sink_obj>
</item>
<item class_id_reference="20" object_id="_270">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>99</source_obj>
<sink_obj>100</sink_obj>
</item>
<item class_id_reference="20" object_id="_271">
<id>295</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_272">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>98</source_obj>
<sink_obj>101</sink_obj>
</item>
<item class_id_reference="20" object_id="_273">
<id>297</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_274">
<id>298</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_275">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>59</source_obj>
<sink_obj>102</sink_obj>
</item>
<item class_id_reference="20" object_id="_276">
<id>300</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
</item>
<item class_id_reference="20" object_id="_277">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>104</sink_obj>
</item>
<item class_id_reference="20" object_id="_278">
<id>302</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>105</sink_obj>
</item>
<item class_id_reference="20" object_id="_279">
<id>303</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>106</sink_obj>
</item>
<item class_id_reference="20" object_id="_280">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_281">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>107</sink_obj>
</item>
<item class_id_reference="20" object_id="_282">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_283">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>108</sink_obj>
</item>
<item class_id_reference="20" object_id="_284">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_285">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>109</sink_obj>
</item>
<item class_id_reference="20" object_id="_286">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_287">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>110</sink_obj>
</item>
<item class_id_reference="20" object_id="_288">
<id>312</id>
<edge_type>1</edge_type>
<source_obj>95</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_289">
<id>313</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>111</sink_obj>
</item>
<item class_id_reference="20" object_id="_290">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>107</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_291">
<id>316</id>
<edge_type>1</edge_type>
<source_obj>315</source_obj>
<sink_obj>112</sink_obj>
</item>
<item class_id_reference="20" object_id="_292">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>101</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_293">
<id>318</id>
<edge_type>1</edge_type>
<source_obj>112</source_obj>
<sink_obj>113</sink_obj>
</item>
<item class_id_reference="20" object_id="_294">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_295">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>113</source_obj>
<sink_obj>114</sink_obj>
</item>
<item class_id_reference="20" object_id="_296">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_297">
<id>322</id>
<edge_type>1</edge_type>
<source_obj>114</source_obj>
<sink_obj>115</sink_obj>
</item>
<item class_id_reference="20" object_id="_298">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_299">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>326</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_300">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>328</source_obj>
<sink_obj>116</sink_obj>
</item>
<item class_id_reference="20" object_id="_301">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>117</sink_obj>
</item>
<item class_id_reference="20" object_id="_302">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_303">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>117</source_obj>
<sink_obj>118</sink_obj>
</item>
<item class_id_reference="20" object_id="_304">
<id>333</id>
<edge_type>1</edge_type>
<source_obj>118</source_obj>
<sink_obj>119</sink_obj>
</item>
<item class_id_reference="20" object_id="_305">
<id>334</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_306">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_307">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>120</sink_obj>
</item>
<item class_id_reference="20" object_id="_308">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>116</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_309">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>120</source_obj>
<sink_obj>121</sink_obj>
</item>
<item class_id_reference="20" object_id="_310">
<id>339</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>123</sink_obj>
</item>
<item class_id_reference="20" object_id="_311">
<id>367</id>
<edge_type>2</edge_type>
<source_obj>49</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_312">
<id>368</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>126</sink_obj>
</item>
<item class_id_reference="20" object_id="_313">
<id>369</id>
<edge_type>2</edge_type>
<source_obj>54</source_obj>
<sink_obj>124</sink_obj>
</item>
<item class_id_reference="20" object_id="_314">
<id>370</id>
<edge_type>2</edge_type>
<source_obj>124</source_obj>
<sink_obj>54</sink_obj>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_315">
<mId>1</mId>
<mTag>dct_dct_1d</mTag>
<mType>0</mType>
<sub_regions>
<count>3</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<item>4</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>37</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_316">
<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>49</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="_317">
<mId>3</mId>
<mTag>DCT_Outer_Loop</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>54</item>
<item>124</item>
</basic_blocks>
<mII>4</mII>
<mDepth>8</mDepth>
<mMinTripCount>8</mMinTripCount>
<mMaxTripCount>8</mMaxTripCount>
<mMinLatency>35</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_318">
<mId>4</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>126</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>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_319">
<states class_id="25" tracking_level="0" version="0">
<count>10</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_320">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>36</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_321">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_322">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_323">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_324">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_325">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_326">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_327">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_328">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_329">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_330">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_331">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_332">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_333">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_334">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_335">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_336">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_337">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_338">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_339">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_340">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_341">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_342">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_343">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_344">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_345">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_346">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_347">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_348">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_349">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_350">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_351">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_352">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_353">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_354">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_355">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_356">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_357">
<id>2</id>
<operations>
<count>11</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_358">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_359">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_360">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_361">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_362">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_363">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_364">
<id>67</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_365">
<id>69</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_366">
<id>81</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_367">
<id>117</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_368">
<id>118</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_369">
<id>3</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_370">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_371">
<id>61</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_372">
<id>63</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_373">
<id>67</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_374">
<id>69</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_375">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_376">
<id>79</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_377">
<id>81</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_378">
<id>93</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_379">
<id>4</id>
<operations>
<count>19</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_380">
<id>61</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_381">
<id>63</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_382">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_383">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_384">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_385">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_386">
<id>73</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_387">
<id>75</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_388">
<id>79</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_389">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_390">
<id>85</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_391">
<id>87</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_392">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_393">
<id>91</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_394">
<id>93</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_395">
<id>96</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_396">
<id>97</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_397">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_398">
<id>103</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_399">
<id>5</id>
<operations>
<count>16</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_400">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_401">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_402">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_403">
<id>73</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_404">
<id>75</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_405">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_406">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_407">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_408">
<id>85</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_409">
<id>87</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_410">
<id>91</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_411">
<id>97</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_412">
<id>99</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_413">
<id>103</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_414">
<id>105</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_415">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_416">
<id>6</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_417">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_418">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_419">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_420">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_421">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_422">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_423">
<id>99</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_424">
<id>105</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_425">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_426">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_427">
<id>7</id>
<operations>
<count>8</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_428">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_429">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_430">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_431">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_432">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_433">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_434">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_435">
<id>113</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_436">
<id>8</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_437">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_438">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_439">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_440">
<id>111</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_441">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_442">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_443">
<id>116</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_444">
<id>9</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_445">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_446">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_447">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_448">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_449">
<id>119</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_450">
<id>120</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_451">
<id>121</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_452">
<id>122</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_453">
<id>123</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_454">
<id>10</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_455">
<id>125</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>10</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_456">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>18</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="_457">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>32</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="_458">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>33</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="_459">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>34</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="_460">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>35</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="_461">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>36</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="_462">
<inState>8</inState>
<outState>9</outState>
<condition>
<id>37</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="_463">
<inState>9</inState>
<outState>2</outState>
<condition>
<id>38</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="_464">
<inState>2</inState>
<outState>10</outState>
<condition>
<id>31</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>51</first>
<second>0</second>
</first>
<second>0</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_465">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>39</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>51</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="36" tracking_level="1" version="0" object_id="_466">
<dp_component_resource class_id="37" 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="38" 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="39" tracking_level="0" version="0">
<count>105</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>13</first>
<second class_id="41" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>17</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>19</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>25</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>27</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>29</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>30</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>32</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>52</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>78</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>84</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>86</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>87</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>92</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>93</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>3</first>
<second>1</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>7</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>8</first>
<second>0</second>
</second>
</item>
<item>
<first>120</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>121</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>123</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>125</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="42" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="43" tracking_level="0" version="0">
<first>49</first>
<second class_id="44" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>124</first>
<second>
<first>1</first>
<second>8</second>
</second>
</item>
<item>
<first>126</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="45" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="1" version="0" object_id="_467">
<region_name>DCT_Outer_Loop</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>54</item>
<item>124</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>4</interval>
<pipe_depth>8</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="47" tracking_level="0" version="0">
<count>89</count>
<item_version>0</item_version>
<item class_id="48" tracking_level="0" version="0">
<first>84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>96</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>159</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>67</item>
<item>67</item>
</second>
</item>
<item>
<first>164</first>
<second>
<count>16</count>
<item_version>0</item_version>
<item>69</item>
<item>69</item>
<item>81</item>
<item>81</item>
<item>63</item>
<item>63</item>
<item>93</item>
<item>93</item>
<item>75</item>
<item>75</item>
<item>87</item>
<item>87</item>
<item>99</item>
<item>99</item>
<item>105</item>
<item>105</item>
</second>
</item>
<item>
<first>171</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>178</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>61</item>
<item>61</item>
</second>
</item>
<item>
<first>183</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>79</item>
<item>79</item>
</second>
</item>
<item>
<first>195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>202</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>73</item>
</second>
</item>
<item>
<first>207</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>214</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>85</item>
<item>85</item>
</second>
</item>
<item>
<first>219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>226</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>91</item>
<item>91</item>
</second>
</item>
<item>
<first>231</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>238</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>97</item>
<item>97</item>
</second>
</item>
<item>
<first>243</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>250</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>103</item>
<item>103</item>
</second>
</item>
<item>
<first>255</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>343</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>351</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>375</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>394</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>400</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>408</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>413</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>450</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>456</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>461</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</item>
</second>
</item>
<item>
<first>465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>470</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>473</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>477</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>483</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>486</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>490</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>503</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>506</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>510</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>516</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>540</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>543</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>565</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>569</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>77</item>
<item>109</item>
</second>
</item>
<item>
<first>577</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>89</item>
<item>111</item>
</second>
</item>
<item>
<first>585</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>101</item>
<item>113</item>
</second>
</item>
<item>
<first>592</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>65</item>
<item>108</item>
</second>
</item>
<item>
<first>599</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>107</item>
<item>112</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="50" tracking_level="0" version="0">
<count>77</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first>coeff_1_cast_fu_470</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>coeff_2_cast_fu_503</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>coeff_3_cast_fu_490</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>coeff_4_cast_fu_540</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>coeff_5_cast_fu_510</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>coeff_6_cast_fu_526</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>coeff_7_cast_fu_533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>coeff_cast_fu_483</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>dct_coeff_table_0_addr_gep_fu_171</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>dct_coeff_table_1_addr_gep_fu_152</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>dct_coeff_table_2_addr_gep_fu_195</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>dct_coeff_table_3_addr_gep_fu_183</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>dct_coeff_table_4_addr_gep_fu_207</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>dct_coeff_table_5_addr_gep_fu_219</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>dct_coeff_table_6_addr_gep_fu_231</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>dct_coeff_table_7_addr_gep_fu_243</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>dst_addr_gep_fu_255</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>120</item>
</second>
</item>
<item>
<first>exitcond1_fu_444</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>grp_fu_569</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>77</item>
<item>109</item>
</second>
</item>
<item>
<first>grp_fu_577</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>89</item>
<item>111</item>
</second>
</item>
<item>
<first>grp_fu_585</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>101</item>
<item>113</item>
</second>
</item>
<item>
<first>grp_fu_592</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>65</item>
<item>108</item>
</second>
</item>
<item>
<first>grp_fu_599</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>107</item>
<item>112</item>
</second>
</item>
<item>
<first>k_1_fu_450</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>k_phi_fu_271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>p_addr16_cast_fu_440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>p_addr1_fu_324</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>p_addr2_fu_343</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>p_addr3_fu_362</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>p_addr4_fu_381</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>p_addr5_fu_400</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>p_addr6_fu_419</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>p_addr7_fu_465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>p_addr_fu_305</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>src_addr_1_gep_fu_103</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>src_addr_2_gep_fu_110</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>src_addr_3_gep_fu_117</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>src_addr_4_gep_fu_124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>src_addr_5_gep_fu_131</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>src_addr_6_gep_fu_138</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>src_addr_7_gep_fu_145</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>src_addr_gep_fu_96</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>tmp1_fu_522</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>tmp4_fu_546</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>tmp_10_fu_318</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>tmp_12_fu_332</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>tmp_13_fu_337</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_14_fu_351</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>tmp_15_fu_356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>tmp_16_fu_370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>tmp_17_fu_375</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_18_fu_389</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>tmp_19_fu_394</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>tmp_20_fu_408</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>tmp_21_fu_413</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>tmp_22_fu_427</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_23_fu_432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>tmp_24_fu_565</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>119</item>
</second>
</item>
<item>
<first>tmp_2_fu_550</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>tmp_4_fu_555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>tmp_5_fu_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_6_fu_294</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>tmp_7_1_cast_fu_473</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>tmp_7_2_cast_fu_506</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>tmp_7_3_cast_fu_493</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>tmp_7_4_cast_fu_543</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>tmp_7_5_cast_fu_513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>tmp_7_6_cast_fu_529</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>tmp_7_7_cast_fu_536</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>tmp_7_cast_fu_486</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>tmp_7_fu_299</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>tmp_8_1_fu_477</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>tmp_8_3_fu_497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>tmp_8_5_fu_516</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>tmp_9_fu_313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>tmp_fu_456</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>tmp_trn_cast_fu_461</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>117</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>2</count>
<item_version>0</item_version>
<item>
<first>tmp_11_read_read_fu_84</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>tmp_1_read_read_fu_90</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</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="52" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="53" tracking_level="0" version="0">
<first class_id="54" tracking_level="0" version="0">
<first>dct_coeff_table_0</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>61</item>
<item>61</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table_1</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>67</item>
<item>67</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table_2</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>73</item>
<item>73</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table_3</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>79</item>
<item>79</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table_4</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>85</item>
<item>85</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table_5</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>91</item>
<item>91</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table_6</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>97</item>
<item>97</item>
</second>
</item>
<item>
<first>
<first>dct_coeff_table_7</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>103</item>
<item>103</item>
</second>
</item>
<item>
<first>
<first>dst</first>
<second>0</second>
</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
<item>
<first>
<first>src</first>
<second>0</second>
</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>69</item>
<item>69</item>
<item>63</item>
<item>63</item>
<item>75</item>
<item>75</item>
<item>99</item>
<item>99</item>
</second>
</item>
<item>
<first>
<first>src</first>
<second>1</second>
</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>81</item>
<item>81</item>
<item>93</item>
<item>93</item>
<item>87</item>
<item>87</item>
<item>105</item>
<item>105</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>41</count>
<item_version>0</item_version>
<item>
<first>267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>278</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>69</item>
<item>63</item>
<item>75</item>
<item>99</item>
</second>
</item>
<item>
<first>282</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>81</item>
<item>105</item>
</second>
</item>
<item>
<first>608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>613</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>618</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>623</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>628</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>638</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>648</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>653</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>657</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>662</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>673</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>678</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>683</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>688</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>698</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>718</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>728</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>733</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>738</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>743</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>748</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>758</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>763</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>768</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>773</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>778</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>783</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>788</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>793</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>798</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>41</count>
<item_version>0</item_version>
<item>
<first>dct_coeff_table_0_addr_reg_683</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>dct_coeff_table_0_load_reg_698</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>dct_coeff_table_1_addr_reg_673</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>dct_coeff_table_1_load_reg_688</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>dct_coeff_table_2_addr_reg_708</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>dct_coeff_table_2_load_reg_743</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>dct_coeff_table_3_addr_reg_693</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>dct_coeff_table_3_load_reg_713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>dct_coeff_table_4_addr_reg_718</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>dct_coeff_table_4_load_reg_753</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>dct_coeff_table_5_addr_reg_723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>dct_coeff_table_5_load_reg_763</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>dct_coeff_table_6_addr_reg_733</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>dct_coeff_table_6_load_reg_768</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>dct_coeff_table_7_addr_reg_738</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>dct_coeff_table_7_load_reg_773</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>exitcond1_reg_653</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>k_1_reg_657</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>k_reg_267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>p_addr16_cast_reg_648</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>p_addr7_reg_678</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>118</item>
</second>
</item>
<item>
<first>reg_278</first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>69</item>
<item>63</item>
<item>75</item>
<item>99</item>
</second>
</item>
<item>
<first>reg_282</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>81</item>
<item>105</item>
</second>
</item>
<item>
<first>src_addr_1_reg_613</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>src_addr_2_reg_618</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>src_addr_3_reg_623</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>src_addr_4_reg_628</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>src_addr_5_reg_633</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>src_addr_6_reg_638</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>src_addr_7_reg_643</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>src_addr_reg_608</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>src_load_4_reg_758</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>src_load_5_reg_728</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>tmp1_reg_788</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>tmp2_reg_778</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>tmp6_reg_793</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>113</item>
</second>
</item>
<item>
<first>tmp_4_reg_798</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>116</item>
</second>
</item>
<item>
<first>tmp_8_1_reg_703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>tmp_8_3_reg_748</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>tmp_8_5_reg_783</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>tmp_reg_662</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>k_reg_267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="55" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="56" tracking_level="0" version="0">
<first>dst(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>store</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>121</item>
</second>
</item>
</second>
</item>
<item>
<first>src(p0)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>load</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>69</item>
<item>69</item>
<item>63</item>
<item>63</item>
<item>75</item>
<item>75</item>
<item>99</item>
<item>99</item>
</second>
</item>
</second>
</item>
<item>
<first>src(p1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>load</first>
<second>
<count>8</count>
<item_version>0</item_version>
<item>81</item>
<item>81</item>
<item>93</item>
<item>93</item>
<item>87</item>
<item>87</item>
<item>105</item>
<item>105</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_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>14</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_11</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="57" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="0" version="0">
<first>1</first>
<second>RAM</second>
</item>
<item>
<first>3</first>
<second>RAM</second>
</item>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
| 24.661958 | 98 | 0.579832 |
100ac88d21a8bd610eb6e49871f36a196bf2f7b5 | 5,853 | adb | Ada | ga_lib/src/e3ga_utilities.adb | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 3 | 2019-04-12T01:09:55.000Z | 2021-02-24T18:17:32.000Z | ga_lib/src/e3ga_utilities.adb | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 1 | 2020-08-12T10:10:25.000Z | 2020-08-12T10:10:25.000Z | ga_lib/src/e3ga_utilities.adb | rogermc2/GA_Ada | 0b55eb5691ac1c543c79c9a06ffdbe2e47e8f1be | [
"ISC"
] | 1 | 2019-04-12T01:14:15.000Z | 2019-04-12T01:14:15.000Z |
with Ada.Numerics;
with Ada.Text_IO; use Ada.Text_IO;
with Blade;
with Blade_Types;
with E3GA;
with GA_Utilities;
package body E3GA_Utilities is
-- -------------------------------------------------------------------------
function exp (BV : Multivectors.Bivector) return Multivectors.Rotor is
V : constant Multivectors.M_Vector :=
Inner_Product (BV, BV, Blade.Left_Contraction);
X2 : float := E3GA.e1_e2 (V);
Half_Angle : float;
Cos_HA : float;
Sin_HA : float;
Result : Rotor;
begin
if X2 > 0.0 then
X2 := 0.0;
end if;
Half_Angle := GA_Maths.Float_Functions.Sqrt (-X2);
if Half_Angle = 0.0 then
Update_Scalar_Part (Result, 1.0);
else
Cos_HA := GA_Maths.Float_Functions.Cos (Half_Angle);
Sin_HA := GA_Maths.Float_Functions.Sin (Half_Angle) / Half_Angle;
Result := New_Rotor (0.0, Cos_HA + Sin_HA * BV);
end if;
return Result;
end exp;
-- ----------------------------------------------------------------------------
-- special log() for 3D rotors
function log (R : Multivectors.Rotor) return Multivectors.Bivector is
use E3GA;
R2 : float;
R1 : float;
BV : Bivector;
Result : Bivector;
begin
-- get the bivector 2-blade part of R
BV := New_Bivector (e1_e2 (R), e2_e3 (R), e3_e1 (R));
-- compute the 'reverse norm' of the bivector part of R
R2 := Norm_E (BV);
-- R2 := Norm_R (BV);
if R2 > 0.0 then
-- return _bivector(B * ((float)atan2(R2, _Float(R)) / R2));
R1 := GA_Maths.Float_Functions.Arctan (R2, Scalar_Part (R)) / R2;
Result := R1 * BV;
-- otherwise, avoid divide-by-zero (and below zero due to FP roundoff)
elsif Scalar_Part (R) < 0.0 then
-- Return a 360 degree rotation in an arbitrary plane
Result := Ada.Numerics.Pi * Outer_Product (e1, e2);
else
BV := New_Bivector (0.0, 0.0, 0.0);
end if;
return Result;
end log;
-- ------------------------------------------------------------------------
procedure Print_Rotor (Name : String; R : Multivectors.Rotor) is
begin
GA_Utilities.Print_Multivector (Name, R);
end Print_Rotor;
-- ------------------------------------------------------------------------
procedure Rotor_To_Matrix (R : Multivectors.Rotor;
M : out GA_Maths.GA_Matrix3) is
Rot : constant GA_Maths.Float_4D := E3GA.Get_Coords (R);
begin
M (1, 1) := 1.0 - 2.0 * (Rot (3) * Rot (3) + Rot (4) * Rot (4));
M (2, 1) := 2.0 * (Rot (2) * Rot (3) + Rot (4) * Rot (1));
M (3, 1) := 2.0 * (Rot (2) * Rot (4) - Rot (3) * Rot (1));
M (1, 2) := 2.0 * (Rot (2) * Rot (3) - Rot (4) * Rot (1));
M (2, 2) := 1.0 - 2.0 * (Rot (2) * Rot (2) + Rot (4) * Rot (4));
M (3, 2) := 2.0 * (Rot (3) * Rot (4) + Rot (2) * Rot (1));
M (1, 3) := 2.0 * (Rot (2) * Rot (4) + Rot (3) * Rot (1));
M (2, 3) := 2.0 * (Rot (3) * Rot (4) - Rot (2) * Rot (1));
M (3, 3) := 1.0 - 2.0 * (Rot (2) * Rot (2) + Rot (3) * Rot (3));
end Rotor_To_Matrix;
-- ------------------------------------------------------------------------
-- Based on e3ga.util.rotorFromVectorToVector
function Rotor_Vector_To_Vector (From_V1, To_V2 : Multivectors.M_Vector)
return Multivectors.Rotor is
use GA_Maths.Float_Functions;
S : float;
w0 : M_Vector;
w1 : M_Vector;
w2 : M_Vector;
Nsq : Float;
R : Rotor;
Result : Rotor;
begin
if Scalar_Product (From_V1, To_V2) < -0.9 then
-- "near" 180 degree rotation :
-- v1 factor in returning blade regardless of any loss of precision
-- v1 << (v1^v2) means c3ga::lcont(v1, (v1^v2)),
-- lcont Left_Contraction
w0 := Left_Contraction (From_V1, Outer_Product (From_V1, To_V2));
Nsq := Norm_Esq (w0);
if Nsq = 0.0 then
w1 := Left_Contraction
(From_V1, Outer_Product (From_V1, Basis_Vector (Blade_Types.E3_e1)));
w2 := Left_Contraction
(From_V1, Outer_Product (From_V1, Basis_Vector (Blade_Types.E3_e2)));
if Norm_Esq (w1) > Norm_Esq (w2) then
Result := Outer_Product (From_V1, Unit_e (w1));
else
Result := Outer_Product (From_V1, Unit_e (w2));
end if;
else -- Nsq /= 0.0
-- Replace V1 with -V1 and an additional 180 degree rotation.
S := Sqrt (2.0 * (1.0 - Scalar_Part (Left_Contraction (To_V2, From_V1))));
R := (1.0 - Geometric_Product (To_V2, From_V1)) / S;
Result := Geometric_Product (R, Outer_Product (From_V1, Unit_e (w0)));
end if;
else -- normal case, not "near" 180 degree rotation.
-- (1 + ba)(1 + ab) = 1 + ab + ba + baab
-- = 1 + a.b + a^b + b.a + b^a + 1
-- = 2 + 2a.b + a^b - a^b
-- = 2(1 + a.b)
-- Geometric Algebra for Computer Science, Equation (10.13)
-- S := Sqrt (2.0 * (1.0 + Scalar_Part (Dot (To_V2, From_V1))));
S := Sqrt (2.0 * (1.0 + Scalar_Part (Left_Contraction (To_V2, From_V1))));
Result := To_Rotor ((1.0 + Geometric_Product (To_V2, From_V1)) / S);
end if;
Simplify (Result);
return Result;
exception
when others =>
Put_Line ("An exception occurred in E3GA_Utilities.Rotor_Vector_To_Vector.");
raise;
end Rotor_Vector_To_Vector;
-- ----------------------------------------------------------------------------
end E3GA_Utilities;
| 38.254902 | 87 | 0.48693 |
4dbbdd366c0739e39772827889154690428a43ed | 17,156 | adb | Ada | tools-src/gnu/gcc/gcc/ada/sinput-l.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 80 | 2015-01-02T10:14:04.000Z | 2021-06-07T06:29:49.000Z | tools-src/gnu/gcc/gcc/ada/sinput-l.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 9 | 2015-05-14T11:03:12.000Z | 2018-01-04T07:12:58.000Z | tools-src/gnu/gcc/gcc/ada/sinput-l.adb | modern-tomato/tomato | 96f09fab4929c6ddde5c9113f1b2476ad37133c4 | [
"FSFAP"
] | 69 | 2015-01-02T10:45:56.000Z | 2021-09-06T07:52:13.000Z | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S I N P U T . L --
-- --
-- B o d y --
-- --
-- $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. --
-- --
------------------------------------------------------------------------------
with Alloc;
with Atree; use Atree;
with Debug; use Debug;
with Einfo; use Einfo;
with Namet; use Namet;
with Opt;
with Osint; use Osint;
with Output; use Output;
with Scans; use Scans;
with Scn; use Scn;
with Sinfo; use Sinfo;
with System; use System;
with Unchecked_Conversion;
package body Sinput.L is
Dfile : Source_File_Index;
-- Index of currently active debug source file
-----------------
-- Subprograms --
-----------------
procedure Trim_Lines_Table (S : Source_File_Index);
-- Set lines table size for entry S in the source file table to
-- correspond to the current value of Num_Source_Lines, releasing
-- any unused storage.
function Load_File
(N : File_Name_Type;
T : File_Type)
return Source_File_Index;
-- Load a source file or a configuration pragma file.
-------------------------------
-- Adjust_Instantiation_Sloc --
-------------------------------
procedure Adjust_Instantiation_Sloc (N : Node_Id; A : Sloc_Adjustment) is
Loc : constant Source_Ptr := Sloc (N);
begin
-- We only do the adjustment if the value is between the appropriate
-- low and high values. It is not clear that this should ever not be
-- the case, but in practice there seem to be some nodes that get
-- copied twice, and this is a defence against that happening.
if A.Lo <= Loc and then Loc <= A.Hi then
Set_Sloc (N, Loc + A.Adjust);
end if;
end Adjust_Instantiation_Sloc;
------------------------
-- Close_Debug_Source --
------------------------
procedure Close_Debug_Source is
S : Source_File_Record renames Source_File.Table (Dfile);
Src : Source_Buffer_Ptr;
begin
Trim_Lines_Table (Dfile);
Close_Debug_File;
-- Now we need to read the file that we wrote and store it
-- in memory for subsequent access.
Read_Source_File
(S.Debug_Source_Name, S.Source_First, S.Source_Last, Src);
S.Source_Text := Src;
end Close_Debug_Source;
--------------------------------
-- Complete_Source_File_Entry --
--------------------------------
procedure Complete_Source_File_Entry is
CSF : constant Source_File_Index := Current_Source_File;
begin
Trim_Lines_Table (CSF);
Source_File.Table (CSF).Source_Checksum := Checksum;
end Complete_Source_File_Entry;
-------------------------
-- Create_Debug_Source --
-------------------------
procedure Create_Debug_Source
(Source : Source_File_Index;
Loc : out Source_Ptr)
is
begin
Loc := Source_File.Table (Source_File.Last).Source_Last + 1;
Source_File.Increment_Last;
Dfile := Source_File.Last;
declare
S : Source_File_Record renames Source_File.Table (Dfile);
begin
S := Source_File.Table (Source);
S.Debug_Source_Name := Create_Debug_File (S.File_Name);
S.Source_First := Loc;
S.Source_Last := Loc;
S.Lines_Table := null;
S.Last_Source_Line := 1;
-- Allocate lines table, guess that it needs to be three times
-- bigger than the original source (in number of lines).
Alloc_Line_Tables
(S, Int (Source_File.Table (Source).Last_Source_Line * 3));
S.Lines_Table (1) := Loc;
end;
if Debug_Flag_GG then
Write_Str ("---> Create_Debug_Source (Source => ");
Write_Int (Int (Source));
Write_Str (", Loc => ");
Write_Int (Int (Loc));
Write_Str (");");
Write_Eol;
end if;
end Create_Debug_Source;
---------------------------------
-- Create_Instantiation_Source --
---------------------------------
procedure Create_Instantiation_Source
(Inst_Node : Entity_Id;
Template_Id : Entity_Id;
A : out Sloc_Adjustment)
is
Dnod : constant Node_Id := Declaration_Node (Template_Id);
Xold : Source_File_Index;
Xnew : Source_File_Index;
begin
Xold := Get_Source_File_Index (Sloc (Template_Id));
A.Lo := Source_File.Table (Xold).Source_First;
A.Hi := Source_File.Table (Xold).Source_Last;
Source_File.Increment_Last;
Xnew := Source_File.Last;
Source_File.Table (Xnew) := Source_File.Table (Xold);
Source_File.Table (Xnew).Instantiation := Sloc (Inst_Node);
Source_File.Table (Xnew).Template := Xold;
-- Now we need to compute the new values of Source_First, Source_Last
-- and adjust the source file pointer to have the correct virtual
-- origin for the new range of values.
Source_File.Table (Xnew).Source_First :=
Source_File.Table (Xnew - 1).Source_Last + 1;
A.Adjust := Source_File.Table (Xnew).Source_First - A.Lo;
Source_File.Table (Xnew).Source_Last := A.Hi + A.Adjust;
Source_File.Table (Xnew).Sloc_Adjust :=
Source_File.Table (Xold).Sloc_Adjust - A.Adjust;
if Debug_Flag_L then
Write_Eol;
Write_Str ("*** Create instantiation source for ");
if Nkind (Dnod) in N_Proper_Body
and then Was_Originally_Stub (Dnod)
then
Write_Str ("subunit ");
elsif Ekind (Template_Id) = E_Generic_Package then
if Nkind (Dnod) = N_Package_Body then
Write_Str ("body of package ");
else
Write_Str ("spec of package ");
end if;
elsif Ekind (Template_Id) = E_Function then
Write_Str ("body of function ");
elsif Ekind (Template_Id) = E_Procedure then
Write_Str ("body of procedure ");
elsif Ekind (Template_Id) = E_Generic_Function then
Write_Str ("spec of function ");
elsif Ekind (Template_Id) = E_Generic_Procedure then
Write_Str ("spec of procedure ");
elsif Ekind (Template_Id) = E_Package_Body then
Write_Str ("body of package ");
else pragma Assert (Ekind (Template_Id) = E_Subprogram_Body);
if Nkind (Dnod) = N_Procedure_Specification then
Write_Str ("body of procedure ");
else
Write_Str ("body of function ");
end if;
end if;
Write_Name (Chars (Template_Id));
Write_Eol;
Write_Str (" new source index = ");
Write_Int (Int (Xnew));
Write_Eol;
Write_Str (" copying from file name = ");
Write_Name (File_Name (Xold));
Write_Eol;
Write_Str (" old source index = ");
Write_Int (Int (Xold));
Write_Eol;
Write_Str (" old lo = ");
Write_Int (Int (A.Lo));
Write_Eol;
Write_Str (" old hi = ");
Write_Int (Int (A.Hi));
Write_Eol;
Write_Str (" new lo = ");
Write_Int (Int (Source_File.Table (Xnew).Source_First));
Write_Eol;
Write_Str (" new hi = ");
Write_Int (Int (Source_File.Table (Xnew).Source_Last));
Write_Eol;
Write_Str (" adjustment factor = ");
Write_Int (Int (A.Adjust));
Write_Eol;
Write_Str (" instantiation location: ");
Write_Location (Sloc (Inst_Node));
Write_Eol;
end if;
-- For a given character in the source, a higher subscript will be
-- used to access the instantiation, which means that the virtual
-- origin must have a corresponding lower value. We compute this
-- new origin by taking the address of the appropriate adjusted
-- element in the old array. Since this adjusted element will be
-- at a negative subscript, we must suppress checks.
declare
pragma Suppress (All_Checks);
function To_Source_Buffer_Ptr is new
Unchecked_Conversion (Address, Source_Buffer_Ptr);
begin
Source_File.Table (Xnew).Source_Text :=
To_Source_Buffer_Ptr
(Source_File.Table (Xold).Source_Text (-A.Adjust)'Address);
end;
end Create_Instantiation_Source;
----------------------
-- Load_Config_File --
----------------------
function Load_Config_File
(N : File_Name_Type)
return Source_File_Index
is
begin
return Load_File (N, Osint.Config);
end Load_Config_File;
---------------
-- Load_File --
---------------
function Load_File
(N : File_Name_Type;
T : File_Type)
return Source_File_Index
is
Src : Source_Buffer_Ptr;
X : Source_File_Index;
Lo : Source_Ptr;
Hi : Source_Ptr;
begin
for J in 1 .. Source_File.Last loop
if Source_File.Table (J).File_Name = N then
return J;
end if;
end loop;
-- Here we must build a new entry in the file table
Source_File.Increment_Last;
X := Source_File.Last;
if X = Source_File.First then
Lo := First_Source_Ptr;
else
Lo := Source_File.Table (X - 1).Source_Last + 1;
end if;
Read_Source_File (N, Lo, Hi, Src, T);
if Src = null then
Source_File.Decrement_Last;
return No_Source_File;
else
if Debug_Flag_L then
Write_Eol;
Write_Str ("*** Build source file table entry, Index = ");
Write_Int (Int (X));
Write_Str (", file name = ");
Write_Name (N);
Write_Eol;
Write_Str (" lo = ");
Write_Int (Int (Lo));
Write_Eol;
Write_Str (" hi = ");
Write_Int (Int (Hi));
Write_Eol;
Write_Str (" first 10 chars -->");
declare
procedure Wchar (C : Character);
-- Writes character or ? for control character
procedure Wchar (C : Character) is
begin
if C < ' ' or C in ASCII.DEL .. Character'Val (16#9F#) then
Write_Char ('?');
else
Write_Char (C);
end if;
end Wchar;
begin
for J in Lo .. Lo + 9 loop
Wchar (Src (J));
end loop;
Write_Str ("<--");
Write_Eol;
Write_Str (" last 10 chars -->");
for J in Hi - 10 .. Hi - 1 loop
Wchar (Src (J));
end loop;
Write_Str ("<--");
Write_Eol;
if Src (Hi) /= EOF then
Write_Str (" error: no EOF at end");
Write_Eol;
end if;
end;
end if;
declare
S : Source_File_Record renames Source_File.Table (X);
begin
S := (Debug_Source_Name => Full_Source_Name,
File_Name => N,
First_Mapped_Line => No_Line_Number,
Full_File_Name => Full_Source_Name,
Full_Ref_Name => Full_Source_Name,
Identifier_Casing => Unknown,
Instantiation => No_Location,
Keyword_Casing => Unknown,
Last_Source_Line => 1,
License => Unknown,
Lines_Table => null,
Lines_Table_Max => 1,
Logical_Lines_Table => null,
Num_SRef_Pragmas => 0,
Reference_Name => N,
Sloc_Adjust => 0,
Source_Checksum => 0,
Source_First => Lo,
Source_Last => Hi,
Source_Text => Src,
Template => No_Source_File,
Time_Stamp => Current_Source_File_Stamp);
Alloc_Line_Tables (S, Opt.Table_Factor * Alloc.Lines_Initial);
S.Lines_Table (1) := Lo;
end;
return X;
end if;
end Load_File;
----------------------
-- Load_Source_File --
----------------------
function Load_Source_File
(N : File_Name_Type)
return Source_File_Index
is
begin
return Load_File (N, Osint.Source);
end Load_Source_File;
----------------------------
-- Source_File_Is_Subunit --
----------------------------
function Source_File_Is_Subunit (X : Source_File_Index) return Boolean is
begin
Initialize_Scanner (No_Unit, X);
-- We scan past junk to the first interesting compilation unit
-- token, to see if it is SEPARATE. We ignore WITH keywords during
-- this and also PRIVATE. The reason for ignoring PRIVATE is that
-- it handles some error situations, and also it is possible that
-- a PRIVATE WITH feature might be approved some time in the future.
while Token = Tok_With
or else Token = Tok_Private
or else (Token not in Token_Class_Cunit and then Token /= Tok_EOF)
loop
Scan;
end loop;
return Token = Tok_Separate;
end Source_File_Is_Subunit;
----------------------
-- Trim_Lines_Table --
----------------------
procedure Trim_Lines_Table (S : Source_File_Index) is
function realloc
(P : Lines_Table_Ptr;
New_Size : Int)
return Lines_Table_Ptr;
pragma Import (C, realloc);
Max : constant Nat := Nat (Source_File.Table (S).Last_Source_Line);
begin
-- Release allocated storage that is no longer needed
Source_File.Table (S).Lines_Table :=
realloc
(Source_File.Table (S).Lines_Table,
Max * (Lines_Table_Type'Component_Size / System.Storage_Unit));
Source_File.Table (S).Lines_Table_Max := Physical_Line_Number (Max);
end Trim_Lines_Table;
----------------------
-- Write_Debug_Line --
----------------------
procedure Write_Debug_Line (Str : String; Loc : in out Source_Ptr) is
S : Source_File_Record renames Source_File.Table (Dfile);
begin
-- Ignore write request if null line at start of file
if Str'Length = 0 and then Loc = S.Source_First then
return;
-- Here we write the line, and update the source record entry
else
Write_Debug_Info (Str);
Add_Line_Tables_Entry (S, Loc);
Loc := Loc + Source_Ptr (Str'Length + Debug_File_Eol_Length);
S.Source_Last := Loc;
if Debug_Flag_GG then
declare
Lin : constant String := Str;
begin
Column := 1;
Write_Str ("---> Write_Debug_Line (Str => """);
Write_Str (Lin);
Write_Str (""", Loc => ");
Write_Int (Int (Loc));
Write_Str (");");
Write_Eol;
end;
end if;
end if;
end Write_Debug_Line;
end Sinput.L;
| 32.127341 | 78 | 0.519702 |
2f5d86f155f1aa4006120276a74b24231e775d28 | 7,656 | ads | Ada | tools/scitools/conf/understand/ada/ada05/g-regexp.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/g-regexp.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | tools/scitools/conf/understand/ada/ada05/g-regexp.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T . R E G E X P --
-- --
-- S p e c --
-- --
-- Copyright (C) 1998-2005, 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 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. --
-- --
------------------------------------------------------------------------------
-- Simple Regular expression matching
-- This package provides a simple implementation of a regular expression
-- pattern matching algorithm, using a subset of the syntax of regular
-- expressions copied from familiar Unix style utilities.
------------------------------------------------------------
-- Summary of Pattern Matching Packages in GNAT Hierarchy --
------------------------------------------------------------
-- There are three related packages that perform pattern maching functions.
-- the following is an outline of these packages, to help you determine
-- which is best for your needs.
-- GNAT.Regexp (files g-regexp.ads/g-regexp.adb)
-- This is a simple package providing Unix-style regular expression
-- matching with the restriction that it matches entire strings. It
-- is particularly useful for file name matching, and in particular
-- it provides "globbing patterns" that are useful in implementing
-- unix or DOS style wild card matching for file names.
-- GNAT.Regpat (files g-regpat.ads/g-regpat.adb)
-- This is a more complete implementation of Unix-style regular
-- expressions, copied from the original V7 style regular expression
-- library written in C by Henry Spencer. It is functionally the
-- same as this library, and uses the same internal data structures
-- stored in a binary compatible manner.
-- GNAT.Spitbol.Patterns (files g-spipat.ads/g-spipat.adb)
-- This is a completely general patterm matching package based on the
-- pattern language of SNOBOL4, as implemented in SPITBOL. The pattern
-- language is modeled on context free grammars, with context sensitive
-- extensions that provide full (type 0) computational capabilities.
with Ada.Finalization;
package GNAT.Regexp is
-- The regular expression must first be compiled, using the Compile
-- function, which creates a finite state matching table, allowing
-- very fast matching once the expression has been compiled.
-- The following is the form of a regular expression, expressed in Ada
-- reference manual style BNF is as follows
-- regexp ::= term
-- regexp ::= term | term -- alternation (term or term ...)
-- term ::= item
-- term ::= item item ... -- concatenation (item then item)
-- item ::= elmt -- match elmt
-- item ::= elmt * -- zero or more elmt's
-- item ::= elmt + -- one or more elmt's
-- item ::= elmt ? -- matches elmt or nothing
-- elmt ::= nchr -- matches given character
-- elmt ::= [nchr nchr ...] -- matches any character listed
-- elmt ::= [^ nchr nchr ...] -- matches any character not listed
-- elmt ::= [char - char] -- matches chars in given range
-- elmt ::= . -- matches any single character
-- elmt ::= ( regexp ) -- parens used for grouping
-- char ::= any character, including special characters
-- nchr ::= any character except \()[].*+?^ or \char to match char
-- ... is used to indication repetition (one or more terms)
-- See also regexp(1) man page on Unix systems for further details
-- A second kind of regular expressions is provided. This one is more
-- like the wild card patterns used in file names by the Unix shell (or
-- DOS prompt) command lines. The grammar is the following:
-- regexp ::= term
-- term ::= elmt
-- term ::= elmt elmt ... -- concatenation (elmt then elmt)
-- term ::= * -- any string of 0 or more characters
-- term ::= ? -- matches any character
-- term ::= [char char ...] -- matches any character listed
-- term ::= [char - char] -- matches any character in given range
-- term ::= {elmt, elmt, ...} -- alternation (matches any of elmt)
-- Important note : This package was mainly intended to match regular
-- expressions against file names. The whole string has to match the
-- regular expression. If only a substring matches, then the function
-- Match will return False.
type Regexp is private;
-- Private type used to represent a regular expression
Error_In_Regexp : exception;
-- Exception raised when an error is found in the regular expression
function Compile
(Pattern : String;
Glob : Boolean := False;
Case_Sensitive : Boolean := True) return Regexp;
-- Compiles a regular expression S. If the syntax of the given
-- expression is invalid (does not match above grammar, Error_In_Regexp
-- is raised. If Glob is True, the pattern is considered as a 'globbing
-- pattern', that is a pattern as given by the second grammar above.
-- As a special case, if Pattern is the empty string it will always
-- match.
function Match (S : String; R : Regexp) return Boolean;
-- True if S matches R, otherwise False. Raises Constraint_Error if
-- R is an uninitialized regular expression value.
private
type Regexp_Value;
type Regexp_Access is access Regexp_Value;
type Regexp is new Ada.Finalization.Controlled with record
R : Regexp_Access := null;
end record;
pragma Finalize_Storage_Only (Regexp);
procedure Finalize (R : in out Regexp);
-- Free the memory occupied by R
procedure Adjust (R : in out Regexp);
-- Called after an assignment (do a copy of the Regexp_Access.all)
end GNAT.Regexp;
| 46.682927 | 78 | 0.556557 |
a172cffbb885f5c9c2629203dc521ce1e105c305 | 3,501 | ads | Ada | tools/scitools/conf/understand/ada/ada05/s-wchstw.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/s-wchstw.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | tools/scitools/conf/understand/ada/ada05/s-wchstw.ads | brucegua/moocos | 575c161cfa35e220f10d042e2e5ca18773691695 | [
"Apache-2.0"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . W C H _ S T W --
-- --
-- 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. --
-- --
--
--
--
--
--
--
--
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the routine used to convert strings to wide (wide)
-- strings for use by wide (wide) character attributes (value, image etc.)
with System.WCh_Con;
package System.WCh_StW is
pragma Pure;
function String_To_Wide_String
(S : String;
EM : System.WCh_Con.WC_Encoding_Method) return Wide_String;
-- This routine simply takes its argument and converts it to wide string
-- format. In the context of the Wide_Image attribute, the argument is
-- the corresponding 'Image attribute. Any wide character escape sequences
-- in the string are converted to the corresponding wide character value.
-- No syntax checks are made, it is assumed that any such sequences are
-- validly formed (this must be assured by the caller), and results from
-- the fact that Wide_Image is only used on strings that have been built
-- by the compiler, such as images of enumeration literals. If the method
-- for encoding is a shift-in, shift-out convention, then it is assumed
-- that normal (non-wide character) mode holds at the start and end of
-- the argument string. EM indicates the wide character encoding method.
-- Note: in the WCEM_Brackets case, the brackets escape sequence is used
-- only for codes greater than 16#FF#.
function String_To_Wide_Wide_String
(S : String;
EM : System.WCh_Con.WC_Encoding_Method) return Wide_Wide_String;
-- Same function with Wide_Wide_String output
end System.WCh_StW;
| 53.861538 | 78 | 0.521565 |
597e64d2ac20f67b68f75ebc5f2547f0b7fda190 | 1,647 | adb | Ada | src/glfw/v2/glfw.adb | Roldak/OpenGLAda | 6807605b7321249d71286fa25231bdfd537d3eac | [
"MIT"
] | null | null | null | src/glfw/v2/glfw.adb | Roldak/OpenGLAda | 6807605b7321249d71286fa25231bdfd537d3eac | [
"MIT"
] | null | null | null | src/glfw/v2/glfw.adb | Roldak/OpenGLAda | 6807605b7321249d71286fa25231bdfd537d3eac | [
"MIT"
] | null | null | null | -- part of OpenGLAda, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "COPYING"
with Glfw.API;
with Glfw.Enums;
with GL;
with Interfaces.C.Strings;
package body Glfw is
procedure Init is
begin
if API.Init = 0 then
raise Initialization_Exception;
end if;
GL.Init;
end Init;
procedure Terminate_Glfw is
begin
API.Glfw_Terminate;
end Terminate_Glfw;
procedure Version (Major, Minor, Rev : out Natural) is
Raw_Major, Raw_Minor, Raw_Rev : C.int;
begin
API.Get_Version (Raw_Major, Raw_Minor, Raw_Rev);
Major := Natural (Raw_Major);
Minor := Natural (Raw_Minor);
Rev := Natural (Raw_Rev);
end Version;
function Time return Seconds is
begin
return API.Get_Time;
end Time;
procedure Set_Time (Value : Seconds) is
begin
API.Set_Time (Value);
end Set_Time;
function Extension_Supported (Name : String) return Boolean is
begin
return Boolean (API.Extension_Supported (C.Strings.New_String (Name)));
end Extension_Supported;
procedure GL_Version (Major, Minor, Rev : out Natural) is
Raw_Major, Raw_Minor, Raw_Rev : C.int;
begin
API.Get_GL_Version (Raw_Major, Raw_Minor, Raw_Rev);
Major := Natural (Raw_Major);
Minor := Natural (Raw_Minor);
Rev := Natural (Raw_Rev);
end GL_Version;
procedure Toggle_Auto_Poll_Events (Enable : Boolean) is
begin
if Enable then
API.Enable (Enums.Auto_Poll_Events);
else
API.Disable (Enums.Auto_Poll_Events);
end if;
end Toggle_Auto_Poll_Events;
end Glfw;
| 23.869565 | 77 | 0.664845 |
fbfcdb6e9eafe40b3178fc8b6a149c7604370e72 | 9,376 | ads | Ada | bb-runtimes/src/system/system-pikeos42-arm.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/src/system/system-pikeos42-arm.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | bb-runtimes/src/system/system-pikeos42-arm.ads | JCGobbi/Nucleo-STM32F334R8 | 2a0b1b4b2664c92773703ac5e95dcb71979d051c | [
"BSD-3-Clause"
] | null | null | null | ------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M --
-- --
-- S p e c --
-- (PikeOS 4.2 ARM Version) --
-- --
-- Copyright (C) 2016-2020, 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. --
-- --
------------------------------------------------------------------------------
-- This is a ZFP version of this package for ARM PikeOS 4.2 targets
pragma Restrictions (No_Exception_Propagation);
-- Only local exception handling is supported in this profile
pragma Restrictions (No_Exception_Registration);
-- Disable exception name registration. This capability is not used because
-- it is only required by exception stream attributes which are not supported
-- in this run time.
pragma Restrictions (No_Implicit_Dynamic_Code);
-- Pointers to nested subprograms are not allowed in this run time, in order
-- to prevent the compiler from building "trampolines".
pragma Restrictions (No_Finalization);
-- Controlled types are not supported in this run time
pragma Restrictions (No_Tasking);
-- Tasking is not supported in this run time
pragma Discard_Names;
-- Disable explicitly the generation of names associated with entities in
-- order to reduce the amount of storage used. These names are not used anyway
-- (attributes such as 'Image and 'Value are not supported in this run time).
package System is
pragma Pure;
-- Note that we take advantage of the implementation permission to make
-- this unit Pure instead of Preelaborable (see RM 13.7.1(15)). In Ada
-- 2005, this is Pure in any case (AI-362).
pragma No_Elaboration_Code_All;
-- Allow the use of that restriction in units that WITH this unit
type Name is (SYSTEM_NAME_GNAT);
System_Name : constant Name := SYSTEM_NAME_GNAT;
-- System-Dependent Named Numbers
Min_Int : constant := -2 ** (Standard'Max_Integer_Size - 1);
Max_Int : constant := 2 ** (Standard'Max_Integer_Size - 1) - 1;
Max_Binary_Modulus : constant := 2 ** Standard'Max_Integer_Size;
Max_Nonbinary_Modulus : constant := 2 ** Integer'Size - 1;
Max_Base_Digits : constant := Long_Long_Float'Digits;
Max_Digits : constant := Long_Long_Float'Digits;
Max_Mantissa : constant := Standard'Max_Integer_Size - 1;
Fine_Delta : constant := 2.0 ** (-Max_Mantissa);
Tick : constant := 0.0;
-- Storage-related Declarations
type Address is private;
pragma Preelaborable_Initialization (Address);
Null_Address : constant Address;
Storage_Unit : constant := 8;
Word_Size : constant := 32;
Memory_Size : constant := 2 ** 32;
-- Address comparison
function "<" (Left, Right : Address) return Boolean;
function "<=" (Left, Right : Address) return Boolean;
function ">" (Left, Right : Address) return Boolean;
function ">=" (Left, Right : Address) return Boolean;
function "=" (Left, Right : Address) return Boolean;
pragma Import (Intrinsic, "<");
pragma Import (Intrinsic, "<=");
pragma Import (Intrinsic, ">");
pragma Import (Intrinsic, ">=");
pragma Import (Intrinsic, "=");
-- Other System-Dependent Declarations
type Bit_Order is (High_Order_First, Low_Order_First);
Default_Bit_Order : constant Bit_Order := Low_Order_First;
pragma Warnings (Off, Default_Bit_Order); -- kill constant condition warning
-- Priority-related Declarations (RM D.1)
-- For simplicity there is a 1-1 correspondence between Ada and PikeOS
-- priorities. PikeOS priority 0 is reserved by the idle thread, so not
-- available to Ada.
-- PikeOS priorities are 0 .. 255
-- Priorities greather than 245 are reserved to the system software (PSSW)
-- This implementation reserves priorities 224-239 to interrupts
-- Priorities 240-245 are reserved to HM and PikeOS exception handlers
Max_Priority : constant Positive := 223;
Max_Interrupt_Priority : constant Positive := 239;
subtype Any_Priority is Integer range 1 .. Max_Interrupt_Priority;
subtype Priority is Any_Priority
range Any_Priority'First .. Max_Priority;
subtype Interrupt_Priority is Any_Priority
range Priority'Last + 1 .. Any_Priority'Last;
Default_Priority : constant Priority :=
(Priority'First + Priority'Last) / 2;
private
type Address is mod Memory_Size;
Null_Address : constant Address := 0;
--------------------------------------
-- System Implementation Parameters --
--------------------------------------
-- These parameters provide information about the target that is used
-- by the compiler. They are in the private part of System, where they
-- can be accessed using the special circuitry in the Targparm unit
-- whose source should be consulted for more detailed descriptions
-- of the individual switch values.
Atomic_Sync_Default : constant Boolean := False;
Backend_Divide_Checks : constant Boolean := False;
Backend_Overflow_Checks : constant Boolean := True;
Command_Line_Args : constant Boolean := False;
Configurable_Run_Time : constant Boolean := True;
Denorm : constant Boolean := True;
Duration_32_Bits : constant Boolean := True;
Exit_Status_Supported : constant Boolean := True;
Fractional_Fixed_Ops : constant Boolean := False;
Frontend_Layout : constant Boolean := False;
Machine_Overflows : constant Boolean := False;
Machine_Rounds : constant Boolean := True;
Preallocated_Stacks : constant Boolean := False;
Signed_Zeros : constant Boolean := True;
Stack_Check_Default : constant Boolean := False;
Stack_Check_Probes : constant Boolean := False;
Stack_Check_Limits : constant Boolean := False;
Support_Aggregates : constant Boolean := True;
Support_Composite_Assign : constant Boolean := True;
Support_Composite_Compare : constant Boolean := True;
Support_Long_Shifts : constant Boolean := True;
Always_Compatible_Rep : constant Boolean := True;
Suppress_Standard_Library : constant Boolean := True;
Use_Ada_Main_Program_Name : constant Boolean := False;
Frontend_Exceptions : constant Boolean := False;
ZCX_By_Default : constant Boolean := True;
-- The linker switches ordering comes from a project
-- generated with Codeo or pikeos-cloneproject.
pragma Linker_Options
("-u_p4_entry" & ASCII.NUL &
"-u__cxx_local_dtors" & ASCII.NUL &
"-nostdlib" & ASCII.NUL &
"-T../ld/arm-app.ld" & ASCII.NUL &
"-T../ld/memory.ld" & ASCII.NUL &
"-lp4ext" & ASCII.NUL &
"-lgnat" & ASCII.NUL &
"-lvm" & ASCII.NUL &
"-lstand" & ASCII.NUL &
"-lp4" & ASCII.NUL &
"-lgcc");
end System;
| 45.736585 | 79 | 0.585538 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.